Excellent thread, andrew.46!
Tonight I was looking for an easy and quick way to extract audio from a concert DVD that I bought yesterday and I found this thread.
Thanks to your instructions that I adapted for my needs, I was able to get all the tracks as MP3.
If this helps anybody else, you can create a plain text file that contains the extraction commands for every chapters. For example:
Code:
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,1,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"01 - Lost Highway.mp3" &&
.
.
.
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,7,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"07 - Living In Sin - Chapel Of Love.mp3" &&
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,8,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"08 - Always.mp3" &&
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,9,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"09 - Whole Lot Of Leavin'.mp3" &&
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,10,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"10 - In These Arms.mp3" &&
.
.
.
transcode -x null,dvd -y null,tcaud -i ~/Videos/BONJOVI_MSG -T 1,20,1 -a 0 -E 44100,16,2 -s 3 --lame_preset standard -m ~/Music/"Bon Jovi"/"Live at MSG 2009"/"20 - Livin' On A Prayer.mp3"
Make the file executable with the command typed from the directory where the file is saved:
and then run the file from the directory where it is saved as follows:
Great job!