現在、URLから.mp4を取得しようとしています。AVPlayerビデオ再生ボタンが交差しました
動画はウェブブラウザからアクセスできますが、再生ボタンは省略されています。何が間違っている可能性があるかについての任意のアイデア?
コード質問
NSURL *movieURL = [NSURL URLWithString:self.videoURL];
// create an AVPlayer
AVPlayer *player = [AVPlayer playerWithURL:movieURL];
// create a player view controller
AVPlayerViewController *controller = [[AVPlayerViewController alloc]init];
controller.player = player;
[player play];
// show the view controller
[self addChildViewController:controller];
[self.view addSubview:controller.view];
controller.view.frame = self.view.frame;
デバイス
のスクリーンショット