Convert MOV to MP4 (Free, No Watermarks): iPhone, Windows, Mac, and Online (Batch‑Friendly)

By Abdulbatin Anaza • Last updated: May 2026 • Estimated reading time: 14–20 minutes

iPhones and many cameras save videos as .mov. Great quality, but some apps and sites only accept .mp4. The fix is simple: Convert MOV to MP4 without losing quality—on iPhone, Windows, Mac, or with safe web tools.

This guide shows the best free methods (including batch) to Convert MOV to MP4, how to keep audio/video intact (H.264 + AAC), and quick settings that prevent upload or playback errors.

Related how‑tos:

MOV vs MP4 (which should you choose?)

  • MOV: Apple’s container. Can hold H.264 or HEVC video, plus many audio formats. Very compatible on Apple devices; sometimes picky elsewhere.
  • MP4: Universal container. Most sites and apps prefer H.264 (AVC) + AAC inside MP4 for maximum compatibility.

Quick pick: Sharing or uploading? Convert MOV to MP4 (H.264 + AAC) at 1080p/30 fps (or your original frame rate).

Prevent future headaches (iPhone camera/transfer settings)

This doesn’t convert old files—it just makes new captures easier to share and reduces the need to Convert MOV to MP4 later.

  • iPhone → Settings → Camera → Formats → choose Most Compatible (records H.264; still saves as .mov but more compatible).
  • iPhone → Settings → Photos → “Transfer to Mac or PC” → select Automatic (iOS can provide a more compatible file on import).

Apple help: About HEIF/HEVC on iPhone

Method 1: iPhone/iPad — Shortcuts (free, batch‑friendly)

Use Apple’s Shortcuts to Convert MOV to MP4.

  1. Open Shortcuts → tap +.
  2. Add actions:
    • Select Photos (turn on Select Multiple)
    • Encode Media → Format: Video → set Preset (e.g., 1080p) → Audio track: Include
    • Save File (enable Ask Where to Save)
  3. Run it → pick your MOVs → choose a folder in Files → you’ll get .mp4 exports. This will Convert MOV to MP4 for multiple clips.

Tip: Name the shortcut “Convert to MP4.” For quick shares, you can send straight to Messages/Drive from the final action.

Apple help: Shortcuts on iPhone

Method 2: Mac — iMovie, Quick Actions, HandBrake, or FFmpeg

On Mac, you can Convert MOV to MP4 with iMovie, Finder Quick Actions, HandBrake, or FFmpeg.

A) iMovie (outputs MP4 by default)

  1. Open iMovie → create a new Movie → drag in your MOV.
  2. Click Share (top‑right) → File… → Format: Video + Audio → Resolution: your choice → Quality: High (or “Custom” with H.264) → Next… → Save.

Result: Convert MOV to MP4 (H.264 + AAC) compatible with most sites.

B) Finder Quick Action — Encode Selected Video Files (fast)

  1. Select one or more videos in Finder → right‑click → Quick Actions → Encode Selected Video Files.
  2. Choose Format: H.264 and a resolution → Continue.

Note: This often produces .m4v. It’s MP4‑compatible. If a site insists on “.mp4,” you can safely rename .m4v to .mp4 in most cases—a quick way to Convert MOV to MP4 fast.

C) HandBrake (free, precise control)

  1. Install HandBrake (Mac/Windows/Linux).
  2. Open your MOV → choose preset Fast 1080p30.
  3. Video tab: H.264 (x264), Constant Quality 20–22 (lower = higher quality), Framerate: Same as source + Constant Framerate.
  4. Audio tab: AAC ~160 kb/s.
  5. Optional: Summary → check Web Optimized. Click Start.

HandBrake lets you Convert MOV to MP4 with precise control.

D) FFmpeg (CLI: rewrap or re‑encode)

Use FFmpeg to Convert MOV to MP4 by rewrapping (no quality loss) or transcoding (maximum compatibility).

# 1) Fast rewrap (no quality loss) if codecs already compatible (e.g., H.264 + AAC)
ffmpeg -i input.mov -c copy output.mp4

# 2) Guaranteed compatibility: re‑encode to H.264 + AAC
ffmpeg -i input.mov -c:v libx264 -pix_fmt yuv420p -crf 18 -preset veryfast -c:a aac -b:a 160k output.mp4

Docs: ffmpeg.org

Method 3: Windows — Clipchamp, VLC, HandBrake, or FFmpeg

On Windows, Clipchamp, VLC, HandBrake, and FFmpeg help you Convert MOV to MP4 without watermarks.

A) Clipchamp (bundled on Windows 11)

  1. Open Clipchamp → Create a new video → import your MOV.
  2. Drag it to the timeline → click Export → choose 1080p (or source resolution). This will Convert MOV to MP4 with H.264 + AAC.

Note: Some premium features require sign‑in; exporting your own video doesn’t add watermarks.

