I am looking to develop an audio player in C#, but was wondering what libraries are available for playback. I am looking for a free library that allows for an extensive list of audio formats to be played (for example mp3, wma, wav, ogg, etc.) Thats pretty much the basic functionality I would need. But if I could get picky, a library that can convert audio files between the formats would be handy. Doing a google search I came across the alvas.audio library, but it wasn't free. The VLC library would be nice too, but I couldn't get it to work, and I'd prefer to just package my application with a dll instead of having my users have the VLC software installed on their machine as well.

Thanks for any tips or advice on this.

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

Bass Audio Library is one option.

link|improve this answer
Thank you for the link. I will definitely look into this. – Nick Jan 21 '09 at 20:39
1  
I was successful making a toy audio player myself with this library. It's pretty easy to use. – Nick Jun 20 '09 at 16:30
feedback

NAudio is an open source .NET audio library that can play back WAV, MP3 and AIFF files, using ACM codecs installed on your computer for decompression purposes. It also has preliminary support for WMA file playback. It can't do ogg.

(Edit: added details of supported audio file types in NAudio 1.5)

link|improve this answer
feedback

You will want to take a look at DirectShow. DirectShow is an unmanaged library which depends on the codecs installed on the user's system for which you can create render graphs. DirectShow is free and usually installed on most Windows machines.

There is a managed wrapper for DirectShow titled DirectShow.NET, which you can find here:

http://directshownet.sourceforge.net/

link|improve this answer
I will look into this as an option. Thank you for the information. – Nick Jan 21 '09 at 20:40
feedback

Alvas.Audio

link|improve this answer
feedback

irrKlang is a C++ audio library with a .NET API. It is free for non-commercial use.

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.