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.

3430 lines
97KB

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