要求 ffmpeg 以原始帧速率提取帧

发布于 2024-12-07 04:01:31 字数 1459 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

葬心 2024-12-14 04:01:31

要获取原始帧速率:

ffmpeg -i file.mp4 2>&1 | grep -o '[0-9]\{1,3\}\sfps'

示例输出:

25 fps

您可以进一步将其通过管道传输到 sed ... | sed 's/\sfps//' 仅保留 25,并将其存储到变量中,以便您可以使用该变量来转换视频,例如 ffmpeg -r $originalFps

grep -o 将提取匹配项,而不是包含匹配项的整行。

[0-9]\{1,3\} 将匹配一到三位数字

\sfps 将匹配后跟“fps”的空格

To get the original frame rate:

ffmpeg -i file.mp4 2>&1 | grep -o '[0-9]\{1,3\}\sfps'

Example Output:

25 fps

You can futher pipe it to sed ... | sed 's/\sfps//' to keep only the 25, and store it into a variable, so you can use that variable to convert the videos e.g. ffmpeg -r $originalFps.

grep -o will extract the match, instead of the whole line containing the match.

[0-9]\{1,3\} will match one to three digits

\sfps will match a white space followed by 'fps'

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