python 中的 BMP2avi

发布于 2024-08-21 16:24:16 字数 95 浏览 7 评论 0原文

我正在寻找一个Python代码,它需要一系列BMP文件并将它们合并到Avi文件中(并从用户那里获取每秒的参数帧)

有人知道从哪里开始吗?

爱丽儿

I am looking for a python code that takes series of BMP file and merges them into Avi file (and get the parameter frames per second from the user)

does anyone has an idea where to begin?

Ariel

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

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

发布评论

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

评论(1

弥繁 2024-08-28 16:24:16

我首先使用 GStreamer Python 绑定;至少,这将采用 AVI 编码(或许多其他编解码器,如果您愿意的话) )离开你的盘子。

但它对 BMP 输入没有帮助;您可以将它们转换为 PNG 或其他本机支持的输入格式,也可以使用不同的库(例如 PIL)将它们解码到缓冲区中以供 GStreamer 使用(使用 appsrc 插件将解码后的缓冲区输入)。

I'd begin by using the GStreamer Python bindings; at a minimum, that'll take the AVI encoding (or a great many other codecs, if you prefer) off your plate.

It won't help with BMP input, though; either you can convert them to PNG or another natively-supported input format or use a different library such as PIL to decode them into a buffer for GStreamer's use (feeding the decoded buffers in with the appsrc plugin).

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