视频中每 XX 秒创建一个图像 [FFMPEG]

发布于 2025-01-15 10:46:37 字数 656 浏览 1 评论 0原文

我想使用此视频中的 FFmpeg 生成以下图像

预期图像:

输入图像描述这里

我的解决方案。

ffmpeg -i input -filter_complex \
"select='not(mod(n,60))',scale=240:-1,tile=layout=4x8" \
-vframes 1 -q:v 2 outputfile.jpg

不幸的是,上面的命令生成了一个与上面非常接近的图像,但并不相同。我想要与上面相同的图像。

这是上述命令生成的图像

在此处输入图像描述

我需要更改哪些内容才能获得所需的内容?

I would like to generate the following image using FFmpeg from this video

Expected Image :

enter image description here

My Solution.

ffmpeg -i input -filter_complex \
"select='not(mod(n,60))',scale=240:-1,tile=layout=4x8" \
-vframes 1 -q:v 2 outputfile.jpg

Unfortunately, the above command is generating a very close image as above but not the same. I want the same image as above.

Here is the image generated by the above command

enter image description here

What do I need to change to get what I need?

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

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

发布评论

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