在 iPhone 上的 openGl 应用程序后台播放视频

发布于 2024-09-13 07:43:45 字数 129 浏览 4 评论 0原文

我找到了一些关于在 iPhone 上播放全屏视频的教程,但我想知道是否可以在 openGl 动画应用程序的后台播放嵌入的电影?

电影应该无缝循环,并且在播放时不应弹出任何控制按钮,例如播放/暂停/音量。如果可以的话,性能怎么样?

I found some tutorials about playing a fullscreen video on the iPhone, but I wonder if it is possible to play an embedded movie in the background of a openGl animated app?

The movie should just loop seamlessly and should not have any control buttons like play/pause/volume popping up while being played. If possible, then how about performance?

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

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

发布评论

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

评论(1

撕心裂肺的伤痛 2024-09-20 07:43:45
  1. 解码下一个视频帧
  2. 将帧位图上传到纹理
  3. 禁用深度缓冲区读取/写入
  4. 使用帧纹理绘制屏幕大小的纹理四边形
  5. 重新启用深度缓冲区读取/写入
  6. 渲染常规场景
  7. 转到 #1
  1. Decode next video frame
  2. Upload frame bitmap to texture
  3. Disable depth buffer reads/writes
  4. Draw screen-sized textured quad using frame texture
  5. Re-enable depth buffer reads/writes
  6. Render your regular scene
  7. Go to #1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文