Wouldn’t your life be better if you had audio CD’s of the full soundtrack to The Big Lebowski in your car? Of course it would!
These instructions assume Linux, mplayer and k3b and that you have the Universal edition of the disc. I don’t know the track count for the original Paramount disc.
Insert the disc.
for n in $(seq 1 22); do mplayer -vc null -ao pcm:fast:file=track${n}.wav -vo null dvd://1 -chapter ${n}-${n} ; done
However! For some weird reason, track12.wav will be in French if you do the above!
My solution was:
mplayer -vc null -ao pcm:fast:file=track12.wav -alang en -vo null dvd://1 -chapter 12-12
Since I already had the other ones ripped I just ripped the one track with the language set. You can probably just add -alang en
to the first loop and you’ll be fine.
The .wav files will be at 48kHz which is above the RedBook standard of 44.1kHz, so you’ll have to resample them. There’s probably a way to do that while ripping, but I’m too lazy and let k3b do it for me. I’d also suggest you let k3b (or whatever) normalize the tracks because as ripped, they’re very quiet. I used “normalize-audio” before I saw that k3b could do it for me.
You really should do this. You’ll thank me.