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.

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