ffmpeg命令详解

ops/2024/11/28 22:16:29/

原文网址:ffmpeg命令详解_IT利刃出鞘的博客-CSDN博客

简介

本文介绍ffmpeg命令的用法。

命令示例

1.mp4和avi的基本互转

ffmpeg -i D:\input.mp4 E:\output.avi
ffmpeg -i D:\input.avi E:\output.mp4

-i 表示input,即输入。后面填一个输入地址和一个输出地址,这种方式没有指定任何参数和解码器,都用默认,会发现转换得到的文件压缩严重,avi文件只有200kbps的码率。

2.mp4和avi的无损互转

mp4转换avi

ffmpeg -i D:\input.mp4 -qscale 0 E:\output.avi
或者
ffmpeg -i D:\input.mp4 -c copy E:\output.avi

这里更推荐第一种方式,-qscale表示质量控制,0表示0损失,现在的ffmpeg已经采用qsacle取代了原来的sameq方式。

第二种方式 -c copy表明会把原视频的所有流一模一样的复制,即不进行解码和重新编码,这种情况下得到的avi文件需要额外的解码器如potplayer才能打开,win10自带的是不行的。

注:-c copy包含了-c:v copy(视频流),-c:a copy(音频流)等所有流。另外其他写法如-vcodec -codec:v与-c:v copy是同义的,其余以此类推。

avi转mp4

ffmpeg -i D:\input.mp4 -c:v copy -c:a copy E:\output.avi -y

-y表示不用确认覆盖文件,如果有重名的文件一般会在命令行向用户确认。

mp4转avi就直接copy就可以了,win10自带也能播。

3.截取视频片段

ffmpeg -i input.avi -c:v copy -c:a copy -ss 00:00:00 -to 00:00:30 cutout.avi -y

这是截取30s的,和前面一样,如果只是截取视频片段就不要重新编码了,一个-c copy搞定。
-ss后面跟的是时间位置,开始时间 -to 结束时间。

4.批量截取视频图片

for /R %v IN (*.avi) do ( ffmpeg -i %v -r 1 -f image2 %v%d.jpeg)

假设一个视频文件夹里有很多avi文件,我想每一个avi文件都间隔一帧截图,就是这条语句了。for…IN…do是命令行的循环格式。%v是文件名,%d是自动递增的数字名。-r定义的是间隔多少帧截图一次。

5.把大量图片组合成视频

ffmpeg -f image2 -framerate 30 -i %d.jpg xxx.avi

-framerate设定帧数,这里设成了30,也就是一秒30张图片,%d表示从1开始的图片,这里推荐大家一个软件renamer,免费版的就足够使用了,可以快速批量重命名文件,不用每次写重命名代码了。

命令详解

用法

ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

  1. options 全局参数
  2. infile options 输入文件参数
  3. infile 输入文件
  4. outfile options 输出文件参数
  5. outfile 输出文件

全局选项

参数

说明

-loglevel loglevel

设置日志登记,具体用法可以通过man ffmpeg查看,例如ffmpeg -loglevel verbose -i 1080p.mp4,可选:quiet panic fatal error warning info verbose debug trace

-v loglevel

设置日志登记,具体用法可以通过man ffmpeg查看,例如ffmpeg -v verbose -i 1080p.mp4,可选:quiet panic fatal error warning info verbose debug trace

-report

生成一个报告,报告的名字是ffmpeg自动生成的,例如ffmpeg -report -i 1080p.mp4,想要自定义文件以及日志等级可以使用宏FFREPORT,例如FFREPORT=file=ffreport.log:level=32 ffmpeg -i 1080p.mp4

-max_alloc bytes

设置通过ffmpeg的malloc函数系列设置在堆上分配块的最大大小限制。嵌入式设备可能会用到这个选项

-y

覆盖输出文件

-n

切勿覆盖输出文件

-ignore_unknown

忽略未知的流类型

-filter_threads

定义用于处理过滤器管道的线程数。每个管道将生成一个线程池,其中包含许多可用于并行处理的线程。默认是可用CPU的数量

-filter_complex_threads

定义用于处理filter_complex图的线程数。类似于filter_threads但仅用于-filter_complex图形。默认值为可用 CPU 的数量

-stats

编码期间打印进度报告

-max_error_rate maximum

在所有输入中设置解码帧失败的比例,当超过时ffmpeg将返回退出代码69。超过此阈值不会终止处理。值的范围是0到1之间的浮点数。默认值为2/3

-bits_per_raw_sample number

设置每个原始样本的位数

-vol volume

改变音量 ,volume默认值是256,也就是它把音量分为256等分,例如要把音量放大为原来的两倍(2562):ffmpeg -vol 512 -y -i bugua.mp3 output.mp3

