如何停止 iOS 音频混合器 (MixerHost) 中的重复音频播放

发布于 2024-11-16 13:48:49 字数 148 浏览 4 评论 0原文

我有来自 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 技术交流群。

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

发布评论

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

评论(3

归属感 2024-11-23 13:48:49

你有这个方法吗?

// Handle a play/stop button tap
- (IBAction) playOrStop: (id) sender

Do you have this method?

// Handle a play/stop button tap
- (IBAction) playOrStop: (id) sender
单调的奢华 2024-11-23 13:48:49

在 MixerHostAudio.m 的 inputRenderCallback 方法中,只需注释该行

if(sampleNumber>=frameTotalForSound)sampleNumber = 0;

In MixerHostAudio.m, inside the inputRenderCallback method, just comment the line

if (sampleNumber >= frameTotalForSound) sampleNumber = 0;

染墨丶若流云 2024-11-23 13:48:49

尝试按如下方式实现此 inputRenderCallback:

if (sampleNumber >= frameTotalForSound) {
     [[NSNotificationCenter defaultCenter] postNotificationName:NOTI_AUDIO object:nil userInfo:nil];
     return noErr;
}

NSNotification“NOTI_AUDIO”只是让视图控制器知道音频何时停止。

希望这有帮助!

Try to implement this inputRenderCallback as below:

if (sampleNumber >= frameTotalForSound) {
     [[NSNotificationCenter defaultCenter] postNotificationName:NOTI_AUDIO object:nil userInfo:nil];
     return noErr;
}

The NSNotification "NOTI_AUDIO" just let the viewcontroller know when the audio is stopped.

Hope this helps!

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