捕获视频文件的屏幕截图/帧
有没有办法在Python中捕获视频文件的单帧?
也可以通过命令行完成。我使用 handbrakecli 来转换视频,
但我也需要一些它的屏幕截图。
谢谢
is there a way to capture a single frame of a video file in python?
it could also be done by command line. im using handbrakecli to convert the videos,
but i would need some screenshots of it too.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该首先查看 PyFFmpeg。
也可以使用
ffmpeg
,因此使用subprocess
来调用它。简单的搜索将为您提供从视频文件中提取帧所需的命令。只需使用subprocess
调用该命令即可。类似的过程适用于
handbrakecli
或您可能使用的任何内容。只需调用适当的命令即可。You should first check out PyFFmpeg.
It is also possible using
ffmpeg
, so call that usingsubprocess
. A simple search will give you the command required to extract a frame from a video file. Just call that command usingsubprocess
and that should do it.The similar procedure applies to
handbrakecli
or whatever you might use. Just call the appropriate command.