输入输出选项

选项

说明

例子

-f fmt

force format

设置输入容器是mp4 ffmpeg -i bugua.mp3 -f mp4 output.m4a

-c codec

codec name

设置输入编码格式是ac3 ffmpeg -y -i bugua.mp3 -c ac3 output.m4a

-codec codec

codec name

设置输入编码格式是ac3 ffmpeg -y -i bugua.mp3 -codec ac3 output.m4a

-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

设置只录制前50秒 ffmpeg -i bugua.mp3 -t 50 output.mp3

-to time_stop

record or transcode stop time

设置只录制前50秒 ffmpeg -i bugua.mp3 -t 50 output.mp3

-fs limit_size

set the limit file size in bytes

设置输出文件大小限制在0.1MB ffmpeg -y -i bugua.mp3 -fs 0.1MB output.mp3

-ss time_off

set the start time offset

设置从第50秒开始录制 fmpeg -ss 50 -y -i bugua.mp3 output.mp3

-sseof time_off

set the start time offset relative to EOF

设置从倒数第50秒开始录制 ffmpeg -sseof -50 -y -i bugua.mp3 output.mp3

-seek_timestamp

此选项使用-ss选项在输入文件中启用或禁用按时间戳搜索。默认情况下它是禁用的。如果启用,则-ss选项的参数被视为实际时间戳,并且不会被文件的开始时间偏移。这仅适用于不从时间戳 0 开始的文件,例如传输流

-

-timestamp time

在容器中设置录制时间戳

-metadata string=string

设置修改容器这一层的metadata

设置标题 ffmpeg -i in.avi -metadata title=“my title” out.flv

-program title=string:st=number…

添加或者修改program的Metadata

设置program标题 ffmpeg -y -i 1080p.mp4 -program title=“XXXXXX”:st=1 -c copy output.mp4

-target type

指定目标文件类型 (“vcd”, “svcd”, “dvd”, “dv” or “dv50” with optional prefixes “pal-”, “ntsc-” or “film-”)

ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg

-apad

音频填充(追加)

在音频文件的最后追加10秒静音 ffmpeg -y -i bugua.mp3 -af “apad=pad_dur=10” output.mp3

-frames number

设置要输出的帧数

只写入200帧 ffmpeg -i 1080p.mp4 -frames 200 -c copy output.mp4

-filter filter_graph

设置简单的filter(不对音视频内容进行任何处理的filter)

把视频帧的PTS设置为原来的0.5倍 ffmpeg -y -i 1080p.mp4 -filter:v “setpts=0.5PTS” output.mp4

-filter_script filename

read stream filtergraph description from a file

-

-reinit_filter

reinit filtergraph on input parameter changes

-

-discard

允许从流中丢弃特定的流或帧。使用值all会丢弃所有的流,在解复用时从流中选择要丢弃的帧,并非所有解复用器都支持

去掉视频中的音频 ffmpeg -y -discard:a all -i 1080p.mp4 -c copy output.mp4

-disposition

设定特定的流作为默认流

使第二个音频流成为默认流 ffmpeg -i in.mkv -c copy -disposition:a:1 default out.mkv

视频选项

选项

说明

例子

-vframes number

set the number of video frames to output

输出200帧 ffmpeg -y -i 1080p.mp4 -vframes 200 output.mp4

-r rate

set frame rate (Hz value, fraction or abbreviation)

设置输出帧率为10帧 ffmpeg -y -i 1080p.mp4 -r 10 -vframes 500 output.mp4

-fpsmax rate

set max frame rate (Hz value, fraction or abbreviation)

设置最大帧率为15帧 ffmpeg -y -i 1080p.mp4 -fpsmax 15 -vframes 500 output.mp4

-s size

set frame size (WxH or abbreviation)

把视频裁剪为640x480 ffmpeg -y -i 1080p.mp4 -s 640x480 -vframes 500 output.mp4

-aspect aspect

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

视频比例改为4:3 ffmpeg -y -i 1080p.mp4 -aspect 4:3 -vframes 500 output.mp4

-bits_per_raw_sample number

set the number of bits per raw sample

-

-vn

disable video

只输出音频 ffmpeg -y -i 1080p.mp4 -vn -c copy output.mp4

-vcodec codec

force video codec (‘copy’ to copy stream)

设置输出编码器为libx265 ffmpeg -y -i 1080p.mp4 -vframes 500 -vcodec libx265 output.mp4

-timecode hh:mm:ss[:;.]ff

set initial TimeCode value.

-

-pass n

select the pass number (1 to 3)

-

-vf filter_graph

set video filters

逆时针旋转 ffmpeg -y -i 1080p.mp4 -vframes 300 -vf “transpose=2” output.mp4

