📜  ffmpeg 从视频中提取图像 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:02.143000             🧑  作者: Mango

代码示例5
# extract single image from timestamp
# -ss : seek to position
# -vframes:v 1 : extract single image
ffmpeg -i input.mov -ss 00:00:15 -vframes:v 1 out.png