I am trying to obtain the pitch, the level, and other stuff from my microphone using Python. I am trying using pyaudio, but I read that I need to use other libraries to generate the maths. I can’t find how mix pyaudio with the math library.

link|improve this question
Which math library are you trying to use? What exactly is going wrong? – tdammers Nov 2 '10 at 8:43
When you did this search, what did you find? stackoverflow.com/search?q=%5Bpython%5D+audio+processing – S.Lott Nov 2 '10 at 10:00
possible duplicate of Good Sound processing/Analysis/Capturing Modules – S.Lott Nov 2 '10 at 10:01
feedback

1 Answer

I have performed basic signal processing (FFT etc) using numpy/scipy directly on the audio buffer without too much trouble. Be careful, you need to tell numpy about the buffer type: float or int, long or short, signed/unsigned ...

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.