在 python 中从一组 PGM 文件创建视频文件

发布于 2024-08-20 07:01:43 字数 140 浏览 3 评论 0原文

我的 python 程序生成二进制文件的集合。我使用此二进制数据创建 pgm(便携式位图文件)。我想使用每个 pgm 文件作为视频中的帧来创建视频。

我看过 mencoder 但我不认为它支持 pgm 文件

任何人都可以提供任何建议。

My python program generates a collection of binary files. I create pgm (portable bitmap files) using this binary data. I would like to create a video using each of the pgm files as a frame in my video.

I have had a look an mencoder but I dont think it supports pgm files

Can anyone offer any advice.

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

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

发布评论

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

评论(1

看透却不说透 2024-08-27 07:01:43

如果“PGM”与“Portable GrayMap Files”相同,跨浏览器命令行视频处理工具ffmpeg 可以解码它们:Wikipedia 上的 FFMPeg 编解码器列表

查看 FFMPEG 常见问题解答:3.2 如何将单张图片编码为电影?

关于如何在Python中使用FFMpeg,请查看这个SO问题< /strong>。 Python 有一个包装器,但我找不到任何关于它有多好的说明。

如果有疑问,只需从命令行调用它。

If "PGM" is identical with "Portable GrayMap Files", cross-browser command line video processing tool ffmpeg can decode them: List of FFMPeg Codecs on Wikipedia

Check out the FFMPEG FAQ: 3.2 How do I encode single pictures into movies?

On how to use FFMpeg with Python, check this SO question. There is a wrapper for Python, but I can't find any statements on how good it is.

If in doubt, just call it from the command line.

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