如何快速截取视频片段 50 分钟的屏幕截图?

发布于 2024-08-20 03:18:44 字数 409 浏览 12 评论 0原文

好吧,看来每当我告诉 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨小沫ゞ 2024-08-27 03:18:44

尝试使用查找(-ss 标志)而不是延迟(-itsoffset),即:

ffmpeg -y -ss 3000 -i "clipname.mov" -vframes 1 "clipScreenshot001.png"

Try to use seek (the -ss flag) instead of delaying (the -itsoffset), i.e.:

ffmpeg -y -ss 3000 -i "clipname.mov" -vframes 1 "clipScreenshot001.png"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文