从一组png图像创建动画gif

问题描述 投票:0回答:1

我正在尝试使用ffpmeg将png列表转换为gif。

正在运行C:\Users\Me\Art\Animations\wubz\output> dir显示我的文件:

12/04/2020  16:48    <DIR>          ..
12/04/2020  16:45           136,706 wubz_0001.png
12/04/2020  16:45           136,180 wubz_0002.png
12/04/2020  16:45           136,413 wubz_0003.png
12/04/2020  16:45           136,099 wubz_0004.png
12/04/2020  16:45           136,309 wubz_0005.png
12/04/2020  16:45           137,172 wubz_0006.png

我在C:\Users\Me\Art\Animations\wubz\output>的命令提示符中运行的代码:

ffmpeg-f image2 -framerate 30 -i wubz_%d.png video.flv

给出错误消息:[image2 @ 000001efd6c4bac0] Could find no file with path 'wubz_%d.png' and index in the range 0-4 wubz_%d.png: No such file or directory

有人可以解释我在做什么错,我不明白为什么ffmpeg在输出目录中看不到png文件。

windows ffmpeg png gif animated-gif
1个回答
0
投票

由于名称具有4个带有前导零的数字,所以模式应为wubz_%04d.png

© www.soinside.com 2019 - 2024. All rights reserved.