如何访问 iOS 上的视频输出功能?

发布于 2024-10-11 01:57:44 字数 112 浏览 1 评论 0原文

连接视频连接器后,Netflix 等应用程序能够从扩展坞连接器播放视频。应用程序是否能够将任意数据输出到视频上?或者视频播放器是 iOS 上唯一可以执行此操作的组件?如果前者可能,我的应用程序如何访问视频输出?

Applications such as Netflix have the ability to play video out of the dock connector when the video connector is hooked up. Do applications have the ability to put arbitrary data on video out? Or is the video player the only component on iOS that can do so? If the former is possible, how can my app access video output?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

终难愈 2024-10-18 01:57:44

要绘制到视频输出,请在 [[UIScreen Screens] objectAtIndex:1]; 返回的屏幕上放置一个窗口。在已创建的窗口上调用 window.screen = theScreen 将其分配给屏幕“theScreen”。

To draw to video out, place a window on the screen returned by [[UIScreen screens] objectAtIndex:1];. Call window.screen = theScreen on a window you have already created to assign it to the screen "theScreen".

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