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.

1068 lines
31KB

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