<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>AVI on File Format Blog</title>
    <link>https://blog.fileformat.com/uk/tag/avi/</link>
    <description>Recent content in AVI on File Format Blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>uk</language>
    <lastBuildDate>Mon, 22 Jun 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://blog.fileformat.com/uk/tag/avi/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Розшифровка AVI: всередині застарілої архітектури контейнера Microsoft</title>
      <link>https://blog.fileformat.com/uk/video/decoding-avi-inside-microsoft-s-legacy-container-architecture/</link>
      <pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate>
      
      <guid>https://blog.fileformat.com/uk/video/decoding-avi-inside-microsoft-s-legacy-container-architecture/</guid>
      <description>Дізнайтеся про основи AVI: структуру файлу, розташування чанків, коди FourCC та розширення OpenDML для роботи зі старими відео понад обмеження 2 ГБ.</description>
      <content:encoded><![CDATA[<p><strong>Останнє оновлення</strong>: 30 Jun, 2026</p>
<figure class="align-center ">
    <img loading="lazy" src="images/decoding-avi-inside-microsoft-s-legacy-container-architecture.webp#center"
         alt="Title - Decoding AVI: Inside Microsoft’s Legacy Container Architecture"/> 
</figure>

<p><strong>TL;DR</strong> – AVI (Audio Video Interleave) — це перший контейнер «цифрового відео» від Microsoft, створений разом з Windows 95. Це простий файл на базі RIFF, який чергує стиснені відео‑ та аудіо‑фрагменти, щоб програвач міг читати їх синхронно. Формат досі підтримується Windows Media Player та безліччю інструментів з відкритим кодом, проте йому бракує сучасних можливостей, таких як HDR, 10‑бітний колір та надійні метадані потокового відео. Якщо вам колись доведеться розбиратися зі старими записами, зрозуміти структуру чанків, коди FourCC та розширення OpenDML, які піднімають обмеження у 2 ГБ – це і є суть AVI.</p>
<hr>
<h2 id="1-що-саме-таке-файл-avi">1. Що саме таке файл AVI?</h2>
<ul>
<li><strong>Повна назва:</strong> <em>Audio Video Interleave</em></li>
<li><strong>Перше появлення:</strong> Windows 95 (1995) – відповідь Microsoft на «цифрове відео» на споживчому ПК.</li>
<li><strong>Специфікація:</strong> Побудовано на специфікації <strong>RIFF</strong> (Resource Interchange File Format) 1991 року. RIFF — це універсальний «чанк‑базований» контейнер; AVI просто визначає набір чанків, які містять аудіо, відео та індексні дані.</li>
<li><strong>Розширення файлу / MIME:</strong> <code>.avi</code> – <code>video/x-msvideo</code>.</li>
<li><strong>Основна мета:</strong> Зберігати аудіо‑ і відеопотоки щільно перемежованими на диску, щоб простий цикл відтворення міг прочитати відеокадр, а потім відповідний аудіо‑зразок, без дорогих перемотувань.</li>
<li><strong>Статус застарілості:</strong> Все ще відтворюється у Windows Media Player, DirectShow, VLC та безлічі інших програвачів, але це не “modern” контейнер. Немає вбудованої підтримки HDR, 10‑бітного, змінного бітрейту або розширених метаданих.</li>
</ul>
<hr>
<h2 id="2-всередині-коробки--як-працює-avi">2. Всередині коробки – як працює AVI</h2>
<h3 id="скелет-riffчанка">Скелет RIFF‑чанка</h3>
<p>Файл AVI — це просто послідовність <strong>частин</strong>:</p>
<pre tabindex="0"><code>RIFF &lt;size&gt; &#34;AVI &#34;          ; file header
  LIST &#34;hdrl&#34;               ; header list
    avih ...                ; main AVI header (global info)
    LIST &#34;strl&#34;             ; stream list (one per stream)
      strh ...              ; stream header (type, codec, timing)
      strf ...              ; stream format (codec‑specific data)
  LIST &#34;movi&#34;               ; interleaved media data
    00dc &lt;size&gt; &lt;video frame&gt;
    01wb &lt;size&gt; &lt;audio block&gt;
    …
  idx1 ...                  ; optional index for fast seeking
</code></pre><ul>
<li><strong>Ідентифікатор блоку (4 bytes)</strong> – напр., <code>avih</code>, <code>strh</code>, <code>movi</code>.</li>
<li><strong>Розмір блоку (4 bytes)</strong> – довжина даних, що йдуть після нього (не враховуючи поля ідентифікатора та розміру).</li>
<li><strong>Дані</strong> – фактичне навантаження (заголовки, необроблені кадри тощо).</li>
</ul>
<p>Оскільки RIFF розширюваний, ви можете додавати нові типи блоків без порушення роботи старих парсерів – дизайн, який підтримував AVI протягом десятиліть.</p>
<h3 id="fourcc--шепіт-кодека">FourCC – Шепіт кодека</h3>
<p>Чотирьохсимвольні коди (FourCC) — це зв’язка, яка підказує плеєру, <em>який</em> декодер завантажити. Деякі поширені, які ви побачите у файлах AVI:</p>
<table>
<thead>
<tr>
<th>FourCC</th>
<th>Кодек (ffmpeg)</th>
<th>Типове використання</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>DIVX</code></td>
<td><code>mpeg4</code> (DivX)</td>
<td>Ранній MPEG‑4 Part 2</td>
</tr>
<tr>
<td><code>XVID</code></td>
<td><code>mpeg4</code> (Xvid)</td>
<td>Відкритий код MPEG‑4</td>
</tr>
<tr>
<td><code>MJPG</code></td>
<td><code>mjpeg</code></td>
<td>Motion‑JPEG (цифрові відеокамери)</td>
</tr>
<tr>
<td><code>H264</code></td>
<td><code>h264</code></td>
<td>H.264/AVC (рідко, але можливо)</td>
</tr>
<tr>
<td><code>MP3 </code></td>
<td><code>mp3</code></td>
<td>MP3 аудіо потік</td>
</tr>
<tr>
<td><code>PCM </code></td>
<td><code>pcm_s16le</code></td>
<td>Нестиснений PCM аудіо</td>
</tr>
</tbody>
</table>
<p>FourCC знаходиться у <strong><code>strh</code></strong> чанку (ідентифікатор кодека) і іноді у <strong><code>strf</code></strong> блоці (формат пікселів, формат аудіо‑зразка).</p>
<h3 id="таймінг-та-синхронізація">Таймінг та синхронізація</h3>
<p>AVI використовує просту систему <strong>time‑base</strong>:</p>
<ul>
<li><strong>Глобальний заголовок (<code>avih</code>)</strong>: <code>dwRate</code> / <code>dwScale</code> → кадри за секунду.</li>
<li><strong>Заголовок потоку (<code>strh</code>)</strong>: його власний <code>dwRate</code> / <code>dwScale</code> для аудіо або вторинних відео‑потоків.</li>
</ul>
<p>Плеєр множить номер кадру на <code>scale/rate</code>, щоб обчислити часову мітку презентації (PTS). Якщо масштаби не збігаються, ви побачите класичну помилку «аудіо відстає від синхронізації», яка мучить застарілі інструменти.</p>
<h3 id="блок-movi--де-живе-медіа">Блок <code>movi</code> – Де живе медіа</h3>
<p>Усі стиснені кадри розташовані у LIST <strong><code>movi</code></strong>. Кожен кадр передує <strong>chunk ID</strong>, який вказує, чи це відео (<code>00dc</code>) чи аудіо (<code>01wb</code>). Ідентифікатор також кодує номер потоку, тому файл з двома аудіо‑треками матиме <code>01wb</code> та <code>02wb</code>.</p>
<p>Оскільки дані вже перемежовані, плеєр може прочитати відео‑кадр, потім наступний аудіо‑блок і відтворити їх разом без необхідності далеко переміщатися. Такий детермінований шаблон запису зробив AVI популярним для ранніх пристроїв захоплення, яким потрібні записи на диск з низькою затримкою.</p>
<h3 id="індексація-idx1--швидке-перемотування-вперед-швидке-перемотування-назад">Індексація (<code>idx1</code>) – Швидке перемотування вперед, швидке перемотування назад</h3>
<p>Опціональний <strong><code>idx1</code></strong> chunk — це таблиця зсувів і розмірів для кожного кадру в <code>movi</code>. Коли він присутній, перемотування — простий пошук у таблиці. Якщо його немає, плеєри змушені сканувати файл «на льоту» — що може викликати помітну паузу «буферизації» у великих файлах.</p>
<h3 id="opendml-avi-20--подолання-барєру-в-2gb">OpenDML (<code>AVI 2.0</code>) – Подолання бар’єру в 2 GB</h3>
<p>Початкова специфікація RIFF обмежує поле розміру чанка 32‑бітним беззнаковим цілим числом → <strong>2 ГБ</strong> максимальний розмір файлу. OpenDML (іноді називається <em>AVI 2.0</em>) ввів:</p>
<ul>
<li><strong><code>AVIX</code></strong> LISTs – додаткові «розширені» RIFF‑розділи, які можуть йти після перших 2 ГБ.</li>
<li><strong><code>indx</code></strong> chunk – індекс, що підтримує 64‑біт.</li>
<li>Додаткові поля заголовка для довших тривалостей.</li>
</ul>
<p>Більшість сучасних інструментів (ffmpeg, VLC) автоматично переходять на OpenDML, коли вихід перевищує 2 ГБ, але багато старих програвачів все ще «задихаються» на чанках <code>AVIX</code>, тому іноді можна побачити хаки сумісності, які розбивають довге захоплення на кілька AVI‑файлів по 2 ГБ.</p>
<hr>
<h2 id="3-де-живе-avi-у-2024-році">3. Де живе AVI у 2024 році?</h2>
<table>
<thead>
<tr>
<th>Тенденція</th>
<th>Що це означає для AVI</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Перехід до MP4/MKV/ProRes</strong></td>
<td>Нові продукти надають перевагу контейнерам, які нативно підтримують HDR, 10‑біт, VBR та багаті метадані. AVI рідко обирають для нового контенту.</td>
</tr>
<tr>
<td><strong>Застаріле обладнання</strong></td>
<td>Старі камери відеоспостереження, відеокамери початку 2000‑х років та деякі ігрові движки все ще виводять AVI. Вам все одно доведеться імпортувати ці файли в сучасний робочий процес.</td>
</tr>
<tr>
<td><strong>Підтримка з відкритим кодом</strong></td>
<td><code>ffmpeg</code>, <code>libav</code>, <code>VLC</code>, <code>HandBrake</code> та <code>GStreamer</code> підтримують парсери AVI, проте вони часто <strong>перекодують</strong> у MP4/MKV для розповсюдження.</td>
</tr>
<tr>
<td><strong>Відродження OpenDML</strong></td>
<td>Записи відеоспостереження у 4K, які тривають кілька днів, швидко перевищують 2 ГБ. OpenDML (<code>AVIX</code>) все ще є найкращим рішенням, хоча багато інструментів працюють з ним неправильно.</td>
</tr>
<tr>
<td><strong>Посилення безпеки</strong></td>
<td>Історичні парсери AVI приймали некоректні розміри чанків, що призводило до уразливостей (наприклад, CVE‑2020‑13144). Тепер Windows віддає перевагу Media Foundation, який відхиляє багато застарілих особливостей, спонукаючи розробників переходити до безпечніших конвеєрів.</td>
</tr>
<tr>
<td><strong>Конвеєри, незалежні від контейнера</strong></td>
<td>Сучасні медіа‑фреймворки розглядають AVI як просто ще один елемент джерела. Після демультиплексування даних у сирі буфери контейнер стає нерелевантним для подальшої обробки.</td>
</tr>
</tbody>
</table>
<p>Коротко, AVI <strong>живий, але старіє</strong> – він виживає там, де потрібне старе обладнання або просте чергування сховища, проте не є першим вибором для нових проєктів.</p>
<hr>
<h2 id="4-практичний-досвід-робота-з-avi-сьогодні">4. Практичний досвід: Робота з AVI сьогодні</h2>
<h3 id="a-погляд-на-мінімальний-заголовок-hex">A. Погляд на мінімальний заголовок (hex)</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-text" data-lang="text"><span style="display:flex;"><span>52 49 46 46  00 00 00 00  41 56 49 20   ; &#34;RIFF&#34; + size + &#34;AVI &#34;
</span></span><span style="display:flex;"><span>4C 49 53 54  20 00 00 00  68 64 72 6C   ; LIST &#34;hdrl&#34;
</span></span><span style="display:flex;"><span>...
</span></span></code></pre></div><p>Магічна послідовність <code>RIFF</code> (<code>52 49 46 46</code>) повідомляє будь-якому парсеру «це файл RIFF». Наступні чотири байти — це загальний розмір файлу (мінус 8). Ідентифікатор <code>&quot;AVI &quot;</code> фіксує файл у сімейство AVI.</p>
<h3 id="b-перетворення-сучасного-mp4--застарілого-avi">B. Перетворення сучасного MP4 → застарілого AVI</h3>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>ffmpeg -i input.mp4 <span style="color:#ae81ff">\
</span></span></span><span style="display:flex;"><span><span style="color:#ae81ff"></span>       -c:v mpeg4 -q
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#e6db74">```</span>bash
</span></span><span style="display:flex;"><span>ffmpeg -i input.mp4 <span style="color:#ae81ff">\\</span> -c:v mpeg4 -qscale:v <span style="color:#ae81ff">5</span> <span style="color:#ae81ff">\\</span>   <span style="color:#75715e"># MPEG‑4 Part 2 (сумісний з DivX/Xvid) -c:a mp3 -b:a 192k \\      # MP3 аудіо (більшість AVI‑програвачів розуміють це) -f avi output.avi</span>
</span></span></code></pre></div><p>The command above forces <strong>MPEG‑4 Part 2</strong> video (the codec most legacy AVI players recognize) and <strong>MP3</strong> audio, then writes an AVI container. If you need <strong>OpenDML</strong> support for files larger than 2 GB, add the <code>-movflags +faststart</code>‑style flag that tells FFmpeg to use the extended <code>AVIX</code> chunks:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>ffmpeg -i input.mp4 <span style="color:#ae81ff">\\</span> -c:v mpeg4 -qscale:v <span style="color:#ae81ff">5</span> <span style="color:#ae81ff">\\</span> -c:a mp3 -b:a 192k <span style="color:#ae81ff">\\</span> -f avi -flags +global_header -movflags +faststart output.avi
</span></span></code></pre></div><blockquote>
<p><strong>Tip:</strong> Some older Windows Media Player versions still choke on the <code>AVIX</code> extension. If you must stay under 2 GB, split the source into multiple AVIs using the <code>-segment_time</code> and <code>-f segment</code> muxer.</p>
</blockquote>
<hr>
<h2 id="5-common-pitfalls--how-to-fix-them">5. Common Pitfalls &amp; How to Fix Them</h2>
<table>
<thead>
<tr>
<th>Symptom</th>
<th>Likely Cause</th>
<th>Fix</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Audio drifts out of sync after a few minutes</strong></td>
<td>Mismatched <code>dwRate/dwScale</code> between <code>avih</code> and <code>strh</code> (or a VBR audio stream)</td>
<td>Re‑encode audio to a constant‑bitrate format (e.g., MP3 128 kbps) or use <code>-vsync 2</code> in FFmpeg to force frame‑accurate timestamps.</td>
</tr>
<tr>
<td><strong>“Cannot play this video” on Windows Media Player</strong></td>
<td>Missing or corrupt <code>idx1</code> index, or OpenDML (<code>AVIX</code>) chunks not recognized</td>
<td>Run <code>ffmpeg -i broken.avi -c copy -map 0 -f avi repaired.avi</code> to rebuild the index; or use <code>aviindex</code> (part of <code>mplayer</code>) to generate a fresh <code>idx1</code>.</td>
</tr>
<tr>
<td><strong>File size capped at 2 GB despite long footage</strong></td>
<td>Encoder used classic AVI (no OpenDML)</td>
<td>Add <code>-use\_open\_dml 1</code> (FFmpeg) or <code>-format avi2</code> (VirtualDub) to enable OpenDML extensions.</td>
</tr>
<tr>
<td><strong>Green or corrupted frames</strong></td>
<td>Incompatible FourCC (e.g., H.264 in an AVI without proper headers)</td>
<td>Stick to codecs known to work in AVI (<code>mpeg4</code>, <code>msmpeg4v2</code>, <code>MJPG</code>, <code>XVID</code>). If you must store H.264, use the <code>h264</code> FourCC and ensure the <code>strf</code> chunk contains the SPS/PPS extradata.</td>
</tr>
<tr>
<td><strong>Playback stalls on network streams</strong></td>
<td>AVI’s lack of robust streaming metadata (no <code>moov</code> atom)</td>
<td>Wrap the AVI in a streaming protocol (e.g., RTSP) that handles byte‑range requests, or convert to MP4/MKV for smoother streaming.</td>
</tr>
</tbody>
</table>
<hr>
<h2 id="6-debugging-tools-you-should-keep-handy">6. Debugging Tools You Should Keep Handy</h2>
<table>
<thead>
<tr>
<th>Tool</th>
<th>Platform</th>
<th>What It Does</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>ffprobe / ffmpeg</strong></td>
<td>Cross‑platform</td>
<td>Dumps every chunk, FourCC, timestamps, and can rebuild indexes (<code>-c copy</code>).</td>
</tr>
<tr>
<td><strong>MediaInfo</strong></td>
<td>Windows/macOS/Linux</td>
<td>Human‑readable summary of streams, codecs, and container flags.</td>
</tr>
<tr>
<td><strong>VirtualDub</strong></td>
<td>Windows</td>
<td>Classic AVI editor; can rebuild headers, add OpenDML, and preview frame‑by‑frame.</td>
</tr>
<tr>
<td><strong>GSpot (legacy)</strong></td>
<td>Windows</td>
<td>Identifies obscure FourCCs and suggests appropriate codecs.</td>
</tr>
<tr>
<td><strong>aviindex</strong> (part of MPlayer)</td>
<td>Linux/macOS</td>
<td>Generates a fresh <code>idx1</code> chunk for broken files.</td>
</tr>
<tr>
<td><strong>Hex editors (HxD, Bless)</strong></td>
<td>Any</td>
<td>Directly inspect RIFF headers when you suspect malformed chunk sizes.</td>
</tr>
</tbody>
</table>
<p>A typical workflow when an AVI refuses to play:</p>
<ol>
<li><strong>Inspect</strong> with <code>ffprobe -show_format -show_streams file.avi</code>.</li>
<li><strong>Check</strong> the index: <code>ffmpeg -i file.avi -c copy -f avi -y temp.avi</code> (FFmpeg will rebuild it automatically).</li>
<li><strong>Validate</strong> FourCCs: <code>mediainfo file.avi</code>. If you see an unknown codec, consider re‑encoding that stream.</li>
<li><strong>Repair</strong> with VirtualDub → “File → Re‑open as AVI (OpenDML)”. Save a fresh copy.</li>
</ol>
<hr>
<h2 id="7-when-and-when-not-to-use-avi">7. When (and When Not) to Use AVI</h2>
<h3 id="good-usecases">Good Use‑Cases</h3>
<table>
<thead>
<tr>
<th>Scenario</th>
<th>Why AVI Works</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Legacy camcorder ingest</strong></td>
<td>The device outputs native AVI; transcoding adds unnecessary quality loss.</td>
</tr>
<tr>
<td><strong>Simple interleaved capture</strong></td>
<td>Low‑latency write to disk without needing complex container features.</td>
</tr>
<tr>
<td><strong>Compatibility with old Windows‑only software</strong></td>
<td>Some industrial automation tools only understand AVI.</td>
</tr>
<tr>
<td><strong>Archiving raw, uncompressed video</strong></td>
<td>AVI can hold PCM audio and uncompressed RGB24 video without extra overhead.</td>
</tr>
</tbody>
</table>
<h3 id="bad-usecases">Bad Use‑Cases</h3>
<table>
<thead>
<tr>
<th>Scenario</th>
<th>Why AVI Fails</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>HDR or 10‑bit color</strong></td>
<td>No standard way to store those pixel formats; you’d need a custom FourCC that most players ignore.</td>
</tr>
<tr>
<td><strong>Variable‑bit‑rate streaming</strong></td>
<td>Lack of a proper <code>moov</code>‑like atom makes adaptive bitrate impossible.</td>
</tr>
<tr>
<td><strong>Rich metadata (chapters, subtitles, tags)</strong></td>
<td>AVI’s chunk model doesn’t define standard containers for subtitles or extensive tags.</td>
</tr>
<tr>
<td><strong>Cross‑platform mobile distribution</strong></td>
<td>Modern mobile players expect MP4/MKV; AVI may not be hardware‑accelerated.</td>
</tr>
</tbody>
</table>
<p>If you’re starting a new project, treat AVI as a <strong>fallback</strong> for legacy pipelines, not a primary delivery format.</p>
<hr>
<h2 id="8-future-outlook--will-avi-ever-make-a-comeback">8. Future Outlook – Will AVI Ever Make a Comeback?</h2>
<p>The short answer: <strong>unlikely</strong>. The industry has coalesced around <strong>ISO‑BMFF‑based</strong> containers (MP4, MOV, HEVC‑MP4, etc.) because they support:</p>
<ul>
<li><strong>Extensible metadata</strong> (ISO‑UserData, UUID boxes).</li>
<li><strong>Fragmented streaming</strong> (moof/mdat) for adaptive bitrate.</li>
<li><strong>Native HDR/10‑bit/12‑bit</strong> video definitions.</li>
</ul>
<p>AVI’s design, while elegant for its time, is fundamentally limited by its 32‑bit size fields and its reliance on external FourCC‑driven codecs. Even though OpenDML extended the size limit, it never gained widespread adoption beyond niche surveillance and archival tools.</p>
<p>That said, <strong>software preservation</strong> will keep AVI parsers alive for decades. Projects like <strong>FFmpeg</strong>, <strong>GStreamer</strong>, and <strong>VLC</strong> will continue to support the format, ensuring that the massive archive of 1990s‑2000s footage remains accessible. In a world where “digital archaeology” is becoming a real discipline, knowing how to read and repair AVI files is still a valuable skill.</p>
<hr>
<h2 id="9-quick-reference-cheatsheet">9. Quick Reference Cheat‑Sheet</h2>
<table>
<thead>
<tr>
<th>Item</th>
<th>Command / Setting</th>
<th>Explanation</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Create classic AVI</strong></td>
<td><code>ffmpeg -i src -c:v mpeg4 -qscale:v 5 -c:a mp3 -b:a 192k -f avi out.avi</code></td>
<td>Simple, widely compatible.</td>
</tr>
<tr>
<td><strong>Enable OpenDML</strong></td>
<td><code>ffmpeg -i src -c:v mpeg4 -qscale:v 5 -c:a mp3 -b:a 192k -f avi -use_open_dml 1 out.avi</code></td>
<td>Allows &gt;2 GB files.</td>
</tr>
<tr>
<td><strong>Re‑index broken AVI</strong></td>
<td><code>ffmpeg -i broken.avi -c copy -f avi repaired.avi</code></td>
<td>Rewrites <code>idx1</code>.</td>
</tr>
<tr>
<td><strong>Split &gt;2 GB into chunks</strong></td>
<td><code>ffmpeg -i long.avi -c copy -map 0 -segment_time 1800 -f segment part_%03d.avi</code></td>
<td>30‑minute segments stay under the limit.</td>
</tr>
<tr>
<td><strong>Inspect header</strong></td>
<td><code>ffprobe -show_format -show_streams file.avi</code></td>
<td>Dumps all RIFF chunks and stream info.</td>
</tr>
<tr>
<td><strong>Add a subtitle track (non‑standard)</strong></td>
<td><code>ffmpeg -i video.avi -i subs.srt -c copy -metadata:s:s:0 language=eng out.avi</code></td>
<td>Works only with players that read the <code>txt</code> stream; not universally supported.</td>
</tr>
</tbody>
</table>
<p>Keep this table bookmarked; it covers 80 % of everyday AVI tasks.</p>
<hr>
<h2 id="10-best-practices-for-archiving-avi-files">10. Best Practices for Archiving AVI Files</h2>
<p>Even though AVI is a legacy container, many institutions still have petabytes of it sitting on tape or in cold‑storage. Treating those assets with a disciplined workflow will save you headaches down the line.</p>
<table>
<thead>
<tr>
<th>Practice</th>
<th>Why It Matters</th>
<th>How to Implement</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Validate on ingest</strong></td>
<td>Corrupt headers or missing indexes can go unnoticed until playback.</td>
<td>Run <code>ffprobe -v error -show_format -show_streams file.avi</code> immediately after copying. Log any non‑zero exit codes.</td>
</tr>
<tr>
<td><strong>Generate a checksum</strong></td>
<td>Guarantees bit‑exact preservation across media migrations.</td>
<td>Use SHA‑256 (<code>sha256sum file.avi &gt; file.avi.sha256</code>). Store the checksum alongside the file in your catalog.</td>
</tr>
<tr>
<td><strong>Create a modern proxy</strong></td>
<td>Most downstream workflows (editing, streaming) expect MP4/MKV.</td>
<td>Encode a low‑bitrate MP4 proxy (<code>ffmpeg -i file.avi -c:v libx264 -crf 23 -c:a aac -b:a 128k proxy.mp4</code>). Keep the proxy in the same directory with a clear naming convention (<code>*_proxy.mp4</code>).</td>
</tr>
<tr>
<td><strong>Document FourCCs and codec versions</strong></td>
<td>Some FourCCs map to multiple codec implementations (e.g., <code>DIVX</code> could be DivX 5, 6, or 7).</td>
<td>Extract the codec private data (<code>ffprobe -show_private_data</code>) and store it in a side‑car JSON file (<code>file.avi.codec.json</code>).</td>
</tr>
<tr>
<td><strong>Migrate to OpenDML for large files</strong></td>
<td>Files &gt;2 GB will become unreadable on older players.</td>
<td>When transcoding, always pass <code>-use_open_dml 1</code>. If you’re only copying, use <code>aviindex</code> to rebuild an OpenDML‑compatible index.</td>
</tr>
<tr>
<td><strong>Store metadata in a side‑car</strong></td>
<td>AVI has no standard for extensive tags (e.g., creator, location).</td>
<td>Use XMP side‑car files (<code>file.avi.xmp</code>) or embed a small <code>INFO</code> LIST chunk manually if you need minimal in‑container metadata.</td>
</tr>
<tr>
<td><strong>Regularly test playback</strong></td>
<td>Bit‑rot can affect codecs as well as containers.</td>
<td>Schedule a quarterly job that runs a headless player (e.g., <code>ffplay -autoexit -frames 10 file.avi</code>) and reports any failures.</td>
</tr>
</tbody>
</table>
<p>By applying these steps at the moment of acquisition, you avoid costly “repair‑the‑archive” projects later.</p>
<hr>
<h2 id="11-frequently-asked-questions-faq">11. Frequently Asked Questions (FAQ)</h2>
<p><strong>Q1: Can I store H.265/HEVC video inside an AVI file?</strong><br>
<em>Short answer:</em> Technically yes, if you supply the correct FourCC (<code>HEVC</code> or <code>HVC1</code>) and include the SPS/PPS NAL units in the <code>strf</code> chunk. In practice, very few players support it, and many will treat the stream as unknown. For reliable playback, stick to MPEG‑4 Part 2 or Motion‑JPEG.</p>
<p><strong>Q2: Why does Windows Media Player sometimes show a black screen but still plays audio?</strong><br>
<em>Explanation:</em> The player has successfully opened the audio stream but failed to locate a usable video decoder for the FourCC. This can happen when the FourCC is custom or when the required codec isn’t installed. Installing a codec pack (e.g., K-Lite) or re‑encoding the video to a known FourCC resolves the issue.</p>
<p><strong>Q3: Is there any way to embed subtitles directly into an AVI file?</strong><br>
<em>Answer:</em> AVI does not define a standard subtitle stream. Some tools cheat by adding a “txt” stream (FourCC <code>txt </code>) that contains plain‑text subtitles, but only a handful of players (e.g., VirtualDub with a plugin) will render them. The recommended approach is to keep subtitles in a separate <code>.srt</code> or <code>.ass</code> file, or to re‑mux into a container that officially supports subtitles (MP4, MKV).</p>
<p><strong>Q4: My video shows a “frame rate mismatch” warning in MediaInfo. What should I do?</strong><br>
<em>Solution:</em> Verify that the <code>dwRate</code>/<code>dwScale</code> values in both the global <code>avih</code> and per‑stream <code>strh</code> headers are consistent. If they differ, re‑mux with FFmpeg using <code>-video_track_timescale</code> to force a uniform time base:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>ffmpeg -i broken.avi -c copy -video_track_timescale <span style="color:#ae81ff">1000</span> fixed.avi
</span></span></code></pre></div><p><strong>Q5: Does AVI support multiple audio languages?</strong><br>
<em>Yes, but with caveats.</em> You can add several audio streams, each with its own <code>strh</code>/<code>strf</code> pair and a distinct stream number (<code>01wb</code>, <code>02wb</code>, …). However, there is no standardized way to label the language; you must rely on external metadata (e.g., an accompanying <code>.xml</code> file) or embed a custom <code>INFO</code> chunk.</p>
<p><strong>Q6: How can I extract raw frames from an AVI without re‑encoding?</strong><br>
<em>Command:</em></p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>ffmpeg -i source.avi -c:v copy -f image2 frame_%05d.bmp
</span></span></code></pre></div><p>Replace <code>bmp</code> with <code>png</code> or <code>tiff</code> if you prefer lossless image formats. The <code>-c:v copy</code> flag tells FFmpeg to dump the compressed frames as‑is; if the codec is MJPEG, the output will already be JPEG images.</p>
<p><strong>Q7: Are there any security concerns when opening AVI files from untrusted sources?</strong><br>
<em>Yes.</em> Malformed chunk sizes can trigger buffer overflows in legacy parsers (e.g., older DirectShow filters). Always open unknown AVIs in a sandboxed environment or use a modern library like FFmpeg that performs strict bounds checking. Updating Windows Media Foundation and disabling legacy DirectShow filters further mitigates risk.</p>
<hr>
<h2 id="12-tldr-підсумок-для-нетерплячих">12. TL;DR Підсумок (для нетерплячих)</h2>
<ul>
<li><strong>AVI = RIFF‑based, interleaved container</strong> introduced with Windows 95.</li>
<li><strong>FourCC</strong> tells the player which codec to use; common ones are <code>DIVX</code>, <code>XVID</code>, <code>MJPG</code>, <code>H264</code>, <code>MP3 </code>.</li>
<li><strong>Timing</strong> is driven by <code>dwRate/dwScale</code> in the global and stream headers.</li>
<li><strong><code>movi</code></strong> holds the actual media; <strong><code>idx1</code></strong> (optional) speeds up seeking.</li>
<li><strong>OpenDML (<code>AVIX</code>)</strong> lifts the 2 GB limit but isn’t universally supported.</li>
<li><strong>Use cases today:</strong> legacy camcorder ingest, simple interleaved capture, archival of raw PCM video.</li>
<li><strong>Avoid for new projects:</strong> no HDR, 10‑bit, VBR, subtitles, or rich metadata.</li>
<li><strong>Toolbox:</strong> <code>ffprobe</code>, <code>ffmpeg</code>, MediaInfo, VirtualDub, aviindex, hex editors.</li>
<li><strong>Best practice:</strong> validate, checksum, generate modern proxies, and migrate large files to OpenDML.</li>
</ul>
<hr>
<h2 id="13-заключні-думки">13. Заключні думки</h2>
<p>AVI’s simplicity is both its strength and its Achilles’ heel. It gave early PC users a straightforward way to store synchronized audio‑video pairs, and that design philosophy—interleaved chunks, a clear header layout, and extensible FourCC identifiers—still influences modern containers. While the industry has moved on to more feature‑rich formats, the sheer volume of legacy footage means AVI will remain a “must‑know” for anyone working in video preservation, forensic analysis, or any field that must bridge the past with today’s workflows.</p>
<p>If you ever find yourself staring at a dusty <code>.avi</code> on a hard drive from the late‑90s, you now have the conceptual map, the command‑line recipes, and the troubleshooting checklist to bring that footage back to life—whether you choose to keep it in its original container or transcode it into a modern, HDR‑ready format.</p>
<p>Happy demuxing!</p>
<!-- raw HTML omitted -->
]]></content:encoded>
    </item>
    
  </channel>
</rss>
