kettlepot
kettlepot

Reputation: 11011

PyAudio.open, how to use?

I'm trying to make a pyaudio input stream but can't figure out how to make it. What I did is:

a = pyaudio.PyAudio()

Then tried to call a.open() but I don't know the arguments I should type in. It asks me to check Stream.init for a reference, but I don't know what a PA_MANAGER is and the documentation isn't useful at all about it.

Upvotes: 2

Views: 12575

Answers (1)

Jonathan Feinberg
Jonathan Feinberg

Reputation: 45364

Perhaps you could start by modfying some of the examples?

Upvotes: 4

Related Questions