Private Convert

Notepad - How to convert MOV to MP4 for better compatibility

How to convert MOV to MP4 for better compatibility

A practical guide to converting MOV files to MP4 on Mac, Windows, and in the browser — including free tools, quality tips, and troubleshooting.

March 8, 2026 · 9 min read

MOV files come from iPhones, QuickTime recordings, and most Apple-first workflows. The format works fine inside that ecosystem. Outside it — uploading to a platform, sharing with a Windows user, or dropping into a browser-based editor — MOV creates friction that MP4 does not.

This guide covers every practical way to convert MOV to MP4: in the browser, on Mac, on Windows, with free desktop tools, and from the command line. It also explains when quality actually changes and when it does not.

What MOV is and why it needs converting

MOV is Apple’s QuickTime container format, introduced in 1991. It can hold H.264, H.265, ProRes, and other codecs alongside multiple audio tracks and metadata. It is a capable format — the problem is not the codec inside, it is the container.

MP4 is the industry-standard container that every platform, browser, device, and video editor understands by default. When a service says “we accept video files,” it usually means MP4 specifically. MOV often fails silently: the upload goes through but playback breaks, or the file gets rejected outright.

Common reasons to convert MOV to MP4:

  • A platform does not accept MOV uploads (social media, course platforms, video hosts)
  • A Windows or Android user cannot play the file without installing extra codecs
  • The file needs to embed cleanly in a browser or web app
  • A video editor or post-production tool requires MP4 input
  • The MOV file is large and you want a more compressed, shareable version

How to convert MOV to MP4 in the browser

The fastest option — no software to install, no file upload to a server.

The MOV to MP4 converter on privateconvert.org runs entirely in your browser using WebAssembly. The file never leaves your machine. No account, no upload queue, no file size restrictions that require a paid plan.

Steps:

  1. Open the MOV to MP4 converter.
  2. Drop in your .mov file.
  3. The conversion runs locally.
  4. Download the MP4 when it finishes.

This approach is useful when you need a quick conversion without committing to a desktop tool. It also handles files that would raise privacy concerns if uploaded to a cloud service — screen recordings, client footage, internal presentations.

For large files or batches, a desktop tool like HandBrake or ffmpeg will be faster because the browser has memory constraints.

How to convert MOV to MP4 on Mac

Using QuickTime Player (free, built-in)

QuickTime Player can export MOV files as MP4 without any additional software. This is the simplest path on macOS.

  1. Open the MOV file in QuickTime Player.
  2. Go to File > Export As.
  3. Choose a resolution (1080p, 720p, or 4K if available).
  4. QuickTime exports as an M4V file by default, but you can rename it to .mp4 — the container is compatible.

Alternatively, use File > Export As > Movie to MPEG-4 if the option appears (it depends on the macOS version).

Limitation: QuickTime does not give you bitrate control. The output quality is preset by the resolution option you choose.

Using Finder on macOS Ventura and later

On macOS Ventura (13) and later, you can convert video files directly in Finder:

  1. Right-click the MOV file in Finder.
  2. Select Quick Actions > Convert Image — for video, this option may appear as Encode Selected Video Files.
  3. Choose a format and quality setting.
  4. Click Continue.

This works for simple conversions without opening any application.

Using iMovie

iMovie gives you more output control than QuickTime:

  1. Create a new project and import the MOV file.
  2. Go to File > Share > File.
  3. Set the format to Video and Audio, resolution, and quality.
  4. Export. The file will be MP4.

iMovie re-encodes the video, so it takes longer than a container swap, but the output is reliably compatible.

How to convert MOV to MP4 on Windows

Windows does not include a native tool for MOV-to-MP4 conversion, but there are two good free options.

Using VLC Media Player

VLC is a free, open-source media player that also converts video:

  1. Open VLC and go to Media > Convert/Save (or press Ctrl+R).
  2. Click Add and select your MOV file.
  3. Click the Convert/Save dropdown and select Convert.
  4. In the Profile dropdown, choose Video - H.264 + MP3 (MP4).
  5. Set the destination file path with a .mp4 extension.
  6. Click Start.

VLC handles most MOV files without issue. It is slower than ffmpeg but easier to set up.

Using HandBrake

HandBrake is the most popular free video transcoder for Windows:

  1. Open HandBrake and drag your MOV file into the window.
  2. Under Output Settings, set the container to MP4.
  3. Choose a preset (Fast 1080p30 works for most uses).
  4. Set a destination path.
  5. Click Start Encode.

HandBrake gives you full control over bitrate, codec, and quality. For most users, the default presets produce good results without manual tuning.

How to convert MOV to MP4 with ffmpeg

ffmpeg is a command-line tool that handles virtually any video conversion task. It is free and available on Mac, Windows, and Linux.

Install ffmpeg from ffmpeg.org or via Homebrew on Mac (brew install ffmpeg).

Basic conversion (copy streams, no re-encode):

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

