我想使用 Python 从音频中捕获原始数据。在 Python 文档中,似乎使用 ossaudiodev 可以达到此目的。但是,我使用的是没有 /dev/dsp 的 Ubuntu 11.10:
>>> import ossaudiodev
>>> ossaudiodev.open('r');
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/dev/dsp'
有没有人知道如何使用 Python 捕获我的声卡输出的声音?