WAV audio format: MPEG3 to PCM

pcmwav

How can you convert wav files with MPeg layer 3 (MPeg3) audio format to PCM?

Best Answer

You could use FFMPEG called from the command-line, like so:

ffmpeg -i source.wav -f wav -acodec pcm dest.wav

NOTE: Untested

Also, Windows binaries are available (I had some from another place as well) here.

Related Topic