This is the fastest option. It repackages the MOV container into MP4 without touching the video or audio data. No quality loss, near-instant for most files.

If the copy fails or the output does not play correctly:

ffmpeg -i input.mov -c:v libx264 -crf 23 -c:a aac output.mp4

This re-encodes using H.264 video and AAC audio — the most universally supported codec pair. The -crf 23 setting is a good balance of quality and file size. Lower values (18–20) produce higher quality at larger sizes; higher values (26–28) reduce quality but shrink the file.

For H.265 / HEVC output (smaller file, same quality):

ffmpeg -i input.mov -c:v libx265 -crf 28 -c:a aac output.mp4

H.265 is roughly twice as efficient as H.264. The downside is slightly slower encoding and slightly less universal playback support on older devices.

MOV to MP4 converter quality: what actually changes

Whether quality changes depends on the conversion method.

Container swap (no quality loss): If the codec inside the MOV (typically H.264 or H.265) is already compatible with MP4, the converter can repackage the streams without re-encoding. The output is bit-for-bit identical to the source. This is what -c copy in ffmpeg does, and what most browser-based converters do by default.

Transcoding (quality depends on settings): If the source codec is not MP4-compatible (ProRes, Animation, or other high-end codecs), or if you are changing resolution or bitrate, the converter re-encodes the video. Every re-encode introduces some generation loss. Using a high-quality setting (low CRF in ffmpeg, high bitrate in HandBrake) minimizes the difference.

In practice: iPhone footage, screen recordings, and standard camera video are already H.264 or H.265 inside the MOV container. Converting these to MP4 is a container swap with no quality change. Only specialized production footage in ProRes or similar formats requires a true transcode.

Troubleshooting common conversion problems

The output MP4 has no audio. The MOV may contain audio in a format MP4 does not support natively (e.g., PCM or multi-channel audio). In ffmpeg, add -c:a aac to force AAC encoding. In HandBrake, check the Audio tab and set the codec to AAC.

The video plays but looks blocky or degraded. The bitrate setting is too low. In HandBrake, increase the quality slider. In ffmpeg, lower the CRF value (try 18–20). For browser tools, the file is already being converted at a reasonable quality — if it looks bad, the source file may have had quality issues.

The conversion produces a very large file. The converter is using a lossless or near-lossless setting. In ffmpeg, add -crf 23 (or higher) to reduce size. In HandBrake, use a standard preset rather than lossless.

The file plays on Mac but not on Windows. The video codec may be ProRes or another Apple-specific codec. Re-encode to H.264 using any tool. On Mac with ffmpeg: ffmpeg -i input.mov -c:v libx264 -c:a aac output.mp4.

QuickTime export produces an M4V file, not MP4. M4V is Apple’s container variant. You can rename the file extension from .m4v to .mp4 safely — the internal structure is the same for standard video. If the file includes DRM (iTunes purchases), renaming will not work, and the content cannot be converted.

Frequently asked questions

Does converting MOV to MP4 reduce quality?

Not if the conversion is a container swap. iPhone video and standard camera recordings store H.264 or H.265 video inside the MOV container. Converting to MP4 repackages that stream without changing it. Quality is identical. Only if you change the codec or lower the bitrate will quality change.

What is the fastest way to convert MOV to MP4 on a Mac?

QuickTime Player’s Export As function is the fastest built-in option — a few clicks, no install required. For batch conversions or more control, ffmpeg with -c copy is faster than any GUI tool because it skips re-encoding entirely.

Can I convert MOV to MP4 for free?

Yes. QuickTime Player (Mac), VLC (Windows and Mac), HandBrake, and ffmpeg are all free. The MOV to MP4 converter at privateconvert.org is also free and requires no installation or account.

Is it safe to upload MOV files to an online converter?

It depends on the service. Most cloud converters upload your file to a remote server for processing. For videos with sensitive content — client work, medical footage, internal presentations — this is a privacy risk. Tools that process files locally in the browser, like privateconvert.org, avoid this entirely: the file never leaves your device.

Why does MOV play fine on my Mac but not on other devices?

macOS and iOS include QuickTime codecs that handle MOV natively. Windows, Android, and most web browsers do not. The file plays on Apple hardware because Apple ships the decoder. On non-Apple devices, the container or codec may be unsupported.

Can I convert MOV to MP4 without installing software?

Yes. Use a browser-based converter. The MOV to MP4 tool on privateconvert.org runs locally in your browser — no installation, no upload, no account needed. Drop the file in and download the MP4.

Will the file size change after conversion?

If converting without re-encoding, file size stays roughly the same (within a few percent due to container overhead differences). If re-encoding, file size depends on the target bitrate. H.265 encoding typically produces files 30–50% smaller than H.264 at equivalent visual quality.

Try the tool

MOV to MP4

Convert MOV files to MP4 in your browser with local processing, without uploads or watermarks.

Convert
Ln 1, Col 1 UTF-8 Read only