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
On Sat, 2004-11-13 at 10:21 +0000, Graham wrote:
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.
I'm sure that when ripping a DVD to wave to get onto a MiniDisc I used the following. mplayer -vc null -vo null -ao pcm -aofile test.wav <filename> (I just tried it with MPG's on disk since the laptop doesn't have DVD, but I'm convinced that is how I did it). -- Regards, Adam Allen. adam@dynamicinteraction.co.uk pgp http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x553349DB
On Saturday 13 November 2004 23:14, Mr. Adam ALLEN wrote:
On Sat, 2004-11-13 at 10:21 +0000, Graham wrote: I'm sure that when ripping a DVD to wave to get onto a MiniDisc I used the following. mplayer -vc null -vo null -ao pcm -aofile test.wav <filename>
(I just tried it with MPG's on disk since the laptop doesn't have DVD, but I'm convinced that is how I did it).
Ah yes, it seems obvious now I look up those options in the manual (95 pages). The actual syntax is mplayer -vc null -vo null -ao pcm -aofile test.wav dvd:// Seems to work fine. Many thanks. -- GT
participants (2)
-
Graham -
Mr. Adam ALLEN