检查系统音量是否静音?
我正在开发一个为部分程序播放音频的项目。我希望能够在用户的系统音量静音时显示一条消息。我在 Windows 上使用 Python。
I am working on a project that plays audio for part of the program. I would like to be able to display a message if the user's system volume is muted. I am using Python on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Windows 混合器 API。我给你找到了这篇文章,并附上了相关代码:
(来自 MS KB 181550:“监视音频音量级别”)
这是用 C 编写的,但也可以“翻译”为 Python。
我希望这有帮助。
Use the Windows Mixer API. I've found this article for you, and attached the relevant code:
(From MS KB 181550: "Monitor Audio Volume Levels")
This is in C, but it can be "translated" to Python as well.
I hope that helps.