I am using scipy's wavfile library to read a wavfile.
rate, data = scipy.io.wavfile.read(filename)
This will return the rate and RAW data of the given wav filename.
What transformation on the data array do I need to do to go from RAW data to frequency?
I understand FFT is used to go to the frequency domain, but I would like to go to the time domain.
Any help is appreciated! :)