vote up 4 vote down star
5

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs.

My understanding of this is that I have to take the PCM data and dump it into an array, setting it as the real values with the complex parts set to 0. I then take the FFT, and I get an array back. If each number in the array is a magnitude value, how do I get the frequency associated with each one? Also, do I take the magnitude of the real & complex part or just discard the complex values?

Finally, if I wanted to find the peaks in a single song, do I just set a small window to FFT and slide it across all of the audio? Any suggestions on how large that window should be?

flag
Finding peaks in the audio PCM data is not the same thing as finding peaks in the FFT. What exactly are you trying to do? – endolith Aug 16 at 5:54

3 Answers

vote up 2 vote down check

You may actually be looking for a spectrogram, which is basically an FFT of the data in a small window that's slid along the time axis. If you have software that implements this, it might save you some effort. It's what's commonly used for analysing time varying acoustic signals, and is a very useful way to look at sounds. Also, there are some tricks, for example, with windowing data for FFTs, that the spectrogram will probably get right, but will be harder (though not very hard) for you to do correctly.

link|flag
vote up 0 vote down

The input to the FFT is are the real values which are the magnitude of the wave peaks, the the output is an array of the FFTed values, containing the amplitude & phase, the amplitude should be seperated from the phase & the Index with relatively high amplitude are the frequencies.

Sample rate : 8192 kHz Buffer : 512 Index/Fundmental frequency/Base frequency : 8192/512 = 32 //the number difference between all possible frequencies from ZERO till 8192/2 = 4096 << Nyquist law. FFT input : 0.9834592 FFT output: 0.3454354

Amplitude : 20log10(output/ref) //Say ref = 30dB

Phase : 1-arctan(output)

Now your index/base/fundamental is : 0, 32, 64, 96, 128,...,4096

The output is as the input number 8192, means you've 8192 amplitudes, each amplitude is expressing the power of its index, just the first 4096 amplitudes are the actual frequency the rest are just a mirror for them.

Frequency/base/fundamental = 0 , 32 , 64... Amplitude/Power = 0 , 64 , 77...

And So on.

link|flag
Could you explain this a little better... if you did I believe that you may get more rep for this... It looks like it has potential. – steven Dec 7 at 0:37
vote up 2 vote down

If the samplerate of your PCM data is F, then the highest frequency component in the FFT is F/2. Suppose your PCM data was sampled at 44100Hz, then your FFT values will run from 0Hz (DC) to 22050Hz. If you start with N samples, (N being a power of 2), then the FFT may return N/2 values representing all positive frequencies from 0 to F/2, or it may return N values that also include the negative frequencies from -F/2 to 0. You should check the specification of your FFT algorithm to find out to which frequency each array item is mapped.

To find the peaks, you need to look at the magnitude of the FFT values. So you need to add the squared real and imaginary parts of each complex value.

Suppose your FFT of N PCM samples returns N/2 complex values representing positive frequencies. Then the distance between 2 complex samples is F/2N Hz. With F=44100Hz and N=1024 samples, this would be 21.5Hz. This is your frequency resolution. If you need to find lower frequency beats, the FFT window will need to be extended.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.