将一系列图像转换为视频

发布于 2024-12-17 11:10:12 字数 238 浏览 3 评论 0原文

我有一系列带有排序名称的图像,例如 0000000354 ... 0000008591 我尝试过使用 ffmpeg 或 MEncoder 来转换主题。在 ffmpeg 中,问题是它会在名称类似于 0000000001 ... 00000000009 且具有 %010d 语法的情况下运行。我不知道我的图像名称应该使用什么语法。在 mencoder 中它将覆盖所有图像但是当我播放输出视频它不显示图像,我想在 5 秒内显示每个图像或类似的东西,任何人都可以帮忙吗?

I have series of images with sorted names, like 0000000354 ... 0000008591
I have tried using ffmpeg or MEncoder to convert theme. In ffmpeg the problem is this that it will operate while the names are like 0000000001 ... 00000000009 with %010d syntax.I don't know what syntax i should use for my images names.in mencoder it will cover all images But when i play the output video it doesn't show images,I want to show every image in 5 seconds or somthing like this, any one can help?

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

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

发布评论

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

评论(2

倾城泪 2024-12-24 11:10:12

ffmpeg 无法读取任意命名的图像。您必须重命名它们或使用符号链接做一些巧妙的事情才能让 ffmpeg 将它们作为输入。

从手册页:

如果模式包含“%d”或“%0Nd”,则为文件的第一个文件名
模式指定的列表必须包含数字
包含在 0 到 4 之间,以下所有数字都必须是
顺序的。这个限制有望得到解决。

ffmpeg can't read in arbitrarily named images. You'll have to rename them or do something clever with symlinks to get ffmpeg to take them as input.

From the man page:

If the pattern contains "%d" or "%0Nd", the first filename of the file
list specified by the pattern must contain a number inclusively
contained between 0 and 4, all the following numbers must be
sequential. This limitation may be hopefully fixed.

穿越时光隧道 2024-12-24 11:10:12

假设您有:

img000001.jpg
....
img000140.jpg
....
img010040.jpg
....

要使用 ffmpeg 将其编码到电影中,只需使用文件名模式:

ffmpeg -i "img%06d.png" -vcodec libx264 -vpre ipod640 output.mp4

Let's say you have:

img000001.jpg
....
img000140.jpg
....
img010040.jpg
....

To encode it into a movie using ffmpeg just use the filename pattern:

ffmpeg -i "img%06d.png" -vcodec libx264 -vpre ipod640 output.mp4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文