頂級傷芯 2星
共回答了200个问题采纳率:93.6% 评论
您可以使用Python的`pyaudio`库来检测是否有声音输出。以下是一个简单的示例代码:
```python
import pyaudio
p = pyaudio.PyAudio()
stream = p.open(format=pyaudio.paInt16, channels=1, rate=44100, input=True, frames_per_buffer=1024)
print("正在监听声音...")
try:
while True:
data = stream.read(1024)
if len(data) > 0:
print("有声音输出!")
except KeyboardInterrupt:
pass
finally:
stream.stop_stream()
stream.close()
p.terminate()
```
18小时前
猜你喜欢的问题
5个月前1个回答
5个月前1个回答
5个月前1个回答
5个月前2个回答
5个月前1个回答
5个月前2个回答
热门问题推荐
3个月前1个回答
1个月前2个回答
1个月前2个回答
3个月前1个回答
1个月前1个回答
1个月前2个回答
2个月前4个回答
3个月前1个回答
1个月前3个回答