Created
July 13, 2016 13:45
-
-
Save saiday/d1be9485d4b0b579884d2aab2e9a7319 to your computer and use it in GitHub Desktop.
FFT computation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSError *computationError; | |
| [audioFile readIntoBuffer:buffer frameCount:yourSampleRate / 2 error:&computationError]; | |
| if (computationError) { | |
| failure(computationError); | |
| return; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment