Software to get audio from home DVDs

audiodvdextractripping

Not for illegal use! I have some home movies and footage from a wedding, and I'd like to easily 'rip' or extract the audio to WAV/MP3/etc.

If the audio came off as one big file, I am proficient enough to splice/slice it up myself into individual tracks, but can't seem to find any software that makes the task of getting audio from a DVD very simple.

As I said, these are not encrypted/commercial DVDs.

Any suggestions? Does not have to be free, but must be worth the money.

Best Answer

mplayer can do it either with -dumpaudio (to get the raw stream, either usually either PCM or AC3 on DVD) or -ao pcm (to get a PCM stream). Also, mencoder could do it, with -of rawaudio and any -ao setting (use -vo copy)

example (untested, no DVD in front of me):

mencoder -o /tmp/foo.mp3 -of rawaudio -oac mp3lame -lameopts preset=standard -ovc copy dvd://1

The dvd://1 means DVD title 1. You can use mplayer dvd://1 to see what title one is, and to see which is the correct title. If its not 1, try 2, etc.