[FFmpeg-user] Exclude ALL Metadata?

Marek Kedzierski mark.kedzierski at gmail.com
Wed Aug 8 08:14:15 CEST 2012


The –map_metadata argument allows copying global/stream metadata from input to output.  If you use –1 as the input file it will strip the specified metadata.  so to strip metadata from global, video and audio streams do the following:

ffmpeg –i movie.mp4  -c copy –map_metadata:g –1:g  -map_metadata:s:v –1:g –map_metadata:s:a –1:g movie.nometadata.mp4


More information about the ffmpeg-user mailing list