准备使用IIS7的音频直播服务。 音频直播服务器设置非常复杂,但已成功。
我获得了这样的流媒体网址(@“http://xxx.xxx.xx.xx/liveStream.isml/manifest(format = m3u8-aapl).m3u8”)。
我使用的代码非常简单。
self.theURL = [NSURL URLWithString:@"http://xxx.xxx.xx.xx/liveStream.isml/manifest(format=m3u8-aapl).m3u8"];
if(moviePlayer == nil)
{
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:theURL];
}
[moviePlayer play];
嗯......我无法按照自己的意愿控制音乐播放器。
问题是这样的。
即使是backgroundMode,我也不想停止播放音乐。
请告诉我一些建议。感谢。
答案 0 :(得分:3)
请仅检查设备。我也在我的申请中完成了。我的代码如下。我在谈论 iOS5
在plist中,我制作了一个名为“必需的背景模式”的数组,并在数组名称中插入一个项目“App Plays Audio”。有时会出现网址问题检查此网址MPMoviePlayer sound working in Simulators and ipad device, but not Working in iPhone Device
- (void)viewDidLoad
{
[super viewDidLoad];
NSError *setCategoryErr = nil;
NSError *activationErr = nil;
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &setCategoryErr];
[[AVAudioSession sharedInstance] setActive: YES error: &activationErr];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
UIBackgroundTaskIdentifier newTaskId = UIBackgroundTaskInvalid;
newTaskId = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:NULL];
}