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