is it at all possible to generate sound on-the-fly in a Silverlight app and play it? I.e. if I want to play a sine-wave, can I generate a buffer and feed it to some media API?

Cheers

Nik

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Pete Brown already has a working prototype: http://community.irritatedvowel.com/blogs/pete_browns_blog/archive/2009/03/23/Creating-Sound-using-MediaStreamSource-in-Silverlight-3-Beta.aspx

link|improve this answer
Splendid, that's a fantastic example, including source code! Wow! :-) – niklassaers Mar 25 '09 at 7:33
That worked great, using his code was nice and easy. – niklassaers Mar 25 '09 at 18:50
feedback

looks like you're in luck...

http://blogs.msdn.com/gillesk/archive/2009/03/23/playing-back-wave-files-in-silverlight.aspx

http://code.msdn.microsoft.com/wavmss/Release/ProjectReleases.aspx?ReleaseId=2417

you should be able to hack this around a bit to synthesize

link|improve this answer
Thanks for the link. :-) Seems the timing of the question was great indeed. :-) So in short, generate a Stream and use WaveMediaStreamSource to play the stream? – niklassaers Mar 24 '09 at 12:25
feedback

Charles Petzold has the best example out there: http://www.charlespetzold.com/blog/2009/07/Simple-Electronic-Music-Sequencer-for-Silverlight.html

link|improve this answer
feedback

You can also look at this sample created by Archetype:

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.