如何停止 iOS 音频混合器 (MixerHost) 中的重复音频播放
我有来自 Apple iOS 的音频混合器(MixerHost)示例代码。这段代码运行良好。 它正在连续播放示例音频文件。你能告诉我如何停止我的混音器代码在播放一次音频后停止吗?
是否可以使用 AVAudiosession
禁用重复播放。
I have got Audio Mixer(MixerHost) sample code from Apple iOS. This code is working fine.
It is playing the sample Audio files continuously. Can you tell me how to stop my Mixer code to stop after playing audio once?
Is it possible disable repeated play using AVAudiosession
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你有这个方法吗?
Do you have this method?
在 MixerHostAudio.m 的 inputRenderCallback 方法中,只需注释该行
In MixerHostAudio.m, inside the inputRenderCallback method, just comment the line
尝试按如下方式实现此 inputRenderCallback:
NSNotification“NOTI_AUDIO”只是让视图控制器知道音频何时停止。
希望这有帮助!
Try to implement this inputRenderCallback as below:
The NSNotification "NOTI_AUDIO" just let the viewcontroller know when the audio is stopped.
Hope this helps!