在 python 中从一组 PGM 文件创建视频文件
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果“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.