How to Convert MOV to MP4 — Free, Online, No Software Needed
You recorded a video on your iPhone, exported a clip from iMovie, or received a QuickTime file from a colleague — and now it won't play on Windows, your Android phone, or any video editing platform that isn't Apple. The problem is the MOV format.
MOV is Apple's proprietary container. MP4 is the universal standard that plays on every device on the planet. This guide shows you four free ways to convert MOV to MP4, including a fully browser-based method that never uploads your file to any server.
What Is MOV and Why Doesn't It Play Everywhere?
MOV is Apple's QuickTime container format. It was designed in the 1990s for the Mac ecosystem and is still the default recording format on iPhone and the default export format in iMovie, Final Cut Pro, and QuickTime Player.
The problem: MOV files often contain codecs (like Apple ProRes or HEVC with specific flags) that Windows and Android do not support natively. Even when the video inside a MOV is H.264 — which Windows understands — the container wrapper itself can cause compatibility failures in Windows Media Player, older editing software, and most smart TVs.
MP4 is the international standard (ISO 14496-12). It uses the same H.264 or H.265 video codecs as MOV, but in a container that every device, browser, streaming service, and social media platform accepts without plugins or codecs.
In many cases, converting MOV to MP4 is a simple remux — the video data is moved from one container to another without any re-encoding. This means zero quality loss and very fast conversion.
Method 1 — Convert MOV to MP4 Free in Your Browser
- Open convertlo.pro/mov-to-mp4.html on any device.
- Drag and drop your MOV file, or click Browse to select it.
- On the first use, the browser downloads FFmpeg.wasm (~32 MB) — this is a one-time download cached automatically.
- The conversion runs 100% in your browser — your video never leaves your device.
- Click Download — your MP4 is ready in seconds to minutes depending on file size.
Works on Chrome, Edge, Firefox, and Safari. Supports MOV, QuickTime, AVI, MKV, WebM, and more. Batch conversion available.
Method 2 — Convert MOV to MP4 Using VLC (Free Desktop App)
- Download and install VLC from videolan.org (free, no ads, no bundled software).
- Open VLC. Go to Media → Convert / Save (Windows: Ctrl+R · Mac: Cmd+R).
- Click Add and select your MOV file. Then click Convert / Save.
- In the Profile dropdown, select Video — H.264 + MP3 (MP4).
- Click the wrench icon next to the profile to adjust quality if needed.
- Set a destination file path ending in
.mp4. - Click Start. VLC will re-encode and save the MP4.
VLC handles virtually any MOV variant, but it re-encodes the video (slower) rather than remuxing. Good for problematic MOV files that other tools can't open.
Method 3 — Convert MOV to MP4 with HandBrake (Best Quality Control)
- Download HandBrake from handbrake.fr (free, open-source, no bundleware).
- Open HandBrake and drag your MOV file into the window, or click Open Source.
- In the Presets panel on the right, choose Fast 1080p30 (or the resolution that matches your source).
- Make sure Format is set to MP4 in the Summary tab.
- For best quality, set the Constant Quality (RF) slider to 18–22. Lower = better quality, larger file.
- Click Browse to set the output file, then click Start Encode.
HandBrake gives you the most quality control — resolution, bitrate, frame rate, audio tracks. Best choice for archiving or sharing high-quality video.
Method 4 — Convert MOV to MP4 with FFmpeg (Command Line, Zero Quality Loss)
- Install FFmpeg from ffmpeg.org, or on Mac run
brew install ffmpeg. - Open Terminal (Mac/Linux) or Command Prompt (Windows).
- To remux with zero quality loss (fastest, recommended if source is H.264):
ffmpeg -i input.mov -c copy output.mp4
- To re-encode with high quality (use if remux gives playback issues):
ffmpeg -i input.mov -c:v libx264 -crf 18 -c:a aac -b:a 192k output.mp4
The -c copy flag remuxes without re-encoding — instant conversion, zero quality loss. Use -crf 18 for near-lossless re-encoding (lower number = higher quality).
MOV vs MP4 — Format Comparison
| Property | MOV (QuickTime) | MP4 |
|---|---|---|
| Created by | Apple | MPEG / ISO Standard |
| Plays on Windows | Often fails | Always |
| Plays on Android | Rarely | Always |
| Browser support | Safari only | All browsers |
| Social media upload | Some platforms reject | Universally accepted |
| Supported codecs | H.264, HEVC, ProRes, DNxHD | H.264, H.265, AV1 |
| File size (same quality) | Often larger | Smaller or equal |
| Best for | Apple ecosystem editing | Sharing, streaming, everywhere |
Convert Your MOV to MP4 Now
Drop your MOV file. Converted in seconds — free, private, no upload to any server.
Frequently Asked Questions
Why won't my MOV file play on Windows?
Does converting MOV to MP4 reduce video quality?
ffmpeg -i input.mov -c copy output.mp4. If you re-encode (VLC, HandBrake, browser tool), use the highest quality settings (CRF 18 or lower) to preserve near-original quality.