用python读取声卡输出

时间:2015-04-05 12:32:35

标签: python audio stream pyaudio soundcard

我成功地利用了pyaudio来读取和录制麦克风数据。我想对声卡输出做同样的事情。 (即播放wav文件并使用pyaudio打开流并逐帧读取声卡输出)。

为了阅读mic,我打开了一个如下所示的pyaudio流

stream = pyaud.open(
    format = pyaudio.paInt16,
    channels = 1,
    rate = 22050,
    input_device_index = 0,
    input = True)

当我将input_device_index更改为1时,我得到以下错误

IOError:[Errno通道数无效] -9998

以下是macbook声卡的system_info

Default Devices:
================
Default Input Device : 0
    defaultSampleRate: 44100.0
    defaultLowOutputLatency: 0.01
    defaultLowInputLatency: 0.00199546485261
    maxInputChannels: 2
    structVersion: 2
    hostApi: 0 (Core Audio)
    index: 0
    defaultHighOutputLatency: 0.1
    maxOutputChannels: 0
    name: Built-in Microph
    defaultHighInputLatency: 0.0121541950113
    --------------------------------
Default Output Device: 1
    defaultSampleRate: 44100.0
    defaultLowOutputLatency: 0.00655328798186
    defaultLowInputLatency: 0.01
    maxInputChannels: 0
    structVersion: 2
    hostApi: 0 (Core Audio)
    index: 1
    defaultHighOutputLatency: 0.0167120181406
    maxOutputChannels: 2
    name: Built-in Output
    defaultHighInputLatency: 0.1
    --------------------------------

任何帮助都将非常感谢!!

P上。

1 个答案:

答案 0 :(得分:0)

某些声卡具有“捕获”通道,这是声卡的输出。它们可能正常工作也可能不正常(音乐行业似乎一直在努力消除这些端口)。

以下是Linux ...例如。在我的系统上,我只有一个标准的板载ALC887音频端口。在/ proc / asound / card0中,我找到了一个端口pcm2c,其中包含以下信息:

card: 0
device: 2
subdevice: 0
stream: CAPTURE
id: ALC887-VD Alt Analog
name: ALC887-VD Alt Analog
subname: subdevice #0
class: 0
subclass: 0
subdevices_count: 1
subdevices_avail: 1

这些捕捉设备应显示在您的音频混音器中。