-ab bitrate

audio bitrate (please use -b:a)

设置音频输出码率为56k ffmpeg -y -i 1080p.mp4 -ab 56k -vn output.mp4

-b bitrate

video bitrate (please use -b:v)

设置视频输出码率为256k ffmpeg -y -i 1080p.mp4 -b 256k -an output.mp4

-dn

disable data

-

音频选项

选项

说明

例子

-aframes number

set the number of audio frames to output

只写入1000帧音频数据 ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 output.mp4

-aq quality

set audio quality (不同的编码器使用不同的数字表示不同的码率)

这里以MP3为例,把码率设置为245kbps左右 ffmpeg -y -i bugua.mp3 -aq -0 output.mp3

-ar rate

set audio sampling rate (in Hz)

重采样为16k ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 -ar 16000 output.mp4

-ac channels

set number of audio channels

改为双声道 ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 -ac 2 output.mp4

-an

disable audio

只输出视频 ffmpeg -y -i 1080p.mp4 -an -c copy output.mp4

-acodec codec

force audio codec (‘copy’ to copy stream)

强制使用ac3编码器 ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 -acodec ac3 output.mp4

-vol volume

change audio volume (256=normal)

把声音调为原来的2倍 ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 -vol 512 output.mp4

-af filter_graph

set audio filters

写入音频之前先进行afade处理 ffmpeg -y -i 1080p.mp4 -vn -aframes 1000 -af afade output.mp4

副标题选项

选项

说明

例子

-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

-

查看帮助文档

简单文档

可以用此命令查看详解:

ffmpeg --help

结果: 

Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...Getting help:-h      -- print basic options-h long -- print more options-h full -- print all options (including all format and codec specific options, very long)-h type=name -- print all options for the named decoder/encoder/demuxer/muxer/filter/bsf/protocolSee man ffmpeg for detailed description of the options.Print help / information / capabilities:
-L                  show license
-h topic            show help
-? topic            show help
-help topic         show help
--help topic        show help
-version            show version
-buildconf          show build configuration
-formats            show available formats
-muxers             show available muxers
-demuxers           show available demuxers
-devices            show available devices
-codecs             show available codecs
-decoders           show available decoders
-encoders           show available encoders
-bsfs               show available bit stream filters
-protocols          show available protocols
-filters            show available filters
-pix_fmts           show available pixel formats
-layouts            show standard channel layouts
-sample_fmts        show available audio sample formats
-dispositions       show available stream dispositions
-colors             show available color names
-sources device     list sources of the input device
-sinks device       list sinks of the output device
-hwaccels           show available HW acceleration methodsGlobal options (affect whole program instead of just one file):
-loglevel loglevel  set logging level
-v loglevel         set logging level
-report             generate a report
-max_alloc bytes    set maximum size of a single allocated block
-y                  overwrite output files
-n                  never overwrite output files
-ignore_unknown     Ignore unknown stream types
-filter_threads     number of non-complex filter threads
-filter_complex_threads  number of threads for -filter_complex
-stats              print progress report during encoding
-max_error_rate maximum error rate  ratio of decoding errors (0.0: no errors, 1.0: 100% errors) above which ffmpeg returns an error instead of success.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
-sseof time_off     set the start time offset relative to EOF
-seek_timestamp     enable/disable seeking by timestamp with -ss
-timestamp time     set the recording timestamp ('now' to set the current time)
-metadata string=string  add metadata
-program title=string:st=number...  add program with specified streams
-target type        specify target file type ("vcd", "svcd", "dvd", "dv" or "dv50" with optional prefixes "pal-", "ntsc-" or "film-")
-apad               audio pad
-frames number      set the number of frames to output
-filter filter_graph  set stream filtergraph
-filter_script filename  read stream filtergraph description from a file
-reinit_filter      reinit filtergraph on input parameter changes
-discard            discard
-disposition        dispositionVideo options:
-vframes number     set the number of video frames to output
-r rate             set frame rate (Hz value, fraction or abbreviation)
-fpsmax rate        set max 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)
-display_rotation angle  set pure counter-clockwise rotation in degrees for stream(s)
-display_hflip      set display horizontal flip for stream(s) (overrides any display rotation if it is not set)
-display_vflip      set display vertical flip for stream(s) (overrides any display rotation if it is not set)
-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 dataAudio options:
-aframes number     set the number of audio frames to output
-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)
-ab bitrate         audio bitrate (please use -b:a)
-af filter_graph    set audio filtersSubtitle 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

细节文档

命令

说明

ffmpeg -L

显示License

ffmpeg -version

显示当前版本

ffmpeg help -buildconf

显示编译此ffmpeg的configuration

