Why convert VOB to MPG?
VOB is the native container for DVD video and is rarely accepted outside of DVD players and rippers. Converting to .mpg unlocks compatibility with older video editors, authoring tools, and media players that recognize .MPG but reject .vob. Because both formats share the same MPEG-2 structure, no quality loss is necessary. Users also consolidate multiple 1 GB VOB chunks into a single .mpg file for easier editing and storage.
How to convert VOB to MPG
Rename the file extension BUILT-IN
Rename .vob to .mpg - most players and editors accept it immediately since both are MPEG-2 Program Streams.
VLC media player FREE
Use Media > Convert/Save, add your .vob, pick an MPEG-2 profile, and save with a .mpg extension.
Command line - ffmpeg CLI
Run ffmpeg -i input.vob -c copy output.mpg to remux without re-encoding in seconds.
Programs that convert VOB
About these formats
A VOB (DVD Video Object) file is the container that stores the actual video, audio, and subtitles on a DVD disc. VLC media player opens VOB files for free on Windows, macOS, and Linux. To…
Open .VOB details →An MPG file is a video compressed with the older MPEG-1 or MPEG-2 standard - the format behind Video CDs, DVDs, and recorded TV. To play it, use the free VLC media player on any platform.…
Open .MPG details →Quality & what to watch
- Using
-c copyin ffmpeg remuxes without re-encoding, so video and audio quality is fully preserved. - VOB files often carry multiple audio tracks and subtitle streams; after converting to
.mpg, some players only recognise the first audio track. - DVD movies are typically split into 1 GB
.vobchunks; merge them withffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB" -c copy output.mpgto get a single file.
Frequently asked questions
Can I just rename a .vob file to .mpg?
Will converting VOB to MPG reduce video quality?
My movie is split across several VOB files - how do I get one MPG?
ffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB" -c copy output.mpg. VLC can also read the full DVD from the VIDEO_TS folder automatically.