Конвертер MKV в OGG (Vorbis) Online
Извлеките аудио из MKV-файлов (фильмы, аниме, сериалы) и сохраните в OGG Vorbis. Открытый формат без патентов — нативная поддержка в Linux и игровых движках. Бесплатно, прямо в браузере.
.mkv · up to 100 MB
What you can do
MKV в OGG: саундтреки фильмов и аниме в открытом формате
Linux, Android, Unity, Godot — нативная поддержка
Compatible with DTS, DTS-HD, AC-3, TrueHD, FLAC, AAC, and Vorbis inside the MKV container.
Файлы остаются на вашем устройстве
Your MKV file never leaves your device. Local processing with FFmpeg.wasm.
VBR Vorbis с оптимальными настройками
OGG Vorbis is Godot Engine's native format for game audio streaming.
Быстро, без очередей
Native support on all Linux distributions and Android since 2008.
Как это работает
Три шага — никаких сложностей
Загрузите MKV
Загрузите MKV-файл — фильм, аниме, сериал или другой контент. Файл обрабатывается локально.
Транскодирование в OGG Vorbis
Аудиотрек из MKV (AAC, AC-3, DTS, FLAC или Vorbis) транскодируется в OGG Vorbis с оптимальными VBR-настройками.
Скачайте OGG
Используйте файл в Linux-приложениях, Android, Unity, Godot или других проектах с поддержкой OGG Vorbis.
FAQ
Остались вопросы?
OGG Vorbis — патентно-свободный открытый формат. При одинаковом битрейте он обеспечивает лучшее качество, чем MP3, и нативно поддерживается в Linux и большинстве игровых движков.
Инструмент извлекает первый аудиотрек по умолчанию. Для выбора конкретной дорожки воспользуйтесь MKVToolNix или FFmpeg с параметром -map на вашем компьютере.
DTS-HD и TrueHD — форматы объёмного звука. Инструмент транскодирует их в стерео OGG Vorbis. Информация о пространственном звуке будет редуцирована до двух каналов.
Поместите .ogg-файл в папку assets проекта Godot. Движок автоматически распознает его как AudioStreamOGGVorbis — подходит для фоновой музыки и звуковых эффектов.
Группы, занимающиеся fansubbing, добавляют FLAC-аудио для максимального качества при архивировании. Если вам нужны компактные файлы для стриминга или игр, OGG — отличный выбор.
На большинстве современных Smart TV и сетевых медиаплеерах (Kodi, Plex) — да. На некоторых старых или бюджетных устройствах поддержки OGG может не быть.
Конвертировать MKV в OGG: извлечь OGG Vorbis-аудио из MKV онлайн
Бесплатный онлайн-конвертер MKV в OGG. Извлекайте аудио из MKV-файлов фильмов, аниме и сериалов в OGG Vorbis для Linux, Android и игровых движков. Без загрузок.
The primary use of MKV to OGG today is game audio asset creation and audio distribution in Linux ecosystems. In game development: Godot Engine 4.x, released in 2023 as the most significant version since the engine's creation, uses OGG Vorbis as the recommended audio stream format for game music (AudioStreamOGGVorbis), while short sound effects are stored as WAV (AudioStreamWAV). Godot games exported to Linux, Android, and HTML5 platforms play Vorbis natively without external library dependencies, as the Vorbis decoder is compiled into the engine executable. Musicians composing soundtracks for games frequently have their final mixes in reference MKV files (with gameplay footage recorded), and extract the audio to OGG as the delivery format for the development team. In Linux distribution: GNU/Linux distributions (Ubuntu, Fedora, Arch, Debian) have native OGG Vorbis support in all their system audio players (Rhythmbox, Clementine, Banshee, Amarok) and in the OS audio pipeline (PulseAudio/PipeWire via GStreamer with the ogg/vorbis plugin).
Convertir.ai performs MKV to OGG extraction entirely in the browser via FFmpeg.wasm. The Matroska demuxing technical process begins with reading the EBML file: top-level elements are EBML (with DocType=matroska or webm), and Segment, which contains SeekHead (position index), Info (global metadata like Duration and TimestampScale), Tracks (track definitions), Cues (index table for seeking), and Cluster (media data blocks). The default audio track is identified by searching TrackEntry elements for those with TrackType=2 and FlagDefault=1. Once identified, FFmpeg extracts the SimpleBlock or BlockGroup elements corresponding to that track from the clusters, passes them to the appropriate decoder based on CodecID, decodes to 32-bit float PCM in memory with downmix to stereo for multichannel audio (applying ITU-R BS.775 coefficients for 5.1/7.1 surround), and finally applies the Vorbis encoder from libvorbisenc at the selected quality level. The output OGG file includes the mandatory Vorbis headers (identification header, comment header with metadata transferred from the MKV, and setup header with codebooks), followed by Vorbis audio packets grouped in OGG pages with temporal position granulation for seeking.