我正在寻找一些工具或程序来自动从视频文件中抓取快照(几分钟间隔)而不为我显示它。Mkv支持会很好!
问问题
5855 次
1 回答
4
从 ffmpeg 手册页http://ffmpeg.org/ffmpeg.html:
For extracting images from a video:
ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
This will extract one video frame per second from the video and will output them in files named ‘foo-001.jpeg’, ‘foo-002.jpeg’, etc. Images will be rescaled to fit the new WxH values.
根据帧位置或时间等,还有其他用于提取图像的选项。
于 2012-08-18T14:21:51.620 回答