How can I join together multiple VOB files?

5,497

The size of a .VOB container file is, by definition of the DVD specification, limited to 1 GByte (1048 MB).

If we need a file that contains a whole movie, then we need to convert these files to another container (e.g. xvid, MKV, plain MPEG etc.), e.g. by using ffmpeg:

ffmpeg -i snatch_1.vob -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -acodec libmp3lame -ab 128k snatch.avi (from manpage)

Concatenating video files can only be done with some formats (e.g. MPEG).

Share:
5,497

Related videos on Youtube

RusGraf
Author by

RusGraf

My goal here is usually to document.

Updated on September 18, 2022

Comments

  • RusGraf
    RusGraf almost 2 years

    When I ripped a DVD using dvd::rip, the main title was split into several 1GB VOB files. How can I join them to make a single VOB file that contains the whole title?