iPad 直播无法使用

发布于 2024-11-30 10:57:55 字数 347 浏览 0 评论 0原文

我正在开发一个运行一些实时视频流的通用应用程序。我更喜欢使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄凉少年不暖心 2024-12-07 10:57:55

最好的方法当然是使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文