B) VLC (free, no watermark)

  1. Install VLC.
  2. Media → Convert/Save → Add your MOV → Convert/Save.
  3. Profile: Video — H.264 + MP3 (MP4) → set destination → Start. VLC lets you Convert MOV to MP4 for free.

C) HandBrake (GUI)

  1. Open your MOV → preset Fast 1080p30 → tweak settings as in the Mac section → Start Encode.

D) FFmpeg (CLI)

# Fast rewrap (no quality loss) if compatible
ffmpeg -i input.mov -c copy output.mp4

# Re-encode to H.264 + AAC for full compatibility
ffmpeg -i input.mov -c:v libx264 -pix_fmt yuv420p -crf 20 -preset fast -c:a aac -b:a 160k output.mp4

Method 4: Online tools (fast—avoid sensitive videos)

Use reputable web tools to Convert MOV to MP4 when convenience matters (not for private/client footage). Prefer tools with clear deletion policies and no watermarks.

Privacy tips:

  • Check file retention and delete after converting.
  • Avoid uploading videos with sensitive content or client info.
  • If you hit file‑size limits, convert offline with HandBrake/FFmpeg.

Batch conversion (fast, repeatable)

Batch Convert MOV to MP4 with these workflows:

A) HandBrake queue (GUI)

  1. HandBrake → Open Source (Folder) → select your MOV folder.
  2. Choose preset Fast 1080p30 → set Web Optimized (optional) → Add All to Queue → Start.

B) FFmpeg loop (macOS/Linux bash)

mkdir -p out
for f in *.mov; do
  ffmpeg -i "$f" -c:v libx264 -pix_fmt yuv420p -crf 20 -preset fast -c:a aac -b:a 160k "out/${f%.*}.mp4"
done

C) FFmpeg loop (Windows PowerShell)

mkdir out
Get-ChildItem *.mov | ForEach-Object {
  $out = "out\" + [System.IO.Path]::GetFileNameWithoutExtension($_.Name) + ".mp4"
  ffmpeg -i $_.FullName -c:v libx264 -pix_fmt yuv420p -crf 20 -preset fast -c:a aac -b:a 160k $out
}

Keep quality and compatibility (settings that work)

Use these defaults when you Convert MOV to MP4:

  • Codec: H.264 (AVC) video + AAC audio for max compatibility.
  • Pixel format: yuv420p (required by many sites/players).
  • Resolution & fps: Keep original unless you need a smaller file. If uploads fail, try 1080p, 30 fps constant.
  • Bitrate/quality: Use CRF (HandBrake/FFmpeg) ~18–23. Lower = larger/higher quality.
  • Web Optimized: Puts MP4 headers up front for faster streaming (optional but helpful).

Audio, rotation, and HDR notes

  • No audio after converting: Your MOV may use PCM/ALAC; transcode audio to AAC (HandBrake/FFmpeg default in examples).
  • Sideways video: Some players ignore rotation metadata. Re‑encode with rotation applied (HandBrake: Filters → Rotate/Flip) or set -vf transpose=1 in FFmpeg.
  • HDR → SDR: If colors look washed out after upload, tone‑map HDR to SDR (HandBrake 1.6+: Filters → HDR10/HLG to SDR; FFmpeg example: -vf zscale=t=linear:npl=100,tonemap=hable,zscale=t=bt709:m=bt709:r=tv).

Troubleshooting (real fixes)

  • Windows won’t play my MOV at all.
    Install Microsoft’s HEIF/HEVC support if prompted (HEVC codec may be paid). Or just convert to MP4 H.264 with VLC/HandBrake.
  • Upload keeps failing on a site.
    Transcode to H.264 + AAC, 1080p, 30 fps constant, yuv420p, and keep file size under the site’s limit. Check the site’s spec page for exact caps.
  • “Converted” super fast but still won’t upload.
    A pure rewrap (-c copy) didn’t Convert MOV to MP4 codecs. Do a real transcode to H.264 + AAC.
  • File is too big.
    Drop to CRF 22–24 or reduce resolution to 1080p. Trim unneeded sections first. Then share with a link: Share Large Files Safely.
  • Audio out of sync.
    Force Constant Framerate (HandBrake) or set FFmpeg -vsync cfr and -r to a stable fps (e.g., 30).

Helpful resources

Summary to Convert MOV to MP4: fastest path by device

  • iPhone/iPad (batch): Shortcuts → Encode Media → Save to Files → MP4.
  • Mac (simple): iMovie → Share → File → MP4. Fast batch: Finder → Encode Selected Video Files (rename .m4v to .mp4 if needed).
  • Windows (free): Clipchamp export to MP4, or VLC/HandBrake with H.264 + AAC.
  • Online (non‑sensitive): CloudConvert/FreeConvert/Adobe Express → delete uploads after.

Once converted, share with a link (no size limits): Share Large Files Safely. Keep your library neat with clear names: Rename Files in Bulk. If you’re making new videos, here’s the easiest capture path: Record Your Screen.

You can check out our other articles on:

 

Leave a Comment