Home » Questions » Computers [ Ask a new question ]

Software to get audio from home DVDs?

Software to get audio from home DVDs?

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.

Asked by: Guest | Views: 265
Total answers/comments: 4
Guest [Entry]

"Much depends on what platform you're on. However you can get Handbrake for most platforms to rip the content from the DVD and then use ffmpeg (or a GUI front end for ffmpeg) to extract just the audio.

There an entry in the Handbrake FAQ which addresses this, but doesn't tell you much more than I wrote above."
Guest [Entry]

ImTOO DVD Audio Ripper has good support for a range of output formats, will take advantage of multi-core CPUs, and it looks like it will handle the file splitting for you as well. It should make the task pretty simple!
Guest [Entry]

"Audacity (free and open source) is pretty useful. It records from your sound card, so you just need to play your DVD on your computer then hit record in Audacity.

Works fine on Windows but I couldn't get it to record on Ubuntu because of Ubuntu's weird audio set up. However, I can easily rip the audio using mplayer (see other answer above) and open the file in Audacity for editing."
Guest [Entry]

"If it's a data DVD with some video files stored on it, you can simply

ffmpeg -i /path/to/input.file -map 0:a output.wav

If it's a video DVD (with a VIDEO_TS directory etc) you can use vobcopy and ffmpeg:

vobcopy -l -o - | ffmpeg -i - -map 0:a output.wav

Or alternatively (only works for unencrypted DVDs),

cd /path/to/VIDEO_TS

# Find the VTS_XX_N.VOB that corresponds to what you want to rip
# Normally this is the one with the most files, often VTS_01_{1..6}.VOB

ffmpeg -i ""concat:VTS_01_1.VOB|VTS_01_2.VOB|VTS_01_3.VOB|VTS_01_4.VOB"" \
-map 0:a output.wav"