是否可以使用 iPhone 中的 AVAudioPlayer 更改音频播放速度?
我正在我的 iOS 应用程序上播放类为“AVAudioPlayer”的本地 mp3 文件。 我想改变播放时的速度。比如我想慢点播放这个mp3文件。
如何实现?
I'm playing a local mp3 file with class 'AVAudioPlayer' on my iOS App.
And I want to change the speed when play it. such as I want to play this mp3 file slower.
How to achieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在可以改变声音的速度。
这是我的示例代码:
您将“enableRate”设置为 YES 并且可以更改它。
查看更多文档
Now it is possible to change the speed of sound.
here is my sample code:
you set "enableRate" to YES and you can change it.
see more docs
这对于 AVAudioPlayer 来说是不可能的。请参阅 AVAudioPlayer:如何更改音频的播放速度? 潜在的解决方法。
That's not possible with AVAudioPlayer. See AVAudioPlayer: How to Change the Playback Speed of Audio? for potential workarounds.