我正在尝试从该站点播放音频流:http ://www.radioteofilotoni.com.br/
我有:
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://stream.jshost.com.br:1935/mobile/8056.stream/playlist.m3u8"]];
player.movieSourceType = MPMovieSourceTypeStreaming;
player.view.hidden = YES;
[self.view addSubview:player.view];
[player play];
什么都玩不了,怎么回事?我可以从 Safari 访问这个 m3u8 链接并播放。
谢谢。