I tried
import pyaudio
p = pyaudio.PyAudio()
for i in range(p.get_device_count()):
print p.get_device_info_by_index(i)
but I don't get the full list of all devices : for example I don't get ASIO devices in this list. This is strange, because portaudio
should give ASIO devices as well, right ?
How can I list all audio devices with pyaudio
?