我正在尝试播放视频:
- (void) playMovie {
NSURL *url = [NSURL URLWithString:
@"rtmp://122.129.75.174:61935/live/peghamtvX007"];
MPMoviePlayerController *controller = [[MPMoviePlayerController alloc]
initWithContentURL:url];
self.videoController = controller; //Super important
controller.view.frame = self.view.bounds; //Set the size
[self.view addSubview:controller.view]; //Show the view
[controller play]; //Start playing
}
但它未能发挥。这是错误:
_itemFailedToPlayToEnd: {
kind = 1;
new = 2;
old = 0;
}
我可以使用WebView
在MPMoviePlayerController
中播放rtmp链接吗?并且还帮助我解决了这个错误。