Initializing... drag & drop files here
Supports: VOB
.vob file or click "Add Files" to select it. DVD rips often arrive as VTS_01_1.VOB, VTS_01_2.VOB, etc. — upload them in order if you want one FLAC per chapter, or merge with your DVD ripper first to get a single track. Batch uploads are supported.VOB ("Video Object") is the MPEG-2 program stream container DVDs use, broken into 1 GiB chunks inside the VIDEO_TS folder. The audio inside is usually Dolby Digital (AC-3) at 192-448 kbps, occasionally DTS, MPEG audio, or — on music DVDs — linear PCM. FLAC is a lossless codec that typically halves PCM file size while preserving every sample exactly, and it plays natively in Chrome, Edge, Firefox 51+, and Safari 11+. Extracting VOB audio to FLAC gives you an archival, tag-friendly, software-agnostic copy you can drop into Foobar2000, Plex, Roon, or a Jellyfin library.
| Property | VOB (DVD video) | FLAC |
|---|---|---|
| Type | Video container (MPEG-2 program stream) | Lossless audio codec |
| Typical audio inside | AC-3 (192-448 kbps), DTS, MPEG audio, LPCM | Compressed lossless PCM |
| Compression | Lossy audio (AC-3/DTS) or uncompressed (LPCM) | Lossless, ~40-50% of source PCM size |
| Channels | Up to 7.1 (DVD spec) | 1-8 |
| Sample rate | 48 kHz (DVD-Video standard) | 1 Hz - 1,048,575 Hz |
| Bit depth | 16-bit (LPCM); codec-defined for AC-3/DTS | 4-32 bits |
| Max file size | 1 GiB per VOB segment (DVD constraint) | No practical limit |
| Tagging | None — no metadata fields | Vorbis comments, embedded album art |
| Browser playback | None (HTML5 video does not decode VOB/MPEG-2 PS) | Chrome, Edge, Firefox 51+, Safari 11+ |
| Open / royalty-free | MPEG-2 patents largely expired (2018-2020) | Yes, BSD-style license |
| Level | Encoding speed | Output size vs. level 5 | Notes |
|---|---|---|---|
| 0-2 | Fastest | +2-4% larger | Useful for batch jobs where storage is cheap. |
| 3-4 | Fast | +0.5-1% larger | Solid choice for low-power devices. |
| 5 (default) | Balanced | baseline | ffmpeg and the reference flac encoder default. |
| 6-7 | Slow | -0.1 to -0.5% | Marginal gain; rarely worth the wait. |
| 8 | Slowest (reference max) | -0.3 to -1% | Best compression supported by the FLAC reference encoder. |
| 9-12 | Very slow (ffmpeg only) | -0.2 to -1% on top of level 8 | Experimental ffmpeg presets; not all decoders apply the same optimisations. Bit-identical decoded audio at any level. |
No — FLAC is lossless, but lossless only means "no quality is lost during this encode." If your VOB contains AC-3 at 384 kbps (typical DVD movie soundtrack), the audio was already lossy when the disc was authored. Converting to FLAC freezes that lossy decode in a lossless wrapper; you preserve every artefact at full fidelity. The only case where FLAC equals the original is if the VOB contains LPCM (common on music DVDs and DVD-Audio).
Yes — FLAC supports up to 8 discrete channels, which covers 5.1 (six) and 7.1 (eight). Leave "Audio Channel" set to Original to preserve the multichannel layout from a DVD's AC-3 or DTS track. If your music player can't handle multichannel FLAC, switch the dropdown to Stereo for a downmix or Mono for a single-channel summary.
DVDs are chunked into 1 GiB VOB segments — that's a filesystem constraint, not a content boundary. For one FLAC per song, upload each chapter VOB separately. For one FLAC per movie, merge the VOBs first using your DVD ripper (HandBrake, MakeMKV, or just cat VTS_01_*.VOB > full.vob on the command line), then upload the merged file. The Trim option also lets you carve a single track out of a multi-song VOB without merging.
MP3 is 8-10x smaller but lossy — fine for a phone, wrong for archival. WAV is the same uncompressed PCM as FLAC but typically twice the size on disk and has no embedded tagging beyond a clunky LIST/INFO chunk. FLAC sits in the sweet spot: lossless, half the size, and supports proper Vorbis-comment metadata that Plex, Roon, and Jellyfin all read.
By default, the FLAC inherits whatever the VOB's audio stream uses — 48 kHz is the DVD-Video standard, and AC-3/LPCM run at 16- or 24-bit. Leaving Sample Rate on Original avoids any resampling. If you specifically need 44.1 kHz to match a CD-based library, pick 44100 Hz from the dropdown, but be aware that converting 48 to 44.1 introduces a (lossless-to-lossy-step) resample, so the FLAC is no longer bit-identical to the disc.
Yes — FLAC uses Vorbis comments, the same flexible tag system OGG uses. Most metadata editors (Mp3tag, Picard, Kid3) read and write FLAC tags. VOB has no metadata fields at all, so you'll be filling these in fresh after the conversion. For concert DVDs, look up the tracklist on Discogs or MusicBrainz before tagging.
Because you're comparing the audio-only FLAC against a video container. If your VOB is a 1 GiB chunk holding 30 minutes of MPEG-2 video plus AC-3 audio, the audio portion might be 80 MB — your FLAC will be around 200-300 MB after decoding AC-3 to PCM and re-encoding. The FLAC is smaller than the source PCM stream but larger than the lossy AC-3 stream inside the VOB. That's expected.
ffmpeg with -c:a flac -compression_level 5 does the same job; xconvert wraps that workflow in a browser. HandBrake decodes audio but generally won't output FLAC directly — its audio targets are AAC, MP3, AC-3, FLAC (since 1.0), and a few others. If you only need to extract one track, the browser version is faster than installing ffmpeg; for batch ripping an entire disc collection, the CLI is more efficient.
Yes. Convert FLAC to MP3 for a phone-friendly copy, or use Trim FLAC to cut intros and outros without re-encoding the audio. FLAC's lossless nature means you can transcode out to any other codec exactly once without compounding generation loss.