使用 ffmpeg 从图像创建视频时出错

发布于 2024-12-09 12:58:18 字数 663 浏览 0 评论 0原文

我正在尝试从图像序列创建视频。我尝试了 $ff_command 变量中给出的所有以下代码。

$path = dirname(__FILE__);
$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg video.mpg";

$ff_command = "ffmpeg -r 10 -b 1800 -i {$path}/img%03d.jpg test1800.mpg";

$ff_command = "ffmpeg -i {$path}/img%03d.jpg -s 1280x720 -aspect 16:9 -r 24 -vb 20M teste.mp4";

$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec mpeg4 -b 800k video.avi";

$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec libx264 -b 800k video.avi";

大多数命令都是创建视频文件。但是,当我打开该视频时,什么也没有出现,或者第一张图像在一瞬间出现,之后什么也没有出现,

请让我知道我在这里做错了什么,

我注意到视频太短而无法观看。是否可以增加视频时长以便我们可以看到所有图像?

I am trying to create videos from images sequence. I tried all the below code given in $ff_command variable.

$path = dirname(__FILE__);
$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg video.mpg";

$ff_command = "ffmpeg -r 10 -b 1800 -i {$path}/img%03d.jpg test1800.mpg";

$ff_command = "ffmpeg -i {$path}/img%03d.jpg -s 1280x720 -aspect 16:9 -r 24 -vb 20M teste.mp4";

$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec mpeg4 -b 800k video.avi";

$ff_command = "ffmpeg -f image2 -i {$path}/img%03d.jpg -vcodec libx264 -b 800k video.avi";

Most of these commands are creating a video file. But when I open that video nothing comes or first image is coming for a split second and nothing after that

Please let me know what I am doing wrong here

I noticed that video is too short to see. Is it possible to increase the video duration so that we can see all the images?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文