在 IOS 中,如何乱序播放音频片段的某些部分?
假设我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 iOS>2.2 中提供的 AVAudioPlayer 框架,
音频播放器使您能够将其设置为开始播放的某些点,
例如
Audioplayer 的 Apple 开发人员文档
You could use the AVAudioPlayer Framework provided in iOS>2.2
the audioplayer gives you the ability to set it to certain points where to start playing,
for example
Apple developer docs for Audioplayer