Why Demux and Remux VOB Files for Archiving

When archiving home DVDs, simply concatenating raw VOB (Video Object) files often results in severe playback errors, broken timestamps, and audio desynchronization. Demuxing—extracting the raw audio, video, and subtitle streams—followed by remuxing them into a modern container like MKV or MP4 is the preferred preservation method. This process completely resolves DVD-specific stream anomalies, repairs timing references, and ensures universal compatibility across modern media players and software without losing any visual or audio quality.

The Pitfalls of Raw VOB Concatenation

DVDs store video in VOB files capped at an arbitrary file size limit of 1 GB (1,048,576 KB) to maintain compatibility with older file systems like UDF and ISO 9660. Because of this limitation, a single continuous home movie is often split arbitrarily across multiple files (such as VTS_01_1.VOB, VTS_01_2.VOB, and so forth).

Attempting to join these files directly using simple binary concatenation (such as using the command line copy /b or cat) causes several significant issues:

How Demuxing Solves Stream Inconsistencies

Demuxing (demultiplexing) acts as a structural cleanse for the media. Specialized tools parse the DVD file structure, read the accompanying .IFO files to obtain proper playback order, and separate the multiplexed container into its constituent elementary streams:

  1. Video: Typically raw MPEG-2 video.
  2. Audio: Uncompressed LPCM or compressed AC-3/DTS tracks.
  3. Subtitles: VobSub/PGS bitmap streams.

During demuxing, the extraction engine strips away the DVD-specific navigation packs, removes zero-byte padding, and discards unwanted multi-angle data. Most importantly, it analyzes the underlying audio and video frames independently, identifying missing packets or non-standard delays that were historically compensated for by the DVD player's runtime memory.

The Advantage of Remuxing to Modern Containers

Once the elementary streams are cleanly separated, they are remuxed (re-multiplexed) into a modern container format, most commonly Matroska (.mkv) or MP4.

By replacing raw VOB concatenation with demuxing and remuxing, digital archivists convert fragile, disc-bound data into clean, robust, and permanent standalone digital media.