Comments

This profile is from a federated server and may be incomplete. Browse more on the original instance.

Nawor3565, to movies in Seems we've already got the plot for Barbie II

“it’s bad because I said so. No I don’t have to back my argument up.”

Nawor3565, to movies in Seems we've already got the plot for Barbie II

Having a hard time articulating any sort of argument, huh? Need a dictionary to teach you some more words? Or maybe an English class to teach you how to form a coherent, complete sentence?

Nawor3565, to askelectronics in Simultaneous joystick 3-axis protocol

Honestly… I kinda think three microcontrollers is way overcomplicating things preemptively. I would try just a single MCU first, and see if the response time is adequate. If there’s any sort of noticeable input lag or delay, then try the multiple MCU route.

Nawor3565, to linuxmemes in Your average Wine enjoyer

Have fun consuming media then

Nawor3565, to piracy in Amazon and Tolkein Estate force author to destroy all copies of his work. Only pirated copies will survive.

Unfortunately, you can sue anyone for any bogus reason you want. And if you have more money than whoever you’re suing, it doesn’t matter how frivolous it is, because you can just bankrupt them by forcing them to pay lawyer fees.

Nawor3565, to piracy in It's funny how google pretends the music on YouTube isn't straight up piracy and everyone just goes along with it

They likely DO get a copyright claim. But a claim doesn’t necessarily mean that your video gets removed. YouTube gives the copyright claimer the choice for what to do with videos they claim, which can include removing them, leaving them visible but taking any profit made from ads on the video, splitting the ad revenue, or just leaving it alone.

I do absolutely agree that removing a video for having a song in the background is bullshit. Just wanted to give an explanation for the inconsistency.

Nawor3565, to asklemmy in is freeBSD resistant to o.mg cable and rubber ducky usb?

Are you asking this in a theoretical, “just for fun” sort of way? If so, any OS that is too old to support USB would be resistant, such as AmigaOS. Otherwise, there really isn’t anything you can do to protect against those types of devices short of completely disabling USB altogether.

Nawor3565, to memes in Hits close to home

If you still use Amazon, get the CamelCamelCamel addon. It shows you a graph of how the price of an item has changed, so you can see if a sale is really a discount of just one of these fake “sales”.

Nawor3565, to piracy in Are movie and show file sizes more efficient than they were years ago?

It completely depends on the specific video file. HEVC and AV1 are more efficient in general, but most of their benefits become apparent with 4K video, which they were specifically designed to be better at handling than AVC. It also depends on your phone’s software and hardware, as it might not be fast enough to encode in real-time with higher compression settings (and you don’t get to use things like 2-pass encoding which can drastically lower bitrate without sacrificing visual quality).

Nawor3565, (edited ) to linux in Linux support for wifi in LiveUSB trials with onboard wifi chip and/or additional USB wifi dongle

I would look for a dongle that specifically markets itself as being Raspberry Pi compatible. Most stuff you find will prioritize Windows, but if it’s marketed to work with the Pi you know it’ll have at least some level of Linux compatibility. Once you find one, try to figure out what chipset it uses, then search if it’s supported by a handful of the distros you wanna try.

Nawor3565, to lemmy_support in The user numbers in Lemmy communities don't add up

The number is displayed on the instance the post is on, so it doesn’t matter which instance you view it from (or if you’re not logged in at all), the number is calculated from the active users who are members of the instance you’re viewing.

Nawor3565, to privacyguides in What's an easy way to remove metadata from a .mp4 file? [Windows 10]

I think it’s just that software to edit video streams is inherently more complicated than editing images. Although the metadata shouldn’t be encoded into the streams, so maybe it’s just a case of no one has gotten around to making such a program yet.

Nawor3565, (edited ) to privacyguides in What's an easy way to remove metadata from a .mp4 file? [Windows 10]

Sorry for the late reply, but it looks like somehow Notepad++ got set as the default program to open .bat files. Right click the .bat file, choose “open with”, and you should get an option to open it with command line / cmd.

EDIT: or just change it to .cmd, which should work basically the same way.

Nawor3565, to privacyguides in What's an easy way to remove metadata from a .mp4 file? [Windows 10]

You can try installing Handbrake, it’s basically a user interface to make using FFmpeg easier. As far as removing all the metadata with a click, I’m not aware of anything that does that.

Honestly though, I think this is a simple enough case that you could figure it out even if you’re non-techy. The basic steps would be:

  • make a folder somewhere to keep everything in one place
  • download FFmpeg from here (this is one of the official Windows builds)
  • extract the 7z file you downloaded, there’s a folder inside called “bin” and inside of that should be three .exe files, one of which is just named “ffmpeg.exe”. Put that .exe into the folder you made earlier
  • open Notepad, copy/paste the command from my first comment into Notepad, and save it as something like “remove_metadata.bat” to your folder from earlier. In the window where you choose where to save the file, make sure you choose the file type “all files” from the drop down in order to save it as a .bat.

After setting it up, you can just put any .mp4 into the same folder, rename it INPUT.mp4, and run your .bat file by double-clicking it. It should create a new file called OUTPUT.mp4 in the same folder with all of the metadata removed.

Nawor3565, to privacyguides in What's an easy way to remove metadata from a .mp4 file? [Windows 10]

Use FFmpeg. You can copy only the audio and video channels (and subtitles) without anything else using a command like:

ffmpeg -i INPUT.mp4 -map_metadata -1 -c:v copy -c:a copy -c:s copy OUTPUT.mp4

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #