gpt4 book ai didi

ffmpeg 无法更改 B 帧的数量

转载 作者:行者123 更新时间:2023-12-04 23:11:15 27 4
gpt4 key购买 nike

当从源流式传输时,我不断接收遵循相同模式的帧:I-frame P-frame I-frame P-frame I-frame P-frame ... .
我尝试了很多选项并在这里阅读了尽可能多的问题,但我找不到增加 P 帧数量或至少启用 B 帧的方法。
主要是我似乎应该使用:

 ffprobe rtsp://localhost/video -g 30 -bf 3 -show_frames -of csv
我究竟做错了什么?

最佳答案

-bf选项您设置 B 帧的数量。
但是你必须使用 ffmpeg重新编码输入以更改 GOP 结构。
举个例子:ffmpeg -i input.mp4 -c:v libx264 -g 12 -bf 2 -flags +cgop output.mp4生成的输出应具有以下 GOP 结构:


位置

1
2
3
1
2
3
1
2
3
1
2
3


框架















在 shell 上,您可以使用 ffprobe 轻松输出 GOP 结构。 .
分析2秒的文件:ffmpeg -i input.mp4 -map 0 -c copy -t 2 -f nut pipe: | ffprobe pipe: -show_frames | grep pict_type

关于ffmpeg 无法更改 B 帧的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67725542/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com