Converting DVD to mp3
From Foochal
Contents |
[edit]
Linux
[edit]
DVD to wav
mplayer -quiet -ao pcm:file=audio.wav -vo null -vc dummy -aid 128 dvd://
[edit]
wav to mp3
lame -b 128 soundpipe audio.mp3
[edit]
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://
[edit]

