I'm collecting data from audio files based on sound analysis averaged per seconds and I'm wondering if there's a way to speed it up, given that I don't have to listen to the audio while analyzing it. But I don't know if the draw() loop specific of Processing could let me do that. Also, the Minim library seems only to process audio in real time so I'm asking if anybody knows different.
|
feedback
|
|
Have you looked at the Ess library? It looks like the AudioFile.read() method will let you retrieve all the samples at once. Then you can process them in whatever size chunk you like. | |||
|
feedback
|
|
In the ForwardFFT sample that comes with Processing,
Not sure what you want to do with the data, but are you sure you sure that sampling FFT once per second will give you enough data ? | |||
|
feedback
|