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.
0
votes
2 Answers
0
votes
0
votes
You can use the standard Python module audioop
to determine the power/loudness of an audio sample, with the audioop.rms
function.