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.
Detected Metadata
Preview frame
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.
ffmpeg -i input.avi -c copy output.mov
ffmpeg -i input.avi -c:v libx264 -crf 18 -preset slow -c:a aac -b:a 192k output.mov
ffmpeg -i input.avi -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov
# 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
- Download and open HandBrake from handbrake.fr.
- Drag your AVI file onto the HandBrake window to load it as the source.
- In the Summary tab, set Format to MP4.
- Choose a preset such as Fast 1080p30 and adjust quality with the RF slider (RF 18–22 for good quality).
- Set a destination file path with an .mp4 extension and click Start Encode.
- 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
- Open VLC and go to Media → Convert / Save.
- Click Add, select your AVI file, then click Convert / Save.
- Click the Edit selected profile wrench icon next to the Profile drop-down.
- In the Encapsulation tab, select QuickTime / MOV.
- In the Video codec tab, choose H.264 for best Apple compatibility.
- 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.
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
- Click "Choose Video File" and select any video file from your computer.
- The tool reads basic metadata locally in your browser — nothing is uploaded to any server.
- Review the detected file name, size, duration, resolution, and MIME type.
- Choose a desktop conversion method from the guides below (FFmpeg, HandBrake, or VLC).
- Copy the FFmpeg command using the "Copy" button and run it in your terminal.
- 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.