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 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[:metadata_specifier] @var{key}=@var{value}
  126. Set a metadata key/value pair.
  127. An optional @var{metadata_specifier} may be given to set metadata
  128. on streams or chapters. See @code{-map_metadata} documentation for
  129. details.
  130. This option overrides metadata set with @code{-map_metadata}. It is
  131. also possible to delete metadata by using an empty value.
  132. For example, for setting the title in the output file:
  133. @example
  134. avconv -i in.avi -metadata title="my title" out.flv
  135. @end example
  136. To set the language of the second stream:
  137. @example
  138. avconv -i INPUT -metadata:s:1 language=eng OUTPUT
  139. @end example
  140. @item -v @var{number}
  141. Set the logging verbosity level.
  142. @item -target @var{type}
  143. Specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd",
  144. "ntsc-svcd", ... ). All the format options (bitrate, codecs,
  145. buffer sizes) are then set automatically. You can just type:
  146. @example
  147. avconv -i myfile.avi -target vcd /tmp/vcd.mpg
  148. @end example
  149. Nevertheless you can specify additional options as long as you know
  150. they do not conflict with the standard, as in:
  151. @example
  152. avconv -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
  153. @end example
  154. @item -dframes @var{number}
  155. Set the number of data frames to record. This is an alias for @code{-frames:d}.
  156. @item -slang @var{code}
  157. Set the ISO 639 language code (3 letters) of the current subtitle stream.
  158. @item -frames[:stream_specifier] @var{framecount}
  159. Stop writing to the stream after @var{framecount} frames.
  160. @end table
  161. @section Video Options
  162. @table @option
  163. @item -vframes @var{number}
  164. Set the number of video frames to record. This is an alias for @code{-frames:v}.
  165. @item -r @var{fps}
  166. Set frame rate (Hz value, fraction or abbreviation), (default = 25).
  167. @item -s @var{size}
  168. Set frame size. The format is @samp{wxh} (ffserver default = 160x128, avconv default = same as source).
  169. The following abbreviations are recognized:
  170. @table @samp
  171. @item sqcif
  172. 128x96
  173. @item qcif
  174. 176x144
  175. @item cif
  176. 352x288
  177. @item 4cif
  178. 704x576
  179. @item 16cif
  180. 1408x1152
  181. @item qqvga
  182. 160x120
  183. @item qvga
  184. 320x240
  185. @item vga
  186. 640x480
  187. @item svga
  188. 800x600
  189. @item xga
  190. 1024x768
  191. @item uxga
  192. 1600x1200
  193. @item qxga
  194. 2048x1536
  195. @item sxga
  196. 1280x1024
  197. @item qsxga
  198. 2560x2048
  199. @item hsxga
  200. 5120x4096
  201. @item wvga
  202. 852x480
  203. @item wxga
  204. 1366x768
  205. @item wsxga
  206. 1600x1024
  207. @item wuxga
  208. 1920x1200
  209. @item woxga
  210. 2560x1600
  211. @item wqsxga
  212. 3200x2048
  213. @item wquxga
  214. 3840x2400
  215. @item whsxga
  216. 6400x4096
  217. @item whuxga
  218. 7680x4800
  219. @item cga
  220. 320x200
  221. @item ega
  222. 640x350
  223. @item hd480
  224. 852x480
  225. @item hd720
  226. 1280x720
  227. @item hd1080
  228. 1920x1080
  229. @end table
  230. @item -aspect @var{aspect}
  231. Set the video display aspect ratio specified by @var{aspect}.
  232. @var{aspect} can be a floating point number string, or a string of the
  233. form @var{num}:@var{den}, where @var{num} and @var{den} are the
  234. numerator and denominator of the aspect ratio. For example "4:3",
  235. "16:9", "1.3333", and "1.7777" are valid argument values.
  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 -force_key_frames @var{time}[,@var{time}...]
  494. Force key frames at the specified timestamps, more precisely at the first
  495. frames after each specified time.
  496. This option can be useful to ensure that a seek point is present at a
  497. chapter mark or any other designated place in the output file.
  498. The timestamps must be specified in ascending order.
  499. @end table
  500. @section Audio Options
  501. @table @option
  502. @item -aframes @var{number}
  503. Set the number of audio frames to record. This is an alias for @code{-frames:a}.
  504. @item -ar @var{freq}
  505. Set the audio sampling frequency. For output streams it is set by
  506. default to the frequency of the corresponding input stream. For input
  507. streams this option only makes sense for audio grabbing devices and raw
  508. demuxers and is mapped to the corresponding demuxer options.
  509. @item -aq @var{q}
  510. Set the audio quality (codec-specific, VBR).
  511. @item -ac @var{channels}
  512. Set the number of audio channels. For output streams it is set by
  513. default to the number of input audio channels. For input streams
  514. this option only makes sense for audio grabbing devices and raw demuxers
  515. and is mapped to the corresponding demuxer options.
  516. @item -an
  517. Disable audio recording.
  518. @item -acodec @var{codec}
  519. Set the audio codec. This is an alias for @code{-codec:a}.
  520. @item -alang @var{code}
  521. Set the ISO 639 language code (3 letters) of the current audio stream.
  522. @end table
  523. @section Advanced Audio options:
  524. @table @option
  525. @item -atag @var{fourcc/tag}
  526. Force audio tag/fourcc.
  527. @item -audio_service_type @var{type}
  528. Set the type of service that the audio stream contains.
  529. @table @option
  530. @item ma
  531. Main Audio Service (default)
  532. @item ef
  533. Effects
  534. @item vi
  535. Visually Impaired
  536. @item hi
  537. Hearing Impaired
  538. @item di
  539. Dialogue
  540. @item co
  541. Commentary
  542. @item em
  543. Emergency
  544. @item vo
  545. Voice Over
  546. @item ka
  547. Karaoke
  548. @end table
  549. @end table
  550. @section Subtitle options:
  551. @table @option
  552. @item -scodec @var{codec}
  553. Set the subtitle codec. This is an alias for @code{-codec:s}.
  554. @item -slang @var{code}
  555. Set the ISO 639 language code (3 letters) of the current subtitle stream.
  556. @item -sn
  557. Disable subtitle recording.
  558. @end table
  559. @section Audio/Video grab options
  560. @table @option
  561. @item -isync
  562. Synchronize read on input.
  563. @end table
  564. @section Advanced options
  565. @table @option
  566. @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}]]
  567. Designate one or more input streams as a source for the output file. Each input
  568. stream is identified by the input file index @var{input_file_id} and
  569. the input stream index @var{input_stream_id} within the input
  570. file. Both indices start at 0. If specified,
  571. @var{sync_file_id}:@var{sync_stream_id} sets which input stream
  572. is used as a presentation sync reference.
  573. If @var{input_stream_type} is specified -- 'v' for video, 'a' for audio, 's' for
  574. subtitle and 'd' for data -- then @var{input_stream_id} counts only the streams
  575. of this type. Same for @var{sync_stream_type}.
  576. @var{input_stream_id} may be omitted, in which case all streams of the given
  577. type are mapped (or all streams in the file, if no type is specified).
  578. The first @code{-map} option on the command line specifies the
  579. source for output stream 0, the second @code{-map} option specifies
  580. the source for output stream 1, etc.
  581. A @code{-} character before the stream identifier creates a "negative" mapping.
  582. It disables matching streams from already created mappings.
  583. For example, to map ALL streams from the first input file to output
  584. @example
  585. avconv -i INPUT -map 0 output
  586. @end example
  587. For example, if you have two audio streams in the first input file,
  588. these streams are identified by "0:0" and "0:1". You can use
  589. @code{-map} to select which streams to place in an output file. For
  590. example:
  591. @example
  592. avconv -i INPUT -map 0:1 out.wav
  593. @end example
  594. will map the input stream in @file{INPUT} identified by "0:1" to
  595. the (single) output stream in @file{out.wav}.
  596. For example, to select the stream with index 2 from input file
  597. @file{a.mov} (specified by the identifier "0:2"), and stream with
  598. index 6 from input @file{b.mov} (specified by the identifier "1:6"),
  599. and copy them to the output file @file{out.mov}:
  600. @example
  601. avconv -i a.mov -i b.mov -c copy -map 0:2 -map 1:6 out.mov
  602. @end example
  603. To select all video and the third audio stream from an input file:
  604. @example
  605. avconv -i INPUT -map 0:v -map 0:a:2 OUTPUT
  606. @end example
  607. To map all the streams except the second audio, use negative mappings
  608. @example
  609. avconv -i INPUT -map 0 -map -0:a:1 OUTPUT
  610. @end example
  611. Note that using this option disables the default mappings for this output file.
  612. @item -map_metadata[:@var{metadata_type}][:@var{index}] @var{infile}[:@var{metadata_type}][:@var{index}]
  613. Set metadata information of the next output file from @var{infile}. Note that
  614. those are file indices (zero-based), not filenames.
  615. Optional @var{metadata_type} parameters specify, which metadata to copy - (g)lobal
  616. (i.e. metadata that applies to the whole file), per-(s)tream, per-(c)hapter or
  617. per-(p)rogram. All metadata specifiers other than global must be followed by the
  618. stream/chapter/program index. If metadata specifier is omitted, it defaults to
  619. global.
  620. By default, global metadata is copied from the first input file,
  621. per-stream and per-chapter metadata is copied along with streams/chapters. These
  622. default mappings are disabled by creating any mapping of the relevant type. A negative
  623. file index can be used to create a dummy mapping that just disables automatic copying.
  624. For example to copy metadata from the first stream of the input file to global metadata
  625. of the output file:
  626. @example
  627. avconv -i in.ogg -map_metadata 0:s:0 out.mp3
  628. @end example
  629. @item -map_chapters @var{input_file_index}
  630. Copy chapters from input file with index @var{input_file_index} to the next
  631. output file. If no chapter mapping is specified, then chapters are copied from
  632. the first input file with at least one chapter. Use a negative file index to
  633. disable any chapter copying.
  634. @item -debug
  635. Print specific debug info.
  636. @item -benchmark
  637. Show benchmarking information at the end of an encode.
  638. Shows CPU time used and maximum memory consumption.
  639. Maximum memory consumption is not supported on all systems,
  640. it will usually display as 0 if not supported.
  641. @item -dump
  642. Dump each input packet.
  643. @item -hex
  644. When dumping packets, also dump the payload.
  645. @item -bitexact
  646. Only use bit exact algorithms (for codec testing).
  647. @item -ps @var{size}
  648. Set RTP payload size in bytes.
  649. @item -re
  650. Read input at native frame rate. Mainly used to simulate a grab device.
  651. @item -threads @var{count}
  652. Thread count.
  653. @item -vsync @var{parameter}
  654. Video sync method.
  655. @table @option
  656. @item 0
  657. Each frame is passed with its timestamp from the demuxer to the muxer.
  658. @item 1
  659. Frames will be duplicated and dropped to achieve exactly the requested
  660. constant framerate.
  661. @item 2
  662. Frames are passed through with their timestamp or dropped so as to
  663. prevent 2 frames from having the same timestamp.
  664. @item -1
  665. Chooses between 1 and 2 depending on muxer capabilities. This is the
  666. default method.
  667. @end table
  668. With -map you can select from which stream the timestamps should be
  669. taken. You can leave either video or audio unchanged and sync the
  670. remaining stream(s) to the unchanged one.
  671. @item -async @var{samples_per_second}
  672. Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
  673. the parameter is the maximum samples per second by which the audio is changed.
  674. -async 1 is a special case where only the start of the audio stream is corrected
  675. without any later correction.
  676. @item -copyts
  677. Copy timestamps from input to output.
  678. @item -copytb
  679. Copy input stream time base from input to output when stream copying.
  680. @item -shortest
  681. Finish encoding when the shortest input stream ends.
  682. @item -dts_delta_threshold
  683. Timestamp discontinuity delta threshold.
  684. @item -muxdelay @var{seconds}
  685. Set the maximum demux-decode delay.
  686. @item -muxpreload @var{seconds}
  687. Set the initial demux-decode delay.
  688. @item -streamid @var{output-stream-index}:@var{new-value}
  689. Assign a new stream-id value to an output stream. This option should be
  690. specified prior to the output filename to which it applies.
  691. For the situation where multiple output files exist, a streamid
  692. may be reassigned to a different value.
  693. For example, to set the stream 0 PID to 33 and the stream 1 PID to 36 for
  694. an output mpegts file:
  695. @example
  696. avconv -i infile -streamid 0:33 -streamid 1:36 out.ts
  697. @end example
  698. @item -bsf[:@var{stream_specifier}] @var{bitstream_filters}
  699. Set bitstream filters for matching streams. @var{bistream_filters} is
  700. a comma-separated list of bitstream filters. Use the @code{-bsfs} option
  701. to get the list of bitstream filters.
  702. @example
  703. avconv -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264
  704. @end example
  705. @example
  706. avconv -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt
  707. @end example
  708. @end table
  709. @c man end OPTIONS
  710. @chapter Tips
  711. @c man begin TIPS
  712. @itemize
  713. @item
  714. For streaming at very low bitrate application, use a low frame rate
  715. and a small GOP size. This is especially true for RealVideo where
  716. the Linux player does not seem to be very fast, so it can miss
  717. frames. An example is:
  718. @example
  719. avconv -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
  720. @end example
  721. @item
  722. The parameter 'q' which is displayed while encoding is the current
  723. quantizer. The value 1 indicates that a very good quality could
  724. be achieved. The value 31 indicates the worst quality. If q=31 appears
  725. too often, it means that the encoder cannot compress enough to meet
  726. your bitrate. You must either increase the bitrate, decrease the
  727. frame rate or decrease the frame size.
  728. @item
  729. If your computer is not fast enough, you can speed up the
  730. compression at the expense of the compression ratio. You can use
  731. '-me zero' to speed up motion estimation, and '-intra' to disable
  732. motion estimation completely (you have only I-frames, which means it
  733. is about as good as JPEG compression).
  734. @item
  735. To have very low audio bitrates, reduce the sampling frequency
  736. (down to 22050 Hz for MPEG audio, 22050 or 11025 for AC-3).
  737. @item
  738. To have a constant quality (but a variable bitrate), use the option
  739. '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
  740. quality).
  741. @end itemize
  742. @c man end TIPS
  743. @chapter Examples
  744. @c man begin EXAMPLES
  745. @section Video and Audio grabbing
  746. If you specify the input format and device then avconv can grab video
  747. and audio directly.
  748. @example
  749. avconv -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg
  750. @end example
  751. Note that you must activate the right video source and channel before
  752. launching avconv with any TV viewer such as
  753. @uref{http://linux.bytesex.org/xawtv/, xawtv} by Gerd Knorr. You also
  754. have to set the audio recording levels correctly with a
  755. standard mixer.
  756. @section X11 grabbing
  757. Grab the X11 display with avconv via
  758. @example
  759. avconv -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
  760. @end example
  761. 0.0 is display.screen number of your X11 server, same as
  762. the DISPLAY environment variable.
  763. @example
  764. avconv -f x11grab -s cif -r 25 -i :0.0+10,20 /tmp/out.mpg
  765. @end example
  766. 0.0 is display.screen number of your X11 server, same as the DISPLAY environment
  767. variable. 10 is the x-offset and 20 the y-offset for the grabbing.
  768. @section Video and Audio file format conversion
  769. Any supported file format and protocol can serve as input to avconv:
  770. Examples:
  771. @itemize
  772. @item
  773. You can use YUV files as input:
  774. @example
  775. avconv -i /tmp/test%d.Y /tmp/out.mpg
  776. @end example
  777. It will use the files:
  778. @example
  779. /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
  780. /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
  781. @end example
  782. The Y files use twice the resolution of the U and V files. They are
  783. raw files, without header. They can be generated by all decent video
  784. decoders. You must specify the size of the image with the @option{-s} option
  785. if avconv cannot guess it.
  786. @item
  787. You can input from a raw YUV420P file:
  788. @example
  789. avconv -i /tmp/test.yuv /tmp/out.avi
  790. @end example
  791. test.yuv is a file containing raw YUV planar data. Each frame is composed
  792. of the Y plane followed by the U and V planes at half vertical and
  793. horizontal resolution.
  794. @item
  795. You can output to a raw YUV420P file:
  796. @example
  797. avconv -i mydivx.avi hugefile.yuv
  798. @end example
  799. @item
  800. You can set several input files and output files:
  801. @example
  802. avconv -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
  803. @end example
  804. Converts the audio file a.wav and the raw YUV video file a.yuv
  805. to MPEG file a.mpg.
  806. @item
  807. You can also do audio and video conversions at the same time:
  808. @example
  809. avconv -i /tmp/a.wav -ar 22050 /tmp/a.mp2
  810. @end example
  811. Converts a.wav to MPEG audio at 22050 Hz sample rate.
  812. @item
  813. You can encode to several formats at the same time and define a
  814. mapping from input stream to output streams:
  815. @example
  816. avconv -i /tmp/a.wav -map 0:a -b 64k /tmp/a.mp2 -map 0:a -b 128k /tmp/b.mp2
  817. @end example
  818. Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
  819. file:index' specifies which input stream is used for each output
  820. stream, in the order of the definition of output streams.
  821. @item
  822. You can transcode decrypted VOBs:
  823. @example
  824. 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
  825. @end example
  826. This is a typical DVD ripping example; the input is a VOB file, the
  827. output an AVI file with MPEG-4 video and MP3 audio. Note that in this
  828. command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
  829. GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
  830. input video. Furthermore, the audio stream is MP3-encoded so you need
  831. to enable LAME support by passing @code{--enable-libmp3lame} to configure.
  832. The mapping is particularly useful for DVD transcoding
  833. to get the desired audio language.
  834. NOTE: To see the supported input formats, use @code{avconv -formats}.
  835. @item
  836. You can extract images from a video, or create a video from many images:
  837. For extracting images from a video:
  838. @example
  839. avconv -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
  840. @end example
  841. This will extract one video frame per second from the video and will
  842. output them in files named @file{foo-001.jpeg}, @file{foo-002.jpeg},
  843. etc. Images will be rescaled to fit the new WxH values.
  844. If you want to extract just a limited number of frames, you can use the
  845. above command in combination with the -vframes or -t option, or in
  846. combination with -ss to start extracting from a certain point in time.
  847. For creating a video from many images:
  848. @example
  849. avconv -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi
  850. @end example
  851. The syntax @code{foo-%03d.jpeg} specifies to use a decimal number
  852. composed of three digits padded with zeroes to express the sequence
  853. number. It is the same syntax supported by the C printf function, but
  854. only formats accepting a normal integer are suitable.
  855. @item
  856. You can put many streams of the same type in the output:
  857. @example
  858. avconv -i test1.avi -i test2.avi -map 0.3 -map 0.2 -map 0.1 -map 0.0 -c copy test12.nut
  859. @end example
  860. The resulting output file @file{test12.avi} will contain first four streams from
  861. the input file in reverse order.
  862. @end itemize
  863. @c man end EXAMPLES
  864. @include eval.texi
  865. @include encoders.texi
  866. @include demuxers.texi
  867. @include muxers.texi
  868. @include indevs.texi
  869. @include outdevs.texi
  870. @include protocols.texi
  871. @include bitstream_filters.texi
  872. @include filters.texi
  873. @include metadata.texi
  874. @ignore
  875. @setfilename avconv
  876. @settitle avconv video converter
  877. @c man begin SEEALSO
  878. ffplay(1), ffprobe(1), ffserver(1) and the FFmpeg HTML documentation
  879. @c man end
  880. @c man begin AUTHORS
  881. The Libav developers
  882. @c man end
  883. @end ignore
  884. @bye