Reputation: 39374
I would like to compare to WAV audio files using an FFT. What open source libraries and / or sample code exist for performing such an operation?
Upvotes: 2
Views: 711
Reputation: 70703
Apple's aurioTouch sample app (available on the developer.apple.com web site) includes source code for an FFT (not as fast as the one in the iOS4 Accelerate framework though). The sample app also contains a source code example of how to use an FFT to process audio input data, which is very similar to the raw PCM data contained in a .wav file after the header.
Upvotes: 2