Posted a question like this a few days ago to no avail, this one will be a bit more indepth as I think it's a different but related issue.

So i'm working with PyAudio for a project, and I use OSS on my laptop as another module requires it. When trying to run my code it tries using ALSA as it is set as default for PyAudio (or python?) to use, see the following:

>>> print p.get_host_api_info_by_index(0)
{'index': 0, 'name': 'ALSA', 'defaultOutputDevice': 0, 'type': 8, 'deviceCount': 1, 'defaultInputDevice': 0, 'structVersion': 1}
>>> print p.get_host_api_info_by_index(1)
{'index': 1, 'name': 'OSS', 'defaultOutputDevice': 1, 'type': 7, 'deviceCount': 4, 'defaultInputDevice': 1, 'structVersion': 1}

If I'm not mistaken, OSS is listed as the default input and output device, but when I try to run the code, or query the pyaudio instance for the default host API I get:

>>> print p.get_default_host_api_info()
{'index': 0, 'name': 'ALSA', 'defaultOutputDevice': 0, 'type': 8, 'deviceCount': 1, 'defaultInputDevice': 0, 'structVersion': 1}

I feel like I'm close to figuring this out, just missing something...

Any help is appreciated! Thanks :)

EDIT: I can also see this:

>>> print p.get_device_info_by_index(1)
{'defaultSampleRate': 44100.0, 'defaultLowOutputLatency': 0.011609977324263039, 'defaultLowInputLatency': 0.011609977324263039, 'maxInputChannels': 2, 'structVersion': 2, 'hostApi': 1, 'index': 1, 'defaultHighOutputLatency': 0.046439909297052155, 'maxOutputChannels': 2, 'name': '/dev/dsp', 'defaultHighInputLatency': 0.046439909297052155}
>>> print p.get_device_info_by_index(0)
{'defaultSampleRate': 44100.0, 'defaultLowOutputLatency': 0.011609977324263039, 'defaultLowInputLatency': 0.011609977324263039, 'maxInputChannels': 32, 'structVersion': 2, 'hostApi': 0, 'index': 0, 'defaultHighOutputLatency': 0.046439909297052155, 'maxOutputChannels': 32, 'name': 'default', 'defaultHighInputLatency': 0.046439909297052155}

The name for index 1 (OSS) is /dev/dsp, and the name for index 0 (ALSA) is default, guess that shows that it's default, although Im not sure how to change that to OSS.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.