ДокументыИзображенияМедиаИнструменты PDF

Конвертер AVI в FLAC Online

Извлеките аудио из AVI-файлов и сохраните в lossless FLAC. Бесплатно, прямо в браузере.

Drag your file here

.avi · up to 100 MB

Processed in your browser — file never uploadedFree
Note: The first conversion loads the FFmpeg engine (~25MB). Subsequent conversions will be faster.

AVI в FLAC: аудио из старого видео для DAW и Hi-Fi

DAW, Hi-Fi, VLC и Kodi — широкая поддержка

Uncompressed PCM audio from AVI converts to FLAC keeping every original sample.

Обработка в браузере без загрузок

MP3/AC-3 is decoded and re-compressed in FLAC, avoiding a second generation of loss.

Lossless FLAC из PCM-источника

Your AVI never leaves your device. FFmpeg.wasm processes everything locally.

Быстро и без ожидания

Compatible with AVI from the DivX/XviD era, VirtualDub captures, and Fraps recordings.

Три шага — никаких сложностей

1

Загрузите AVI

Загрузите AVI-файл — DivX, Xvid или корпоративную запись. Конвертация выполняется локально в браузере.

2

Декодирование и упаковка в FLAC

Аудиопоток из AVI декодируется и упаковывается в FLAC без потерь. PCM-аудио из AVI даёт подлинно lossless результат.

3

Скачайте FLAC

Используйте файл в DAW, на Hi-Fi-плеерах или для долгосрочного архивирования.

Остались вопросы?

Только PCM-аудио (несжатый) даёт побитово идентичный lossless FLAC. Если исходник — MP3 или AC-3, потери этих кодеков сохраняются: FLAC упакует их без дополнительных потерь, но не улучшит.

Главные причины: использование PCM-аудио из старых AVI в DAW; архивирование без дополнительных потерь; совместимость с Hi-Fi-плеерами, поддерживающими FLAC, но не AVI.

Многоканальные форматы AC-3 и DTS из AVI будут транскодированы в FLAC. Пространственный звук сохраняется в зависимости от поддержки многоканального аудио в FLAC-выходе.

FLAC поддерживается в VLC, Kodi, большинстве Android-плееров, Foobar2000 и современных Smart TV. Некоторые старые или бюджетные DVD-плееры могут не поддерживать его.

Если исходник — MP3 или AC-3, FLAC будет значительно крупнее (в 3–6 раз). Если исходник — PCM, FLAC будет примерно вдвое меньше несжатого PCM.

Да. Все основные DAW — Ableton Live, Logic Pro, FL Studio, Reaper — поддерживают импорт FLAC. Это удобный способ работать с аудио из старых видеозаписей без конвертации в WAV.

Конвертировать AVI в FLAC: извлечь lossless-аудио из AVI онлайн

Бесплатный онлайн-конвертер AVI в FLAC. Извлекайте аудио из AVI-файлов DivX, Xvid и корпоративного видео в lossless FLAC для DAW и Hi-Fi. Без загрузок — обработка в браузере.

The historical context of AVI files with MP3 audio deserves special attention and honest treatment. Between 1999 and 2008, the combination of DivX or XviD video with MP3 audio in AVI container was the de facto worldwide standard for movie distribution on the internet. The DivX 3.11 codec, known informally as DivX with a wink, was a reverse-engineering of Microsoft's MPEG-4 v3 codec published in 2000, and combined with 128 kbps CBR MP3 audio it allowed compressing a 90-minute movie onto a 700 MB CD-R with acceptable quality. Scene distribution groups like Centropy, TEN, and MoS popularized this format which later evolved with XviD, the open-source fork of OpenDivX released in 2001, maintaining the same AVI plus MP3 structure throughout that entire era. The tool converts these files to FLAC completely honestly: FFmpeg's MP3 decoder decodes the audio to float PCM and the FLAC encoder compresses it losslessly without adding any additional degradation whatsoever. The resulting FLAC has exactly the same perceptual quality as the original MP3, neither better nor worse, because FLAC preserves exactly what the decoder produces but cannot recover information that MP3 already discarded. However, FLAC is the cleanest possible starting point for any subsequent processing such as DAW editing, audio restoration, normalization, or conversion to another delivery format, because it avoids accumulating a second generation of lossy degradation on top of what already exists in the source material. This principle, sometimes called the one-generation rule in audio archiving, is what makes FLAC the recommended intermediate format even when the original source was not lossless to begin with, and it applies equally to historical AVI files from the DivX era and to modern content.

Convertir.ai runs AVI to FLAC conversion entirely in the browser with FFmpeg.wasm compiled with all necessary decoders. Processing begins by analyzing the AVI's RIFF structure: the parser reads the LIST hdrl chunk, within which the avih subchunk or AVI Main Header provides global parameters such as total file duration and frame rate per second, and the audio strl subchunk contains the strh or Stream Header with fccHandler indicating the codec, and the strf or Stream Format with the WAVEFORMATEX structure specifying wFormatTag, nChannels, nSamplesPerSec, nAvgBytesPerSec, and wBitsPerSample precisely. With this complete information, FFmpeg selects the appropriate decoder for each case: for wFormatTag=0x0001 which is pure PCM, there is no real decoding, just direct reading of integer samples with absolutely no mathematical transformation applied to the data. For 0x0055 which is MP3, the mp3float decoder in libavcodec is used, implementing the hybrid filter bank synthesis with MDCT transform described in the ISO/IEC 11172-3 standard published in 1993. For 0x2000 which is AC-3 or Dolby Digital, the ac3 decoder is used with support for automatic downmix from 5.1 or 7.1 configurations to stereo when needed. The decoder output in all cases is 32-bit float PCM that passes to the FLAC encoder in libavcodec, implementing adaptive linear prediction with automatic optimal LPC order selection per block and Rice coding with adaptive partition order based on spectral content. The default compression level is 5, providing the best balance between encoding speed in the WebAssembly environment and the resulting compression ratio of the FLAC output file.