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

link|improve this question

1  
What sort of manipulation are you planning to do? Just playing them, or actually editing them? – Erik Forbes Nov 9 '09 at 22:41
Sorry for the mix up. I have no intention of manipulating or otherwise editing the sound files. I just want to show bars moving to the beat, etc. Something flashy as a way to learn the GDI in Windows. – Sergio Tapia Nov 9 '09 at 22:48
feedback

2 Answers

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.

link|improve this answer
feedback

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.

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.