Step-by-step instructions
- 1
FFmpeg stream copy (fastest, lossless)
Remux without re-encoding: `ffmpeg -i input.mkv -c copy output.mov`. This works when the MKV contains H.264/H.265 video and AAC/MP3 audio — codecs the MOV container accepts. It's near-instant (limited by disk I/O, not CPU). If you get an error about incompatible codecs, proceed to the re-encoding step. Verify: `ffprobe output.mov` should show the same codecs as the input.
Go to converter - 2
FFmpeg with re-encoding for iMovie compatibility
iMovie works best with H.264 video and AAC audio: `ffmpeg -i input.mkv -c:v libx264 -crf 18 -preset slow -c:a aac -b:a 256k output.mov`. CRF 18 is visually lossless. For Final Cut Pro ProRes output (best editing performance): `ffmpeg -i input.mkv -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov` (ProRes 422 HQ, large files but optimized for editing).
- 3
HandBrake (GUI, Windows/Mac/Linux)
Open HandBrake. Select the MKV source. Change container to MP4 (note: HandBrake labels its output 'MP4' — rename the output to .mov after conversion if required). Set video codec to H.264 and RF to 18 for visually lossless output. In the Subtitles tab, burn in any subtitles from the MKV if needed. HandBrake cannot export true ProRes — use FFmpeg for ProRes output.
- 4
iStatistica / iFlicks on Mac (drag-and-drop)
iFlicks 3 (Mac App Store) is designed specifically for converting video to Apple-compatible formats. Drag the MKV file into iFlicks, select MOV or M4V output, and it converts using H.264 or H.265 with AAC audio. iFlicks handles metadata and subtitle tracks automatically. For a completely free option on Mac: install FFmpeg via Homebrew (`brew install ffmpeg`) and use the command-line method.
Why convert MKV to MOV?
MKV stores everything, but Apple's edit tools and QuickTime don't open it natively. MOV is the container Apple built its video ecosystem around.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Will MKV subtitles transfer to MOV?
Why won't my MKV open in QuickTime Player?
Is MOV better than MKV for Mac editing?
No account. No upload. Works in any browser.