Why convert MOV to AVI?
The most common reason is compatibility with a legacy Windows video editor, an old DVD player, or a car stereo that reads .AVI but not MOV. Some early-2000s Windows software also imported AVI more reliably than QuickTime formats. Outside those specific cases, MP4 is a more practical target for broad device compatibility.
How to convert MOV to AVI
VLC Media Player FREE
Open VLC, go to Media > Convert/Save, add your MOV, select an AVI profile, and save.
HandBrake - MP4 alternative FREE
HandBrake cannot output AVI; use it when MP4 is acceptable - it gives better quality and a smaller file than AVI.
Command line - FFmpeg CLI
Run ffmpeg -i input.mov -c:v libxvid -q:v 3 -c:a libmp3lame -b:a 192k output.avi to re-encode with Xvid video and MP3 audio.
Programs that convert MOV
About these formats
A MOV file is an Apple QuickTime movie - the default format for video recorded on iPhone, iPad, and Mac. On a Mac, double-click it to play in QuickTime Player. On Windows 10/11, the…
Open .MOV details →An AVI file is a video container created by Microsoft in 1992. To open one, use VLC media player - it includes the DivX/Xvid codecs old AVIs need and works on Windows, Mac, Linux, Android…
Open .AVI details →Quality & what to watch
- Re-encoding is mandatory: AVI does not support H.264 or HEVC, so the video must be decoded and re-encoded to Xvid or MPEG-4, which always causes some quality loss.
- Output files are usually larger than the source because Xvid is less efficient than H.264 at the same visual quality level.
- Audio is re-encoded too: AAC from
MOVis converted to MP3 insideAVI, adding a second quality step.
Frequently asked questions
Does converting MOV to AVI lose quality?
-q:v 3 in FFmpeg keeps the loss minimal for typical footage.