我如何播放dailymotion 视频AVPlayer
。有什么方法可以在iPhone 中播放dailymotin 的URL 链接。我正在尝试使用此代码从 URL 播放视频。
videoPlay = [AVPlayer playerWithURL:@"Dailymotion URL"];
avPlayerLayer =[AVPlayerLayer playerLayerWithPlayer:videoPlay];
[avPlayerLayer setFrame:CGRectMake(0.0,0.0,playView.frame.size.width,playView.frame.size.height)];
[playView.layer addSublayer:avPlayerLayer];
[avPlayerLayer setBackgroundColor:[[UIColor greenColor]CGColor]];
[videoPlay seekToTime:kCMTimeZero];
[videoPlay play];
提前致谢。