ffmpeg命令详解

news2024/11/28 7:57:20

原文网址: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/protocol
    See 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 methods

Global 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        disposition

Video 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 data

Audio 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 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

细节文档

命令

说明

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.coloradmin.cn/o/2248923.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

stable Diffusion官方模型下载

v2-1_768-ema-pruned.safetensors 下载地址: https://huggingface.co/stabilityai/stable-diffusion-2-1/tree/main 下载完成后,放到:E:\AITOOLS\stable-diffusion-webui\models\Stable-diffusion 模型:sd_xl_base_1.0.safetens…

《并查集算法详解及实用模板》

《重生我要成为并查集高手🍔🍔🍔》 并查集:快速查询和快速合并, 路径压缩, 按大小,高度,秩合并。 静态数组实现 😇前言 在数据的海洋中,有一种悄然流淌的力量…

群聊前选择患者功能的实现

和普通群聊不同,开启一个图文会话聊天,必须先选择患者、团队、医生。 原来是集成到腾讯IM当中,现在需要单独写一个页面 原来的代码在这里: const handleShow () > {uni.navigateTo({url: /pageB/active-home/active-home})}…

基于边缘智能网关的机房安全监测应用

随着我国工业互联网的扎实推进,越来越多地区积极建设信息基础设施,以充沛算力支撑产业物联网的可持续发展,数据机房就是其中的典型代表。而且随着机房规模的扩大,对于机房的安全管理难题挑战也日益增加。 面向数据机房安全监测与管…

unity 使用UI上的数字按钮,给text添加数字,并且显示光标,删除光标前数字,

今天有个需求,输入身份证,但是不用键盘,要点击按钮输入数字,并且可以控制光标, 1、数字按钮:点击后text添加数字内容 2、删除按钮:删除光标前的一个字符 3、左箭头:移动光标向左移动…

C++设计模式(单例模式)

一、介绍 1.动机 在软件系统中,经常有这样一些特殊的类,必须保证它们在系统中只存在一个实例,才能确保它们的逻辑正确性、以及良好的效率。 如何绕过常规的构造器,提供一种机制来保证一个类只有一个实例? 这应该是类设计者的…

Could not locate device support files.

报错信息:Failure Reason: The device may be running a version of iOS (13.6.1 17G80) that is not supported by this version of Xcode.[missing string: 869a8e318f07f3e2f42e11d435502286094f76de] 问题:xcode15升级到xcode16之后,13.…

【Webgl_glslThreejs】制作流水效果/毛玻璃效果材质

效果预览 shadertory源码 source: https://www.shadertoy.com/view/lldyDs 材质代码 import { DoubleSide, ShaderChunk, ShaderMaterial, TextureLoader } from "three"; /** * * source https://www.shadertoy.com/view/lldyDs */export default fu…

海康VsionMaster学习笔记(学习工具+思路)

一、前言 VisionMaster算法平台集成机器视觉多种算法组件,适用多种应用场景,可快速组合算法,实现对工件或被测物的查找测量与缺陷检测等。VM算法平台依托海康威视在图像领域多年的技术积淀,自带强大的视觉分析工具库,可…

XML JSON

XML 与 JSON 结构 XML(eXtensible Markup Language) 1. 定义 XML 是一种标记语言,用于描述数据的结构和内容。主要用于数据存储与交换。 2. 特点 可扩展性:用户可以自定义标签。层次化结构:数据以树形结构组织&…

[VSCode] vscode下载安装及安装中文插件详解(附下载文件)

前言 vscode 链接:https://pan.quark.cn/s/3acbb8aed758 提取码:dSyt VSCode 是一款由微软开发且跨平台的免费源代码编辑器;该软件支持语法高亮、代码自动补全、代码重构、查看定义功能,并且内置了命令行工具和Git版本控制系统。 …

wireshark基础

免责声明: 笔记的只是方便各位师傅学习知识,以下代码、网站只涉及学习内容,其他的都与本人无关,切莫逾越法律红线,否则后果自负。 泷羽sec官网:https://longyusec.com/ 泷羽sec B站地址:https:/…

李宏毅LLM探索(1)

1引入 1.1 提问:请列出你能做的事情,至少三十项,每一项都简单扼要:然后把你能做的事情制成文字云 文心一言生成: 以下是我能做的至少三十项事情,每一项都简单扼要地列出:回答问题 提供信息 生成文本 理解…

磁盘文件系统问题排查

1. ext4磁盘结构 块组:超级块:块位图:inode位图:inode表:空闲inode表:空闲块表:2. 块组结构 Group 0: (Blocks 0-32767) csum 0xfd42 [ITABLE_ZEROED]Primary superblock at 0, Group descript…

百度雪花算法id默认配置过期注意更新配置

百度雪花id项目地址&#xff1a;GitHub - baidu/uid-generator: UniqueID generator 默认配置根据redme看容易看迷糊&#xff0c;图和配置它压根就不是对应的 默认的配置如下 <!-- Specified bits & epoch as your demand. No specified the default value will be us…

(11)(2.2) BLHeli32 and BLHeli_S ESCs(二)

文章目录 前言 1 传递支持 前言 BLHeli 固件和配置应用程序的开发是为了允许配置 ESC 并提供额外功能。带有此固件的 ESC 允许配置定时、电机方向、LED、电机驱动频率等。在尝试使用 BLHeli 之前&#xff0c;请按照 DShot 设置说明进行操作(DShot setup instructions)。 1 传…

【初阶数据结构和算法】初识树与二叉树的概念以及堆和完全二叉树之间的关系

文章目录 一、树的概念与结构1.树的概念2.树的相关术语3.树的表示4.树形结构实际运用举例 二、二叉树的概念及特殊二叉树1.二叉树的概念2.特殊的二叉树满二叉树完全二叉树二叉树的性质(由满二叉树特点推导) 三、二叉树的存储结构1.二叉树的顺序结构2.二叉树的链式结构 四、堆和…

如何在Canvas中添加背景图片、图片元素和文字元素

Canvas是HTML5中一个强大的元素&#xff0c;它允许我们在网页上进行图形绘制。在本文中&#xff0c;我们将学习如何在Canvas中添加背景图片、图片元素以及文字元素。 创建Canvas元素 首先&#xff0c;我们需要在HTML文档中创建一个<canvas>元素。以下是创建一个500x500像…

单点登录深入详解之设计方案总结

基于cookie的单点登录解决方案 概述 用户登录之后 , 将认证信息存储至 Cookie &#xff0c;当再次访问本服务或者访问其他应用服务时&#xff0c;直接从 Cookie 中传递认证信息&#xff0c;进行鉴权处理。 问题 1. 如何保障Cookie内用户认证信息的安全性? 第一, Cookie…

深入探讨 Redis 持久化机制:原理、配置与优化策略

文章目录 一、引言二、Redis持久化概述三、RDB&#xff08;Redis DataBase&#xff09;持久化1、RDB概念与工作原理2、RDB的配置选项3、RDB优化配置项4、RDB的优势与劣势 三、AOF&#xff08;Append-Only File&#xff09;持久化1、AOF概念与工作原理2、AOF的三种写回策略3、Re…