Skip to content

Convert MP4 to MOV on Mac

Convert MP4 to MOV on Mac with QuickTime export or FFmpeg. MOV for Final Cut, Motion, and Apple workflows.

By Petr Samokhin

MP4 files from Windows colleagues, web downloads, and Android phones often need to land as MOV for Final Cut Pro, Motion, or an Apple-centric review workflow. You notice when an editor prefers MOV on the timeline, when a client brief asks for QuickTime deliverables, or when a macOS tool imports MOV more smoothly than MP4 with the same codecs inside. Converting locally avoids re-downloading and keeps project footage on your machine.

MP4 vs MOV

MP4 and MOV are both containers that can hold H.264, HEVC, and AAC streams. Apple-centric post-production still defaults to MOV for some import presets and handoff habits even when the underlying video is identical.

MP4MOV
Common sourceWeb, Android, Windows exportsiPhone, Final Cut, QuickTime
Final Cut ProImports fine; some teams prefer MOVNative default
Same codecs inside?Often yesOften yes
Best first stepRemux to MOV when codecs matchReady for Apple workflow

In practice, MP4 shows up in stock footage downloads, screen recordings from cross-platform tools, and vendor demos from Windows teams. MOV is what you deliver when the post house spec sheet lists QuickTime, when you archive masters for a Mac-only library, or when a collaborator’s template expects MOV file extensions.

See MOV vs MP4 explained for container details. For the reverse direction, see MOV to MP4 on Mac .

Export in QuickTime

QuickTime Player is the fastest path for one or two MP4 files when you want a clean MOV without touching Terminal.

  1. Open the MP4 in QuickTime Player.
  2. Edit → Trim (⌘T) if you only need part of the clip.
  3. File → Export As → 1080p (or 4K when the source supports it).

QuickTime saves as MOV by default on macOS. That re-encodes to H.264, which takes time but produces an editor-friendly file. For a fast container swap without generation loss, use FFmpeg remux below when codecs already match.

SituationExport choice
One B-roll clip for Final Cut1080p or source resolution
Proxy for review720p after trim
Master archiveSource resolution export

QuickTime does not batch twenty MP4 files. Use FFmpeg or GetCompress when a downloads folder needs bulk conversion.

Convert with FFmpeg

FFmpeg in Terminal remuxes instantly or re-encodes when needed. Install through Homebrew:

brew install ffmpeg

Fast remux when video and audio are already compatible:

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

Re-encode for ProRes or all-I editing (larger files, smoother scrubbing):

ffmpeg -i input.mp4 -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov

Standard H.264 MOV for sharing with editors:

ffmpeg -i input.mp4 -c:v libx264 -crf 18 -preset medium \
  -c:a aac -b:a 192k output.mov

Batch every MP4 in a folder:

mkdir mov-out
for f in *.mp4; do
  ffmpeg -i "$f" -c copy "mov-out/${f%.mp4}.mov" 2>/dev/null || \
  ffmpeg -i "$f" -c:v libx264 -crf 18 -preset medium \
    -c:a aac -b:a 192k "mov-out/${f%.mp4}.mov"
done
FlagPlain meaning
-c copyNo re-encode; instant remux
-crf 18High quality when re-encode is required
prores_ksIntermediate codec for heavy editing

When you need MP4 for upload after editing, see MOV to MP4 on Mac . When file size matters, see the video compression guide .

Using GetCompress

GetCompress fits recurring convert MP4 to MOV on Mac work when Windows-sourced MP4 clips arrive daily and your edit bay expects MOV wrappers.

Drop MP4 files or a folder into the app. Choose MOV output, set resolution and quality, or trim in the preview before export. Use target file size when a review link caps megabytes even after format change.

Useful workflow pieces in GetCompress:

  • Batch queue: convert a vendor MP4 folder without opening each file in QuickTime.
  • Presets: save “1080p MOV for Final Cut” and reuse for weekly ingest.
  • Preview and trim: cut leader frames before import when downloads include slates.
  • Folder monitoring: watch a sync folder and auto-convert new MP4 drops from Windows collaborators.
  • Local processing: keep unreleased footage on your Mac instead of uploading to online converters.
  • Clipboard flow: paste a copied MP4 and export MOV without digging for the file path.

After conversion, if the MOV is too large for transfer, adjust quality or resolution in the same window rather than starting over in Terminal.

Buy GetCompress now for local media compression with reusable presets and no media upload.