What did you try?
I used
Sound Juicer few years ago (package sound-juicer, menu name Multimedia>Audio CD Extractor). You can add output formats (profiles) as you wish. Look at the 160 kbit profile and make a new 320 kbit profile.
VLC can rip CDs, but it is not the most user friendly for this purpose. Open CD. Select Audio CD. Select a track. Select Convert in stead of Play. Look at the MP3 profile (128 kbit) and change it to 320 kbit or create a new profile for 320 kbit.
Another ripping program is
Ripper X (package ripperx). Click Config and select Target directory and MP3 parameters. Click CDDB. Click Select All. Click Go!.
Other ripping programs I have not tried are
K3b and
Asunder.
If you like the terminal you may want use the commands
cdparanoia and
lame, possibly in a script for repeated use. Cdparanoia extracts wav files. Lame converts to mp3.
Code:
cdparanoia --batch
for f in track*.wav; do lame --preset extreme "$f" "${f%.wav}.mp3"; done
(Replace "extreme" with "insane" if you are not only extreme but insane about audio quality.)
Another command line ripper is
abcde:
Code:
abcde -p -o mp3:"--preset extreme"
(As many other rippers it simply uses cdparanoia and lame behind the scene. Compared to the pure use of cdparanoia and lame commands, abcde also set tags and filenames from CDDB.)
Bookmarks