Skip to content

Convert MP4 to MOV on Windows

Convert MP4 to MOV on Windows with Clipchamp export or FFmpeg. MOV for Mac editors and QuickTime handoffs.

By Petr Samokhin

Mac editors and clients sometimes request MOV deliverables even when your source is MP4 from Windows recorders, downloads, or exports. You notice when a post house spec lists QuickTime, when a Mac colleague says their import preset expects MOV, or when you are preparing handoff files before sending a drive. Converting locally produces the wrapper they expect without re-shooting or re-downloading.

MP4 vs MOV

MP4 and MOV can hold the same H.264, HEVC, and AAC streams. The difference is mostly extension and ecosystem defaults, not a magic quality upgrade.

MP4MOV
Common sourceWindows exports, web, AndroidiPhone, Final Cut, QuickTime
Mac post-productionAccepted; MOV still common in specsDefault in many Apple workflows
Same codecs inside?Often yesOften yes
Best first stepRemux to MOV when codecs matchReady for Mac handoff

In practice, MP4 is what your team produces on Windows. MOV is what you deliver when the recipient’s template, archive policy, or editor import dialog prefers QuickTime naming.

See MOV vs MP4 explained . For the reverse path, see MOV to MP4 on Windows .

Export in Clipchamp

Clipchamp (built into Windows 11) exports MP4 by default, not MOV. Use it when the Mac recipient accepts H.264 MP4 with QuickTime-compatible settings, or when you only need a re-encoded master before FFmpeg remux.

  1. Open the MP4 in Clipchamp.
  2. Trim the timeline if needed.
  3. Export at 1080p (or source resolution).

For a true MOV container on Windows, FFmpeg below is the reliable path. Clipchamp remains useful when you need a visual trim before remux.

SituationTool choice
Trim then remux to MOVClipchamp trim + FFmpeg
True MOV batchFFmpeg directly
Mac accepts MP4Clipchamp export may be enough

When the Mac side only rejected extension filtering, confirm whether MOV to MP4 on Windows is actually the direction they need before converting the wrong way.

Convert with FFmpeg

FFmpeg in PowerShell remuxes MP4 to MOV quickly. Install with winget:

winget install --id Gyan.FFmpeg -e

Fast remux:

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

Re-encode for higher editing quality:

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
Get-ChildItem *.mp4 | ForEach-Object {
  ffmpeg -i $_.Name -c copy "mov-out\$($_.BaseName).mov"
  if ($LASTEXITCODE -ne 0) {
    ffmpeg -i $_.Name -c:v libx264 -crf 18 -preset medium `
      -c:a aac -b:a 192k "mov-out\$($_.BaseName).mov"
  }
}
Symptom after remuxLikely causeFix
Mac editor still warnsOdd H.264 profileRe-encode with libx264
No audio on MacAudio codec edge caseRe-encode with -c:a aac
File hugeUnchanged high bitrateRe-encode with higher CRF

When the handoff also requires smaller files, see the video compression guide .

Using GetCompress

GetCompress fits recurring convert MP4 to MOV on Windows work when you prepare Mac handoffs from Windows-produced MP4 archives.

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 the transfer link caps megabytes.

Useful workflow pieces in GetCompress:

  • Batch queue: convert a project folder without scripting remux loops in PowerShell.
  • Presets: save “1080p MOV handoff” for repeat Mac client deliveries.
  • Preview and trim: cut slates before remux when downloads include intro frames.
  • Folder monitoring: watch an exports folder and auto-convert new MP4 files before nightly sync to Mac collaborators.
  • Local processing: keep unreleased footage on your machine instead of uploading to online converters.
  • Target file size: hit transfer limits without guessing CRF values per file.

After conversion, verify playback on a Mac sample machine if the deliverable is client-facing. Adjust quality in the same window if the MOV is too large for the link you use to send it.

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