Supporting for FFT #170
Replies: 3 comments 1 reply
-
I'm using your A2DP library for Bluetooth Audio and I would like to display a Spectrum Analyzer to the 400x240 LCD I have to show the audio dancing as it plays. Something like this https://youtu.be/avjwpHCYAm0 Can you library do that using the I2S audio stream your A2DP library is creating? |
Beta Was this translation helpful? Give feedback.
-
What this library is providing is an easy setup of some audio processing chain where you can e.g. send the output to a MultiOutput which forwards the data e.g. both to a I2SStream and an AudioRealFFT. Alternatively you can also use the data callback of the A2DP library to write the data to AudioRealFFT. The result of the FFT will define the height of your bars. However, please note that this is an audio library and not a LCD library, therefore I don't provide any display functionality! |
Beta Was this translation helpful? Give feedback.
-
Here are some exaples: In any case I recommend that you have a look at the class documentation... |
Beta Was this translation helpful? Give feedback.
-
Running FFT on audio data has been made very easy!
Further detail can be found in the Wiki
Beta Was this translation helpful? Give feedback.
All reactions