基础 Python 声音编程
如何制作一个程序,在按住某个键时播放我定义的音调?我可以用winsound.Beep() 演奏不同的音符,但我认为这并没有什么帮助。
How can I make a program that plays a tone that I define while I hold down a key? I can play different notes with winsound.Beep(), but I don't think this really helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想使用标准库并且正在使用,则可以使用 msvcrt 来获取当前按键并将其映射到频率。
If you just want to use the standard library and youre using, you can use msvcrt to get the current keypress and map that to a frequency.
winsound 模块允许您播放的不仅仅是嘟嘟声,请查看
winsound.PlaySound
:当用户按住某个键时, 你一般会在短时间内得到多个按键事件。
The winsound module allows you to play more than just beeps, have a look at
winsound.PlaySound
:When the user holds down a key, you will generally get multiple key press events in a short time.