更改 fps while 循环导出 ffmpeg

发布于 2024-11-08 16:27:05 字数 157 浏览 0 评论 0原文

我是 FFMPEG 的新手。我正在尝试从视频文件中导出静态图像。我做对了。

现在我想更改平均帧速率。也就是说,如果我的视频为 24 fps,而我想导出 30 fps 的静态图像。现在我需要 30 帧而不是 24 帧。

你能帮我做什么吗?

提前致谢 巫师

I am new to FFMPEG. I am trying to export still images from a video file. I did it correctly.

Now i want to change average frame rate. That is if my video is 24fps and i want to export still images with 30fps. Now instead of 24 frames I need 30 frames.

Cany you please help me what to do.

Thanks in advance
wizards

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

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

发布评论

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

评论(1

最笨的告白 2024-11-15 16:27:06

使用 FFmpeg 的 -r 命令行选项指定输出帧速率,例如

ffmpeg -i input.mp4 -r 30 output.mp4

请参阅 FFmpeg 文档在这里。

Use the -r command line option to FFmpeg to specify the output frame rate e.g.

ffmpeg -i input.mp4 -r 30 output.mp4

See the FFmpeg documentation here.

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