如何在iPhone中播放m3u8格式

时间:2011-04-11 06:48:22

标签: ios4

我有一个网址http://stream.alayam.com/alayam/alayam/playlist.m3u8并希望在iPhone上播放,使用m3u8格式,我已经成功获得了声音,但是电影还没有到来。我使用过MPMEDIAPLAYER框架和其他东西。

1 个答案:

答案 0 :(得分:3)

我在新答案中给你回答,因为代码更具可读性。 我只是从Apple网站下载MPMovieController示例,然后使用http://

添加您的链接

NSURL我传递了链接http://stream.alayam.com/alayam/alayam/playlist.m3u8,而不是stream.alayam.com/alayam/alayam/playlist.m3u8,而且效果正常。

-(void)initAndPlayMovie:(NSURL *)movieURL
    {
    // Initialize a movie player object with the specified URL
    MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
    if (mp)
    {
        // save the movie player object
        self.moviePlayer = mp;
        [mp release];

        // Apply the user specified settings to the movie player object
        [self setMoviePlayerUserSettings];

        // Play the movie!
        [self.moviePlayer play];
    }
}