Dailymotion の動画を iPhone で再生するにはどうすればAVPlayer
よいですか。DailyMotin の URL リンクを iPhone で再生する方法はありますか。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];
前もって感謝します。