我有.m3u8
我需要播放的链接,iOS
它支持HLS Protocol
.
当我将 URL 直接分配给MPMoviePlayerController
并播放时,视频不可见,但我可以听到音频。
NSURL *movieURL = [NSURL URLWithString:@"http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/sl.m3u8"];
MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[self.view addSubview:self.moviePlayer.view];
if (mp)
{
// save the movie player object
self.moviePlayer = mp;
[self.moviePlayer setFullscreen:YES];
// Play the movie!
[self.moviePlayer play];
}
我还需要做哪些额外的事情iOS
?