我如何使用Python检测Linux上的音频插孔是否插入了某些东西?

发布于 2024-10-23 23:06:50 字数 126 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宛菡 2024-10-30 23:06:50

这个想法是找到你的声卡是什么,然后谷歌搜索“jack sensing for your audio_card_number”,之后很简单

import os
os.system("your_comand")

为了让你开始,这里有一个 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

import os
os.system("your_comand")

To get you started, here is a python script which does for the ac97 card. Your solution should be similar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文