Manatee

How to convert an MKV to MOV on a Mac

Converting an MKV to MOV on a Mac turns a file QuickTime and Final Cut refuse to open into one they treat as native. When the video inside is H.264 or HEVC, the stream copies straight into a QuickTime .mov box with no quality loss, and only stubborn audio or styled subtitles need re-encoding. The quickest route is to drop the MKV on a converter that makes the codec decisions for you, because there is no built-in Mac path for MKV at all. Here is how to do it properly.

Why the Mac will not open an MKV

MKV and MOV are both containers, boxes that hold a video stream, one or more audio streams, and sometimes subtitles. The streams are the actual content, compressed with codecs such as H.264, HEVC, AAC, or AC-3. Quality lives in the streams, and the box around them is what an app looks at first to decide whether it can even try.

MKV, short for Matroska, is a very permissive container: it will hold almost any codec, which is why it shows up on downloads and open-source recorders. MOV is Apple’s QuickTime container, and Apple’s software is built around it. The problem is not the video inside your MKV, which is usually a codec the Mac plays happily. The problem is the Matroska box: QuickTime Player, Photos, iMovie, and Final Cut do not read it, so the file bounces before they ever reach the stream. Converting to MOV keeps the good video and puts it in a box Apple’s tools accept.

Look inside the MKV first

What you do next depends on the streams, so check them before converting.

  1. A media information window. Open the MKV in a player that lists codec details and read the stream lines, for example Video: H.264, Audio: AAC, Subtitle: ASS.
  2. Terminal with ffprobe, if ffmpeg is installed. Type ffprobe and drag the file onto the window, then press Return. The Stream lines name each codec.

Then match against what a MOV can carry and what QuickTime decodes:

  • Video H.264 or HEVC. Copy unchanged into the MOV. Lossless.
  • Video VP9 or AV1. These older-web and download codecs will not play from a QuickTime box on most Apple software, so the video has to be re-encoded to H.264 or HEVC.
  • Audio AAC or MP3. Copy unchanged.
  • Audio FLAC, Vorbis, Opus, or DTS. Not reliably decoded by Apple players, so re-encode this stream to AAC while leaving the video alone.
  • Subtitles. Plain SRT can be carried or kept as a separate file. Styled ASS or SSA subtitles cannot ride inside a MOV, so they are dropped or exported separately.

Most MKVs are H.264 or HEVC with AAC or AC-3, which means the video copies straight across and at most the audio is rebuilt.

The lossless part: copy the video stream

Copying a stream from one container to another without touching it is called remuxing, and it cannot change quality because the frame-by-frame bytes are identical afterward. It also runs in seconds.

With ffmpeg installed, the command to copy everything the MOV can hold is:

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

If ffmpeg stops with an error that a stream is not supported in the container, adjust so the video is still copied and only the incompatible stream is rebuilt:

  • Copy the video, re-encode the audio: -c:v copy -c:a aac -b:a 192k.
  • Drop subtitles the MOV cannot hold: add -sn.

The picture in the output is identical to the MKV, frame for frame, because the video bytes were never decoded. That is the part worth protecting: even when the audio has to be rebuilt, your video quality stays exactly where it was.

The drag-and-drop way

Because there is no native Mac app that opens MKV, the practical route for most people is a converter that does the whole job at once. Manatee works 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 MKV in, or a folder full of them. Each shows in the job list with progress.
  4. The MOV is written alongside the original, which is left untouched.

Manatee makes the codec calls for you, so an MKV with DTS audio or ASS subtitles comes out as a MOV that opens in QuickTime and imports into Final Cut without your editing a single command. It runs entirely on your Mac with nothing uploaded, and it bundles its own conversion engine, so nothing needs installing first. Two honest notes: Manatee is a converter, not an editor, so trimming and styling stay elsewhere; and if you want to verify a byte-for-byte video copy yourself, the ffmpeg route above gives you that certainty.

When the MKV will not convert either

If the MKV also fails in players that support Matroska, the file itself may be damaged rather than merely in the wrong box, and a plain conversion will stall or produce a partial result. That is a repair problem, not a format problem. Manatee’s Repair mode handles corrupt video and reports honestly what it recovered: Fixed, Partial such as the first several minutes of a clip, or Not fixable when the data is truly gone. Repair first, then convert the recovered file to MOV if you still need the Apple-native box. Data that is genuinely missing cannot be rebuilt by any tool, so treat a Partial result as the honest best case.

Questions

Can I rename the .mkv to .mov and open it in QuickTime?

No. Renaming changes the label, not the Matroska structure inside, and QuickTime reads that structure, so it still refuses the file. A real conversion rewrites the container, which takes seconds when the video only needs copying.

Will converting to MOV shrink my file?

Not if the video is copied, which is the goal. A remuxed MOV is within a fraction of a percent of the MKV because the streams are the same bytes. If you also want a smaller file, that is a separate step: re-encoding or a size-targeted shrink, done once from the best source.

The MOV opens but has no sound.

The audio was a format Apple players do not decode, often DTS or Vorbis, and it was copied unchanged. Redo the conversion with the audio re-encoded to AAC while the video is copied, or let a converter choose the audio format.

Why not just convert to MP4 instead?

MP4 is the more universal box for sharing and phones, and it is a fine choice. Pick MOV specifically when you are handing the file to Apple’s editing tools, which treat QuickTime movies as their native format.