如何快速截取视频片段 50 分钟的屏幕截图?
好吧,看来每当我告诉 ffmpeg 在剪辑中途截取屏幕截图(剪辑可能长达 10 小时)时,它就会使用 100% 的 1 个 cpu 核心,并且需要很长时间……而如果我让它在开始它速度非常快,就好像它扫描视频到达中间而不是直接跳到它!
这是我当前使用的代码:
ffmpeg -y -itsoffset -“500" -i “clipname.mov" -vcodec png -vframes 1 -an -f rawvideo “clipScreenshot001.png”
这可能需要几分钟的时间。
这些也是高清视频,720p/1080p,并且大部分时间它们是未经编辑的原始剪辑(例如很长)。
所以我希望有一些更好的软件能够更快地从视频中捕获屏幕(必须是 Linux 且可编写脚本)。
Ok it seems that whenever I tell ffmpeg to take a screen cap half way though the clip (clip can be as long as 10 hours) it uses 100% of 1 cpu core and takes ages… whereas if I let it do a frame at the start it goes real quick, as if it scans though the video to get to the middle instead of just jumping to it!
Here is the code im currently using:
ffmpeg -y -itsoffset -“500" -i “clipname.mov" -vcodec png -vframes 1 -an -f rawvideo “clipScreenshot001.png”
This can take several minutes.
These are HD videos too, 720p/1080p and allot of the time they are raw unedited clips (e.g. very long).
So I was hoping for some better software that will make screen captures from video much faster (has to be linux and scriptable).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用查找(
-ss
标志)而不是延迟(-itsoffset
),即:Try to use seek (the
-ss
flag) instead of delaying (the-itsoffset
), i.e.: