使用 ffmpeg 或 mencoder 对一组图像进行编码

发布于 2024-12-09 13:43:16 字数 280 浏览 0 评论 0原文

我有一组 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 技术交流群。

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

发布评论

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

评论(1

风蛊 2024-12-16 13:43:16

来自文档

用于从许多图像创建视频:

<前><代码> ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

语法"foo-%03d.jpeg"指定使用由十进制数字组成的
用零填充的三位数字来表示序列号。它
与 C printf 函数支持的语法相同,但仅
接受普通整数的格式是合适的。

From the docs:

For creating a video from many images:

 ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi

The syntax "foo-%03d.jpeg" specifies to use a decimal number composed
of three digits padded with zeroes to express the sequence number. It
is the same syntax supported by the C printf function, but only
formats accepting a normal integer are suitable.

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