Giving large no of samples to KissFFT

故事扮演 提交于 2019-12-13 07:31:26

问题


I wanted to find the 4096 point DFT of an audio signal of duration 10 seconds with sampling rate 44100 Hz. Hence there are 441000 input samples. But KissFFT takes only up to 4096 as input size. How to go about finding FFT of such a large signal?


回答1:


The power spectrum of most real-world audio signals (speech, music, etc) is time-varying, so typically you calculate a series of short-term FFTs using overlapping windows, to produce a sequence of power spectra, aka a spectrogram.

I suggest starting with a 50% overlap, so the first FFT would be for samples 0..4095, the second for 2048..6143, etc.



来源:https://stackoverflow.com/questions/30815295/giving-large-no-of-samples-to-kissfft

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!