ffmpeg 保存图片 命令 批量保存
ffmpeg -i test.mp4 -r 30 image-%3d.jpg
ffmpeg -i test.mp4 -r 30 -t 4 image-%3d.jpg
ffmpeg -i test.mp4 -r 30 -ss 00:00:20 image-%3d.jpg
ffmpeg -i test.mp4 -r 30 -ss 00:00:20 -vframes 10 image-%3d.jpg
ffmpeg -i test.mp4 -r 30 image-%3d.jpg
test.mp4视频文件
-r 30 每秒提取30帧,一般是24帧 image-%3d 文件命名格式是image-001.jpgffmpeg -i test.mp4 -r 30 -t 4 image-%3d.jpg
-t,表示取t秒时间的帧ffmpeg -i test.mp4 -r 30 -ss 00:00:20 image-%3d.jpg
-ss,表示截取帧初始时间ffmpeg -i test.mp4 -r 30 -ss 00:00:20 -vframes 10 image-%3d.jpg
-vframes,表示截取多少帧
Referenced from:https://blog.csdn.net/Gary__123456/article/details/89154095
本文链接地址:https://const.net.cn/478.html