Magnus
Magnus
No, you can in my experience only have one and I believe it's even mentioned in the README.md Use EZAudioPlot instead if you need more than one.
Here are some methods to obtain the frequency https://ccrma.stanford.edu/~pdelac/154/m154paper.htm The closest to calculating frequency I've found in EZAudio (1.1.5) is to use the FFT delegation and find the maximum bin...
I get this too when app is returned into foreground from background. I didn't see this issue and created my own #314 . Maybe it should be closed, but I...
I'm running EZAudio 1.1.5
I think this can be resolved by retaining the data before passing it on to the audio plot. Like this: ``` let samples: [Float] = self.convertToSamples(buffer, withBufferSize: bufferSize) self.audioPlot?.updateBuffer(&samples, withBufferSize:...