How to generate the audio spectrum using fft in C++? [closed]
There are quite a few similar/related questions on SO already which are well worth reading as the answers contain a lot of useful information and advice, but in essence you need to do this: Convert the audio data to the format required by FFT (e.g. int -> float, with separate L/R channels); Apply suitable window … Read more