Is it possible to rip only the audio files from a DVD?

Asked by Tanelkoth

 I want to burn only the audio to a CD instead of running the DVD. Therefore I need only the audio files. The directory AUDIO_TS on the DVD is empty....
Currently I use K3b.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu k3b Edit question
Assignee:
No assignee Edit question
Solved by:
Soul-Sing
Solved:
Last query:
Last reply:
Revision history for this message
Best Soul-Sing (soulzing) said :
#1

sudo apt-get install transcode

If you wished to rip a single audio track from title 1, chapter 1 of a dvd and then transcode it to mp3 the following single command will do all of this:

transcode -x dvd -i /dev/dvd -T 1,1,1 -a 0 -y null,tcaud \
--lame_preset standard -E 44100,16,2 -m $HOME/Desktop/output.mp3

Revision history for this message
wojox (wojox) said :
#2
Revision history for this message
Tanelkoth (erwin-winkel) said :
#3

Thanks leoquant, that solved my question.