Manatee

How to convert an MP4 to MOV on a Mac

Converting an MP4 to MOV on a Mac is almost always a container swap rather than a quality change: both formats carry the same H.264 or HEVC video and AAC audio, so the streams can be copied into a QuickTime .mov box in seconds without re-encoding. The fastest route is a converter that does a straight stream copy; QuickTime Player can also export a MOV, but it re-encodes to a fixed resolution and takes longer. This post explains which approach fits your file and how to do each.

MP4 and MOV are close cousins

MP4 and MOV are containers: boxes that hold a video stream, one or more audio streams, and sometimes subtitles or chapters. The streams are the real content, compressed with a codec such as H.264, HEVC, or AAC. Quality lives in the streams, not the box.

These two boxes are unusually close. QuickTime’s MOV format came first, and the MP4 standard was built directly on top of it, so both are variants of the same underlying file structure. In practice that means an H.264 video with AAC audio is valid inside either container. Moving it from one to the other changes the wrapper and almost nothing else.

You most likely have an MP4 because phones, cameras, screen recorders, and downloads all default to it as the universal format. You may want a MOV because Apple’s own editing tools historically prefer it: Final Cut Pro, Motion, and some Compressor and iMovie workflows treat .mov as the native container, and formats like ProRes normally live inside a MOV. If an app keeps refusing your MP4 and asks for a QuickTime movie, this is the conversion you need.

Check the codec before you convert

Before converting, it helps to know what is inside the MP4, because that decides whether the change can be lossless.

Two ways to look:

  1. A media information window. Open the file in a player that shows codec details and read the stream lines. You are looking for entries like Video: H.264 and Audio: AAC.
  2. Terminal with ffprobe, if you have ffmpeg installed. Type ffprobe and drag the file onto the window, then press Return. The Stream lines near the bottom name each codec.

What you find tells you the plan:

  • Video H.264 or HEVC, audio AAC. This is the common case for phone and camera footage. Both stream types are valid in MOV, so they copy across unchanged. The result is lossless.
  • Unusual audio such as AC-3 or a rare codec. QuickTime may not decode it after the swap, so that stream is the one to re-encode to AAC while the video stays untouched.

Most MP4s you meet in daily life are H.264 or HEVC with AAC, which means a pure copy.

The lossless way: remux the container

Copying streams from one container to another without touching them is called remuxing. Because the bytes that describe every frame are identical afterward, quality cannot change. It also finishes in seconds, since nothing is decoded or compressed.

If you are comfortable in Terminal and have ffmpeg installed, the command is:

ffmpeg -i input.mp4 -c copy output.mov

The -c copy part means copy every stream as is. When it finishes, compare file sizes: a remux lands within a fraction of a percent of the original, which is the signature of a lossless conversion. If ffmpeg complains that a stream is not supported in the MOV container, re-encode just that stream, for example -c:v copy -c:a aac -b:a 192k to keep the video and rebuild only the audio.

The drag-and-drop way

If Terminal is not how you want to spend the afternoon, Manatee does the same job from its window or a drag onto its menu bar icon:

  1. Open Manatee and choose Convert.
  2. Pick MOV as the target.
  3. Drop the MP4 in, or a whole folder of them. Each file appears in the job list with progress.
  4. The MOV is written alongside the original. Your MP4 is never modified.

Manatee handles the codec decision for you, so a file with audio QuickTime would otherwise stumble on comes out as a MOV that opens cleanly in Apple’s tools. It runs entirely on your Mac with nothing uploaded, and it bundles its own conversion engine, so there is nothing to install first. One honest note: Manatee is a converter, not an editor, so trimming, color, and adding tracks stay in your editing app. If you specifically need a verified byte-for-byte stream copy, the ffmpeg -c copy route above is the one that lets you check it yourself.

What QuickTime Player can and cannot do

You do not strictly need extra software, because QuickTime Player is already on your Mac. Open the MP4, choose File, then Export As, and pick a resolution. QuickTime writes a .mov.

The catch is that this path re-encodes. QuickTime’s export offers fixed presets such as 1080p or 4K rather than a plain container swap, so it decodes your video and compresses it again into a new file. That means it is slower than a remux and gives up a little quality, and if your source is not already at one of those resolutions you can end up scaling the picture without meaning to. It is fine when you also want to downsize or when a few seconds of quality loss does not matter. When you want the MOV to be identical to the MP4 in everything but the wrapper, use a stream copy instead, either through the ffmpeg command or a converter that remuxes.

Questions

Can I just rename the .mp4 file to .mov?

Sometimes it appears to work, because the two containers are so closely related that a forgiving app opens the renamed file anyway. It is not reliable, though: the internal structure and the header still say MP4, and stricter apps will reject it or misread the duration. A real remux takes only seconds and produces a proper MOV, so it is worth doing correctly.

Why is my MOV almost exactly the same size as the MP4?

Because a remux changes only the container, and the streams make up nearly all of the bytes. A same-size file is the sign that nothing was re-encoded and no quality was lost. A much smaller MOV means something was compressed again.

The MOV plays in QuickTime but has no sound.

The audio was a format QuickTime does not decode and it was copied across unchanged. Redo the conversion with the audio re-encoded to AAC while the video is copied, or let a converter pick the audio format for you.

Which should I keep for everyday use, MP4 or MOV?

For sharing, uploading, and playing on phones and the web, keep the MP4, since it is the more universal box. Convert to MOV when a specific Apple app asks for it, and treat the MOV as a working copy for that app rather than your master file.