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

Конвертер WebM в OGG (Vorbis) Online

Извлеките аудио из WebM-видео и сохраните в OGG Vorbis. Открытый формат для Linux, Android и игровых движков. Бесплатно, прямо в браузере.

Drag your file here

.webm · 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.

WebM в OGG: аудио браузерных записей для открытой экосистемы

Linux, Android, Unity, Godot — нативная поддержка

If the WebM already has Vorbis audio, conversion is instant with zero loss.

Конвертация в браузере без загрузок

Vorbis and OGG are from the same open-source ecosystem, patent-free and royalty-free.

Stream copy при наличии Vorbis

Your WebM never leaves your device. Local processing with FFmpeg.wasm.

Быстрый результат без регистрации

Extract narration from browser recordings, video calls, and screencasts.

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

1

Загрузите WebM

Загрузите WebM-файл — запись из браузера, видео с YouTube или другой контент. Файл обрабатывается локально.

2

Извлечение или транскодирование в OGG Vorbis

Если WebM содержит Vorbis-аудио — оно копируется напрямую. Если Opus — транскодируется в Vorbis для максимальной совместимости.

3

Скачайте OGG

Готовый OGG-файл подходит для Linux-приложений, Android, Unity, Godot и другого ПО с поддержкой Vorbis.

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

Vorbis — более старый аудиокодек OGG-экосистемы, Opus — более современный и эффективный. Браузерные записи через MediaRecorder чаще используют Opus. Инструмент обрабатывает оба варианта.

OGG Vorbis — полностью открытый и патентно-свободный формат. Это предпочтительный выбор для Linux-проектов, игровых движков и любых задач, где важны открытые стандарты.

Да. Оба движка нативно поддерживают OGG Vorbis. Это стандартный формат аудиоресурсов для большинства инди-игр.

Если WebM содержит Vorbis — качество сохраняется полностью через stream copy. Если Opus — происходит незначительная деградация при транскодировании в Vorbis, но разница на слух минимальна.

Да. Инструмент обрабатывает файлы любой длины, пока они помещаются в память браузера. Для очень длинных записей (более часа) рекомендуем использовать современный браузер с достаточным объёмом ОЗУ.

WebM — открытый формат Google, нативно поддерживаемый в Chrome, Firefox и Edge. Браузерный API MediaRecorder по умолчанию записывает именно в WebM, поэтому записи с веб-камеры и экрана часто имеют это расширение.

Конвертировать WebM в OGG: извлечь OGG Vorbis-аудио из WebM онлайн

Бесплатный онлайн-конвертер WebM в OGG. Извлекайте аудио из WebM-видео в OGG Vorbis для Linux, Android и игровых движков. Без загрузок — обработка в браузере.

The historical evolution of WebM and the role of Vorbis versus Opus in this ecosystem is relevant for understanding what type of WebM file you will have in each situation. In May 2010, Google published WebM with support only for Vorbis as the sole audio codec in the first version of the container specification. Between 2010 and 2013, all WebM files generated by Google tools such as YouTube, the Chrome recorder, and WebRTC in its experimental phase used Vorbis exclusively. In September 2012, the IETF published RFC 6716 standardizing Opus, a codec designed specifically to replace both Speex for low-latency voice and Vorbis for high-quality music in a single unified codec with a bitrate range from 6 to 510 kbps. Chrome added Opus support in WebM in version 26 from 2013 for WebRTC applications, and since Chrome 74 in 2019 MediaRecorder recordings in WebM format use Opus by default in all browser recording contexts available. Firefox follows a similar pattern, with Opus support in WebM since Firefox 28 in 2014. Thus, a WebM file from before 2013 almost certainly has Vorbis and enables direct lossless stream copy to OGG, while a WebM generated between 2018 and 2025 likely has Opus and requires Vorbis transcoding with minimal additional loss. WebM audio files downloaded from YouTube in medium quality tiers before 2013 also tend to contain Vorbis rather than Opus. Understanding this historical divide allows you to predict in advance whether your WebM file will benefit from a zero-loss stream copy to OGG or whether a Vorbis transcoding step will be required, and the tool handles both cases transparently with appropriate FFmpeg processing for each codec path.

Convertir.ai runs WebM to OGG conversion entirely in the browser using FFmpeg.wasm. Processing begins with analysis of the WebM's EBML header, which follows the Matroska specification with DocType set to webm rather than matroska to indicate the restricted profile in use. The SeekHead provides absolute offsets for the Tracks and Cues blocks within the Segment for direct access without linear scanning. For the audio track identified by TrackType=2, the CodecID element in TrackEntry determines the processing path to follow. For A_VORBIS with native Vorbis audio, FFmpeg executes complete stream copy: the three Vorbis header packets (the identification header with sample rate, channel count, and stream nominal bitrate; the comment header with artist, title, and album metadata; and the setup header with codebook tables and window mode definitions) stored in the track's CodecPrivate Matroska element are converted into the first OGG pages of the output file with the appropriate OGG page header structure for each one. The audio packets from the WebM's SimpleBlock blocks are packed into OGG pages of up to 255 segments with a maximum of 65,025 bytes per OGG page. The granule position number for each OGG page is calculated by accumulating the sample sizes of preceding packets, enabling efficient and precise seeking in the resulting OGG file. For A_OPUS with native Opus, FFmpeg uses the libopus decoder to produce 32-bit float PCM at 48 kHz, which the libvorbis encoder converts to VBR Vorbis at the quality level selected by the user. Vorbis comments from the WebM, stored either in the Opus CodecPrivate header or in Matroska tag elements, are transferred to the COMMENT_HEADER of the first OGG page to preserve artist, title, and other metadata for players that display tag information.