How to convert VOB to MP4 online

Open the VOB to MP4 tool, drop in your .VOB file, and download the MP4 when it finishes — that's the whole process. The tool runs ffmpeg.wasm directly in your browser tab, so the file never leaves your device: nothing is uploaded to a server, and there's no account to create. VOB is the MPEG-2 Program Stream format DVD-Video discs use, and it's rarely a single file — a ripped disc usually produces several numbered files like VTS_01_1.VOB and VTS_01_2.VOB. This tool converts one file at a time, so if your rip is split across multiple VOBs, run each one through separately. Once converted, the resulting MP4 opens in any modern player, editor, or browser without a DVD-aware codec in sight.

Why VOB files won't open almost anywhere

VOB was built for DVD players and DVD-authoring software, not for phones, browsers, or modern editors. It's a DVD Video Object — an MPEG-2 Program Stream container that also carries multiple audio tracks and subtitle streams muxed together, a structure only DVD-aware software knows how to parse. Outside of a DVD ripper or a handful of legacy players, virtually nothing accepts a raw .VOB file directly: not iPhones, not Android, not video editors, not upload forms on the web. That leaves footage from ripped DVDs or DVD authoring exports effectively stranded unless it's converted first. MP4 with H.264 video and AAC audio, by contrast, plays on essentially every device and app made in the last decade, which is why converting is usually the only practical way to actually use VOB footage again.

What actually happens during the conversion

This conversion is always a full re-encode — there's no fast stream-copy shortcut available, because VOB's MPEG-2 video stream isn't compatible with an MP4 container as-is. Behind the scenes, ffmpeg.wasm decodes the MPEG-2 video and audio from your VOB file frame by frame, then re-encodes the video to H.264 and the audio to AAC before packaging both into a standard MP4 container. Because ffmpeg.wasm is a WebAssembly build of the real ffmpeg engine, this is genuine video decoding and encoding, not a metadata trick — all of it happening inside your browser's sandbox using your device's own CPU. The result is a widely compatible H.264/AAC MP4, at the cost of taking real processing time rather than the near-instant remux some other conversion pairs allow.

Privacy and practical details

Your VOB file is processed entirely on your own device — it's never uploaded to a server, which means there's no upload wait, no account, and no risk of a copy sitting on someone else's storage. That also removes the restrictions that come with server-based converters: no file size caps, no daily conversion limits, and no paid tier gating faster or larger conversions, unlike typical online converters such as cloudconvert.com that require uploading your file first. Because the re-encode runs on your device's CPU, processing time scales with your file's length and your machine's speed rather than an upload connection — a short clip finishes in moments, while a full-length DVD title takes longer. Keep the browser tab open until the conversion completes; closing it mid-conversion stops the process.

What to do if the converted MP4 is too large

DVD-sourced video can produce a sizeable MP4 once re-encoded, especially for a full-length title spanning well over an hour. If the resulting file is too large to share, upload, or store comfortably, run it through the compress video tool next — it reduces file size while keeping the video watchable, using the same in-browser, no-upload approach. This is a separate, deliberate step rather than something the VOB to MP4 conversion does automatically, since not everyone needs a smaller file and compression involves a quality tradeoff you should control yourself. Convert first to get a playable MP4, then compress only if size turns out to be a problem for your particular use case.

Other ways to convert VOB to MP4

If you'd rather work offline, ffmpeg's command line does the same re-encode: `ffmpeg -i VTS_01_1.VOB -c:v libx264 -c:a aac output.mp4` converts video to H.264 and audio to AAC in an MP4 container, matching what runs in-browser here. VLC Media Player offers a GUI alternative — its Convert/Save option under the Media menu can take a VOB file and export MP4 without installing ffmpeg separately, though its default presets are less predictable than a direct ffmpeg command. Both routes require installing software first, which is exactly what a browser-based tool skips. They're worth knowing about for batch-processing many VOB files at once or working somewhere offline, since a DVD rip's several numbered VOB files each need converting individually either way.