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.

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