Convert DV to VOB — Free Online Tool

Convert DV camcorder footage to VOB format for DVD-Video authoring, transcoding the native DV intra-frame video to MPEG-2 and the PCM audio to AC3 (Dolby Digital) — the two codecs required for standard DVD playback. Runs entirely in your browser with no file uploads.

FFmpeg Command

Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg

Free — no uploads, no signups. Your files never leave your browser.

Estimated output:

Conversion Complete!

Download

How It Works

DV files store video as a sequence of independently compressed intra-frames using the dvvideo codec, with uncompressed PCM stereo audio at 16-bit/48kHz. Neither of these streams is compatible with the DVD-Video specification, so both must be fully re-encoded. This tool transcodes the dvvideo stream to MPEG-2, which uses inter-frame compression (I, P, and B frames) — a fundamentally different approach that improves compression efficiency but requires decoding all reference frames. The PCM audio is simultaneously re-encoded to AC3 (Dolby Digital) at 192k bitrate, the standard audio format for DVD. The resulting streams are multiplexed into a VOB container using the MPEG program stream structure expected by DVD players.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In the browser, this runs via FFmpeg.wasm compiled to WebAssembly; on your desktop, this calls your locally installed FFmpeg binary.
-i input.dv Specifies the input DV file. FFmpeg will detect the dvvideo video stream and the PCM s16le audio stream characteristic of DV camcorder recordings.
-c:v mpeg2video Re-encodes the dvvideo intra-frame video stream to MPEG-2, the mandatory video codec for DVD-Video. This is a full transcode — not a copy — because the two codecs use entirely different compression structures.
-c:a ac3 Re-encodes the DV's uncompressed PCM audio to AC3 (Dolby Digital), the standard audio codec for DVD-Video. AC3 is required for broad compatibility with DVD players and authoring tools.
-q:v 4 Sets the MPEG-2 video quality using the quantizer scale, where 1 is highest quality and 31 is lowest. A value of 4 balances good visual fidelity with reasonable file size, appropriate for DVD-quality output from DV source footage.
-b:a 192k Sets the AC3 audio bitrate to 192 kilobits per second. This is a standard DVD audio bitrate that provides clean Dolby Digital stereo reproduction of the original DV PCM audio track.
-f vob Forces the output container to use the VOB muxer with MPEG program stream formatting. This is explicitly required because FFmpeg needs this flag to correctly structure the multiplexed MPEG-2 and AC3 streams in a way DVD tools and players expect.
output.vob The output filename with .vob extension. This single VOB file contains the multiplexed MPEG-2 video and AC3 audio streams ready for import into DVD authoring software.

Common Use Cases

  • Preparing digitized MiniDV or DVCAM camcorder footage for authoring onto a playable DVD disc using software like DVD Styler or Nero
  • Archiving old DV tape captures in a format that can be played directly in standalone DVD players without requiring a computer
  • Delivering edited DV-based projects to clients or family members who lack software capable of playing .dv files but own DVD players
  • Combining multiple DV clips into a single VOB file as an intermediate step before importing into DVD authoring software that requires MPEG-2/AC3 input
  • Converting DV footage for use in legacy broadcast or post-production workflows that accept VOB/MPEG-2 program streams as input
  • Testing how DV source footage will look after the quality loss of MPEG-2 transcoding before committing to a full DVD authoring session

Frequently Asked Questions

Yes, some quality loss is unavoidable because both the video and audio must be re-encoded. DV uses intra-frame-only compression, meaning every frame is self-contained, which makes it highly editing-friendly but not as efficient for storage. MPEG-2 encoding with the default -q:v 4 setting produces good quality output suitable for DVD, but introduces inter-frame compression artifacts that were not present in the original DV. The audio conversion from lossless PCM to AC3 at 192k is also a lossy step, though AC3 at that bitrate is generally transparent for stereo content.
A standalone VOB file with valid MPEG-2 video and AC3 audio can be recognized by many software players like VLC immediately. However, consumer hardware DVD players require a full DVD-Video disc structure — including VIDEO_TS folder, IFO, and BUP files — which this tool does not create. To make a disc that plays in a physical DVD player, use the output VOB as source material in DVD authoring software such as DVD Styler, DVDFlick, or Encore to build the proper disc structure.
The DVD-Video specification does not permit raw PCM as the primary audio format in a VOB container in all configurations — AC3 (Dolby Digital) is the mandatory baseline audio codec for DVD-Video. Additionally, PCM audio at 48kHz/16-bit stereo is significantly larger than AC3 at equivalent quality, so re-encoding to AC3 dramatically reduces file size while maintaining sufficient audio fidelity for DVD playback. This is why AC3 is the default and universally expected audio codec in VOB files.
Adjust the -q:v parameter, which controls the MPEG-2 quantizer scale. The value ranges from 1 (highest quality, largest file) to 31 (lowest quality, smallest file), with the default set to 4 for good DVD-quality output. For example, changing -q:v 4 to -q:v 2 will produce sharper video closer to the original DV quality at the cost of a larger VOB file. If you need precise bitrate control instead — which is often required to fit content on a DVD-5 or DVD-9 disc — replace -q:v with -b:v followed by a target bitrate like -b:v 6000k.
DV tapes encode rich metadata including recording date, time, and SMPTE timecode within the DV stream itself. When transcoding to VOB, this embedded DV metadata is not carried over because the VOB/MPEG-2 program stream format has no standardized fields for DV-specific timecode or camcorder recording data. If preserving this metadata is important — for archival or post-production purposes — consider exporting it separately before conversion, or use a format like MKV or MOV as an intermediate archive format that can store arbitrary metadata alongside the video.
The browser-based tool supports files up to 1GB processed entirely in your browser via WebAssembly. For DV files larger than 1GB — which is common, since DV records at roughly 13GB per hour — you should use the displayed FFmpeg command directly on your desktop. Copy the command, ensure FFmpeg is installed on your system, and run it in a terminal replacing input.dv and output.vob with your actual file paths. Desktop FFmpeg has no file size limit and will also run significantly faster than the browser-based version for large files.

Technical Notes

DV (dvvideo) operates at a fixed bitrate of approximately 25 Mbps for standard DV and 50 Mbps for DVCPRO50, with all frames independently compressed at constant quality. MPEG-2 encoding at -q:v 4 typically targets a variable bitrate in the 4–8 Mbps range depending on scene complexity, representing a significant bitrate reduction from the DV source. This means fast motion scenes or high-detail footage may show more compression artifacts in the VOB output than the source DV would suggest. DV is locked to specific frame sizes and rates: NTSC DV is 720×480 at 29.97fps, and PAL DV is 720×576 at 25fps — both are valid DVD-Video frame sizes, so no scaling is required during this conversion. The -f vob flag explicitly forces the MPEG program stream muxer with VOB-compatible settings, which is necessary because FFmpeg would not automatically infer the correct container format from the .vob extension alone. Multiple audio tracks and subtitle streams are supported by the VOB format, but DV sources carry only a single stereo PCM audio track and no subtitle data, so the output will contain one AC3 audio stream. The VOB container also does not support chapter markers in the sense that DVD chapters require IFO file authoring outside this conversion step.

Related Tools