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.
2In
mov
ormp4
files, creation date is an integer field in the movie header and track headers (expressed as seconds since 1904). Although you could set it to 0 or some other fixed value, there is no way to remove it and still have a validmov
ormp4
file. – mark4o – 2012-12-18T07:34:34.890I know I couldn't remove it entirely, but changing wasn't possible for some reason. – slhck – 2012-12-18T07:39:17.627
3Using the current ffmpeg, the creation time can be changed with
-metadata creation_time=2012-12-17T21:30:00
(UTC). – mark4o – 2012-12-18T07:46:28.4431How can i modify this to remove the title too? Currently it sets the title to something automatically generated. I want to see the full filename as title in the end. – Rookie – 2014-06-15T11:26:07.957
3@Rookie Then you need to set
-metadata title="Some Value"
. Or, for a file, something like this for an MP4 file:ffmpeg -i "$file" -map_metadata -1 -c copy -metadata title="$file" "${file%%*.mp4}-new.mp4
– slhck – 2014-06-15T13:25:38.710