视频中每 XX 秒创建一个图像 [FFMPEG]
我想使用此视频中的 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 :
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
What do I need to change to get what I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论