Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I'm ripping dvds using a series of calls like mplayer -dumpfile foo$i.vob -dumpstream dvd://$i. and using lsdvd to list the available streams to rip. Here is an example command I wrote for this

for i in $(lsdvd 2>&1 | egrep "^Title" | sed -e 's|Title: \(..\).*|\1|g'); 
  do mplayer -dumpfile foo$i.vob -dumpstream dvd://$i; 
done

To join the vobs together - UPDATE apparently this has been asked on superuser before, here.

Question(s):

  1. Am I getting too many vob's? DVD's are regularly dumping 13G of data, seems twice as such as I should be getting.
  2. Are the #'s of the vobs (as the command above indicates) in the correct order? Say, for example, for a movie? Can I just merge 1 followed by 2, followed by 3, etc?

Do you recommend a better way to do this (using command line tools for linux, and open source)?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.