FFMPEG用过的命令记录

转换输入的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
相关推荐
量子网络5 分钟前
debian 如何进入root
linux·服务器·debian
我们的五年13 分钟前
【Linux课程学习】:进程描述---PCB(Process Control Block)
linux·运维·c++
我言秋日胜春朝★1 小时前
【Linux】进程地址空间
linux·运维·服务器
lxkj_20241 小时前
使用线程局部存储解决ffmpeg中多实例调用下自定义日志回调问题
ffmpeg
C-cat.1 小时前
Linux|环境变量
linux·运维·服务器
yunfanleo2 小时前
docker run m3e 配置网络,自动重启,GPU等 配置渠道要点
linux·运维·docker
糖豆豆今天也要努力鸭2 小时前
torch.__version__的torch版本和conda list的torch版本不一致
linux·pytorch·python·深度学习·conda·torch
烦躁的大鼻嘎2 小时前
【Linux】深入理解GCC/G++编译流程及库文件管理
linux·运维·服务器
ac.char2 小时前
在 Ubuntu 上安装 Yarn 环境
linux·运维·服务器·ubuntu
敲上瘾2 小时前
操作系统的理解
linux·运维·服务器·c++·大模型·操作系统·aigc