小编Vip*_*p's的帖子

在iOS上播放.m3u8文件

我有.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];
}
Run Code Online (Sandbox Code Playgroud)

我还需要做些iOS什么?

video http-live-streaming ios m3u8

7
推荐指数
1
解决办法
1万
查看次数

标签 统计

http-live-streaming ×1

ios ×1

m3u8 ×1

video ×1