How to Play VOB Files in Your Browser (DVD Video, No Disc Needed)

How to Play VOB Files in Your Browser (DVD Video, No Disc Needed)
You've got a .vob file — pulled from a DVD's VIDEO_TS folder, or off an old home-movie disc you backed up. You drop it into your browser and get nothing: a black screen, or a download prompt.
VOB is a double miss for browsers: the container and the codec are both things they don't support. Here's why — and how to play a .vob in a browser tab anyway, decoded locally.
Why VOB Won't Play in a Browser
VOB (Video OBject) is the container that holds the actual video on a DVD-Video disc. It's an MPEG-2 Program Stream, and that creates two separate problems for a browser:
- The container. MPEG Program Stream isn't a format the
<video>tag opens — browsers handle MP4 and WebM, not VOB. - The codec. The video inside a VOB is MPEG-2 — the DVD-era codec. Unlike H.264, MPEG-2 isn't part of modern browsers' built-in codec support at all. Audio is usually Dolby Digital (AC-3) or MP2.
So unlike MKV or AVI (where the codec inside is often something the browser could decode), a VOB is unsupported at both layers. That's why renaming it to .mpg or .mp4 never helps. Our codecs explained guide covers where MPEG-2 sits.
The Usual Fixes — and Why They Drag
1. Convert it (HandBrake, FFmpeg)
Transcode the VOB to MP4/H.264. Works, but it's slow, makes a second copy, and a full DVD is several gigabytes to chew through.
2. Upload it to an online converter
Wait for the whole multi-gigabyte file to upload to a stranger's server, with the usual privacy and size-limit problems.
3. Install VLC
VLC plays VOB (and whole DVD folders). But it's another install, blocked on many managed machines, awkward on mobile, and not a shareable link.
The Better Way: Decode the DVD Stream Locally, In the Browser
OnlinePlayer opens a .vob by decoding it on your own device, right in the browser — no conversion, no upload, no install.
Because MPEG-2 isn't hardware-decoded by browsers, VOB playback runs on the software path: FFmpeg compiled to WebAssembly — the same engine a desktop player uses — now with two parallel decode workers for roughly 1.8× the throughput. DVD video is standard-definition, so this is comfortable. The file never leaves your computer; see hardware vs software decoding for how the path is chosen.
Step-by-Step: Play Your VOB Now
- Open onlineplayer.app in any modern browser.
- Drag your
.vobfile onto the page — or click to browse. It's decoded on your device, so it needs to be a local file; if it's in a cloud drive, download it first, then drop it in. - It plays — locally, with nothing uploaded.
VOB in the Browser vs. the Alternatives
| Convert (HandBrake) | Online converter (upload) | Install VLC | OnlinePlayer | |
|---|---|---|---|---|
| Time to first frame | Minutes | Full upload first | Install + open | Instant |
| Privacy | Local ✅ | File on their server ❌ | Local ✅ | Local — nothing uploaded ✅ |
| Keeps original quality | Re-encoded | Often re-compressed | Original ✅ | Original ✅ |
| Install needed | Yes | No | Yes | No |
| Works on locked-down / mobile | No | Sometimes | Limited | Yes (it's a web page) |
The Honest Limits
- Encrypted commercial DVDs can't be played. Store-bought movie DVDs scramble their VOBs with CSS copy protection; nothing here decrypts that (by design). Home-made, recorded, or unencrypted DVD VOBs play fine — that's the common case for backups and home movies.
- DVDs split video across multiple VOBs (
VTS_01_1.VOB,VTS_01_2.VOB, …) of about 1 GB each; each file plays as its own segment. - AC-3 surround audio is downmixed to stereo, as in any browser-based player.
FAQ
My VOB is from a DVD I ripped/backed up — will it play? If it's unencrypted (a home recording, or a backup with protection removed), yes. An encrypted commercial-movie VOB won't, because of CSS — that's the copy protection, not the player.
Why is my DVD split into several VOB files?
DVD-Video caps each VOB at about 1 GB, so a feature is spread across VTS_01_1.VOB, VTS_01_2.VOB, and so on. Open each part to watch it.
Do I need to convert it to MP4 first?
No. Open the .vob directly — no conversion, no second copy.
Can I play a VOB from my cloud drive without downloading it? No — cloud playback only handles browser-native formats, which MPEG-2 VOB isn't. Download it first, then open it locally.
Bottom Line
VOB is DVD video in an MPEG-2 Program Stream — a container and a codec browsers don't support, which is why a .vob just sits there. As long as it isn't an encrypted commercial disc, open it in a player that decodes it locally, and your DVD footage plays in a browser tab with no disc and no conversion.