You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1194 lines
37KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle ffmpeg Documentation
  3. @titlepage
  4. @center @titlefont{ffmpeg Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Synopsis
  9. The generic syntax is:
  10. @example
  11. @c man begin SYNOPSIS
  12. ffmpeg [global options] [[infile options][@option{-i} @var{infile}]]... @{[outfile options] @var{outfile}@}...
  13. @c man end
  14. @end example
  15. @chapter Description
  16. @c man begin DESCRIPTION
  17. ffmpeg is a very fast video and audio converter that can also grab from
  18. a live audio/video source. It can also convert between arbitrary sample
  19. rates and resize video on the fly with a high quality polyphase filter.
  20. As a general rule, options are applied to the next specified
  21. file. Therefore, order is important, and you can have the same
  22. option on the command line multiple times. Each occurrence is
  23. then applied to the next input or output file.
  24. Exceptions from this rule are the global options (e.g. verbosity level),
  25. which should be specified first.
  26. @itemize
  27. @item
  28. To set the video bitrate of the output file to 64kbit/s:
  29. @example
  30. ffmpeg -i input.avi -b:v 64k output.avi
  31. @end example
  32. @item
  33. To force the frame rate of the output file to 24 fps:
  34. @example
  35. ffmpeg -i input.avi -r 24 output.avi
  36. @end example
  37. @item
  38. To force the frame rate of the input file (valid for raw formats only)
  39. to 1 fps and the frame rate of the output file to 24 fps:
  40. @example
  41. ffmpeg -r 1 -i input.m2v -r 24 output.avi
  42. @end example
  43. @end itemize
  44. The format option may be needed for raw input files.
  45. @c man end DESCRIPTION
  46. @chapter Stream selection
  47. @c man begin STREAM SELECTION
  48. By default ffmpeg includes only one stream of each type (video, audio, subtitle)
  49. present in the input files and adds them to each output file. It picks the
  50. "best" of each based upon the following criteria; for video it is the stream
  51. with the highest resolution, for audio the stream with the most channels, for
  52. subtitle it's the first subtitle stream. In the case where several streams of
  53. the same type rate equally, the lowest numbered stream is chosen.
  54. You can disable some of those defaults by using @code{-vn/-an/-sn} options. For
  55. full manual control, use the @code{-map} option, which disables the defaults just
  56. described.
  57. @c man end STREAM SELECTION
  58. @chapter Options
  59. @c man begin OPTIONS
  60. @include avtools-common-opts.texi
  61. @section Main options
  62. @table @option
  63. @item -f @var{fmt} (@emph{input/output})
  64. Force input or output file format. The format is normally auto detected for input
  65. files and guessed from file extension for output files, so this option is not
  66. needed in most cases.
  67. @item -i @var{filename} (@emph{input})
  68. input file name
  69. @item -y (@emph{global})
  70. Overwrite output files without asking.
  71. @item -n (@emph{global})
  72. Do not overwrite output files but exit if file exists.
  73. @item -c[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream})
  74. @itemx -codec[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream})
  75. Select an encoder (when used before an output file) or a decoder (when used
  76. before an input file) for one or more streams. @var{codec} is the name of a
  77. decoder/encoder or a special value @code{copy} (output only) to indicate that
  78. the stream is not to be re-encoded.
  79. For example
  80. @example
  81. ffmpeg -i INPUT -map 0 -c:v libx264 -c:a copy OUTPUT
  82. @end example
  83. encodes all video streams with libx264 and copies all audio streams.
  84. For each stream, the last matching @code{c} option is applied, so
  85. @example
  86. ffmpeg -i INPUT -map 0 -c copy -c:v:1 libx264 -c:a:137 libvorbis OUTPUT
  87. @end example
  88. will copy all the streams except the second video, which will be encoded with
  89. libx264, and the 138th audio, which will be encoded with libvorbis.
  90. @item -t @var{duration} (@emph{output})
  91. Stop writing the output after its duration reaches @var{duration}.
  92. @var{duration} may be a number in seconds, or in @code{hh:mm:ss[.xxx]} form.
  93. @item -fs @var{limit_size} (@emph{output})
  94. Set the file size limit.
  95. @item -ss @var{position} (@emph{input/output})
  96. When used as an input option (before @code{-i}), seeks in this input file to
  97. @var{position}. When used as an output option (before an output filename),
  98. decodes but discards input until the timestamps reach @var{position}. This is
  99. slower, but more accurate.
  100. @var{position} may be either in seconds or in @code{hh:mm:ss[.xxx]} form.
  101. @item -itsoffset @var{offset} (@emph{input})
  102. Set the input time offset in seconds.
  103. @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
  104. The offset is added to the timestamps of the input files.
  105. Specifying a positive offset means that the corresponding
  106. streams are delayed by @var{offset} seconds.
  107. @item -timestamp @var{time} (@emph{output})
  108. Set the recording timestamp in the container.
  109. The syntax for @var{time} is:
  110. @example
  111. now|([(YYYY-MM-DD|YYYYMMDD)[T|t| ]]((HH[:MM[:SS[.m...]]])|(HH[MM[SS[.m...]]]))[Z|z])
  112. @end example
  113. If the value is "now" it takes the current time.
  114. Time is local time unless 'Z' or 'z' is appended, in which case it is
  115. interpreted as UTC.
  116. If the year-month-day part is not specified it takes the current
  117. year-month-day.
  118. @item -metadata[:metadata_specifier] @var{key}=@var{value} (@emph{output,per-metadata})
  119. Set a metadata key/value pair.
  120. An optional @var{metadata_specifier} may be given to set metadata
  121. on streams or chapters. See @code{-map_metadata} documentation for
  122. details.
  123. This option overrides metadata set with @code{-map_metadata}. It is
  124. also possible to delete metadata by using an empty value.
  125. For example, for setting the title in the output file:
  126. @example
  127. ffmpeg -i in.avi -metadata title="my title" out.flv
  128. @end example
  129. To set the language of the second stream:
  130. @example
  131. ffmpeg -i INPUT -metadata:s:1 language=eng OUTPUT
  132. @end example
  133. @item -v @var{number} (@emph{global})
  134. This option is deprecated and has no effect, use -loglevel
  135. to set verbosity level.
  136. @item -target @var{type} (@emph{output})
  137. Specify target file type (@code{vcd}, @code{svcd}, @code{dvd}, @code{dv},
  138. @code{dv50}). @var{type} may be prefixed with @code{pal-}, @code{ntsc-} or
  139. @code{film-} to use the corresponding standard. All the format options
  140. (bitrate, codecs, buffer sizes) are then set automatically. You can just type:
  141. @example
  142. ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg
  143. @end example
  144. Nevertheless you can specify additional options as long as you know
  145. they do not conflict with the standard, as in:
  146. @example
  147. ffmpeg -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
  148. @end example
  149. @item -dframes @var{number} (@emph{output})
  150. Set the number of data frames to record. This is an alias for @code{-frames:d}.
  151. @item -frames[:@var{stream_specifier}] @var{framecount} (@emph{output,per-stream})
  152. Stop writing to the stream after @var{framecount} frames.
  153. @item -q[:@var{stream_specifier}] @var{q} (@emph{output,per-stream})
  154. @itemx -qscale[:@var{stream_specifier}] @var{q} (@emph{output,per-stream})
  155. Use fixed quality scale (VBR). The meaning of @var{q} is
  156. codec-dependent.
  157. @item -filter[:@var{stream_specifier}] @var{filter_graph}
  158. @var{filter_graph} is a description of the filter graph to apply to
  159. the stream. Use @code{-filters} to show all the available filters
  160. (including also sources and sinks).
  161. @end table
  162. @section Video Options
  163. @table @option
  164. @item -vframes @var{number} (@emph{output})
  165. Set the number of video frames to record. This is an alias for @code{-frames:v}.
  166. @item -r[:@var{stream_specifier}] @var{fps} (@emph{input/output,per-stream})
  167. Set frame rate (Hz value, fraction or abbreviation), (default = 25).
  168. @item -s[:@var{stream_specifier}] @var{size} (@emph{input/output,per-stream})
  169. Set frame size. The format is @samp{wxh} (ffserver default = 160x128, ffmpeg default = same as source).
  170. The following abbreviations are recognized:
  171. @table @samp
  172. @item sqcif
  173. 128x96
  174. @item qcif
  175. 176x144
  176. @item cif
  177. 352x288
  178. @item 4cif
  179. 704x576
  180. @item 16cif
  181. 1408x1152
  182. @item qqvga
  183. 160x120
  184. @item qvga
  185. 320x240
  186. @item vga
  187. 640x480
  188. @item svga
  189. 800x600
  190. @item xga
  191. 1024x768
  192. @item uxga
  193. 1600x1200
  194. @item qxga
  195. 2048x1536
  196. @item sxga
  197. 1280x1024
  198. @item qsxga
  199. 2560x2048
  200. @item hsxga
  201. 5120x4096
  202. @item wvga
  203. 852x480
  204. @item wxga
  205. 1366x768
  206. @item wsxga
  207. 1600x1024
  208. @item wuxga
  209. 1920x1200
  210. @item woxga
  211. 2560x1600
  212. @item wqsxga
  213. 3200x2048
  214. @item wquxga
  215. 3840x2400
  216. @item whsxga
  217. 6400x4096
  218. @item whuxga
  219. 7680x4800
  220. @item cga
  221. 320x200
  222. @item ega
  223. 640x350
  224. @item hd480
  225. 852x480
  226. @item hd720
  227. 1280x720
  228. @item hd1080
  229. 1920x1080
  230. @end table
  231. @item -aspect[:@var{stream_specifier}] @var{aspect} (@emph{output,per-stream})
  232. Set the video display aspect ratio specified by @var{aspect}.
  233. @var{aspect} can be a floating point number string, or a string of the
  234. form @var{num}:@var{den}, where @var{num} and @var{den} are the
  235. numerator and denominator of the aspect ratio. For example "4:3",
  236. "16:9", "1.3333", and "1.7777" are valid argument values.
  237. @item -croptop @var{size}
  238. @item -cropbottom @var{size}
  239. @item -cropleft @var{size}
  240. @item -cropright @var{size}
  241. All the crop options have been removed. Use -vf
  242. crop=width:height:x:y instead.
  243. @item -padtop @var{size}
  244. @item -padbottom @var{size}
  245. @item -padleft @var{size}
  246. @item -padright @var{size}
  247. @item -padcolor @var{hex_color}
  248. All the pad options have been removed. Use -vf
  249. pad=width:height:x:y:color instead.
  250. @item -vn (@emph{output})
  251. Disable video recording.
  252. @item -bt @var{tolerance}
  253. Set video bitrate tolerance (in bits, default 4000k).
  254. Has a minimum value of: (target_bitrate/target_framerate).
  255. In 1-pass mode, bitrate tolerance specifies how far ratecontrol is
  256. willing to deviate from the target average bitrate value. This is
  257. not related to min/max bitrate. Lowering tolerance too much has
  258. an adverse effect on quality.
  259. @item -maxrate @var{bitrate}
  260. Set max video bitrate (in bit/s).
  261. Requires -bufsize to be set.
  262. @item -minrate @var{bitrate}
  263. Set min video bitrate (in bit/s).
  264. Most useful in setting up a CBR encode:
  265. @example
  266. ffmpeg -i myfile.avi -b:v 4000k -minrate 4000k -maxrate 4000k -bufsize 1835k out.m2v
  267. @end example
  268. It is of little use elsewise.
  269. @item -bufsize @var{size}
  270. Set video buffer verifier buffer size (in bits).
  271. @item -vcodec @var{codec} (@emph{output})
  272. Set the video codec. This is an alias for @code{-codec:v}.
  273. @item -same_quant
  274. Use same quantizer as source (implies VBR).
  275. Note that this is NOT SAME QUALITY. Do not use this option unless you know you
  276. need it.
  277. @item -pass @var{n}
  278. Select the pass number (1 or 2). It is used to do two-pass
  279. video encoding. The statistics of the video are recorded in the first
  280. pass into a log file (see also the option -passlogfile),
  281. and in the second pass that log file is used to generate the video
  282. at the exact requested bitrate.
  283. On pass 1, you may just deactivate audio and set output to null,
  284. examples for Windows and Unix:
  285. @example
  286. ffmpeg -i foo.mov -c:v libxvid -pass 1 -an -f rawvideo -y NUL
  287. ffmpeg -i foo.mov -c:v libxvid -pass 1 -an -f rawvideo -y /dev/null
  288. @end example
  289. @item -passlogfile @var{prefix} (@emph{global})
  290. Set two-pass log file name prefix to @var{prefix}, the default file name
  291. prefix is ``ffmpeg2pass''. The complete file name will be
  292. @file{PREFIX-N.log}, where N is a number specific to the output
  293. stream
  294. @item -vlang @var{code}
  295. Set the ISO 639 language code (3 letters) of the current video stream.
  296. @item -vf @var{filter_graph} (@emph{output})
  297. @var{filter_graph} is a description of the filter graph to apply to
  298. the input video.
  299. Use the option "-filters" to show all the available filters (including
  300. also sources and sinks). This is an alias for @code{-filter:v}.
  301. @end table
  302. @section Advanced Video Options
  303. @table @option
  304. @item -pix_fmt[:@var{stream_specifier}] @var{format} (@emph{input/output,per-stream})
  305. Set pixel format. Use @code{-pix_fmts} to show all the supported
  306. pixel formats.
  307. @item -sws_flags @var{flags} (@emph{input/output})
  308. Set SwScaler flags.
  309. @item -g @var{gop_size}
  310. Set the group of pictures size.
  311. @item -intra
  312. deprecated, use -g 1
  313. @item -vdt @var{n}
  314. Discard threshold.
  315. @item -qmin @var{q}
  316. minimum video quantizer scale (VBR)
  317. @item -qmax @var{q}
  318. maximum video quantizer scale (VBR)
  319. @item -qdiff @var{q}
  320. maximum difference between the quantizer scales (VBR)
  321. @item -qblur @var{blur}
  322. video quantizer scale blur (VBR) (range 0.0 - 1.0)
  323. @item -qcomp @var{compression}
  324. video quantizer scale compression (VBR) (default 0.5).
  325. Constant of ratecontrol equation. Recommended range for default rc_eq: 0.0-1.0
  326. @item -lmin @var{lambda}
  327. minimum video lagrange factor (VBR)
  328. @item -lmax @var{lambda}
  329. max video lagrange factor (VBR)
  330. @item -mblmin @var{lambda}
  331. minimum macroblock quantizer scale (VBR)
  332. @item -mblmax @var{lambda}
  333. maximum macroblock quantizer scale (VBR)
  334. These four options (lmin, lmax, mblmin, mblmax) use 'lambda' units,
  335. but you may use the QP2LAMBDA constant to easily convert from 'q' units:
  336. @example
  337. ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
  338. @end example
  339. @item -rc_init_cplx @var{complexity}
  340. initial complexity for single pass encoding
  341. @item -b_qfactor @var{factor}
  342. qp factor between P- and B-frames
  343. @item -i_qfactor @var{factor}
  344. qp factor between P- and I-frames
  345. @item -b_qoffset @var{offset}
  346. qp offset between P- and B-frames
  347. @item -i_qoffset @var{offset}
  348. qp offset between P- and I-frames
  349. @item -rc_eq @var{equation}
  350. Set rate control equation (see section "Expression Evaluation")
  351. (default = @code{tex^qComp}).
  352. When computing the rate control equation expression, besides the
  353. standard functions defined in the section "Expression Evaluation", the
  354. following functions are available:
  355. @table @var
  356. @item bits2qp(bits)
  357. @item qp2bits(qp)
  358. @end table
  359. and the following constants are available:
  360. @table @var
  361. @item iTex
  362. @item pTex
  363. @item tex
  364. @item mv
  365. @item fCode
  366. @item iCount
  367. @item mcVar
  368. @item var
  369. @item isI
  370. @item isP
  371. @item isB
  372. @item avgQP
  373. @item qComp
  374. @item avgIITex
  375. @item avgPITex
  376. @item avgPPTex
  377. @item avgBPTex
  378. @item avgTex
  379. @end table
  380. @item -rc_override[:@var{stream_specifier}] @var{override} (@emph{output,per-stream})
  381. Rate control override for specific intervals, formatted as "int,int,int"
  382. list separated with slashes. Two first values are the beginning and
  383. end frame numbers, last one is quantizer to use if positive, or quality
  384. factor if negative.
  385. @item -me_method @var{method}
  386. Set motion estimation method to @var{method}.
  387. Available methods are (from lowest to best quality):
  388. @table @samp
  389. @item zero
  390. Try just the (0, 0) vector.
  391. @item phods
  392. @item log
  393. @item x1
  394. @item hex
  395. @item umh
  396. @item epzs
  397. (default method)
  398. @item full
  399. exhaustive search (slow and marginally better than epzs)
  400. @end table
  401. @item -dct_algo @var{algo}
  402. Set DCT algorithm to @var{algo}. Available values are:
  403. @table @samp
  404. @item 0
  405. FF_DCT_AUTO (default)
  406. @item 1
  407. FF_DCT_FASTINT
  408. @item 2
  409. FF_DCT_INT
  410. @item 3
  411. FF_DCT_MMX
  412. @item 4
  413. FF_DCT_MLIB
  414. @item 5
  415. FF_DCT_ALTIVEC
  416. @end table
  417. @item -idct_algo @var{algo}
  418. Set IDCT algorithm to @var{algo}. Available values are:
  419. @table @samp
  420. @item 0
  421. FF_IDCT_AUTO (default)
  422. @item 1
  423. FF_IDCT_INT
  424. @item 2
  425. FF_IDCT_SIMPLE
  426. @item 3
  427. FF_IDCT_SIMPLEMMX
  428. @item 4
  429. FF_IDCT_LIBMPEG2MMX
  430. @item 5
  431. FF_IDCT_PS2
  432. @item 6
  433. FF_IDCT_MLIB
  434. @item 7
  435. FF_IDCT_ARM
  436. @item 8
  437. FF_IDCT_ALTIVEC
  438. @item 9
  439. FF_IDCT_SH4
  440. @item 10
  441. FF_IDCT_SIMPLEARM
  442. @end table
  443. @item -er @var{n}
  444. Set error resilience to @var{n}.
  445. @table @samp
  446. @item 1
  447. FF_ER_CAREFUL (default)
  448. @item 2
  449. FF_ER_COMPLIANT
  450. @item 3
  451. FF_ER_AGGRESSIVE
  452. @item 4
  453. FF_ER_VERY_AGGRESSIVE
  454. @end table
  455. @item -ec @var{bit_mask}
  456. Set error concealment to @var{bit_mask}. @var{bit_mask} is a bit mask of
  457. the following values:
  458. @table @samp
  459. @item 1
  460. FF_EC_GUESS_MVS (default = enabled)
  461. @item 2
  462. FF_EC_DEBLOCK (default = enabled)
  463. @end table
  464. @item -bf @var{frames}
  465. Use 'frames' B-frames (supported for MPEG-1, MPEG-2 and MPEG-4).
  466. @item -mbd @var{mode}
  467. macroblock decision
  468. @table @samp
  469. @item 0
  470. FF_MB_DECISION_SIMPLE: Use mb_cmp (cannot change it yet in ffmpeg).
  471. @item 1
  472. FF_MB_DECISION_BITS: Choose the one which needs the fewest bits.
  473. @item 2
  474. FF_MB_DECISION_RD: rate distortion
  475. @end table
  476. @item -4mv
  477. Use four motion vector by macroblock (MPEG-4 only).
  478. @item -part
  479. Use data partitioning (MPEG-4 only).
  480. @item -bug @var{param}
  481. Work around encoder bugs that are not auto-detected.
  482. @item -strict @var{strictness}
  483. How strictly to follow the standards.
  484. @item -aic
  485. Enable Advanced intra coding (h263+).
  486. @item -umv
  487. Enable Unlimited Motion Vector (h263+)
  488. @item -deinterlace
  489. Deinterlace pictures.
  490. @item -ilme
  491. Force interlacing support in encoder (MPEG-2 and MPEG-4 only).
  492. Use this option if your input file is interlaced and you want
  493. to keep the interlaced format for minimum losses.
  494. The alternative is to deinterlace the input stream with
  495. @option{-deinterlace}, but deinterlacing introduces losses.
  496. @item -psnr
  497. Calculate PSNR of compressed frames.
  498. @item -vstats
  499. Dump video coding statistics to @file{vstats_HHMMSS.log}.
  500. @item -vstats_file @var{file}
  501. Dump video coding statistics to @var{file}.
  502. @item -top[:@var{stream_specifier}] @var{n} (@emph{output,per-stream})
  503. top=1/bottom=0/auto=-1 field first
  504. @item -dc @var{precision}
  505. Intra_dc_precision.
  506. @item -vtag @var{fourcc/tag} (@emph{output})
  507. Force video tag/fourcc. This is an alias for @code{-tag:v}.
  508. @item -qphist (@emph{global})
  509. Show QP histogram
  510. @item -vbsf @var{bitstream_filter}
  511. Deprecated see -bsf
  512. @item -force_key_frames[:@var{stream_specifier}] @var{time}[,@var{time}...] (@emph{output,per-stream})
  513. Force key frames at the specified timestamps, more precisely at the first
  514. frames after each specified time.
  515. This option can be useful to ensure that a seek point is present at a
  516. chapter mark or any other designated place in the output file.
  517. The timestamps must be specified in ascending order.
  518. @end table
  519. @section Audio Options
  520. @table @option
  521. @item -aframes @var{number} (@emph{output})
  522. Set the number of audio frames to record. This is an alias for @code{-frames:a}.
  523. @item -ar[:@var{stream_specifier}] @var{freq} (@emph{input/output,per-stream})
  524. Set the audio sampling frequency. For output streams it is set by
  525. default to the frequency of the corresponding input stream. For input
  526. streams this option only makes sense for audio grabbing devices and raw
  527. demuxers and is mapped to the corresponding demuxer options.
  528. @item -aq @var{q} (@emph{output})
  529. Set the audio quality (codec-specific, VBR). This is an alias for -q:a.
  530. @item -ac[:@var{stream_specifier}] @var{channels} (@emph{input/output,per-stream})
  531. Set the number of audio channels. For output streams it is set by
  532. default to the number of input audio channels. For input streams
  533. this option only makes sense for audio grabbing devices and raw demuxers
  534. and is mapped to the corresponding demuxer options.
  535. @item -an (@emph{output})
  536. Disable audio recording.
  537. @item -acodec @var{codec} (@emph{input/output})
  538. Set the audio codec. This is an alias for @code{-codec:a}.
  539. @item -sample_fmt[:@var{stream_specifier}] @var{sample_fmt} (@emph{output,per-stream})
  540. Set the audio sample format. Use @code{-help sample_fmts} to get a list
  541. of supported sample formats.
  542. @end table
  543. @section Advanced Audio options:
  544. @table @option
  545. @item -atag @var{fourcc/tag} (@emph{output})
  546. Force audio tag/fourcc. This is an alias for @code{-tag:a}.
  547. @item -audio_service_type @var{type}
  548. Set the type of service that the audio stream contains.
  549. @table @option
  550. @item ma
  551. Main Audio Service (default)
  552. @item ef
  553. Effects
  554. @item vi
  555. Visually Impaired
  556. @item hi
  557. Hearing Impaired
  558. @item di
  559. Dialogue
  560. @item co
  561. Commentary
  562. @item em
  563. Emergency
  564. @item vo
  565. Voice Over
  566. @item ka
  567. Karaoke
  568. @end table
  569. @item -absf @var{bitstream_filter}
  570. Deprecated, see -bsf
  571. @end table
  572. @section Subtitle options:
  573. @table @option
  574. @item -slang @var{code}
  575. Set the ISO 639 language code (3 letters) of the current subtitle stream.
  576. @item -scodec @var{codec} (@emph{input/output})
  577. Set the subtitle codec. This is an alias for @code{-codec:s}.
  578. @item -sn (@emph{output})
  579. Disable subtitle recording.
  580. @item -sbsf @var{bitstream_filter}
  581. Deprecated, see -bsf
  582. @end table
  583. @section Audio/Video grab options
  584. @table @option
  585. @item -isync (@emph{global})
  586. Synchronize read on input.
  587. @end table
  588. @section Advanced options
  589. @table @option
  590. @item -map [-]@var{input_file_id}[:@var{stream_specifier}][,@var{sync_file_id}[:@var{stream_specifier}]] (@emph{output})
  591. Designate one or more input streams as a source for the output file. Each input
  592. stream is identified by the input file index @var{input_file_id} and
  593. the input stream index @var{input_stream_id} within the input
  594. file. Both indices start at 0. If specified,
  595. @var{sync_file_id}:@var{stream_specifier} sets which input stream
  596. is used as a presentation sync reference.
  597. The first @code{-map} option on the command line specifies the
  598. source for output stream 0, the second @code{-map} option specifies
  599. the source for output stream 1, etc.
  600. A @code{-} character before the stream identifier creates a "negative" mapping.
  601. It disables matching streams from already created mappings.
  602. For example, to map ALL streams from the first input file to output
  603. @example
  604. ffmpeg -i INPUT -map 0 output
  605. @end example
  606. For example, if you have two audio streams in the first input file,
  607. these streams are identified by "0:0" and "0:1". You can use
  608. @code{-map} to select which streams to place in an output file. For
  609. example:
  610. @example
  611. ffmpeg -i INPUT -map 0:1 out.wav
  612. @end example
  613. will map the input stream in @file{INPUT} identified by "0:1" to
  614. the (single) output stream in @file{out.wav}.
  615. For example, to select the stream with index 2 from input file
  616. @file{a.mov} (specified by the identifier "0:2"), and stream with
  617. index 6 from input @file{b.mov} (specified by the identifier "1:6"),
  618. and copy them to the output file @file{out.mov}:
  619. @example
  620. ffmpeg -i a.mov -i b.mov -c copy -map 0:2 -map 1:6 out.mov
  621. @end example
  622. To select all video and the third audio stream from an input file:
  623. @example
  624. ffmpeg -i INPUT -map 0:v -map 0:a:2 OUTPUT
  625. @end example
  626. To map all the streams except the second audio, use negative mappings
  627. @example
  628. ffmpeg -i INPUT -map 0 -map -0:a:1 OUTPUT
  629. @end example
  630. Note that using this option disables the default mappings for this output file.
  631. @item -map_channel [@var{input_file_id}.@var{stream_specifier}.@var{channel_id}|-1][:@var{output_file_id}.@var{stream_specifier}]
  632. Map an audio channel from a given input to an output. If
  633. @var{output_file_id}.@var{stream_specifier} are not set, the audio channel will
  634. be mapped on all the audio streams.
  635. Using "-1" instead of
  636. @var{input_file_id}.@var{stream_specifier}.@var{channel_id} will map a muted
  637. channel.
  638. For example, assuming @var{INPUT} is a stereo audio file, you can switch the
  639. two audio channels with the following command:
  640. @example
  641. ffmpeg -i INPUT -map_channel 0.0.1 -map_channel 0.0.0 OUTPUT
  642. @end example
  643. If you want to mute the first channel and keep the second:
  644. @example
  645. ffmpeg -i INPUT -map_channel -1 -map_channel 0.0.1 OUTPUT
  646. @end example
  647. The order of the "-map_channel" option specifies the order of the channels in
  648. the output stream. The output channel layout is guessed from the number of
  649. channels mapped (mono if one "-map_channel", stereo if two, etc.). Using "-ac"
  650. in combination of "-map_channel" makes the channel gain levels to be updated if
  651. channel layouts don't match (for instance two "-map_channel" options and "-ac
  652. 6").
  653. You can also extract each channel of an @var{INPUT} to specific outputs; the
  654. following command extract each channel of the audio stream (file 0, stream 0)
  655. to the respective @var{OUTPUT_CH0} and @var{OUTPUT_CH1}:
  656. @example
  657. ffmpeg -i INPUT -map_channel 0.0.0 OUTPUT_CH0 -map_channel 0.0.1 OUTPUT_CH1
  658. @end example
  659. The following example split the channels of a stereo input into streams:
  660. @example
  661. ffmpeg -i stereo.wav -map 0:0 -map 0:0 -map_channel 0.0.0:0.0 -map_channel 0.0.1:0.1 -y out.ogg
  662. @end example
  663. Note that "-map_channel" is currently limited to the scope of one input for
  664. each output; you can't for example use it to pick multiple input audio files
  665. and mix them into one single output.
  666. @item -map_metadata[:@var{metadata_type}][:@var{index}] @var{infile}[:@var{metadata_type}][:@var{index}] (@emph{output,per-metadata})
  667. Set metadata information of the next output file from @var{infile}. Note that
  668. those are file indices (zero-based), not filenames.
  669. Optional @var{metadata_type} parameters specify, which metadata to copy - (g)lobal
  670. (i.e. metadata that applies to the whole file), per-(s)tream, per-(c)hapter or
  671. per-(p)rogram. All metadata specifiers other than global must be followed by the
  672. stream/chapter/program index. If metadata specifier is omitted, it defaults to
  673. global.
  674. By default, global metadata is copied from the first input file,
  675. per-stream and per-chapter metadata is copied along with streams/chapters. These
  676. default mappings are disabled by creating any mapping of the relevant type. A negative
  677. file index can be used to create a dummy mapping that just disables automatic copying.
  678. For example to copy metadata from the first stream of the input file to global metadata
  679. of the output file:
  680. @example
  681. ffmpeg -i in.ogg -map_metadata 0:s:0 out.mp3
  682. @end example
  683. @item -map_chapters @var{input_file_index} (@emph{output})
  684. Copy chapters from input file with index @var{input_file_index} to the next
  685. output file. If no chapter mapping is specified, then chapters are copied from
  686. the first input file with at least one chapter. Use a negative file index to
  687. disable any chapter copying.
  688. @item -debug @var{category}
  689. Print specific debug info.
  690. @var{category} is a number or a string containing one of the following values:
  691. @table @samp
  692. @item bitstream
  693. @item buffers
  694. picture buffer allocations
  695. @item bugs
  696. @item dct_coeff
  697. @item er
  698. error recognition
  699. @item mb_type
  700. macroblock (MB) type
  701. @item mmco
  702. memory management control operations (H.264)
  703. @item mv
  704. motion vector
  705. @item pict
  706. picture info
  707. @item pts
  708. @item qp
  709. per-block quantization parameter (QP)
  710. @item rc
  711. rate control
  712. @item skip
  713. @item startcode
  714. @item thread_ops
  715. threading operations
  716. @item vis_mb_type
  717. visualize block types
  718. @item vis_qp
  719. visualize quantization parameter (QP), lower QP are tinted greener
  720. @end table
  721. @item -benchmark (@emph{global})
  722. Show benchmarking information at the end of an encode.
  723. Shows CPU time used and maximum memory consumption.
  724. Maximum memory consumption is not supported on all systems,
  725. it will usually display as 0 if not supported.
  726. @item -timelimit @var{duration} (@emph{global})
  727. Exit after ffmpeg has been running for @var{duration} seconds.
  728. @item -dump (@emph{global})
  729. Dump each input packet to stderr.
  730. @item -hex (@emph{global})
  731. When dumping packets, also dump the payload.
  732. @item -ps @var{size}
  733. Set RTP payload size in bytes.
  734. @item -re (@emph{input})
  735. Read input at native frame rate. Mainly used to simulate a grab device.
  736. @item -loop_input
  737. Loop over the input stream. Currently it works only for image
  738. streams. This option is used for automatic FFserver testing.
  739. This option is deprecated, use -loop 1.
  740. @item -loop_output @var{number_of_times}
  741. Repeatedly loop output for formats that support looping such as animated GIF
  742. (0 will loop the output infinitely).
  743. This option is deprecated, use -loop.
  744. @item -threads @var{count}
  745. Thread count.
  746. @item -vsync @var{parameter}
  747. Video sync method.
  748. @table @option
  749. @item 0
  750. Each frame is passed with its timestamp from the demuxer to the muxer.
  751. @item 1
  752. Frames will be duplicated and dropped to achieve exactly the requested
  753. constant framerate.
  754. @item 2
  755. Frames are passed through with their timestamp or dropped so as to
  756. prevent 2 frames from having the same timestamp.
  757. @item -1
  758. Chooses between 1 and 2 depending on muxer capabilities. This is the
  759. default method.
  760. @end table
  761. With -map you can select from which stream the timestamps should be
  762. taken. You can leave either video or audio unchanged and sync the
  763. remaining stream(s) to the unchanged one.
  764. @item -async @var{samples_per_second}
  765. Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
  766. the parameter is the maximum samples per second by which the audio is changed.
  767. -async 1 is a special case where only the start of the audio stream is corrected
  768. without any later correction.
  769. @item -copyts
  770. Copy timestamps from input to output.
  771. @item -copytb
  772. Copy input stream time base from input to output when stream copying.
  773. @item -shortest
  774. Finish encoding when the shortest input stream ends.
  775. @item -dts_delta_threshold
  776. Timestamp discontinuity delta threshold.
  777. @item -muxdelay @var{seconds} (@emph{input})
  778. Set the maximum demux-decode delay.
  779. @item -muxpreload @var{seconds} (@emph{input})
  780. Set the initial demux-decode delay.
  781. @item -streamid @var{output-stream-index}:@var{new-value} (@emph{output})
  782. Assign a new stream-id value to an output stream. This option should be
  783. specified prior to the output filename to which it applies.
  784. For the situation where multiple output files exist, a streamid
  785. may be reassigned to a different value.
  786. For example, to set the stream 0 PID to 33 and the stream 1 PID to 36 for
  787. an output mpegts file:
  788. @example
  789. ffmpeg -i infile -streamid 0:33 -streamid 1:36 out.ts
  790. @end example
  791. @item -bsf[:@var{stream_specifier}] @var{bitstream_filters} (@emph{output,per-stream})
  792. Set bitstream filters for matching streams. @var{bistream_filters} is
  793. a comma-separated list of bitstream filters. Use the @code{-bsfs} option
  794. to get the list of bitstream filters.
  795. @example
  796. ffmpeg -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264
  797. @end example
  798. @example
  799. ffmpeg -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt
  800. @end example
  801. @item -tag[:@var{stream_specifier}] @var{codec_tag} (@emph{per-stream})
  802. Force a tag/fourcc for matching streams.
  803. @end table
  804. @section Preset files
  805. A preset file contains a sequence of @var{option}=@var{value} pairs,
  806. one for each line, specifying a sequence of options which would be
  807. awkward to specify on the command line. Lines starting with the hash
  808. ('#') character are ignored and are used to provide comments. Check
  809. the @file{presets} directory in the FFmpeg source tree for examples.
  810. Preset files are specified with the @code{vpre}, @code{apre},
  811. @code{spre}, and @code{fpre} options. The @code{fpre} option takes the
  812. filename of the preset instead of a preset name as input and can be
  813. used for any kind of codec. For the @code{vpre}, @code{apre}, and
  814. @code{spre} options, the options specified in a preset file are
  815. applied to the currently selected codec of the same type as the preset
  816. option.
  817. The argument passed to the @code{vpre}, @code{apre}, and @code{spre}
  818. preset options identifies the preset file to use according to the
  819. following rules:
  820. First ffmpeg searches for a file named @var{arg}.ffpreset in the
  821. directories @file{$FFMPEG_DATADIR} (if set), and @file{$HOME/.ffmpeg}, and in
  822. the datadir defined at configuration time (usually @file{PREFIX/share/ffmpeg})
  823. or in a @file{ffpresets} folder along the executable on win32,
  824. in that order. For example, if the argument is @code{libx264-max}, it will
  825. search for the file @file{libx264-max.ffpreset}.
  826. If no such file is found, then ffmpeg will search for a file named
  827. @var{codec_name}-@var{arg}.ffpreset in the above-mentioned
  828. directories, where @var{codec_name} is the name of the codec to which
  829. the preset file options will be applied. For example, if you select
  830. the video codec with @code{-vcodec libx264} and use @code{-vpre max},
  831. then it will search for the file @file{libx264-max.ffpreset}.
  832. @c man end OPTIONS
  833. @chapter Tips
  834. @c man begin TIPS
  835. @itemize
  836. @item
  837. For streaming at very low bitrate application, use a low frame rate
  838. and a small GOP size. This is especially true for RealVideo where
  839. the Linux player does not seem to be very fast, so it can miss
  840. frames. An example is:
  841. @example
  842. ffmpeg -g 3 -r 3 -t 10 -b:v 50k -s qcif -f rv10 /tmp/b.rm
  843. @end example
  844. @item
  845. The parameter 'q' which is displayed while encoding is the current
  846. quantizer. The value 1 indicates that a very good quality could
  847. be achieved. The value 31 indicates the worst quality. If q=31 appears
  848. too often, it means that the encoder cannot compress enough to meet
  849. your bitrate. You must either increase the bitrate, decrease the
  850. frame rate or decrease the frame size.
  851. @item
  852. If your computer is not fast enough, you can speed up the
  853. compression at the expense of the compression ratio. You can use
  854. '-me zero' to speed up motion estimation, and '-intra' to disable
  855. motion estimation completely (you have only I-frames, which means it
  856. is about as good as JPEG compression).
  857. @item
  858. To have very low audio bitrates, reduce the sampling frequency
  859. (down to 22050 Hz for MPEG audio, 22050 or 11025 for AC-3).
  860. @item
  861. To have a constant quality (but a variable bitrate), use the option
  862. '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
  863. quality).
  864. @end itemize
  865. @c man end TIPS
  866. @chapter Examples
  867. @c man begin EXAMPLES
  868. @section Video and Audio grabbing
  869. If you specify the input format and device then ffmpeg can grab video
  870. and audio directly.
  871. @example
  872. ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg
  873. @end example
  874. Or with an ALSA audio source (mono input, card id 1) instead of OSS:
  875. @example
  876. ffmpeg -f alsa -ac 1 -i hw:1 -f video4linux2 -i /dev/video0 /tmp/out.mpg
  877. @end example
  878. Note that you must activate the right video source and channel before
  879. launching ffmpeg with any TV viewer such as
  880. @uref{http://linux.bytesex.org/xawtv/, xawtv} by Gerd Knorr. You also
  881. have to set the audio recording levels correctly with a
  882. standard mixer.
  883. @section X11 grabbing
  884. Grab the X11 display with ffmpeg via
  885. @example
  886. ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
  887. @end example
  888. 0.0 is display.screen number of your X11 server, same as
  889. the DISPLAY environment variable.
  890. @example
  891. ffmpeg -f x11grab -s cif -r 25 -i :0.0+10,20 /tmp/out.mpg
  892. @end example
  893. 0.0 is display.screen number of your X11 server, same as the DISPLAY environment
  894. variable. 10 is the x-offset and 20 the y-offset for the grabbing.
  895. @section Video and Audio file format conversion
  896. Any supported file format and protocol can serve as input to ffmpeg:
  897. Examples:
  898. @itemize
  899. @item
  900. You can use YUV files as input:
  901. @example
  902. ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
  903. @end example
  904. It will use the files:
  905. @example
  906. /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
  907. /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
  908. @end example
  909. The Y files use twice the resolution of the U and V files. They are
  910. raw files, without header. They can be generated by all decent video
  911. decoders. You must specify the size of the image with the @option{-s} option
  912. if ffmpeg cannot guess it.
  913. @item
  914. You can input from a raw YUV420P file:
  915. @example
  916. ffmpeg -i /tmp/test.yuv /tmp/out.avi
  917. @end example
  918. test.yuv is a file containing raw YUV planar data. Each frame is composed
  919. of the Y plane followed by the U and V planes at half vertical and
  920. horizontal resolution.
  921. @item
  922. You can output to a raw YUV420P file:
  923. @example
  924. ffmpeg -i mydivx.avi hugefile.yuv
  925. @end example
  926. @item
  927. You can set several input files and output files:
  928. @example
  929. ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
  930. @end example
  931. Converts the audio file a.wav and the raw YUV video file a.yuv
  932. to MPEG file a.mpg.
  933. @item
  934. You can also do audio and video conversions at the same time:
  935. @example
  936. ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2
  937. @end example
  938. Converts a.wav to MPEG audio at 22050 Hz sample rate.
  939. @item
  940. You can encode to several formats at the same time and define a
  941. mapping from input stream to output streams:
  942. @example
  943. ffmpeg -i /tmp/a.wav -map 0:a -b:a 64k /tmp/a.mp2 -map 0:a -b:a 128k /tmp/b.mp2
  944. @end example
  945. Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
  946. file:index' specifies which input stream is used for each output
  947. stream, in the order of the definition of output streams.
  948. @item
  949. You can transcode decrypted VOBs:
  950. @example
  951. ffmpeg -i snatch_1.vob -f avi -c:v mpeg4 -b:v 800k -g 300 -bf 2 -c:a libmp3lame -b:a 128k snatch.avi
  952. @end example
  953. This is a typical DVD ripping example; the input is a VOB file, the
  954. output an AVI file with MPEG-4 video and MP3 audio. Note that in this
  955. command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
  956. GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
  957. input video. Furthermore, the audio stream is MP3-encoded so you need
  958. to enable LAME support by passing @code{--enable-libmp3lame} to configure.
  959. The mapping is particularly useful for DVD transcoding
  960. to get the desired audio language.
  961. NOTE: To see the supported input formats, use @code{ffmpeg -formats}.
  962. @item
  963. You can extract images from a video, or create a video from many images:
  964. For extracting images from a video:
  965. @example
  966. ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
  967. @end example
  968. This will extract one video frame per second from the video and will
  969. output them in files named @file{foo-001.jpeg}, @file{foo-002.jpeg},
  970. etc. Images will be rescaled to fit the new WxH values.
  971. If you want to extract just a limited number of frames, you can use the
  972. above command in combination with the -vframes or -t option, or in
  973. combination with -ss to start extracting from a certain point in time.
  974. For creating a video from many images:
  975. @example
  976. ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi
  977. @end example
  978. The syntax @code{foo-%03d.jpeg} specifies to use a decimal number
  979. composed of three digits padded with zeroes to express the sequence
  980. number. It is the same syntax supported by the C printf function, but
  981. only formats accepting a normal integer are suitable.
  982. @item
  983. You can put many streams of the same type in the output:
  984. @example
  985. ffmpeg -i test1.avi -i test2.avi -map 0.3 -map 0.2 -map 0.1 -map 0.0 -c copy test12.nut
  986. @end example
  987. The resulting output file @file{test12.avi} will contain first four streams from
  988. the input file in reverse order.
  989. @end itemize
  990. @c man end EXAMPLES
  991. @include eval.texi
  992. @include decoders.texi
  993. @include encoders.texi
  994. @include demuxers.texi
  995. @include muxers.texi
  996. @include indevs.texi
  997. @include outdevs.texi
  998. @include protocols.texi
  999. @include bitstream_filters.texi
  1000. @include filters.texi
  1001. @include metadata.texi
  1002. @ignore
  1003. @setfilename ffmpeg
  1004. @settitle ffmpeg video converter
  1005. @c man begin SEEALSO
  1006. ffplay(1), ffprobe(1), ffserver(1) and the FFmpeg HTML documentation
  1007. @c man end
  1008. @c man begin AUTHORS
  1009. See git history
  1010. @c man end
  1011. @end ignore
  1012. @bye