Remove all metadata from ANY video file using ffmpeg


Just copy the audio and video streams and remove the metadata:

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


Source: https://superuser.com/questions/441361/strip-metadata-from-all-formats-with-ffmpeg