AVI files can contain both audio and video data, widely recognized but with larger file sizes.
Common Uses
Windows video playback
Legacy video storage
Video editing versatility
AVI Transformation FAQ
What is an AVI video file?
+
AVI is a Microsoft-native video container. It plays out of the box on Windows but often needs a codec pack or an alternative player elsewhere. Convert AVI to MP4 for the broadest cross-platform support. AVI is trivially simple, which is exactly why ancient camcorders, capture cards, DVD ripping tools and Windows-era software all still emit it.
Why does AVI behave so differently from modern video files?
+
Because it predates them by a decade. AVI is a RIFF chunk file: a flat sequence of interleaved audio and video chunks with an index bolted on the end. There is no concept of a variable frame rate, no place to put a subtitle stream, and the index is why a truncated file often will not seek at all. Everything awkward about the format traces back to that layout. AVI is Microsoft’s Audio Video Interleave, introduced in 1992 on top of the RIFF chunk format — one of the oldest containers still in circulation. AVI has no native support for modern codecs, variable frame rate, soft subtitles or files over 4 GB without hacks, and its per-chunk overhead bloats the file.
Why do camcorders and capture cards still produce AVI?
+
Because the format is simple enough to write in real time on modest hardware, and because a generation of capture equipment was designed around it and never updated. The device is not making a quality judgement, it is writing what its firmware knows. That is also why these files are large for what they contain and why converting them is usually the first thing anyone does.
Why will my browser not play an AVI file?
+
Browsers ship decoders for a deliberately short list of formats, and AVI is not on it — the licensing, the codec variety it permits, or simply its age keeps it out. The file is not broken and a desktop player will open it, but nothing you do to the page will make a browser render it. Converting to a web-native container is the only reliable route to inline playback.
Why does my AVI footage show comb lines on anything that moves?
+
Because it is interlaced. Content in this format very often comes from the broadcast and DVD era, where each frame is stored as two half-height fields captured a fiftieth of a second apart. A progressive screen displays both at once, so movement between the two exposures appears as horizontal combing. Deinterlacing on conversion weaves the fields into whole frames and the artefact disappears for good.
Why are my AVI recordings split into numbered parts?
+
A format-level ceiling, not a fault in the recorder. AVI has a practical single-file limit that long or high-bitrate material runs straight into, so capture software splits the recording rather than producing a file it cannot index. Converting to a container with no such limit lets the pieces be rejoined into one continuous video, which is usually the real reason people convert this format at all.
Why does AVI playback stutter or run hot on older machines?
+
Because it is being decoded in software. Hardware video decoders only cover a fixed list of formats, and AVI is outside it on most devices, so every frame is reconstructed by the CPU instead. On a current desktop that is merely wasteful; on a phone, an older laptop or a smart TV it shows up as dropped frames, fan noise and battery drain. Converting to a hardware-supported format removes the problem entirely. AVI files predate modern codecs: expect MPEG-4 Part 2 (DivX/Xvid), Motion JPEG or raw uncompressed frames rather than H.264.
Should I still be saving new files as AVI?
+
Only if something downstream demands it. The format still opens, and there is no urgency about converting an archive that is not causing trouble, but it is no longer where the tooling or the efficiency is going. For anything new, a current format costs nothing extra and avoids the next round of this question a few years from now.
Why convert AVI to another video format?
+
Convert AVI to MP4 when you need universal playback — web browsers, mobile devices, smart TVs and editing apps all play MP4 natively. Convert to WebM for web embedding where smaller file size matters. Convert to MOV when working in Final Cut or other Apple-native pipelines.
Does AVI conversion re-encode the video?
+
When the source codec inside AVI is compatible with the target container we remux without re-encoding (fast, lossless). When the codec must change (for example HEVC to H.264) the video is re-encoded — slower, with a small generational quality cost.