将图形编码为 mpeg 流

发布于 2024-12-08 07:22:02 字数 120 浏览 0 评论 0原文

寻找如何以编程方式将帧缓冲区编码为 mpeg 流的示例。我需要这个来试验一些 mpeg 编码器,看看不同的模式是如何压缩的。

我对 Windows 有轻微的倾向,尽管如果 Linux 有一些优势,那也不是问题。

looking for an example of how to programatically encode a frame-buffer into an mpeg stream. I need this to experiment with some mpeg encoders, to see how different patterns compress.

I have a slight inclination towards Windows, although if linux gives some advantage it is not a problem.

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

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

发布评论

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

评论(1

瘫痪情歌 2024-12-15 07:22:02

假设您可以将帧缓冲区转换为一系列图像文件,您可以使用 ffmpeg

来自文档

用于从许多图像创建视频:

<前><代码> ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

语法"foo-%03d.jpeg"指定使用由十进制数字组成的
用零填充的三位数字来表示序列号。它
与 C printf 函数支持的语法相同,但仅
接受普通整数的格式是合适的。

您想要类似的东西:

ffmpeg -f image2 -i in-%d.jpg out.mpg

对于 mpeg 流。

Assuming that you can turn your frame-buffer into a series of image files, you could convert them to mpeg video using ffmpeg:

From the docs:

For creating a video from many images:

 ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

The syntax "foo-%03d.jpeg" specifies to use a decimal number composed
of three digits padded with zeroes to express the sequence number. It
is the same syntax supported by the C printf function, but only
formats accepting a normal integer are suitable.

You'd want something like:

ffmpeg -f image2 -i in-%d.jpg out.mpg

for an mpeg stream.

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