Audio Conversion
Submitted by dac on Thu, 07/24/2008 - 14:32
I often receive audio files in the full WAV format and need to convert them to OGG and MP3.
Here are the tools I use to do this:
Convert to OGG:
oggenc -b 128 -q 7 foo.wav
Convert to MP3:
lame -h --abr 128 foo.wav foo.mp3

