我有一个 URL ( http://ms1.clickhere2.com:1935/live/power98/playlist.m3u8 ) 并且想在 iPhone 上播放 m3u8 格式,有人可以帮忙吗,我使用了 MPMEDIAPLAYER 框架和其他东西.
问问题
3996 次
1 回答
4
试试这样:
NSString *path =[[NSString alloc] initWithString:@"http://stream.alayam.com/alayam/alayam/playlist.m3u8"];
NSURL *audioUrl=[NSURL URLWithString:path];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:audioUrl];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(loadStateDidChange:) name:MPMoviePlayerLoadStateDidChangeNotification
object:player];
if ([player respondsToSelector:@selector(loadState)])
{
[player setControlStyle:MPMovieControlModeVolumeOnly];
[player setFullscreen:YES];
[player prepareToPlay];
}
于 2012-03-29T10:08:31.697 回答