Converting MOV files to MP4 using ffmpeg
The following command can be used to convert a .mov file to an .mp4 file using ffmpeg.
$ ffmpeg -i in.mov -vcodec copy -acodec copy out.mp4
The following command can be used to convert a .mov file to an .mp4 file using ffmpeg.
$ ffmpeg -i in.mov -vcodec copy -acodec copy out.mp4