是否有用于在 iPhone 上执行 FFT 的开源库?
我想使用 FFT 与 WAV 音频文件进行比较。有哪些开源库和/或示例代码可用于执行此类操作?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apple 的 aurioTouch 示例应用程序(可在developer.apple.com 网站上获取)包含FFT 的源代码(不过速度不如iOS4 Accelerate 框架中的源代码)。示例应用程序还包含如何使用 FFT 处理音频输入数据的源代码示例,这与标头后面的 .wav 文件中包含的原始 PCM 数据非常相似。
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.
加速框架
Accelerate.framework