我嘗試通過使用此代碼發揮M3U8實時流媒體文件:的MPMoviePlayerController的iOS流M3U8文件無法正常工作
NSURL *movieURL = [NSURL URLWithString:@"http://www.streaming507.com:1935/TVBlast/TVBlast/playlist.m3u8"];
MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[self.view addSubview:mp.view];
[mp setFullscreen:YES animated:YES];
mp.movieSourceType = MPMovieSourceTypeStreaming;
[mp play];
}
當我複製/粘貼streaming507.com:1935/TVBlast/TVBlast/playlist.m3u8在我的設備在Safari瀏覽器中播放完美,並且它很好用,我可以如何解決這個問題?
我不知道我在做什麼錯
謝謝
您需要一提的片源類型作爲視頻播放之前播放。試試這個mp.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming; – Madhu
same does not play – alexistkd
我不確定,但嘗試更換[mp setControlStyle:MPMovieControlStyleDefault];與mp.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming; – Madhu