I wish to develop an application in python which is able to read in data from a soundcard (think engineering waveform analysis). I need to be able to read in the left channel and right channel in separately.

Using pyAudio, we are able to either select mono or stereo:

 pa = pyaudio.PyAudio()
    _stream = pa.open(format=pyaudio.paInt16, channels=1, rate=SAMPLING_RATE,
                 input=True, frames_per_buffer=NUM_SAMPLES)

Is anyone aware of a way to reach each channel individually?

Thanks

link|improve this question

52% accept rate
feedback

1 Answer

I've only ever seen this done where both channels are read together as an interleaved stream, and then split. This is a common approach and easy to do, and I also can't quite imagine a reason to do it any other way (not to say there isn't one, maybe my imagination is a bit limited). Also, just on a physical level, the way the soundcard likely works is that it has a single digital-to-analog converter and it multiplexes the input, so it's easier for the output to be agnostic to this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.