转换输入的H264文件参数,其中
b:100k比特率
r:帧率
g:I帧间隔
profilte :编码档次high
level:3
-x264opts "bframes=0" 去除B帧,或者 -bf 0
-bsf:v "filter_units=remove_types=6" 过滤type为6的帧,既SEI帧
bash
ffmpeg.exe -i input.264 -b 100k -r 25 -g 5 -profile high -level 3 -x264opts "bframes=0" -bsf:v "filter_units=remove_types=6" output2.264
一张图生成视频,其中
r 帧率
vframes 帧数
时长:帧数/帧率
bash
ffmpeg -r 25 -loop 1 -i input.jpg -pix_fmt yuv420p -vcodec libx264 -b 200k -preset medium -vframes 250 output.264