Hello,
I hope that you can help me.
I want to build up an FFT Metering.
My FFT is working. I think I know it because I get a clear signal when I do "audio.in -> FFT -> Meter -> iFFT -> audio.out". But to avoid Leakage I want to work with Hann and 50% overlap.
But I am a little bit confused about the overlap function with static Blocks.
I always have a static size of samples to calculate - let us say 4 (for simplicity) - from the whole audio file.
Am I right to do it like this.
- Get the first Samples "1234".
- Save the Samples "34" for the next calculation
- Do for the Samples "1234" : HannWindowing -> FFT -> Meter -> iFFT
- Save the first 2 calculated Audiosamples "ab"
- Return 0 (Silence)
- Get the next Samples "5678".
- Save "78" for the next caluclation
- Calculate "3456" with HannWindowing -> FFT -> Meter -> iFFT
- Save the first 2 calculated Audiosamples "cd".
- Calculate "5678" with HannWindowing -> FFT -> Meter -> iFFT
- Save the first 2 calculated Audiosamples "ef".
- Return "abcd"
- andsoon...
Thank you.
