Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I play a sound based on waveform data that my .Net program is generating from user input and mathematical functions? By "waveform data" I mean SPL (sound pressure level) values in a fixed interval time-series (probably 44.1 kHz). I presume that this requires some kind of streaming buffer arrangement.

Note, that this has to be live/real-time, so just creating a .wav file and then playing that will not be sufficient. VB.net is preferred, but C# is acceptable also.

Just to clarify: What I am looking for is a simple working code example.

share|improve this question
Did you find a solution? I have the same need – Davide Vosti Jul 19 '09 at 19:12
1  
Unfortunately, I have not had time to try the proposed solutions out yet (been busy). I am currently leaning towards the NAudio solution though. – RBarryYoung Jul 20 '09 at 0:43
I have finally gotten around to trying the NAudio solution, and it is excellent! So much better and easier than I had feared, I really should have tried it long ago. – RBarryYoung Dec 28 '12 at 21:01

4 Answers

up vote 4 down vote accepted

You can do this using NAudio. You create a stream that derives from WaveStream and in its overriden Read method, you return your samples which you can generate on the fly. You have control over the size of the buffers used by the soundcard which gives you control over the latency.

share|improve this answer
I did finally get a chance to try NAudio and it is excellent. Thanks for the pointer. – RBarryYoung Dec 28 '12 at 21:02

Check out this thread on loading up a DirectSound buffer with arbitrary data and playing it.

Per comment: Yes, I know. You will need to translate the C++ into C# or VB.NET. But, the concept is what's important. You create a secondary DirectSound buffer and then use it to stream over to your primary buffer and play.

share|improve this answer
Well that's not VB.net or C#. In fact it doesn't look like .Net at all. – RBarryYoung Jul 6 '09 at 4:13

IrrKlang, BASS.net, NAudio, CLAM, G3D, and others that can do this.

share|improve this answer

I think you'll need to use DirectSound (DirectX API) for that. It works off buffers which you could fill with your generate data.

Maybe something like this will help

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.