Rudra Sekhri
Rudra Sekhri
check ur mic settings. Portaudio is probably recognising a mic from which to record from, but the microphone itself is not picking up anything.
having some problems with pyaudio, saying device in unavailable (OS Error)??? Never experienced this before and I don't know why it's happening.
I fixed the problem, the solution is to check your microphone settings and then make sure that more than one app can access it or something
Many people use `scipy.io.wavfle` due to the fact that it is widely used by many developers and that if you do however find weird errors, there is a lot of...
My best way to go is to work with @adrian-stepien as I am still a kid. If you would like an example of a program using 'scipy', then you can...
Maybe like so? - ```Python from scipy import fft transformedData = fft(array) ```
hmmm.... is it the same error as before? The TypeError?
Ok I see. What you are calling is a module, not a method. You have to do something like - ```Python from scipy.fft import fft transformedData = fft(array) ```
did u try what I showed? I think that is the solution