How can you convert wav files with MPeg layer 3 (MPeg3) audio format to PCM?
+1
A:
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.
Lucas Jones
2009-01-23 18:01:50