ios – 另一个AVPlayer流媒体音频背景问题

前端之家收集整理的这篇文章主要介绍了ios – 另一个AVPlayer流媒体音频背景问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个AVPlayer在背景模式下玩的问题,就像网路上无处不在的很多人一样.我已经做了我认为应该工作的事情,但仍然没有…我认为我的问题可能是我设置和使用我的AudiSession和AVPlayer的地方.

1)“音频”键位于我的Info.plist的UIBackgroundModes中@H_403_3@

2)在AppDelegate中设置这样的AudioSession(在didFinishLaunchingWithOptions中初始化):@H_403_3@

AVAudioSession *audio = [[AVAudioSession alloc]init];
;
;

3)我使用AVPlayer(不是AVAudioPlayer)也在AppDelegate中实现. (在AfterFinishLaunchingWithOptions中,在AudioSession之后初始化),紧跟在AudioSession之后@H_403_3@

// Load the array with the sample file
NSString *urlAddress = @"http://mystreamadress.mp3";

//Create a URL object.
self.urlStream = [NSURL URLWithString:urlAddress];  
self.player = [AVPlayer playerWithURL:urlStream];
//Starts playback
[player play];

而且,每当应用程序进入后台,音频都会被暂停(当我按下“主页”按钮)时,任何人都可以帮助我吗?@H_403_3@

解决方法

顺便说一句,问题只在于模拟器.在iOS设备上可以正常工作
原文链接:https://www.f2er.com/iOS/329286.html

猜你在找的iOS相关文章