0

Is there any package that allows me to rip the DVD and VCD to MP3. I have few DVD and VCDs that I would like to put into MP3 Disc. Recording in software like Audacity is not an option for me. Commandline or GUI that does not matter as long as it works

Braiam
  • 67,791
  • 32
  • 179
  • 269

1 Answers1

0

Usually if you can play media, then you can also extract and store (dump) its contents. This is what you would use for DVDs:

mplayer dvd://$SourceTrack -dvd-device "${SourceVtsPath}/${SourceVts}" -aid "128" -dumpaudio -dumpfile "$Outfile"

Searching online brings up the following example from the manual:

mplayer vcd://2 -cdrom-device /dev/hdc

The most simple way of getting MP3 output of the MP2 audio dump would be:

ffmpeg -i input.mp2 output.mp3

Or it wasn't standards compliant and you already have MP3.

LiveWireBT
  • 28,763