Using lame to create mp3s from wavs
By jeltsch on Tue, 10/24/2006 - 21:03Using Audacity I converted one of the ripped WAVs into an MP3. However there was no possibility to batch convert WAV files. Thus I started to use lame from the command line. I created a shell script (encode.sh):
while [ $ -ge 1 ]; do
It does the batch converting:
infn=$1
outfn="${infn%%.wav}.mp3"
echo $outfn
lame -v $infn $outfn
shift 1
done