Archive for August, 2007

wavtomp3

Here’s a quick little bash shell script to get your current working directory full of .wav’s converted to .mp3’s using lame.

#!/bin/bash
for i in *.wav; do
     lame -b 256 -q 0 -s 44.1  "$i" "`basename "$i" .wav`".mp3
done

No Comments »