Should I be concerned before I share a video I downloaded from a site I needed to log in to with a username and password? Does the file I have include data that references my account? If so is there away to remove it before I share it?
Signed I am tired of feeling like I don’t contribute to the community.
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?
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.
Use
-map_metadata -1
to strip all metadata.