Strip metadata from all formats with FFmpeg

Slightly modifying the command line by @izx, I got this:

ffmpeg -i in.mov -map_metadata -1 -c:v copy -c:a copy out.mov

The result is (again, checked with exiftool), a metadata record reduced from 81 to 52 lines. Note that you can't simply remove all metadata, some things will stay. However, I didn't get the creation date to change, which is strange because it seemed to work in the Ubuntu version.

I posted on the FFmpeg mailing list, asking whether there were any updates or comments on that. Let's see what they have to say.


My solution to strip metadata, chapters, to change creation time and title. This way any metacontent should be different from the original file:

ffmpeg -y -i "test.mkv" -c copy -map_metadata -1 -metadata title="My Title" -metadata creation_time=2016-09-20T21:30:00 -map_chapters -1 "test.mkv"

NOTE: I have since updated ffmpeg (previously I had the outdated version of avconv from the Ubuntu repositories).

Now @slhck's -map_metadata -1 works perfectly.

I recommend @slhck's solution because it's less typing and up to date. I'm leaving this here for anyone using an outdated version.


The easiest way to do this is to set -map_metadata to use one of the input streams, rather than using global metadata. 99% of the time this should work. NOTE: I'm using avconv, because that's in the Ubuntu 12.04 repositories; this will probably be drop-in compatible with ffmpeg, since their syntax always is in my experience.

avconv -i input.mp4 -map 0 -map_metadata 0:s:0 -c copy output.mp4

This will take the metadata from the first data stream (normally the video stream) and use that to replace the global metadata of the container file. This works because most of the time, the data streams have no meaningful metadata written to them; however, sometimes they do, and you want to completely get rid of that metadata. Unfortunately, the only way I can think of to do this used a pipe and two avconv processes.

avconv -i input.mp4 -f wav - | avconv -i - -i input.mp4 -map 1 -map_metadata 0 -c copy output.mp4

This takes advantage of the fact that WAV files can't contain metadata (since the format was created before metadata tags existed).

Both of these methods blanked all metadata on a file I just tested them on - all that exiftool reported on was the codec information, and avprobe reported no metadata to me. Using a pipe for this is pretty ugly, and the first method will work in 99% of cases, so that should be preferred.