I'm using beep (import from kernel) in c# to send tones through the headphone jack to another device that interprets them. Problem is on some computer the beep occurs but nothing is output to the hp jack, I think it's because it is using internal speaker. How can I send it through the soundcard??
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Older machines might still have a speaker, Console.Beep() will drive the speaker, not the soundcard. Not much you can do about it since this is a driver detail, but ask at superuser.com. This blog post has details about how this came about. Check out the NAudio library for a way to generate sound through the sound card. |
|||
|
|
|
Get yourself a short audio clip, perhaps a .wav or .mp3 file, and play that. It will output through the user's chosen audio output device, which is almost certain to be their soundcard. |
|||
|
|
|
Most probably you are using x64 windows. It is not supported on x64. Frankly, don't use this API. |
|||
|
|