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.

1037 lines
30KB

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