Convert VOB to MP3 — Free Online Tool
Extract and convert the AC3 or MPEG audio from a DVD VOB file into a universally compatible MP3 using the LAME encoder. This tool strips away the MPEG-2 video, subtitle streams, and DVD container structure, outputting a standalone MP3 from whichever audio track is present in your VOB file.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your VOB file here
or click to browse
Free — no uploads, no signups. Your files never leave your browser.
Settings
Note: Browser-based encoding uses approximate quality targets. For precise CRF compression, copy the FFmpeg command above and run it on your desktop.
Estimated output:
Conversion Complete!
DownloadHow It Works
VOB files are DVD container files that multiplex MPEG-2 video, AC3 (Dolby Digital) or MPEG audio, subtitle bitmap streams, and sometimes multiple audio tracks into a single file. Converting to MP3 involves two key steps: FFmpeg first demultiplexes the VOB container to isolate the primary audio stream, then transcodes that audio — whether it's AC3 surround sound or an MPEG audio track — into MP3 using the libmp3lame encoder. The MPEG-2 video stream and any subtitle streams are automatically discarded since MP3 is a pure audio format. If the source VOB contains AC3 surround sound (common on DVD), the multi-channel audio is downmixed to stereo during this process.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg command-line tool. In this browser-based tool, the same FFmpeg engine runs locally via WebAssembly (FFmpeg.wasm) without any server upload. |
-i input.vob
|
Specifies the input VOB file — the DVD Video Object container holding multiplexed MPEG-2 video, AC3 or MPEG audio, and subtitle streams that will be demultiplexed as part of this conversion. |
-c:a libmp3lame
|
Instructs FFmpeg to encode the audio stream using the LAME MP3 encoder. This is required because the source AC3 or MPEG audio from the VOB cannot be directly repackaged as MP3 — it must be fully decoded and re-encoded. |
-b:a 128k
|
Sets the output MP3 audio bitrate to 128 kilobits per second, the default for broad compatibility and reasonable file size. For music from concert DVDs, increasing this to 192k or 320k will reduce audible compression artifacts from the double lossy transcode. |
output.mp3
|
Defines the output filename and format. The .mp3 extension tells FFmpeg to use the MP3 muxer, and since MP3 is audio-only, the MPEG-2 video stream and any subtitle or chapter data from the VOB are automatically discarded. |
Common Use Cases
- Ripping the audio from a DVD concert or live performance VOB file to listen to on a music player or phone without needing DVD playback software
- Extracting dialogue or narration from a DVD-based training or educational disc to create an audio-only version for commuting or accessibility purposes
- Converting the audio track from a DVD movie VOB to MP3 for use as background music or ambient sound in a video editing or podcast project
- Archiving the audio content of home-burned DVDs or camcorder DVD recordings as MP3 files before the physical discs degrade
- Extracting a specific VOB chapter's audio (e.g., a single episode from a DVD TV series ripped to individual VOB files) for offline audio playback
- Converting a DVD audiobook or lecture disc stored as VOB files into MP3 tracks compatible with e-readers, MP3 players, or audiobook apps
Frequently Asked Questions
No — MP3 is a stereo (or mono) format and cannot carry multi-channel surround sound. When FFmpeg transcodes AC3 5.1 audio from a VOB file to MP3 via libmp3lame, it automatically downmixes all channels (front left, front right, center, surround left, surround right, LFE) into a standard two-channel stereo mix. The resulting stereo MP3 will contain all audio elements, but the discrete surround positioning will be lost.
By default, FFmpeg selects the first audio stream it finds in the VOB file, which is typically the primary language track. If you want to extract a specific language track or secondary audio stream, you would need to add the '-map 0:a:1' flag to the command (changing the index to target the desired track). DVD VOBs commonly contain multiple audio streams, so it's worth inspecting the file with 'ffmpeg -i input.vob' first to see all available streams.
Dramatically smaller — a typical VOB file is large primarily because of its MPEG-2 video stream, which commonly runs at 4–8 Mbps. At the default 128k audio bitrate, an MP3 uses roughly 1 MB per minute of audio. A 1 GB VOB file representing about 90 minutes of video might produce an MP3 of only around 90–100 MB, since all video data is discarded and the audio is re-encoded at a much lower bitrate than the original AC3 stream.
Yes, this is a lossy-to-lossy transcode. The source AC3 audio in a VOB is already lossy (typically encoded at 192–448 kbps), and re-encoding it to MP3 introduces a second generation of compression artifacts. For the best possible quality, increase the output bitrate to 192k or 320k by modifying the '-b:a' flag. If preserving maximum audio fidelity is critical, consider converting to a lossless format like FLAC instead of MP3.
Replace '128k' in the '-b:a 128k' flag with your desired bitrate. For example, 'ffmpeg -i input.vob -c:a libmp3lame -b:a 320k output.mp3' produces a 320 kbps MP3, which is the maximum standard MP3 bitrate and will sound noticeably better than 128k, especially for music content from concert or performance DVDs. For voice-only content like audiobooks, 128k or even 96k is typically sufficient.
Yes. On Linux or macOS, you can run: 'for f in *.vob; do ffmpeg -i "$f" -c:a libmp3lame -b:a 128k "${f%.vob}.mp3"; done' to process all VOB files in a directory. On Windows Command Prompt, use: 'for %f in (*.vob) do ffmpeg -i "%f" -c:a libmp3lame -b:a 128k "%~nf.mp3"'. This is particularly useful when a DVD rip produces multiple numbered VOB files (VTS_01_1.vob, VTS_01_2.vob, etc.) that you want to convert individually.
Technical Notes
VOB files use the MPEG Program Stream container format, which FFmpeg handles via the '-f vob' demuxer. The primary audio codec on DVD-Video is AC3 (Dolby Digital), typically encoded at 192k to 448k bitrate; some DVDs use MPEG Layer 2 audio instead. Neither of these formats can be losslessly remuxed into MP3 — a full transcode through libmp3lame is always required. The libmp3lame encoder supports ID3 tag metadata, but VOB files carry very little usable audio metadata (no track titles, artist names, or album information), so the output MP3 will generally have empty ID3 tags that you may want to populate manually after conversion. VOB files also contain DVD subtitle streams as bitmap overlays (not text), but these are inherently incompatible with MP3 and are silently dropped. If your VOB file is part of a DVD rip split across multiple VOB segments (e.g., VTS_01_1.vob through VTS_01_4.vob), you may want to concatenate them using FFmpeg's concat demuxer before extracting audio to avoid gaps or artifacts at segment boundaries.