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.

1013 lines
32KB

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