gpt4 book ai didi

FFMPEG-将视频转换为图像

转载 作者:行者123 更新时间:2023-12-03 10:36:58 27 4
gpt4 key购买 nike

如何使用 ffmpeg 将视频转换为图像?示例我有一个总持续时间为 60 秒的视频。我想要不同持续时间之间的图像,例如 2-6 秒之间,然后是 15-24 秒之间,依此类推。使用ffmpeg可以吗?

最佳答案

ffmpeg 官方文档:Create a thumbnail image every X seconds of the video
每秒输出一张图像:

ffmpeg -i input.mp4 -vf fps=1 out%d.png
每分钟输出一张图像:
ffmpeg -i test.mp4 -vf fps=1/60 thumb%04d.png
每 10 分钟输出一张图像:
ffmpeg -i test.mp4 -vf fps=1/600 thumb%04d.png

关于FFMPEG-将视频转换为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40088222/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com