AVI to MOV Converter

Learn how to convert AVI video files to MOV (QuickTime) format using free tools like FFmpeg, HandBrake, and VLC, with step-by-step command examples.

Video File Inspector

Select any video file to read its metadata instantly — 100% client-side, nothing uploaded.

AVI vs. MOV — Format Comparison

Know what you are converting and why

Feature AVI MOV
Developer Microsoft (1992) Apple (QuickTime)
Common codecs MPEG-4, Xvid, DivX, H.264 H.264, H.265, ProRes, AAC
Platform Windows legacy software macOS, iOS native
Container age Legacy (1992, limited updates) Modern (1991–present)
Streaming Not supported Supported
Apple editing Poor (needs conversion) Native (Final Cut, iMovie)
File size Larger (older codecs) Smaller (H.264/H.265)

FFmpeg (Recommended — full codec control)

Free, cross-platform, most flexible

FFmpeg can rewrap AVI to MOV with no quality loss when the source codec is H.264, or re-encode to H.264/AAC for maximum Apple compatibility. Click Copy on any command to paste it into your terminal.

Stream copy (zero re-encoding — H.264 AVI only)
ffmpeg -i input.avi -c copy output.mov
Re-encode to H.264 + AAC (universal compatibility)
ffmpeg -i input.avi -c:v libx264 -crf 18 -preset slow -c:a aac -b:a 192k output.mov
Apple ProRes (lossless quality, large file)
ffmpeg -i input.avi -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov
Install FFmpeg
# macOS (Homebrew)
brew install ffmpeg

# Windows (winget)
winget install ffmpeg

# Ubuntu / Debian
sudo apt install ffmpeg

Use -crf 18 for near-lossless quality (larger file) or -crf 28 for smaller file with more compression. Lower CRF = higher quality.

HandBrake (GUI — quality-focused encoding)

Free, Windows / Mac / Linux

Note: HandBrake outputs MP4 and MKV natively. For MOV output, use HandBrake to produce an MP4, then use FFmpeg to rewrap it: ffmpeg -i output.mp4 -c copy final.mov
  1. Download and open HandBrake from handbrake.fr.
  2. Drag your AVI file onto the HandBrake window to load it as the source.
  3. In the Summary tab, set Format to MP4.
  4. Choose a preset such as Fast 1080p30 and adjust quality with the RF slider (RF 18–22 for good quality).
  5. Set a destination file path with an .mp4 extension and click Start Encode.
  6. Run ffmpeg -i output.mp4 -c copy final.mov to rewrap to MOV with no quality loss.

VLC Media Player (GUI — no command line)

Free, Windows / Mac / Linux

  1. Open VLC and go to Media → Convert / Save.
  2. Click Add, select your AVI file, then click Convert / Save.
  3. Click the Edit selected profile wrench icon next to the Profile drop-down.
  4. In the Encapsulation tab, select QuickTime / MOV.
  5. In the Video codec tab, choose H.264 for best Apple compatibility.
  6. Set the destination file with a .mov extension and click Start.

VLC re-encodes the video and writes the output MOV file to your chosen destination.

Command copied!

Summary

Learn how to convert AVI video files to MOV (QuickTime) format using free tools like FFmpeg, HandBrake, and VLC, with step-by-step command examples.

How it works

  1. Click "Choose Video File" and select any video file from your computer.
  2. The tool reads basic metadata locally in your browser — nothing is uploaded to any server.
  3. Review the detected file name, size, duration, resolution, and MIME type.
  4. Choose a desktop conversion method from the guides below (FFmpeg, HandBrake, or VLC).
  5. Copy the FFmpeg command using the "Copy" button and run it in your terminal.
  6. Drop the resulting MOV file back here to verify its metadata.

Use cases

  • Bring AVI footage from older camcorders into Final Cut Pro or iMovie.
  • Convert legacy AVI recordings to MOV for playback on iPhone or iPad.
  • Prepare AVI surveillance clips for editing in macOS-based workflows.
  • Convert AVI files to MOV for upload to Apple-centric platforms.
  • Rewrap AVI encoded with H.264 into a MOV container with zero re-encoding.
  • Batch-convert AVI archives to MOV for long-term Apple ecosystem storage.
  • Verify video metadata before and after conversion to confirm codec and resolution.
  • Convert AVI to MOV while preserving original audio tracks.

Frequently Asked Questions

Last updated: 2026-06-11 · Reviewed by Nham Vu