ffmpeg常用命令

1)常用命令

1、最简单转换命令

ffmpeg -i input.mp4 output.mkv

2、更加精准的控制转换命令

ffmpeg -i input.mp4 -c:v vp9 -c:a libvorbis output.mkv

(-c:v 控制视频格式, -c:a 控制音频格式)

3、调节比特率

ffmpeg -i GVG-981.mp4 -c:v libx264 -b:v 2M -maxrate 2M -bufsize 1M GVG-981-out.mp4

ffmpeg -i input.webm -c:a copy -c:v vp9 -b:v 1M output.mkv

(-b:v 1M 代表着视频的比特率变成1Mb

This will copy the audio (-c:a copy) from input.webm and convert the video to a VP9 codec (-c:v vp9) with a bit rate of 1M/s (-b:v), all bundled up in a Matroska container (output.mkv).)

4、调节帧率

ffmpeg -i 002.mp4 -filter:v fps=fps=29.97 002-out.mp4

ffmpeg -i input.webm -c:a copy -c:v vp9 -r 30 output.mkv

(This creates a new Matroska with the audio stream copied over and the video stream's frame rate forced to 30 frames per second, instead of using the frame rate from the input (-r 30).)

5、调节视频尺寸(分辨率)

ffmpeg -i FC2PPV-402422-1.mp4 -c:a copy -s 854x480 FC2PPV-402422-1-out.mp4

ffmpeg -i input.mkv -c:a copy -s 1280x720 output.mkv

(声音原封不动拷贝过去,视频编码格式不变,只是尺寸调整到1280x720)

6、截取部分视频(时长)

ffmpeg -i input.mkv -c:a copy -c:v copy -ss 00:01:00 -t 10 output.mkv

(音视频格式不变, 从00:01:00开始拷贝10s过去)

7、 提取关键帧

ffmpeg -skip_frame nokey -i 480P_2000K_204282351.mp4 -vsync 0 -r 30 -f image2 480P_2000K_204282351%02d.png

8,使用 ffmpeg 命令将 raw.mp4 的音频替换为 out.wav 的音频

ffmpeg -i raw.mp4 -i out.wav -map 0:v -map 1:a -c:v copy -c:a copy replaced_audio.mp4

8、对视频进行帧提取

您可以使用以下命令将视频分解成图片序列:

ffmpeg -i input.mp4 -vf fps=1 frame_%04d.png

这条命令将 input.mp4 视频分解成图片序列,每秒保存一帧。输出的文件名为 frame_0001.png、frame_0002.png 等。您可以根据需要更改输入文件名、帧率和输出文件名模式。

ffmpeg -i .\input.mp4 -vf 'select=gte(n,1),setpts=PTS-STARTPTS' 'input/%05d.png'

ffmpeg -i .\input.mp4 -vf 'select=gte(n,1),setpts=0.5*PTS' 'input/%05d.png'

ffmpeg -i .\input.mp4 -vf 'select=between(n,{START_FRAME},{END_FRAME}),setpts=0.5*PTS' 'input/%05d.png'

setpts的具体参数含义如下:

复制代码
Start counting PTS from zero

setpts=PTS-STARTPTS

Apply fast motion effect:

setpts=0.5*PTS

Apply slow motion effect:

setpts=2.0*PTS

Set fixed rate of 25 frames per second:

setpts=N/(25*TB)

Set fixed rate 25 fps with some jitter:

setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'

Apply an offset of 10 seconds to the input PTS:

setpts=PTS+10/TB

Generate timestamps from a "live source" and rebase onto the current timebase:

setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'

Generate timestamps by counting samples:

asetpts=N/SR/TB

9、从png序列生成视频文件

ffmpeg -y -r {TARGET_FPS} -f image2 -pattern_type glob -i '*.png' '/content/gdrive/My Drive/{OUTPUT_FILE_PATH}'

2)命令基本语法

注意:这里面的非方括号部分(蓝字)都是必须得有的。

全局选项:

Global options (affect whole program instead of just one file:

-loglevel loglevel set libav* logging level

-v loglevel set libav* logging level

-report generate a report

-max_alloc bytes set maximum size of a single allocated block

-y overwrite output files

-n do not overwrite output files

-stats print progress report during encoding

-bits_per_raw_sample number set the number of bits per raw sample

-vol volume change audio volume (256=normal)

输入输出选项:

Per-file main options:

-f fmt force format

-c codec codec name

-codec codec codec name

-pre preset preset name

-map_metadata outfile,metadata:infile,metadata set metadata information of outfile from infile

-t duration record or transcode "duration" seconds of audio/video

-to time_stop record or transcode stop time

-fs limit_size set the limit file size in bytes

-ss time_off set the start time offset

-timestamp time set the recording timestamp ('now' to set the current time)

-metadata string=string add metadata

-target type specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd", "ntsc-svcd", ...)

-frames number set the number of frames to record

-filter filter_graph set stream filtergraph

-reinit_filter reinit filtergraph on input parameter changes

Video options:

-vframes number set the number of video frames to record

-r rate set frame rate (Hz value, fraction or abbreviation)

-s size set frame size (WxH or abbreviation)

-aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)

-bits_per_raw_sample number set the number of bits per raw sample

-vn disable video

-vcodec codec force video codec ('copy' to copy stream)

-timecode hh:mm:ss:;.ff set initial TimeCode value.

-pass n select the pass number (1 to 3)

-vf filter_graph set video filters

-b bitrate video bitrate (please use -b:v)

-dn disable data

Audio options:

-aframes number set the number of audio frames to record

-aq quality set audio quality (codec-specific)

-ar rate set audio sampling rate (in Hz)

-ac channels set number of audio channels

-an disable audio

-acodec codec force audio codec ('copy' to copy stream)

-vol volume change audio volume (256=normal)

-af filter_graph set audio filters

Subtitle options:

-s size set frame size (WxH or abbreviation)

-sn disable subtitle

-scodec codec force subtitle codec ('copy' to copy stream)

-stag fourcc/tag force subtitle tag/fourcc

-fix_sub_duration fix subtitles duration

-canvas_size size set canvas size (WxH or abbreviation)

-spre preset set the subtitle options to the indicated preset

相关推荐
小鹿研究点东西20 小时前
直播带货长视频AI自动剪辑开播:一场直播如何反复利用?
ffmpeg·自动化·音视频·语音识别
luoyayun3611 天前
Qt + FFmpeg 实战:获取音视频文件基础属性、流信息和元数据
qt·ffmpeg·音视频·元数据·获取音视频文件属性
Rudon滨海渔村1 天前
ffmpeg裁剪视频黑屏、不准时等处理方式 - ffmpeg基本操作
ffmpeg·音视频
The Sheep 20232 天前
ffmpeg速成
ffmpeg
街灯L2 天前
【Ubuntu】使用ffmpeg解析m3u8网页视频
ubuntu·ffmpeg·音视频
烟雨江南7853 天前
特高压输电线路带电作业直升机吊篮与强电磁感应放电:基于“灵声智库”空间自适应滤波与声纹授权的离线语音控制指令方案
人工智能·ffmpeg·webrtc·语音识别·ai质检
AJi3 天前
H264码率控制
ffmpeg
换个昵称都难4 天前
webrtc voice engine 介绍(新版webrtc)
ffmpeg·音视频·webrtc
小鹿软件办公5 天前
巧用 Adobe Audition 中置声道提取,轻松分离人声与背景音乐
adobe·ffmpeg·简鹿人声分离
2023自学中7 天前
imx6ull开发板 移植 ffmpeg 4.2.11 + x264 视频编码库
linux·ffmpeg·音视频·嵌入式·开发板