在 IOS 中,如何乱序播放音频片段的某些部分?

发布于 2024-12-12 17:38:48 字数 77 浏览 0 评论 0原文

假设我有 1 个音频剪辑,“敏捷的棕色狐狸跳过了懒狗。”如何播放音频剪辑的片段。例如,如果我希望能够在播放过程中跳过“快”和“懒”这两个词。

Say I have 1 audio clip, "The quick brown fox jumped over the lazy dog." How do I play segments of the audio clip. For example, if I want to be able to skip the words "quick" and "lazy" during playback.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

忘东忘西忘不掉你 2024-12-19 17:38:48

您可以使用 iOS>2.2 中提供的 AVAudioPlayer 框架,

audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&error];
audioPlayer.delegate = self;
[audioPlayer play];

音频播放器使您能够将其设置为开始播放的某些点,
例如

[audioPlayer setCurrentTime:0.6];

Audioplayer 的 Apple 开发人员文档

You could use the AVAudioPlayer Framework provided in iOS>2.2

audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&error];
audioPlayer.delegate = self;
[audioPlayer play];

the audioplayer gives you the ability to set it to certain points where to start playing,
for example

[audioPlayer setCurrentTime:0.6];

Apple developer docs for Audioplayer

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