如何从后台恢复播放

发布于 2024-10-25 13:26:14 字数 615 浏览 9 评论 0原文

我正在制作一个在线广播电台应用程序。该应用程序运行良好。
通话结束后我的收音机无法恢复。我必须再次重新启动它。

这是我的代码:

    void MyAudioSessionInterruptionListener(void *inClientData, UInt32 inInterruptionState)
    {
        ShoutcastAudioStreamer *radio = (ShoutcastAudioStreamer*)inClientData;
        if (inInterruptionState == kAudioSessionBeginInterruption) {
            [radio stop];
            NSLog(@"kAudioSessionBeginInterruption");
        }
        else if (inInterruptionState == kAudioSessionEndInterruption) {
        //  [radio start]; // this doesn't work - radio is gone
;
        }
    }

有人可以帮忙吗?

I am making an online radio station app. The app works good.
My radio doesn't resume after the call is ended. And I have to restart it again.

Here is my code:

    void MyAudioSessionInterruptionListener(void *inClientData, UInt32 inInterruptionState)
    {
        ShoutcastAudioStreamer *radio = (ShoutcastAudioStreamer*)inClientData;
        if (inInterruptionState == kAudioSessionBeginInterruption) {
            [radio stop];
            NSLog(@"kAudioSessionBeginInterruption");
        }
        else if (inInterruptionState == kAudioSessionEndInterruption) {
        //  [radio start]; // this doesn't work - radio is gone
;
        }
    }

Can any one help?

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

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

发布评论

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

评论(1

凉墨 2024-11-01 13:26:15

发现了类似的问题,但也没有回复...

不要获取 AudioListenerInterruptionEnd 触发器

https://stackoverflow.com/q/8819315/751932

也许它可以帮助你。

similar questions were found, but without reply too...

Do not get the AudioListenerInterruptionEnd trigger

https://stackoverflow.com/q/8819315/751932

Probably it can help you.

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