如何使用 Objective C 降低 Iphone 上播放声音的速度
我有一个 mp3,我想在不改变音调的情况下缓慢播放。有办法做到吗?如果我能以其他形式做到的话,我可以转换成其他形式。这是我正在开发的 iPhone 应用程序。
谢谢
I have an mp3 that I want to play slowly without altering the pitch. Is there a way to do it? I can convert into other forms, if I can do it in other forms. This is for a iPhone app that I am developing.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此可以使用时间音调修改/拉伸算法或库。您可以为 相位声码器开发一些 DSP 分析/再合成代码、PSOLA 音调校正器,或使用商业库,例如 狄拉克。
请参阅 stackoverflow 问题:iPhone 语音转换器,了解类似问题的其他一些答案。
A time-pitch modification/stretching algorithm or library could be used for this. You could develop some DSP analysis/resynthesis code for a phase vocoder, a PSOLA pitch corrector, or use a commecial library such as Dirac.
See the stackoverflow question: iPhone voice changer for some other answers to a similar question.