我正在寻找一些工具或程序来自动抓取视频文件中的快照(几分钟间隔)而不显示它。 Mkv支持会很好!
答案 0 :(得分: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.
根据帧位置或时间等提取图像还有其他选项。