Does anyone know of a good wav2mp3 app that will allow me to use the LAME encoder? I have grip, but I use that only for ripping cds. I know I can convert to mp3s, but I don't always want to at the same time that I rip, and I haven't found a way to convert wavs to mp3s. Anyway, thanks for the help. God bless
Hiran
lame -h -b 192 input.wav output.mp3 Or check "lame --help" for VBR and other info.
This might help, too (untested, but it should work):
#!/bin/bash
for i in *.wav; do
mp3=$(echo "$i" | sed -e "s/wav/mp3/")
lame -h -b 192 $i $mp3
done
| « C&C Generals and linu... | Uninstalling Win98 for ro... » |