我想创建一个实时视频播放器..有没有人可以建议如何让直播视频播放器或任何SDk可用
发布于 2011-04-08 20:56:18
试试这个。
到iPhone http://geobray.com/2010/03/26/live-tv-streaming-to-iphone-with-http/的直播
或者这个
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=live+streaming+to+iphone
发布于 2011-04-09 03:01:50
本机iOS MPMoviePlayerController也支持流。在谷歌上,特别是在苹果的Multimedia Programming Guide上,有很多关于它的信息
发布于 2012-10-03 20:44:52
正如Hagai所说,您可以使用MPMoviePlayerController播放lie流媒体
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"LIVE STREAM LINK"]];
// video player
MPMoviePlayerController *playerViewController = [[MPMoviePlayerController alloc] init];
playerViewController.contentURL = url;
playerViewController.view.frame = CGRectMake(0, 0, 320, 480);
[self.view addSubview:playerViewController.view];
[playerViewController play];这就是您需要执行的全部操作
https://stackoverflow.com/questions/5595301
复制相似问题