【FFmpeg】FFmpeg 幫助文檔使用

      網友投稿 802 2025-03-31

      FFmpeg 系列文章目錄

      【FFmpeg】Windows 搭建 FFmpeg 命令行運行環境

      【FFmpeg】FFmpeg 相關術語簡介

      【FFmpeg】FFmpeg 相關術語簡介 二

      文章目錄

      FFmpeg 系列文章目錄

      一、ffmpeg 命令幫助文檔

      1、FFmpeg 命令幫助基本信息

      2、FFmpeg 命令幫助高級信息

      3、FFmpeg 命令幫助完整信息

      二、ffplay 命令幫助文檔

      三、ffprobe 命令幫助文檔

      四、幫助命令查找技巧

      博客資源

      一、ffmpeg 命令幫助文檔

      查詢 ffmpeg 基本信息 :

      ffmpeg -h

      1

      查詢 ffmpeg 高級信息 :

      ffmpeg -h long

      1

      查詢 ffmpeg 所有信息 :

      ffmpeg -h full

      1

      三種幫助信息的關系 :

      所有信息 包含 高級信息 ,

      高級信息 包含 基本信息 ;

      1、FFmpeg 命令幫助基本信息

      將 ffmpeg 基本信息輸出到文件中 : 將信息輸出到文件中 , 使用 > 符號 , 后面跟上文件名稱 , 就會將信息輸出到該文件名對應的目錄中 ;

      ffmpeg -h > ffmpeg_h.txt

      1

      在 " D:\ffmpeg " 目錄下執行 上述命令 , 在該目錄下生成了 ffmpeg_h.txt 文件 ;

      ffmpeg_h.txt 文件中的輸出內容如下 :

      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 -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. -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 -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) -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 -ab bitrate audio bitrate (please use -b:a) -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) -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

      1

      2

      3

      4

      5

      6

      7

      8

      9

      10

      11

      12

      13

      14

      15

      16

      17

      18

      19

      20

      21

      22

      23

      24

      25

      26

      27

      28

      29

      30

      31

      32

      33

      34

      35

      36

      37

      38

      39

      40

      41

      42

      43

      44

      45

      46

      47

      48

      49

      50

      51

      52

      53

      54

      55

      56

      57

      58

      59

      60

      61

      62

      63

      64

      65

      66

      67

      68

      69

      70

      71

      72

      73

      74

      75

      76

      77

      78

      79

      80

      81

      82

      83

      84

      85

      86

      87

      88

      89

      90

      91

      92

      93

      94

      95

      96

      97

      98

      99

      100

      101

      102

      103

      104

      105

      106

      107

      108

      109

      2、FFmpeg 命令幫助高級信息

      將 FFmpeg 高級幫助信息導出到 ffmpeg_h_long.txt 文件中 ;

      ffmpeg -h long > ffmpeg_h_long.txt

      1

      輸出內容展示 :

      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 -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. -bits_per_raw_sample number set the number of bits per raw sample -vol volume change audio volume (256=normal) Advanced global options: -cpuflags flags force specific cpu flags -hide_banner hide_banner do not show program banner -copy_unknown Copy unknown stream types -benchmark add timings for benchmarking -benchmark_all add timings for each task -progress url write program-readable progress information -stdin enable or disable interaction on standard input -timelimit limit set max runtime in seconds in CPU user time -dump dump each input packet -hex when dumping packets, also dump the payload -vsync video sync method -frame_drop_threshold frame drop threshold -async audio sync method -adrift_threshold threshold audio drift threshold -copyts copy timestamps -start_at_zero shift input timestamps to start at 0 when using copyts -copytb mode copy input stream time base when stream copying -dts_delta_threshold threshold timestamp discontinuity delta threshold -dts_error_threshold threshold timestamp error delta threshold -xerror error exit on error -abort_on flags abort on the specified condition flags -filter_complex graph_description create a complex filtergraph -lavfi graph_description create a complex filtergraph -filter_complex_script filename read complex filtergraph description from a file -auto_conversion_filters enable automatic conversion filters globally -stats_period time set the period at which ffmpeg updates stats and -progress output -debug_ts print timestamp debugging info -intra deprecated use -g 1 -sameq Removed -same_quant Removed -deinterlace this option is deprecated, use the yadif filter instead -psnr calculate PSNR of compressed frames -vstats dump video coding statistics to file -vstats_file file dump video coding statistics to file -vstats_version Version of the vstats format to use. -qphist show QP histogram -vc channel deprecated, use -channel -tvstd standard deprecated, use -standard -isync this option is deprecated and does nothing -sdp_file file specify a file in which to print sdp information -qsv_device device set QSV hardware device (DirectX adapter index, DRM path or X11 display name) -init_hw_device args initialise hardware device -filter_hw_device device set hardware device used when filtering 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 Advanced per-file options: -map [-]input_file_id[:stream_specifier][,sync_file_id[:stream_specifier]] set input stream mapping -map_channel file.stream.channel[:syncfile.syncstream] map an audio channel from one stream to another -map_chapters input_file_index set chapters mapping -accurate_seek enable/disable accurate seeking with -ss -itsoffset time_off set the input ts offset -itsscale scale set the input ts scale -dframes number set the number of data frames to output -re read input at native frame rate -shortest finish encoding within shortest input -bitexact bitexact mode -copyinkf copy initial non-keyframes -copypriorss copy or discard frames before start time -tag fourcc/tag force codec tag/fourcc -q q use fixed quality scale (VBR) -qscale q use fixed quality scale (VBR) -profile profile set profile -attach filename add an attachment to the output file -dump_attachment filename extract an attachment into a file -stream_loop loop count set number of times input stream shall be looped -thread_queue_size set the maximum number of queued packets from the demuxer -find_stream_info read and decode the streams to fill missing information with heuristics -autorotate automatically insert correct rotate filters -autoscale automatically insert a scale filter at the end of the filter graph -muxdelay seconds set the maximum demux-decode delay -muxpreload seconds set the initial demux-decode delay -time_base ratio set the desired time base hint for output stream (1:24, 1:48000 or 0.04166, 2.0833e-5) -enc_time_base ratio set the desired time base for the encoder (1:24, 1:48000 or 0.04166, 2.0833e-5). two special values are defined - 0 = use frame rate (video) or sample rate (audio),-1 = match source time base -bsf bitstream_filters A comma-separated list of bitstream filters -fpre filename set options from indicated preset file -max_muxing_queue_size packets maximum number of packets that can be buffered while waiting for all streams to initialize -muxing_queue_data_threshold bytes set the threshold after which max_muxing_queue_size is taken into account -dcodec codec force data codec ('copy' to copy stream) 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) -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 -ab bitrate audio bitrate (please use -b:a) -b bitrate video bitrate (please use -b:v) -dn disable data Advanced Video options: -pix_fmt format set pixel format -intra deprecated use -g 1 -rc_override override rate control override for specific intervals -sameq Removed -same_quant Removed -passlogfile prefix select two pass log file name prefix -deinterlace this option is deprecated, use the yadif filter instead -psnr calculate PSNR of compressed frames -vstats dump video coding statistics to file -vstats_file file dump video coding statistics to file -vstats_version Version of the vstats format to use. -intra_matrix matrix specify intra matrix coeffs -inter_matrix matrix specify inter matrix coeffs -chroma_intra_matrix matrix specify intra matrix coeffs -top top=1/bottom=0/auto=-1 field first -vtag fourcc/tag force video tag/fourcc -qphist show QP histogram -force_fps force the selected framerate, disable the best supported framerate selection -streamid streamIndex:value set the value of an outfile streamid -force_key_frames timestamps force key frames at specified timestamps -hwaccel hwaccel name use HW accelerated decoding -hwaccel_device devicename select a device for HW acceleration -hwaccel_output_format format select output format used with HW accelerated decoding -vc channel deprecated, use -channel -tvstd standard deprecated, use -standard -vbsf video bitstream_filters deprecated -vpre preset set the video options to the indicated preset 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) -vol volume change audio volume (256=normal) -af filter_graph set audio filters Advanced Audio options: -atag fourcc/tag force audio tag/fourcc -sample_fmt format set sample format -channel_layout layout set channel layout -guess_layout_max set the maximum number of channels to try to guess the channel layout -absf audio bitstream_filters deprecated -apre preset set the audio options to the indicated preset 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

      1

      2

      3

      4

      5

      6

      7

      8

      9

      10

      11

      12

      13

      14

      15

      16

      17

      18

      19

      20

      21

      22

      23

      24

      25

      26

      27

      28

      29

      30

      31

      32

      33

      34

      35

      36

      37

      38

      39

      40

      41

      42

      43

      44

      45

      46

      47

      48

      49

      50

      51

      52

      53

      54

      55

      56

      57

      58

      59

      60

      61

      62

      63

      64

      65

      66

      67

      68

      69

      70

      71

      72

      73

      74

      75

      76

      77

      78

      79

      80

      81

      82

      83

      84

      85

      86

      87

      88

      89

      90

      91

      92

      93

      94

      95

      96

      97

      98

      99

      100

      101

      102

      103

      104

      105

      106

      107

      108

      109

      110

      111

      112

      113

      114

      115

      116

      117

      118

      【FFmpeg】FFmpeg 幫助文檔使用

      119

      120

      121

      122

      123

      124

      125

      126

      127

      128

      129

      130

      131

      132

      133

      134

      135

      136

      137

      138

      139

      140

      141

      142

      143

      144

      145

      146

      147

      148

      149

      150

      151

      152

      153

      154

      155

      156

      157

      158

      159

      160

      161

      162

      163

      164

      165

      166

      167

      168

      169

      170

      171

      172

      173

      174

      175

      176

      177

      178

      179

      180

      181

      182

      183

      184

      185

      186

      187

      188

      189

      190

      191

      192

      193

      194

      195

      196

      197

      198

      199

      200

      201

      202

      203

      204

      205

      206

      207

      208

      209

      210

      211

      212

      213

      214

      215

      216

      217

      218

      219

      220

      221

      222

      223

      224

      225

      226

      227

      228

      3、FFmpeg 命令幫助完整信息

      執行如下命令 , 將完整幫助信息導出到 ffmpeg_h_full.txt 文件中 , 這個幫助文檔有 1001 1001 1001 KB , 放到博客資源中了 ;

      ffmpeg -h full > ffmpeg_h_full.txt

      1

      二、ffplay 命令幫助文檔

      使用如下命令 , 查看 ffplay 命令的幫助文檔 ;

      ffplay -h

      1

      將幫助文檔輸出到文件中 :

      ffplay -h > ffplay_h.txt

      1

      三、ffprobe 命令幫助文檔

      使用如下命令 , 查看 ffprobe 命令的幫助文檔 ;

      ffprobe -h

      1

      將幫助文檔輸出到文件中 :

      ffprobe -h > ffprobe_h.txt

      1

      四、幫助命令查找技巧

      ffmpeg , ffplay , ffprobe 命令部分參數是通用的 , 但是有些不通用 ;

      命令搜索技巧 : 查找 " 264 " 字符串相關的命令 ;

      ffmpeg -h full | findstr 264

      1

      博客資源

      https://download.csdn.net/download/han1202012/19576289

      版權聲明:本文內容由網絡用戶投稿,版權歸原作者所有,本站不擁有其著作權,亦不承擔相應法律責任。如果您發現本站中有涉嫌抄襲或描述失實的內容,請聯系我們jiasou666@gmail.com 處理,核實后本網站將在24小時內刪除侵權內容。

      版權聲明:本文內容由網絡用戶投稿,版權歸原作者所有,本站不擁有其著作權,亦不承擔相應法律責任。如果您發現本站中有涉嫌抄襲或描述失實的內容,請聯系我們jiasou666@gmail.com 處理,核實后本網站將在24小時內刪除侵權內容。

      上一篇:農業建設項目管理平臺官網
      下一篇:怎么在表格中快速找到數字或文字?(怎么找表格里的數字)
      相關文章
      亚洲美女色在线欧洲美女| 亚洲AV综合色区无码一区爱AV | 亚洲精品午夜视频| 亚洲avav天堂av在线不卡 | 亚洲天堂男人天堂| 亚洲AV无码乱码在线观看富二代| 亚洲最大激情中文字幕| 国产成人99久久亚洲综合精品| 亚洲av无码天堂一区二区三区| www.亚洲精品| 亚洲AV无码乱码在线观看牲色| jizzjizz亚洲| 亚洲色欲久久久久综合网| 亚洲午夜成人精品电影在线观看| 亚洲精品无码久久久| 久久精品国产亚洲Aⅴ蜜臀色欲| 久久精品国产亚洲Aⅴ蜜臀色欲 | 亚洲最大av无码网址| 久久久久国产亚洲AV麻豆| 国产亚洲一区区二区在线| 国产亚洲AV手机在线观看| 亚洲午夜福利在线观看| 国产V亚洲V天堂无码| 亚洲国产精品不卡在线电影| 久久亚洲精品中文字幕| 亚洲最新中文字幕| 亚洲乱码一二三四区乱码| 亚洲中文字幕精品久久| 亚洲AV无码成人精品区日韩| 苍井空亚洲精品AA片在线播放| 亚洲Av无码国产情品久久 | 亚洲乱码一二三四区麻豆| 国产.亚洲.欧洲在线| 亚洲久热无码av中文字幕| 亚洲av日韩aⅴ无码色老头| 亚洲精品久久久www | 亚洲男人的天堂www| 午夜影视日本亚洲欧洲精品一区| 亚洲福利视频网址| 亚洲日韩国产欧美一区二区三区| 理论亚洲区美一区二区三区 |