Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想实现将进行视频录制的功能,但不是保存视频,而是我想保存该录制中的视频帧。怎么做
如果目标是创建摄像机类的 jpeg,在这里将没有多大帮助。它捕获视频或 jpeg。不做任何转换。
如果您想将完整的视频转换为一组图像,那么最简单的方法是使用 ffmpeg。安装它。创建视频后,在捕获视频并将其转换为图像后运行命令。
ffmpeg -i input -s widthxheight -f image2 out%05d.jpg
这将从视频中创建 out00000.jpg out00001.jpg 等等。您可以使用 -r 选项每隔一帧或第 10 帧生成一次,以此类推。