Having replaced my video with a DVD recorder, I record radio programs from Sky then take the DVD to my computer and convert it to WAV for editing and writing to CD. The script I use is below. As you can see it goes round the houses, creating a VCD image first then stripping out the sound. Can anyone suggest a simpler approach (that doesn't involve physically moving equipment)? Note: I don't want to go via MP3 or OGG. The DVD audio format is AC3, BTW.
-- GT
-----------------------------------------------------------------------------
#!/bin/sh
if [ $# .eq 0 ] then echo "Usage: dvd2wav <output filename>" exit fi
mencoder dvd://1 -o dvd2wav_temp.mpg -ovc \ lavc -lavcopts vcodec=mpeg1video -oac pcm transcode -i dvd2wav_temp.mpg -y null,wav -o "$1".tmp resample -to 44100 "$1".tmp "$1" >/dev/null rm -f dvd2wav_temp.mpg "$1".tmp
exit