我需要获得在 Windows 7 系统上播放的实际音频级别,就像 Skype 在设置中那样:
我对此一无所知,这里的任何人都可以帮助我吗?
我想做的是,我想编写一个简单的工具,如果窗户上的声音太小,它会调高最大音量,如果声音太大,它会调低音量。
你可以试试这个链接:
http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/
基本上,你需要导入这个win32 api函数:
[DllImport("winmm.dll")]
public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume);
那么你可以像这样使用它:
waveOutGetVolume(IntPtr.Zero, out CurrVol);
你会得到'CurrVol'的音量
下载 NAudio 类并在 C# 项目中引用 DLL。
然后将以下代码添加到您的项目中。它将枚举所有音频设备获取其音量并尝试将其静音。
try
{
//Instantiate an Enumerator to find audio devices
NAudio.CoreAudioApi.MMDeviceEnumerator MMDE = new NAudio.CoreAudioApi.MMDeviceEnumerator();
//Get all the devices, no matter what condition or status
NAudio.CoreAudioApi.MMDeviceCollection DevCol = MMDE.EnumerateAudioEndPoints(NAudio.CoreAudioApi.DataFlow.All, NAudio.CoreAudioApi.DeviceState.All);
//Loop through all devices
foreach (NAudio.CoreAudioApi.MMDevice dev in DevCol)
{
try
{
//Get its audio volume
System.Diagnostics.Debug.Print("Volume of " + dev.FriendlyName + " is " + dev.AudioEndpointVolume.MasterVolumeLevel.ToString());
//Mute it
dev.AudioEndpointVolume.Mute = true;
System.Diagnostics.Debug.Print(dev.FriendlyName + " is muted");
//Get its audio volume
System.Diagnostics.Debug.Print(dev.AudioEndpointVolume.MasterVolumeLevel.ToString());
}
catch (Exception ex)
{
//Do something with exception when an audio endpoint could not be muted
System.Diagnostics.Debug.Print(dev.FriendlyName + " could not be muted");
}
}
}
catch (Exception ex)
{
//When something happend that prevent us to iterate through the devices
System.Diagnostics.Debug.Print("Could not enumerate devices due to an excepion: " + ex.Message);
}