Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to build a simple Audio Converter (between major file formats) using C#.NET, so I need to know the basic steps to do so.

Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

Step 1: find a good third-party component(s) that do(es) conversion between file formats.

Step 2: use this component in your app.

If your intent is to write all the raw conversion code yourself, get ready for some pain. The WAV file format (aka Linear PCM) is easy enough to deal with, as long as the file is just a header plus the sample data. Often, however, WAV files are a lot more complicated than this and require much more elaborate code to locate the various RIFF chunks and parse the file.

And that's just for a very straightforward file format that (usually) does not do any encoding of any sort. The MP3 format is vastly more complex, and requires a good knowledge of FFT (Fast Fourier Transform) and the like.

Update: Alvas.Audio is one third-party C# component that may do what you need. NAudio is another.

share|improve this answer
Many thanks. Other FREE component(s)? – user534028 Feb 23 '11 at 21:03
I've found very little over the years. My software synthesizer app outputs to the WAV format, and I've long wanted to offer the ability to convert this output to other formats (like MP3, mainly). I used to use the LAME MP3 encoder/decoder DLL (it really is named "LAME"), but it had issues. – MusiGenesis Feb 23 '11 at 21:29
Hi again, If I want to write all the raw conversion code by myself, any good resources can help? – user534028 Mar 1 '11 at 14:21
For example, If I want to do (WAV>MP3) conversion and vice versa, how can I handle that? – user534028 Mar 1 '11 at 14:26
@user534028: download the source (C) for the LAME project and port it to C#: sourceforge.net/projects/lame – MusiGenesis Mar 1 '11 at 18:08
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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