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.

3122 lines
89KB

  1. @chapter Encoders
  2. @c man begin ENCODERS
  3. Encoders are configured elements in FFmpeg which allow the encoding of
  4. multimedia streams.
  5. When you configure your FFmpeg build, all the supported native encoders
  6. are enabled by default. Encoders requiring an external library must be enabled
  7. manually via the corresponding @code{--enable-lib} option. You can list all
  8. available encoders using the configure option @code{--list-encoders}.
  9. You can disable all the encoders with the configure option
  10. @code{--disable-encoders} and selectively enable / disable single encoders
  11. with the options @code{--enable-encoder=@var{ENCODER}} /
  12. @code{--disable-encoder=@var{ENCODER}}.
  13. The option @code{-encoders} of the ff* tools will display the list of
  14. enabled encoders.
  15. @c man end ENCODERS
  16. @chapter Audio Encoders
  17. @c man begin AUDIO ENCODERS
  18. A description of some of the currently available audio encoders
  19. follows.
  20. @anchor{aacenc}
  21. @section aac
  22. Advanced Audio Coding (AAC) encoder.
  23. This encoder is the default AAC encoder, natively implemented into FFmpeg. Its
  24. quality is on par or better than libfdk_aac at the default bitrate of 128kbps.
  25. This encoder also implements more options, profiles and samplerates than
  26. other encoders (with only the AAC-HE profile pending to be implemented) so this
  27. encoder has become the default and is the recommended choice.
  28. @subsection Options
  29. @table @option
  30. @item b
  31. Set bit rate in bits/s. Setting this automatically activates constant bit rate
  32. (CBR) mode. If this option is unspecified it is set to 128kbps.
  33. @item q
  34. Set quality for variable bit rate (VBR) mode. This option is valid only using
  35. the @command{ffmpeg} command-line tool. For library interface users, use
  36. @option{global_quality}.
  37. @item cutoff
  38. Set cutoff frequency. If unspecified will allow the encoder to dynamically
  39. adjust the cutoff to improve clarity on low bitrates.
  40. @item aac_coder
  41. Set AAC encoder coding method. Possible values:
  42. @table @samp
  43. @item twoloop
  44. Two loop searching (TLS) method.
  45. This method first sets quantizers depending on band thresholds and then tries
  46. to find an optimal combination by adding or subtracting a specific value from
  47. all quantizers and adjusting some individual quantizer a little. Will tune
  48. itself based on whether @option{aac_is}, @option{aac_ms} and @option{aac_pns}
  49. are enabled.
  50. @item anmr
  51. Average noise to mask ratio (ANMR) trellis-based solution.
  52. This is an experimental coder which currently produces a lower quality, is more
  53. unstable and is slower than the default twoloop coder but has potential.
  54. Currently has no support for the @option{aac_is} or @option{aac_pns} options.
  55. Not currently recommended.
  56. @item fast
  57. Constant quantizer method.
  58. Uses a cheaper version of twoloop algorithm that doesn't try to do as many
  59. clever adjustments. Worse with low bitrates (less than 64kbps), but is better
  60. and much faster at higher bitrates.
  61. This is the default choice for a coder
  62. @end table
  63. @item aac_ms
  64. Sets mid/side coding mode. The default value of "auto" will automatically use
  65. M/S with bands which will benefit from such coding. Can be forced for all bands
  66. using the value "enable", which is mainly useful for debugging or disabled using
  67. "disable".
  68. @item aac_is
  69. Sets intensity stereo coding tool usage. By default, it's enabled and will
  70. automatically toggle IS for similar pairs of stereo bands if it's beneficial.
  71. Can be disabled for debugging by setting the value to "disable".
  72. @item aac_pns
  73. Uses perceptual noise substitution to replace low entropy high frequency bands
  74. with imperceptible white noise during the decoding process. By default, it's
  75. enabled, but can be disabled for debugging purposes by using "disable".
  76. @item aac_tns
  77. Enables the use of a multitap FIR filter which spans through the high frequency
  78. bands to hide quantization noise during the encoding process and is reverted
  79. by the decoder. As well as decreasing unpleasant artifacts in the high range
  80. this also reduces the entropy in the high bands and allows for more bits to
  81. be used by the mid-low bands. By default it's enabled but can be disabled for
  82. debugging by setting the option to "disable".
  83. @item aac_ltp
  84. Enables the use of the long term prediction extension which increases coding
  85. efficiency in very low bandwidth situations such as encoding of voice or
  86. solo piano music by extending constant harmonic peaks in bands throughout
  87. frames. This option is implied by profile:a aac_low and is incompatible with
  88. aac_pred. Use in conjunction with @option{-ar} to decrease the samplerate.
  89. @item aac_pred
  90. Enables the use of a more traditional style of prediction where the spectral
  91. coefficients transmitted are replaced by the difference of the current
  92. coefficients minus the previous "predicted" coefficients. In theory and sometimes
  93. in practice this can improve quality for low to mid bitrate audio.
  94. This option implies the aac_main profile and is incompatible with aac_ltp.
  95. @item profile
  96. Sets the encoding profile, possible values:
  97. @table @samp
  98. @item aac_low
  99. The default, AAC "Low-complexity" profile. Is the most compatible and produces
  100. decent quality.
  101. @item mpeg2_aac_low
  102. Equivalent to @code{-profile:a aac_low -aac_pns 0}. PNS was introduced with the
  103. MPEG4 specifications.
  104. @item aac_ltp
  105. Long term prediction profile, is enabled by and will enable the @option{aac_ltp}
  106. option. Introduced in MPEG4.
  107. @item aac_main
  108. Main-type prediction profile, is enabled by and will enable the @option{aac_pred}
  109. option. Introduced in MPEG2.
  110. @end table
  111. If this option is unspecified it is set to @samp{aac_low}.
  112. @end table
  113. @section ac3 and ac3_fixed
  114. AC-3 audio encoders.
  115. These encoders implement part of ATSC A/52:2010 and ETSI TS 102 366, as well as
  116. the undocumented RealAudio 3 (a.k.a. dnet).
  117. The @var{ac3} encoder uses floating-point math, while the @var{ac3_fixed}
  118. encoder only uses fixed-point integer math. This does not mean that one is
  119. always faster, just that one or the other may be better suited to a
  120. particular system. The floating-point encoder will generally produce better
  121. quality audio for a given bitrate. The @var{ac3_fixed} encoder is not the
  122. default codec for any of the output formats, so it must be specified explicitly
  123. using the option @code{-acodec ac3_fixed} in order to use it.
  124. @subsection AC-3 Metadata
  125. The AC-3 metadata options are used to set parameters that describe the audio,
  126. but in most cases do not affect the audio encoding itself. Some of the options
  127. do directly affect or influence the decoding and playback of the resulting
  128. bitstream, while others are just for informational purposes. A few of the
  129. options will add bits to the output stream that could otherwise be used for
  130. audio data, and will thus affect the quality of the output. Those will be
  131. indicated accordingly with a note in the option list below.
  132. These parameters are described in detail in several publicly-available
  133. documents.
  134. @itemize
  135. @item @uref{http://www.atsc.org/cms/standards/a_52-2010.pdf,A/52:2010 - Digital Audio Compression (AC-3) (E-AC-3) Standard}
  136. @item @uref{http://www.atsc.org/cms/standards/a_54a_with_corr_1.pdf,A/54 - Guide to the Use of the ATSC Digital Television Standard}
  137. @item @uref{http://www.dolby.com/uploadedFiles/zz-_Shared_Assets/English_PDFs/Professional/18_Metadata.Guide.pdf,Dolby Metadata Guide}
  138. @item @uref{http://www.dolby.com/uploadedFiles/zz-_Shared_Assets/English_PDFs/Professional/46_DDEncodingGuidelines.pdf,Dolby Digital Professional Encoding Guidelines}
  139. @end itemize
  140. @subsubsection Metadata Control Options
  141. @table @option
  142. @item -per_frame_metadata @var{boolean}
  143. Allow Per-Frame Metadata. Specifies if the encoder should check for changing
  144. metadata for each frame.
  145. @table @option
  146. @item 0
  147. The metadata values set at initialization will be used for every frame in the
  148. stream. (default)
  149. @item 1
  150. Metadata values can be changed before encoding each frame.
  151. @end table
  152. @end table
  153. @subsubsection Downmix Levels
  154. @table @option
  155. @item -center_mixlev @var{level}
  156. Center Mix Level. The amount of gain the decoder should apply to the center
  157. channel when downmixing to stereo. This field will only be written to the
  158. bitstream if a center channel is present. The value is specified as a scale
  159. factor. There are 3 valid values:
  160. @table @option
  161. @item 0.707
  162. Apply -3dB gain
  163. @item 0.595
  164. Apply -4.5dB gain (default)
  165. @item 0.500
  166. Apply -6dB gain
  167. @end table
  168. @item -surround_mixlev @var{level}
  169. Surround Mix Level. The amount of gain the decoder should apply to the surround
  170. channel(s) when downmixing to stereo. This field will only be written to the
  171. bitstream if one or more surround channels are present. The value is specified
  172. as a scale factor. There are 3 valid values:
  173. @table @option
  174. @item 0.707
  175. Apply -3dB gain
  176. @item 0.500
  177. Apply -6dB gain (default)
  178. @item 0.000
  179. Silence Surround Channel(s)
  180. @end table
  181. @end table
  182. @subsubsection Audio Production Information
  183. Audio Production Information is optional information describing the mixing
  184. environment. Either none or both of the fields are written to the bitstream.
  185. @table @option
  186. @item -mixing_level @var{number}
  187. Mixing Level. Specifies peak sound pressure level (SPL) in the production
  188. environment when the mix was mastered. Valid values are 80 to 111, or -1 for
  189. unknown or not indicated. The default value is -1, but that value cannot be
  190. used if the Audio Production Information is written to the bitstream. Therefore,
  191. if the @code{room_type} option is not the default value, the @code{mixing_level}
  192. option must not be -1.
  193. @item -room_type @var{type}
  194. Room Type. Describes the equalization used during the final mixing session at
  195. the studio or on the dubbing stage. A large room is a dubbing stage with the
  196. industry standard X-curve equalization; a small room has flat equalization.
  197. This field will not be written to the bitstream if both the @code{mixing_level}
  198. option and the @code{room_type} option have the default values.
  199. @table @option
  200. @item 0
  201. @itemx notindicated
  202. Not Indicated (default)
  203. @item 1
  204. @itemx large
  205. Large Room
  206. @item 2
  207. @itemx small
  208. Small Room
  209. @end table
  210. @end table
  211. @subsubsection Other Metadata Options
  212. @table @option
  213. @item -copyright @var{boolean}
  214. Copyright Indicator. Specifies whether a copyright exists for this audio.
  215. @table @option
  216. @item 0
  217. @itemx off
  218. No Copyright Exists (default)
  219. @item 1
  220. @itemx on
  221. Copyright Exists
  222. @end table
  223. @item -dialnorm @var{value}
  224. Dialogue Normalization. Indicates how far the average dialogue level of the
  225. program is below digital 100% full scale (0 dBFS). This parameter determines a
  226. level shift during audio reproduction that sets the average volume of the
  227. dialogue to a preset level. The goal is to match volume level between program
  228. sources. A value of -31dB will result in no volume level change, relative to
  229. the source volume, during audio reproduction. Valid values are whole numbers in
  230. the range -31 to -1, with -31 being the default.
  231. @item -dsur_mode @var{mode}
  232. Dolby Surround Mode. Specifies whether the stereo signal uses Dolby Surround
  233. (Pro Logic). This field will only be written to the bitstream if the audio
  234. stream is stereo. Using this option does @b{NOT} mean the encoder will actually
  235. apply Dolby Surround processing.
  236. @table @option
  237. @item 0
  238. @itemx notindicated
  239. Not Indicated (default)
  240. @item 1
  241. @itemx off
  242. Not Dolby Surround Encoded
  243. @item 2
  244. @itemx on
  245. Dolby Surround Encoded
  246. @end table
  247. @item -original @var{boolean}
  248. Original Bit Stream Indicator. Specifies whether this audio is from the
  249. original source and not a copy.
  250. @table @option
  251. @item 0
  252. @itemx off
  253. Not Original Source
  254. @item 1
  255. @itemx on
  256. Original Source (default)
  257. @end table
  258. @end table
  259. @subsection Extended Bitstream Information
  260. The extended bitstream options are part of the Alternate Bit Stream Syntax as
  261. specified in Annex D of the A/52:2010 standard. It is grouped into 2 parts.
  262. If any one parameter in a group is specified, all values in that group will be
  263. written to the bitstream. Default values are used for those that are written
  264. but have not been specified. If the mixing levels are written, the decoder
  265. will use these values instead of the ones specified in the @code{center_mixlev}
  266. and @code{surround_mixlev} options if it supports the Alternate Bit Stream
  267. Syntax.
  268. @subsubsection Extended Bitstream Information - Part 1
  269. @table @option
  270. @item -dmix_mode @var{mode}
  271. Preferred Stereo Downmix Mode. Allows the user to select either Lt/Rt
  272. (Dolby Surround) or Lo/Ro (normal stereo) as the preferred stereo downmix mode.
  273. @table @option
  274. @item 0
  275. @itemx notindicated
  276. Not Indicated (default)
  277. @item 1
  278. @itemx ltrt
  279. Lt/Rt Downmix Preferred
  280. @item 2
  281. @itemx loro
  282. Lo/Ro Downmix Preferred
  283. @end table
  284. @item -ltrt_cmixlev @var{level}
  285. Lt/Rt Center Mix Level. The amount of gain the decoder should apply to the
  286. center channel when downmixing to stereo in Lt/Rt mode.
  287. @table @option
  288. @item 1.414
  289. Apply +3dB gain
  290. @item 1.189
  291. Apply +1.5dB gain
  292. @item 1.000
  293. Apply 0dB gain
  294. @item 0.841
  295. Apply -1.5dB gain
  296. @item 0.707
  297. Apply -3.0dB gain
  298. @item 0.595
  299. Apply -4.5dB gain (default)
  300. @item 0.500
  301. Apply -6.0dB gain
  302. @item 0.000
  303. Silence Center Channel
  304. @end table
  305. @item -ltrt_surmixlev @var{level}
  306. Lt/Rt Surround Mix Level. The amount of gain the decoder should apply to the
  307. surround channel(s) when downmixing to stereo in Lt/Rt mode.
  308. @table @option
  309. @item 0.841
  310. Apply -1.5dB gain
  311. @item 0.707
  312. Apply -3.0dB gain
  313. @item 0.595
  314. Apply -4.5dB gain
  315. @item 0.500
  316. Apply -6.0dB gain (default)
  317. @item 0.000
  318. Silence Surround Channel(s)
  319. @end table
  320. @item -loro_cmixlev @var{level}
  321. Lo/Ro Center Mix Level. The amount of gain the decoder should apply to the
  322. center channel when downmixing to stereo in Lo/Ro mode.
  323. @table @option
  324. @item 1.414
  325. Apply +3dB gain
  326. @item 1.189
  327. Apply +1.5dB gain
  328. @item 1.000
  329. Apply 0dB gain
  330. @item 0.841
  331. Apply -1.5dB gain
  332. @item 0.707
  333. Apply -3.0dB gain
  334. @item 0.595
  335. Apply -4.5dB gain (default)
  336. @item 0.500
  337. Apply -6.0dB gain
  338. @item 0.000
  339. Silence Center Channel
  340. @end table
  341. @item -loro_surmixlev @var{level}
  342. Lo/Ro Surround Mix Level. The amount of gain the decoder should apply to the
  343. surround channel(s) when downmixing to stereo in Lo/Ro mode.
  344. @table @option
  345. @item 0.841
  346. Apply -1.5dB gain
  347. @item 0.707
  348. Apply -3.0dB gain
  349. @item 0.595
  350. Apply -4.5dB gain
  351. @item 0.500
  352. Apply -6.0dB gain (default)
  353. @item 0.000
  354. Silence Surround Channel(s)
  355. @end table
  356. @end table
  357. @subsubsection Extended Bitstream Information - Part 2
  358. @table @option
  359. @item -dsurex_mode @var{mode}
  360. Dolby Surround EX Mode. Indicates whether the stream uses Dolby Surround EX
  361. (7.1 matrixed to 5.1). Using this option does @b{NOT} mean the encoder will actually
  362. apply Dolby Surround EX processing.
  363. @table @option
  364. @item 0
  365. @itemx notindicated
  366. Not Indicated (default)
  367. @item 1
  368. @itemx on
  369. Dolby Surround EX Off
  370. @item 2
  371. @itemx off
  372. Dolby Surround EX On
  373. @end table
  374. @item -dheadphone_mode @var{mode}
  375. Dolby Headphone Mode. Indicates whether the stream uses Dolby Headphone
  376. encoding (multi-channel matrixed to 2.0 for use with headphones). Using this
  377. option does @b{NOT} mean the encoder will actually apply Dolby Headphone
  378. processing.
  379. @table @option
  380. @item 0
  381. @itemx notindicated
  382. Not Indicated (default)
  383. @item 1
  384. @itemx on
  385. Dolby Headphone Off
  386. @item 2
  387. @itemx off
  388. Dolby Headphone On
  389. @end table
  390. @item -ad_conv_type @var{type}
  391. A/D Converter Type. Indicates whether the audio has passed through HDCD A/D
  392. conversion.
  393. @table @option
  394. @item 0
  395. @itemx standard
  396. Standard A/D Converter (default)
  397. @item 1
  398. @itemx hdcd
  399. HDCD A/D Converter
  400. @end table
  401. @end table
  402. @subsection Other AC-3 Encoding Options
  403. @table @option
  404. @item -stereo_rematrixing @var{boolean}
  405. Stereo Rematrixing. Enables/Disables use of rematrixing for stereo input. This
  406. is an optional AC-3 feature that increases quality by selectively encoding
  407. the left/right channels as mid/side. This option is enabled by default, and it
  408. is highly recommended that it be left as enabled except for testing purposes.
  409. @item cutoff @var{frequency}
  410. Set lowpass cutoff frequency. If unspecified, the encoder selects a default
  411. determined by various other encoding parameters.
  412. @end table
  413. @subsection Floating-Point-Only AC-3 Encoding Options
  414. These options are only valid for the floating-point encoder and do not exist
  415. for the fixed-point encoder due to the corresponding features not being
  416. implemented in fixed-point.
  417. @table @option
  418. @item -channel_coupling @var{boolean}
  419. Enables/Disables use of channel coupling, which is an optional AC-3 feature
  420. that increases quality by combining high frequency information from multiple
  421. channels into a single channel. The per-channel high frequency information is
  422. sent with less accuracy in both the frequency and time domains. This allows
  423. more bits to be used for lower frequencies while preserving enough information
  424. to reconstruct the high frequencies. This option is enabled by default for the
  425. floating-point encoder and should generally be left as enabled except for
  426. testing purposes or to increase encoding speed.
  427. @table @option
  428. @item -1
  429. @itemx auto
  430. Selected by Encoder (default)
  431. @item 0
  432. @itemx off
  433. Disable Channel Coupling
  434. @item 1
  435. @itemx on
  436. Enable Channel Coupling
  437. @end table
  438. @item -cpl_start_band @var{number}
  439. Coupling Start Band. Sets the channel coupling start band, from 1 to 15. If a
  440. value higher than the bandwidth is used, it will be reduced to 1 less than the
  441. coupling end band. If @var{auto} is used, the start band will be determined by
  442. the encoder based on the bit rate, sample rate, and channel layout. This option
  443. has no effect if channel coupling is disabled.
  444. @table @option
  445. @item -1
  446. @itemx auto
  447. Selected by Encoder (default)
  448. @end table
  449. @end table
  450. @anchor{flac}
  451. @section flac
  452. FLAC (Free Lossless Audio Codec) Encoder
  453. @subsection Options
  454. The following options are supported by FFmpeg's flac encoder.
  455. @table @option
  456. @item compression_level
  457. Sets the compression level, which chooses defaults for many other options
  458. if they are not set explicitly. Valid values are from 0 to 12, 5 is the
  459. default.
  460. @item frame_size
  461. Sets the size of the frames in samples per channel.
  462. @item lpc_coeff_precision
  463. Sets the LPC coefficient precision, valid values are from 1 to 15, 15 is the
  464. default.
  465. @item lpc_type
  466. Sets the first stage LPC algorithm
  467. @table @samp
  468. @item none
  469. LPC is not used
  470. @item fixed
  471. fixed LPC coefficients
  472. @item levinson
  473. @item cholesky
  474. @end table
  475. @item lpc_passes
  476. Number of passes to use for Cholesky factorization during LPC analysis
  477. @item min_partition_order
  478. The minimum partition order
  479. @item max_partition_order
  480. The maximum partition order
  481. @item prediction_order_method
  482. @table @samp
  483. @item estimation
  484. @item 2level
  485. @item 4level
  486. @item 8level
  487. @item search
  488. Bruteforce search
  489. @item log
  490. @end table
  491. @item ch_mode
  492. Channel mode
  493. @table @samp
  494. @item auto
  495. The mode is chosen automatically for each frame
  496. @item indep
  497. Channels are independently coded
  498. @item left_side
  499. @item right_side
  500. @item mid_side
  501. @end table
  502. @item exact_rice_parameters
  503. Chooses if rice parameters are calculated exactly or approximately.
  504. if set to 1 then they are chosen exactly, which slows the code down slightly and
  505. improves compression slightly.
  506. @item multi_dim_quant
  507. Multi Dimensional Quantization. If set to 1 then a 2nd stage LPC algorithm is
  508. applied after the first stage to finetune the coefficients. This is quite slow
  509. and slightly improves compression.
  510. @end table
  511. @anchor{opusenc}
  512. @section opus
  513. Opus encoder.
  514. This is a native FFmpeg encoder for the Opus format. Currently its in development and
  515. only implements the CELT part of the codec. Its quality is usually worse and at best
  516. is equal to the libopus encoder.
  517. @subsection Options
  518. @table @option
  519. @item b
  520. Set bit rate in bits/s. If unspecified it uses the number of channels and the layout
  521. to make a good guess.
  522. @item opus_delay
  523. Sets the maximum delay in milliseconds. Lower delays than 20ms will very quickly
  524. decrease quality.
  525. @end table
  526. @anchor{libfdk-aac-enc}
  527. @section libfdk_aac
  528. libfdk-aac AAC (Advanced Audio Coding) encoder wrapper.
  529. The libfdk-aac library is based on the Fraunhofer FDK AAC code from
  530. the Android project.
  531. Requires the presence of the libfdk-aac headers and library during
  532. configuration. You need to explicitly configure the build with
  533. @code{--enable-libfdk-aac}. The library is also incompatible with GPL,
  534. so if you allow the use of GPL, you should configure with
  535. @code{--enable-gpl --enable-nonfree --enable-libfdk-aac}.
  536. This encoder is considered to produce output on par or worse at 128kbps to the
  537. @ref{aacenc,,the native FFmpeg AAC encoder} but can often produce better
  538. sounding audio at identical or lower bitrates and has support for the
  539. AAC-HE profiles.
  540. VBR encoding, enabled through the @option{vbr} or @option{flags
  541. +qscale} options, is experimental and only works with some
  542. combinations of parameters.
  543. Support for encoding 7.1 audio is only available with libfdk-aac 0.1.3 or
  544. higher.
  545. For more information see the fdk-aac project at
  546. @url{http://sourceforge.net/p/opencore-amr/fdk-aac/}.
  547. @subsection Options
  548. The following options are mapped on the shared FFmpeg codec options.
  549. @table @option
  550. @item b
  551. Set bit rate in bits/s. If the bitrate is not explicitly specified, it
  552. is automatically set to a suitable value depending on the selected
  553. profile.
  554. In case VBR mode is enabled the option is ignored.
  555. @item ar
  556. Set audio sampling rate (in Hz).
  557. @item channels
  558. Set the number of audio channels.
  559. @item flags +qscale
  560. Enable fixed quality, VBR (Variable Bit Rate) mode.
  561. Note that VBR is implicitly enabled when the @option{vbr} value is
  562. positive.
  563. @item cutoff
  564. Set cutoff frequency. If not specified (or explicitly set to 0) it
  565. will use a value automatically computed by the library. Default value
  566. is 0.
  567. @item profile
  568. Set audio profile.
  569. The following profiles are recognized:
  570. @table @samp
  571. @item aac_low
  572. Low Complexity AAC (LC)
  573. @item aac_he
  574. High Efficiency AAC (HE-AAC)
  575. @item aac_he_v2
  576. High Efficiency AAC version 2 (HE-AACv2)
  577. @item aac_ld
  578. Low Delay AAC (LD)
  579. @item aac_eld
  580. Enhanced Low Delay AAC (ELD)
  581. @end table
  582. If not specified it is set to @samp{aac_low}.
  583. @end table
  584. The following are private options of the libfdk_aac encoder.
  585. @table @option
  586. @item afterburner
  587. Enable afterburner feature if set to 1, disabled if set to 0. This
  588. improves the quality but also the required processing power.
  589. Default value is 1.
  590. @item eld_sbr
  591. Enable SBR (Spectral Band Replication) for ELD if set to 1, disabled
  592. if set to 0.
  593. Default value is 0.
  594. @item signaling
  595. Set SBR/PS signaling style.
  596. It can assume one of the following values:
  597. @table @samp
  598. @item default
  599. choose signaling implicitly (explicit hierarchical by default,
  600. implicit if global header is disabled)
  601. @item implicit
  602. implicit backwards compatible signaling
  603. @item explicit_sbr
  604. explicit SBR, implicit PS signaling
  605. @item explicit_hierarchical
  606. explicit hierarchical signaling
  607. @end table
  608. Default value is @samp{default}.
  609. @item latm
  610. Output LATM/LOAS encapsulated data if set to 1, disabled if set to 0.
  611. Default value is 0.
  612. @item header_period
  613. Set StreamMuxConfig and PCE repetition period (in frames) for sending
  614. in-band configuration buffers within LATM/LOAS transport layer.
  615. Must be a 16-bits non-negative integer.
  616. Default value is 0.
  617. @item vbr
  618. Set VBR mode, from 1 to 5. 1 is lowest quality (though still pretty
  619. good) and 5 is highest quality. A value of 0 will disable VBR, and CBR
  620. (Constant Bit Rate) is enabled.
  621. Currently only the @samp{aac_low} profile supports VBR encoding.
  622. VBR modes 1-5 correspond to roughly the following average bit rates:
  623. @table @samp
  624. @item 1
  625. 32 kbps/channel
  626. @item 2
  627. 40 kbps/channel
  628. @item 3
  629. 48-56 kbps/channel
  630. @item 4
  631. 64 kbps/channel
  632. @item 5
  633. about 80-96 kbps/channel
  634. @end table
  635. Default value is 0.
  636. @end table
  637. @subsection Examples
  638. @itemize
  639. @item
  640. Use @command{ffmpeg} to convert an audio file to VBR AAC in an M4A (MP4)
  641. container:
  642. @example
  643. ffmpeg -i input.wav -codec:a libfdk_aac -vbr 3 output.m4a
  644. @end example
  645. @item
  646. Use @command{ffmpeg} to convert an audio file to CBR 64k kbps AAC, using the
  647. High-Efficiency AAC profile:
  648. @example
  649. ffmpeg -i input.wav -c:a libfdk_aac -profile:a aac_he -b:a 64k output.m4a
  650. @end example
  651. @end itemize
  652. @anchor{libmp3lame}
  653. @section libmp3lame
  654. LAME (Lame Ain't an MP3 Encoder) MP3 encoder wrapper.
  655. Requires the presence of the libmp3lame headers and library during
  656. configuration. You need to explicitly configure the build with
  657. @code{--enable-libmp3lame}.
  658. See @ref{libshine} for a fixed-point MP3 encoder, although with a
  659. lower quality.
  660. @subsection Options
  661. The following options are supported by the libmp3lame wrapper. The
  662. @command{lame}-equivalent of the options are listed in parentheses.
  663. @table @option
  664. @item b (@emph{-b})
  665. Set bitrate expressed in bits/s for CBR or ABR. LAME @code{bitrate} is
  666. expressed in kilobits/s.
  667. @item q (@emph{-V})
  668. Set constant quality setting for VBR. This option is valid only
  669. using the @command{ffmpeg} command-line tool. For library interface
  670. users, use @option{global_quality}.
  671. @item compression_level (@emph{-q})
  672. Set algorithm quality. Valid arguments are integers in the 0-9 range,
  673. with 0 meaning highest quality but slowest, and 9 meaning fastest
  674. while producing the worst quality.
  675. @item cutoff (@emph{--lowpass})
  676. Set lowpass cutoff frequency. If unspecified, the encoder dynamically
  677. adjusts the cutoff.
  678. @item reservoir
  679. Enable use of bit reservoir when set to 1. Default value is 1. LAME
  680. has this enabled by default, but can be overridden by use
  681. @option{--nores} option.
  682. @item joint_stereo (@emph{-m j})
  683. Enable the encoder to use (on a frame by frame basis) either L/R
  684. stereo or mid/side stereo. Default value is 1.
  685. @item abr (@emph{--abr})
  686. Enable the encoder to use ABR when set to 1. The @command{lame}
  687. @option{--abr} sets the target bitrate, while this options only
  688. tells FFmpeg to use ABR still relies on @option{b} to set bitrate.
  689. @end table
  690. @section libopencore-amrnb
  691. OpenCORE Adaptive Multi-Rate Narrowband encoder.
  692. Requires the presence of the libopencore-amrnb headers and library during
  693. configuration. You need to explicitly configure the build with
  694. @code{--enable-libopencore-amrnb --enable-version3}.
  695. This is a mono-only encoder. Officially it only supports 8000Hz sample rate,
  696. but you can override it by setting @option{strict} to @samp{unofficial} or
  697. lower.
  698. @subsection Options
  699. @table @option
  700. @item b
  701. Set bitrate in bits per second. Only the following bitrates are supported,
  702. otherwise libavcodec will round to the nearest valid bitrate.
  703. @table @option
  704. @item 4750
  705. @item 5150
  706. @item 5900
  707. @item 6700
  708. @item 7400
  709. @item 7950
  710. @item 10200
  711. @item 12200
  712. @end table
  713. @item dtx
  714. Allow discontinuous transmission (generate comfort noise) when set to 1. The
  715. default value is 0 (disabled).
  716. @end table
  717. @section libopus
  718. libopus Opus Interactive Audio Codec encoder wrapper.
  719. Requires the presence of the libopus headers and library during
  720. configuration. You need to explicitly configure the build with
  721. @code{--enable-libopus}.
  722. @subsection Option Mapping
  723. Most libopus options are modelled after the @command{opusenc} utility from
  724. opus-tools. The following is an option mapping chart describing options
  725. supported by the libopus wrapper, and their @command{opusenc}-equivalent
  726. in parentheses.
  727. @table @option
  728. @item b (@emph{bitrate})
  729. Set the bit rate in bits/s. FFmpeg's @option{b} option is
  730. expressed in bits/s, while @command{opusenc}'s @option{bitrate} in
  731. kilobits/s.
  732. @item vbr (@emph{vbr}, @emph{hard-cbr}, and @emph{cvbr})
  733. Set VBR mode. The FFmpeg @option{vbr} option has the following
  734. valid arguments, with the @command{opusenc} equivalent options
  735. in parentheses:
  736. @table @samp
  737. @item off (@emph{hard-cbr})
  738. Use constant bit rate encoding.
  739. @item on (@emph{vbr})
  740. Use variable bit rate encoding (the default).
  741. @item constrained (@emph{cvbr})
  742. Use constrained variable bit rate encoding.
  743. @end table
  744. @item compression_level (@emph{comp})
  745. Set encoding algorithm complexity. Valid options are integers in
  746. the 0-10 range. 0 gives the fastest encodes but lower quality, while 10
  747. gives the highest quality but slowest encoding. The default is 10.
  748. @item frame_duration (@emph{framesize})
  749. Set maximum frame size, or duration of a frame in milliseconds. The
  750. argument must be exactly the following: 2.5, 5, 10, 20, 40, 60. Smaller
  751. frame sizes achieve lower latency but less quality at a given bitrate.
  752. Sizes greater than 20ms are only interesting at fairly low bitrates.
  753. The default is 20ms.
  754. @item packet_loss (@emph{expect-loss})
  755. Set expected packet loss percentage. The default is 0.
  756. @item application (N.A.)
  757. Set intended application type. Valid options are listed below:
  758. @table @samp
  759. @item voip
  760. Favor improved speech intelligibility.
  761. @item audio
  762. Favor faithfulness to the input (the default).
  763. @item lowdelay
  764. Restrict to only the lowest delay modes.
  765. @end table
  766. @item cutoff (N.A.)
  767. Set cutoff bandwidth in Hz. The argument must be exactly one of the
  768. following: 4000, 6000, 8000, 12000, or 20000, corresponding to
  769. narrowband, mediumband, wideband, super wideband, and fullband
  770. respectively. The default is 0 (cutoff disabled).
  771. @item mapping_family (@emph{mapping_family})
  772. Set channel mapping family to be used by the encoder. The default value of -1
  773. uses mapping family 0 for mono and stereo inputs, and mapping family 1
  774. otherwise. The default also disables the surround masking and LFE bandwidth
  775. optimzations in libopus, and requires that the input contains 8 channels or
  776. fewer.
  777. Other values include 0 for mono and stereo, 1 for surround sound with masking
  778. and LFE bandwidth optimizations, and 255 for independent streams with an
  779. unspecified channel layout.
  780. @item apply_phase_inv (N.A.) (requires libopus >= 1.2)
  781. If set to 0, disables the use of phase inversion for intensity stereo,
  782. improving the quality of mono downmixes, but slightly reducing normal stereo
  783. quality. The default is 1 (phase inversion enabled).
  784. @end table
  785. @anchor{libshine}
  786. @section libshine
  787. Shine Fixed-Point MP3 encoder wrapper.
  788. Shine is a fixed-point MP3 encoder. It has a far better performance on
  789. platforms without an FPU, e.g. armel CPUs, and some phones and tablets.
  790. However, as it is more targeted on performance than quality, it is not on par
  791. with LAME and other production-grade encoders quality-wise. Also, according to
  792. the project's homepage, this encoder may not be free of bugs as the code was
  793. written a long time ago and the project was dead for at least 5 years.
  794. This encoder only supports stereo and mono input. This is also CBR-only.
  795. The original project (last updated in early 2007) is at
  796. @url{http://sourceforge.net/projects/libshine-fxp/}. We only support the
  797. updated fork by the Savonet/Liquidsoap project at @url{https://github.com/savonet/shine}.
  798. Requires the presence of the libshine headers and library during
  799. configuration. You need to explicitly configure the build with
  800. @code{--enable-libshine}.
  801. See also @ref{libmp3lame}.
  802. @subsection Options
  803. The following options are supported by the libshine wrapper. The
  804. @command{shineenc}-equivalent of the options are listed in parentheses.
  805. @table @option
  806. @item b (@emph{-b})
  807. Set bitrate expressed in bits/s for CBR. @command{shineenc} @option{-b} option
  808. is expressed in kilobits/s.
  809. @end table
  810. @section libtwolame
  811. TwoLAME MP2 encoder wrapper.
  812. Requires the presence of the libtwolame headers and library during
  813. configuration. You need to explicitly configure the build with
  814. @code{--enable-libtwolame}.
  815. @subsection Options
  816. The following options are supported by the libtwolame wrapper. The
  817. @command{twolame}-equivalent options follow the FFmpeg ones and are in
  818. parentheses.
  819. @table @option
  820. @item b (@emph{-b})
  821. Set bitrate expressed in bits/s for CBR. @command{twolame} @option{b}
  822. option is expressed in kilobits/s. Default value is 128k.
  823. @item q (@emph{-V})
  824. Set quality for experimental VBR support. Maximum value range is
  825. from -50 to 50, useful range is from -10 to 10. The higher the
  826. value, the better the quality. This option is valid only using the
  827. @command{ffmpeg} command-line tool. For library interface users,
  828. use @option{global_quality}.
  829. @item mode (@emph{--mode})
  830. Set the mode of the resulting audio. Possible values:
  831. @table @samp
  832. @item auto
  833. Choose mode automatically based on the input. This is the default.
  834. @item stereo
  835. Stereo
  836. @item joint_stereo
  837. Joint stereo
  838. @item dual_channel
  839. Dual channel
  840. @item mono
  841. Mono
  842. @end table
  843. @item psymodel (@emph{--psyc-mode})
  844. Set psychoacoustic model to use in encoding. The argument must be
  845. an integer between -1 and 4, inclusive. The higher the value, the
  846. better the quality. The default value is 3.
  847. @item energy_levels (@emph{--energy})
  848. Enable energy levels extensions when set to 1. The default value is
  849. 0 (disabled).
  850. @item error_protection (@emph{--protect})
  851. Enable CRC error protection when set to 1. The default value is 0
  852. (disabled).
  853. @item copyright (@emph{--copyright})
  854. Set MPEG audio copyright flag when set to 1. The default value is 0
  855. (disabled).
  856. @item original (@emph{--original})
  857. Set MPEG audio original flag when set to 1. The default value is 0
  858. (disabled).
  859. @end table
  860. @section libvo-amrwbenc
  861. VisualOn Adaptive Multi-Rate Wideband encoder.
  862. Requires the presence of the libvo-amrwbenc headers and library during
  863. configuration. You need to explicitly configure the build with
  864. @code{--enable-libvo-amrwbenc --enable-version3}.
  865. This is a mono-only encoder. Officially it only supports 16000Hz sample
  866. rate, but you can override it by setting @option{strict} to
  867. @samp{unofficial} or lower.
  868. @subsection Options
  869. @table @option
  870. @item b
  871. Set bitrate in bits/s. Only the following bitrates are supported, otherwise
  872. libavcodec will round to the nearest valid bitrate.
  873. @table @samp
  874. @item 6600
  875. @item 8850
  876. @item 12650
  877. @item 14250
  878. @item 15850
  879. @item 18250
  880. @item 19850
  881. @item 23050
  882. @item 23850
  883. @end table
  884. @item dtx
  885. Allow discontinuous transmission (generate comfort noise) when set to 1. The
  886. default value is 0 (disabled).
  887. @end table
  888. @section libvorbis
  889. libvorbis encoder wrapper.
  890. Requires the presence of the libvorbisenc headers and library during
  891. configuration. You need to explicitly configure the build with
  892. @code{--enable-libvorbis}.
  893. @subsection Options
  894. The following options are supported by the libvorbis wrapper. The
  895. @command{oggenc}-equivalent of the options are listed in parentheses.
  896. To get a more accurate and extensive documentation of the libvorbis
  897. options, consult the libvorbisenc's and @command{oggenc}'s documentations.
  898. See @url{http://xiph.org/vorbis/},
  899. @url{http://wiki.xiph.org/Vorbis-tools}, and oggenc(1).
  900. @table @option
  901. @item b (@emph{-b})
  902. Set bitrate expressed in bits/s for ABR. @command{oggenc} @option{-b} is
  903. expressed in kilobits/s.
  904. @item q (@emph{-q})
  905. Set constant quality setting for VBR. The value should be a float
  906. number in the range of -1.0 to 10.0. The higher the value, the better
  907. the quality. The default value is @samp{3.0}.
  908. This option is valid only using the @command{ffmpeg} command-line tool.
  909. For library interface users, use @option{global_quality}.
  910. @item cutoff (@emph{--advanced-encode-option lowpass_frequency=N})
  911. Set cutoff bandwidth in Hz, a value of 0 disables cutoff. @command{oggenc}'s
  912. related option is expressed in kHz. The default value is @samp{0} (cutoff
  913. disabled).
  914. @item minrate (@emph{-m})
  915. Set minimum bitrate expressed in bits/s. @command{oggenc} @option{-m} is
  916. expressed in kilobits/s.
  917. @item maxrate (@emph{-M})
  918. Set maximum bitrate expressed in bits/s. @command{oggenc} @option{-M} is
  919. expressed in kilobits/s. This only has effect on ABR mode.
  920. @item iblock (@emph{--advanced-encode-option impulse_noisetune=N})
  921. Set noise floor bias for impulse blocks. The value is a float number from
  922. -15.0 to 0.0. A negative bias instructs the encoder to pay special attention
  923. to the crispness of transients in the encoded audio. The tradeoff for better
  924. transient response is a higher bitrate.
  925. @end table
  926. @anchor{libwavpack}
  927. @section libwavpack
  928. A wrapper providing WavPack encoding through libwavpack.
  929. Only lossless mode using 32-bit integer samples is supported currently.
  930. Requires the presence of the libwavpack headers and library during
  931. configuration. You need to explicitly configure the build with
  932. @code{--enable-libwavpack}.
  933. Note that a libavcodec-native encoder for the WavPack codec exists so users can
  934. encode audios with this codec without using this encoder. See @ref{wavpackenc}.
  935. @subsection Options
  936. @command{wavpack} command line utility's corresponding options are listed in
  937. parentheses, if any.
  938. @table @option
  939. @item frame_size (@emph{--blocksize})
  940. Default is 32768.
  941. @item compression_level
  942. Set speed vs. compression tradeoff. Acceptable arguments are listed below:
  943. @table @samp
  944. @item 0 (@emph{-f})
  945. Fast mode.
  946. @item 1
  947. Normal (default) settings.
  948. @item 2 (@emph{-h})
  949. High quality.
  950. @item 3 (@emph{-hh})
  951. Very high quality.
  952. @item 4-8 (@emph{-hh -x}@var{EXTRAPROC})
  953. Same as @samp{3}, but with extra processing enabled.
  954. @samp{4} is the same as @option{-x2} and @samp{8} is the same as @option{-x6}.
  955. @end table
  956. @end table
  957. @anchor{mjpegenc}
  958. @section mjpeg
  959. Motion JPEG encoder.
  960. @subsection Options
  961. @table @option
  962. @item huffman
  963. Set the huffman encoding strategy. Possible values:
  964. @table @samp
  965. @item default
  966. Use the default huffman tables. This is the default strategy.
  967. @item optimal
  968. Compute and use optimal huffman tables.
  969. @end table
  970. @end table
  971. @anchor{wavpackenc}
  972. @section wavpack
  973. WavPack lossless audio encoder.
  974. This is a libavcodec-native WavPack encoder. There is also an encoder based on
  975. libwavpack, but there is virtually no reason to use that encoder.
  976. See also @ref{libwavpack}.
  977. @subsection Options
  978. The equivalent options for @command{wavpack} command line utility are listed in
  979. parentheses.
  980. @subsubsection Shared options
  981. The following shared options are effective for this encoder. Only special notes
  982. about this particular encoder will be documented here. For the general meaning
  983. of the options, see @ref{codec-options,,the Codec Options chapter}.
  984. @table @option
  985. @item frame_size (@emph{--blocksize})
  986. For this encoder, the range for this option is between 128 and 131072. Default
  987. is automatically decided based on sample rate and number of channel.
  988. For the complete formula of calculating default, see
  989. @file{libavcodec/wavpackenc.c}.
  990. @item compression_level (@emph{-f}, @emph{-h}, @emph{-hh}, and @emph{-x})
  991. This option's syntax is consistent with @ref{libwavpack}'s.
  992. @end table
  993. @subsubsection Private options
  994. @table @option
  995. @item joint_stereo (@emph{-j})
  996. Set whether to enable joint stereo. Valid values are:
  997. @table @samp
  998. @item on (@emph{1})
  999. Force mid/side audio encoding.
  1000. @item off (@emph{0})
  1001. Force left/right audio encoding.
  1002. @item auto
  1003. Let the encoder decide automatically.
  1004. @end table
  1005. @item optimize_mono
  1006. Set whether to enable optimization for mono. This option is only effective for
  1007. non-mono streams. Available values:
  1008. @table @samp
  1009. @item on
  1010. enabled
  1011. @item off
  1012. disabled
  1013. @end table
  1014. @end table
  1015. @c man end AUDIO ENCODERS
  1016. @chapter Video Encoders
  1017. @c man begin VIDEO ENCODERS
  1018. A description of some of the currently available video encoders
  1019. follows.
  1020. @section Hap
  1021. Vidvox Hap video encoder.
  1022. @subsection Options
  1023. @table @option
  1024. @item format @var{integer}
  1025. Specifies the Hap format to encode.
  1026. @table @option
  1027. @item hap
  1028. @item hap_alpha
  1029. @item hap_q
  1030. @end table
  1031. Default value is @option{hap}.
  1032. @item chunks @var{integer}
  1033. Specifies the number of chunks to split frames into, between 1 and 64. This
  1034. permits multithreaded decoding of large frames, potentially at the cost of
  1035. data-rate. The encoder may modify this value to divide frames evenly.
  1036. Default value is @var{1}.
  1037. @item compressor @var{integer}
  1038. Specifies the second-stage compressor to use. If set to @option{none},
  1039. @option{chunks} will be limited to 1, as chunked uncompressed frames offer no
  1040. benefit.
  1041. @table @option
  1042. @item none
  1043. @item snappy
  1044. @end table
  1045. Default value is @option{snappy}.
  1046. @end table
  1047. @section jpeg2000
  1048. The native jpeg 2000 encoder is lossy by default, the @code{-q:v}
  1049. option can be used to set the encoding quality. Lossless encoding
  1050. can be selected with @code{-pred 1}.
  1051. @subsection Options
  1052. @table @option
  1053. @item format
  1054. Can be set to either @code{j2k} or @code{jp2} (the default) that
  1055. makes it possible to store non-rgb pix_fmts.
  1056. @end table
  1057. @section libaom-av1
  1058. libaom AV1 encoder wrapper.
  1059. Requires the presence of the libaom headers and library during
  1060. configuration. You need to explicitly configure the build with
  1061. @code{--enable-libaom}.
  1062. @subsection Options
  1063. The wrapper supports the following standard libavcodec options:
  1064. @table @option
  1065. @item b
  1066. Set bitrate target in bits/second. By default this will use
  1067. variable-bitrate mode. If @option{maxrate} and @option{minrate} are
  1068. also set to the same value then it will use constant-bitrate mode,
  1069. otherwise if @option{crf} is set as well then it will use
  1070. constrained-quality mode.
  1071. @item g keyint_min
  1072. Set key frame placement. The GOP size sets the maximum distance between
  1073. key frames; if zero the output stream will be intra-only. The minimum
  1074. distance is ignored unless it is the same as the GOP size, in which case
  1075. key frames will always appear at a fixed interval. Not set by default,
  1076. so without this option the library has completely free choice about
  1077. where to place key frames.
  1078. @item qmin qmax
  1079. Set minimum/maximum quantisation values. Valid range is from 0 to 63
  1080. (warning: this does not match the quantiser values actually used by AV1
  1081. - divide by four to map real quantiser values to this range). Defaults
  1082. to min/max (no constraint).
  1083. @item minrate maxrate bufsize rc_init_occupancy
  1084. Set rate control buffering parameters. Not used if not set - defaults
  1085. to unconstrained variable bitrate.
  1086. @item threads
  1087. Set the number of threads to use while encoding. This may require the
  1088. @option{tiles} or @option{row-mt} options to also be set to actually
  1089. use the specified number of threads fully. Defaults to the number of
  1090. hardware threads supported by the host machine.
  1091. @item profile
  1092. Set the encoding profile. Defaults to using the profile which matches
  1093. the bit depth and chroma subsampling of the input.
  1094. @end table
  1095. The wrapper also has some specific options:
  1096. @table @option
  1097. @item cpu-used
  1098. Set the quality/encoding speed tradeoff. Valid range is from 0 to 8,
  1099. higher numbers indicating greater speed and lower quality. The default
  1100. value is 1, which will be slow and high quality.
  1101. @item auto-alt-ref
  1102. Enable use of alternate reference frames. Defaults to the internal
  1103. default of the library.
  1104. @item arnr-max-frames (@emph{frames})
  1105. Set altref noise reduction max frame count. Default is -1.
  1106. @item arnr-strength (@emph{strength})
  1107. Set altref noise reduction filter strength. Range is -1 to 6. Default is -1.
  1108. @item aq-mode (@emph{aq-mode})
  1109. Set adaptive quantization mode. Possible values:
  1110. @table @samp
  1111. @item none (@emph{0})
  1112. Disabled.
  1113. @item variance (@emph{1})
  1114. Variance-based.
  1115. @item complexity (@emph{2})
  1116. Complexity-based.
  1117. @item cyclic (@emph{3})
  1118. Cyclic refresh.
  1119. @end table
  1120. @item lag-in-frames
  1121. Set the maximum number of frames which the encoder may keep in flight
  1122. at any one time for lookahead purposes. Defaults to the internal
  1123. default of the library.
  1124. @item error-resilience
  1125. Enable error resilience features:
  1126. @table @option
  1127. @item default
  1128. Improve resilience against losses of whole frames.
  1129. @end table
  1130. Not enabled by default.
  1131. @item crf
  1132. Set the quality/size tradeoff for constant-quality (no bitrate target)
  1133. and constrained-quality (with maximum bitrate target) modes. Valid
  1134. range is 0 to 63, higher numbers indicating lower quality and smaller
  1135. output size. Only used if set; by default only the bitrate target is
  1136. used.
  1137. @item static-thresh
  1138. Set a change threshold on blocks below which they will be skipped by
  1139. the encoder. Defined in arbitrary units as a nonnegative integer,
  1140. defaulting to zero (no blocks are skipped).
  1141. @item drop-threshold
  1142. Set a threshold for dropping frames when close to rate control bounds.
  1143. Defined as a percentage of the target buffer - when the rate control
  1144. buffer falls below this percentage, frames will be dropped until it
  1145. has refilled above the threshold. Defaults to zero (no frames are
  1146. dropped).
  1147. @item denoise-noise-level (@emph{level})
  1148. Amount of noise to be removed for grain synthesis. Grain synthesis is disabled if
  1149. this option is not set or set to 0.
  1150. @item denoise-block-size (@emph{pixels})
  1151. Block size used for denoising for grain synthesis. If not set, AV1 codec
  1152. uses the default value of 32.
  1153. @item undershoot-pct (@emph{pct})
  1154. Set datarate undershoot (min) percentage of the target bitrate. Range is -1 to 100.
  1155. Default is -1.
  1156. @item overshoot-pct (@emph{pct})
  1157. Set datarate overshoot (max) percentage of the target bitrate. Range is -1 to 1000.
  1158. Default is -1.
  1159. @item minsection-pct (@emph{pct})
  1160. Minimum percentage variation of the GOP bitrate from the target bitrate. If minsection-pct
  1161. is not set, the libaomenc wrapper computes it as follows: @code{(minrate * 100 / bitrate)}.
  1162. Range is -1 to 100. Default is -1 (unset).
  1163. @item maxsection-pct (@emph{pct})
  1164. Maximum percentage variation of the GOP bitrate from the target bitrate. If maxsection-pct
  1165. is not set, the libaomenc wrapper computes it as follows: @code{(maxrate * 100 / bitrate)}.
  1166. Range is -1 to 5000. Default is -1 (unset).
  1167. @item frame-parallel (@emph{boolean})
  1168. Enable frame parallel decodability features. Default is true.
  1169. @item tiles
  1170. Set the number of tiles to encode the input video with, as columns x
  1171. rows. Larger numbers allow greater parallelism in both encoding and
  1172. decoding, but may decrease coding efficiency. Defaults to the minimum
  1173. number of tiles required by the size of the input video (this is 1x1
  1174. (that is, a single tile) for sizes up to and including 4K).
  1175. @item tile-columns tile-rows
  1176. Set the number of tiles as log2 of the number of tile rows and columns.
  1177. Provided for compatibility with libvpx/VP9.
  1178. @item row-mt (Requires libaom >= 1.0.0-759-g90a15f4f2)
  1179. Enable row based multi-threading. Disabled by default.
  1180. @item enable-cdef (@emph{boolean})
  1181. Enable Constrained Directional Enhancement Filter. The libaom-av1
  1182. encoder enables CDEF by default.
  1183. @item enable-global-motion (@emph{boolean})
  1184. Enable the use of global motion for block prediction. Default is true.
  1185. @item enable-intrabc (@emph{boolean})
  1186. Enable block copy mode for intra block prediction. This mode is
  1187. useful for screen content. Default is true.
  1188. @end table
  1189. @section libkvazaar
  1190. Kvazaar H.265/HEVC encoder.
  1191. Requires the presence of the libkvazaar headers and library during
  1192. configuration. You need to explicitly configure the build with
  1193. @option{--enable-libkvazaar}.
  1194. @subsection Options
  1195. @table @option
  1196. @item b
  1197. Set target video bitrate in bit/s and enable rate control.
  1198. @item kvazaar-params
  1199. Set kvazaar parameters as a list of @var{name}=@var{value} pairs separated
  1200. by commas (,). See kvazaar documentation for a list of options.
  1201. @end table
  1202. @section libopenh264
  1203. Cisco libopenh264 H.264/MPEG-4 AVC encoder wrapper.
  1204. This encoder requires the presence of the libopenh264 headers and
  1205. library during configuration. You need to explicitly configure the
  1206. build with @code{--enable-libopenh264}. The library is detected using
  1207. @command{pkg-config}.
  1208. For more information about the library see
  1209. @url{http://www.openh264.org}.
  1210. @subsection Options
  1211. The following FFmpeg global options affect the configurations of the
  1212. libopenh264 encoder.
  1213. @table @option
  1214. @item b
  1215. Set the bitrate (as a number of bits per second).
  1216. @item g
  1217. Set the GOP size.
  1218. @item maxrate
  1219. Set the max bitrate (as a number of bits per second).
  1220. @item flags +global_header
  1221. Set global header in the bitstream.
  1222. @item slices
  1223. Set the number of slices, used in parallelized encoding. Default value
  1224. is 0. This is only used when @option{slice_mode} is set to
  1225. @samp{fixed}.
  1226. @item slice_mode
  1227. Set slice mode. Can assume one of the following possible values:
  1228. @table @samp
  1229. @item fixed
  1230. a fixed number of slices
  1231. @item rowmb
  1232. one slice per row of macroblocks
  1233. @item auto
  1234. automatic number of slices according to number of threads
  1235. @item dyn
  1236. dynamic slicing
  1237. @end table
  1238. Default value is @samp{auto}.
  1239. @item loopfilter
  1240. Enable loop filter, if set to 1 (automatically enabled). To disable
  1241. set a value of 0.
  1242. @item profile
  1243. Set profile restrictions. If set to the value of @samp{main} enable
  1244. CABAC (set the @code{SEncParamExt.iEntropyCodingModeFlag} flag to 1).
  1245. @item max_nal_size
  1246. Set maximum NAL size in bytes.
  1247. @item allow_skip_frames
  1248. Allow skipping frames to hit the target bitrate if set to 1.
  1249. @end table
  1250. @section libtheora
  1251. libtheora Theora encoder wrapper.
  1252. Requires the presence of the libtheora headers and library during
  1253. configuration. You need to explicitly configure the build with
  1254. @code{--enable-libtheora}.
  1255. For more information about the libtheora project see
  1256. @url{http://www.theora.org/}.
  1257. @subsection Options
  1258. The following global options are mapped to internal libtheora options
  1259. which affect the quality and the bitrate of the encoded stream.
  1260. @table @option
  1261. @item b
  1262. Set the video bitrate in bit/s for CBR (Constant Bit Rate) mode. In
  1263. case VBR (Variable Bit Rate) mode is enabled this option is ignored.
  1264. @item flags
  1265. Used to enable constant quality mode (VBR) encoding through the
  1266. @option{qscale} flag, and to enable the @code{pass1} and @code{pass2}
  1267. modes.
  1268. @item g
  1269. Set the GOP size.
  1270. @item global_quality
  1271. Set the global quality as an integer in lambda units.
  1272. Only relevant when VBR mode is enabled with @code{flags +qscale}. The
  1273. value is converted to QP units by dividing it by @code{FF_QP2LAMBDA},
  1274. clipped in the [0 - 10] range, and then multiplied by 6.3 to get a
  1275. value in the native libtheora range [0-63]. A higher value corresponds
  1276. to a higher quality.
  1277. @item q
  1278. Enable VBR mode when set to a non-negative value, and set constant
  1279. quality value as a double floating point value in QP units.
  1280. The value is clipped in the [0-10] range, and then multiplied by 6.3
  1281. to get a value in the native libtheora range [0-63].
  1282. This option is valid only using the @command{ffmpeg} command-line
  1283. tool. For library interface users, use @option{global_quality}.
  1284. @end table
  1285. @subsection Examples
  1286. @itemize
  1287. @item
  1288. Set maximum constant quality (VBR) encoding with @command{ffmpeg}:
  1289. @example
  1290. ffmpeg -i INPUT -codec:v libtheora -q:v 10 OUTPUT.ogg
  1291. @end example
  1292. @item
  1293. Use @command{ffmpeg} to convert a CBR 1000 kbps Theora video stream:
  1294. @example
  1295. ffmpeg -i INPUT -codec:v libtheora -b:v 1000k OUTPUT.ogg
  1296. @end example
  1297. @end itemize
  1298. @section libvpx
  1299. VP8/VP9 format supported through libvpx.
  1300. Requires the presence of the libvpx headers and library during configuration.
  1301. You need to explicitly configure the build with @code{--enable-libvpx}.
  1302. @subsection Options
  1303. The following options are supported by the libvpx wrapper. The
  1304. @command{vpxenc}-equivalent options or values are listed in parentheses
  1305. for easy migration.
  1306. To reduce the duplication of documentation, only the private options
  1307. and some others requiring special attention are documented here. For
  1308. the documentation of the undocumented generic options, see
  1309. @ref{codec-options,,the Codec Options chapter}.
  1310. To get more documentation of the libvpx options, invoke the command
  1311. @command{ffmpeg -h encoder=libvpx}, @command{ffmpeg -h encoder=libvpx-vp9} or
  1312. @command{vpxenc --help}. Further information is available in the libvpx API
  1313. documentation.
  1314. @table @option
  1315. @item b (@emph{target-bitrate})
  1316. Set bitrate in bits/s. Note that FFmpeg's @option{b} option is
  1317. expressed in bits/s, while @command{vpxenc}'s @option{target-bitrate} is in
  1318. kilobits/s.
  1319. @item g (@emph{kf-max-dist})
  1320. @item keyint_min (@emph{kf-min-dist})
  1321. @item qmin (@emph{min-q})
  1322. @item qmax (@emph{max-q})
  1323. @item bufsize (@emph{buf-sz}, @emph{buf-optimal-sz})
  1324. Set ratecontrol buffer size (in bits). Note @command{vpxenc}'s options are
  1325. specified in milliseconds, the libvpx wrapper converts this value as follows:
  1326. @code{buf-sz = bufsize * 1000 / bitrate},
  1327. @code{buf-optimal-sz = bufsize * 1000 / bitrate * 5 / 6}.
  1328. @item rc_init_occupancy (@emph{buf-initial-sz})
  1329. Set number of bits which should be loaded into the rc buffer before decoding
  1330. starts. Note @command{vpxenc}'s option is specified in milliseconds, the libvpx
  1331. wrapper converts this value as follows:
  1332. @code{rc_init_occupancy * 1000 / bitrate}.
  1333. @item undershoot-pct
  1334. Set datarate undershoot (min) percentage of the target bitrate.
  1335. @item overshoot-pct
  1336. Set datarate overshoot (max) percentage of the target bitrate.
  1337. @item skip_threshold (@emph{drop-frame})
  1338. @item qcomp (@emph{bias-pct})
  1339. @item maxrate (@emph{maxsection-pct})
  1340. Set GOP max bitrate in bits/s. Note @command{vpxenc}'s option is specified as a
  1341. percentage of the target bitrate, the libvpx wrapper converts this value as
  1342. follows: @code{(maxrate * 100 / bitrate)}.
  1343. @item minrate (@emph{minsection-pct})
  1344. Set GOP min bitrate in bits/s. Note @command{vpxenc}'s option is specified as a
  1345. percentage of the target bitrate, the libvpx wrapper converts this value as
  1346. follows: @code{(minrate * 100 / bitrate)}.
  1347. @item minrate, maxrate, b @emph{end-usage=cbr}
  1348. @code{(minrate == maxrate == bitrate)}.
  1349. @item crf (@emph{end-usage=cq}, @emph{cq-level})
  1350. @item tune (@emph{tune})
  1351. @table @samp
  1352. @item psnr (@emph{psnr})
  1353. @item ssim (@emph{ssim})
  1354. @end table
  1355. @item quality, deadline (@emph{deadline})
  1356. @table @samp
  1357. @item best
  1358. Use best quality deadline. Poorly named and quite slow, this option should be
  1359. avoided as it may give worse quality output than good.
  1360. @item good
  1361. Use good quality deadline. This is a good trade-off between speed and quality
  1362. when used with the @option{cpu-used} option.
  1363. @item realtime
  1364. Use realtime quality deadline.
  1365. @end table
  1366. @item speed, cpu-used (@emph{cpu-used})
  1367. Set quality/speed ratio modifier. Higher values speed up the encode at the cost
  1368. of quality.
  1369. @item nr (@emph{noise-sensitivity})
  1370. @item static-thresh
  1371. Set a change threshold on blocks below which they will be skipped by the
  1372. encoder.
  1373. @item slices (@emph{token-parts})
  1374. Note that FFmpeg's @option{slices} option gives the total number of partitions,
  1375. while @command{vpxenc}'s @option{token-parts} is given as
  1376. @code{log2(partitions)}.
  1377. @item max-intra-rate
  1378. Set maximum I-frame bitrate as a percentage of the target bitrate. A value of 0
  1379. means unlimited.
  1380. @item force_key_frames
  1381. @code{VPX_EFLAG_FORCE_KF}
  1382. @item Alternate reference frame related
  1383. @table @option
  1384. @item auto-alt-ref
  1385. Enable use of alternate reference frames (2-pass only).
  1386. Values greater than 1 enable multi-layer alternate reference frames (VP9 only).
  1387. @item arnr-maxframes
  1388. Set altref noise reduction max frame count.
  1389. @item arnr-type
  1390. Set altref noise reduction filter type: backward, forward, centered.
  1391. @item arnr-strength
  1392. Set altref noise reduction filter strength.
  1393. @item rc-lookahead, lag-in-frames (@emph{lag-in-frames})
  1394. Set number of frames to look ahead for frametype and ratecontrol.
  1395. @end table
  1396. @item error-resilient
  1397. Enable error resiliency features.
  1398. @item sharpness @var{integer}
  1399. Increase sharpness at the expense of lower PSNR.
  1400. The valid range is [0, 7].
  1401. @item VP8-specific options
  1402. @table @option
  1403. @item ts-parameters
  1404. Sets the temporal scalability configuration using a :-separated list of
  1405. key=value pairs. For example, to specify temporal scalability parameters
  1406. with @code{ffmpeg}:
  1407. @example
  1408. ffmpeg -i INPUT -c:v libvpx -ts-parameters ts_number_layers=3:\
  1409. ts_target_bitrate=250000,500000,1000000:ts_rate_decimator=4,2,1:\
  1410. ts_periodicity=4:ts_layer_id=0,2,1,2 OUTPUT
  1411. @end example
  1412. Below is a brief explanation of each of the parameters, please
  1413. refer to @code{struct vpx_codec_enc_cfg} in @code{vpx/vpx_encoder.h} for more
  1414. details.
  1415. @table @option
  1416. @item ts_number_layers
  1417. Number of temporal coding layers.
  1418. @item ts_target_bitrate
  1419. Target bitrate for each temporal layer.
  1420. @item ts_rate_decimator
  1421. Frame rate decimation factor for each temporal layer.
  1422. @item ts_periodicity
  1423. Length of the sequence defining frame temporal layer membership.
  1424. @item ts_layer_id
  1425. Template defining the membership of frames to temporal layers.
  1426. @end table
  1427. @end table
  1428. @item VP9-specific options
  1429. @table @option
  1430. @item lossless
  1431. Enable lossless mode.
  1432. @item tile-columns
  1433. Set number of tile columns to use. Note this is given as
  1434. @code{log2(tile_columns)}. For example, 8 tile columns would be requested by
  1435. setting the @option{tile-columns} option to 3.
  1436. @item tile-rows
  1437. Set number of tile rows to use. Note this is given as @code{log2(tile_rows)}.
  1438. For example, 4 tile rows would be requested by setting the @option{tile-rows}
  1439. option to 2.
  1440. @item frame-parallel
  1441. Enable frame parallel decodability features.
  1442. @item aq-mode
  1443. Set adaptive quantization mode (0: off (default), 1: variance 2: complexity, 3:
  1444. cyclic refresh, 4: equator360).
  1445. @item colorspace @emph{color-space}
  1446. Set input color space. The VP9 bitstream supports signaling the following
  1447. colorspaces:
  1448. @table @option
  1449. @item @samp{rgb} @emph{sRGB}
  1450. @item @samp{bt709} @emph{bt709}
  1451. @item @samp{unspecified} @emph{unknown}
  1452. @item @samp{bt470bg} @emph{bt601}
  1453. @item @samp{smpte170m} @emph{smpte170}
  1454. @item @samp{smpte240m} @emph{smpte240}
  1455. @item @samp{bt2020_ncl} @emph{bt2020}
  1456. @end table
  1457. @item row-mt @var{boolean}
  1458. Enable row based multi-threading.
  1459. @item tune-content
  1460. Set content type: default (0), screen (1), film (2).
  1461. @item corpus-complexity
  1462. Corpus VBR mode is a variant of standard VBR where the complexity distribution
  1463. midpoint is passed in rather than calculated for a specific clip or chunk.
  1464. The valid range is [0, 10000]. 0 (default) uses standard VBR.
  1465. @item enable-tpl @var{boolean}
  1466. Enable temporal dependency model.
  1467. @end table
  1468. @end table
  1469. For more information about libvpx see:
  1470. @url{http://www.webmproject.org/}
  1471. @section libwebp
  1472. libwebp WebP Image encoder wrapper
  1473. libwebp is Google's official encoder for WebP images. It can encode in either
  1474. lossy or lossless mode. Lossy images are essentially a wrapper around a VP8
  1475. frame. Lossless images are a separate codec developed by Google.
  1476. @subsection Pixel Format
  1477. Currently, libwebp only supports YUV420 for lossy and RGB for lossless due
  1478. to limitations of the format and libwebp. Alpha is supported for either mode.
  1479. Because of API limitations, if RGB is passed in when encoding lossy or YUV is
  1480. passed in for encoding lossless, the pixel format will automatically be
  1481. converted using functions from libwebp. This is not ideal and is done only for
  1482. convenience.
  1483. @subsection Options
  1484. @table @option
  1485. @item -lossless @var{boolean}
  1486. Enables/Disables use of lossless mode. Default is 0.
  1487. @item -compression_level @var{integer}
  1488. For lossy, this is a quality/speed tradeoff. Higher values give better quality
  1489. for a given size at the cost of increased encoding time. For lossless, this is
  1490. a size/speed tradeoff. Higher values give smaller size at the cost of increased
  1491. encoding time. More specifically, it controls the number of extra algorithms
  1492. and compression tools used, and varies the combination of these tools. This
  1493. maps to the @var{method} option in libwebp. The valid range is 0 to 6.
  1494. Default is 4.
  1495. @item -qscale @var{float}
  1496. For lossy encoding, this controls image quality, 0 to 100. For lossless
  1497. encoding, this controls the effort and time spent at compressing more. The
  1498. default value is 75. Note that for usage via libavcodec, this option is called
  1499. @var{global_quality} and must be multiplied by @var{FF_QP2LAMBDA}.
  1500. @item -preset @var{type}
  1501. Configuration preset. This does some automatic settings based on the general
  1502. type of the image.
  1503. @table @option
  1504. @item none
  1505. Do not use a preset.
  1506. @item default
  1507. Use the encoder default.
  1508. @item picture
  1509. Digital picture, like portrait, inner shot
  1510. @item photo
  1511. Outdoor photograph, with natural lighting
  1512. @item drawing
  1513. Hand or line drawing, with high-contrast details
  1514. @item icon
  1515. Small-sized colorful images
  1516. @item text
  1517. Text-like
  1518. @end table
  1519. @end table
  1520. @section libx264, libx264rgb
  1521. x264 H.264/MPEG-4 AVC encoder wrapper.
  1522. This encoder requires the presence of the libx264 headers and library
  1523. during configuration. You need to explicitly configure the build with
  1524. @code{--enable-libx264}.
  1525. libx264 supports an impressive number of features, including 8x8 and
  1526. 4x4 adaptive spatial transform, adaptive B-frame placement, CAVLC/CABAC
  1527. entropy coding, interlacing (MBAFF), lossless mode, psy optimizations
  1528. for detail retention (adaptive quantization, psy-RD, psy-trellis).
  1529. Many libx264 encoder options are mapped to FFmpeg global codec
  1530. options, while unique encoder options are provided through private
  1531. options. Additionally the @option{x264opts} and @option{x264-params}
  1532. private options allows one to pass a list of key=value tuples as accepted
  1533. by the libx264 @code{x264_param_parse} function.
  1534. The x264 project website is at
  1535. @url{http://www.videolan.org/developers/x264.html}.
  1536. The libx264rgb encoder is the same as libx264, except it accepts packed RGB
  1537. pixel formats as input instead of YUV.
  1538. @subsection Supported Pixel Formats
  1539. x264 supports 8- to 10-bit color spaces. The exact bit depth is controlled at
  1540. x264's configure time. FFmpeg only supports one bit depth in one particular
  1541. build. In other words, it is not possible to build one FFmpeg with multiple
  1542. versions of x264 with different bit depths.
  1543. @subsection Options
  1544. The following options are supported by the libx264 wrapper. The
  1545. @command{x264}-equivalent options or values are listed in parentheses
  1546. for easy migration.
  1547. To reduce the duplication of documentation, only the private options
  1548. and some others requiring special attention are documented here. For
  1549. the documentation of the undocumented generic options, see
  1550. @ref{codec-options,,the Codec Options chapter}.
  1551. To get a more accurate and extensive documentation of the libx264
  1552. options, invoke the command @command{x264 --fullhelp} or consult
  1553. the libx264 documentation.
  1554. @table @option
  1555. @item b (@emph{bitrate})
  1556. Set bitrate in bits/s. Note that FFmpeg's @option{b} option is
  1557. expressed in bits/s, while @command{x264}'s @option{bitrate} is in
  1558. kilobits/s.
  1559. @item bf (@emph{bframes})
  1560. @item g (@emph{keyint})
  1561. @item qmin (@emph{qpmin})
  1562. Minimum quantizer scale.
  1563. @item qmax (@emph{qpmax})
  1564. Maximum quantizer scale.
  1565. @item qdiff (@emph{qpstep})
  1566. Maximum difference between quantizer scales.
  1567. @item qblur (@emph{qblur})
  1568. Quantizer curve blur
  1569. @item qcomp (@emph{qcomp})
  1570. Quantizer curve compression factor
  1571. @item refs (@emph{ref})
  1572. Number of reference frames each P-frame can use. The range is from @var{0-16}.
  1573. @item sc_threshold (@emph{scenecut})
  1574. Sets the threshold for the scene change detection.
  1575. @item trellis (@emph{trellis})
  1576. Performs Trellis quantization to increase efficiency. Enabled by default.
  1577. @item nr (@emph{nr})
  1578. @item me_range (@emph{merange})
  1579. Maximum range of the motion search in pixels.
  1580. @item me_method (@emph{me})
  1581. Set motion estimation method. Possible values in the decreasing order
  1582. of speed:
  1583. @table @samp
  1584. @item dia (@emph{dia})
  1585. @item epzs (@emph{dia})
  1586. Diamond search with radius 1 (fastest). @samp{epzs} is an alias for
  1587. @samp{dia}.
  1588. @item hex (@emph{hex})
  1589. Hexagonal search with radius 2.
  1590. @item umh (@emph{umh})
  1591. Uneven multi-hexagon search.
  1592. @item esa (@emph{esa})
  1593. Exhaustive search.
  1594. @item tesa (@emph{tesa})
  1595. Hadamard exhaustive search (slowest).
  1596. @end table
  1597. @item forced-idr
  1598. Normally, when forcing a I-frame type, the encoder can select any type
  1599. of I-frame. This option forces it to choose an IDR-frame.
  1600. @item subq (@emph{subme})
  1601. Sub-pixel motion estimation method.
  1602. @item b_strategy (@emph{b-adapt})
  1603. Adaptive B-frame placement decision algorithm. Use only on first-pass.
  1604. @item keyint_min (@emph{min-keyint})
  1605. Minimum GOP size.
  1606. @item coder
  1607. Set entropy encoder. Possible values:
  1608. @table @samp
  1609. @item ac
  1610. Enable CABAC.
  1611. @item vlc
  1612. Enable CAVLC and disable CABAC. It generates the same effect as
  1613. @command{x264}'s @option{--no-cabac} option.
  1614. @end table
  1615. @item cmp
  1616. Set full pixel motion estimation comparison algorithm. Possible values:
  1617. @table @samp
  1618. @item chroma
  1619. Enable chroma in motion estimation.
  1620. @item sad
  1621. Ignore chroma in motion estimation. It generates the same effect as
  1622. @command{x264}'s @option{--no-chroma-me} option.
  1623. @end table
  1624. @item threads (@emph{threads})
  1625. Number of encoding threads.
  1626. @item thread_type
  1627. Set multithreading technique. Possible values:
  1628. @table @samp
  1629. @item slice
  1630. Slice-based multithreading. It generates the same effect as
  1631. @command{x264}'s @option{--sliced-threads} option.
  1632. @item frame
  1633. Frame-based multithreading.
  1634. @end table
  1635. @item flags
  1636. Set encoding flags. It can be used to disable closed GOP and enable
  1637. open GOP by setting it to @code{-cgop}. The result is similar to
  1638. the behavior of @command{x264}'s @option{--open-gop} option.
  1639. @item rc_init_occupancy (@emph{vbv-init})
  1640. @item preset (@emph{preset})
  1641. Set the encoding preset.
  1642. @item tune (@emph{tune})
  1643. Set tuning of the encoding params.
  1644. @item profile (@emph{profile})
  1645. Set profile restrictions.
  1646. @item fastfirstpass
  1647. Enable fast settings when encoding first pass, when set to 1. When set
  1648. to 0, it has the same effect of @command{x264}'s
  1649. @option{--slow-firstpass} option.
  1650. @item crf (@emph{crf})
  1651. Set the quality for constant quality mode.
  1652. @item crf_max (@emph{crf-max})
  1653. In CRF mode, prevents VBV from lowering quality beyond this point.
  1654. @item qp (@emph{qp})
  1655. Set constant quantization rate control method parameter.
  1656. @item aq-mode (@emph{aq-mode})
  1657. Set AQ method. Possible values:
  1658. @table @samp
  1659. @item none (@emph{0})
  1660. Disabled.
  1661. @item variance (@emph{1})
  1662. Variance AQ (complexity mask).
  1663. @item autovariance (@emph{2})
  1664. Auto-variance AQ (experimental).
  1665. @end table
  1666. @item aq-strength (@emph{aq-strength})
  1667. Set AQ strength, reduce blocking and blurring in flat and textured areas.
  1668. @item psy
  1669. Use psychovisual optimizations when set to 1. When set to 0, it has the
  1670. same effect as @command{x264}'s @option{--no-psy} option.
  1671. @item psy-rd (@emph{psy-rd})
  1672. Set strength of psychovisual optimization, in
  1673. @var{psy-rd}:@var{psy-trellis} format.
  1674. @item rc-lookahead (@emph{rc-lookahead})
  1675. Set number of frames to look ahead for frametype and ratecontrol.
  1676. @item weightb
  1677. Enable weighted prediction for B-frames when set to 1. When set to 0,
  1678. it has the same effect as @command{x264}'s @option{--no-weightb} option.
  1679. @item weightp (@emph{weightp})
  1680. Set weighted prediction method for P-frames. Possible values:
  1681. @table @samp
  1682. @item none (@emph{0})
  1683. Disabled
  1684. @item simple (@emph{1})
  1685. Enable only weighted refs
  1686. @item smart (@emph{2})
  1687. Enable both weighted refs and duplicates
  1688. @end table
  1689. @item ssim (@emph{ssim})
  1690. Enable calculation and printing SSIM stats after the encoding.
  1691. @item intra-refresh (@emph{intra-refresh})
  1692. Enable the use of Periodic Intra Refresh instead of IDR frames when set
  1693. to 1.
  1694. @item avcintra-class (@emph{class})
  1695. Configure the encoder to generate AVC-Intra.
  1696. Valid values are 50,100 and 200
  1697. @item bluray-compat (@emph{bluray-compat})
  1698. Configure the encoder to be compatible with the bluray standard.
  1699. It is a shorthand for setting "bluray-compat=1 force-cfr=1".
  1700. @item b-bias (@emph{b-bias})
  1701. Set the influence on how often B-frames are used.
  1702. @item b-pyramid (@emph{b-pyramid})
  1703. Set method for keeping of some B-frames as references. Possible values:
  1704. @table @samp
  1705. @item none (@emph{none})
  1706. Disabled.
  1707. @item strict (@emph{strict})
  1708. Strictly hierarchical pyramid.
  1709. @item normal (@emph{normal})
  1710. Non-strict (not Blu-ray compatible).
  1711. @end table
  1712. @item mixed-refs
  1713. Enable the use of one reference per partition, as opposed to one
  1714. reference per macroblock when set to 1. When set to 0, it has the
  1715. same effect as @command{x264}'s @option{--no-mixed-refs} option.
  1716. @item 8x8dct
  1717. Enable adaptive spatial transform (high profile 8x8 transform)
  1718. when set to 1. When set to 0, it has the same effect as
  1719. @command{x264}'s @option{--no-8x8dct} option.
  1720. @item fast-pskip
  1721. Enable early SKIP detection on P-frames when set to 1. When set
  1722. to 0, it has the same effect as @command{x264}'s
  1723. @option{--no-fast-pskip} option.
  1724. @item aud (@emph{aud})
  1725. Enable use of access unit delimiters when set to 1.
  1726. @item mbtree
  1727. Enable use macroblock tree ratecontrol when set to 1. When set
  1728. to 0, it has the same effect as @command{x264}'s
  1729. @option{--no-mbtree} option.
  1730. @item deblock (@emph{deblock})
  1731. Set loop filter parameters, in @var{alpha}:@var{beta} form.
  1732. @item cplxblur (@emph{cplxblur})
  1733. Set fluctuations reduction in QP (before curve compression).
  1734. @item partitions (@emph{partitions})
  1735. Set partitions to consider as a comma-separated list of. Possible
  1736. values in the list:
  1737. @table @samp
  1738. @item p8x8
  1739. 8x8 P-frame partition.
  1740. @item p4x4
  1741. 4x4 P-frame partition.
  1742. @item b8x8
  1743. 4x4 B-frame partition.
  1744. @item i8x8
  1745. 8x8 I-frame partition.
  1746. @item i4x4
  1747. 4x4 I-frame partition.
  1748. (Enabling @samp{p4x4} requires @samp{p8x8} to be enabled. Enabling
  1749. @samp{i8x8} requires adaptive spatial transform (@option{8x8dct}
  1750. option) to be enabled.)
  1751. @item none (@emph{none})
  1752. Do not consider any partitions.
  1753. @item all (@emph{all})
  1754. Consider every partition.
  1755. @end table
  1756. @item direct-pred (@emph{direct})
  1757. Set direct MV prediction mode. Possible values:
  1758. @table @samp
  1759. @item none (@emph{none})
  1760. Disable MV prediction.
  1761. @item spatial (@emph{spatial})
  1762. Enable spatial predicting.
  1763. @item temporal (@emph{temporal})
  1764. Enable temporal predicting.
  1765. @item auto (@emph{auto})
  1766. Automatically decided.
  1767. @end table
  1768. @item slice-max-size (@emph{slice-max-size})
  1769. Set the limit of the size of each slice in bytes. If not specified
  1770. but RTP payload size (@option{ps}) is specified, that is used.
  1771. @item stats (@emph{stats})
  1772. Set the file name for multi-pass stats.
  1773. @item nal-hrd (@emph{nal-hrd})
  1774. Set signal HRD information (requires @option{vbv-bufsize} to be set).
  1775. Possible values:
  1776. @table @samp
  1777. @item none (@emph{none})
  1778. Disable HRD information signaling.
  1779. @item vbr (@emph{vbr})
  1780. Variable bit rate.
  1781. @item cbr (@emph{cbr})
  1782. Constant bit rate (not allowed in MP4 container).
  1783. @end table
  1784. @item x264opts (N.A.)
  1785. Set any x264 option, see @command{x264 --fullhelp} for a list.
  1786. Argument is a list of @var{key}=@var{value} couples separated by
  1787. ":". In @var{filter} and @var{psy-rd} options that use ":" as a separator
  1788. themselves, use "," instead. They accept it as well since long ago but this
  1789. is kept undocumented for some reason.
  1790. For example to specify libx264 encoding options with @command{ffmpeg}:
  1791. @example
  1792. ffmpeg -i foo.mpg -c:v libx264 -x264opts keyint=123:min-keyint=20 -an out.mkv
  1793. @end example
  1794. @item a53cc @var{boolean}
  1795. Import closed captions (which must be ATSC compatible format) into output.
  1796. Only the mpeg2 and h264 decoders provide these. Default is 1 (on).
  1797. @item x264-params (N.A.)
  1798. Override the x264 configuration using a :-separated list of key=value
  1799. parameters.
  1800. This option is functionally the same as the @option{x264opts}, but is
  1801. duplicated for compatibility with the Libav fork.
  1802. For example to specify libx264 encoding options with @command{ffmpeg}:
  1803. @example
  1804. ffmpeg -i INPUT -c:v libx264 -x264-params level=30:bframes=0:weightp=0:\
  1805. cabac=0:ref=1:vbv-maxrate=768:vbv-bufsize=2000:analyse=all:me=umh:\
  1806. no-fast-pskip=1:subq=6:8x8dct=0:trellis=0 OUTPUT
  1807. @end example
  1808. @end table
  1809. Encoding ffpresets for common usages are provided so they can be used with the
  1810. general presets system (e.g. passing the @option{pre} option).
  1811. @section libx265
  1812. x265 H.265/HEVC encoder wrapper.
  1813. This encoder requires the presence of the libx265 headers and library
  1814. during configuration. You need to explicitly configure the build with
  1815. @option{--enable-libx265}.
  1816. @subsection Options
  1817. @table @option
  1818. @item preset
  1819. Set the x265 preset.
  1820. @item tune
  1821. Set the x265 tune parameter.
  1822. @item profile
  1823. Set profile restrictions.
  1824. @item crf
  1825. Set the quality for constant quality mode.
  1826. @item forced-idr
  1827. Normally, when forcing a I-frame type, the encoder can select any type
  1828. of I-frame. This option forces it to choose an IDR-frame.
  1829. @item x265-params
  1830. Set x265 options using a list of @var{key}=@var{value} couples separated
  1831. by ":". See @command{x265 --help} for a list of options.
  1832. For example to specify libx265 encoding options with @option{-x265-params}:
  1833. @example
  1834. ffmpeg -i input -c:v libx265 -x265-params crf=26:psy-rd=1 output.mp4
  1835. @end example
  1836. @end table
  1837. @section libxavs2
  1838. xavs2 AVS2-P2/IEEE1857.4 encoder wrapper.
  1839. This encoder requires the presence of the libxavs2 headers and library
  1840. during configuration. You need to explicitly configure the build with
  1841. @option{--enable-libxavs2}.
  1842. The following standard libavcodec options are used:
  1843. @itemize
  1844. @item
  1845. @option{b} / @option{bit_rate}
  1846. @item
  1847. @option{g} / @option{gop_size}
  1848. @item
  1849. @option{bf} / @option{max_b_frames}
  1850. @end itemize
  1851. The encoder also has its own specific options:
  1852. @subsection Options
  1853. @table @option
  1854. @item lcu_row_threads
  1855. Set the number of parallel threads for rows from 1 to 8 (default 5).
  1856. @item initial_qp
  1857. Set the xavs2 quantization parameter from 1 to 63 (default 34). This is
  1858. used to set the initial qp for the first frame.
  1859. @item qp
  1860. Set the xavs2 quantization parameter from 1 to 63 (default 34). This is
  1861. used to set the qp value under constant-QP mode.
  1862. @item max_qp
  1863. Set the max qp for rate control from 1 to 63 (default 55).
  1864. @item min_qp
  1865. Set the min qp for rate control from 1 to 63 (default 20).
  1866. @item speed_level
  1867. Set the Speed level from 0 to 9 (default 0). Higher is better but slower.
  1868. @item log_level
  1869. Set the log level from -1 to 3 (default 0). -1: none, 0: error,
  1870. 1: warning, 2: info, 3: debug.
  1871. @item xavs2-params
  1872. Set xavs2 options using a list of @var{key}=@var{value} couples separated
  1873. by ":".
  1874. For example to specify libxavs2 encoding options with @option{-xavs2-params}:
  1875. @example
  1876. ffmpeg -i input -c:v libxavs2 -xavs2-params RdoqLevel=0 output.avs2
  1877. @end example
  1878. @end table
  1879. @section libxvid
  1880. Xvid MPEG-4 Part 2 encoder wrapper.
  1881. This encoder requires the presence of the libxvidcore headers and library
  1882. during configuration. You need to explicitly configure the build with
  1883. @code{--enable-libxvid --enable-gpl}.
  1884. The native @code{mpeg4} encoder supports the MPEG-4 Part 2 format, so
  1885. users can encode to this format without this library.
  1886. @subsection Options
  1887. The following options are supported by the libxvid wrapper. Some of
  1888. the following options are listed but are not documented, and
  1889. correspond to shared codec options. See @ref{codec-options,,the Codec
  1890. Options chapter} for their documentation. The other shared options
  1891. which are not listed have no effect for the libxvid encoder.
  1892. @table @option
  1893. @item b
  1894. @item g
  1895. @item qmin
  1896. @item qmax
  1897. @item mpeg_quant
  1898. @item threads
  1899. @item bf
  1900. @item b_qfactor
  1901. @item b_qoffset
  1902. @item flags
  1903. Set specific encoding flags. Possible values:
  1904. @table @samp
  1905. @item mv4
  1906. Use four motion vector by macroblock.
  1907. @item aic
  1908. Enable high quality AC prediction.
  1909. @item gray
  1910. Only encode grayscale.
  1911. @item gmc
  1912. Enable the use of global motion compensation (GMC).
  1913. @item qpel
  1914. Enable quarter-pixel motion compensation.
  1915. @item cgop
  1916. Enable closed GOP.
  1917. @item global_header
  1918. Place global headers in extradata instead of every keyframe.
  1919. @end table
  1920. @item trellis
  1921. @item me_method
  1922. Set motion estimation method. Possible values in decreasing order of
  1923. speed and increasing order of quality:
  1924. @table @samp
  1925. @item zero
  1926. Use no motion estimation (default).
  1927. @item phods
  1928. @item x1
  1929. @item log
  1930. Enable advanced diamond zonal search for 16x16 blocks and half-pixel
  1931. refinement for 16x16 blocks. @samp{x1} and @samp{log} are aliases for
  1932. @samp{phods}.
  1933. @item epzs
  1934. Enable all of the things described above, plus advanced diamond zonal
  1935. search for 8x8 blocks, half-pixel refinement for 8x8 blocks, and motion
  1936. estimation on chroma planes.
  1937. @item full
  1938. Enable all of the things described above, plus extended 16x16 and 8x8
  1939. blocks search.
  1940. @end table
  1941. @item mbd
  1942. Set macroblock decision algorithm. Possible values in the increasing
  1943. order of quality:
  1944. @table @samp
  1945. @item simple
  1946. Use macroblock comparing function algorithm (default).
  1947. @item bits
  1948. Enable rate distortion-based half pixel and quarter pixel refinement for
  1949. 16x16 blocks.
  1950. @item rd
  1951. Enable all of the things described above, plus rate distortion-based
  1952. half pixel and quarter pixel refinement for 8x8 blocks, and rate
  1953. distortion-based search using square pattern.
  1954. @end table
  1955. @item lumi_aq
  1956. Enable lumi masking adaptive quantization when set to 1. Default is 0
  1957. (disabled).
  1958. @item variance_aq
  1959. Enable variance adaptive quantization when set to 1. Default is 0
  1960. (disabled).
  1961. When combined with @option{lumi_aq}, the resulting quality will not
  1962. be better than any of the two specified individually. In other
  1963. words, the resulting quality will be the worse one of the two
  1964. effects.
  1965. @item ssim
  1966. Set structural similarity (SSIM) displaying method. Possible values:
  1967. @table @samp
  1968. @item off
  1969. Disable displaying of SSIM information.
  1970. @item avg
  1971. Output average SSIM at the end of encoding to stdout. The format of
  1972. showing the average SSIM is:
  1973. @example
  1974. Average SSIM: %f
  1975. @end example
  1976. For users who are not familiar with C, %f means a float number, or
  1977. a decimal (e.g. 0.939232).
  1978. @item frame
  1979. Output both per-frame SSIM data during encoding and average SSIM at
  1980. the end of encoding to stdout. The format of per-frame information
  1981. is:
  1982. @example
  1983. SSIM: avg: %1.3f min: %1.3f max: %1.3f
  1984. @end example
  1985. For users who are not familiar with C, %1.3f means a float number
  1986. rounded to 3 digits after the dot (e.g. 0.932).
  1987. @end table
  1988. @item ssim_acc
  1989. Set SSIM accuracy. Valid options are integers within the range of
  1990. 0-4, while 0 gives the most accurate result and 4 computes the
  1991. fastest.
  1992. @end table
  1993. @section mpeg2
  1994. MPEG-2 video encoder.
  1995. @subsection Options
  1996. @table @option
  1997. @item seq_disp_ext @var{integer}
  1998. Specifies if the encoder should write a sequence_display_extension to the
  1999. output.
  2000. @table @option
  2001. @item -1
  2002. @itemx auto
  2003. Decide automatically to write it or not (this is the default) by checking if
  2004. the data to be written is different from the default or unspecified values.
  2005. @item 0
  2006. @itemx never
  2007. Never write it.
  2008. @item 1
  2009. @itemx always
  2010. Always write it.
  2011. @end table
  2012. @item video_format @var{integer}
  2013. Specifies the video_format written into the sequence display extension
  2014. indicating the source of the video pictures. The default is @samp{unspecified},
  2015. can be @samp{component}, @samp{pal}, @samp{ntsc}, @samp{secam} or @samp{mac}.
  2016. For maximum compatibility, use @samp{component}.
  2017. @item a53cc @var{boolean}
  2018. Import closed captions (which must be ATSC compatible format) into output.
  2019. Default is 1 (on).
  2020. @end table
  2021. @section png
  2022. PNG image encoder.
  2023. @subsection Private options
  2024. @table @option
  2025. @item dpi @var{integer}
  2026. Set physical density of pixels, in dots per inch, unset by default
  2027. @item dpm @var{integer}
  2028. Set physical density of pixels, in dots per meter, unset by default
  2029. @end table
  2030. @section ProRes
  2031. Apple ProRes encoder.
  2032. FFmpeg contains 2 ProRes encoders, the prores-aw and prores-ks encoder.
  2033. The used encoder can be chosen with the @code{-vcodec} option.
  2034. @subsection Private Options for prores-ks
  2035. @table @option
  2036. @item profile @var{integer}
  2037. Select the ProRes profile to encode
  2038. @table @samp
  2039. @item proxy
  2040. @item lt
  2041. @item standard
  2042. @item hq
  2043. @item 4444
  2044. @item 4444xq
  2045. @end table
  2046. @item quant_mat @var{integer}
  2047. Select quantization matrix.
  2048. @table @samp
  2049. @item auto
  2050. @item default
  2051. @item proxy
  2052. @item lt
  2053. @item standard
  2054. @item hq
  2055. @end table
  2056. If set to @var{auto}, the matrix matching the profile will be picked.
  2057. If not set, the matrix providing the highest quality, @var{default}, will be
  2058. picked.
  2059. @item bits_per_mb @var{integer}
  2060. How many bits to allot for coding one macroblock. Different profiles use
  2061. between 200 and 2400 bits per macroblock, the maximum is 8000.
  2062. @item mbs_per_slice @var{integer}
  2063. Number of macroblocks in each slice (1-8); the default value (8)
  2064. should be good in almost all situations.
  2065. @item vendor @var{string}
  2066. Override the 4-byte vendor ID.
  2067. A custom vendor ID like @var{apl0} would claim the stream was produced by
  2068. the Apple encoder.
  2069. @item alpha_bits @var{integer}
  2070. Specify number of bits for alpha component.
  2071. Possible values are @var{0}, @var{8} and @var{16}.
  2072. Use @var{0} to disable alpha plane coding.
  2073. @end table
  2074. @subsection Speed considerations
  2075. In the default mode of operation the encoder has to honor frame constraints
  2076. (i.e. not produce frames with size bigger than requested) while still making
  2077. output picture as good as possible.
  2078. A frame containing a lot of small details is harder to compress and the encoder
  2079. would spend more time searching for appropriate quantizers for each slice.
  2080. Setting a higher @option{bits_per_mb} limit will improve the speed.
  2081. For the fastest encoding speed set the @option{qscale} parameter (4 is the
  2082. recommended value) and do not set a size constraint.
  2083. @section QSV encoders
  2084. The family of Intel QuickSync Video encoders (MPEG-2, H.264 and HEVC)
  2085. The ratecontrol method is selected as follows:
  2086. @itemize @bullet
  2087. @item
  2088. When @option{global_quality} is specified, a quality-based mode is used.
  2089. Specifically this means either
  2090. @itemize @minus
  2091. @item
  2092. @var{CQP} - constant quantizer scale, when the @option{qscale} codec flag is
  2093. also set (the @option{-qscale} ffmpeg option).
  2094. @item
  2095. @var{LA_ICQ} - intelligent constant quality with lookahead, when the
  2096. @option{look_ahead} option is also set.
  2097. @item
  2098. @var{ICQ} -- intelligent constant quality otherwise.
  2099. @end itemize
  2100. @item
  2101. Otherwise, a bitrate-based mode is used. For all of those, you should specify at
  2102. least the desired average bitrate with the @option{b} option.
  2103. @itemize @minus
  2104. @item
  2105. @var{LA} - VBR with lookahead, when the @option{look_ahead} option is specified.
  2106. @item
  2107. @var{VCM} - video conferencing mode, when the @option{vcm} option is set.
  2108. @item
  2109. @var{CBR} - constant bitrate, when @option{maxrate} is specified and equal to
  2110. the average bitrate.
  2111. @item
  2112. @var{VBR} - variable bitrate, when @option{maxrate} is specified, but is higher
  2113. than the average bitrate.
  2114. @item
  2115. @var{AVBR} - average VBR mode, when @option{maxrate} is not specified. This mode
  2116. is further configured by the @option{avbr_accuracy} and
  2117. @option{avbr_convergence} options.
  2118. @end itemize
  2119. @end itemize
  2120. Note that depending on your system, a different mode than the one you specified
  2121. may be selected by the encoder. Set the verbosity level to @var{verbose} or
  2122. higher to see the actual settings used by the QSV runtime.
  2123. Additional libavcodec global options are mapped to MSDK options as follows:
  2124. @itemize
  2125. @item
  2126. @option{g/gop_size} -> @option{GopPicSize}
  2127. @item
  2128. @option{bf/max_b_frames}+1 -> @option{GopRefDist}
  2129. @item
  2130. @option{rc_init_occupancy/rc_initial_buffer_occupancy} ->
  2131. @option{InitialDelayInKB}
  2132. @item
  2133. @option{slices} -> @option{NumSlice}
  2134. @item
  2135. @option{refs} -> @option{NumRefFrame}
  2136. @item
  2137. @option{b_strategy/b_frame_strategy} -> @option{BRefType}
  2138. @item
  2139. @option{cgop/CLOSED_GOP} codec flag -> @option{GopOptFlag}
  2140. @item
  2141. For the @var{CQP} mode, the @option{i_qfactor/i_qoffset} and
  2142. @option{b_qfactor/b_qoffset} set the difference between @var{QPP} and @var{QPI},
  2143. and @var{QPP} and @var{QPB} respectively.
  2144. @item
  2145. Setting the @option{coder} option to the value @var{vlc} will make the H.264
  2146. encoder use CAVLC instead of CABAC.
  2147. @end itemize
  2148. @section snow
  2149. @subsection Options
  2150. @table @option
  2151. @item iterative_dia_size
  2152. dia size for the iterative motion estimation
  2153. @end table
  2154. @section VAAPI encoders
  2155. Wrappers for hardware encoders accessible via VAAPI.
  2156. These encoders only accept input in VAAPI hardware surfaces. If you have input
  2157. in software frames, use the @option{hwupload} filter to upload them to the GPU.
  2158. The following standard libavcodec options are used:
  2159. @itemize
  2160. @item
  2161. @option{g} / @option{gop_size}
  2162. @item
  2163. @option{bf} / @option{max_b_frames}
  2164. @item
  2165. @option{profile}
  2166. If not set, this will be determined automatically from the format of the input
  2167. frames and the profiles supported by the driver.
  2168. @item
  2169. @option{level}
  2170. @item
  2171. @option{b} / @option{bit_rate}
  2172. @item
  2173. @option{maxrate} / @option{rc_max_rate}
  2174. @item
  2175. @option{bufsize} / @option{rc_buffer_size}
  2176. @item
  2177. @option{rc_init_occupancy} / @option{rc_initial_buffer_occupancy}
  2178. @item
  2179. @option{compression_level}
  2180. Speed / quality tradeoff: higher values are faster / worse quality.
  2181. @item
  2182. @option{q} / @option{global_quality}
  2183. Size / quality tradeoff: higher values are smaller / worse quality.
  2184. @item
  2185. @option{qmin}
  2186. @item
  2187. @option{qmax}
  2188. @item
  2189. @option{i_qfactor} / @option{i_quant_factor}
  2190. @item
  2191. @option{i_qoffset} / @option{i_quant_offset}
  2192. @item
  2193. @option{b_qfactor} / @option{b_quant_factor}
  2194. @item
  2195. @option{b_qoffset} / @option{b_quant_offset}
  2196. @item
  2197. @option{slices}
  2198. @end itemize
  2199. All encoders support the following options:
  2200. @table @option
  2201. @item low_power
  2202. Some drivers/platforms offer a second encoder for some codecs intended to use
  2203. less power than the default encoder; setting this option will attempt to use
  2204. that encoder. Note that it may support a reduced feature set, so some other
  2205. options may not be available in this mode.
  2206. @item idr_interval
  2207. Set the number of normal intra frames between full-refresh (IDR) frames in
  2208. open-GOP mode. The intra frames are still IRAPs, but will not include global
  2209. headers and may have non-decodable leading pictures.
  2210. @item b_depth
  2211. Set the B-frame reference depth. When set to one (the default), all B-frames
  2212. will refer only to P- or I-frames. When set to greater values multiple layers
  2213. of B-frames will be present, frames in each layer only referring to frames in
  2214. higher layers.
  2215. @item rc_mode
  2216. Set the rate control mode to use. A given driver may only support a subset of
  2217. modes.
  2218. Possible modes:
  2219. @table @option
  2220. @item auto
  2221. Choose the mode automatically based on driver support and the other options.
  2222. This is the default.
  2223. @item CQP
  2224. Constant-quality.
  2225. @item CBR
  2226. Constant-bitrate.
  2227. @item VBR
  2228. Variable-bitrate.
  2229. @item ICQ
  2230. Intelligent constant-quality.
  2231. @item QVBR
  2232. Quality-defined variable-bitrate.
  2233. @item AVBR
  2234. Average variable bitrate.
  2235. @end table
  2236. @end table
  2237. Each encoder also has its own specific options:
  2238. @table @option
  2239. @item h264_vaapi
  2240. @option{profile} sets the value of @emph{profile_idc} and the @emph{constraint_set*_flag}s.
  2241. @option{level} sets the value of @emph{level_idc}.
  2242. @table @option
  2243. @item coder
  2244. Set entropy encoder (default is @emph{cabac}). Possible values:
  2245. @table @samp
  2246. @item ac
  2247. @item cabac
  2248. Use CABAC.
  2249. @item vlc
  2250. @item cavlc
  2251. Use CAVLC.
  2252. @end table
  2253. @item aud
  2254. Include access unit delimiters in the stream (not included by default).
  2255. @item sei
  2256. Set SEI message types to include.
  2257. Some combination of the following values:
  2258. @table @samp
  2259. @item identifier
  2260. Include a @emph{user_data_unregistered} message containing information about
  2261. the encoder.
  2262. @item timing
  2263. Include picture timing parameters (@emph{buffering_period} and
  2264. @emph{pic_timing} messages).
  2265. @item recovery_point
  2266. Include recovery points where appropriate (@emph{recovery_point} messages).
  2267. @end table
  2268. @end table
  2269. @item hevc_vaapi
  2270. @option{profile} and @option{level} set the values of
  2271. @emph{general_profile_idc} and @emph{general_level_idc} respectively.
  2272. @table @option
  2273. @item aud
  2274. Include access unit delimiters in the stream (not included by default).
  2275. @item tier
  2276. Set @emph{general_tier_flag}. This may affect the level chosen for the stream
  2277. if it is not explicitly specified.
  2278. @item sei
  2279. Set SEI message types to include.
  2280. Some combination of the following values:
  2281. @table @samp
  2282. @item hdr
  2283. Include HDR metadata if the input frames have it
  2284. (@emph{mastering_display_colour_volume} and @emph{content_light_level}
  2285. messages).
  2286. @end table
  2287. @end table
  2288. @item mjpeg_vaapi
  2289. Only baseline DCT encoding is supported. The encoder always uses the standard
  2290. quantisation and huffman tables - @option{global_quality} scales the standard
  2291. quantisation table (range 1-100).
  2292. For YUV, 4:2:0, 4:2:2 and 4:4:4 subsampling modes are supported. RGB is also
  2293. supported, and will create an RGB JPEG.
  2294. @table @option
  2295. @item jfif
  2296. Include JFIF header in each frame (not included by default).
  2297. @item huffman
  2298. Include standard huffman tables (on by default). Turning this off will save
  2299. a few hundred bytes in each output frame, but may lose compatibility with some
  2300. JPEG decoders which don't fully handle MJPEG.
  2301. @end table
  2302. @item mpeg2_vaapi
  2303. @option{profile} and @option{level} set the value of @emph{profile_and_level_indication}.
  2304. @item vp8_vaapi
  2305. B-frames are not supported.
  2306. @option{global_quality} sets the @emph{q_idx} used for non-key frames (range 0-127).
  2307. @table @option
  2308. @item loop_filter_level
  2309. @item loop_filter_sharpness
  2310. Manually set the loop filter parameters.
  2311. @end table
  2312. @item vp9_vaapi
  2313. @option{global_quality} sets the @emph{q_idx} used for P-frames (range 0-255).
  2314. @table @option
  2315. @item loop_filter_level
  2316. @item loop_filter_sharpness
  2317. Manually set the loop filter parameters.
  2318. @end table
  2319. B-frames are supported, but the output stream is always in encode order rather than display
  2320. order. If B-frames are enabled, it may be necessary to use the @option{vp9_raw_reorder}
  2321. bitstream filter to modify the output stream to display frames in the correct order.
  2322. Only normal frames are produced - the @option{vp9_superframe} bitstream filter may be
  2323. required to produce a stream usable with all decoders.
  2324. @end table
  2325. @section vc2
  2326. SMPTE VC-2 (previously BBC Dirac Pro). This codec was primarily aimed at
  2327. professional broadcasting but since it supports yuv420, yuv422 and yuv444 at
  2328. 8 (limited range or full range), 10 or 12 bits, this makes it suitable for
  2329. other tasks which require low overhead and low compression (like screen
  2330. recording).
  2331. @subsection Options
  2332. @table @option
  2333. @item b
  2334. Sets target video bitrate. Usually that's around 1:6 of the uncompressed
  2335. video bitrate (e.g. for 1920x1080 50fps yuv422p10 that's around 400Mbps). Higher
  2336. values (close to the uncompressed bitrate) turn on lossless compression mode.
  2337. @item field_order
  2338. Enables field coding when set (e.g. to tt - top field first) for interlaced
  2339. inputs. Should increase compression with interlaced content as it splits the
  2340. fields and encodes each separately.
  2341. @item wavelet_depth
  2342. Sets the total amount of wavelet transforms to apply, between 1 and 5 (default).
  2343. Lower values reduce compression and quality. Less capable decoders may not be
  2344. able to handle values of @option{wavelet_depth} over 3.
  2345. @item wavelet_type
  2346. Sets the transform type. Currently only @var{5_3} (LeGall) and @var{9_7}
  2347. (Deslauriers-Dubuc)
  2348. are implemented, with 9_7 being the one with better compression and thus
  2349. is the default.
  2350. @item slice_width
  2351. @item slice_height
  2352. Sets the slice size for each slice. Larger values result in better compression.
  2353. For compatibility with other more limited decoders use @option{slice_width} of
  2354. 32 and @option{slice_height} of 8.
  2355. @item tolerance
  2356. Sets the undershoot tolerance of the rate control system in percent. This is
  2357. to prevent an expensive search from being run.
  2358. @item qm
  2359. Sets the quantization matrix preset to use by default or when @option{wavelet_depth}
  2360. is set to 5
  2361. @itemize @minus
  2362. @item
  2363. @var{default}
  2364. Uses the default quantization matrix from the specifications, extended with
  2365. values for the fifth level. This provides a good balance between keeping detail
  2366. and omitting artifacts.
  2367. @item
  2368. @var{flat}
  2369. Use a completely zeroed out quantization matrix. This increases PSNR but might
  2370. reduce perception. Use in bogus benchmarks.
  2371. @item
  2372. @var{color}
  2373. Reduces detail but attempts to preserve color at extremely low bitrates.
  2374. @end itemize
  2375. @end table
  2376. @c man end VIDEO ENCODERS
  2377. @chapter Subtitles Encoders
  2378. @c man begin SUBTITLES ENCODERS
  2379. @section dvdsub
  2380. This codec encodes the bitmap subtitle format that is used in DVDs.
  2381. Typically they are stored in VOBSUB file pairs (*.idx + *.sub),
  2382. and they can also be used in Matroska files.
  2383. @subsection Options
  2384. @table @option
  2385. @item even_rows_fix
  2386. When set to 1, enable a work-around that makes the number of pixel rows
  2387. even in all subtitles. This fixes a problem with some players that
  2388. cut off the bottom row if the number is odd. The work-around just adds
  2389. a fully transparent row if needed. The overhead is low, typically
  2390. one byte per subtitle on average.
  2391. By default, this work-around is disabled.
  2392. @end table
  2393. @c man end SUBTITLES ENCODERS