62
Sharing files from authenticated sites
(lemmy.ca)
1. Posts must be related to the discussion of digital piracy
2. Don't request invites, trade, sell, or self-promote
3. Don't request or link to specific pirated titles, including DMs
4. Don't submit low-quality posts, be entitled, or harass others
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
It's unlikely that there's some identifying information, but you can use ffmpeg (using the "copy" codec to avoid a re-encode) to strip metadata. It's also theoretically possible for the video to have used some stenography techniques, but that would be much harder and expensive for the video creator/publisher so I doubt that happened.
It's not unlikely. Watermarking is real. And they don't make it easy to strip off.
why is your username a password
Would this require specific stripping flags or is a simple
enough?
Use
-map_metadata -1
to strip all metadata.The :v and :a is not needed.
ffmpeg -i video.mkv -c copy output.mkv
This will automatically copy the audio and the video without a reencode.