How to Convert MOV to MP4: Formats, Tools, and What to Know Before You Start
MOV and MP4 are both video container formats — but they don't behave the same way across devices, platforms, and editing workflows. If you've recorded video on an iPhone or Mac and found it won't play smoothly elsewhere, or if you're preparing footage for a website, social media, or a client, converting MOV to MP4 is usually the right move. Here's what's actually happening when you convert, and what determines how well it goes.
Why MOV and MP4 Aren't the Same Thing
MOV is Apple's proprietary container format, developed for QuickTime. It handles high-quality video well and works seamlessly in Apple ecosystems — Final Cut Pro, iMovie, macOS Preview. But outside Apple's world, MOV support is inconsistent. Many Android devices, Windows apps, and web browsers won't play MOV files natively, or will struggle with them.
MP4 (technically MPEG-4 Part 14) is the universal standard. It's supported by virtually every device, operating system, browser, streaming platform, and video editor on the planet. When broad compatibility matters, MP4 wins.
Both formats can contain video encoded with H.264 or H.265 (HEVC) codecs — which means converting MOV to MP4 is often just a container swap, not a full re-encode. When that's the case, the conversion is fast and quality loss is minimal.
What Actually Happens During Conversion 🎬
This is where it matters whether you're doing a remux or a transcode.
- Remux: The video and audio streams are moved from the MOV container into an MP4 container without re-encoding. Fast, lossless in practice, no quality degradation.
- Transcode: The video is decoded and re-encoded, usually to change the codec or compression settings. Slower, introduces generation loss, but necessary when the original codec isn't MP4-compatible.
Most modern MOV files from Apple devices use H.264 or H.265 video with AAC audio — both of which are natively compatible with MP4. In those cases, a remux is all that's needed. Older MOV files using Apple Intermediate Codec or ProRes may require a true transcode.
Common Methods for Converting MOV to MP4
On a Mac
QuickTime Player handles this natively. Open the MOV file, go to File → Export As, and choose a resolution like 1080p or 4K. QuickTime exports as MP4 using H.264 by default. No third-party software required.
HandBrake (free, open-source) gives you more control — output format, codec, quality settings, frame rate. It supports batch conversion and is available on Mac, Windows, and Linux.
iMovie and Final Cut Pro can both export directly to MP4. In Final Cut, use File → Share → Export File and select H.264 or H.265 as the format.
On Windows
VLC Media Player converts MOV to MP4 through its Media → Convert/Save menu. It's free and handles most codec situations.
HandBrake works identically on Windows as on Mac. For straightforward conversions, the "Fast 1080p30" preset is a reliable starting point.
Photos app and the Xbox Game Bar won't convert video formats — you'll need a dedicated tool.
Online Converters
Browser-based tools like Cloudconvert or similar services let you upload a MOV file and download an MP4. Useful for occasional, low-stakes conversions. The tradeoffs: upload speed limits large files, files leave your device, and free tiers often cap file size or resolution.
Command Line (FFmpeg)
FFmpeg is the professional standard — free, powerful, and runs on any OS. A basic remux command looks like this:
ffmpeg -i input.mov -c copy output.mp4 The -c copy flag copies streams without re-encoding. For a transcode with H.264:
ffmpeg -i input.mov -c:v libx264 -crf 23 -c:a aac output.mp4 FFmpeg requires comfort with terminal commands, but it's the most reliable option for batch jobs, automation, or unusual source files.
Variables That Affect Your Conversion 🔧
Not every MOV-to-MP4 conversion is equal. These factors meaningfully change the process and outcome:
| Variable | Why It Matters |
|---|---|
| Source codec | H.264/H.265 MOV = fast remux. ProRes or other codecs = slower transcode |
| File size | Large 4K files take longer; online tools may reject them |
| Target platform | YouTube, Instagram, and web players each have preferred specs |
| Quality requirements | Archival work demands lossless-adjacent settings; social sharing tolerates compression |
| Hardware | GPU acceleration (NVIDIA NVENC, Apple Silicon) dramatically speeds up transcoding |
| OS and available tools | Mac users have QuickTime built in; Windows users need third-party software |
Quality and File Size After Conversion
If you're remuxing, quality is preserved exactly — you're not touching the video data. If you're transcoding, quality depends on the CRF value (in HandBrake or FFmpeg) or the quality slider in GUI tools. Lower CRF = higher quality, larger file. Higher CRF = smaller file, more visible compression.
For most use cases — web video, social media, client delivery — H.264 at a moderate quality setting produces MP4 files that look good and stay reasonably small. H.265 produces smaller files at equivalent quality, but encoding takes longer and some older players don't support it.
Choosing the Right Approach for Your Situation
The method that makes sense depends heavily on factors specific to you:
- How often you convert: One-off conversions suit QuickTime or an online tool. Regular or batch work suits HandBrake or FFmpeg.
- Your source material: ProRes footage from a cinema camera is a different problem than iPhone video.
- Where the output is going: A streaming platform, a video editor, a web page, and a client hard drive each have different format expectations.
- Your comfort with software: Command-line tools offer the most control but assume technical confidence.
The conversion itself is technically straightforward — the real question is which combination of quality, speed, file size, and compatibility fits what you're actually trying to do with the file.