PyAudio is based on PortAudio. Is there anyway to detect a buffer under/overflow for writing/reading from an audio stream in PyAudio?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

According to the documentation you can raise an exception on underflow when doing a write on a Stream class:

Stream.write(self, frames, num_frames=None, exception_on_underflow=True)

link|improve this answer
I haven't gotten this to work. This code ( pastie.org/3147232 ) is similar to an example on the PyAudio page with a silly for-loop to induce buffer underflows, but no exception gets thrown. I do hear the breaks in the audio, though. – Gustavo Jan 8 at 7:47
feedback

Your Answer

 
or
required, but never shown

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