如何在 iPhone 上进行实时声音/信号处理?
我可能正在开发一个基于 iPhone 的应用程序,进行近乎实时的声音处理(过滤等)。 我想知道开始的最佳方式。 我想创建一个用于录制和处理声音的音频提示吗,如所述 这里?
编辑:
我应该清楚。 一般来说,我并不是在问如何进行信号处理。 我知道其中一些,我的团队的专家将处理其余的事情。 我问 iPhone 上声音数据的“低级”接口是什么。
Edit2:
我的 iPhone 开发被推迟了一两周,所以我现在无法访问开发工具包。 一旦我获得了该工具包,我就会标记一个或另一个正确的答案。
I may be doing an iPhone-based application doing near-real-time sound-processing (filtering, etc). I was wondering the best way to get started. Would I want to create an audio cue for recording and processing sound, as described here?
Edit:
I should be clear. I am not asking how to do signal processing, in general. I know some of that and my team's expert will handle the rest. I asking what the "low level" interfaces to sound data on the iphone are.
Edit2:
My iphone development has been pushed back a week or two so I don't have access to the deve kit right now. Once I have access to the kit, I'll mark one answer or another correct.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
声音处理是一个很大的课题。 AudioQueue 将为您获取原始数据。 Apple 提供了两个示例来帮助您开始使用 AudioQueue:SpeakHere 和 AurioTouch。
Sound processing is a big subject. AudioQueue will get you the raw data. Apple provides two samples that will get you started using AudioQueue: SpeakHere and AurioTouch.
我使用 SpeakHere 作为我想做的一些音频处理的起点。 它相对容易理解,并且具有输入和输出的所有部分。
I used SpeakHere as a starting point for some audio processing I wanted to do. It's relatively easy to understand, and has all the pieces to do input and output.