I've tried using Console.Beep() at low millisecond rates two play two frequencies 'at once', but the pause between beeps ruins it. I have tried researching it but I've found nothing, and don't know where to start, aside from DirectSound, which I'm looking in to. All I need is to make a program that plays two or more frequencies simultaneously out of one speaker, in C#.

Thanks.

link|improve this question
Awww...reminds me of my BBC Micro... now that was a machine with some power... this kind of advanced programming is probably not possible in C#. – James Gaunt Jan 16 '11 at 0:04
feedback

5 Answers

up vote 1 down vote accepted

I suggest you look at DirectSound, which has nice .NET bindings. You can use two (or more) Buffer objects and invoke their Play methods to play them simultaneously.

This tutorial shows how to implement a simple drum machine in C# by synthesising sounds on the fly. Hope it helps.

link|improve this answer
That looks like exactly what I need. Thanks. – apophis Jan 16 '11 at 1:44
@apophis: No worries. – CesarGon Jan 16 '11 at 15:56
feedback

Try looking at using MIDI. This example should get you started. It uses a MIDI library that several people recommend highly.

link|improve this answer
Cheers. I'll give it a look. – apophis Jan 16 '11 at 0:29
feedback

Console.Beep() is synchronous and does not return until the sound is finished.

Try Simple DirectMedia Layer (SDL.net).

link|improve this answer
feedback

Here's some very simple sample code that will let you play a WAV or MIDI file. This way you can write your code once then just maintain the wav or mid file if you want to make changes to the sound effect.

Play Any Sound File - C# ( Uses DirectX 9.0 for Managed Code )

link|improve this answer
feedback

If you know the frequencies beforehand you can synthesize them into a wave file (audacity or another similar program) and then play the wave file with the SoundPlayer class.

string path = /*path goes here*/;
player = new SoundPlayer(path);
player.Play();

If you need to synthesize them at runtime you would have to write the file by hand. Here's a SO question that you can reference to build the wave files.

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.