Manatee

How to convert VOB DVD video to MP4 on a Mac

Converting a VOB file to MP4 on a Mac takes the raw video from a DVD and turns it into a modern file that plays on phones, in browsers, and in QuickTime. Because a VOB holds older MPEG-2 video, the conversion is a re-encode to H.264 rather than a simple copy, which shrinks the file and makes it universally playable. The fastest way is to drag the VOB onto a converter and choose MP4. This post covers what VOB actually is, the multi-part quirk that trips people up, and how to do the conversion honestly.

What a VOB file is and why you have it

VOB stands for Video Object, and it is the format DVDs use to store their video. Open a DVD or a DVD folder on your Mac and you will find a VIDEO_TS folder full of files named like VTS_01_1.VOB and VTS_01_2.VOB. Inside each is MPEG-2 video, usually AC-3 or PCM audio, and sometimes image-based subtitle and menu data.

MPEG-2 was designed in the 1990s for DVD players and set-top boxes. It works, but it is inefficient by modern standards, so a VOB is large for the picture quality it delivers, and very little outside dedicated DVD software will play it. You typically end up with VOB files when you copy a home DVD to your Mac, rip a disc you own to keep a backup, or receive a folder someone pulled off a disc. Converting to MP4 with H.264 makes the video smaller and lets it play everywhere, which is the whole point.

The multi-part quirk to understand first

DVDs split a single title across several VOB files, each capped near 1 GB, because the DVD-Video specification limits how large one file can be. A ninety-minute movie might live in VTS_01_1.VOB, VTS_01_2.VOB, and VTS_01_3.VOB, which are three chunks of one continuous video rather than three separate clips.

This matters for conversion. If you convert each VOB on its own, you get several MP4 segments that pick up where the last left off. That is fine if you just want the footage, but if you want one seamless movie you need to join the parts, which is an editing step rather than a conversion step. Many home-burned discs put a single main recording in one large VOB, so this only bites on commercial-style multi-part titles. Before you start, look at the VIDEO_TS folder: if there is one main VOB, convert it; if there are several numbered parts of the same title, decide whether you want separate MP4s or plan to stitch them afterward in a video editor.

Convert a VOB to MP4 with a re-encode

Because MP4 is built around H.264 and HEVC, and QuickTime and phones expect those codecs, the sensible conversion decodes the MPEG-2 video and compresses it again as H.264. That is a re-encode, so it is not perfectly lossless, but MPEG-2 carries so much headroom that a good H.264 encode looks the same to the eye while producing a much smaller file.

If you have ffmpeg installed and like Terminal, a solid command is:

ffmpeg -i VTS_01_1.VOB -c:v libx264 -crf 20 -c:a aac -b:a 192k output.mp4

The -crf number sets quality: lower is better and larger, and 20 is a safe choice that keeps DVD footage looking clean. The audio is rebuilt as AAC so the MP4 plays on any device. Expect the encode to take real time, since every frame is decoded and recompressed, so a full-length title runs for several minutes on Apple silicon and longer on Intel.

The drag-and-drop way

If you would rather not memorize codec flags, Manatee converts VOB to MP4 from its window or a drag onto its menu bar icon:

  1. Open Manatee and choose Convert.
  2. Pick MP4 as the target.
  3. Drop the VOB in, or select several parts at once. Each appears in the job list with progress.
  4. The MP4 is written alongside the original VOB, which is never modified.

Manatee runs entirely on your Mac with nothing uploaded, and it bundles its own conversion engine, so there is nothing to install first. One important boundary to be honest about: Manatee converts VOB files you can already read, such as home recordings and discs without copy protection. It is not a DVD ripper or a decryption tool, so an encrypted commercial movie disc is a separate matter it does not handle. And because it is a converter rather than an editor, it turns each VOB into its own MP4; joining a multi-part title into one seamless file is a job for an editing app.

What the Mac can do on its own

There is no clean built-in path for VOB on a modern Mac. QuickTime Player, Photos, and Preview do not open VOB files, because Apple dropped the old MPEG-2 support that once made this possible, so double-clicking a VOB usually does nothing useful. That is why a converter is the realistic answer rather than a fallback. If you only need to watch the footage once, a general-purpose media player that bundles its own codecs can play a VOB directly, but to keep the video, share it, or edit it, you want a real MP4, and that means converting.

Questions

Which VOB file is the actual movie?

The largest numbered files in the VIDEO_TS folder, named like VTS_01_1.VOB and up, hold the main title. Tiny VOB files and the VIDEO_TS.VOB are usually menus and navigation, so you can skip those and convert the big ones.

Will the MP4 look worse than the DVD?

Only slightly, and usually not in a way you can see. MPEG-2 on a DVD is inefficient, so a careful H.264 encode at a sensible quality setting preserves the detail while making the file far smaller. Avoid re-converting the MP4 again later, since each re-encode gives up a little more.

My VOB will not convert at all. Is it broken?

It might be copy protected, in which case a plain converter cannot read it, or the file may be damaged. If the disc was a home recording and the file still fails, that points to corruption, and a repair pass is the route before conversion. Manatee reports repair honestly as Fixed, Partial, or Not fixable.

Can I get one MP4 from a multi-part DVD?

Converting gives you one MP4 per VOB part. To end with a single seamless movie, convert each part and then join them in a video editor, or use an editor that imports the parts and exports one file. The conversion and the joining are two different steps.