将图形编码为 mpeg 流
寻找如何以编程方式将帧缓冲区编码为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您可以将帧缓冲区转换为一系列图像文件,您可以使用 ffmpeg:
来自文档:
您想要类似的东西:
对于 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:
You'd want something like:
for an mpeg stream.