嗨,我正在尝试在 xcode5 iOS 7.1 中播放流式直播视频 HLS,我正在使用以下代码
NSURL *movieFile = [NSURL URLWithString:@"http://streaming.tlsur.net:1935/blive/ngrp:balta.stream_all/playlist.m3u8"];
player = [[MPMoviePlayerViewController alloc] initWithContentURL:movieFile];
[self presentMoviePlayerViewControllerAnimated:player];
[player.moviePlayer play];
当我在模拟器中运行它时,它会抛出这个错误
2014-08-01 02:48:23.598 StreamingTest[379:4303] RTCReporting: resolve from http://pancake.apple.com/bags/hls?version=4.12
2014-08-01 02:48:23.845 StreamingTest[379:60b] _itemFailedToPlayToEnd: {
kind = 1;
new = 2;
old = 0;
如果我在我的设备中运行它不会抛出 _itemFailedToPlayToEnd 但我只会得到音频
有人知道发生了什么吗?
欢呼