My sketch will run at 30 frames per second. (much more will not be possible, its pretty much to render)
But i need very detailed audio data of the audio input.
If i save the values of the spectrum bands in every draw() iteration, i have 30 (or 30bands to be ecact) values every second. But this resolution is not high enough for my purposes. I would like to have at least 4 values per frame, which means not every 1/33 seconds but every 1/(334) seconds.
Same when i want to save just the amplitude in an array to plot the audio signal. Can i save only 30 values at 30 fps?
What would be a good solution for this?