iPad 直播无法使用
我正在开发一个运行一些实时视频流的通用应用程序。我更喜欢使用 webview,因为 MPMoviePlayerController 总是让我头疼。但是视频不能在 iPad 上播放(模拟器和设备),但它可以在 iPhone 上播放。但是,如果我加载它使用 safari 加载完美。请问有什么建议吗?
这就是我正在做的
movieURL = [[NSURL alloc] initWithString:@"my-stream-URL"];
NSURLRequest *req = [NSURLRequest requestWithURL:movieURL];
[webView_ loadRequest:req];
I am working on a universal app to which runs some live video streams.I prefer using webview as MPMoviePlayerController has always given me headahes.But video doesnt play on iPad (Both simulator and device)but it does work on iPhone.However if i load it using safari it loads perfectly.Any suggestions please?
Here is what i am doing
movieURL = [[NSURL alloc] initWithString:@"my-stream-URL"];
NSURLRequest *req = [NSURLRequest requestWithURL:movieURL];
[webView_ loadRequest:req];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法当然是使用 MPMoviePlayerController。但是我不愿意使用它,因为它不允许我使用选项卡定向(因为所有选项卡都必须定向)。所以我使用另一个视图控制器作为基本控制器将其添加到选项卡上然后将 ModelViewController 推到它上面并实现完全定向
The best way to do this is ofcourse use MPMoviePlayerController.I however was reluctant to use it as it wasnt allowing me the orientation with tabs(As all tabs must be orienting).So I used another view controller using as a basecontroller added it on tab and then pushed a ModelViewController over it and acheived complete orientation