如何使用ffmpeg截取视频大小的屏幕截图

发布于 2024-10-16 12:23:19 字数 242 浏览 1 评论 0原文

我想截取视频大小的屏幕截图。如果拿走怎么办 现在我可以通过以下代码拍摄这种尺寸(如 120x90)的屏幕截图。

$cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -s 120x90 -vcodec mjpeg -f mjpeg $image 2>&1";

请建议。

谢谢

I want to take screen shot of size of the video. How can if take it ,
as now i can take the screen shot of this size like 120x90 by following code.

$cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -s 120x90 -vcodec mjpeg -f mjpeg $image 2>&1";

Please suggest .

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情魔剑神 2024-10-23 12:23:19

这不是一个完整的答案,因为我有一段时间没有使用 ffmpeg 库,但总体思路是

  • 在调用命令字符串之前使用 ffmpeg 获取视频的尺寸,
  • 替换正确的值而不是 120x90
  • 调用命令

This is not a complete answer because I haven't use the ffmpeg library in a while, but the general idea is

  • use ffmpeg to get the dimensions of the video before calling the command
  • string substitute the correct values instead of 120x90
  • call the command
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文