What is the algorithm to convert an mp3 file to a wav file?

link|improve this question

60% accept rate
Do a search for 'codec' in conjunction with mp3, wav, aac - you'd strap together a couple of codecs to perform this. – Will A Aug 16 '10 at 23:29
feedback

2 Answers

It's non-trivial to say the least. You could get an overview of the algorithm here:

http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.26.5956&rep=rep1&type=pdf

But I would suggest using a library for your programming needs, for example:

http://www.ffmpeg.org/

link|improve this answer
feedback

As for the mp3 file, I can offer you mpg123 .net wrapper that is extremely easy to use - you will get the sample for reading the mp3, extracting PCM information from it (this is main part of WAV file - PCM data for the sound).

Please, go here:

http://sourceforge.net/projects/mpg123net/

and download sample code from here:

http://sourceforge.net/projects/mpg123net/files/

Ping me if you need more info/help on the subject.

As aac files are concerned, there is faad project here:

http://www.audiocoding.com/faad2.html

that enables you to do the same with the aac file. If you need .net wrapper, I'm about to put it on sourceforge also.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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