是否可以使用 iPhone 中的 AVAudioPlayer 更改音频播放速度?

发布于 2024-12-05 15:21:14 字数 94 浏览 2 评论 0原文

我正在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何以笙箫默 2024-12-12 15:21:14

现在可以改变声音的速度。

这是我的示例代码:

player = [[AVAudioPlayer alloc] initWithContentsOfURL:
                  [NSURL fileURLWithPath:path] error:&err];
        player.volume = 0.4f;
        player.enableRate=YES;
        [player prepareToPlay];
        [player setNumberOfLoops:0];
        player.rate=2.0f;
        [player play];

您将“enableRate”设置为 YES 并且可以更改它。

查看更多文档

Now it is possible to change the speed of sound.

here is my sample code:

player = [[AVAudioPlayer alloc] initWithContentsOfURL:
                  [NSURL fileURLWithPath:path] error:&err];
        player.volume = 0.4f;
        player.enableRate=YES;
        [player prepareToPlay];
        [player setNumberOfLoops:0];
        player.rate=2.0f;
        [player play];

you set "enableRate" to YES and you can change it.

see more docs

看透却不说透 2024-12-12 15:21:14

这对于 AVAudioPlayer 来说是不可能的。请参阅 AVAudioPlayer:如何更改音频的播放速度? 潜在的解决方法。

That's not possible with AVAudioPlayer. See AVAudioPlayer: How to Change the Playback Speed of Audio? for potential workarounds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文