Practical conversion guide

How to Convert MOV to MP4

Convert MOV to MP4 by remuxing compatible video without quality loss or re-encoding when necessary. Includes dependable FFmpeg commands.

Reviewed August 6, 2026 · No upload required

Short answer

If the MOV already contains MP4-compatible video and audio, remux it into an MP4 container without re-encoding. Otherwise, encode the video as H.264 and the audio as AAC for broad compatibility.

What actually happens

Why this is not an instant file swap

MOV and MP4 are containers, not single video codecs. Some MOV files can be copied into MP4 quickly with no quality loss, while others use codecs that require a full transcode. Renaming the extension does not change the container or codecs.

Reliable methods

Choose the method that fits your file

Method 1

Remux without re-encoding

Best for: MOV files that already use MP4-compatible codecs

This method is fast and does not change image or audio quality.

  1. 1Install a trusted FFmpeg build for your operating system.
  2. 2Open a terminal in the folder containing the MOV file.
  3. 3Run the command below and wait for FFmpeg to inspect and copy the streams.
  4. 4Open the resulting MP4 and test video, audio, duration, and seeking.
  5. 5If FFmpeg reports an incompatible codec, use the re-encoding method instead.
Command
ffmpeg -i input.mov -c copy -movflags +faststart output.mp4

Method 2

Re-encode for broad compatibility

Best for: MOV files that fail to remux or need smaller, web-friendly output

H.264 video and AAC audio work across a wide range of browsers and devices.

  1. 1Keep the original MOV as a master copy.
  2. 2Run the command below with a new output filename.
  3. 3Increase CRF for a smaller file or decrease it for higher quality.
  4. 4Review motion, fine detail, audio sync, and rotated phone footage.
  5. 5Use the MP4 only after the full duration plays correctly.
Command
ffmpeg -i input.mov -c:v libx264 -crf 20 -preset medium -c:a aac -b:a 192k -movflags +faststart output.mp4

A CRF around 18–23 is a common starting range for H.264. The best value depends on the source and your quality target.

Method 3

Export from a desktop video editor

Best for: People who prefer a visual interface or need trimming and rotation

Choose an MP4/H.264 export preset and review the output settings before rendering.

  1. 1Import the MOV into a trusted editor or media converter.
  2. 2Match the source frame rate and resolution unless you intentionally want to change them.
  3. 3Select MP4 with H.264 video and AAC audio.
  4. 4Enable web optimization or fast start when available.
  5. 5Export to a new file and verify the result before removing the MOV.

Common questions

MOV to MP4 FAQ

Can MOV be converted to MP4 without losing quality?

Yes, when the video and audio codecs are already compatible with MP4. Remuxing copies the streams without recompressing them.

Why does stream copy fail?

The MOV may contain a codec or data stream that the MP4 container does not support. Re-encode the video and audio to compatible codecs.

Why is the converted video rotated incorrectly?

Phone videos often store orientation as metadata. Re-encoding software must preserve or apply that rotation correctly.

Continue working