I'd like to merge the VOB's of a DVD into a single VOB file.

What command-line tool is recommended under Linux?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Assuming you only care about the vobs and not anything else on the dvd, you can simply cat them together:

cat *.vob > big.vob

will work just fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.