Зачем конвертировать AVI в MP3?
People convert AVI to .MP3 to save the audio from a recorded lecture, film soundtrack, or camcorder clip without keeping the large video file. MP3 plays on virtually every device and takes far less space than the original AVI. It is also the easiest way to load video audio onto a music player or podcast app.
Способы конвертации AVI в MP3
VLC media player FREE
Open VLC, go to Media > Convert/Save, add your AVI, choose the Audio - MP3 profile, and click Start.
FormatFactory FREE
Add your AVI to FormatFactory, pick MP3 as the output format, and click Start.
Freemake Video Converter FREE
Drag your AVI into Freemake, select the MP3 output option, and click Convert.
Command line - FFmpeg CLI
Run ffmpeg -i input.avi -vn -b:a 192k output.mp3 - the -vn flag drops the video and keeps only the audio.
Программы, которые конвертируют AVI
Об этих форматах
Файл AVI - это видеоконтейнер, созданный Microsoft в 1992 году. Чтобы открыть его, используйте VLC media player - он включает кодеки DivX/Xvid, необходимые для старых AVI, и работает на…
Открыть детали .AVI →Файл MP3 - это сжатая аудиозапись: песня, подкаст, аудиокнига или рингтон. Почти любое устройство воспроизводит его без дополнительного ПО: дважды щелкните в Windows, чтобы открыть Media…
Открыть детали .MP3 →Качество и на что обратить внимание
- Re-encoding causes a small quality loss; if the AVI's audio is already MP3, use
ffmpeg -i input.avi -vn -c:a copy output.mp3to extract it losslessly. - Output quality is capped by the source - encoding at a higher bitrate cannot recover detail that was not in the original audio track.
- Some AVI files contain multiple audio streams (e.g., two languages); most tools pick the first one by default.
Часто задаваемые вопросы
Does converting AVI to MP3 lose audio quality?
-c:a copy option extracts it with no quality loss at all.How long does the conversion take?
The output MP3 has no sound - what went wrong?
ffprobe input.avi to list all streams, then target the correct one with -map 0:a:0.