python - 查看系统音量是否静音?

标签 python windows volume mute

我正在做一个为程序的一部分播放音频的项目。如果用户的系统音量被静音,我希望能够显示一条消息。我在 Windows 上使用 Python。

最佳答案

使用 Windows Mixer API。我帮你找到了这篇文章,附上相关代码: (来自 MS KB 181550:“监控音频音量级别”)

这是用 C 语言编写的,但也可以“翻译”成 Python。

希望对您有所帮助。

#include <windows.h>
#include <mmsystem.h>

MMRESULT rc;              // Return code.
HMIXER hMixer;            // Mixer handle used in mixer API calls.
MIXERCONTROL mxc;         // Holds the mixer control data.
MIXERLINE mxl;            // Holds the mixer line data.
MIXERLINECONTROLS mxlc;   // Obtains the mixer control.

// Open the mixer. This opens the mixer with a deviceID of 0. If you
// have a single sound card/mixer, then this will open it. If you have
// multiple sound cards/mixers, the deviceIDs will be 0, 1, 2, and
// so on.
rc = mixerOpen(&hMixer, 0,0,0,0);
if (MMSYSERR_NOERROR != rc) {
    // Couldn't open the mixer.
}

// Initialize MIXERLINE structure.
ZeroMemory(&mxl,sizeof(mxl));
mxl.cbStruct = sizeof(mxl);

// Specify the line you want to get. You are getting the input line
// here. If you want to get the output line, you need to use
// MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT.
mxl.dwComponentType = MIXERLINE_COMPONENTTYPE_DST_WAVEIN;

rc = mixerGetLineInfo((HMIXEROBJ)hMixer, &mxl,
                       MIXER_GETLINEINFOF_COMPONENTTYPE);
if (MMSYSERR_NOERROR == rc) {
    // Couldn't get the mixer line.
}

// Get the control.
ZeroMemory(&mxlc, sizeof(mxlc));
mxlc.cbStruct = sizeof(mxlc);
mxlc.dwLineID = mxl.dwLineID;
mxlc.dwControlType = MIXERCONTROL_CONTROLTYPE_PEAKMETER;
mxlc.cControls = 1;
mxlc.cbmxctrl = sizeof(mxc);
mxlc.pamxctrl = &mxc;
ZeroMemory(&mxc, sizeof(mxc));
mxc.cbStruct = sizeof(mxc);
rc = mixerGetLineControls((HMIXEROBJ)hMixer,&mxlc,
                           MIXER_GETLINECONTROLSF_ONEBYTYPE);
if (MMSYSERR_NOERROR != rc) {
    // Couldn't get the control.
}

// After successfully getting the peakmeter control, the volume range
// will be specified by mxc.Bounds.lMinimum to mxc.Bounds.lMaximum.

MIXERCONTROLDETAILS mxcd;             // Gets the control values.
MIXERCONTROLDETAILS_SIGNED volStruct; // Gets the control values.
long volume;                          // Holds the final volume value.

// Initialize the MIXERCONTROLDETAILS structure
ZeroMemory(&mxcd, sizeof(mxcd));
mxcd.cbStruct = sizeof(mxcd);
mxcd.cbDetails = sizeof(volStruct);
mxcd.dwControlID = mxc.dwControlID;
mxcd.paDetails = &volStruct;
mxcd.cChannels = 1;

// Get the current value of the peakmeter control. Typically, you
// would set a timer in your program to query the volume every 10th
// of a second or so.
rc = mixerGetControlDetails((HMIXEROBJ)hMixer, &mxcd,
                             MIXER_GETCONTROLDETAILSF_VALUE);
if (MMSYSERR_NOERROR == rc) {
    // Couldn't get the current volume.
}
volume = volStruct.lValue;

// Get the absolute value of the volume.
if (volume < 0)
    volume = -volume;

关于python - 查看系统音量是否静音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2864507/

相关文章:

python - 使用 python pandas 将一列拆分为多列

windows - Windows 上的 PID 可以为负数吗?

ruby-on-rails - 使用 RubyInstaller 1.9.1 RC2 后在 Windows 上启动 mongrel 时出错

audio - 如何在 AutoIt 中使用 WMI 将系统音量静音?

android - 如何增加 Android PJSIP 中的麦克风音量?

python - Python中列表,序列和切片之间的区别?

python - 如何在 DJANGO 中合并多个查询集

PHP无法通过python连接mysql

c++ - REGSVR32: 模块 "xxxxx.dll"加载失败...找不到相关程序集

objective-c - 获取iOS当前铃声音量值?