ffmpeg help -formats

显示支持的文件格式,同时显示muxers和demuxers

ffmpeg help -muxers

显示支持的muxers格式

ffmpeg help -demuxers

显示支持的demuxers格式

ffmpeg help -devices

显示支持的设备,包括音视频设备

ffmpeg help -codecs

显示支持的格式,同时显示视频、音频、字幕、帧内编码、有损压缩和无损压缩的解编码支持情况

ffmpeg help -decoders

显示支持的解码器

ffmpeg help -encoders

显示支持的编码器

ffmpeg help -bsfs

显示支持的二进制流过滤器,例如h264_metadata、h264_mp4toannexb、hevc_mp4toannexb等

ffmpeg help -protocols

显示支持的可用的协议,区分Input和Output,例如file、http、hls、rtmp、rtp、pipe、tee等

ffmpeg help -filters

显示支持的可用的过滤器

ffmpeg help -pix_fmts

显示支持的可用的像素格式

ffmpeg help -layouts

显示支持的声道布局,例如mono、stereo、2.1、2.0、3.0、5.0、5.1等

ffmpeg help -sample_fmts

显示支持的音频采样格式,例如u8、s16、s32、flt等

ffmpeg help -colors

显示支持的颜色

ffmpeg help -sources device

列出输入设备的源

ffmpeg help -sinks device

列出输出设备的槽(节点)

ffmpeg help -hwaccels

显示可用的硬件加速方法


http://www.ppmy.cn/ops/137488.html

相关文章

thinkphp中对请求封装

请求的封装 //调用 $res Http::post($this->baseUrl . $url,$params,[CURLOPT_HTTPHEADER > [Content-Type: application/json,Content-Length: . strlen($params),],]);<?php namespace fast; /*** 字符串类*/ class Http {/*** 发送一个POST请求*/public static …

Leetcode - 144双周赛

目录 一&#xff0c;3360. 移除石头游戏 二&#xff0c;3361. 两个字符串的切换距离 三&#xff0c;3362. 零数组变换 III 四&#xff0c;3363. 最多可收集的水果数目 一&#xff0c;3360. 移除石头游戏 本题直接模拟过程&#xff0c;可以额外使用一个布尔变量标记谁赢&…

【探商宝】大数据获客平台在销售型企业中的应用

在当今竞争激烈的商业环境中&#xff0c;销售型企业越来越依赖于大数据技术来获取潜在客户和优化销售策略。以下是大数据获客平台在销售型企业中的应用的几个关键方面&#xff1a; 全面的数据整合能力&#xff1a; 大数据获客平台能够整合来自多个渠道和平台的企业数据&#xf…

Unity图形学之BRDF双向反射分布函数

1.描述了入射光线在非透明物体表面如何进行反射&#xff0c;也就是说多少光发生了漫反射&#xff0c;多少光发生了镜面反射 BRDF 函数计算的是“特定反射方向的光强与入射光强的比例” 2.各向异性 与 均向性 相反&#xff0c;是指在不同方向具有不同行为的性质&#xff0c;也就…

小程序-基于java+SpringBoot+Vue的网上花店微信小程序设计与实现

项目运行 1.运行环境&#xff1a;最好是java jdk 1.8&#xff0c;我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境&#xff1a;IDEA&#xff0c;Eclipse,Myeclipse都可以。推荐IDEA; 3.tomcat环境&#xff1a;Tomcat 7.x,8.x,9.x版本均可 4.硬件环境&#xff1a…

Leetcode(双指针习题思路总结,持续更新。。。)

讲解题目&#xff1a;两数之和 给定一个已按照 升序排列 的整数数组 numbers &#xff0c;请你从数组中找出两个数满足相加之和等于目标数 target 。函数应该以长度为 2 的整数数组的形式返回这两个数的下标值。numbers 的下标 从 0 开始计数 &#xff0c;所以答案数组应当满…

各种排序算法

前置知识 排序: 按照递增或者递减的顺序把数据排列好 稳定性: 值相等的元素在排序之后前后顺序是否发生了改变 内部排序: 数据放在内存上 外部排序: 数据放在磁盘上 内部排序 基于比较的排序 几大排序算法 1. 堆排序 特点: 思想: 1. 创建大根堆,把所有元素放在大根堆里…

Git旧文件覆盖引发思考

一天&#xff0c;我的同事过来找到我&#xff0c;和我讲&#xff1a;张叫兽&#xff0c;大事不好&#xff0c;我的文件被人覆盖了。git是真的不好用啊 git不好用&#xff1f;文件被覆盖&#xff1b;瞬间我似乎知道了什么&#xff0c;让我想到了某位男明星的语法&#xff1a;他…