Skip to content

Instantly share code, notes, and snippets.

@saiday
Created July 13, 2016 13:45
Show Gist options
  • Select an option

  • Save saiday/d1be9485d4b0b579884d2aab2e9a7319 to your computer and use it in GitHub Desktop.

Select an option

Save saiday/d1be9485d4b0b579884d2aab2e9a7319 to your computer and use it in GitHub Desktop.
FFT computation
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