Convert from MOV to MP4 Container format

I have a digital camera that records nice 1080p H.264 format but unfortunately it uses the MOV container format. Basically I have nothing but the camera and VLC that play this format natively.

Is there a tool out there to convert the video to a format by just replacing the container format? That’d be a lot faster as the encoding is perfectly fine.

It’d be nice to select the folder and convert everything over to a more respectable container format like MP4.

I don’t want to touch the actual quality of the video I want the conversion to be as fast as possible.

Answer

I don’t want to touch the actual quality of the video I want the conversion to be as fast as possible.

Use FFmpeg with -c copy to just copy the contained data (video, audio, subtitles).

ffmpeg -i file.mov -c copy out.mp4
ffmpeg -i file.mov -c copy out.mkv

If there are more than one video / audio / subtitle stream, and you want to copy all, use:

ffmpeg -i file.mov -c copy -map 0 out.mp4

The MOV container is compatible to MP4 and it supports all video and audio bitstreams that MKV supports as well. You can simply copy the video and audio data to the output container without touching the raw bit streams.

This will be the fastest conversion, since it actually doesn’t encode anything—and you’ll retain the quality of the original.

Download and install FFmpeg:

Attribution
Source : Link , Question Author : Jeremy Edwards , Answer Author : slhck

Leave a Comment