从 opengl 录制视频

发布于 2025-01-06 15:42:15 字数 60 浏览 0 评论 0原文

我正在使用Tao框架,并且有一个简单的opengl控件。
如何从此控件录制视频并将其保存到文件中?

I am using Tao framework and I have a simple opengl control.
How can I record a video from this control and save it to a file?

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

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

发布评论

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

评论(2

撩动你心 2025-01-13 15:42:15

请参阅此处 的链接提到了 C# 中的位图屏幕捕获并开始描述 AVI 转换。

有关第一个链接中用于从位图图像集合创建 avi 文件的库的更多信息,请参阅 此处

请参阅此处查看使用媒体播放器编码器来录制屏幕的示例。

更复杂和直接的方法是使用视频捕获卡或编写一个模拟视频捕获卡的软件设备,并使用 DirectShow.Net 或直接 Pinvoking 其他 DirectShow 库将该源提供给 DirectShow 过滤器。

See here for a link that mentions both Bitmap screen capture in C# and starts to describe the AVI conversion.

For further information about the library used to in the first link to make an avi file from a collection of bitmap images see here.

See here for an example that uses the Media Player Encoder in order record the screen.

The more complicated and direct way would be to either use a video capture card or write a software device that emulates one and feed that source to DirectShow filter using DirectShow.Net or Pinvoking other DirectShow libaries directly.

漫漫岁月 2025-01-13 15:42:15

如何从此控件录制视频并将其保存到文件?

使用 glReadPixels 获取像素数据。将像素数据输入视频编码器(例如 DirectShow 过滤器图,或通过 ffmpeg/libavcodec 或将图像汇总到文件中,然后将其编码为视频)。

How can I record a video from this control and save it to a file?

Use glReadPixels to get the pixel data. Feed the pixel data into a video encoder (e.g. a DirectShow filter graph, or through ffmpeg/libavcodec or sump the images into files and encode them to video later).

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