Converting DVD to mp3

From Foochal

Jump to: navigation, search

Contents

Linux

DVD to wav

mplayer -quiet -ao pcm:file=audio.wav -vo null -vc dummy -aid 128 dvd://

wav to mp3

lame -b 128 soundpipe audio.mp3

DVD to mp3 (one step)

Use a pipe to send the output of mplayer directly to lame

mkfifo soundpipe
lame -b 128 soundpipe audio.mp3 & mplayer -quiet -ao pcm:file=soundpipe -vo null -vc dummy -aid 128 dvd://

External links


Personal tools