tags:

views:

201

answers:

3

What is a sound library I can use to easily manipulate sound files (mp3, ogg, wav, etc.).

I'm doing this as a leasure project and as such I'm more than willing to read a bit because I want this to be a little learning experience.

Any help, SO? :D

A: 

SoundPlayer class for wav. At the bottom of that documentation there is a link to a page explaining how to also play mp3 and wma.

Nestor
+1  A: 

If you need more than just .wav files, as it appears you do, and you're using .NET 3.0 or higher, have a look at:

MediaPlayer Class

It's basically a wrapper around Windows Media Player, and will let you do in code most (if not all) of what WMP can do.

If you're still in .NET 2.0, have a look at the Windows Media Player SDK, which is a significantly uglier wrapper around Windows Media Player. See this answer.

Kyralessa
A: 

Please try Alvas.Audio http://alvas.net/alvas.audio.aspx

ava