问题:在统计X265编码帧内视频特性的时候,设置全I帧编码后的码流不能播放
原因:
所选用的码流播放器鲁棒性不够。
解决方法:
输入参数:--input-res 640x480 --fps 20 jpgimage1_video_640_480.yuv --keyint 1 -o allintratest.h265
之前选用的码流播放器是jinplayer,发现不设置全I帧编码后的码流可以播放,全I帧后便不能播放器,
后来选用的是完美解码播放器这是下载链接。
下面是参数配置说明,具中文配置在文档里面
详细说明参考官方文档
Slice decision options:
-i/--keyint Intra period in frames, (-1: only first frame)
-b/--bframes Max consecutive B frames (now only selects fixed B GOP profile)
-w/--weightp Enable weighted prediction in P slices
--no-weightp Disable weighted prediction in P slices
--weightbp Enable weighted (bidirectional) prediction in B slices
--no-weightbp Disable weighted (bidirectional) prediction in B slices
下面是链接: