I need to get the current volume of what that outs to the sound card, for example, this value:

Any ideas how?
Thank you.
|
feedback
|
|
You can get at these values using IAudioMeterInformation in the CoreAudio APIs in Vista and Win 7. Managed wrappers are available in NAudio (get at the AudioMeterInformation from the MMDevice). | |||
|
feedback
|
|
Look in MSDN information for:
This is "common" information. It is possible C# has more convenient ways (I do not know). | |||||||
feedback
|
|
Maybe the winmm.dll can help you : From EDDYKT (VB):
Or maybe this : http://blackbeltvb.com/index.htm?free/mcisamp.htm | |||||
feedback
|
|
Working on an application that initiates some kind of "elevator music" when no other sound is present, working with the tips given by Mark Heath, I got what I wanted :
| |||
|
feedback
|
|
Check out this code from Code Project: LED Style Volume Meter Using DirectX
It has an AnalogSignalMeter object, that is fired an event which will report the current left and right speaker level. | |||
|
feedback
|
|
I don't believe there is an easy way to get the current Peak under XP. MIXERCONTROL_CONTROLTYPE_PEAKMETER is present but I believe it is largely unsupported (it is on my current machine). I am guessing you will have create your own method of analysing the current audio output, have a look at the DSP section here. You can just decide at runtime which method you would like to use, XP and Vista/7 have very different methods of dealing with the audio. Some possibly useful information on this matter I wrote previously can be here. The MSDN documentation and Larry Osterman's (he is also a member on SO) blog are probably the 2 most useful sources for current windows audio infrastructure in my opinion. | |||
|
feedback
|
|
Another solution is this article (also) from Code Project: VolumeMeter (Managed DirectX) | |||
|
feedback
|