说明:
现在有一个需求,在h265转h264的时候需要视频的GOP size 都比较小(2 s~ 4s),以方便后续的操作。但是正常情况下的转码,GOP size是编码器自己决定的,那么如何在转码的时候指定GOP size 呢?
利用ffmpeg的参数 -force_key_frames
强行指定GOP size。可以看ffmpeg 的 force-key-frame相关文档
-force_key_frames[:stream_specifier] time[,time...] (output,per-stream)
-force_key_frames[:stream_specifier] expr:expr (output,per-stream)
-force_key_frames[:stream_specifier] source (output,per-stream)
-force_key_frames[:stream_specifier] source_no_drop (output,per-stream)
指定GOP size 为2秒的命令如下。
ffmpeg -i input.mp4 -c:v libx264 -force_key_frames "expr:gte(t,n_forced*2)" output.mp4
注意得到的GOP size 是2s 左右,并不意味严格是2s(2s的地方可能就没有图像帧)
指定GOP size 为2秒,命令如下
ffmpeg -i input.mp4 -c:v libx264 -force_key_frames "expr:gte(t,n_forced*2)" output.mp4
可以用以下的命令查看key frame的时间点,确认结果是否正确。
ffprobe -i output.mp4 -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv=print_section=0
测试了3个视频,改变GOP size后的视频大小变化。
-force_key_frames
强制GOP size,结果不精确,但是基本就是指定的数值