I've used the PyAudio default recording example, and added numpy and scipy.
I can only use scipy.io.wavefile.read('FILE.wav'), after recording the file, however, and it also gives me this random tuple, eg:
(44100, array([[ 0, 0],
[-2, 0],
[ 0, -2],
...,
[-2, -2],
[ 1, 3],
[ 2, -1]], dtype=int16)).
What does this array give me and do you know how else you can get the frequency/amplitude of each frame of a wav file, preferably while recording?
|
| |||
|
feedback
|
|
The array is not random data, it's the wave data of your stereo sound, and 44100 is the sampling rate. use the following code to plot the wave of left channel:
To get the frequency and amplitude of you wave, do FFT. Following code plot the power of every frequency bin:
| |||
|
feedback
|