Зачем конвертировать AVI в WEBM?
WEBM is the standard format for embedding video on web pages; Chrome, Firefox, and Edge all play .WEBM natively without plugins, while AVI cannot play in any modern browser. Switching to WEBM also often reduces file size, since VP9 is more efficient than the DivX or Xvid codecs commonly found in older AVI files.
Способы конвертации AVI в WEBM
HandBrake FREE
Open your AVI, set the container to WebM, choose VP9 video and Opus audio, then click Start Encode.
Command line - FFmpeg CLI
Re-encode with ffmpeg -i input.avi -c:v libvpx-vp9 -crf 33 -b:v 0 -c:a libopus output.webm.
XMedia Recode FREE
Add your AVI file, select WebM as the output format with VP9 and Opus, then click Encode.
Freemake Video Converter FREE
Drag your AVI into Freemake, choose the WebM output profile, and click Convert.
Программы, которые конвертируют AVI
Об этих форматах
Файл AVI - это видеоконтейнер, созданный Microsoft в 1992 году. Чтобы открыть его, используйте VLC media player - он включает кодеки DivX/Xvid, необходимые для старых AVI, и работает на…
Открыть детали .AVI →Файл WEBM - это открытый видеоконтейнер от Google, содержащий видео VP8, VP9 или AV1 с аудио Vorbis или Opus. Перетащите его в любой современный браузер или откройте в VLC - пакет кодеков…
Открыть детали .WEBM →Качество и на что обратить внимание
- A full re-encode is always required - no stream copy is possible - so the WEBM will not be a bit-for-bit copy of the source.
- VP9 encoding is slow; for faster results with FFmpeg, add
-cpu-used 4to the command at a small quality cost. - AVI metadata such as title and creation date is not carried over to WEBM and will be lost.
Часто задаваемые вопросы
Does AVI to WEBM always require re-encoding?
Will the WEBM file be smaller than the original AVI?
Does Safari support WEBM?
MP4 alongside the WEBM using <source> tags.