使用 ffmpeg 或 mencoder 对一组图像进行编码
我有一组 H.264 图像(仅限 I 帧),我想使用单个命令将其编码为 JPEG。对于单个图像编码,我可以使用以下内容(ffmpeg):
ffmpeg -i raw_image image.jpg
它工作正常。图像列表怎么样?我已经尝试了以下方法,但它不起作用:
ffmpeg -i raw_image%d image%d.jpg
我需要 ffmpeg 或 mencoder 中的解决方案。任何帮助将不胜感激。
I have a group of H.264 images (I-frames only) that I want to encode into JPEG with a single command. For a single image encoding, I can use the following (ffmpeg):
ffmpeg -i raw_image image.jpg
It works fine. What about a list of images? I have tried the following, but it doesn't work:
ffmpeg -i raw_image%d image%d.jpg
I need a solution either in ffmpeg or mencoder. Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自文档:
From the docs: