ffmpeg超级方便命令行
ffmpeg超级方便命令行
ffmpeg命令
通用参数
参数 | 功能 |
---|---|
-i | 输入 |
-f | 设置输出格式 mp4 avi mkv image2 ... |
-ss | 开始时间 |
-t | 时长,秒 -t 60 |
-y | 覆盖 |
视频参数
参数 | 功能 |
---|---|
-vframes | 设置输出视频帧数 |
-b | 设置视频码率,-b 400k,视频内音频也同时重新编码 |
-b:v | 设置视频码率,-b:v 400k 只对视频编码,音频不变 |
-r | 设置帧速率 |
-s | 设置画面的宽高,-s 1280x920 |
-vn | 不处理视频 |
-aspect aspect | 设置横纵比,4:3,16:9,或1.3333,1.7777 |
-vcodec | 设置视频编解码器,libx264,如果设置copy表示原始编码数据必须被拷贝,(decoders: h264/h264_crystalhd/h264_v4l2m2m/h264_vdpau/h264_cuvid) ,(encoders: libx264(CPU软件编码)/libx264rgb(编码RGB颜色空间的视频)/h264_nvenc(NVIDIA 硬件编码)/h264_omx(嵌入式和移动设备上OpenMAX接口硬件编码)/h264_v4l2m2m(V4L2 M2M接口硬件编码)/h264_vaapi(VA-API接口硬件编码)/nvenc(nvenc_h264等效指的同一个)) |
-vf | 视频过滤器 |
音频参数
参数 | 功能 |
---|---|
-aframes | 设置输出音频帧数 |
-b:a | 设置音频码率 |
-ar | 设置采样率,单位:Hz,取值:0 ~ INT_MAX,默认值:0 |
-ac | 设置音频的通道数,取值:0 ~ INT_MAX,默认值:0 |
-acodec | 设置音频编解码器,libmp3lame,如果设置为copy,表示原始编解码数据必须被拷贝 |
-an | 不处理音频 |
-af | 音频过滤器 |
录制视频
保留编码格式
ffmpeg -y -i rtsp://xxx@xxx.xxx.xxx.xxx -vcodec copy -t 20 -f mp4 test.mp4
提取视频
保留编码格式
ffmpeg -i test.mp4 -vcodec copy -an test_copy.h264
强转编码格式
ffmpeg -i test.mp4 -vcodec libx264 -an test.h264
提取YUV
提取3秒数据,分辨率和源视频一致
ffmpeg -i test_1280x720.mp4 -t 3 -pix_fmt yuv420p yuv420p_orig.yuv
提取3秒数据,分辨率转为320x240
ffmpeg -i test_1280x720.mp4 -t 3 -pix_fmt yuv420p -s 320x240 yuv420p_320x240.yuv
提取RGB
提取3秒数据,分辨率为320x240
ffmpeg -i test.mp4 -t 3 -pix_fmt rgb24 -s 320x240 rgb24_320x240.rgb
RGB和YUV之间的转换
ffmpeg -s 320x240 -pix_fmt yuv420p -i yuv420p_320x240.yuv -pix_fmt rgb24 rgb24_320x240_2.rgb
修改视频的编码格式
将视频转成视频编码格式h265
,音频编码格式转成mp3
ffmpeg -i test.mp4 -vcodec libx265 -acodec libmp3lame out_h265_mp3.mkv
修改视频帧率
ffmpeg -i test.mp4 -r 15 output2.mp4
修改视频码率
ffmpeg -i test.mp4 -b 400k output_b.mkv #(此时音频也被重新编码)
ffmpeg -i test.mp4 -b:v 400k output_bv.mkv #(此时仅视频被重新编码)
修改视频分辨率
ffmpeg -i test.mp4 -s 480x270 output_480x270.mp4
按时长裁剪视频
从00:05:00
开始裁剪10
秒
ffmpeg -i test.mp4 -ss 00:05:00 -t 10 -codec copy 1.mp4
视频格式转换
mp4
转换成ts
ffmpeg -i 1.mp4 -codec copy -vbsf h264_mp4toannexb 1.ts
mp4
转换成flv
ffmpeg -i 1.mp4 -codec copy 1.flv
注:分离某些封装格式(例如MP4/FLV/MKV
等)中的H.264
的时候,需要首先写入SPS
和PPS
,否则会导致分离出来的数据没有SPS、PPS而无法播放。 H.264
码流的SPS
和PPS
信息存储在AVCodecContext
结构体的extradata中。需要使用ffmpeg中名称为h264_mp4toannexb
的bitstream filter
处理。
视频拼接
拼接mp4格式(mp4list.txt保存视频名称列表)
ffmpeg -f concat -i mp4list.txt -codec copy out_mp42.mp4
拼接ts格式
#方法1
ffmpeg -i "concat:1.ts|2.ts|3.ts" -codec copy out_ts.mp4
#方法2
ffmpeg -f concat -i tslist.txt -codec copy out_ts2.mp4
tslist.txt
中存贮1.ts
,2.ts
,3.ts
文件名
拼接flv格式
ffmpeg -f concat -i flvlist.txt -codec copy out_flv2.mp4
注意事项:
- 把每个视频封装格式也统一为ts,拼接输出的时候再输出你需要的封装格式,比如MP4
- 视频分辨率可以不同,但是编码格式需要统一
- 音频编码格式需要统一,音频参数(采样率/声道等)也需要统一
视频截图
输入test.mp4
格式时image2
从00:00:02
开始,截取一张640x360
大小的jpg
图
ffmpeg -i test.mp4 -y -f image2 -ss 00:00:02 -vframes 1 -s 640x360 test.jpg
注:-vframes 帧 如果大于1 那么 输出加%03d test%03d.jpg
视频抽帧
每秒15帧,每帧都提取,提取5秒时长,输出分辨率640x360
的jpg图片
ffmpeg -i test.mp4 -t 5 -s 640x360 -r 15 frame%03d.jpg
图片合成视频
将所有符合这个格式的jpg图片合成帧速率25fps的MP4视频
ffmpeg -f image2 -i frame%03d.jpg -r 25 video.mp4
视频转成gif
ffmpeg -i test.mp4 -t 5 -r 25 -s 640x360 image.gif
gif转成视频
ffmpeg -f gif -i image.gif image.mp4
视频录制
视频录制需要安装dshow软件Screen Capturer Recorder。
下载网址:https://sourceforge.net/projects/screencapturer/files/
查看可用设备名字
获取摄像头名称等相关信息。
ffmpeg -list_devices true -f dshow -i dummy
录制视频(默认参数)
录制桌面
ffmpeg -f dshow -i video="screen-capture-recorder" v-out.mp4
从摄像头录制
ffmpeg -f dshow -i video="Integrated Webcam" -y v-out2.flv #("Integrated Webcam"为摄像头名称)
录制声音(默认参数)
录制系统声音
ffmpeg -f dshow -i audio="virtual-audio-capturer" a-out.aac
使用系统+麦克风录制声音
ffmpeg -f dshow -i audio="麦克风 (Realtek Audio)" -f dshow -i audio="virtual-audio-capturer" -filter_complex amix=inputs=2:duration=first:dropout_transition=2 a-out2.aac
同时录制视频和声音(默认参数)
ffmpeg -f dshow -i audio="麦克风 (Realtek Audio)" -f dshow -i audio="virtualaudio-capturer" -filter_complex amix=inputs=2:duration=first:dropout_transition=2 -f dshow -i video="screen-capture-recorder" -y av-out.flv
从视频提取音频
保留原编码格式
ffmpeg -i test.mp4 -acodec copy -vn test.aac
强转编码格式
ffmpeg -i test.mp4 -acodec libmp3lame -vn test.mp3
提取PCM
ffmpeg -i buweishui.mp3 -ar 48000 -ac 2 -f s16le 48000_2_s16le.pcm
ffmpeg -i buweishui.mp3 -ar 48000 -ac 2 -sample_fmt s16 out_s16.wav
ffmpeg -i buweishui.mp3 -ar 48000 -ac 2 -codec:a pcm_s16le out2_s16le.wav
ffmpeg -i buweishui.mp3 -ar 48000 -ac 2 -f f32le 48000_2_f32le.pcm
ffmpeg -i test.mp4 -t 10 -vn -ar 48000 -ac 2 -f f32le 48000_2_f32le_2.pcm
修改音频采样率
ffmpeg -i test.mp4 -ar 44100 output_44100hz.mp4
ffplay命令
播放指令
键盘指令 | 功能 |
---|---|
q/ESC | 退出播放 |
f | 全屏切换 |
p/SPC | 暂停/恢复 |
m | 静音切换 |
9,0 | 9:减少音量,0:增加音量 |
a | 循环切换音频流 |
v | 循环切换视频流 |
t | 循环切换字幕流 |
c | 循环切换节目 |
w | 循环切换过滤器或显示模式 |
s | 逐帧播放 |
left,right | 向前/向后拖动10秒 |
down,up | 向前/向后拖动60秒 |
鼠标右键单击 | 拖动与显示宽度对应百分比的文件进行播放 |
鼠标左键双击 | 全屏切换 |
播放本地文件
# 播放视频
ffplay -window_title "test time" -ss 2 -t 10 -autoexit test.mp4
# 播放音频
ffplay test.mp3
播放网络流
ffplay -window_title "rtmp stream" rtmp://202.69.69.180:443/webcast/bshdlive-pc
强制设置解码器播放
# mpeg4解码器
ffplay -vcodec mpeg4 test.mp4
# h264解码器
ffplay -vcodec h264 test.mp4
播放时禁用音频或视频
# 禁用音频
ffplay test.mp4 -an
# 禁用视频
ffplay test.mp4 -vn
播放YUV数据
ffplay -pixel_format yuv420p -video_size 320x240 -framerate 5 yuv420p_320x240.yuv
播放RGB数据
ffplay -pixel_format rgb24 -video_size 320x240 -framerate 5 -i rgb24_320x240.rgb
播放PCM数据
ffplay -ar 48000 -ac 2 -f f32le 48000_2_f32le.pcm
播放时视频旋转
# transpose取值:0~3
ffplay -i test.mp4 -vf transpose=1
播放时视频翻转
# 水平翻转
ffplay test.mp4 -vf hflip
# 垂直翻转
ffplay test.mp4 -vf vflip
播放时视频同时旋转和翻转
水平翻转加旋转
ffplay test.mp4 -vf hflip,transpose=1
播放时音频变速播放
ffplay -i test.mp4 -af atempo=2
播放时视频变速播放
ffplay -i test.mp4 -vf setpts=PTS/2
播放时视频音频同时变速
ffplay -i test.mp4 -vf setpts=PTS/2 -af atempo=2
播放选项设置
ffplay test.mp4 -bytes 0:按字节进行定位拖动(bytes取值: 0:off, 1:on, -1:auto)
ffplay test.mp4 -seek_interval 15:自定义左/右键定位拖动时间间隔(单位:秒,默认值10秒)
ffplay test.mp4 -nodisp:关闭图形化显示窗口,不显示视频
ffplay test.mp4 -noborder:显示无边框窗口
ffplay test.mp4 -volume 30:设置起始音量(音量范围:0~100)
ffplay test.mp4 -f s16le:强制使用设置的格式(比如s16le)进行解析
ffplay test.mp4 -window_title title:设置窗口标题(默认为输入文件名)
ffplay test.mp4 -loop 2:设置循环播放次数(比如这里为循环播放2次)
ffplay test.mp4 -showmode mode:设置显示模式,mode取值: 0视频,1音频波形,2 音频频谱。缺省为0,若视频不存在自动选择2
ffplay test.mp4 -vf filtergraph:设置视频滤镜
ffplay test.mp4 -af filtergraph:设置音频滤镜
ffplay test.mp4 -stats:打印回放统计信息,包括显示流持续时间,编解码器参数等。默认启用,显示禁用可以指定-nostats
ffplay test.mp4 -fast:非标准化规范的多媒体兼容优化
ffplay test.mp4 -genpts:生成pts
ffplay test.mp4 -sync type:同步类型,将主时钟设置为audio(type=audio),video或external。
ffplay test.mp4 -ast audio_stream_specifier:指定音频流索引,比如-ast 3,播放流索引为3的音频流
ffplay test.mp4 -vst video_stream_specifier:指定视频流索引,比如-vst 4,播放流索引为4的视频流
ffplay test.mp4 -sst subtitle_stream_specifier:指定字幕流索引,比如-sst 5,播放流索引为5的字幕流
ffplay test.mp4 -autoexit:视频播放完毕后退出
ffplay test.mp4 -exitonkeydown:键盘按下任何键退出播放
ffplay test.mp4 -exitonmousedown:鼠标按下任何键退出播放
ffplay test.mp4 -codec:media_specifier codec_name:强制使用设置的多媒体解码器,media_specifier可用值为a(音频),v(视频)和s字幕。比如-codec:v h264_qsv 强制视频采用h264_qsv解码
ffplay test.mp4 -acodec codec_name: 强制使用设置的音频解码器进行音频解码
ffplay test.mp4 -vcodec codec_name: 强制使用设置的视频解码器进行视频解码
ffplay test.mp4 -scodec codec_name: 强制使用设置的字幕解码器进行字幕解码
ffplay test.mp4 -autorotate: 根据文件元数据自动旋转视频。值为0或1 ,默认为1。
ffplay test.mp4 -framedrop: 如果视频不同步则丢弃视频帧。当主时钟非视频时钟时默认开启。若需禁用则使用 -noframedrop
ffplay test.mp4 -infbuf: 不限制输入缓冲区大小。尽可能快地从输入中读取尽可能多的数据。播放实时流时默认启用,如果未及时读取数据,则可能会丢弃数据。此选项将不限制缓冲区的大小。若需禁用则使用-noinfbuf