cd burning utilities

Richard Conway fedora at rconway.co.uk
Fri May 14 06:22:47 UTC 2004


On Fri, 2004-05-14 at 04:00, Brandon Evans wrote:
> K3b is my favorite for burning.  For ripping, I recommend Grip.
> I find the most painfull thing to get done is creating audio cd's from 
> MP3's.
> Right now, I use the wav output plugin in xmms, then burn the wav's to 
> cd using cdrecord.

I use this simple script to convert all mp3 files in a directory into
wav.

--snip--
#!/bin/sh
mkdir -p wav
for f in *.mp3; do g=$(basename "$f" mp3)wav; mpg321 --wav "wav/$g"
"$f"; done
--snip--

You need to install the mpg321 rpm to use this script.

Richard.






More information about the users mailing list