[Techtalk] recording music CDs- batch conversions

Alvin Goats agoats at compuserve.com
Wed Mar 10 20:54:40 EST 2004


Thanks, Ya'll!

For that little bit of help to make file sound file conversion easier,
I'll return the favor with a little modification that I just checked (it
works!): Convert mp3's to a wav file format ready to burn on CD!

YAAAYYYYY!

Alvin


#!/bin/sh

for i in *.mp3
do
    FILE=${i%.mp3}
    echo $FILE

    mpg123 -b 10000 -s  ${FILE}.mp3  | sox -t raw -r 44100 -s -w -c 3 -
${FILE}.wav
done


More information about the Techtalk mailing list