Convert a MP3 to a WAV File

There are a ton of ways to convert a MP3 file to a WAV file, so take your pick:

mpg123 -w output.wav input.mp3

Or, if you’d prefer to use lame:

lame --decode input.mp3 output.wav

Perhaps you live on the wild side and would like to use FFMPEG:

ffmpeg -i input.mp3 output.wav

As you can see, it’s pretty darn simple to do, so have at it!

Leave a Reply