vote up 0 vote down star

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

flag
do you mean MPEG1 audio layer 3 aka mp3? MPEG3 doesn't exist. – quinmars Jan 23 '09 at 17:57
1  
How is this programming related? – Cody Brocious Jan 23 '09 at 18:02

3 Answers

vote up 1 vote down

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.

link|flag
vote up 1 vote down

LibMAD could be what you are looking for.

link|flag
vote up 0 vote down

If finding a windows binary of ffmpeg is too much work you can install foobar2k and do it from there

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.