В сообщении от Sunday 28 October 2007 23:33:29 marexel написал(а):
> hi,
>
> i have now spend hours to transcode a .vob to a 192kbps mp3 file, but i
> won't work because i can't find my way through all the commandline
> options. i'm sure that its not the problem once you found the way.
> so, please, can anybody help me?
> thanks in advance, regards,
>
> marexel
>
> p.s. dvd::rip will not work on my machine so commandline is my option

If I have correctly understood, you want to extract music from dvd.

# mount /dev/sr0 /mnt/dvd
$ cp /mnt/dvd/VIDEO_TS/VTS_01_1.VOB /tmp
$ cd /tmp

First of all, mp3 - is proprietary codec. In the second - it's obsolete, so if 
you want to use some lossy codec
Ogg vorbis it's the Best variant - http://en.wikipedia.org/wiki/Vorbis.

But if you want to rip in high quality music from dvd, tou should 
use lossless codecs. The best is FLAC - http://en.wikipedia.org/wiki/Flac

So,

FLAC: (high quality)
$ transcode -i VTS_01_1.VOB -y null,wav -m audio_out.wav
$ flac audio_out.wav

OGG Vorbis: (good)
$ transcode -i VTS_01_1.VOB -y null,ogg -m audio_out.ogg -b 192

MP3: (bad)
$ transcode -i VTS_01_1.VOB -y null,lame -m audio_out -b 192

Best regards, 
SIEGERSTEIN

Reply via email to