我如何使用Python检测Linux上的音频插孔是否插入了某些东西?
我正在使用 python 龙卷风网络服务器与tornado.io。
我想证明我可以通过tornado.io 异步发送事件。
我怎样才能简单地检测到音频插孔中插入了某些东西并在tornado.io中发送消息?
I am using the python tornado webserver with tornado.io.
I want to prove that i can send events asynchronously via tornado.io.
How can i simply detect that something is plugged in the audio jack and send a message in tornado.io?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个想法是找到你的声卡是什么,然后谷歌搜索“jack sensing for your audio_card_number”,之后很简单
为了让你开始,这里有一个 python 脚本 适用于 ac97 卡。您的解决方案应该类似。
The idea is to find what is your sound card, then google for 'jack sensing for your audio_card_number" after that it is simple
To get you started, here is a python script which does for the ac97 card. Your solution should be similar.