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.

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