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 need process wave (wav) files uncompressed (pcm). As input i receive a wav in a stream (System.IO.Stream). I need do a few things:

  • Get a new sound (wav) from a snippet of a other sound (wav) (by snippet i mean fragment of time)
  • Join few fragments of sound (short wav) in one.
  • speed up or slow a wav.

Anyone know a api, toolkit, library, dll, or anything capable to do that in .net (preference in C#)?

share|improve this question

1 Answer

Check out NAudio. It supports PCM WAV playback and recording, and I'm sure you could accomplish what you need with it, but it will probably take some work.

http://naudio.codeplex.com

I believe another API to look at would be Bass Audio Library. I've never used it before, but I've read good things about it:

http://www.un4seen.com/

share|improve this answer

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.