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.