Python 中的系统标准声音
如何从 Python 脚本中播放标准系统声音?
我正在 wxPython 中编写一个 GUI 程序,需要在事件上发出蜂鸣声以吸引用户的注意,也许 wxPython 中有我可以利用的函数?
How play standard system sounds from a Python script?
I'm writing a GUI program in wxPython that needs to beep on events to attract user's attention, maybe there are functions in wxPython I can utilize?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Windows 上,您可以使用
winsound
和我想 Unix 上的curses.beep
。on windows you could use
winsound
and I supposecurses.beep
on Unix.从 文档 中,您可以使用 wx.Bell() 函数(未测试尽管)
from the documentation, you could use wx.Bell() function (not tested though)
从文档中:
From the documentation: