]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avformat: add IVR demuxer
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acrossfade
322
323 Apply cross fade from one input audio stream to another input audio stream.
324 The cross fade is applied for specified duration near the end of first stream.
325
326 The filter accepts the following options:
327
328 @table @option
329 @item nb_samples, ns
330 Specify the number of samples for which the cross fade effect has to last.
331 At the end of the cross fade effect the first input audio will be completely
332 silent. Default is 44100.
333
334 @item duration, d
335 Specify the duration of the cross fade effect. See
336 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
337 for the accepted syntax.
338 By default the duration is determined by @var{nb_samples}.
339 If set this option is used instead of @var{nb_samples}.
340
341 @item overlap, o
342 Should first stream end overlap with second stream start. Default is enabled.
343
344 @item curve1
345 Set curve for cross fade transition for first stream.
346
347 @item curve2
348 Set curve for cross fade transition for second stream.
349
350 For description of available curve types see @ref{afade} filter description.
351 @end table
352
353 @subsection Examples
354
355 @itemize
356 @item
357 Cross fade from one input to another:
358 @example
359 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
360 @end example
361
362 @item
363 Cross fade from one input to another but without overlapping:
364 @example
365 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
366 @end example
367 @end itemize
368
369 @section adelay
370
371 Delay one or more audio channels.
372
373 Samples in delayed channel are filled with silence.
374
375 The filter accepts the following option:
376
377 @table @option
378 @item delays
379 Set list of delays in milliseconds for each channel separated by '|'.
380 At least one delay greater than 0 should be provided.
381 Unused delays will be silently ignored. If number of given delays is
382 smaller than number of channels all remaining channels will not be delayed.
383 @end table
384
385 @subsection Examples
386
387 @itemize
388 @item
389 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
390 the second channel (and any other channels that may be present) unchanged.
391 @example
392 adelay=1500|0|500
393 @end example
394 @end itemize
395
396 @section aecho
397
398 Apply echoing to the input audio.
399
400 Echoes are reflected sound and can occur naturally amongst mountains
401 (and sometimes large buildings) when talking or shouting; digital echo
402 effects emulate this behaviour and are often used to help fill out the
403 sound of a single instrument or vocal. The time difference between the
404 original signal and the reflection is the @code{delay}, and the
405 loudness of the reflected signal is the @code{decay}.
406 Multiple echoes can have different delays and decays.
407
408 A description of the accepted parameters follows.
409
410 @table @option
411 @item in_gain
412 Set input gain of reflected signal. Default is @code{0.6}.
413
414 @item out_gain
415 Set output gain of reflected signal. Default is @code{0.3}.
416
417 @item delays
418 Set list of time intervals in milliseconds between original signal and reflections
419 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
420 Default is @code{1000}.
421
422 @item decays
423 Set list of loudnesses of reflected signals separated by '|'.
424 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
425 Default is @code{0.5}.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Make it sound as if there are twice as many instruments as are actually playing:
433 @example
434 aecho=0.8:0.88:60:0.4
435 @end example
436
437 @item
438 If delay is very short, then it sound like a (metallic) robot playing music:
439 @example
440 aecho=0.8:0.88:6:0.4
441 @end example
442
443 @item
444 A longer delay will sound like an open air concert in the mountains:
445 @example
446 aecho=0.8:0.9:1000:0.3
447 @end example
448
449 @item
450 Same as above but with one more mountain:
451 @example
452 aecho=0.8:0.9:1000|1800:0.3|0.25
453 @end example
454 @end itemize
455
456 @section aeval
457
458 Modify an audio signal according to the specified expressions.
459
460 This filter accepts one or more expressions (one for each channel),
461 which are evaluated and used to modify a corresponding audio signal.
462
463 It accepts the following parameters:
464
465 @table @option
466 @item exprs
467 Set the '|'-separated expressions list for each separate channel. If
468 the number of input channels is greater than the number of
469 expressions, the last specified expression is used for the remaining
470 output channels.
471
472 @item channel_layout, c
473 Set output channel layout. If not specified, the channel layout is
474 specified by the number of expressions. If set to @samp{same}, it will
475 use by default the same input channel layout.
476 @end table
477
478 Each expression in @var{exprs} can contain the following constants and functions:
479
480 @table @option
481 @item ch
482 channel number of the current expression
483
484 @item n
485 number of the evaluated sample, starting from 0
486
487 @item s
488 sample rate
489
490 @item t
491 time of the evaluated sample expressed in seconds
492
493 @item nb_in_channels
494 @item nb_out_channels
495 input and output number of channels
496
497 @item val(CH)
498 the value of input channel with number @var{CH}
499 @end table
500
501 Note: this filter is slow. For faster processing you should use a
502 dedicated filter.
503
504 @subsection Examples
505
506 @itemize
507 @item
508 Half volume:
509 @example
510 aeval=val(ch)/2:c=same
511 @end example
512
513 @item
514 Invert phase of the second channel:
515 @example
516 aeval=val(0)|-val(1)
517 @end example
518 @end itemize
519
520 @anchor{afade}
521 @section afade
522
523 Apply fade-in/out effect to input audio.
524
525 A description of the accepted parameters follows.
526
527 @table @option
528 @item type, t
529 Specify the effect type, can be either @code{in} for fade-in, or
530 @code{out} for a fade-out effect. Default is @code{in}.
531
532 @item start_sample, ss
533 Specify the number of the start sample for starting to apply the fade
534 effect. Default is 0.
535
536 @item nb_samples, ns
537 Specify the number of samples for which the fade effect has to last. At
538 the end of the fade-in effect the output audio will have the same
539 volume as the input audio, at the end of the fade-out transition
540 the output audio will be silence. Default is 44100.
541
542 @item start_time, st
543 Specify the start time of the fade effect. Default is 0.
544 The value must be specified as a time duration; see
545 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
546 for the accepted syntax.
547 If set this option is used instead of @var{start_sample}.
548
549 @item duration, d
550 Specify the duration of the fade effect. See
551 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
552 for the accepted syntax.
553 At the end of the fade-in effect the output audio will have the same
554 volume as the input audio, at the end of the fade-out transition
555 the output audio will be silence.
556 By default the duration is determined by @var{nb_samples}.
557 If set this option is used instead of @var{nb_samples}.
558
559 @item curve
560 Set curve for fade transition.
561
562 It accepts the following values:
563 @table @option
564 @item tri
565 select triangular, linear slope (default)
566 @item qsin
567 select quarter of sine wave
568 @item hsin
569 select half of sine wave
570 @item esin
571 select exponential sine wave
572 @item log
573 select logarithmic
574 @item ipar
575 select inverted parabola
576 @item qua
577 select quadratic
578 @item cub
579 select cubic
580 @item squ
581 select square root
582 @item cbr
583 select cubic root
584 @item par
585 select parabola
586 @item exp
587 select exponential
588 @item iqsin
589 select inverted quarter of sine wave
590 @item ihsin
591 select inverted half of sine wave
592 @item dese
593 select double-exponential seat
594 @item desi
595 select double-exponential sigmoid
596 @end table
597 @end table
598
599 @subsection Examples
600
601 @itemize
602 @item
603 Fade in first 15 seconds of audio:
604 @example
605 afade=t=in:ss=0:d=15
606 @end example
607
608 @item
609 Fade out last 25 seconds of a 900 seconds audio:
610 @example
611 afade=t=out:st=875:d=25
612 @end example
613 @end itemize
614
615 @anchor{aformat}
616 @section aformat
617
618 Set output format constraints for the input audio. The framework will
619 negotiate the most appropriate format to minimize conversions.
620
621 It accepts the following parameters:
622 @table @option
623
624 @item sample_fmts
625 A '|'-separated list of requested sample formats.
626
627 @item sample_rates
628 A '|'-separated list of requested sample rates.
629
630 @item channel_layouts
631 A '|'-separated list of requested channel layouts.
632
633 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
634 for the required syntax.
635 @end table
636
637 If a parameter is omitted, all values are allowed.
638
639 Force the output to either unsigned 8-bit or signed 16-bit stereo
640 @example
641 aformat=sample_fmts=u8|s16:channel_layouts=stereo
642 @end example
643
644 @section agate
645
646 A gate is mainly used to reduce lower parts of a signal. This kind of signal
647 processing reduces disturbing noise between useful signals.
648
649 Gating is done by detecting the volume below a chosen level @var{threshold}
650 and divide it by the factor set with @var{ratio}. The bottom of the noise
651 floor is set via @var{range}. Because an exact manipulation of the signal
652 would cause distortion of the waveform the reduction can be levelled over
653 time. This is done by setting @var{attack} and @var{release}.
654
655 @var{attack} determines how long the signal has to fall below the threshold
656 before any reduction will occur and @var{release} sets the time the signal
657 has to raise above the threshold to reduce the reduction again.
658 Shorter signals than the chosen attack time will be left untouched.
659
660 @table @option
661 @item level_in
662 Set input level before filtering.
663
664 @item range
665 Set the level of gain reduction when the signal is below the threshold.
666
667 @item threshold
668 If a signal rises above this level the gain reduction is released.
669
670 @item ratio
671 Set a ratio about which the signal is reduced.
672
673 @item attack
674 Amount of milliseconds the signal has to rise above the threshold before gain
675 reduction stops.
676
677 @item release
678 Amount of milliseconds the signal has to fall below the threshold before the
679 reduction is increased again.
680
681 @item makeup
682 Set amount of amplification of signal after processing.
683
684 @item knee
685 Curve the sharp knee around the threshold to enter gain reduction more softly.
686
687 @item detection
688 Choose if exact signal should be taken for detection or an RMS like one.
689
690 @item link
691 Choose if the average level between all channels or the louder channel affects
692 the reduction.
693 @end table
694
695 @section alimiter
696
697 The limiter prevents input signal from raising over a desired threshold.
698 This limiter uses lookahead technology to prevent your signal from distorting.
699 It means that there is a small delay after signal is processed. Keep in mind
700 that the delay it produces is the attack time you set.
701
702 The filter accepts the following options:
703
704 @table @option
705 @item limit
706 Don't let signals above this level pass the limiter. The removed amplitude is
707 added automatically. Default is 1.
708
709 @item attack
710 The limiter will reach its attenuation level in this amount of time in
711 milliseconds. Default is 5 milliseconds.
712
713 @item release
714 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
715 Default is 50 milliseconds.
716
717 @item asc
718 When gain reduction is always needed ASC takes care of releasing to an
719 average reduction level rather than reaching a reduction of 0 in the release
720 time.
721
722 @item asc_level
723 Select how much the release time is affected by ASC, 0 means nearly no changes
724 in release time while 1 produces higher release times.
725 @end table
726
727 Depending on picked setting it is recommended to upsample input 2x or 4x times
728 with @ref{aresample} before applying this filter.
729
730 @section allpass
731
732 Apply a two-pole all-pass filter with central frequency (in Hz)
733 @var{frequency}, and filter-width @var{width}.
734 An all-pass filter changes the audio's frequency to phase relationship
735 without changing its frequency to amplitude relationship.
736
737 The filter accepts the following options:
738
739 @table @option
740 @item frequency, f
741 Set frequency in Hz.
742
743 @item width_type
744 Set method to specify band-width of filter.
745 @table @option
746 @item h
747 Hz
748 @item q
749 Q-Factor
750 @item o
751 octave
752 @item s
753 slope
754 @end table
755
756 @item width, w
757 Specify the band-width of a filter in width_type units.
758 @end table
759
760 @anchor{amerge}
761 @section amerge
762
763 Merge two or more audio streams into a single multi-channel stream.
764
765 The filter accepts the following options:
766
767 @table @option
768
769 @item inputs
770 Set the number of inputs. Default is 2.
771
772 @end table
773
774 If the channel layouts of the inputs are disjoint, and therefore compatible,
775 the channel layout of the output will be set accordingly and the channels
776 will be reordered as necessary. If the channel layouts of the inputs are not
777 disjoint, the output will have all the channels of the first input then all
778 the channels of the second input, in that order, and the channel layout of
779 the output will be the default value corresponding to the total number of
780 channels.
781
782 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
783 is FC+BL+BR, then the output will be in 5.1, with the channels in the
784 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
785 first input, b1 is the first channel of the second input).
786
787 On the other hand, if both input are in stereo, the output channels will be
788 in the default order: a1, a2, b1, b2, and the channel layout will be
789 arbitrarily set to 4.0, which may or may not be the expected value.
790
791 All inputs must have the same sample rate, and format.
792
793 If inputs do not have the same duration, the output will stop with the
794 shortest.
795
796 @subsection Examples
797
798 @itemize
799 @item
800 Merge two mono files into a stereo stream:
801 @example
802 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
803 @end example
804
805 @item
806 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
807 @example
808 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
809 @end example
810 @end itemize
811
812 @section amix
813
814 Mixes multiple audio inputs into a single output.
815
816 Note that this filter only supports float samples (the @var{amerge}
817 and @var{pan} audio filters support many formats). If the @var{amix}
818 input has integer samples then @ref{aresample} will be automatically
819 inserted to perform the conversion to float samples.
820
821 For example
822 @example
823 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
824 @end example
825 will mix 3 input audio streams to a single output with the same duration as the
826 first input and a dropout transition time of 3 seconds.
827
828 It accepts the following parameters:
829 @table @option
830
831 @item inputs
832 The number of inputs. If unspecified, it defaults to 2.
833
834 @item duration
835 How to determine the end-of-stream.
836 @table @option
837
838 @item longest
839 The duration of the longest input. (default)
840
841 @item shortest
842 The duration of the shortest input.
843
844 @item first
845 The duration of the first input.
846
847 @end table
848
849 @item dropout_transition
850 The transition time, in seconds, for volume renormalization when an input
851 stream ends. The default value is 2 seconds.
852
853 @end table
854
855 @section anull
856
857 Pass the audio source unchanged to the output.
858
859 @section apad
860
861 Pad the end of an audio stream with silence.
862
863 This can be used together with @command{ffmpeg} @option{-shortest} to
864 extend audio streams to the same length as the video stream.
865
866 A description of the accepted options follows.
867
868 @table @option
869 @item packet_size
870 Set silence packet size. Default value is 4096.
871
872 @item pad_len
873 Set the number of samples of silence to add to the end. After the
874 value is reached, the stream is terminated. This option is mutually
875 exclusive with @option{whole_len}.
876
877 @item whole_len
878 Set the minimum total number of samples in the output audio stream. If
879 the value is longer than the input audio length, silence is added to
880 the end, until the value is reached. This option is mutually exclusive
881 with @option{pad_len}.
882 @end table
883
884 If neither the @option{pad_len} nor the @option{whole_len} option is
885 set, the filter will add silence to the end of the input stream
886 indefinitely.
887
888 @subsection Examples
889
890 @itemize
891 @item
892 Add 1024 samples of silence to the end of the input:
893 @example
894 apad=pad_len=1024
895 @end example
896
897 @item
898 Make sure the audio output will contain at least 10000 samples, pad
899 the input with silence if required:
900 @example
901 apad=whole_len=10000
902 @end example
903
904 @item
905 Use @command{ffmpeg} to pad the audio input with silence, so that the
906 video stream will always result the shortest and will be converted
907 until the end in the output file when using the @option{shortest}
908 option:
909 @example
910 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
911 @end example
912 @end itemize
913
914 @section aphaser
915 Add a phasing effect to the input audio.
916
917 A phaser filter creates series of peaks and troughs in the frequency spectrum.
918 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
919
920 A description of the accepted parameters follows.
921
922 @table @option
923 @item in_gain
924 Set input gain. Default is 0.4.
925
926 @item out_gain
927 Set output gain. Default is 0.74
928
929 @item delay
930 Set delay in milliseconds. Default is 3.0.
931
932 @item decay
933 Set decay. Default is 0.4.
934
935 @item speed
936 Set modulation speed in Hz. Default is 0.5.
937
938 @item type
939 Set modulation type. Default is triangular.
940
941 It accepts the following values:
942 @table @samp
943 @item triangular, t
944 @item sinusoidal, s
945 @end table
946 @end table
947
948 @anchor{aresample}
949 @section aresample
950
951 Resample the input audio to the specified parameters, using the
952 libswresample library. If none are specified then the filter will
953 automatically convert between its input and output.
954
955 This filter is also able to stretch/squeeze the audio data to make it match
956 the timestamps or to inject silence / cut out audio to make it match the
957 timestamps, do a combination of both or do neither.
958
959 The filter accepts the syntax
960 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
961 expresses a sample rate and @var{resampler_options} is a list of
962 @var{key}=@var{value} pairs, separated by ":". See the
963 ffmpeg-resampler manual for the complete list of supported options.
964
965 @subsection Examples
966
967 @itemize
968 @item
969 Resample the input audio to 44100Hz:
970 @example
971 aresample=44100
972 @end example
973
974 @item
975 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
976 samples per second compensation:
977 @example
978 aresample=async=1000
979 @end example
980 @end itemize
981
982 @section asetnsamples
983
984 Set the number of samples per each output audio frame.
985
986 The last output packet may contain a different number of samples, as
987 the filter will flush all the remaining samples when the input audio
988 signal its end.
989
990 The filter accepts the following options:
991
992 @table @option
993
994 @item nb_out_samples, n
995 Set the number of frames per each output audio frame. The number is
996 intended as the number of samples @emph{per each channel}.
997 Default value is 1024.
998
999 @item pad, p
1000 If set to 1, the filter will pad the last audio frame with zeroes, so
1001 that the last frame will contain the same number of samples as the
1002 previous ones. Default value is 1.
1003 @end table
1004
1005 For example, to set the number of per-frame samples to 1234 and
1006 disable padding for the last frame, use:
1007 @example
1008 asetnsamples=n=1234:p=0
1009 @end example
1010
1011 @section asetrate
1012
1013 Set the sample rate without altering the PCM data.
1014 This will result in a change of speed and pitch.
1015
1016 The filter accepts the following options:
1017
1018 @table @option
1019 @item sample_rate, r
1020 Set the output sample rate. Default is 44100 Hz.
1021 @end table
1022
1023 @section ashowinfo
1024
1025 Show a line containing various information for each input audio frame.
1026 The input audio is not modified.
1027
1028 The shown line contains a sequence of key/value pairs of the form
1029 @var{key}:@var{value}.
1030
1031 The following values are shown in the output:
1032
1033 @table @option
1034 @item n
1035 The (sequential) number of the input frame, starting from 0.
1036
1037 @item pts
1038 The presentation timestamp of the input frame, in time base units; the time base
1039 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1040
1041 @item pts_time
1042 The presentation timestamp of the input frame in seconds.
1043
1044 @item pos
1045 position of the frame in the input stream, -1 if this information in
1046 unavailable and/or meaningless (for example in case of synthetic audio)
1047
1048 @item fmt
1049 The sample format.
1050
1051 @item chlayout
1052 The channel layout.
1053
1054 @item rate
1055 The sample rate for the audio frame.
1056
1057 @item nb_samples
1058 The number of samples (per channel) in the frame.
1059
1060 @item checksum
1061 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1062 audio, the data is treated as if all the planes were concatenated.
1063
1064 @item plane_checksums
1065 A list of Adler-32 checksums for each data plane.
1066 @end table
1067
1068 @anchor{astats}
1069 @section astats
1070
1071 Display time domain statistical information about the audio channels.
1072 Statistics are calculated and displayed for each audio channel and,
1073 where applicable, an overall figure is also given.
1074
1075 It accepts the following option:
1076 @table @option
1077 @item length
1078 Short window length in seconds, used for peak and trough RMS measurement.
1079 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1080
1081 @item metadata
1082
1083 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1084 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1085 disabled.
1086
1087 Available keys for each channel are:
1088 DC_offset
1089 Min_level
1090 Max_level
1091 Min_difference
1092 Max_difference
1093 Mean_difference
1094 Peak_level
1095 RMS_peak
1096 RMS_trough
1097 Crest_factor
1098 Flat_factor
1099 Peak_count
1100 Bit_depth
1101
1102 and for Overall:
1103 DC_offset
1104 Min_level
1105 Max_level
1106 Min_difference
1107 Max_difference
1108 Mean_difference
1109 Peak_level
1110 RMS_level
1111 RMS_peak
1112 RMS_trough
1113 Flat_factor
1114 Peak_count
1115 Bit_depth
1116 Number_of_samples
1117
1118 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1119 this @code{lavfi.astats.Overall.Peak_count}.
1120
1121 For description what each key means read below.
1122
1123 @item reset
1124 Set number of frame after which stats are going to be recalculated.
1125 Default is disabled.
1126 @end table
1127
1128 A description of each shown parameter follows:
1129
1130 @table @option
1131 @item DC offset
1132 Mean amplitude displacement from zero.
1133
1134 @item Min level
1135 Minimal sample level.
1136
1137 @item Max level
1138 Maximal sample level.
1139
1140 @item Min difference
1141 Minimal difference between two consecutive samples.
1142
1143 @item Max difference
1144 Maximal difference between two consecutive samples.
1145
1146 @item Mean difference
1147 Mean difference between two consecutive samples.
1148 The average of each difference between two consecutive samples.
1149
1150 @item Peak level dB
1151 @item RMS level dB
1152 Standard peak and RMS level measured in dBFS.
1153
1154 @item RMS peak dB
1155 @item RMS trough dB
1156 Peak and trough values for RMS level measured over a short window.
1157
1158 @item Crest factor
1159 Standard ratio of peak to RMS level (note: not in dB).
1160
1161 @item Flat factor
1162 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1163 (i.e. either @var{Min level} or @var{Max level}).
1164
1165 @item Peak count
1166 Number of occasions (not the number of samples) that the signal attained either
1167 @var{Min level} or @var{Max level}.
1168
1169 @item Bit depth
1170 Overall bit depth of audio. Number of bits used for each sample.
1171 @end table
1172
1173 @section asyncts
1174
1175 Synchronize audio data with timestamps by squeezing/stretching it and/or
1176 dropping samples/adding silence when needed.
1177
1178 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1179
1180 It accepts the following parameters:
1181 @table @option
1182
1183 @item compensate
1184 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1185 by default. When disabled, time gaps are covered with silence.
1186
1187 @item min_delta
1188 The minimum difference between timestamps and audio data (in seconds) to trigger
1189 adding/dropping samples. The default value is 0.1. If you get an imperfect
1190 sync with this filter, try setting this parameter to 0.
1191
1192 @item max_comp
1193 The maximum compensation in samples per second. Only relevant with compensate=1.
1194 The default value is 500.
1195
1196 @item first_pts
1197 Assume that the first PTS should be this value. The time base is 1 / sample
1198 rate. This allows for padding/trimming at the start of the stream. By default,
1199 no assumption is made about the first frame's expected PTS, so no padding or
1200 trimming is done. For example, this could be set to 0 to pad the beginning with
1201 silence if an audio stream starts after the video stream or to trim any samples
1202 with a negative PTS due to encoder delay.
1203
1204 @end table
1205
1206 @section atempo
1207
1208 Adjust audio tempo.
1209
1210 The filter accepts exactly one parameter, the audio tempo. If not
1211 specified then the filter will assume nominal 1.0 tempo. Tempo must
1212 be in the [0.5, 2.0] range.
1213
1214 @subsection Examples
1215
1216 @itemize
1217 @item
1218 Slow down audio to 80% tempo:
1219 @example
1220 atempo=0.8
1221 @end example
1222
1223 @item
1224 To speed up audio to 125% tempo:
1225 @example
1226 atempo=1.25
1227 @end example
1228 @end itemize
1229
1230 @section atrim
1231
1232 Trim the input so that the output contains one continuous subpart of the input.
1233
1234 It accepts the following parameters:
1235 @table @option
1236 @item start
1237 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1238 sample with the timestamp @var{start} will be the first sample in the output.
1239
1240 @item end
1241 Specify time of the first audio sample that will be dropped, i.e. the
1242 audio sample immediately preceding the one with the timestamp @var{end} will be
1243 the last sample in the output.
1244
1245 @item start_pts
1246 Same as @var{start}, except this option sets the start timestamp in samples
1247 instead of seconds.
1248
1249 @item end_pts
1250 Same as @var{end}, except this option sets the end timestamp in samples instead
1251 of seconds.
1252
1253 @item duration
1254 The maximum duration of the output in seconds.
1255
1256 @item start_sample
1257 The number of the first sample that should be output.
1258
1259 @item end_sample
1260 The number of the first sample that should be dropped.
1261 @end table
1262
1263 @option{start}, @option{end}, and @option{duration} are expressed as time
1264 duration specifications; see
1265 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1266
1267 Note that the first two sets of the start/end options and the @option{duration}
1268 option look at the frame timestamp, while the _sample options simply count the
1269 samples that pass through the filter. So start/end_pts and start/end_sample will
1270 give different results when the timestamps are wrong, inexact or do not start at
1271 zero. Also note that this filter does not modify the timestamps. If you wish
1272 to have the output timestamps start at zero, insert the asetpts filter after the
1273 atrim filter.
1274
1275 If multiple start or end options are set, this filter tries to be greedy and
1276 keep all samples that match at least one of the specified constraints. To keep
1277 only the part that matches all the constraints at once, chain multiple atrim
1278 filters.
1279
1280 The defaults are such that all the input is kept. So it is possible to set e.g.
1281 just the end values to keep everything before the specified time.
1282
1283 Examples:
1284 @itemize
1285 @item
1286 Drop everything except the second minute of input:
1287 @example
1288 ffmpeg -i INPUT -af atrim=60:120
1289 @end example
1290
1291 @item
1292 Keep only the first 1000 samples:
1293 @example
1294 ffmpeg -i INPUT -af atrim=end_sample=1000
1295 @end example
1296
1297 @end itemize
1298
1299 @section bandpass
1300
1301 Apply a two-pole Butterworth band-pass filter with central
1302 frequency @var{frequency}, and (3dB-point) band-width width.
1303 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1304 instead of the default: constant 0dB peak gain.
1305 The filter roll off at 6dB per octave (20dB per decade).
1306
1307 The filter accepts the following options:
1308
1309 @table @option
1310 @item frequency, f
1311 Set the filter's central frequency. Default is @code{3000}.
1312
1313 @item csg
1314 Constant skirt gain if set to 1. Defaults to 0.
1315
1316 @item width_type
1317 Set method to specify band-width of filter.
1318 @table @option
1319 @item h
1320 Hz
1321 @item q
1322 Q-Factor
1323 @item o
1324 octave
1325 @item s
1326 slope
1327 @end table
1328
1329 @item width, w
1330 Specify the band-width of a filter in width_type units.
1331 @end table
1332
1333 @section bandreject
1334
1335 Apply a two-pole Butterworth band-reject filter with central
1336 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1337 The filter roll off at 6dB per octave (20dB per decade).
1338
1339 The filter accepts the following options:
1340
1341 @table @option
1342 @item frequency, f
1343 Set the filter's central frequency. Default is @code{3000}.
1344
1345 @item width_type
1346 Set method to specify band-width of filter.
1347 @table @option
1348 @item h
1349 Hz
1350 @item q
1351 Q-Factor
1352 @item o
1353 octave
1354 @item s
1355 slope
1356 @end table
1357
1358 @item width, w
1359 Specify the band-width of a filter in width_type units.
1360 @end table
1361
1362 @section bass
1363
1364 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1365 shelving filter with a response similar to that of a standard
1366 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1367
1368 The filter accepts the following options:
1369
1370 @table @option
1371 @item gain, g
1372 Give the gain at 0 Hz. Its useful range is about -20
1373 (for a large cut) to +20 (for a large boost).
1374 Beware of clipping when using a positive gain.
1375
1376 @item frequency, f
1377 Set the filter's central frequency and so can be used
1378 to extend or reduce the frequency range to be boosted or cut.
1379 The default value is @code{100} Hz.
1380
1381 @item width_type
1382 Set method to specify band-width of filter.
1383 @table @option
1384 @item h
1385 Hz
1386 @item q
1387 Q-Factor
1388 @item o
1389 octave
1390 @item s
1391 slope
1392 @end table
1393
1394 @item width, w
1395 Determine how steep is the filter's shelf transition.
1396 @end table
1397
1398 @section biquad
1399
1400 Apply a biquad IIR filter with the given coefficients.
1401 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1402 are the numerator and denominator coefficients respectively.
1403
1404 @section bs2b
1405 Bauer stereo to binaural transformation, which improves headphone listening of
1406 stereo audio records.
1407
1408 It accepts the following parameters:
1409 @table @option
1410
1411 @item profile
1412 Pre-defined crossfeed level.
1413 @table @option
1414
1415 @item default
1416 Default level (fcut=700, feed=50).
1417
1418 @item cmoy
1419 Chu Moy circuit (fcut=700, feed=60).
1420
1421 @item jmeier
1422 Jan Meier circuit (fcut=650, feed=95).
1423
1424 @end table
1425
1426 @item fcut
1427 Cut frequency (in Hz).
1428
1429 @item feed
1430 Feed level (in Hz).
1431
1432 @end table
1433
1434 @section channelmap
1435
1436 Remap input channels to new locations.
1437
1438 It accepts the following parameters:
1439 @table @option
1440 @item channel_layout
1441 The channel layout of the output stream.
1442
1443 @item map
1444 Map channels from input to output. The argument is a '|'-separated list of
1445 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1446 @var{in_channel} form. @var{in_channel} can be either the name of the input
1447 channel (e.g. FL for front left) or its index in the input channel layout.
1448 @var{out_channel} is the name of the output channel or its index in the output
1449 channel layout. If @var{out_channel} is not given then it is implicitly an
1450 index, starting with zero and increasing by one for each mapping.
1451 @end table
1452
1453 If no mapping is present, the filter will implicitly map input channels to
1454 output channels, preserving indices.
1455
1456 For example, assuming a 5.1+downmix input MOV file,
1457 @example
1458 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1459 @end example
1460 will create an output WAV file tagged as stereo from the downmix channels of
1461 the input.
1462
1463 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1464 @example
1465 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1466 @end example
1467
1468 @section channelsplit
1469
1470 Split each channel from an input audio stream into a separate output stream.
1471
1472 It accepts the following parameters:
1473 @table @option
1474 @item channel_layout
1475 The channel layout of the input stream. The default is "stereo".
1476 @end table
1477
1478 For example, assuming a stereo input MP3 file,
1479 @example
1480 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1481 @end example
1482 will create an output Matroska file with two audio streams, one containing only
1483 the left channel and the other the right channel.
1484
1485 Split a 5.1 WAV file into per-channel files:
1486 @example
1487 ffmpeg -i in.wav -filter_complex
1488 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1489 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1490 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1491 side_right.wav
1492 @end example
1493
1494 @section chorus
1495 Add a chorus effect to the audio.
1496
1497 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1498
1499 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1500 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1501 The modulation depth defines the range the modulated delay is played before or after
1502 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1503 sound tuned around the original one, like in a chorus where some vocals are slightly
1504 off key.
1505
1506 It accepts the following parameters:
1507 @table @option
1508 @item in_gain
1509 Set input gain. Default is 0.4.
1510
1511 @item out_gain
1512 Set output gain. Default is 0.4.
1513
1514 @item delays
1515 Set delays. A typical delay is around 40ms to 60ms.
1516
1517 @item decays
1518 Set decays.
1519
1520 @item speeds
1521 Set speeds.
1522
1523 @item depths
1524 Set depths.
1525 @end table
1526
1527 @subsection Examples
1528
1529 @itemize
1530 @item
1531 A single delay:
1532 @example
1533 chorus=0.7:0.9:55:0.4:0.25:2
1534 @end example
1535
1536 @item
1537 Two delays:
1538 @example
1539 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1540 @end example
1541
1542 @item
1543 Fuller sounding chorus with three delays:
1544 @example
1545 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
1546 @end example
1547 @end itemize
1548
1549 @section compand
1550 Compress or expand the audio's dynamic range.
1551
1552 It accepts the following parameters:
1553
1554 @table @option
1555
1556 @item attacks
1557 @item decays
1558 A list of times in seconds for each channel over which the instantaneous level
1559 of the input signal is averaged to determine its volume. @var{attacks} refers to
1560 increase of volume and @var{decays} refers to decrease of volume. For most
1561 situations, the attack time (response to the audio getting louder) should be
1562 shorter than the decay time, because the human ear is more sensitive to sudden
1563 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1564 a typical value for decay is 0.8 seconds.
1565 If specified number of attacks & decays is lower than number of channels, the last
1566 set attack/decay will be used for all remaining channels.
1567
1568 @item points
1569 A list of points for the transfer function, specified in dB relative to the
1570 maximum possible signal amplitude. Each key points list must be defined using
1571 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1572 @code{x0/y0 x1/y1 x2/y2 ....}
1573
1574 The input values must be in strictly increasing order but the transfer function
1575 does not have to be monotonically rising. The point @code{0/0} is assumed but
1576 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1577 function are @code{-70/-70|-60/-20}.
1578
1579 @item soft-knee
1580 Set the curve radius in dB for all joints. It defaults to 0.01.
1581
1582 @item gain
1583 Set the additional gain in dB to be applied at all points on the transfer
1584 function. This allows for easy adjustment of the overall gain.
1585 It defaults to 0.
1586
1587 @item volume
1588 Set an initial volume, in dB, to be assumed for each channel when filtering
1589 starts. This permits the user to supply a nominal level initially, so that, for
1590 example, a very large gain is not applied to initial signal levels before the
1591 companding has begun to operate. A typical value for audio which is initially
1592 quiet is -90 dB. It defaults to 0.
1593
1594 @item delay
1595 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1596 delayed before being fed to the volume adjuster. Specifying a delay
1597 approximately equal to the attack/decay times allows the filter to effectively
1598 operate in predictive rather than reactive mode. It defaults to 0.
1599
1600 @end table
1601
1602 @subsection Examples
1603
1604 @itemize
1605 @item
1606 Make music with both quiet and loud passages suitable for listening to in a
1607 noisy environment:
1608 @example
1609 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1610 @end example
1611
1612 Another example for audio with whisper and explosion parts:
1613 @example
1614 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1615 @end example
1616
1617 @item
1618 A noise gate for when the noise is at a lower level than the signal:
1619 @example
1620 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1621 @end example
1622
1623 @item
1624 Here is another noise gate, this time for when the noise is at a higher level
1625 than the signal (making it, in some ways, similar to squelch):
1626 @example
1627 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1628 @end example
1629 @end itemize
1630
1631 @section dcshift
1632 Apply a DC shift to the audio.
1633
1634 This can be useful to remove a DC offset (caused perhaps by a hardware problem
1635 in the recording chain) from the audio. The effect of a DC offset is reduced
1636 headroom and hence volume. The @ref{astats} filter can be used to determine if
1637 a signal has a DC offset.
1638
1639 @table @option
1640 @item shift
1641 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
1642 the audio.
1643
1644 @item limitergain
1645 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
1646 used to prevent clipping.
1647 @end table
1648
1649 @section dynaudnorm
1650 Dynamic Audio Normalizer.
1651
1652 This filter applies a certain amount of gain to the input audio in order
1653 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
1654 contrast to more "simple" normalization algorithms, the Dynamic Audio
1655 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
1656 This allows for applying extra gain to the "quiet" sections of the audio
1657 while avoiding distortions or clipping the "loud" sections. In other words:
1658 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
1659 sections, in the sense that the volume of each section is brought to the
1660 same target level. Note, however, that the Dynamic Audio Normalizer achieves
1661 this goal *without* applying "dynamic range compressing". It will retain 100%
1662 of the dynamic range *within* each section of the audio file.
1663
1664 @table @option
1665 @item f
1666 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
1667 Default is 500 milliseconds.
1668 The Dynamic Audio Normalizer processes the input audio in small chunks,
1669 referred to as frames. This is required, because a peak magnitude has no
1670 meaning for just a single sample value. Instead, we need to determine the
1671 peak magnitude for a contiguous sequence of sample values. While a "standard"
1672 normalizer would simply use the peak magnitude of the complete file, the
1673 Dynamic Audio Normalizer determines the peak magnitude individually for each
1674 frame. The length of a frame is specified in milliseconds. By default, the
1675 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
1676 been found to give good results with most files.
1677 Note that the exact frame length, in number of samples, will be determined
1678 automatically, based on the sampling rate of the individual input audio file.
1679
1680 @item g
1681 Set the Gaussian filter window size. In range from 3 to 301, must be odd
1682 number. Default is 31.
1683 Probably the most important parameter of the Dynamic Audio Normalizer is the
1684 @code{window size} of the Gaussian smoothing filter. The filter's window size
1685 is specified in frames, centered around the current frame. For the sake of
1686 simplicity, this must be an odd number. Consequently, the default value of 31
1687 takes into account the current frame, as well as the 15 preceding frames and
1688 the 15 subsequent frames. Using a larger window results in a stronger
1689 smoothing effect and thus in less gain variation, i.e. slower gain
1690 adaptation. Conversely, using a smaller window results in a weaker smoothing
1691 effect and thus in more gain variation, i.e. faster gain adaptation.
1692 In other words, the more you increase this value, the more the Dynamic Audio
1693 Normalizer will behave like a "traditional" normalization filter. On the
1694 contrary, the more you decrease this value, the more the Dynamic Audio
1695 Normalizer will behave like a dynamic range compressor.
1696
1697 @item p
1698 Set the target peak value. This specifies the highest permissible magnitude
1699 level for the normalized audio input. This filter will try to approach the
1700 target peak magnitude as closely as possible, but at the same time it also
1701 makes sure that the normalized signal will never exceed the peak magnitude.
1702 A frame's maximum local gain factor is imposed directly by the target peak
1703 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
1704 It is not recommended to go above this value.
1705
1706 @item m
1707 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
1708 The Dynamic Audio Normalizer determines the maximum possible (local) gain
1709 factor for each input frame, i.e. the maximum gain factor that does not
1710 result in clipping or distortion. The maximum gain factor is determined by
1711 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
1712 additionally bounds the frame's maximum gain factor by a predetermined
1713 (global) maximum gain factor. This is done in order to avoid excessive gain
1714 factors in "silent" or almost silent frames. By default, the maximum gain
1715 factor is 10.0, For most inputs the default value should be sufficient and
1716 it usually is not recommended to increase this value. Though, for input
1717 with an extremely low overall volume level, it may be necessary to allow even
1718 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
1719 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
1720 Instead, a "sigmoid" threshold function will be applied. This way, the
1721 gain factors will smoothly approach the threshold value, but never exceed that
1722 value.
1723
1724 @item r
1725 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
1726 By default, the Dynamic Audio Normalizer performs "peak" normalization.
1727 This means that the maximum local gain factor for each frame is defined
1728 (only) by the frame's highest magnitude sample. This way, the samples can
1729 be amplified as much as possible without exceeding the maximum signal
1730 level, i.e. without clipping. Optionally, however, the Dynamic Audio
1731 Normalizer can also take into account the frame's root mean square,
1732 abbreviated RMS. In electrical engineering, the RMS is commonly used to
1733 determine the power of a time-varying signal. It is therefore considered
1734 that the RMS is a better approximation of the "perceived loudness" than
1735 just looking at the signal's peak magnitude. Consequently, by adjusting all
1736 frames to a constant RMS value, a uniform "perceived loudness" can be
1737 established. If a target RMS value has been specified, a frame's local gain
1738 factor is defined as the factor that would result in exactly that RMS value.
1739 Note, however, that the maximum local gain factor is still restricted by the
1740 frame's highest magnitude sample, in order to prevent clipping.
1741
1742 @item n
1743 Enable channels coupling. By default is enabled.
1744 By default, the Dynamic Audio Normalizer will amplify all channels by the same
1745 amount. This means the same gain factor will be applied to all channels, i.e.
1746 the maximum possible gain factor is determined by the "loudest" channel.
1747 However, in some recordings, it may happen that the volume of the different
1748 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
1749 In this case, this option can be used to disable the channel coupling. This way,
1750 the gain factor will be determined independently for each channel, depending
1751 only on the individual channel's highest magnitude sample. This allows for
1752 harmonizing the volume of the different channels.
1753
1754 @item c
1755 Enable DC bias correction. By default is disabled.
1756 An audio signal (in the time domain) is a sequence of sample values.
1757 In the Dynamic Audio Normalizer these sample values are represented in the
1758 -1.0 to 1.0 range, regardless of the original input format. Normally, the
1759 audio signal, or "waveform", should be centered around the zero point.
1760 That means if we calculate the mean value of all samples in a file, or in a
1761 single frame, then the result should be 0.0 or at least very close to that
1762 value. If, however, there is a significant deviation of the mean value from
1763 0.0, in either positive or negative direction, this is referred to as a
1764 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
1765 Audio Normalizer provides optional DC bias correction.
1766 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
1767 the mean value, or "DC correction" offset, of each input frame and subtract
1768 that value from all of the frame's sample values which ensures those samples
1769 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
1770 boundaries, the DC correction offset values will be interpolated smoothly
1771 between neighbouring frames.
1772
1773 @item b
1774 Enable alternative boundary mode. By default is disabled.
1775 The Dynamic Audio Normalizer takes into account a certain neighbourhood
1776 around each frame. This includes the preceding frames as well as the
1777 subsequent frames. However, for the "boundary" frames, located at the very
1778 beginning and at the very end of the audio file, not all neighbouring
1779 frames are available. In particular, for the first few frames in the audio
1780 file, the preceding frames are not known. And, similarly, for the last few
1781 frames in the audio file, the subsequent frames are not known. Thus, the
1782 question arises which gain factors should be assumed for the missing frames
1783 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
1784 to deal with this situation. The default boundary mode assumes a gain factor
1785 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
1786 "fade out" at the beginning and at the end of the input, respectively.
1787
1788 @item s
1789 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
1790 By default, the Dynamic Audio Normalizer does not apply "traditional"
1791 compression. This means that signal peaks will not be pruned and thus the
1792 full dynamic range will be retained within each local neighbourhood. However,
1793 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
1794 normalization algorithm with a more "traditional" compression.
1795 For this purpose, the Dynamic Audio Normalizer provides an optional compression
1796 (thresholding) function. If (and only if) the compression feature is enabled,
1797 all input frames will be processed by a soft knee thresholding function prior
1798 to the actual normalization process. Put simply, the thresholding function is
1799 going to prune all samples whose magnitude exceeds a certain threshold value.
1800 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
1801 value. Instead, the threshold value will be adjusted for each individual
1802 frame.
1803 In general, smaller parameters result in stronger compression, and vice versa.
1804 Values below 3.0 are not recommended, because audible distortion may appear.
1805 @end table
1806
1807 @section earwax
1808
1809 Make audio easier to listen to on headphones.
1810
1811 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1812 so that when listened to on headphones the stereo image is moved from
1813 inside your head (standard for headphones) to outside and in front of
1814 the listener (standard for speakers).
1815
1816 Ported from SoX.
1817
1818 @section equalizer
1819
1820 Apply a two-pole peaking equalisation (EQ) filter. With this
1821 filter, the signal-level at and around a selected frequency can
1822 be increased or decreased, whilst (unlike bandpass and bandreject
1823 filters) that at all other frequencies is unchanged.
1824
1825 In order to produce complex equalisation curves, this filter can
1826 be given several times, each with a different central frequency.
1827
1828 The filter accepts the following options:
1829
1830 @table @option
1831 @item frequency, f
1832 Set the filter's central frequency in Hz.
1833
1834 @item width_type
1835 Set method to specify band-width of filter.
1836 @table @option
1837 @item h
1838 Hz
1839 @item q
1840 Q-Factor
1841 @item o
1842 octave
1843 @item s
1844 slope
1845 @end table
1846
1847 @item width, w
1848 Specify the band-width of a filter in width_type units.
1849
1850 @item gain, g
1851 Set the required gain or attenuation in dB.
1852 Beware of clipping when using a positive gain.
1853 @end table
1854
1855 @subsection Examples
1856 @itemize
1857 @item
1858 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
1859 @example
1860 equalizer=f=1000:width_type=h:width=200:g=-10
1861 @end example
1862
1863 @item
1864 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
1865 @example
1866 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
1867 @end example
1868 @end itemize
1869
1870 @section extrastereo
1871
1872 Linearly increases the difference between left and right channels which
1873 adds some sort of "live" effect to playback.
1874
1875 The filter accepts the following option:
1876
1877 @table @option
1878 @item m
1879 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
1880 (average of both channels), with 1.0 sound will be unchanged, with
1881 -1.0 left and right channels will be swapped.
1882
1883 @item c
1884 Enable clipping. By default is enabled.
1885 @end table
1886
1887 @section flanger
1888 Apply a flanging effect to the audio.
1889
1890 The filter accepts the following options:
1891
1892 @table @option
1893 @item delay
1894 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
1895
1896 @item depth
1897 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
1898
1899 @item regen
1900 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
1901 Default value is 0.
1902
1903 @item width
1904 Set percentage of delayed signal mixed with original. Range from 0 to 100.
1905 Default value is 71.
1906
1907 @item speed
1908 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
1909
1910 @item shape
1911 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
1912 Default value is @var{sinusoidal}.
1913
1914 @item phase
1915 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
1916 Default value is 25.
1917
1918 @item interp
1919 Set delay-line interpolation, @var{linear} or @var{quadratic}.
1920 Default is @var{linear}.
1921 @end table
1922
1923 @section highpass
1924
1925 Apply a high-pass filter with 3dB point frequency.
1926 The filter can be either single-pole, or double-pole (the default).
1927 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1928
1929 The filter accepts the following options:
1930
1931 @table @option
1932 @item frequency, f
1933 Set frequency in Hz. Default is 3000.
1934
1935 @item poles, p
1936 Set number of poles. Default is 2.
1937
1938 @item width_type
1939 Set method to specify band-width of filter.
1940 @table @option
1941 @item h
1942 Hz
1943 @item q
1944 Q-Factor
1945 @item o
1946 octave
1947 @item s
1948 slope
1949 @end table
1950
1951 @item width, w
1952 Specify the band-width of a filter in width_type units.
1953 Applies only to double-pole filter.
1954 The default is 0.707q and gives a Butterworth response.
1955 @end table
1956
1957 @section join
1958
1959 Join multiple input streams into one multi-channel stream.
1960
1961 It accepts the following parameters:
1962 @table @option
1963
1964 @item inputs
1965 The number of input streams. It defaults to 2.
1966
1967 @item channel_layout
1968 The desired output channel layout. It defaults to stereo.
1969
1970 @item map
1971 Map channels from inputs to output. The argument is a '|'-separated list of
1972 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
1973 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
1974 can be either the name of the input channel (e.g. FL for front left) or its
1975 index in the specified input stream. @var{out_channel} is the name of the output
1976 channel.
1977 @end table
1978
1979 The filter will attempt to guess the mappings when they are not specified
1980 explicitly. It does so by first trying to find an unused matching input channel
1981 and if that fails it picks the first unused input channel.
1982
1983 Join 3 inputs (with properly set channel layouts):
1984 @example
1985 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
1986 @end example
1987
1988 Build a 5.1 output from 6 single-channel streams:
1989 @example
1990 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
1991 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
1992 out
1993 @end example
1994
1995 @section ladspa
1996
1997 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
1998
1999 To enable compilation of this filter you need to configure FFmpeg with
2000 @code{--enable-ladspa}.
2001
2002 @table @option
2003 @item file, f
2004 Specifies the name of LADSPA plugin library to load. If the environment
2005 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2006 each one of the directories specified by the colon separated list in
2007 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2008 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2009 @file{/usr/lib/ladspa/}.
2010
2011 @item plugin, p
2012 Specifies the plugin within the library. Some libraries contain only
2013 one plugin, but others contain many of them. If this is not set filter
2014 will list all available plugins within the specified library.
2015
2016 @item controls, c
2017 Set the '|' separated list of controls which are zero or more floating point
2018 values that determine the behavior of the loaded plugin (for example delay,
2019 threshold or gain).
2020 Controls need to be defined using the following syntax:
2021 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2022 @var{valuei} is the value set on the @var{i}-th control.
2023 Alternatively they can be also defined using the following syntax:
2024 @var{value0}|@var{value1}|@var{value2}|..., where
2025 @var{valuei} is the value set on the @var{i}-th control.
2026 If @option{controls} is set to @code{help}, all available controls and
2027 their valid ranges are printed.
2028
2029 @item sample_rate, s
2030 Specify the sample rate, default to 44100. Only used if plugin have
2031 zero inputs.
2032
2033 @item nb_samples, n
2034 Set the number of samples per channel per each output frame, default
2035 is 1024. Only used if plugin have zero inputs.
2036
2037 @item duration, d
2038 Set the minimum duration of the sourced audio. See
2039 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2040 for the accepted syntax.
2041 Note that the resulting duration may be greater than the specified duration,
2042 as the generated audio is always cut at the end of a complete frame.
2043 If not specified, or the expressed duration is negative, the audio is
2044 supposed to be generated forever.
2045 Only used if plugin have zero inputs.
2046
2047 @end table
2048
2049 @subsection Examples
2050
2051 @itemize
2052 @item
2053 List all available plugins within amp (LADSPA example plugin) library:
2054 @example
2055 ladspa=file=amp
2056 @end example
2057
2058 @item
2059 List all available controls and their valid ranges for @code{vcf_notch}
2060 plugin from @code{VCF} library:
2061 @example
2062 ladspa=f=vcf:p=vcf_notch:c=help
2063 @end example
2064
2065 @item
2066 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2067 plugin library:
2068 @example
2069 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2070 @end example
2071
2072 @item
2073 Add reverberation to the audio using TAP-plugins
2074 (Tom's Audio Processing plugins):
2075 @example
2076 ladspa=file=tap_reverb:tap_reverb
2077 @end example
2078
2079 @item
2080 Generate white noise, with 0.2 amplitude:
2081 @example
2082 ladspa=file=cmt:noise_source_white:c=c0=.2
2083 @end example
2084
2085 @item
2086 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2087 @code{C* Audio Plugin Suite} (CAPS) library:
2088 @example
2089 ladspa=file=caps:Click:c=c1=20'
2090 @end example
2091
2092 @item
2093 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2094 @example
2095 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2096 @end example
2097
2098 @item
2099 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2100 @code{SWH Plugins} collection:
2101 @example
2102 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2103 @end example
2104
2105 @item
2106 Attenuate low frequencies using Multiband EQ from Steve Harris
2107 @code{SWH Plugins} collection:
2108 @example
2109 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2110 @end example
2111 @end itemize
2112
2113 @subsection Commands
2114
2115 This filter supports the following commands:
2116 @table @option
2117 @item cN
2118 Modify the @var{N}-th control value.
2119
2120 If the specified value is not valid, it is ignored and prior one is kept.
2121 @end table
2122
2123 @section lowpass
2124
2125 Apply a low-pass filter with 3dB point frequency.
2126 The filter can be either single-pole or double-pole (the default).
2127 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2128
2129 The filter accepts the following options:
2130
2131 @table @option
2132 @item frequency, f
2133 Set frequency in Hz. Default is 500.
2134
2135 @item poles, p
2136 Set number of poles. Default is 2.
2137
2138 @item width_type
2139 Set method to specify band-width of filter.
2140 @table @option
2141 @item h
2142 Hz
2143 @item q
2144 Q-Factor
2145 @item o
2146 octave
2147 @item s
2148 slope
2149 @end table
2150
2151 @item width, w
2152 Specify the band-width of a filter in width_type units.
2153 Applies only to double-pole filter.
2154 The default is 0.707q and gives a Butterworth response.
2155 @end table
2156
2157 @anchor{pan}
2158 @section pan
2159
2160 Mix channels with specific gain levels. The filter accepts the output
2161 channel layout followed by a set of channels definitions.
2162
2163 This filter is also designed to efficiently remap the channels of an audio
2164 stream.
2165
2166 The filter accepts parameters of the form:
2167 "@var{l}|@var{outdef}|@var{outdef}|..."
2168
2169 @table @option
2170 @item l
2171 output channel layout or number of channels
2172
2173 @item outdef
2174 output channel specification, of the form:
2175 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2176
2177 @item out_name
2178 output channel to define, either a channel name (FL, FR, etc.) or a channel
2179 number (c0, c1, etc.)
2180
2181 @item gain
2182 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2183
2184 @item in_name
2185 input channel to use, see out_name for details; it is not possible to mix
2186 named and numbered input channels
2187 @end table
2188
2189 If the `=' in a channel specification is replaced by `<', then the gains for
2190 that specification will be renormalized so that the total is 1, thus
2191 avoiding clipping noise.
2192
2193 @subsection Mixing examples
2194
2195 For example, if you want to down-mix from stereo to mono, but with a bigger
2196 factor for the left channel:
2197 @example
2198 pan=1c|c0=0.9*c0+0.1*c1
2199 @end example
2200
2201 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2202 7-channels surround:
2203 @example
2204 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2205 @end example
2206
2207 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2208 that should be preferred (see "-ac" option) unless you have very specific
2209 needs.
2210
2211 @subsection Remapping examples
2212
2213 The channel remapping will be effective if, and only if:
2214
2215 @itemize
2216 @item gain coefficients are zeroes or ones,
2217 @item only one input per channel output,
2218 @end itemize
2219
2220 If all these conditions are satisfied, the filter will notify the user ("Pure
2221 channel mapping detected"), and use an optimized and lossless method to do the
2222 remapping.
2223
2224 For example, if you have a 5.1 source and want a stereo audio stream by
2225 dropping the extra channels:
2226 @example
2227 pan="stereo| c0=FL | c1=FR"
2228 @end example
2229
2230 Given the same source, you can also switch front left and front right channels
2231 and keep the input channel layout:
2232 @example
2233 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2234 @end example
2235
2236 If the input is a stereo audio stream, you can mute the front left channel (and
2237 still keep the stereo channel layout) with:
2238 @example
2239 pan="stereo|c1=c1"
2240 @end example
2241
2242 Still with a stereo audio stream input, you can copy the right channel in both
2243 front left and right:
2244 @example
2245 pan="stereo| c0=FR | c1=FR"
2246 @end example
2247
2248 @section replaygain
2249
2250 ReplayGain scanner filter. This filter takes an audio stream as an input and
2251 outputs it unchanged.
2252 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2253
2254 @section resample
2255
2256 Convert the audio sample format, sample rate and channel layout. It is
2257 not meant to be used directly.
2258
2259 @section rubberband
2260 Apply time-stretching and pitch-shifting with librubberband.
2261
2262 The filter accepts the following options:
2263
2264 @table @option
2265 @item tempo
2266 Set tempo scale factor.
2267
2268 @item pitch
2269 Set pitch scale factor.
2270
2271 @item transients
2272 Set transients detector.
2273 Possible values are:
2274 @table @var
2275 @item crisp
2276 @item mixed
2277 @item smooth
2278 @end table
2279
2280 @item detector
2281 Set detector.
2282 Possible values are:
2283 @table @var
2284 @item compound
2285 @item percussive
2286 @item soft
2287 @end table
2288
2289 @item phase
2290 Set phase.
2291 Possible values are:
2292 @table @var
2293 @item laminar
2294 @item independent
2295 @end table
2296
2297 @item window
2298 Set processing window size.
2299 Possible values are:
2300 @table @var
2301 @item standard
2302 @item short
2303 @item long
2304 @end table
2305
2306 @item smoothing
2307 Set smoothing.
2308 Possible values are:
2309 @table @var
2310 @item off
2311 @item on
2312 @end table
2313
2314 @item formant
2315 Enable formant preservation when shift pitching.
2316 Possible values are:
2317 @table @var
2318 @item shifted
2319 @item preserved
2320 @end table
2321
2322 @item pitchq
2323 Set pitch quality.
2324 Possible values are:
2325 @table @var
2326 @item quality
2327 @item speed
2328 @item consistency
2329 @end table
2330
2331 @item channels
2332 Set channels.
2333 Possible values are:
2334 @table @var
2335 @item apart
2336 @item together
2337 @end table
2338 @end table
2339
2340 @section sidechaincompress
2341
2342 This filter acts like normal compressor but has the ability to compress
2343 detected signal using second input signal.
2344 It needs two input streams and returns one output stream.
2345 First input stream will be processed depending on second stream signal.
2346 The filtered signal then can be filtered with other filters in later stages of
2347 processing. See @ref{pan} and @ref{amerge} filter.
2348
2349 The filter accepts the following options:
2350
2351 @table @option
2352 @item threshold
2353 If a signal of second stream raises above this level it will affect the gain
2354 reduction of first stream.
2355 By default is 0.125. Range is between 0.00097563 and 1.
2356
2357 @item ratio
2358 Set a ratio about which the signal is reduced. 1:2 means that if the level
2359 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2360 Default is 2. Range is between 1 and 20.
2361
2362 @item attack
2363 Amount of milliseconds the signal has to rise above the threshold before gain
2364 reduction starts. Default is 20. Range is between 0.01 and 2000.
2365
2366 @item release
2367 Amount of milliseconds the signal has to fall below the threshold before
2368 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2369
2370 @item makeup
2371 Set the amount by how much signal will be amplified after processing.
2372 Default is 2. Range is from 1 and 64.
2373
2374 @item knee
2375 Curve the sharp knee around the threshold to enter gain reduction more softly.
2376 Default is 2.82843. Range is between 1 and 8.
2377
2378 @item link
2379 Choose if the @code{average} level between all channels of side-chain stream
2380 or the louder(@code{maximum}) channel of side-chain stream affects the
2381 reduction. Default is @code{average}.
2382
2383 @item detection
2384 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2385 of @code{rms}. Default is @code{rms} which is mainly smoother.
2386 @end table
2387
2388 @subsection Examples
2389
2390 @itemize
2391 @item
2392 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2393 depending on the signal of 2nd input and later compressed signal to be
2394 merged with 2nd input:
2395 @example
2396 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2397 @end example
2398 @end itemize
2399
2400 @section silencedetect
2401
2402 Detect silence in an audio stream.
2403
2404 This filter logs a message when it detects that the input audio volume is less
2405 or equal to a noise tolerance value for a duration greater or equal to the
2406 minimum detected noise duration.
2407
2408 The printed times and duration are expressed in seconds.
2409
2410 The filter accepts the following options:
2411
2412 @table @option
2413 @item duration, d
2414 Set silence duration until notification (default is 2 seconds).
2415
2416 @item noise, n
2417 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2418 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2419 @end table
2420
2421 @subsection Examples
2422
2423 @itemize
2424 @item
2425 Detect 5 seconds of silence with -50dB noise tolerance:
2426 @example
2427 silencedetect=n=-50dB:d=5
2428 @end example
2429
2430 @item
2431 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2432 tolerance in @file{silence.mp3}:
2433 @example
2434 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2435 @end example
2436 @end itemize
2437
2438 @section silenceremove
2439
2440 Remove silence from the beginning, middle or end of the audio.
2441
2442 The filter accepts the following options:
2443
2444 @table @option
2445 @item start_periods
2446 This value is used to indicate if audio should be trimmed at beginning of
2447 the audio. A value of zero indicates no silence should be trimmed from the
2448 beginning. When specifying a non-zero value, it trims audio up until it
2449 finds non-silence. Normally, when trimming silence from beginning of audio
2450 the @var{start_periods} will be @code{1} but it can be increased to higher
2451 values to trim all audio up to specific count of non-silence periods.
2452 Default value is @code{0}.
2453
2454 @item start_duration
2455 Specify the amount of time that non-silence must be detected before it stops
2456 trimming audio. By increasing the duration, bursts of noises can be treated
2457 as silence and trimmed off. Default value is @code{0}.
2458
2459 @item start_threshold
2460 This indicates what sample value should be treated as silence. For digital
2461 audio, a value of @code{0} may be fine but for audio recorded from analog,
2462 you may wish to increase the value to account for background noise.
2463 Can be specified in dB (in case "dB" is appended to the specified value)
2464 or amplitude ratio. Default value is @code{0}.
2465
2466 @item stop_periods
2467 Set the count for trimming silence from the end of audio.
2468 To remove silence from the middle of a file, specify a @var{stop_periods}
2469 that is negative. This value is then treated as a positive value and is
2470 used to indicate the effect should restart processing as specified by
2471 @var{start_periods}, making it suitable for removing periods of silence
2472 in the middle of the audio.
2473 Default value is @code{0}.
2474
2475 @item stop_duration
2476 Specify a duration of silence that must exist before audio is not copied any
2477 more. By specifying a higher duration, silence that is wanted can be left in
2478 the audio.
2479 Default value is @code{0}.
2480
2481 @item stop_threshold
2482 This is the same as @option{start_threshold} but for trimming silence from
2483 the end of audio.
2484 Can be specified in dB (in case "dB" is appended to the specified value)
2485 or amplitude ratio. Default value is @code{0}.
2486
2487 @item leave_silence
2488 This indicate that @var{stop_duration} length of audio should be left intact
2489 at the beginning of each period of silence.
2490 For example, if you want to remove long pauses between words but do not want
2491 to remove the pauses completely. Default value is @code{0}.
2492
2493 @end table
2494
2495 @subsection Examples
2496
2497 @itemize
2498 @item
2499 The following example shows how this filter can be used to start a recording
2500 that does not contain the delay at the start which usually occurs between
2501 pressing the record button and the start of the performance:
2502 @example
2503 silenceremove=1:5:0.02
2504 @end example
2505 @end itemize
2506
2507 @section stereotools
2508
2509 This filter has some handy utilities to manage stereo signals, for converting
2510 M/S stereo recordings to L/R signal while having control over the parameters
2511 or spreading the stereo image of master track.
2512
2513 The filter accepts the following options:
2514
2515 @table @option
2516 @item level_in
2517 Set input level before filtering for both channels. Defaults is 1.
2518 Allowed range is from 0.015625 to 64.
2519
2520 @item level_out
2521 Set output level after filtering for both channels. Defaults is 1.
2522 Allowed range is from 0.015625 to 64.
2523
2524 @item balance_in
2525 Set input balance between both channels. Default is 0.
2526 Allowed range is from -1 to 1.
2527
2528 @item balance_out
2529 Set output balance between both channels. Default is 0.
2530 Allowed range is from -1 to 1.
2531
2532 @item softclip
2533 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
2534 clipping. Disabled by default.
2535
2536 @item mutel
2537 Mute the left channel. Disabled by default.
2538
2539 @item muter
2540 Mute the right channel. Disabled by default.
2541
2542 @item phasel
2543 Change the phase of the left channel. Disabled by default.
2544
2545 @item phaser
2546 Change the phase of the right channel. Disabled by default.
2547
2548 @item mode
2549 Set stereo mode. Available values are:
2550
2551 @table @samp
2552 @item lr>lr
2553 Left/Right to Left/Right, this is default.
2554
2555 @item lr>ms
2556 Left/Right to Mid/Side.
2557
2558 @item ms>lr
2559 Mid/Side to Left/Right.
2560
2561 @item lr>ll
2562 Left/Right to Left/Left.
2563
2564 @item lr>rr
2565 Left/Right to Right/Right.
2566
2567 @item lr>l+r
2568 Left/Right to Left + Right.
2569
2570 @item lr>rl
2571 Left/Right to Right/Left.
2572 @end table
2573
2574 @item slev
2575 Set level of side signal. Default is 1.
2576 Allowed range is from 0.015625 to 64.
2577
2578 @item sbal
2579 Set balance of side signal. Default is 0.
2580 Allowed range is from -1 to 1.
2581
2582 @item mlev
2583 Set level of the middle signal. Default is 1.
2584 Allowed range is from 0.015625 to 64.
2585
2586 @item mpan
2587 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
2588
2589 @item base
2590 Set stereo base between mono and inversed channels. Default is 0.
2591 Allowed range is from -1 to 1.
2592
2593 @item delay
2594 Set delay in milliseconds how much to delay left from right channel and
2595 vice versa. Default is 0. Allowed range is from -20 to 20.
2596
2597 @item sclevel
2598 Set S/C level. Default is 1. Allowed range is from 1 to 100.
2599
2600 @item phase
2601 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
2602 @end table
2603
2604 @section stereowiden
2605
2606 This filter enhance the stereo effect by suppressing signal common to both
2607 channels and by delaying the signal of left into right and vice versa,
2608 thereby widening the stereo effect.
2609
2610 The filter accepts the following options:
2611
2612 @table @option
2613 @item delay
2614 Time in milliseconds of the delay of left signal into right and vice versa.
2615 Default is 20 milliseconds.
2616
2617 @item feedback
2618 Amount of gain in delayed signal into right and vice versa. Gives a delay
2619 effect of left signal in right output and vice versa which gives widening
2620 effect. Default is 0.3.
2621
2622 @item crossfeed
2623 Cross feed of left into right with inverted phase. This helps in suppressing
2624 the mono. If the value is 1 it will cancel all the signal common to both
2625 channels. Default is 0.3.
2626
2627 @item drymix
2628 Set level of input signal of original channel. Default is 0.8.
2629 @end table
2630
2631 @section treble
2632
2633 Boost or cut treble (upper) frequencies of the audio using a two-pole
2634 shelving filter with a response similar to that of a standard
2635 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2636
2637 The filter accepts the following options:
2638
2639 @table @option
2640 @item gain, g
2641 Give the gain at whichever is the lower of ~22 kHz and the
2642 Nyquist frequency. Its useful range is about -20 (for a large cut)
2643 to +20 (for a large boost). Beware of clipping when using a positive gain.
2644
2645 @item frequency, f
2646 Set the filter's central frequency and so can be used
2647 to extend or reduce the frequency range to be boosted or cut.
2648 The default value is @code{3000} Hz.
2649
2650 @item width_type
2651 Set method to specify band-width of filter.
2652 @table @option
2653 @item h
2654 Hz
2655 @item q
2656 Q-Factor
2657 @item o
2658 octave
2659 @item s
2660 slope
2661 @end table
2662
2663 @item width, w
2664 Determine how steep is the filter's shelf transition.
2665 @end table
2666
2667 @section tremolo
2668
2669 Sinusoidal amplitude modulation.
2670
2671 The filter accepts the following options:
2672
2673 @table @option
2674 @item f
2675 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
2676 (20 Hz or lower) will result in a tremolo effect.
2677 This filter may also be used as a ring modulator by specifying
2678 a modulation frequency higher than 20 Hz.
2679 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
2680
2681 @item d
2682 Depth of modulation as a percentage. Range is 0.0 - 1.0.
2683 Default value is 0.5.
2684 @end table
2685
2686 @section vibrato
2687
2688 Sinusoidal phase modulation.
2689
2690 The filter accepts the following options:
2691
2692 @table @option
2693 @item f
2694 Modulation frequency in Hertz.
2695 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
2696
2697 @item d
2698 Depth of modulation as a percentage. Range is 0.0 - 1.0.
2699 Default value is 0.5.
2700 @end table
2701
2702 @section volume
2703
2704 Adjust the input audio volume.
2705
2706 It accepts the following parameters:
2707 @table @option
2708
2709 @item volume
2710 Set audio volume expression.
2711
2712 Output values are clipped to the maximum value.
2713
2714 The output audio volume is given by the relation:
2715 @example
2716 @var{output_volume} = @var{volume} * @var{input_volume}
2717 @end example
2718
2719 The default value for @var{volume} is "1.0".
2720
2721 @item precision
2722 This parameter represents the mathematical precision.
2723
2724 It determines which input sample formats will be allowed, which affects the
2725 precision of the volume scaling.
2726
2727 @table @option
2728 @item fixed
2729 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
2730 @item float
2731 32-bit floating-point; this limits input sample format to FLT. (default)
2732 @item double
2733 64-bit floating-point; this limits input sample format to DBL.
2734 @end table
2735
2736 @item replaygain
2737 Choose the behaviour on encountering ReplayGain side data in input frames.
2738
2739 @table @option
2740 @item drop
2741 Remove ReplayGain side data, ignoring its contents (the default).
2742
2743 @item ignore
2744 Ignore ReplayGain side data, but leave it in the frame.
2745
2746 @item track
2747 Prefer the track gain, if present.
2748
2749 @item album
2750 Prefer the album gain, if present.
2751 @end table
2752
2753 @item replaygain_preamp
2754 Pre-amplification gain in dB to apply to the selected replaygain gain.
2755
2756 Default value for @var{replaygain_preamp} is 0.0.
2757
2758 @item eval
2759 Set when the volume expression is evaluated.
2760
2761 It accepts the following values:
2762 @table @samp
2763 @item once
2764 only evaluate expression once during the filter initialization, or
2765 when the @samp{volume} command is sent
2766
2767 @item frame
2768 evaluate expression for each incoming frame
2769 @end table
2770
2771 Default value is @samp{once}.
2772 @end table
2773
2774 The volume expression can contain the following parameters.
2775
2776 @table @option
2777 @item n
2778 frame number (starting at zero)
2779 @item nb_channels
2780 number of channels
2781 @item nb_consumed_samples
2782 number of samples consumed by the filter
2783 @item nb_samples
2784 number of samples in the current frame
2785 @item pos
2786 original frame position in the file
2787 @item pts
2788 frame PTS
2789 @item sample_rate
2790 sample rate
2791 @item startpts
2792 PTS at start of stream
2793 @item startt
2794 time at start of stream
2795 @item t
2796 frame time
2797 @item tb
2798 timestamp timebase
2799 @item volume
2800 last set volume value
2801 @end table
2802
2803 Note that when @option{eval} is set to @samp{once} only the
2804 @var{sample_rate} and @var{tb} variables are available, all other
2805 variables will evaluate to NAN.
2806
2807 @subsection Commands
2808
2809 This filter supports the following commands:
2810 @table @option
2811 @item volume
2812 Modify the volume expression.
2813 The command accepts the same syntax of the corresponding option.
2814
2815 If the specified expression is not valid, it is kept at its current
2816 value.
2817 @item replaygain_noclip
2818 Prevent clipping by limiting the gain applied.
2819
2820 Default value for @var{replaygain_noclip} is 1.
2821
2822 @end table
2823
2824 @subsection Examples
2825
2826 @itemize
2827 @item
2828 Halve the input audio volume:
2829 @example
2830 volume=volume=0.5
2831 volume=volume=1/2
2832 volume=volume=-6.0206dB
2833 @end example
2834
2835 In all the above example the named key for @option{volume} can be
2836 omitted, for example like in:
2837 @example
2838 volume=0.5
2839 @end example
2840
2841 @item
2842 Increase input audio power by 6 decibels using fixed-point precision:
2843 @example
2844 volume=volume=6dB:precision=fixed
2845 @end example
2846
2847 @item
2848 Fade volume after time 10 with an annihilation period of 5 seconds:
2849 @example
2850 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
2851 @end example
2852 @end itemize
2853
2854 @section volumedetect
2855
2856 Detect the volume of the input video.
2857
2858 The filter has no parameters. The input is not modified. Statistics about
2859 the volume will be printed in the log when the input stream end is reached.
2860
2861 In particular it will show the mean volume (root mean square), maximum
2862 volume (on a per-sample basis), and the beginning of a histogram of the
2863 registered volume values (from the maximum value to a cumulated 1/1000 of
2864 the samples).
2865
2866 All volumes are in decibels relative to the maximum PCM value.
2867
2868 @subsection Examples
2869
2870 Here is an excerpt of the output:
2871 @example
2872 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
2873 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
2874 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
2875 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
2876 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
2877 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
2878 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
2879 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
2880 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
2881 @end example
2882
2883 It means that:
2884 @itemize
2885 @item
2886 The mean square energy is approximately -27 dB, or 10^-2.7.
2887 @item
2888 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
2889 @item
2890 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
2891 @end itemize
2892
2893 In other words, raising the volume by +4 dB does not cause any clipping,
2894 raising it by +5 dB causes clipping for 6 samples, etc.
2895
2896 @c man end AUDIO FILTERS
2897
2898 @chapter Audio Sources
2899 @c man begin AUDIO SOURCES
2900
2901 Below is a description of the currently available audio sources.
2902
2903 @section abuffer
2904
2905 Buffer audio frames, and make them available to the filter chain.
2906
2907 This source is mainly intended for a programmatic use, in particular
2908 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
2909
2910 It accepts the following parameters:
2911 @table @option
2912
2913 @item time_base
2914 The timebase which will be used for timestamps of submitted frames. It must be
2915 either a floating-point number or in @var{numerator}/@var{denominator} form.
2916
2917 @item sample_rate
2918 The sample rate of the incoming audio buffers.
2919
2920 @item sample_fmt
2921 The sample format of the incoming audio buffers.
2922 Either a sample format name or its corresponding integer representation from
2923 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
2924
2925 @item channel_layout
2926 The channel layout of the incoming audio buffers.
2927 Either a channel layout name from channel_layout_map in
2928 @file{libavutil/channel_layout.c} or its corresponding integer representation
2929 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
2930
2931 @item channels
2932 The number of channels of the incoming audio buffers.
2933 If both @var{channels} and @var{channel_layout} are specified, then they
2934 must be consistent.
2935
2936 @end table
2937
2938 @subsection Examples
2939
2940 @example
2941 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
2942 @end example
2943
2944 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
2945 Since the sample format with name "s16p" corresponds to the number
2946 6 and the "stereo" channel layout corresponds to the value 0x3, this is
2947 equivalent to:
2948 @example
2949 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
2950 @end example
2951
2952 @section aevalsrc
2953
2954 Generate an audio signal specified by an expression.
2955
2956 This source accepts in input one or more expressions (one for each
2957 channel), which are evaluated and used to generate a corresponding
2958 audio signal.
2959
2960 This source accepts the following options:
2961
2962 @table @option
2963 @item exprs
2964 Set the '|'-separated expressions list for each separate channel. In case the
2965 @option{channel_layout} option is not specified, the selected channel layout
2966 depends on the number of provided expressions. Otherwise the last
2967 specified expression is applied to the remaining output channels.
2968
2969 @item channel_layout, c
2970 Set the channel layout. The number of channels in the specified layout
2971 must be equal to the number of specified expressions.
2972
2973 @item duration, d
2974 Set the minimum duration of the sourced audio. See
2975 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2976 for the accepted syntax.
2977 Note that the resulting duration may be greater than the specified
2978 duration, as the generated audio is always cut at the end of a
2979 complete frame.
2980
2981 If not specified, or the expressed duration is negative, the audio is
2982 supposed to be generated forever.
2983
2984 @item nb_samples, n
2985 Set the number of samples per channel per each output frame,
2986 default to 1024.
2987
2988 @item sample_rate, s
2989 Specify the sample rate, default to 44100.
2990 @end table
2991
2992 Each expression in @var{exprs} can contain the following constants:
2993
2994 @table @option
2995 @item n
2996 number of the evaluated sample, starting from 0
2997
2998 @item t
2999 time of the evaluated sample expressed in seconds, starting from 0
3000
3001 @item s
3002 sample rate
3003
3004 @end table
3005
3006 @subsection Examples
3007
3008 @itemize
3009 @item
3010 Generate silence:
3011 @example
3012 aevalsrc=0
3013 @end example
3014
3015 @item
3016 Generate a sin signal with frequency of 440 Hz, set sample rate to
3017 8000 Hz:
3018 @example
3019 aevalsrc="sin(440*2*PI*t):s=8000"
3020 @end example
3021
3022 @item
3023 Generate a two channels signal, specify the channel layout (Front
3024 Center + Back Center) explicitly:
3025 @example
3026 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3027 @end example
3028
3029 @item
3030 Generate white noise:
3031 @example
3032 aevalsrc="-2+random(0)"
3033 @end example
3034
3035 @item
3036 Generate an amplitude modulated signal:
3037 @example
3038 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3039 @end example
3040
3041 @item
3042 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3043 @example
3044 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3045 @end example
3046
3047 @end itemize
3048
3049 @section anullsrc
3050
3051 The null audio source, return unprocessed audio frames. It is mainly useful
3052 as a template and to be employed in analysis / debugging tools, or as
3053 the source for filters which ignore the input data (for example the sox
3054 synth filter).
3055
3056 This source accepts the following options:
3057
3058 @table @option
3059
3060 @item channel_layout, cl
3061
3062 Specifies the channel layout, and can be either an integer or a string
3063 representing a channel layout. The default value of @var{channel_layout}
3064 is "stereo".
3065
3066 Check the channel_layout_map definition in
3067 @file{libavutil/channel_layout.c} for the mapping between strings and
3068 channel layout values.
3069
3070 @item sample_rate, r
3071 Specifies the sample rate, and defaults to 44100.
3072
3073 @item nb_samples, n
3074 Set the number of samples per requested frames.
3075
3076 @end table
3077
3078 @subsection Examples
3079
3080 @itemize
3081 @item
3082 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3083 @example
3084 anullsrc=r=48000:cl=4
3085 @end example
3086
3087 @item
3088 Do the same operation with a more obvious syntax:
3089 @example
3090 anullsrc=r=48000:cl=mono
3091 @end example
3092 @end itemize
3093
3094 All the parameters need to be explicitly defined.
3095
3096 @section flite
3097
3098 Synthesize a voice utterance using the libflite library.
3099
3100 To enable compilation of this filter you need to configure FFmpeg with
3101 @code{--enable-libflite}.
3102
3103 Note that the flite library is not thread-safe.
3104
3105 The filter accepts the following options:
3106
3107 @table @option
3108
3109 @item list_voices
3110 If set to 1, list the names of the available voices and exit
3111 immediately. Default value is 0.
3112
3113 @item nb_samples, n
3114 Set the maximum number of samples per frame. Default value is 512.
3115
3116 @item textfile
3117 Set the filename containing the text to speak.
3118
3119 @item text
3120 Set the text to speak.
3121
3122 @item voice, v
3123 Set the voice to use for the speech synthesis. Default value is
3124 @code{kal}. See also the @var{list_voices} option.
3125 @end table
3126
3127 @subsection Examples
3128
3129 @itemize
3130 @item
3131 Read from file @file{speech.txt}, and synthesize the text using the
3132 standard flite voice:
3133 @example
3134 flite=textfile=speech.txt
3135 @end example
3136
3137 @item
3138 Read the specified text selecting the @code{slt} voice:
3139 @example
3140 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3141 @end example
3142
3143 @item
3144 Input text to ffmpeg:
3145 @example
3146 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3147 @end example
3148
3149 @item
3150 Make @file{ffplay} speak the specified text, using @code{flite} and
3151 the @code{lavfi} device:
3152 @example
3153 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3154 @end example
3155 @end itemize
3156
3157 For more information about libflite, check:
3158 @url{http://www.speech.cs.cmu.edu/flite/}
3159
3160 @section anoisesrc
3161
3162 Generate a noise audio signal.
3163
3164 The filter accepts the following options:
3165
3166 @table @option
3167 @item sample_rate, r
3168 Specify the sample rate. Default value is 48000 Hz.
3169
3170 @item amplitude, a
3171 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3172 is 1.0.
3173
3174 @item duration, d
3175 Specify the duration of the generated audio stream. Not specifying this option
3176 results in noise with an infinite length.
3177
3178 @item color, colour, c
3179 Specify the color of noise. Available noise colors are white, pink, and brown.
3180 Default color is white.
3181
3182 @item seed, s
3183 Specify a value used to seed the PRNG.
3184
3185 @item nb_samples, n
3186 Set the number of samples per each output frame, default is 1024.
3187 @end table
3188
3189 @subsection Examples
3190
3191 @itemize
3192
3193 @item
3194 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
3195 @example
3196 anoisesrc=d=60:c=pink:r=44100:a=0.5
3197 @end example
3198 @end itemize
3199
3200 @section sine
3201
3202 Generate an audio signal made of a sine wave with amplitude 1/8.
3203
3204 The audio signal is bit-exact.
3205
3206 The filter accepts the following options:
3207
3208 @table @option
3209
3210 @item frequency, f
3211 Set the carrier frequency. Default is 440 Hz.
3212
3213 @item beep_factor, b
3214 Enable a periodic beep every second with frequency @var{beep_factor} times
3215 the carrier frequency. Default is 0, meaning the beep is disabled.
3216
3217 @item sample_rate, r
3218 Specify the sample rate, default is 44100.
3219
3220 @item duration, d
3221 Specify the duration of the generated audio stream.
3222
3223 @item samples_per_frame
3224 Set the number of samples per output frame.
3225
3226 The expression can contain the following constants:
3227
3228 @table @option
3229 @item n
3230 The (sequential) number of the output audio frame, starting from 0.
3231
3232 @item pts
3233 The PTS (Presentation TimeStamp) of the output audio frame,
3234 expressed in @var{TB} units.
3235
3236 @item t
3237 The PTS of the output audio frame, expressed in seconds.
3238
3239 @item TB
3240 The timebase of the output audio frames.
3241 @end table
3242
3243 Default is @code{1024}.
3244 @end table
3245
3246 @subsection Examples
3247
3248 @itemize
3249
3250 @item
3251 Generate a simple 440 Hz sine wave:
3252 @example
3253 sine
3254 @end example
3255
3256 @item
3257 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
3258 @example
3259 sine=220:4:d=5
3260 sine=f=220:b=4:d=5
3261 sine=frequency=220:beep_factor=4:duration=5
3262 @end example
3263
3264 @item
3265 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
3266 pattern:
3267 @example
3268 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
3269 @end example
3270 @end itemize
3271
3272 @c man end AUDIO SOURCES
3273
3274 @chapter Audio Sinks
3275 @c man begin AUDIO SINKS
3276
3277 Below is a description of the currently available audio sinks.
3278
3279 @section abuffersink
3280
3281 Buffer audio frames, and make them available to the end of filter chain.
3282
3283 This sink is mainly intended for programmatic use, in particular
3284 through the interface defined in @file{libavfilter/buffersink.h}
3285 or the options system.
3286
3287 It accepts a pointer to an AVABufferSinkContext structure, which
3288 defines the incoming buffers' formats, to be passed as the opaque
3289 parameter to @code{avfilter_init_filter} for initialization.
3290 @section anullsink
3291
3292 Null audio sink; do absolutely nothing with the input audio. It is
3293 mainly useful as a template and for use in analysis / debugging
3294 tools.
3295
3296 @c man end AUDIO SINKS
3297
3298 @chapter Video Filters
3299 @c man begin VIDEO FILTERS
3300
3301 When you configure your FFmpeg build, you can disable any of the
3302 existing filters using @code{--disable-filters}.
3303 The configure output will show the video filters included in your
3304 build.
3305
3306 Below is a description of the currently available video filters.
3307
3308 @section alphaextract
3309
3310 Extract the alpha component from the input as a grayscale video. This
3311 is especially useful with the @var{alphamerge} filter.
3312
3313 @section alphamerge
3314
3315 Add or replace the alpha component of the primary input with the
3316 grayscale value of a second input. This is intended for use with
3317 @var{alphaextract} to allow the transmission or storage of frame
3318 sequences that have alpha in a format that doesn't support an alpha
3319 channel.
3320
3321 For example, to reconstruct full frames from a normal YUV-encoded video
3322 and a separate video created with @var{alphaextract}, you might use:
3323 @example
3324 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
3325 @end example
3326
3327 Since this filter is designed for reconstruction, it operates on frame
3328 sequences without considering timestamps, and terminates when either
3329 input reaches end of stream. This will cause problems if your encoding
3330 pipeline drops frames. If you're trying to apply an image as an
3331 overlay to a video stream, consider the @var{overlay} filter instead.
3332
3333 @section ass
3334
3335 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
3336 and libavformat to work. On the other hand, it is limited to ASS (Advanced
3337 Substation Alpha) subtitles files.
3338
3339 This filter accepts the following option in addition to the common options from
3340 the @ref{subtitles} filter:
3341
3342 @table @option
3343 @item shaping
3344 Set the shaping engine
3345
3346 Available values are:
3347 @table @samp
3348 @item auto
3349 The default libass shaping engine, which is the best available.
3350 @item simple
3351 Fast, font-agnostic shaper that can do only substitutions
3352 @item complex
3353 Slower shaper using OpenType for substitutions and positioning
3354 @end table
3355
3356 The default is @code{auto}.
3357 @end table
3358
3359 @section atadenoise
3360 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3361
3362 The filter accepts the following options:
3363
3364 @table @option
3365 @item 0a
3366 Set threshold A for 1st plane. Default is 0.02.
3367 Valid range is 0 to 0.3.
3368
3369 @item 0b
3370 Set threshold B for 1st plane. Default is 0.04.
3371 Valid range is 0 to 5.
3372
3373 @item 1a
3374 Set threshold A for 2nd plane. Default is 0.02.
3375 Valid range is 0 to 0.3.
3376
3377 @item 1b
3378 Set threshold B for 2nd plane. Default is 0.04.
3379 Valid range is 0 to 5.
3380
3381 @item 2a
3382 Set threshold A for 3rd plane. Default is 0.02.
3383 Valid range is 0 to 0.3.
3384
3385 @item 2b
3386 Set threshold B for 3rd plane. Default is 0.04.
3387 Valid range is 0 to 5.
3388
3389 Threshold A is designed to react on abrupt changes in the input signal and
3390 threshold B is designed to react on continuous changes in the input signal.
3391
3392 @item s
3393 Set number of frames filter will use for averaging. Default is 33. Must be odd
3394 number in range [5, 129].
3395 @end table
3396
3397 @section bbox
3398
3399 Compute the bounding box for the non-black pixels in the input frame
3400 luminance plane.
3401
3402 This filter computes the bounding box containing all the pixels with a
3403 luminance value greater than the minimum allowed value.
3404 The parameters describing the bounding box are printed on the filter
3405 log.
3406
3407 The filter accepts the following option:
3408
3409 @table @option
3410 @item min_val
3411 Set the minimal luminance value. Default is @code{16}.
3412 @end table
3413
3414 @section blackdetect
3415
3416 Detect video intervals that are (almost) completely black. Can be
3417 useful to detect chapter transitions, commercials, or invalid
3418 recordings. Output lines contains the time for the start, end and
3419 duration of the detected black interval expressed in seconds.
3420
3421 In order to display the output lines, you need to set the loglevel at
3422 least to the AV_LOG_INFO value.
3423
3424 The filter accepts the following options:
3425
3426 @table @option
3427 @item black_min_duration, d
3428 Set the minimum detected black duration expressed in seconds. It must
3429 be a non-negative floating point number.
3430
3431 Default value is 2.0.
3432
3433 @item picture_black_ratio_th, pic_th
3434 Set the threshold for considering a picture "black".
3435 Express the minimum value for the ratio:
3436 @example
3437 @var{nb_black_pixels} / @var{nb_pixels}
3438 @end example
3439
3440 for which a picture is considered black.
3441 Default value is 0.98.
3442
3443 @item pixel_black_th, pix_th
3444 Set the threshold for considering a pixel "black".
3445
3446 The threshold expresses the maximum pixel luminance value for which a
3447 pixel is considered "black". The provided value is scaled according to
3448 the following equation:
3449 @example
3450 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
3451 @end example
3452
3453 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
3454 the input video format, the range is [0-255] for YUV full-range
3455 formats and [16-235] for YUV non full-range formats.
3456
3457 Default value is 0.10.
3458 @end table
3459
3460 The following example sets the maximum pixel threshold to the minimum
3461 value, and detects only black intervals of 2 or more seconds:
3462 @example
3463 blackdetect=d=2:pix_th=0.00
3464 @end example
3465
3466 @section blackframe
3467
3468 Detect frames that are (almost) completely black. Can be useful to
3469 detect chapter transitions or commercials. Output lines consist of
3470 the frame number of the detected frame, the percentage of blackness,
3471 the position in the file if known or -1 and the timestamp in seconds.
3472
3473 In order to display the output lines, you need to set the loglevel at
3474 least to the AV_LOG_INFO value.
3475
3476 It accepts the following parameters:
3477
3478 @table @option
3479
3480 @item amount
3481 The percentage of the pixels that have to be below the threshold; it defaults to
3482 @code{98}.
3483
3484 @item threshold, thresh
3485 The threshold below which a pixel value is considered black; it defaults to
3486 @code{32}.
3487
3488 @end table
3489
3490 @section blend, tblend
3491
3492 Blend two video frames into each other.
3493
3494 The @code{blend} filter takes two input streams and outputs one
3495 stream, the first input is the "top" layer and second input is
3496 "bottom" layer.  Output terminates when shortest input terminates.
3497
3498 The @code{tblend} (time blend) filter takes two consecutive frames
3499 from one single stream, and outputs the result obtained by blending
3500 the new frame on top of the old frame.
3501
3502 A description of the accepted options follows.
3503
3504 @table @option
3505 @item c0_mode
3506 @item c1_mode
3507 @item c2_mode
3508 @item c3_mode
3509 @item all_mode
3510 Set blend mode for specific pixel component or all pixel components in case
3511 of @var{all_mode}. Default value is @code{normal}.
3512
3513 Available values for component modes are:
3514 @table @samp
3515 @item addition
3516 @item addition128
3517 @item and
3518 @item average
3519 @item burn
3520 @item darken
3521 @item difference
3522 @item difference128
3523 @item divide
3524 @item dodge
3525 @item exclusion
3526 @item glow
3527 @item hardlight
3528 @item hardmix
3529 @item lighten
3530 @item linearlight
3531 @item multiply
3532 @item negation
3533 @item normal
3534 @item or
3535 @item overlay
3536 @item phoenix
3537 @item pinlight
3538 @item reflect
3539 @item screen
3540 @item softlight
3541 @item subtract
3542 @item vividlight
3543 @item xor
3544 @end table
3545
3546 @item c0_opacity
3547 @item c1_opacity
3548 @item c2_opacity
3549 @item c3_opacity
3550 @item all_opacity
3551 Set blend opacity for specific pixel component or all pixel components in case
3552 of @var{all_opacity}. Only used in combination with pixel component blend modes.
3553
3554 @item c0_expr
3555 @item c1_expr
3556 @item c2_expr
3557 @item c3_expr
3558 @item all_expr
3559 Set blend expression for specific pixel component or all pixel components in case
3560 of @var{all_expr}. Note that related mode options will be ignored if those are set.
3561
3562 The expressions can use the following variables:
3563
3564 @table @option
3565 @item N
3566 The sequential number of the filtered frame, starting from @code{0}.
3567
3568 @item X
3569 @item Y
3570 the coordinates of the current sample
3571
3572 @item W
3573 @item H
3574 the width and height of currently filtered plane
3575
3576 @item SW
3577 @item SH
3578 Width and height scale depending on the currently filtered plane. It is the
3579 ratio between the corresponding luma plane number of pixels and the current
3580 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3581 @code{0.5,0.5} for chroma planes.
3582
3583 @item T
3584 Time of the current frame, expressed in seconds.
3585
3586 @item TOP, A
3587 Value of pixel component at current location for first video frame (top layer).
3588
3589 @item BOTTOM, B
3590 Value of pixel component at current location for second video frame (bottom layer).
3591 @end table
3592
3593 @item shortest
3594 Force termination when the shortest input terminates. Default is
3595 @code{0}. This option is only defined for the @code{blend} filter.
3596
3597 @item repeatlast
3598 Continue applying the last bottom frame after the end of the stream. A value of
3599 @code{0} disable the filter after the last frame of the bottom layer is reached.
3600 Default is @code{1}. This option is only defined for the @code{blend} filter.
3601 @end table
3602
3603 @subsection Examples
3604
3605 @itemize
3606 @item
3607 Apply transition from bottom layer to top layer in first 10 seconds:
3608 @example
3609 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
3610 @end example
3611
3612 @item
3613 Apply 1x1 checkerboard effect:
3614 @example
3615 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
3616 @end example
3617
3618 @item
3619 Apply uncover left effect:
3620 @example
3621 blend=all_expr='if(gte(N*SW+X,W),A,B)'
3622 @end example
3623
3624 @item
3625 Apply uncover down effect:
3626 @example
3627 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
3628 @end example
3629
3630 @item
3631 Apply uncover up-left effect:
3632 @example
3633 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
3634 @end example
3635
3636 @item
3637 Display differences between the current and the previous frame:
3638 @example
3639 tblend=all_mode=difference128
3640 @end example
3641 @end itemize
3642
3643 @section boxblur
3644
3645 Apply a boxblur algorithm to the input video.
3646
3647 It accepts the following parameters:
3648
3649 @table @option
3650
3651 @item luma_radius, lr
3652 @item luma_power, lp
3653 @item chroma_radius, cr
3654 @item chroma_power, cp
3655 @item alpha_radius, ar
3656 @item alpha_power, ap
3657
3658 @end table
3659
3660 A description of the accepted options follows.
3661
3662 @table @option
3663 @item luma_radius, lr
3664 @item chroma_radius, cr
3665 @item alpha_radius, ar
3666 Set an expression for the box radius in pixels used for blurring the
3667 corresponding input plane.
3668
3669 The radius value must be a non-negative number, and must not be
3670 greater than the value of the expression @code{min(w,h)/2} for the
3671 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
3672 planes.
3673
3674 Default value for @option{luma_radius} is "2". If not specified,
3675 @option{chroma_radius} and @option{alpha_radius} default to the
3676 corresponding value set for @option{luma_radius}.
3677
3678 The expressions can contain the following constants:
3679 @table @option
3680 @item w
3681 @item h
3682 The input width and height in pixels.
3683
3684 @item cw
3685 @item ch
3686 The input chroma image width and height in pixels.
3687
3688 @item hsub
3689 @item vsub
3690 The horizontal and vertical chroma subsample values. For example, for the
3691 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
3692 @end table
3693
3694 @item luma_power, lp
3695 @item chroma_power, cp
3696 @item alpha_power, ap
3697 Specify how many times the boxblur filter is applied to the
3698 corresponding plane.
3699
3700 Default value for @option{luma_power} is 2. If not specified,
3701 @option{chroma_power} and @option{alpha_power} default to the
3702 corresponding value set for @option{luma_power}.
3703
3704 A value of 0 will disable the effect.
3705 @end table
3706
3707 @subsection Examples
3708
3709 @itemize
3710 @item
3711 Apply a boxblur filter with the luma, chroma, and alpha radii
3712 set to 2:
3713 @example
3714 boxblur=luma_radius=2:luma_power=1
3715 boxblur=2:1
3716 @end example
3717
3718 @item
3719 Set the luma radius to 2, and alpha and chroma radius to 0:
3720 @example
3721 boxblur=2:1:cr=0:ar=0
3722 @end example
3723
3724 @item
3725 Set the luma and chroma radii to a fraction of the video dimension:
3726 @example
3727 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
3728 @end example
3729 @end itemize
3730
3731 @section chromakey
3732 YUV colorspace color/chroma keying.
3733
3734 The filter accepts the following options:
3735
3736 @table @option
3737 @item color
3738 The color which will be replaced with transparency.
3739
3740 @item similarity
3741 Similarity percentage with the key color.
3742
3743 0.01 matches only the exact key color, while 1.0 matches everything.
3744
3745 @item blend
3746 Blend percentage.
3747
3748 0.0 makes pixels either fully transparent, or not transparent at all.
3749
3750 Higher values result in semi-transparent pixels, with a higher transparency
3751 the more similar the pixels color is to the key color.
3752
3753 @item yuv
3754 Signals that the color passed is already in YUV instead of RGB.
3755
3756 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
3757 This can be used to pass exact YUV values as hexadecimal numbers.
3758 @end table
3759
3760 @subsection Examples
3761
3762 @itemize
3763 @item
3764 Make every green pixel in the input image transparent:
3765 @example
3766 ffmpeg -i input.png -vf chromakey=green out.png
3767 @end example
3768
3769 @item
3770 Overlay a greenscreen-video on top of a static black background.
3771 @example
3772 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
3773 @end example
3774 @end itemize
3775
3776 @section codecview
3777
3778 Visualize information exported by some codecs.
3779
3780 Some codecs can export information through frames using side-data or other
3781 means. For example, some MPEG based codecs export motion vectors through the
3782 @var{export_mvs} flag in the codec @option{flags2} option.
3783
3784 The filter accepts the following option:
3785
3786 @table @option
3787 @item mv
3788 Set motion vectors to visualize.
3789
3790 Available flags for @var{mv} are:
3791
3792 @table @samp
3793 @item pf
3794 forward predicted MVs of P-frames
3795 @item bf
3796 forward predicted MVs of B-frames
3797 @item bb
3798 backward predicted MVs of B-frames
3799 @end table
3800 @end table
3801
3802 @subsection Examples
3803
3804 @itemize
3805 @item
3806 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
3807 @example
3808 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
3809 @end example
3810 @end itemize
3811
3812 @section colorbalance
3813 Modify intensity of primary colors (red, green and blue) of input frames.
3814
3815 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
3816 regions for the red-cyan, green-magenta or blue-yellow balance.
3817
3818 A positive adjustment value shifts the balance towards the primary color, a negative
3819 value towards the complementary color.
3820
3821 The filter accepts the following options:
3822
3823 @table @option
3824 @item rs
3825 @item gs
3826 @item bs
3827 Adjust red, green and blue shadows (darkest pixels).
3828
3829 @item rm
3830 @item gm
3831 @item bm
3832 Adjust red, green and blue midtones (medium pixels).
3833
3834 @item rh
3835 @item gh
3836 @item bh
3837 Adjust red, green and blue highlights (brightest pixels).
3838
3839 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3840 @end table
3841
3842 @subsection Examples
3843
3844 @itemize
3845 @item
3846 Add red color cast to shadows:
3847 @example
3848 colorbalance=rs=.3
3849 @end example
3850 @end itemize
3851
3852 @section colorkey
3853 RGB colorspace color keying.
3854
3855 The filter accepts the following options:
3856
3857 @table @option
3858 @item color
3859 The color which will be replaced with transparency.
3860
3861 @item similarity
3862 Similarity percentage with the key color.
3863
3864 0.01 matches only the exact key color, while 1.0 matches everything.
3865
3866 @item blend
3867 Blend percentage.
3868
3869 0.0 makes pixels either fully transparent, or not transparent at all.
3870
3871 Higher values result in semi-transparent pixels, with a higher transparency
3872 the more similar the pixels color is to the key color.
3873 @end table
3874
3875 @subsection Examples
3876
3877 @itemize
3878 @item
3879 Make every green pixel in the input image transparent:
3880 @example
3881 ffmpeg -i input.png -vf colorkey=green out.png
3882 @end example
3883
3884 @item
3885 Overlay a greenscreen-video on top of a static background image.
3886 @example
3887 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
3888 @end example
3889 @end itemize
3890
3891 @section colorlevels
3892
3893 Adjust video input frames using levels.
3894
3895 The filter accepts the following options:
3896
3897 @table @option
3898 @item rimin
3899 @item gimin
3900 @item bimin
3901 @item aimin
3902 Adjust red, green, blue and alpha input black point.
3903 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3904
3905 @item rimax
3906 @item gimax
3907 @item bimax
3908 @item aimax
3909 Adjust red, green, blue and alpha input white point.
3910 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
3911
3912 Input levels are used to lighten highlights (bright tones), darken shadows
3913 (dark tones), change the balance of bright and dark tones.
3914
3915 @item romin
3916 @item gomin
3917 @item bomin
3918 @item aomin
3919 Adjust red, green, blue and alpha output black point.
3920 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
3921
3922 @item romax
3923 @item gomax
3924 @item bomax
3925 @item aomax
3926 Adjust red, green, blue and alpha output white point.
3927 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
3928
3929 Output levels allows manual selection of a constrained output level range.
3930 @end table
3931
3932 @subsection Examples
3933
3934 @itemize
3935 @item
3936 Make video output darker:
3937 @example
3938 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
3939 @end example
3940
3941 @item
3942 Increase contrast:
3943 @example
3944 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
3945 @end example
3946
3947 @item
3948 Make video output lighter:
3949 @example
3950 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
3951 @end example
3952
3953 @item
3954 Increase brightness:
3955 @example
3956 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
3957 @end example
3958 @end itemize
3959
3960 @section colorchannelmixer
3961
3962 Adjust video input frames by re-mixing color channels.
3963
3964 This filter modifies a color channel by adding the values associated to
3965 the other channels of the same pixels. For example if the value to
3966 modify is red, the output value will be:
3967 @example
3968 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
3969 @end example
3970
3971 The filter accepts the following options:
3972
3973 @table @option
3974 @item rr
3975 @item rg
3976 @item rb
3977 @item ra
3978 Adjust contribution of input red, green, blue and alpha channels for output red channel.
3979 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
3980
3981 @item gr
3982 @item gg
3983 @item gb
3984 @item ga
3985 Adjust contribution of input red, green, blue and alpha channels for output green channel.
3986 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
3987
3988 @item br
3989 @item bg
3990 @item bb
3991 @item ba
3992 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
3993 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
3994
3995 @item ar
3996 @item ag
3997 @item ab
3998 @item aa
3999 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4000 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4001
4002 Allowed ranges for options are @code{[-2.0, 2.0]}.
4003 @end table
4004
4005 @subsection Examples
4006
4007 @itemize
4008 @item
4009 Convert source to grayscale:
4010 @example
4011 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4012 @end example
4013 @item
4014 Simulate sepia tones:
4015 @example
4016 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4017 @end example
4018 @end itemize
4019
4020 @section colormatrix
4021
4022 Convert color matrix.
4023
4024 The filter accepts the following options:
4025
4026 @table @option
4027 @item src
4028 @item dst
4029 Specify the source and destination color matrix. Both values must be
4030 specified.
4031
4032 The accepted values are:
4033 @table @samp
4034 @item bt709
4035 BT.709
4036
4037 @item bt601
4038 BT.601
4039
4040 @item smpte240m
4041 SMPTE-240M
4042
4043 @item fcc
4044 FCC
4045 @end table
4046 @end table
4047
4048 For example to convert from BT.601 to SMPTE-240M, use the command:
4049 @example
4050 colormatrix=bt601:smpte240m
4051 @end example
4052
4053 @section copy
4054
4055 Copy the input source unchanged to the output. This is mainly useful for
4056 testing purposes.
4057
4058 @section crop
4059
4060 Crop the input video to given dimensions.
4061
4062 It accepts the following parameters:
4063
4064 @table @option
4065 @item w, out_w
4066 The width of the output video. It defaults to @code{iw}.
4067 This expression is evaluated only once during the filter
4068 configuration, or when the @samp{w} or @samp{out_w} command is sent.
4069
4070 @item h, out_h
4071 The height of the output video. It defaults to @code{ih}.
4072 This expression is evaluated only once during the filter
4073 configuration, or when the @samp{h} or @samp{out_h} command is sent.
4074
4075 @item x
4076 The horizontal position, in the input video, of the left edge of the output
4077 video. It defaults to @code{(in_w-out_w)/2}.
4078 This expression is evaluated per-frame.
4079
4080 @item y
4081 The vertical position, in the input video, of the top edge of the output video.
4082 It defaults to @code{(in_h-out_h)/2}.
4083 This expression is evaluated per-frame.
4084
4085 @item keep_aspect
4086 If set to 1 will force the output display aspect ratio
4087 to be the same of the input, by changing the output sample aspect
4088 ratio. It defaults to 0.
4089 @end table
4090
4091 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
4092 expressions containing the following constants:
4093
4094 @table @option
4095 @item x
4096 @item y
4097 The computed values for @var{x} and @var{y}. They are evaluated for
4098 each new frame.
4099
4100 @item in_w
4101 @item in_h
4102 The input width and height.
4103
4104 @item iw
4105 @item ih
4106 These are the same as @var{in_w} and @var{in_h}.
4107
4108 @item out_w
4109 @item out_h
4110 The output (cropped) width and height.
4111
4112 @item ow
4113 @item oh
4114 These are the same as @var{out_w} and @var{out_h}.
4115
4116 @item a
4117 same as @var{iw} / @var{ih}
4118
4119 @item sar
4120 input sample aspect ratio
4121
4122 @item dar
4123 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4124
4125 @item hsub
4126 @item vsub
4127 horizontal and vertical chroma subsample values. For example for the
4128 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4129
4130 @item n
4131 The number of the input frame, starting from 0.
4132
4133 @item pos
4134 the position in the file of the input frame, NAN if unknown
4135
4136 @item t
4137 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
4138
4139 @end table
4140
4141 The expression for @var{out_w} may depend on the value of @var{out_h},
4142 and the expression for @var{out_h} may depend on @var{out_w}, but they
4143 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
4144 evaluated after @var{out_w} and @var{out_h}.
4145
4146 The @var{x} and @var{y} parameters specify the expressions for the
4147 position of the top-left corner of the output (non-cropped) area. They
4148 are evaluated for each frame. If the evaluated value is not valid, it
4149 is approximated to the nearest valid value.
4150
4151 The expression for @var{x} may depend on @var{y}, and the expression
4152 for @var{y} may depend on @var{x}.
4153
4154 @subsection Examples
4155
4156 @itemize
4157 @item
4158 Crop area with size 100x100 at position (12,34).
4159 @example
4160 crop=100:100:12:34
4161 @end example
4162
4163 Using named options, the example above becomes:
4164 @example
4165 crop=w=100:h=100:x=12:y=34
4166 @end example
4167
4168 @item
4169 Crop the central input area with size 100x100:
4170 @example
4171 crop=100:100
4172 @end example
4173
4174 @item
4175 Crop the central input area with size 2/3 of the input video:
4176 @example
4177 crop=2/3*in_w:2/3*in_h
4178 @end example
4179
4180 @item
4181 Crop the input video central square:
4182 @example
4183 crop=out_w=in_h
4184 crop=in_h
4185 @end example
4186
4187 @item
4188 Delimit the rectangle with the top-left corner placed at position
4189 100:100 and the right-bottom corner corresponding to the right-bottom
4190 corner of the input image.
4191 @example
4192 crop=in_w-100:in_h-100:100:100
4193 @end example
4194
4195 @item
4196 Crop 10 pixels from the left and right borders, and 20 pixels from
4197 the top and bottom borders
4198 @example
4199 crop=in_w-2*10:in_h-2*20
4200 @end example
4201
4202 @item
4203 Keep only the bottom right quarter of the input image:
4204 @example
4205 crop=in_w/2:in_h/2:in_w/2:in_h/2
4206 @end example
4207
4208 @item
4209 Crop height for getting Greek harmony:
4210 @example
4211 crop=in_w:1/PHI*in_w
4212 @end example
4213
4214 @item
4215 Apply trembling effect:
4216 @example
4217 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(n/7)
4218 @end example
4219
4220 @item
4221 Apply erratic camera effect depending on timestamp:
4222 @example
4223 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)"
4224 @end example
4225
4226 @item
4227 Set x depending on the value of y:
4228 @example
4229 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
4230 @end example
4231 @end itemize
4232
4233 @subsection Commands
4234
4235 This filter supports the following commands:
4236 @table @option
4237 @item w, out_w
4238 @item h, out_h
4239 @item x
4240 @item y
4241 Set width/height of the output video and the horizontal/vertical position
4242 in the input video.
4243 The command accepts the same syntax of the corresponding option.
4244
4245 If the specified expression is not valid, it is kept at its current
4246 value.
4247 @end table
4248
4249 @section cropdetect
4250
4251 Auto-detect the crop size.
4252
4253 It calculates the necessary cropping parameters and prints the
4254 recommended parameters via the logging system. The detected dimensions
4255 correspond to the non-black area of the input video.
4256
4257 It accepts the following parameters:
4258
4259 @table @option
4260
4261 @item limit
4262 Set higher black value threshold, which can be optionally specified
4263 from nothing (0) to everything (255 for 8bit based formats). An intensity
4264 value greater to the set value is considered non-black. It defaults to 24.
4265 You can also specify a value between 0.0 and 1.0 which will be scaled depending
4266 on the bitdepth of the pixel format.
4267
4268 @item round
4269 The value which the width/height should be divisible by. It defaults to
4270 16. The offset is automatically adjusted to center the video. Use 2 to
4271 get only even dimensions (needed for 4:2:2 video). 16 is best when
4272 encoding to most video codecs.
4273
4274 @item reset_count, reset
4275 Set the counter that determines after how many frames cropdetect will
4276 reset the previously detected largest video area and start over to
4277 detect the current optimal crop area. Default value is 0.
4278
4279 This can be useful when channel logos distort the video area. 0
4280 indicates 'never reset', and returns the largest area encountered during
4281 playback.
4282 @end table
4283
4284 @anchor{curves}
4285 @section curves
4286
4287 Apply color adjustments using curves.
4288
4289 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
4290 component (red, green and blue) has its values defined by @var{N} key points
4291 tied from each other using a smooth curve. The x-axis represents the pixel
4292 values from the input frame, and the y-axis the new pixel values to be set for
4293 the output frame.
4294
4295 By default, a component curve is defined by the two points @var{(0;0)} and
4296 @var{(1;1)}. This creates a straight line where each original pixel value is
4297 "adjusted" to its own value, which means no change to the image.
4298
4299 The filter allows you to redefine these two points and add some more. A new
4300 curve (using a natural cubic spline interpolation) will be define to pass
4301 smoothly through all these new coordinates. The new defined points needs to be
4302 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
4303 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
4304 the vector spaces, the values will be clipped accordingly.
4305
4306 If there is no key point defined in @code{x=0}, the filter will automatically
4307 insert a @var{(0;0)} point. In the same way, if there is no key point defined
4308 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
4309
4310 The filter accepts the following options:
4311
4312 @table @option
4313 @item preset
4314 Select one of the available color presets. This option can be used in addition
4315 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
4316 options takes priority on the preset values.
4317 Available presets are:
4318 @table @samp
4319 @item none
4320 @item color_negative
4321 @item cross_process
4322 @item darker
4323 @item increase_contrast
4324 @item lighter
4325 @item linear_contrast
4326 @item medium_contrast
4327 @item negative
4328 @item strong_contrast
4329 @item vintage
4330 @end table
4331 Default is @code{none}.
4332 @item master, m
4333 Set the master key points. These points will define a second pass mapping. It
4334 is sometimes called a "luminance" or "value" mapping. It can be used with
4335 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
4336 post-processing LUT.
4337 @item red, r
4338 Set the key points for the red component.
4339 @item green, g
4340 Set the key points for the green component.
4341 @item blue, b
4342 Set the key points for the blue component.
4343 @item all
4344 Set the key points for all components (not including master).
4345 Can be used in addition to the other key points component
4346 options. In this case, the unset component(s) will fallback on this
4347 @option{all} setting.
4348 @item psfile
4349 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
4350 @end table
4351
4352 To avoid some filtergraph syntax conflicts, each key points list need to be
4353 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
4354
4355 @subsection Examples
4356
4357 @itemize
4358 @item
4359 Increase slightly the middle level of blue:
4360 @example
4361 curves=blue='0.5/0.58'
4362 @end example
4363
4364 @item
4365 Vintage effect:
4366 @example
4367 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
4368 @end example
4369 Here we obtain the following coordinates for each components:
4370 @table @var
4371 @item red
4372 @code{(0;0.11) (0.42;0.51) (1;0.95)}
4373 @item green
4374 @code{(0;0) (0.50;0.48) (1;1)}
4375 @item blue
4376 @code{(0;0.22) (0.49;0.44) (1;0.80)}
4377 @end table
4378
4379 @item
4380 The previous example can also be achieved with the associated built-in preset:
4381 @example
4382 curves=preset=vintage
4383 @end example
4384
4385 @item
4386 Or simply:
4387 @example
4388 curves=vintage
4389 @end example
4390
4391 @item
4392 Use a Photoshop preset and redefine the points of the green component:
4393 @example
4394 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
4395 @end example
4396 @end itemize
4397
4398 @section dctdnoiz
4399
4400 Denoise frames using 2D DCT (frequency domain filtering).
4401
4402 This filter is not designed for real time.
4403
4404 The filter accepts the following options:
4405
4406 @table @option
4407 @item sigma, s
4408 Set the noise sigma constant.
4409
4410 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
4411 coefficient (absolute value) below this threshold with be dropped.
4412
4413 If you need a more advanced filtering, see @option{expr}.
4414
4415 Default is @code{0}.
4416
4417 @item overlap
4418 Set number overlapping pixels for each block. Since the filter can be slow, you
4419 may want to reduce this value, at the cost of a less effective filter and the
4420 risk of various artefacts.
4421
4422 If the overlapping value doesn't permit processing the whole input width or
4423 height, a warning will be displayed and according borders won't be denoised.
4424
4425 Default value is @var{blocksize}-1, which is the best possible setting.
4426
4427 @item expr, e
4428 Set the coefficient factor expression.
4429
4430 For each coefficient of a DCT block, this expression will be evaluated as a
4431 multiplier value for the coefficient.
4432
4433 If this is option is set, the @option{sigma} option will be ignored.
4434
4435 The absolute value of the coefficient can be accessed through the @var{c}
4436 variable.
4437
4438 @item n
4439 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
4440 @var{blocksize}, which is the width and height of the processed blocks.
4441
4442 The default value is @var{3} (8x8) and can be raised to @var{4} for a
4443 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
4444 on the speed processing. Also, a larger block size does not necessarily means a
4445 better de-noising.
4446 @end table
4447
4448 @subsection Examples
4449
4450 Apply a denoise with a @option{sigma} of @code{4.5}:
4451 @example
4452 dctdnoiz=4.5
4453 @end example
4454
4455 The same operation can be achieved using the expression system:
4456 @example
4457 dctdnoiz=e='gte(c, 4.5*3)'
4458 @end example
4459
4460 Violent denoise using a block size of @code{16x16}:
4461 @example
4462 dctdnoiz=15:n=4
4463 @end example
4464
4465 @section deband
4466
4467 Remove banding artifacts from input video.
4468 It works by replacing banded pixels with average value of referenced pixels.
4469
4470 The filter accepts the following options:
4471
4472 @table @option
4473 @item 1thr
4474 @item 2thr
4475 @item 3thr
4476 @item 4thr
4477 Set banding detection threshold for each plane. Default is 0.02.
4478 Valid range is 0.00003 to 0.5.
4479 If difference between current pixel and reference pixel is less than threshold,
4480 it will be considered as banded.
4481
4482 @item range, r
4483 Banding detection range in pixels. Default is 16. If positive, random number
4484 in range 0 to set value will be used. If negative, exact absolute value
4485 will be used.
4486 The range defines square of four pixels around current pixel.
4487
4488 @item direction, d
4489 Set direction in radians from which four pixel will be compared. If positive,
4490 random direction from 0 to set direction will be picked. If negative, exact of
4491 absolute value will be picked. For example direction 0, -PI or -2*PI radians
4492 will pick only pixels on same row and -PI/2 will pick only pixels on same
4493 column.
4494
4495 @item blur
4496 If enabled, current pixel is compared with average value of all four
4497 surrounding pixels. The default is enabled. If disabled current pixel is
4498 compared with all four surrounding pixels. The pixel is considered banded
4499 if only all four differences with surrounding pixels are less than threshold.
4500 @end table
4501
4502 @anchor{decimate}
4503 @section decimate
4504
4505 Drop duplicated frames at regular intervals.
4506
4507 The filter accepts the following options:
4508
4509 @table @option
4510 @item cycle
4511 Set the number of frames from which one will be dropped. Setting this to
4512 @var{N} means one frame in every batch of @var{N} frames will be dropped.
4513 Default is @code{5}.
4514
4515 @item dupthresh
4516 Set the threshold for duplicate detection. If the difference metric for a frame
4517 is less than or equal to this value, then it is declared as duplicate. Default
4518 is @code{1.1}
4519
4520 @item scthresh
4521 Set scene change threshold. Default is @code{15}.
4522
4523 @item blockx
4524 @item blocky
4525 Set the size of the x and y-axis blocks used during metric calculations.
4526 Larger blocks give better noise suppression, but also give worse detection of
4527 small movements. Must be a power of two. Default is @code{32}.
4528
4529 @item ppsrc
4530 Mark main input as a pre-processed input and activate clean source input
4531 stream. This allows the input to be pre-processed with various filters to help
4532 the metrics calculation while keeping the frame selection lossless. When set to
4533 @code{1}, the first stream is for the pre-processed input, and the second
4534 stream is the clean source from where the kept frames are chosen. Default is
4535 @code{0}.
4536
4537 @item chroma
4538 Set whether or not chroma is considered in the metric calculations. Default is
4539 @code{1}.
4540 @end table
4541
4542 @section deflate
4543
4544 Apply deflate effect to the video.
4545
4546 This filter replaces the pixel by the local(3x3) average by taking into account
4547 only values lower than the pixel.
4548
4549 It accepts the following options:
4550
4551 @table @option
4552 @item threshold0
4553 @item threshold1
4554 @item threshold2
4555 @item threshold3
4556 Limit the maximum change for each plane, default is 65535.
4557 If 0, plane will remain unchanged.
4558 @end table
4559
4560 @section dejudder
4561
4562 Remove judder produced by partially interlaced telecined content.
4563
4564 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
4565 source was partially telecined content then the output of @code{pullup,dejudder}
4566 will have a variable frame rate. May change the recorded frame rate of the
4567 container. Aside from that change, this filter will not affect constant frame
4568 rate video.
4569
4570 The option available in this filter is:
4571 @table @option
4572
4573 @item cycle
4574 Specify the length of the window over which the judder repeats.
4575
4576 Accepts any integer greater than 1. Useful values are:
4577 @table @samp
4578
4579 @item 4
4580 If the original was telecined from 24 to 30 fps (Film to NTSC).
4581
4582 @item 5
4583 If the original was telecined from 25 to 30 fps (PAL to NTSC).
4584
4585 @item 20
4586 If a mixture of the two.
4587 @end table
4588
4589 The default is @samp{4}.
4590 @end table
4591
4592 @section delogo
4593
4594 Suppress a TV station logo by a simple interpolation of the surrounding
4595 pixels. Just set a rectangle covering the logo and watch it disappear
4596 (and sometimes something even uglier appear - your mileage may vary).
4597
4598 It accepts the following parameters:
4599 @table @option
4600
4601 @item x
4602 @item y
4603 Specify the top left corner coordinates of the logo. They must be
4604 specified.
4605
4606 @item w
4607 @item h
4608 Specify the width and height of the logo to clear. They must be
4609 specified.
4610
4611 @item band, t
4612 Specify the thickness of the fuzzy edge of the rectangle (added to
4613 @var{w} and @var{h}). The default value is 1. This option is
4614 deprecated, setting higher values should no longer be necessary and
4615 is not recommended.
4616
4617 @item show
4618 When set to 1, a green rectangle is drawn on the screen to simplify
4619 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
4620 The default value is 0.
4621
4622 The rectangle is drawn on the outermost pixels which will be (partly)
4623 replaced with interpolated values. The values of the next pixels
4624 immediately outside this rectangle in each direction will be used to
4625 compute the interpolated pixel values inside the rectangle.
4626
4627 @end table
4628
4629 @subsection Examples
4630
4631 @itemize
4632 @item
4633 Set a rectangle covering the area with top left corner coordinates 0,0
4634 and size 100x77, and a band of size 10:
4635 @example
4636 delogo=x=0:y=0:w=100:h=77:band=10
4637 @end example
4638
4639 @end itemize
4640
4641 @section deshake
4642
4643 Attempt to fix small changes in horizontal and/or vertical shift. This
4644 filter helps remove camera shake from hand-holding a camera, bumping a
4645 tripod, moving on a vehicle, etc.
4646
4647 The filter accepts the following options:
4648
4649 @table @option
4650
4651 @item x
4652 @item y
4653 @item w
4654 @item h
4655 Specify a rectangular area where to limit the search for motion
4656 vectors.
4657 If desired the search for motion vectors can be limited to a
4658 rectangular area of the frame defined by its top left corner, width
4659 and height. These parameters have the same meaning as the drawbox
4660 filter which can be used to visualise the position of the bounding
4661 box.
4662
4663 This is useful when simultaneous movement of subjects within the frame
4664 might be confused for camera motion by the motion vector search.
4665
4666 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
4667 then the full frame is used. This allows later options to be set
4668 without specifying the bounding box for the motion vector search.
4669
4670 Default - search the whole frame.
4671
4672 @item rx
4673 @item ry
4674 Specify the maximum extent of movement in x and y directions in the
4675 range 0-64 pixels. Default 16.
4676
4677 @item edge
4678 Specify how to generate pixels to fill blanks at the edge of the
4679 frame. Available values are:
4680 @table @samp
4681 @item blank, 0
4682 Fill zeroes at blank locations
4683 @item original, 1
4684 Original image at blank locations
4685 @item clamp, 2
4686 Extruded edge value at blank locations
4687 @item mirror, 3
4688 Mirrored edge at blank locations
4689 @end table
4690 Default value is @samp{mirror}.
4691
4692 @item blocksize
4693 Specify the blocksize to use for motion search. Range 4-128 pixels,
4694 default 8.
4695
4696 @item contrast
4697 Specify the contrast threshold for blocks. Only blocks with more than
4698 the specified contrast (difference between darkest and lightest
4699 pixels) will be considered. Range 1-255, default 125.
4700
4701 @item search
4702 Specify the search strategy. Available values are:
4703 @table @samp
4704 @item exhaustive, 0
4705 Set exhaustive search
4706 @item less, 1
4707 Set less exhaustive search.
4708 @end table
4709 Default value is @samp{exhaustive}.
4710
4711 @item filename
4712 If set then a detailed log of the motion search is written to the
4713 specified file.
4714
4715 @item opencl
4716 If set to 1, specify using OpenCL capabilities, only available if
4717 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
4718
4719 @end table
4720
4721 @section detelecine
4722
4723 Apply an exact inverse of the telecine operation. It requires a predefined
4724 pattern specified using the pattern option which must be the same as that passed
4725 to the telecine filter.
4726
4727 This filter accepts the following options:
4728
4729 @table @option
4730 @item first_field
4731 @table @samp
4732 @item top, t
4733 top field first
4734 @item bottom, b
4735 bottom field first
4736 The default value is @code{top}.
4737 @end table
4738
4739 @item pattern
4740 A string of numbers representing the pulldown pattern you wish to apply.
4741 The default value is @code{23}.
4742
4743 @item start_frame
4744 A number representing position of the first frame with respect to the telecine
4745 pattern. This is to be used if the stream is cut. The default value is @code{0}.
4746 @end table
4747
4748 @section dilation
4749
4750 Apply dilation effect to the video.
4751
4752 This filter replaces the pixel by the local(3x3) maximum.
4753
4754 It accepts the following options:
4755
4756 @table @option
4757 @item threshold0
4758 @item threshold1
4759 @item threshold2
4760 @item threshold3
4761 Limit the maximum change for each plane, default is 65535.
4762 If 0, plane will remain unchanged.
4763
4764 @item coordinates
4765 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
4766 pixels are used.
4767
4768 Flags to local 3x3 coordinates maps like this:
4769
4770     1 2 3
4771     4   5
4772     6 7 8
4773 @end table
4774
4775 @section displace
4776
4777 Displace pixels as indicated by second and third input stream.
4778
4779 It takes three input streams and outputs one stream, the first input is the
4780 source, and second and third input are displacement maps.
4781
4782 The second input specifies how much to displace pixels along the
4783 x-axis, while the third input specifies how much to displace pixels
4784 along the y-axis.
4785 If one of displacement map streams terminates, last frame from that
4786 displacement map will be used.
4787
4788 Note that once generated, displacements maps can be reused over and over again.
4789
4790 A description of the accepted options follows.
4791
4792 @table @option
4793 @item edge
4794 Set displace behavior for pixels that are out of range.
4795
4796 Available values are:
4797 @table @samp
4798 @item blank
4799 Missing pixels are replaced by black pixels.
4800
4801 @item smear
4802 Adjacent pixels will spread out to replace missing pixels.
4803
4804 @item wrap
4805 Out of range pixels are wrapped so they point to pixels of other side.
4806 @end table
4807 Default is @samp{smear}.
4808
4809 @end table
4810
4811 @subsection Examples
4812
4813 @itemize
4814 @item
4815 Add ripple effect to rgb input of video size hd720:
4816 @example
4817 ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
4818 @end example
4819
4820 @item
4821 Add wave effect to rgb input of video size hd720:
4822 @example
4823 ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
4824 @end example
4825 @end itemize
4826
4827 @section drawbox
4828
4829 Draw a colored box on the input image.
4830
4831 It accepts the following parameters:
4832
4833 @table @option
4834 @item x
4835 @item y
4836 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
4837
4838 @item width, w
4839 @item height, h
4840 The expressions which specify the width and height of the box; if 0 they are interpreted as
4841 the input width and height. It defaults to 0.
4842
4843 @item color, c
4844 Specify the color of the box to write. For the general syntax of this option,
4845 check the "Color" section in the ffmpeg-utils manual. If the special
4846 value @code{invert} is used, the box edge color is the same as the
4847 video with inverted luma.
4848
4849 @item thickness, t
4850 The expression which sets the thickness of the box edge. Default value is @code{3}.
4851
4852 See below for the list of accepted constants.
4853 @end table
4854
4855 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4856 following constants:
4857
4858 @table @option
4859 @item dar
4860 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4861
4862 @item hsub
4863 @item vsub
4864 horizontal and vertical chroma subsample values. For example for the
4865 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4866
4867 @item in_h, ih
4868 @item in_w, iw
4869 The input width and height.
4870
4871 @item sar
4872 The input sample aspect ratio.
4873
4874 @item x
4875 @item y
4876 The x and y offset coordinates where the box is drawn.
4877
4878 @item w
4879 @item h
4880 The width and height of the drawn box.
4881
4882 @item t
4883 The thickness of the drawn box.
4884
4885 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4886 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4887
4888 @end table
4889
4890 @subsection Examples
4891
4892 @itemize
4893 @item
4894 Draw a black box around the edge of the input image:
4895 @example
4896 drawbox
4897 @end example
4898
4899 @item
4900 Draw a box with color red and an opacity of 50%:
4901 @example
4902 drawbox=10:20:200:60:red@@0.5
4903 @end example
4904
4905 The previous example can be specified as:
4906 @example
4907 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
4908 @end example
4909
4910 @item
4911 Fill the box with pink color:
4912 @example
4913 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
4914 @end example
4915
4916 @item
4917 Draw a 2-pixel red 2.40:1 mask:
4918 @example
4919 drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
4920 @end example
4921 @end itemize
4922
4923 @section drawgraph, adrawgraph
4924
4925 Draw a graph using input video or audio metadata.
4926
4927 It accepts the following parameters:
4928
4929 @table @option
4930 @item m1
4931 Set 1st frame metadata key from which metadata values will be used to draw a graph.
4932
4933 @item fg1
4934 Set 1st foreground color expression.
4935
4936 @item m2
4937 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
4938
4939 @item fg2
4940 Set 2nd foreground color expression.
4941
4942 @item m3
4943 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
4944
4945 @item fg3
4946 Set 3rd foreground color expression.
4947
4948 @item m4
4949 Set 4th frame metadata key from which metadata values will be used to draw a graph.
4950
4951 @item fg4
4952 Set 4th foreground color expression.
4953
4954 @item min
4955 Set minimal value of metadata value.
4956
4957 @item max
4958 Set maximal value of metadata value.
4959
4960 @item bg
4961 Set graph background color. Default is white.
4962
4963 @item mode
4964 Set graph mode.
4965
4966 Available values for mode is:
4967 @table @samp
4968 @item bar
4969 @item dot
4970 @item line
4971 @end table
4972
4973 Default is @code{line}.
4974
4975 @item slide
4976 Set slide mode.
4977
4978 Available values for slide is:
4979 @table @samp
4980 @item frame
4981 Draw new frame when right border is reached.
4982
4983 @item replace
4984 Replace old columns with new ones.
4985
4986 @item scroll
4987 Scroll from right to left.
4988
4989 @item rscroll
4990 Scroll from left to right.
4991 @end table
4992
4993 Default is @code{frame}.
4994
4995 @item size
4996 Set size of graph video. For the syntax of this option, check the
4997 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
4998 The default value is @code{900x256}.
4999
5000 The foreground color expressions can use the following variables:
5001 @table @option
5002 @item MIN
5003 Minimal value of metadata value.
5004
5005 @item MAX
5006 Maximal value of metadata value.
5007
5008 @item VAL
5009 Current metadata key value.
5010 @end table
5011
5012 The color is defined as 0xAABBGGRR.
5013 @end table
5014
5015 Example using metadata from @ref{signalstats} filter:
5016 @example
5017 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
5018 @end example
5019
5020 Example using metadata from @ref{ebur128} filter:
5021 @example
5022 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
5023 @end example
5024
5025 @section drawgrid
5026
5027 Draw a grid on the input image.
5028
5029 It accepts the following parameters:
5030
5031 @table @option
5032 @item x
5033 @item y
5034 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
5035
5036 @item width, w
5037 @item height, h
5038 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
5039 input width and height, respectively, minus @code{thickness}, so image gets
5040 framed. Default to 0.
5041
5042 @item color, c
5043 Specify the color of the grid. For the general syntax of this option,
5044 check the "Color" section in the ffmpeg-utils manual. If the special
5045 value @code{invert} is used, the grid color is the same as the
5046 video with inverted luma.
5047
5048 @item thickness, t
5049 The expression which sets the thickness of the grid line. Default value is @code{1}.
5050
5051 See below for the list of accepted constants.
5052 @end table
5053
5054 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5055 following constants:
5056
5057 @table @option
5058 @item dar
5059 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5060
5061 @item hsub
5062 @item vsub
5063 horizontal and vertical chroma subsample values. For example for the
5064 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5065
5066 @item in_h, ih
5067 @item in_w, iw
5068 The input grid cell width and height.
5069
5070 @item sar
5071 The input sample aspect ratio.
5072
5073 @item x
5074 @item y
5075 The x and y coordinates of some point of grid intersection (meant to configure offset).
5076
5077 @item w
5078 @item h
5079 The width and height of the drawn cell.
5080
5081 @item t
5082 The thickness of the drawn cell.
5083
5084 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5085 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5086
5087 @end table
5088
5089 @subsection Examples
5090
5091 @itemize
5092 @item
5093 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
5094 @example
5095 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
5096 @end example
5097
5098 @item
5099 Draw a white 3x3 grid with an opacity of 50%:
5100 @example
5101 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
5102 @end example
5103 @end itemize
5104
5105 @anchor{drawtext}
5106 @section drawtext
5107
5108 Draw a text string or text from a specified file on top of a video, using the
5109 libfreetype library.
5110
5111 To enable compilation of this filter, you need to configure FFmpeg with
5112 @code{--enable-libfreetype}.
5113 To enable default font fallback and the @var{font} option you need to
5114 configure FFmpeg with @code{--enable-libfontconfig}.
5115 To enable the @var{text_shaping} option, you need to configure FFmpeg with
5116 @code{--enable-libfribidi}.
5117
5118 @subsection Syntax
5119
5120 It accepts the following parameters:
5121
5122 @table @option
5123
5124 @item box
5125 Used to draw a box around text using the background color.
5126 The value must be either 1 (enable) or 0 (disable).
5127 The default value of @var{box} is 0.
5128
5129 @item boxborderw
5130 Set the width of the border to be drawn around the box using @var{boxcolor}.
5131 The default value of @var{boxborderw} is 0.
5132
5133 @item boxcolor
5134 The color to be used for drawing box around text. For the syntax of this
5135 option, check the "Color" section in the ffmpeg-utils manual.
5136
5137 The default value of @var{boxcolor} is "white".
5138
5139 @item borderw
5140 Set the width of the border to be drawn around the text using @var{bordercolor}.
5141 The default value of @var{borderw} is 0.
5142
5143 @item bordercolor
5144 Set the color to be used for drawing border around text. For the syntax of this
5145 option, check the "Color" section in the ffmpeg-utils manual.
5146
5147 The default value of @var{bordercolor} is "black".
5148
5149 @item expansion
5150 Select how the @var{text} is expanded. Can be either @code{none},
5151 @code{strftime} (deprecated) or
5152 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
5153 below for details.
5154
5155 @item fix_bounds
5156 If true, check and fix text coords to avoid clipping.
5157
5158 @item fontcolor
5159 The color to be used for drawing fonts. For the syntax of this option, check
5160 the "Color" section in the ffmpeg-utils manual.
5161
5162 The default value of @var{fontcolor} is "black".
5163
5164 @item fontcolor_expr
5165 String which is expanded the same way as @var{text} to obtain dynamic
5166 @var{fontcolor} value. By default this option has empty value and is not
5167 processed. When this option is set, it overrides @var{fontcolor} option.
5168
5169 @item font
5170 The font family to be used for drawing text. By default Sans.
5171
5172 @item fontfile
5173 The font file to be used for drawing text. The path must be included.
5174 This parameter is mandatory if the fontconfig support is disabled.
5175
5176 @item draw
5177 This option does not exist, please see the timeline system
5178
5179 @item alpha
5180 Draw the text applying alpha blending. The value can
5181 be either a number between 0.0 and 1.0
5182 The expression accepts the same variables @var{x, y} do.
5183 The default value is 1.
5184 Please see fontcolor_expr
5185
5186 @item fontsize
5187 The font size to be used for drawing text.
5188 The default value of @var{fontsize} is 16.
5189
5190 @item text_shaping
5191 If set to 1, attempt to shape the text (for example, reverse the order of
5192 right-to-left text and join Arabic characters) before drawing it.
5193 Otherwise, just draw the text exactly as given.
5194 By default 1 (if supported).
5195
5196 @item ft_load_flags
5197 The flags to be used for loading the fonts.
5198
5199 The flags map the corresponding flags supported by libfreetype, and are
5200 a combination of the following values:
5201 @table @var
5202 @item default
5203 @item no_scale
5204 @item no_hinting
5205 @item render
5206 @item no_bitmap
5207 @item vertical_layout
5208 @item force_autohint
5209 @item crop_bitmap
5210 @item pedantic
5211 @item ignore_global_advance_width
5212 @item no_recurse
5213 @item ignore_transform
5214 @item monochrome
5215 @item linear_design
5216 @item no_autohint
5217 @end table
5218
5219 Default value is "default".
5220
5221 For more information consult the documentation for the FT_LOAD_*
5222 libfreetype flags.
5223
5224 @item shadowcolor
5225 The color to be used for drawing a shadow behind the drawn text. For the
5226 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
5227
5228 The default value of @var{shadowcolor} is "black".
5229
5230 @item shadowx
5231 @item shadowy
5232 The x and y offsets for the text shadow position with respect to the
5233 position of the text. They can be either positive or negative
5234 values. The default value for both is "0".
5235
5236 @item start_number
5237 The starting frame number for the n/frame_num variable. The default value
5238 is "0".
5239
5240 @item tabsize
5241 The size in number of spaces to use for rendering the tab.
5242 Default value is 4.
5243
5244 @item timecode
5245 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
5246 format. It can be used with or without text parameter. @var{timecode_rate}
5247 option must be specified.
5248
5249 @item timecode_rate, rate, r
5250 Set the timecode frame rate (timecode only).
5251
5252 @item text
5253 The text string to be drawn. The text must be a sequence of UTF-8
5254 encoded characters.
5255 This parameter is mandatory if no file is specified with the parameter
5256 @var{textfile}.
5257
5258 @item textfile
5259 A text file containing text to be drawn. The text must be a sequence
5260 of UTF-8 encoded characters.
5261
5262 This parameter is mandatory if no text string is specified with the
5263 parameter @var{text}.
5264
5265 If both @var{text} and @var{textfile} are specified, an error is thrown.
5266
5267 @item reload
5268 If set to 1, the @var{textfile} will be reloaded before each frame.
5269 Be sure to update it atomically, or it may be read partially, or even fail.
5270
5271 @item x
5272 @item y
5273 The expressions which specify the offsets where text will be drawn
5274 within the video frame. They are relative to the top/left border of the
5275 output image.
5276
5277 The default value of @var{x} and @var{y} is "0".
5278
5279 See below for the list of accepted constants and functions.
5280 @end table
5281
5282 The parameters for @var{x} and @var{y} are expressions containing the
5283 following constants and functions:
5284
5285 @table @option
5286 @item dar
5287 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
5288
5289 @item hsub
5290 @item vsub
5291 horizontal and vertical chroma subsample values. For example for the
5292 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5293
5294 @item line_h, lh
5295 the height of each text line
5296
5297 @item main_h, h, H
5298 the input height
5299
5300 @item main_w, w, W
5301 the input width
5302
5303 @item max_glyph_a, ascent
5304 the maximum distance from the baseline to the highest/upper grid
5305 coordinate used to place a glyph outline point, for all the rendered
5306 glyphs.
5307 It is a positive value, due to the grid's orientation with the Y axis
5308 upwards.
5309
5310 @item max_glyph_d, descent
5311 the maximum distance from the baseline to the lowest grid coordinate
5312 used to place a glyph outline point, for all the rendered glyphs.
5313 This is a negative value, due to the grid's orientation, with the Y axis
5314 upwards.
5315
5316 @item max_glyph_h
5317 maximum glyph height, that is the maximum height for all the glyphs
5318 contained in the rendered text, it is equivalent to @var{ascent} -
5319 @var{descent}.
5320
5321 @item max_glyph_w
5322 maximum glyph width, that is the maximum width for all the glyphs
5323 contained in the rendered text
5324
5325 @item n
5326 the number of input frame, starting from 0
5327
5328 @item rand(min, max)
5329 return a random number included between @var{min} and @var{max}
5330
5331 @item sar
5332 The input sample aspect ratio.
5333
5334 @item t
5335 timestamp expressed in seconds, NAN if the input timestamp is unknown
5336
5337 @item text_h, th
5338 the height of the rendered text
5339
5340 @item text_w, tw
5341 the width of the rendered text
5342
5343 @item x
5344 @item y
5345 the x and y offset coordinates where the text is drawn.
5346
5347 These parameters allow the @var{x} and @var{y} expressions to refer
5348 each other, so you can for example specify @code{y=x/dar}.
5349 @end table
5350
5351 @anchor{drawtext_expansion}
5352 @subsection Text expansion
5353
5354 If @option{expansion} is set to @code{strftime},
5355 the filter recognizes strftime() sequences in the provided text and
5356 expands them accordingly. Check the documentation of strftime(). This
5357 feature is deprecated.
5358
5359 If @option{expansion} is set to @code{none}, the text is printed verbatim.
5360
5361 If @option{expansion} is set to @code{normal} (which is the default),
5362 the following expansion mechanism is used.
5363
5364 The backslash character @samp{\}, followed by any character, always expands to
5365 the second character.
5366
5367 Sequence of the form @code{%@{...@}} are expanded. The text between the
5368 braces is a function name, possibly followed by arguments separated by ':'.
5369 If the arguments contain special characters or delimiters (':' or '@}'),
5370 they should be escaped.
5371
5372 Note that they probably must also be escaped as the value for the
5373 @option{text} option in the filter argument string and as the filter
5374 argument in the filtergraph description, and possibly also for the shell,
5375 that makes up to four levels of escaping; using a text file avoids these
5376 problems.
5377
5378 The following functions are available:
5379
5380 @table @command
5381
5382 @item expr, e
5383 The expression evaluation result.
5384
5385 It must take one argument specifying the expression to be evaluated,
5386 which accepts the same constants and functions as the @var{x} and
5387 @var{y} values. Note that not all constants should be used, for
5388 example the text size is not known when evaluating the expression, so
5389 the constants @var{text_w} and @var{text_h} will have an undefined
5390 value.
5391
5392 @item expr_int_format, eif
5393 Evaluate the expression's value and output as formatted integer.
5394
5395 The first argument is the expression to be evaluated, just as for the @var{expr} function.
5396 The second argument specifies the output format. Allowed values are @samp{x},
5397 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
5398 @code{printf} function.
5399 The third parameter is optional and sets the number of positions taken by the output.
5400 It can be used to add padding with zeros from the left.
5401
5402 @item gmtime
5403 The time at which the filter is running, expressed in UTC.
5404 It can accept an argument: a strftime() format string.
5405
5406 @item localtime
5407 The time at which the filter is running, expressed in the local time zone.
5408 It can accept an argument: a strftime() format string.
5409
5410 @item metadata
5411 Frame metadata. It must take one argument specifying metadata key.
5412
5413 @item n, frame_num
5414 The frame number, starting from 0.
5415
5416 @item pict_type
5417 A 1 character description of the current picture type.
5418
5419 @item pts
5420 The timestamp of the current frame.
5421 It can take up to three arguments.
5422
5423 The first argument is the format of the timestamp; it defaults to @code{flt}
5424 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
5425 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
5426 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
5427 @code{localtime} stands for the timestamp of the frame formatted as
5428 local time zone time.
5429
5430 The second argument is an offset added to the timestamp.
5431
5432 If the format is set to @code{localtime} or @code{gmtime},
5433 a third argument may be supplied: a strftime() format string.
5434 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
5435 @end table
5436
5437 @subsection Examples
5438
5439 @itemize
5440 @item
5441 Draw "Test Text" with font FreeSerif, using the default values for the
5442 optional parameters.
5443
5444 @example
5445 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
5446 @end example
5447
5448 @item
5449 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
5450 and y=50 (counting from the top-left corner of the screen), text is
5451 yellow with a red box around it. Both the text and the box have an
5452 opacity of 20%.
5453
5454 @example
5455 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
5456           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
5457 @end example
5458
5459 Note that the double quotes are not necessary if spaces are not used
5460 within the parameter list.
5461
5462 @item
5463 Show the text at the center of the video frame:
5464 @example
5465 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
5466 @end example
5467
5468 @item
5469 Show a text line sliding from right to left in the last row of the video
5470 frame. The file @file{LONG_LINE} is assumed to contain a single line
5471 with no newlines.
5472 @example
5473 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
5474 @end example
5475
5476 @item
5477 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
5478 @example
5479 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
5480 @end example
5481
5482 @item
5483 Draw a single green letter "g", at the center of the input video.
5484 The glyph baseline is placed at half screen height.
5485 @example
5486 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
5487 @end example
5488
5489 @item
5490 Show text for 1 second every 3 seconds:
5491 @example
5492 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
5493 @end example
5494
5495 @item
5496 Use fontconfig to set the font. Note that the colons need to be escaped.
5497 @example
5498 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
5499 @end example
5500
5501 @item
5502 Print the date of a real-time encoding (see strftime(3)):
5503 @example
5504 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
5505 @end example
5506
5507 @item
5508 Show text fading in and out (appearing/disappearing):
5509 @example
5510 #!/bin/sh
5511 DS=1.0 # display start
5512 DE=10.0 # display end
5513 FID=1.5 # fade in duration
5514 FOD=5 # fade out duration
5515 ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
5516 @end example
5517
5518 @end itemize
5519
5520 For more information about libfreetype, check:
5521 @url{http://www.freetype.org/}.
5522
5523 For more information about fontconfig, check:
5524 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
5525
5526 For more information about libfribidi, check:
5527 @url{http://fribidi.org/}.
5528
5529 @section edgedetect
5530
5531 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
5532
5533 The filter accepts the following options:
5534
5535 @table @option
5536 @item low
5537 @item high
5538 Set low and high threshold values used by the Canny thresholding
5539 algorithm.
5540
5541 The high threshold selects the "strong" edge pixels, which are then
5542 connected through 8-connectivity with the "weak" edge pixels selected
5543 by the low threshold.
5544
5545 @var{low} and @var{high} threshold values must be chosen in the range
5546 [0,1], and @var{low} should be lesser or equal to @var{high}.
5547
5548 Default value for @var{low} is @code{20/255}, and default value for @var{high}
5549 is @code{50/255}.
5550
5551 @item mode
5552 Define the drawing mode.
5553
5554 @table @samp
5555 @item wires
5556 Draw white/gray wires on black background.
5557
5558 @item colormix
5559 Mix the colors to create a paint/cartoon effect.
5560 @end table
5561
5562 Default value is @var{wires}.
5563 @end table
5564
5565 @subsection Examples
5566
5567 @itemize
5568 @item
5569 Standard edge detection with custom values for the hysteresis thresholding:
5570 @example
5571 edgedetect=low=0.1:high=0.4
5572 @end example
5573
5574 @item
5575 Painting effect without thresholding:
5576 @example
5577 edgedetect=mode=colormix:high=0
5578 @end example
5579 @end itemize
5580
5581 @section eq
5582 Set brightness, contrast, saturation and approximate gamma adjustment.
5583
5584 The filter accepts the following options:
5585
5586 @table @option
5587 @item contrast
5588 Set the contrast expression. The value must be a float value in range
5589 @code{-2.0} to @code{2.0}. The default value is "1".
5590
5591 @item brightness
5592 Set the brightness expression. The value must be a float value in
5593 range @code{-1.0} to @code{1.0}. The default value is "0".
5594
5595 @item saturation
5596 Set the saturation expression. The value must be a float in
5597 range @code{0.0} to @code{3.0}. The default value is "1".
5598
5599 @item gamma
5600 Set the gamma expression. The value must be a float in range
5601 @code{0.1} to @code{10.0}.  The default value is "1".
5602
5603 @item gamma_r
5604 Set the gamma expression for red. The value must be a float in
5605 range @code{0.1} to @code{10.0}. The default value is "1".
5606
5607 @item gamma_g
5608 Set the gamma expression for green. The value must be a float in range
5609 @code{0.1} to @code{10.0}. The default value is "1".
5610
5611 @item gamma_b
5612 Set the gamma expression for blue. The value must be a float in range
5613 @code{0.1} to @code{10.0}. The default value is "1".
5614
5615 @item gamma_weight
5616 Set the gamma weight expression. It can be used to reduce the effect
5617 of a high gamma value on bright image areas, e.g. keep them from
5618 getting overamplified and just plain white. The value must be a float
5619 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
5620 gamma correction all the way down while @code{1.0} leaves it at its
5621 full strength. Default is "1".
5622
5623 @item eval
5624 Set when the expressions for brightness, contrast, saturation and
5625 gamma expressions are evaluated.
5626
5627 It accepts the following values:
5628 @table @samp
5629 @item init
5630 only evaluate expressions once during the filter initialization or
5631 when a command is processed
5632
5633 @item frame
5634 evaluate expressions for each incoming frame
5635 @end table
5636
5637 Default value is @samp{init}.
5638 @end table
5639
5640 The expressions accept the following parameters:
5641 @table @option
5642 @item n
5643 frame count of the input frame starting from 0
5644
5645 @item pos
5646 byte position of the corresponding packet in the input file, NAN if
5647 unspecified
5648
5649 @item r
5650 frame rate of the input video, NAN if the input frame rate is unknown
5651
5652 @item t
5653 timestamp expressed in seconds, NAN if the input timestamp is unknown
5654 @end table
5655
5656 @subsection Commands
5657 The filter supports the following commands:
5658
5659 @table @option
5660 @item contrast
5661 Set the contrast expression.
5662
5663 @item brightness
5664 Set the brightness expression.
5665
5666 @item saturation
5667 Set the saturation expression.
5668
5669 @item gamma
5670 Set the gamma expression.
5671
5672 @item gamma_r
5673 Set the gamma_r expression.
5674
5675 @item gamma_g
5676 Set gamma_g expression.
5677
5678 @item gamma_b
5679 Set gamma_b expression.
5680
5681 @item gamma_weight
5682 Set gamma_weight expression.
5683
5684 The command accepts the same syntax of the corresponding option.
5685
5686 If the specified expression is not valid, it is kept at its current
5687 value.
5688
5689 @end table
5690
5691 @section erosion
5692
5693 Apply erosion effect to the video.
5694
5695 This filter replaces the pixel by the local(3x3) minimum.
5696
5697 It accepts the following options:
5698
5699 @table @option
5700 @item threshold0
5701 @item threshold1
5702 @item threshold2
5703 @item threshold3
5704 Limit the maximum change for each plane, default is 65535.
5705 If 0, plane will remain unchanged.
5706
5707 @item coordinates
5708 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5709 pixels are used.
5710
5711 Flags to local 3x3 coordinates maps like this:
5712
5713     1 2 3
5714     4   5
5715     6 7 8
5716 @end table
5717
5718 @section extractplanes
5719
5720 Extract color channel components from input video stream into
5721 separate grayscale video streams.
5722
5723 The filter accepts the following option:
5724
5725 @table @option
5726 @item planes
5727 Set plane(s) to extract.
5728
5729 Available values for planes are:
5730 @table @samp
5731 @item y
5732 @item u
5733 @item v
5734 @item a
5735 @item r
5736 @item g
5737 @item b
5738 @end table
5739
5740 Choosing planes not available in the input will result in an error.
5741 That means you cannot select @code{r}, @code{g}, @code{b} planes
5742 with @code{y}, @code{u}, @code{v} planes at same time.
5743 @end table
5744
5745 @subsection Examples
5746
5747 @itemize
5748 @item
5749 Extract luma, u and v color channel component from input video frame
5750 into 3 grayscale outputs:
5751 @example
5752 ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi
5753 @end example
5754 @end itemize
5755
5756 @section elbg
5757
5758 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
5759
5760 For each input image, the filter will compute the optimal mapping from
5761 the input to the output given the codebook length, that is the number
5762 of distinct output colors.
5763
5764 This filter accepts the following options.
5765
5766 @table @option
5767 @item codebook_length, l
5768 Set codebook length. The value must be a positive integer, and
5769 represents the number of distinct output colors. Default value is 256.
5770
5771 @item nb_steps, n
5772 Set the maximum number of iterations to apply for computing the optimal
5773 mapping. The higher the value the better the result and the higher the
5774 computation time. Default value is 1.
5775
5776 @item seed, s
5777 Set a random seed, must be an integer included between 0 and
5778 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
5779 will try to use a good random seed on a best effort basis.
5780
5781 @item pal8
5782 Set pal8 output pixel format. This option does not work with codebook
5783 length greater than 256.
5784 @end table
5785
5786 @section fade
5787
5788 Apply a fade-in/out effect to the input video.
5789
5790 It accepts the following parameters:
5791
5792 @table @option
5793 @item type, t
5794 The effect type can be either "in" for a fade-in, or "out" for a fade-out
5795 effect.
5796 Default is @code{in}.
5797
5798 @item start_frame, s
5799 Specify the number of the frame to start applying the fade
5800 effect at. Default is 0.
5801
5802 @item nb_frames, n
5803 The number of frames that the fade effect lasts. At the end of the
5804 fade-in effect, the output video will have the same intensity as the input video.
5805 At the end of the fade-out transition, the output video will be filled with the
5806 selected @option{color}.
5807 Default is 25.
5808
5809 @item alpha
5810 If set to 1, fade only alpha channel, if one exists on the input.
5811 Default value is 0.
5812
5813 @item start_time, st
5814 Specify the timestamp (in seconds) of the frame to start to apply the fade
5815 effect. If both start_frame and start_time are specified, the fade will start at
5816 whichever comes last.  Default is 0.
5817
5818 @item duration, d
5819 The number of seconds for which the fade effect has to last. At the end of the
5820 fade-in effect the output video will have the same intensity as the input video,
5821 at the end of the fade-out transition the output video will be filled with the
5822 selected @option{color}.
5823 If both duration and nb_frames are specified, duration is used. Default is 0
5824 (nb_frames is used by default).
5825
5826 @item color, c
5827 Specify the color of the fade. Default is "black".
5828 @end table
5829
5830 @subsection Examples
5831
5832 @itemize
5833 @item
5834 Fade in the first 30 frames of video:
5835 @example
5836 fade=in:0:30
5837 @end example
5838
5839 The command above is equivalent to:
5840 @example
5841 fade=t=in:s=0:n=30
5842 @end example
5843
5844 @item
5845 Fade out the last 45 frames of a 200-frame video:
5846 @example
5847 fade=out:155:45
5848 fade=type=out:start_frame=155:nb_frames=45
5849 @end example
5850
5851 @item
5852 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
5853 @example
5854 fade=in:0:25, fade=out:975:25
5855 @end example
5856
5857 @item
5858 Make the first 5 frames yellow, then fade in from frame 5-24:
5859 @example
5860 fade=in:5:20:color=yellow
5861 @end example
5862
5863 @item
5864 Fade in alpha over first 25 frames of video:
5865 @example
5866 fade=in:0:25:alpha=1
5867 @end example
5868
5869 @item
5870 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
5871 @example
5872 fade=t=in:st=5.5:d=0.5
5873 @end example
5874
5875 @end itemize
5876
5877 @section fftfilt
5878 Apply arbitrary expressions to samples in frequency domain
5879
5880 @table @option
5881 @item dc_Y
5882 Adjust the dc value (gain) of the luma plane of the image. The filter
5883 accepts an integer value in range @code{0} to @code{1000}. The default
5884 value is set to @code{0}.
5885
5886 @item dc_U
5887 Adjust the dc value (gain) of the 1st chroma plane of the image. The
5888 filter accepts an integer value in range @code{0} to @code{1000}. The
5889 default value is set to @code{0}.
5890
5891 @item dc_V
5892 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
5893 filter accepts an integer value in range @code{0} to @code{1000}. The
5894 default value is set to @code{0}.
5895
5896 @item weight_Y
5897 Set the frequency domain weight expression for the luma plane.
5898
5899 @item weight_U
5900 Set the frequency domain weight expression for the 1st chroma plane.
5901
5902 @item weight_V
5903 Set the frequency domain weight expression for the 2nd chroma plane.
5904
5905 The filter accepts the following variables:
5906 @item X
5907 @item Y
5908 The coordinates of the current sample.
5909
5910 @item W
5911 @item H
5912 The width and height of the image.
5913 @end table
5914
5915 @subsection Examples
5916
5917 @itemize
5918 @item
5919 High-pass:
5920 @example
5921 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
5922 @end example
5923
5924 @item
5925 Low-pass:
5926 @example
5927 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
5928 @end example
5929
5930 @item
5931 Sharpen:
5932 @example
5933 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
5934 @end example
5935
5936 @end itemize
5937
5938 @section field
5939
5940 Extract a single field from an interlaced image using stride
5941 arithmetic to avoid wasting CPU time. The output frames are marked as
5942 non-interlaced.
5943
5944 The filter accepts the following options:
5945
5946 @table @option
5947 @item type
5948 Specify whether to extract the top (if the value is @code{0} or
5949 @code{top}) or the bottom field (if the value is @code{1} or
5950 @code{bottom}).
5951 @end table
5952
5953 @section fieldmatch
5954
5955 Field matching filter for inverse telecine. It is meant to reconstruct the
5956 progressive frames from a telecined stream. The filter does not drop duplicated
5957 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
5958 followed by a decimation filter such as @ref{decimate} in the filtergraph.
5959
5960 The separation of the field matching and the decimation is notably motivated by
5961 the possibility of inserting a de-interlacing filter fallback between the two.
5962 If the source has mixed telecined and real interlaced content,
5963 @code{fieldmatch} will not be able to match fields for the interlaced parts.
5964 But these remaining combed frames will be marked as interlaced, and thus can be
5965 de-interlaced by a later filter such as @ref{yadif} before decimation.
5966
5967 In addition to the various configuration options, @code{fieldmatch} can take an
5968 optional second stream, activated through the @option{ppsrc} option. If
5969 enabled, the frames reconstruction will be based on the fields and frames from
5970 this second stream. This allows the first input to be pre-processed in order to
5971 help the various algorithms of the filter, while keeping the output lossless
5972 (assuming the fields are matched properly). Typically, a field-aware denoiser,
5973 or brightness/contrast adjustments can help.
5974
5975 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
5976 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
5977 which @code{fieldmatch} is based on. While the semantic and usage are very
5978 close, some behaviour and options names can differ.
5979
5980 The @ref{decimate} filter currently only works for constant frame rate input.
5981 If your input has mixed telecined (30fps) and progressive content with a lower
5982 framerate like 24fps use the following filterchain to produce the necessary cfr
5983 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
5984
5985 The filter accepts the following options:
5986
5987 @table @option
5988 @item order
5989 Specify the assumed field order of the input stream. Available values are:
5990
5991 @table @samp
5992 @item auto
5993 Auto detect parity (use FFmpeg's internal parity value).
5994 @item bff
5995 Assume bottom field first.
5996 @item tff
5997 Assume top field first.
5998 @end table
5999
6000 Note that it is sometimes recommended not to trust the parity announced by the
6001 stream.
6002
6003 Default value is @var{auto}.
6004
6005 @item mode
6006 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
6007 sense that it won't risk creating jerkiness due to duplicate frames when
6008 possible, but if there are bad edits or blended fields it will end up
6009 outputting combed frames when a good match might actually exist. On the other
6010 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
6011 but will almost always find a good frame if there is one. The other values are
6012 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
6013 jerkiness and creating duplicate frames versus finding good matches in sections
6014 with bad edits, orphaned fields, blended fields, etc.
6015
6016 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
6017
6018 Available values are:
6019
6020 @table @samp
6021 @item pc
6022 2-way matching (p/c)
6023 @item pc_n
6024 2-way matching, and trying 3rd match if still combed (p/c + n)
6025 @item pc_u
6026 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
6027 @item pc_n_ub
6028 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
6029 still combed (p/c + n + u/b)
6030 @item pcn
6031 3-way matching (p/c/n)
6032 @item pcn_ub
6033 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
6034 detected as combed (p/c/n + u/b)
6035 @end table
6036
6037 The parenthesis at the end indicate the matches that would be used for that
6038 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
6039 @var{top}).
6040
6041 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
6042 the slowest.
6043
6044 Default value is @var{pc_n}.
6045
6046 @item ppsrc
6047 Mark the main input stream as a pre-processed input, and enable the secondary
6048 input stream as the clean source to pick the fields from. See the filter
6049 introduction for more details. It is similar to the @option{clip2} feature from
6050 VFM/TFM.
6051
6052 Default value is @code{0} (disabled).
6053
6054 @item field
6055 Set the field to match from. It is recommended to set this to the same value as
6056 @option{order} unless you experience matching failures with that setting. In
6057 certain circumstances changing the field that is used to match from can have a
6058 large impact on matching performance. Available values are:
6059
6060 @table @samp
6061 @item auto
6062 Automatic (same value as @option{order}).
6063 @item bottom
6064 Match from the bottom field.
6065 @item top
6066 Match from the top field.
6067 @end table
6068
6069 Default value is @var{auto}.
6070
6071 @item mchroma
6072 Set whether or not chroma is included during the match comparisons. In most
6073 cases it is recommended to leave this enabled. You should set this to @code{0}
6074 only if your clip has bad chroma problems such as heavy rainbowing or other
6075 artifacts. Setting this to @code{0} could also be used to speed things up at
6076 the cost of some accuracy.
6077
6078 Default value is @code{1}.
6079
6080 @item y0
6081 @item y1
6082 These define an exclusion band which excludes the lines between @option{y0} and
6083 @option{y1} from being included in the field matching decision. An exclusion
6084 band can be used to ignore subtitles, a logo, or other things that may
6085 interfere with the matching. @option{y0} sets the starting scan line and
6086 @option{y1} sets the ending line; all lines in between @option{y0} and
6087 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
6088 @option{y0} and @option{y1} to the same value will disable the feature.
6089 @option{y0} and @option{y1} defaults to @code{0}.
6090
6091 @item scthresh
6092 Set the scene change detection threshold as a percentage of maximum change on
6093 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
6094 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
6095 @option{scthresh} is @code{[0.0, 100.0]}.
6096
6097 Default value is @code{12.0}.
6098
6099 @item combmatch
6100 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
6101 account the combed scores of matches when deciding what match to use as the
6102 final match. Available values are:
6103
6104 @table @samp
6105 @item none
6106 No final matching based on combed scores.
6107 @item sc
6108 Combed scores are only used when a scene change is detected.
6109 @item full
6110 Use combed scores all the time.
6111 @end table
6112
6113 Default is @var{sc}.
6114
6115 @item combdbg
6116 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
6117 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
6118 Available values are:
6119
6120 @table @samp
6121 @item none
6122 No forced calculation.
6123 @item pcn
6124 Force p/c/n calculations.
6125 @item pcnub
6126 Force p/c/n/u/b calculations.
6127 @end table
6128
6129 Default value is @var{none}.
6130
6131 @item cthresh
6132 This is the area combing threshold used for combed frame detection. This
6133 essentially controls how "strong" or "visible" combing must be to be detected.
6134 Larger values mean combing must be more visible and smaller values mean combing
6135 can be less visible or strong and still be detected. Valid settings are from
6136 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
6137 be detected as combed). This is basically a pixel difference value. A good
6138 range is @code{[8, 12]}.
6139
6140 Default value is @code{9}.
6141
6142 @item chroma
6143 Sets whether or not chroma is considered in the combed frame decision.  Only
6144 disable this if your source has chroma problems (rainbowing, etc.) that are
6145 causing problems for the combed frame detection with chroma enabled. Actually,
6146 using @option{chroma}=@var{0} is usually more reliable, except for the case
6147 where there is chroma only combing in the source.
6148
6149 Default value is @code{0}.
6150
6151 @item blockx
6152 @item blocky
6153 Respectively set the x-axis and y-axis size of the window used during combed
6154 frame detection. This has to do with the size of the area in which
6155 @option{combpel} pixels are required to be detected as combed for a frame to be
6156 declared combed. See the @option{combpel} parameter description for more info.
6157 Possible values are any number that is a power of 2 starting at 4 and going up
6158 to 512.
6159
6160 Default value is @code{16}.
6161
6162 @item combpel
6163 The number of combed pixels inside any of the @option{blocky} by
6164 @option{blockx} size blocks on the frame for the frame to be detected as
6165 combed. While @option{cthresh} controls how "visible" the combing must be, this
6166 setting controls "how much" combing there must be in any localized area (a
6167 window defined by the @option{blockx} and @option{blocky} settings) on the
6168 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
6169 which point no frames will ever be detected as combed). This setting is known
6170 as @option{MI} in TFM/VFM vocabulary.
6171
6172 Default value is @code{80}.
6173 @end table
6174
6175 @anchor{p/c/n/u/b meaning}
6176 @subsection p/c/n/u/b meaning
6177
6178 @subsubsection p/c/n
6179
6180 We assume the following telecined stream:
6181
6182 @example
6183 Top fields:     1 2 2 3 4
6184 Bottom fields:  1 2 3 4 4
6185 @end example
6186
6187 The numbers correspond to the progressive frame the fields relate to. Here, the
6188 first two frames are progressive, the 3rd and 4th are combed, and so on.
6189
6190 When @code{fieldmatch} is configured to run a matching from bottom
6191 (@option{field}=@var{bottom}) this is how this input stream get transformed:
6192
6193 @example
6194 Input stream:
6195                 T     1 2 2 3 4
6196                 B     1 2 3 4 4   <-- matching reference
6197
6198 Matches:              c c n n c
6199
6200 Output stream:
6201                 T     1 2 3 4 4
6202                 B     1 2 3 4 4
6203 @end example
6204
6205 As a result of the field matching, we can see that some frames get duplicated.
6206 To perform a complete inverse telecine, you need to rely on a decimation filter
6207 after this operation. See for instance the @ref{decimate} filter.
6208
6209 The same operation now matching from top fields (@option{field}=@var{top})
6210 looks like this:
6211
6212 @example
6213 Input stream:
6214                 T     1 2 2 3 4   <-- matching reference
6215                 B     1 2 3 4 4
6216
6217 Matches:              c c p p c
6218
6219 Output stream:
6220                 T     1 2 2 3 4
6221                 B     1 2 2 3 4
6222 @end example
6223
6224 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6225 basically, they refer to the frame and field of the opposite parity:
6226
6227 @itemize
6228 @item @var{p} matches the field of the opposite parity in the previous frame
6229 @item @var{c} matches the field of the opposite parity in the current frame
6230 @item @var{n} matches the field of the opposite parity in the next frame
6231 @end itemize
6232
6233 @subsubsection u/b
6234
6235 The @var{u} and @var{b} matching are a bit special in the sense that they match
6236 from the opposite parity flag. In the following examples, we assume that we are
6237 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6238 'x' is placed above and below each matched fields.
6239
6240 With bottom matching (@option{field}=@var{bottom}):
6241 @example
6242 Match:           c         p           n          b          u
6243
6244                  x       x               x        x          x
6245   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6246   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6247                  x         x           x        x              x
6248
6249 Output frames:
6250                  2          1          2          2          2
6251                  2          2          2          1          3
6252 @end example
6253
6254 With top matching (@option{field}=@var{top}):
6255 @example
6256 Match:           c         p           n          b          u
6257
6258                  x         x           x        x              x
6259   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6260   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6261                  x       x               x        x          x
6262
6263 Output frames:
6264                  2          2          2          1          2
6265                  2          1          3          2          2
6266 @end example
6267
6268 @subsection Examples
6269
6270 Simple IVTC of a top field first telecined stream:
6271 @example
6272 fieldmatch=order=tff:combmatch=none, decimate
6273 @end example
6274
6275 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
6276 @example
6277 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
6278 @end example
6279
6280 @section fieldorder
6281
6282 Transform the field order of the input video.
6283
6284 It accepts the following parameters:
6285
6286 @table @option
6287
6288 @item order
6289 The output field order. Valid values are @var{tff} for top field first or @var{bff}
6290 for bottom field first.
6291 @end table
6292
6293 The default value is @samp{tff}.
6294
6295 The transformation is done by shifting the picture content up or down
6296 by one line, and filling the remaining line with appropriate picture content.
6297 This method is consistent with most broadcast field order converters.
6298
6299 If the input video is not flagged as being interlaced, or it is already
6300 flagged as being of the required output field order, then this filter does
6301 not alter the incoming video.
6302
6303 It is very useful when converting to or from PAL DV material,
6304 which is bottom field first.
6305
6306 For example:
6307 @example
6308 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
6309 @end example
6310
6311 @section fifo
6312
6313 Buffer input images and send them when they are requested.
6314
6315 It is mainly useful when auto-inserted by the libavfilter
6316 framework.
6317
6318 It does not take parameters.
6319
6320 @section find_rect
6321
6322 Find a rectangular object
6323
6324 It accepts the following options:
6325
6326 @table @option
6327 @item object
6328 Filepath of the object image, needs to be in gray8.
6329
6330 @item threshold
6331 Detection threshold, default is 0.5.
6332
6333 @item mipmaps
6334 Number of mipmaps, default is 3.
6335
6336 @item xmin, ymin, xmax, ymax
6337 Specifies the rectangle in which to search.
6338 @end table
6339
6340 @subsection Examples
6341
6342 @itemize
6343 @item
6344 Generate a representative palette of a given video using @command{ffmpeg}:
6345 @example
6346 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6347 @end example
6348 @end itemize
6349
6350 @section cover_rect
6351
6352 Cover a rectangular object
6353
6354 It accepts the following options:
6355
6356 @table @option
6357 @item cover
6358 Filepath of the optional cover image, needs to be in yuv420.
6359
6360 @item mode
6361 Set covering mode.
6362
6363 It accepts the following values:
6364 @table @samp
6365 @item cover
6366 cover it by the supplied image
6367 @item blur
6368 cover it by interpolating the surrounding pixels
6369 @end table
6370
6371 Default value is @var{blur}.
6372 @end table
6373
6374 @subsection Examples
6375
6376 @itemize
6377 @item
6378 Generate a representative palette of a given video using @command{ffmpeg}:
6379 @example
6380 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6381 @end example
6382 @end itemize
6383
6384 @anchor{format}
6385 @section format
6386
6387 Convert the input video to one of the specified pixel formats.
6388 Libavfilter will try to pick one that is suitable as input to
6389 the next filter.
6390
6391 It accepts the following parameters:
6392 @table @option
6393
6394 @item pix_fmts
6395 A '|'-separated list of pixel format names, such as
6396 "pix_fmts=yuv420p|monow|rgb24".
6397
6398 @end table
6399
6400 @subsection Examples
6401
6402 @itemize
6403 @item
6404 Convert the input video to the @var{yuv420p} format
6405 @example
6406 format=pix_fmts=yuv420p
6407 @end example
6408
6409 Convert the input video to any of the formats in the list
6410 @example
6411 format=pix_fmts=yuv420p|yuv444p|yuv410p
6412 @end example
6413 @end itemize
6414
6415 @anchor{fps}
6416 @section fps
6417
6418 Convert the video to specified constant frame rate by duplicating or dropping
6419 frames as necessary.
6420
6421 It accepts the following parameters:
6422 @table @option
6423
6424 @item fps
6425 The desired output frame rate. The default is @code{25}.
6426
6427 @item round
6428 Rounding method.
6429
6430 Possible values are:
6431 @table @option
6432 @item zero
6433 zero round towards 0
6434 @item inf
6435 round away from 0
6436 @item down
6437 round towards -infinity
6438 @item up
6439 round towards +infinity
6440 @item near
6441 round to nearest
6442 @end table
6443 The default is @code{near}.
6444
6445 @item start_time
6446 Assume the first PTS should be the given value, in seconds. This allows for
6447 padding/trimming at the start of stream. By default, no assumption is made
6448 about the first frame's expected PTS, so no padding or trimming is done.
6449 For example, this could be set to 0 to pad the beginning with duplicates of
6450 the first frame if a video stream starts after the audio stream or to trim any
6451 frames with a negative PTS.
6452
6453 @end table
6454
6455 Alternatively, the options can be specified as a flat string:
6456 @var{fps}[:@var{round}].
6457
6458 See also the @ref{setpts} filter.
6459
6460 @subsection Examples
6461
6462 @itemize
6463 @item
6464 A typical usage in order to set the fps to 25:
6465 @example
6466 fps=fps=25
6467 @end example
6468
6469 @item
6470 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
6471 @example
6472 fps=fps=film:round=near
6473 @end example
6474 @end itemize
6475
6476 @section framepack
6477
6478 Pack two different video streams into a stereoscopic video, setting proper
6479 metadata on supported codecs. The two views should have the same size and
6480 framerate and processing will stop when the shorter video ends. Please note
6481 that you may conveniently adjust view properties with the @ref{scale} and
6482 @ref{fps} filters.
6483
6484 It accepts the following parameters:
6485 @table @option
6486
6487 @item format
6488 The desired packing format. Supported values are:
6489
6490 @table @option
6491
6492 @item sbs
6493 The views are next to each other (default).
6494
6495 @item tab
6496 The views are on top of each other.
6497
6498 @item lines
6499 The views are packed by line.
6500
6501 @item columns
6502 The views are packed by column.
6503
6504 @item frameseq
6505 The views are temporally interleaved.
6506
6507 @end table
6508
6509 @end table
6510
6511 Some examples:
6512
6513 @example
6514 # Convert left and right views into a frame-sequential video
6515 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
6516
6517 # Convert views into a side-by-side video with the same output resolution as the input
6518 ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
6519 @end example
6520
6521 @section framerate
6522
6523 Change the frame rate by interpolating new video output frames from the source
6524 frames.
6525
6526 This filter is not designed to function correctly with interlaced media. If
6527 you wish to change the frame rate of interlaced media then you are required
6528 to deinterlace before this filter and re-interlace after this filter.
6529
6530 A description of the accepted options follows.
6531
6532 @table @option
6533 @item fps
6534 Specify the output frames per second. This option can also be specified
6535 as a value alone. The default is @code{50}.
6536
6537 @item interp_start
6538 Specify the start of a range where the output frame will be created as a
6539 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6540 the default is @code{15}.
6541
6542 @item interp_end
6543 Specify the end of a range where the output frame will be created as a
6544 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6545 the default is @code{240}.
6546
6547 @item scene
6548 Specify the level at which a scene change is detected as a value between
6549 0 and 100 to indicate a new scene; a low value reflects a low
6550 probability for the current frame to introduce a new scene, while a higher
6551 value means the current frame is more likely to be one.
6552 The default is @code{7}.
6553
6554 @item flags
6555 Specify flags influencing the filter process.
6556
6557 Available value for @var{flags} is:
6558
6559 @table @option
6560 @item scene_change_detect, scd
6561 Enable scene change detection using the value of the option @var{scene}.
6562 This flag is enabled by default.
6563 @end table
6564 @end table
6565
6566 @section framestep
6567
6568 Select one frame every N-th frame.
6569
6570 This filter accepts the following option:
6571 @table @option
6572 @item step
6573 Select frame after every @code{step} frames.
6574 Allowed values are positive integers higher than 0. Default value is @code{1}.
6575 @end table
6576
6577 @anchor{frei0r}
6578 @section frei0r
6579
6580 Apply a frei0r effect to the input video.
6581
6582 To enable the compilation of this filter, you need to install the frei0r
6583 header and configure FFmpeg with @code{--enable-frei0r}.
6584
6585 It accepts the following parameters:
6586
6587 @table @option
6588
6589 @item filter_name
6590 The name of the frei0r effect to load. If the environment variable
6591 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
6592 directories specified by the colon-separated list in @env{FREIOR_PATH}.
6593 Otherwise, the standard frei0r paths are searched, in this order:
6594 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
6595 @file{/usr/lib/frei0r-1/}.
6596
6597 @item filter_params
6598 A '|'-separated list of parameters to pass to the frei0r effect.
6599
6600 @end table
6601
6602 A frei0r effect parameter can be a boolean (its value is either
6603 "y" or "n"), a double, a color (specified as
6604 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
6605 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
6606 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
6607 @var{X} and @var{Y} are floating point numbers) and/or a string.
6608
6609 The number and types of parameters depend on the loaded effect. If an
6610 effect parameter is not specified, the default value is set.
6611
6612 @subsection Examples
6613
6614 @itemize
6615 @item
6616 Apply the distort0r effect, setting the first two double parameters:
6617 @example
6618 frei0r=filter_name=distort0r:filter_params=0.5|0.01
6619 @end example
6620
6621 @item
6622 Apply the colordistance effect, taking a color as the first parameter:
6623 @example
6624 frei0r=colordistance:0.2/0.3/0.4
6625 frei0r=colordistance:violet
6626 frei0r=colordistance:0x112233
6627 @end example
6628
6629 @item
6630 Apply the perspective effect, specifying the top left and top right image
6631 positions:
6632 @example
6633 frei0r=perspective:0.2/0.2|0.8/0.2
6634 @end example
6635 @end itemize
6636
6637 For more information, see
6638 @url{http://frei0r.dyne.org}
6639
6640 @section fspp
6641
6642 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
6643
6644 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
6645 processing filter, one of them is performed once per block, not per pixel.
6646 This allows for much higher speed.
6647
6648 The filter accepts the following options:
6649
6650 @table @option
6651 @item quality
6652 Set quality. This option defines the number of levels for averaging. It accepts
6653 an integer in the range 4-5. Default value is @code{4}.
6654
6655 @item qp
6656 Force a constant quantization parameter. It accepts an integer in range 0-63.
6657 If not set, the filter will use the QP from the video stream (if available).
6658
6659 @item strength
6660 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
6661 more details but also more artifacts, while higher values make the image smoother
6662 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
6663
6664 @item use_bframe_qp
6665 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
6666 option may cause flicker since the B-Frames have often larger QP. Default is
6667 @code{0} (not enabled).
6668
6669 @end table
6670
6671 @section geq
6672
6673 The filter accepts the following options:
6674
6675 @table @option
6676 @item lum_expr, lum
6677 Set the luminance expression.
6678 @item cb_expr, cb
6679 Set the chrominance blue expression.
6680 @item cr_expr, cr
6681 Set the chrominance red expression.
6682 @item alpha_expr, a
6683 Set the alpha expression.
6684 @item red_expr, r
6685 Set the red expression.
6686 @item green_expr, g
6687 Set the green expression.
6688 @item blue_expr, b
6689 Set the blue expression.
6690 @end table
6691
6692 The colorspace is selected according to the specified options. If one
6693 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
6694 options is specified, the filter will automatically select a YCbCr
6695 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
6696 @option{blue_expr} options is specified, it will select an RGB
6697 colorspace.
6698
6699 If one of the chrominance expression is not defined, it falls back on the other
6700 one. If no alpha expression is specified it will evaluate to opaque value.
6701 If none of chrominance expressions are specified, they will evaluate
6702 to the luminance expression.
6703
6704 The expressions can use the following variables and functions:
6705
6706 @table @option
6707 @item N
6708 The sequential number of the filtered frame, starting from @code{0}.
6709
6710 @item X
6711 @item Y
6712 The coordinates of the current sample.
6713
6714 @item W
6715 @item H
6716 The width and height of the image.
6717
6718 @item SW
6719 @item SH
6720 Width and height scale depending on the currently filtered plane. It is the
6721 ratio between the corresponding luma plane number of pixels and the current
6722 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
6723 @code{0.5,0.5} for chroma planes.
6724
6725 @item T
6726 Time of the current frame, expressed in seconds.
6727
6728 @item p(x, y)
6729 Return the value of the pixel at location (@var{x},@var{y}) of the current
6730 plane.
6731
6732 @item lum(x, y)
6733 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
6734 plane.
6735
6736 @item cb(x, y)
6737 Return the value of the pixel at location (@var{x},@var{y}) of the
6738 blue-difference chroma plane. Return 0 if there is no such plane.
6739
6740 @item cr(x, y)
6741 Return the value of the pixel at location (@var{x},@var{y}) of the
6742 red-difference chroma plane. Return 0 if there is no such plane.
6743
6744 @item r(x, y)
6745 @item g(x, y)
6746 @item b(x, y)
6747 Return the value of the pixel at location (@var{x},@var{y}) of the
6748 red/green/blue component. Return 0 if there is no such component.
6749
6750 @item alpha(x, y)
6751 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
6752 plane. Return 0 if there is no such plane.
6753 @end table
6754
6755 For functions, if @var{x} and @var{y} are outside the area, the value will be
6756 automatically clipped to the closer edge.
6757
6758 @subsection Examples
6759
6760 @itemize
6761 @item
6762 Flip the image horizontally:
6763 @example
6764 geq=p(W-X\,Y)
6765 @end example
6766
6767 @item
6768 Generate a bidimensional sine wave, with angle @code{PI/3} and a
6769 wavelength of 100 pixels:
6770 @example
6771 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
6772 @end example
6773
6774 @item
6775 Generate a fancy enigmatic moving light:
6776 @example
6777 nullsrc=s=256x256,geq=random(1)/hypot(X-cos(N*0.07)*W/2-W/2\,Y-sin(N*0.09)*H/2-H/2)^2*1000000*sin(N*0.02):128:128
6778 @end example
6779
6780 @item
6781 Generate a quick emboss effect:
6782 @example
6783 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
6784 @end example
6785
6786 @item
6787 Modify RGB components depending on pixel position:
6788 @example
6789 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
6790 @end example
6791
6792 @item
6793 Create a radial gradient that is the same size as the input (also see
6794 the @ref{vignette} filter):
6795 @example
6796 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
6797 @end example
6798
6799 @item
6800 Create a linear gradient to use as a mask for another filter, then
6801 compose with @ref{overlay}. In this example the video will gradually
6802 become more blurry from the top to the bottom of the y-axis as defined
6803 by the linear gradient:
6804 @example
6805 ffmpeg -i input.mp4 -filter_complex "geq=lum=255*(Y/H),format=gray[grad];[0:v]boxblur=4[blur];[blur][grad]alphamerge[alpha];[0:v][alpha]overlay" output.mp4
6806 @end example
6807 @end itemize
6808
6809 @section gradfun
6810
6811 Fix the banding artifacts that are sometimes introduced into nearly flat
6812 regions by truncation to 8bit color depth.
6813 Interpolate the gradients that should go where the bands are, and
6814 dither them.
6815
6816 It is designed for playback only.  Do not use it prior to
6817 lossy compression, because compression tends to lose the dither and
6818 bring back the bands.
6819
6820 It accepts the following parameters:
6821
6822 @table @option
6823
6824 @item strength
6825 The maximum amount by which the filter will change any one pixel. This is also
6826 the threshold for detecting nearly flat regions. Acceptable values range from
6827 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
6828 valid range.
6829
6830 @item radius
6831 The neighborhood to fit the gradient to. A larger radius makes for smoother
6832 gradients, but also prevents the filter from modifying the pixels near detailed
6833 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
6834 values will be clipped to the valid range.
6835
6836 @end table
6837
6838 Alternatively, the options can be specified as a flat string:
6839 @var{strength}[:@var{radius}]
6840
6841 @subsection Examples
6842
6843 @itemize
6844 @item
6845 Apply the filter with a @code{3.5} strength and radius of @code{8}:
6846 @example
6847 gradfun=3.5:8
6848 @end example
6849
6850 @item
6851 Specify radius, omitting the strength (which will fall-back to the default
6852 value):
6853 @example
6854 gradfun=radius=8
6855 @end example
6856
6857 @end itemize
6858
6859 @anchor{haldclut}
6860 @section haldclut
6861
6862 Apply a Hald CLUT to a video stream.
6863
6864 First input is the video stream to process, and second one is the Hald CLUT.
6865 The Hald CLUT input can be a simple picture or a complete video stream.
6866
6867 The filter accepts the following options:
6868
6869 @table @option
6870 @item shortest
6871 Force termination when the shortest input terminates. Default is @code{0}.
6872 @item repeatlast
6873 Continue applying the last CLUT after the end of the stream. A value of
6874 @code{0} disable the filter after the last frame of the CLUT is reached.
6875 Default is @code{1}.
6876 @end table
6877
6878 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
6879 filters share the same internals).
6880
6881 More information about the Hald CLUT can be found on Eskil Steenberg's website
6882 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
6883
6884 @subsection Workflow examples
6885
6886 @subsubsection Hald CLUT video stream
6887
6888 Generate an identity Hald CLUT stream altered with various effects:
6889 @example
6890 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "hue=H=2*PI*t:s=sin(2*PI*t)+1, curves=cross_process" -t 10 -c:v ffv1 clut.nut
6891 @end example
6892
6893 Note: make sure you use a lossless codec.
6894
6895 Then use it with @code{haldclut} to apply it on some random stream:
6896 @example
6897 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
6898 @end example
6899
6900 The Hald CLUT will be applied to the 10 first seconds (duration of
6901 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
6902 to the remaining frames of the @code{mandelbrot} stream.
6903
6904 @subsubsection Hald CLUT with preview
6905
6906 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
6907 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
6908 biggest possible square starting at the top left of the picture. The remaining
6909 padding pixels (bottom or right) will be ignored. This area can be used to add
6910 a preview of the Hald CLUT.
6911
6912 Typically, the following generated Hald CLUT will be supported by the
6913 @code{haldclut} filter:
6914
6915 @example
6916 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
6917    pad=iw+320 [padded_clut];
6918    smptebars=s=320x256, split [a][b];
6919    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
6920    [main][b] overlay=W-320" -frames:v 1 clut.png
6921 @end example
6922
6923 It contains the original and a preview of the effect of the CLUT: SMPTE color
6924 bars are displayed on the right-top, and below the same color bars processed by
6925 the color changes.
6926
6927 Then, the effect of this Hald CLUT can be visualized with:
6928 @example
6929 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
6930 @end example
6931
6932 @section hflip
6933
6934 Flip the input video horizontally.
6935
6936 For example, to horizontally flip the input video with @command{ffmpeg}:
6937 @example
6938 ffmpeg -i in.avi -vf "hflip" out.avi
6939 @end example
6940
6941 @section histeq
6942 This filter applies a global color histogram equalization on a
6943 per-frame basis.
6944
6945 It can be used to correct video that has a compressed range of pixel
6946 intensities.  The filter redistributes the pixel intensities to
6947 equalize their distribution across the intensity range. It may be
6948 viewed as an "automatically adjusting contrast filter". This filter is
6949 useful only for correcting degraded or poorly captured source
6950 video.
6951
6952 The filter accepts the following options:
6953
6954 @table @option
6955 @item strength
6956 Determine the amount of equalization to be applied.  As the strength
6957 is reduced, the distribution of pixel intensities more-and-more
6958 approaches that of the input frame. The value must be a float number
6959 in the range [0,1] and defaults to 0.200.
6960
6961 @item intensity
6962 Set the maximum intensity that can generated and scale the output
6963 values appropriately.  The strength should be set as desired and then
6964 the intensity can be limited if needed to avoid washing-out. The value
6965 must be a float number in the range [0,1] and defaults to 0.210.
6966
6967 @item antibanding
6968 Set the antibanding level. If enabled the filter will randomly vary
6969 the luminance of output pixels by a small amount to avoid banding of
6970 the histogram. Possible values are @code{none}, @code{weak} or
6971 @code{strong}. It defaults to @code{none}.
6972 @end table
6973
6974 @section histogram
6975
6976 Compute and draw a color distribution histogram for the input video.
6977
6978 The computed histogram is a representation of the color component
6979 distribution in an image.
6980
6981 The filter accepts the following options:
6982
6983 @table @option
6984 @item mode
6985 Set histogram mode.
6986
6987 It accepts the following values:
6988 @table @samp
6989 @item levels
6990 Standard histogram that displays the color components distribution in an
6991 image. Displays color graph for each color component. Shows distribution of
6992 the Y, U, V, A or R, G, B components, depending on input format, in the
6993 current frame. Below each graph a color component scale meter is shown.
6994
6995 @item color
6996 Displays chroma values (U/V color placement) in a two dimensional
6997 graph (which is called a vectorscope). The brighter a pixel in the
6998 vectorscope, the more pixels of the input frame correspond to that pixel
6999 (i.e., more pixels have this chroma value). The V component is displayed on
7000 the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
7001 side being V = 255. The U component is displayed on the vertical (Y) axis,
7002 with the top representing U = 0 and the bottom representing U = 255.
7003
7004 The position of a white pixel in the graph corresponds to the chroma value of
7005 a pixel of the input clip. The graph can therefore be used to read the hue
7006 (color flavor) and the saturation (the dominance of the hue in the color). As
7007 the hue of a color changes, it moves around the square. At the center of the
7008 square the saturation is zero, which means that the corresponding pixel has no
7009 color. If the amount of a specific color is increased (while leaving the other
7010 colors unchanged) the saturation increases, and the indicator moves towards
7011 the edge of the square.
7012
7013 @item color2
7014 Chroma values in vectorscope, similar as @code{color} but actual chroma values
7015 are displayed.
7016
7017 @item waveform
7018 Per row/column color component graph. In row mode, the graph on the left side
7019 represents color component value 0 and the right side represents value = 255.
7020 In column mode, the top side represents color component value = 0 and bottom
7021 side represents value = 255.
7022 @end table
7023 Default value is @code{levels}.
7024
7025 @item level_height
7026 Set height of level in @code{levels}. Default value is @code{200}.
7027 Allowed range is [50, 2048].
7028
7029 @item scale_height
7030 Set height of color scale in @code{levels}. Default value is @code{12}.
7031 Allowed range is [0, 40].
7032
7033 @item step
7034 Set step for @code{waveform} mode. Smaller values are useful to find out how
7035 many values of the same luminance are distributed across input rows/columns.
7036 Default value is @code{10}. Allowed range is [1, 255].
7037
7038 @item waveform_mode
7039 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
7040 Default is @code{row}.
7041
7042 @item waveform_mirror
7043 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
7044 means mirrored. In mirrored mode, higher values will be represented on the left
7045 side for @code{row} mode and at the top for @code{column} mode. Default is
7046 @code{0} (unmirrored).
7047
7048 @item display_mode
7049 Set display mode for @code{waveform} and @code{levels}.
7050 It accepts the following values:
7051 @table @samp
7052 @item parade
7053 Display separate graph for the color components side by side in
7054 @code{row} waveform mode or one below the other in @code{column} waveform mode
7055 for @code{waveform} histogram mode. For @code{levels} histogram mode,
7056 per color component graphs are placed below each other.
7057
7058 Using this display mode in @code{waveform} histogram mode makes it easy to
7059 spot color casts in the highlights and shadows of an image, by comparing the
7060 contours of the top and the bottom graphs of each waveform. Since whites,
7061 grays, and blacks are characterized by exactly equal amounts of red, green,
7062 and blue, neutral areas of the picture should display three waveforms of
7063 roughly equal width/height. If not, the correction is easy to perform by
7064 making level adjustments the three waveforms.
7065
7066 @item overlay
7067 Presents information identical to that in the @code{parade}, except
7068 that the graphs representing color components are superimposed directly
7069 over one another.
7070
7071 This display mode in @code{waveform} histogram mode makes it easier to spot
7072 relative differences or similarities in overlapping areas of the color
7073 components that are supposed to be identical, such as neutral whites, grays,
7074 or blacks.
7075 @end table
7076 Default is @code{parade}.
7077
7078 @item levels_mode
7079 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
7080 Default is @code{linear}.
7081
7082 @item components
7083 Set what color components to display for mode @code{levels}.
7084 Default is @code{7}.
7085 @end table
7086
7087 @subsection Examples
7088
7089 @itemize
7090
7091 @item
7092 Calculate and draw histogram:
7093 @example
7094 ffplay -i input -vf histogram
7095 @end example
7096
7097 @end itemize
7098
7099 @anchor{hqdn3d}
7100 @section hqdn3d
7101
7102 This is a high precision/quality 3d denoise filter. It aims to reduce
7103 image noise, producing smooth images and making still images really
7104 still. It should enhance compressibility.
7105
7106 It accepts the following optional parameters:
7107
7108 @table @option
7109 @item luma_spatial
7110 A non-negative floating point number which specifies spatial luma strength.
7111 It defaults to 4.0.
7112
7113 @item chroma_spatial
7114 A non-negative floating point number which specifies spatial chroma strength.
7115 It defaults to 3.0*@var{luma_spatial}/4.0.
7116
7117 @item luma_tmp
7118 A floating point number which specifies luma temporal strength. It defaults to
7119 6.0*@var{luma_spatial}/4.0.
7120
7121 @item chroma_tmp
7122 A floating point number which specifies chroma temporal strength. It defaults to
7123 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
7124 @end table
7125
7126 @section hqx
7127
7128 Apply a high-quality magnification filter designed for pixel art. This filter
7129 was originally created by Maxim Stepin.
7130
7131 It accepts the following option:
7132
7133 @table @option
7134 @item n
7135 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
7136 @code{hq3x} and @code{4} for @code{hq4x}.
7137 Default is @code{3}.
7138 @end table
7139
7140 @section hstack
7141 Stack input videos horizontally.
7142
7143 All streams must be of same pixel format and of same height.
7144
7145 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
7146 to create same output.
7147
7148 The filter accept the following option:
7149
7150 @table @option
7151 @item inputs
7152 Set number of input streams. Default is 2.
7153 @end table
7154
7155 @section hue
7156
7157 Modify the hue and/or the saturation of the input.
7158
7159 It accepts the following parameters:
7160
7161 @table @option
7162 @item h
7163 Specify the hue angle as a number of degrees. It accepts an expression,
7164 and defaults to "0".
7165
7166 @item s
7167 Specify the saturation in the [-10,10] range. It accepts an expression and
7168 defaults to "1".
7169
7170 @item H
7171 Specify the hue angle as a number of radians. It accepts an
7172 expression, and defaults to "0".
7173
7174 @item b
7175 Specify the brightness in the [-10,10] range. It accepts an expression and
7176 defaults to "0".
7177 @end table
7178
7179 @option{h} and @option{H} are mutually exclusive, and can't be
7180 specified at the same time.
7181
7182 The @option{b}, @option{h}, @option{H} and @option{s} option values are
7183 expressions containing the following constants:
7184
7185 @table @option
7186 @item n
7187 frame count of the input frame starting from 0
7188
7189 @item pts
7190 presentation timestamp of the input frame expressed in time base units
7191
7192 @item r
7193 frame rate of the input video, NAN if the input frame rate is unknown
7194
7195 @item t
7196 timestamp expressed in seconds, NAN if the input timestamp is unknown
7197
7198 @item tb
7199 time base of the input video
7200 @end table
7201
7202 @subsection Examples
7203
7204 @itemize
7205 @item
7206 Set the hue to 90 degrees and the saturation to 1.0:
7207 @example
7208 hue=h=90:s=1
7209 @end example
7210
7211 @item
7212 Same command but expressing the hue in radians:
7213 @example
7214 hue=H=PI/2:s=1
7215 @end example
7216
7217 @item
7218 Rotate hue and make the saturation swing between 0
7219 and 2 over a period of 1 second:
7220 @example
7221 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7222 @end example
7223
7224 @item
7225 Apply a 3 seconds saturation fade-in effect starting at 0:
7226 @example
7227 hue="s=min(t/3\,1)"
7228 @end example
7229
7230 The general fade-in expression can be written as:
7231 @example
7232 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7233 @end example
7234
7235 @item
7236 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7237 @example
7238 hue="s=max(0\, min(1\, (8-t)/3))"
7239 @end example
7240
7241 The general fade-out expression can be written as:
7242 @example
7243 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7244 @end example
7245
7246 @end itemize
7247
7248 @subsection Commands
7249
7250 This filter supports the following commands:
7251 @table @option
7252 @item b
7253 @item s
7254 @item h
7255 @item H
7256 Modify the hue and/or the saturation and/or brightness of the input video.
7257 The command accepts the same syntax of the corresponding option.
7258
7259 If the specified expression is not valid, it is kept at its current
7260 value.
7261 @end table
7262
7263 @section idet
7264
7265 Detect video interlacing type.
7266
7267 This filter tries to detect if the input frames as interlaced, progressive,
7268 top or bottom field first. It will also try and detect fields that are
7269 repeated between adjacent frames (a sign of telecine).
7270
7271 Single frame detection considers only immediately adjacent frames when classifying each frame.
7272 Multiple frame detection incorporates the classification history of previous frames.
7273
7274 The filter will log these metadata values:
7275
7276 @table @option
7277 @item single.current_frame
7278 Detected type of current frame using single-frame detection. One of:
7279 ``tff'' (top field first), ``bff'' (bottom field first),
7280 ``progressive'', or ``undetermined''
7281
7282 @item single.tff
7283 Cumulative number of frames detected as top field first using single-frame detection.
7284
7285 @item multiple.tff
7286 Cumulative number of frames detected as top field first using multiple-frame detection.
7287
7288 @item single.bff
7289 Cumulative number of frames detected as bottom field first using single-frame detection.
7290
7291 @item multiple.current_frame
7292 Detected type of current frame using multiple-frame detection. One of:
7293 ``tff'' (top field first), ``bff'' (bottom field first),
7294 ``progressive'', or ``undetermined''
7295
7296 @item multiple.bff
7297 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7298
7299 @item single.progressive
7300 Cumulative number of frames detected as progressive using single-frame detection.
7301
7302 @item multiple.progressive
7303 Cumulative number of frames detected as progressive using multiple-frame detection.
7304
7305 @item single.undetermined
7306 Cumulative number of frames that could not be classified using single-frame detection.
7307
7308 @item multiple.undetermined
7309 Cumulative number of frames that could not be classified using multiple-frame detection.
7310
7311 @item repeated.current_frame
7312 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7313
7314 @item repeated.neither
7315 Cumulative number of frames with no repeated field.
7316
7317 @item repeated.top
7318 Cumulative number of frames with the top field repeated from the previous frame's top field.
7319
7320 @item repeated.bottom
7321 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7322 @end table
7323
7324 The filter accepts the following options:
7325
7326 @table @option
7327 @item intl_thres
7328 Set interlacing threshold.
7329 @item prog_thres
7330 Set progressive threshold.
7331 @item repeat_thres
7332 Threshold for repeated field detection.
7333 @item half_life
7334 Number of frames after which a given frame's contribution to the
7335 statistics is halved (i.e., it contributes only 0.5 to it's
7336 classification). The default of 0 means that all frames seen are given
7337 full weight of 1.0 forever.
7338 @item analyze_interlaced_flag
7339 When this is not 0 then idet will use the specified number of frames to determine
7340 if the interlaced flag is accurate, it will not count undetermined frames.
7341 If the flag is found to be accurate it will be used without any further
7342 computations, if it is found to be inaccurate it will be cleared without any
7343 further computations. This allows inserting the idet filter as a low computational
7344 method to clean up the interlaced flag
7345 @end table
7346
7347 @section il
7348
7349 Deinterleave or interleave fields.
7350
7351 This filter allows one to process interlaced images fields without
7352 deinterlacing them. Deinterleaving splits the input frame into 2
7353 fields (so called half pictures). Odd lines are moved to the top
7354 half of the output image, even lines to the bottom half.
7355 You can process (filter) them independently and then re-interleave them.
7356
7357 The filter accepts the following options:
7358
7359 @table @option
7360 @item luma_mode, l
7361 @item chroma_mode, c
7362 @item alpha_mode, a
7363 Available values for @var{luma_mode}, @var{chroma_mode} and
7364 @var{alpha_mode} are:
7365
7366 @table @samp
7367 @item none
7368 Do nothing.
7369
7370 @item deinterleave, d
7371 Deinterleave fields, placing one above the other.
7372
7373 @item interleave, i
7374 Interleave fields. Reverse the effect of deinterleaving.
7375 @end table
7376 Default value is @code{none}.
7377
7378 @item luma_swap, ls
7379 @item chroma_swap, cs
7380 @item alpha_swap, as
7381 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
7382 @end table
7383
7384 @section inflate
7385
7386 Apply inflate effect to the video.
7387
7388 This filter replaces the pixel by the local(3x3) average by taking into account
7389 only values higher than the pixel.
7390
7391 It accepts the following options:
7392
7393 @table @option
7394 @item threshold0
7395 @item threshold1
7396 @item threshold2
7397 @item threshold3
7398 Limit the maximum change for each plane, default is 65535.
7399 If 0, plane will remain unchanged.
7400 @end table
7401
7402 @section interlace
7403
7404 Simple interlacing filter from progressive contents. This interleaves upper (or
7405 lower) lines from odd frames with lower (or upper) lines from even frames,
7406 halving the frame rate and preserving image height.
7407
7408 @example
7409    Original        Original             New Frame
7410    Frame 'j'      Frame 'j+1'             (tff)
7411   ==========      ===========       ==================
7412     Line 0  -------------------->    Frame 'j' Line 0
7413     Line 1          Line 1  ---->   Frame 'j+1' Line 1
7414     Line 2 --------------------->    Frame 'j' Line 2
7415     Line 3          Line 3  ---->   Frame 'j+1' Line 3
7416      ...             ...                   ...
7417 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
7418 @end example
7419
7420 It accepts the following optional parameters:
7421
7422 @table @option
7423 @item scan
7424 This determines whether the interlaced frame is taken from the even
7425 (tff - default) or odd (bff) lines of the progressive frame.
7426
7427 @item lowpass
7428 Enable (default) or disable the vertical lowpass filter to avoid twitter
7429 interlacing and reduce moire patterns.
7430 @end table
7431
7432 @section kerndeint
7433
7434 Deinterlace input video by applying Donald Graft's adaptive kernel
7435 deinterling. Work on interlaced parts of a video to produce
7436 progressive frames.
7437
7438 The description of the accepted parameters follows.
7439
7440 @table @option
7441 @item thresh
7442 Set the threshold which affects the filter's tolerance when
7443 determining if a pixel line must be processed. It must be an integer
7444 in the range [0,255] and defaults to 10. A value of 0 will result in
7445 applying the process on every pixels.
7446
7447 @item map
7448 Paint pixels exceeding the threshold value to white if set to 1.
7449 Default is 0.
7450
7451 @item order
7452 Set the fields order. Swap fields if set to 1, leave fields alone if
7453 0. Default is 0.
7454
7455 @item sharp
7456 Enable additional sharpening if set to 1. Default is 0.
7457
7458 @item twoway
7459 Enable twoway sharpening if set to 1. Default is 0.
7460 @end table
7461
7462 @subsection Examples
7463
7464 @itemize
7465 @item
7466 Apply default values:
7467 @example
7468 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7469 @end example
7470
7471 @item
7472 Enable additional sharpening:
7473 @example
7474 kerndeint=sharp=1
7475 @end example
7476
7477 @item
7478 Paint processed pixels in white:
7479 @example
7480 kerndeint=map=1
7481 @end example
7482 @end itemize
7483
7484 @section lenscorrection
7485
7486 Correct radial lens distortion
7487
7488 This filter can be used to correct for radial distortion as can result from the use
7489 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7490 one can use tools available for example as part of opencv or simply trial-and-error.
7491 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7492 and extract the k1 and k2 coefficients from the resulting matrix.
7493
7494 Note that effectively the same filter is available in the open-source tools Krita and
7495 Digikam from the KDE project.
7496
7497 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7498 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7499 brightness distribution, so you may want to use both filters together in certain
7500 cases, though you will have to take care of ordering, i.e. whether vignetting should
7501 be applied before or after lens correction.
7502
7503 @subsection Options
7504
7505 The filter accepts the following options:
7506
7507 @table @option
7508 @item cx
7509 Relative x-coordinate of the focal point of the image, and thereby the center of the
7510 distortion. This value has a range [0,1] and is expressed as fractions of the image
7511 width.
7512 @item cy
7513 Relative y-coordinate of the focal point of the image, and thereby the center of the
7514 distortion. This value has a range [0,1] and is expressed as fractions of the image
7515 height.
7516 @item k1
7517 Coefficient of the quadratic correction term. 0.5 means no correction.
7518 @item k2
7519 Coefficient of the double quadratic correction term. 0.5 means no correction.
7520 @end table
7521
7522 The formula that generates the correction is:
7523
7524 @var{r_src} = @var{r_tgt} * (1 + @var{k1} * (@var{r_tgt} / @var{r_0})^2 + @var{k2} * (@var{r_tgt} / @var{r_0})^4)
7525
7526 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
7527 distances from the focal point in the source and target images, respectively.
7528
7529 @anchor{lut3d}
7530 @section lut3d
7531
7532 Apply a 3D LUT to an input video.
7533
7534 The filter accepts the following options:
7535
7536 @table @option
7537 @item file
7538 Set the 3D LUT file name.
7539
7540 Currently supported formats:
7541 @table @samp
7542 @item 3dl
7543 AfterEffects
7544 @item cube
7545 Iridas
7546 @item dat
7547 DaVinci
7548 @item m3d
7549 Pandora
7550 @end table
7551 @item interp
7552 Select interpolation mode.
7553
7554 Available values are:
7555
7556 @table @samp
7557 @item nearest
7558 Use values from the nearest defined point.
7559 @item trilinear
7560 Interpolate values using the 8 points defining a cube.
7561 @item tetrahedral
7562 Interpolate values using a tetrahedron.
7563 @end table
7564 @end table
7565
7566 @section lut, lutrgb, lutyuv
7567
7568 Compute a look-up table for binding each pixel component input value
7569 to an output value, and apply it to the input video.
7570
7571 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
7572 to an RGB input video.
7573
7574 These filters accept the following parameters:
7575 @table @option
7576 @item c0
7577 set first pixel component expression
7578 @item c1
7579 set second pixel component expression
7580 @item c2
7581 set third pixel component expression
7582 @item c3
7583 set fourth pixel component expression, corresponds to the alpha component
7584
7585 @item r
7586 set red component expression
7587 @item g
7588 set green component expression
7589 @item b
7590 set blue component expression
7591 @item a
7592 alpha component expression
7593
7594 @item y
7595 set Y/luminance component expression
7596 @item u
7597 set U/Cb component expression
7598 @item v
7599 set V/Cr component expression
7600 @end table
7601
7602 Each of them specifies the expression to use for computing the lookup table for
7603 the corresponding pixel component values.
7604
7605 The exact component associated to each of the @var{c*} options depends on the
7606 format in input.
7607
7608 The @var{lut} filter requires either YUV or RGB pixel formats in input,
7609 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
7610
7611 The expressions can contain the following constants and functions:
7612
7613 @table @option
7614 @item w
7615 @item h
7616 The input width and height.
7617
7618 @item val
7619 The input value for the pixel component.
7620
7621 @item clipval
7622 The input value, clipped to the @var{minval}-@var{maxval} range.
7623
7624 @item maxval
7625 The maximum value for the pixel component.
7626
7627 @item minval
7628 The minimum value for the pixel component.
7629
7630 @item negval
7631 The negated value for the pixel component value, clipped to the
7632 @var{minval}-@var{maxval} range; it corresponds to the expression
7633 "maxval-clipval+minval".
7634
7635 @item clip(val)
7636 The computed value in @var{val}, clipped to the
7637 @var{minval}-@var{maxval} range.
7638
7639 @item gammaval(gamma)
7640 The computed gamma correction value of the pixel component value,
7641 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
7642 expression
7643 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
7644
7645 @end table
7646
7647 All expressions default to "val".
7648
7649 @subsection Examples
7650
7651 @itemize
7652 @item
7653 Negate input video:
7654 @example
7655 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
7656 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
7657 @end example
7658
7659 The above is the same as:
7660 @example
7661 lutrgb="r=negval:g=negval:b=negval"
7662 lutyuv="y=negval:u=negval:v=negval"
7663 @end example
7664
7665 @item
7666 Negate luminance:
7667 @example
7668 lutyuv=y=negval
7669 @end example
7670
7671 @item
7672 Remove chroma components, turning the video into a graytone image:
7673 @example
7674 lutyuv="u=128:v=128"
7675 @end example
7676
7677 @item
7678 Apply a luma burning effect:
7679 @example
7680 lutyuv="y=2*val"
7681 @end example
7682
7683 @item
7684 Remove green and blue components:
7685 @example
7686 lutrgb="g=0:b=0"
7687 @end example
7688
7689 @item
7690 Set a constant alpha channel value on input:
7691 @example
7692 format=rgba,lutrgb=a="maxval-minval/2"
7693 @end example
7694
7695 @item
7696 Correct luminance gamma by a factor of 0.5:
7697 @example
7698 lutyuv=y=gammaval(0.5)
7699 @end example
7700
7701 @item
7702 Discard least significant bits of luma:
7703 @example
7704 lutyuv=y='bitand(val, 128+64+32)'
7705 @end example
7706 @end itemize
7707
7708 @section maskedmerge
7709
7710 Merge the first input stream with the second input stream using per pixel
7711 weights in the third input stream.
7712
7713 A value of 0 in the third stream pixel component means that pixel component
7714 from first stream is returned unchanged, while maximum value (eg. 255 for
7715 8-bit videos) means that pixel component from second stream is returned
7716 unchanged. Intermediate values define the amount of merging between both
7717 input stream's pixel components.
7718
7719 This filter accepts the following options:
7720 @table @option
7721 @item planes
7722 Set which planes will be processed as bitmap, unprocessed planes will be
7723 copied from first stream.
7724 By default value 0xf, all planes will be processed.
7725 @end table
7726
7727 @section mcdeint
7728
7729 Apply motion-compensation deinterlacing.
7730
7731 It needs one field per frame as input and must thus be used together
7732 with yadif=1/3 or equivalent.
7733
7734 This filter accepts the following options:
7735 @table @option
7736 @item mode
7737 Set the deinterlacing mode.
7738
7739 It accepts one of the following values:
7740 @table @samp
7741 @item fast
7742 @item medium
7743 @item slow
7744 use iterative motion estimation
7745 @item extra_slow
7746 like @samp{slow}, but use multiple reference frames.
7747 @end table
7748 Default value is @samp{fast}.
7749
7750 @item parity
7751 Set the picture field parity assumed for the input video. It must be
7752 one of the following values:
7753
7754 @table @samp
7755 @item 0, tff
7756 assume top field first
7757 @item 1, bff
7758 assume bottom field first
7759 @end table
7760
7761 Default value is @samp{bff}.
7762
7763 @item qp
7764 Set per-block quantization parameter (QP) used by the internal
7765 encoder.
7766
7767 Higher values should result in a smoother motion vector field but less
7768 optimal individual vectors. Default value is 1.
7769 @end table
7770
7771 @section mergeplanes
7772
7773 Merge color channel components from several video streams.
7774
7775 The filter accepts up to 4 input streams, and merge selected input
7776 planes to the output video.
7777
7778 This filter accepts the following options:
7779 @table @option
7780 @item mapping
7781 Set input to output plane mapping. Default is @code{0}.
7782
7783 The mappings is specified as a bitmap. It should be specified as a
7784 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
7785 mapping for the first plane of the output stream. 'A' sets the number of
7786 the input stream to use (from 0 to 3), and 'a' the plane number of the
7787 corresponding input to use (from 0 to 3). The rest of the mappings is
7788 similar, 'Bb' describes the mapping for the output stream second
7789 plane, 'Cc' describes the mapping for the output stream third plane and
7790 'Dd' describes the mapping for the output stream fourth plane.
7791
7792 @item format
7793 Set output pixel format. Default is @code{yuva444p}.
7794 @end table
7795
7796 @subsection Examples
7797
7798 @itemize
7799 @item
7800 Merge three gray video streams of same width and height into single video stream:
7801 @example
7802 [a0][a1][a2]mergeplanes=0x001020:yuv444p
7803 @end example
7804
7805 @item
7806 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
7807 @example
7808 [a0][a1]mergeplanes=0x00010210:yuva444p
7809 @end example
7810
7811 @item
7812 Swap Y and A plane in yuva444p stream:
7813 @example
7814 format=yuva444p,mergeplanes=0x03010200:yuva444p
7815 @end example
7816
7817 @item
7818 Swap U and V plane in yuv420p stream:
7819 @example
7820 format=yuv420p,mergeplanes=0x000201:yuv420p
7821 @end example
7822
7823 @item
7824 Cast a rgb24 clip to yuv444p:
7825 @example
7826 format=rgb24,mergeplanes=0x000102:yuv444p
7827 @end example
7828 @end itemize
7829
7830 @section mpdecimate
7831
7832 Drop frames that do not differ greatly from the previous frame in
7833 order to reduce frame rate.
7834
7835 The main use of this filter is for very-low-bitrate encoding
7836 (e.g. streaming over dialup modem), but it could in theory be used for
7837 fixing movies that were inverse-telecined incorrectly.
7838
7839 A description of the accepted options follows.
7840
7841 @table @option
7842 @item max
7843 Set the maximum number of consecutive frames which can be dropped (if
7844 positive), or the minimum interval between dropped frames (if
7845 negative). If the value is 0, the frame is dropped unregarding the
7846 number of previous sequentially dropped frames.
7847
7848 Default value is 0.
7849
7850 @item hi
7851 @item lo
7852 @item frac
7853 Set the dropping threshold values.
7854
7855 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
7856 represent actual pixel value differences, so a threshold of 64
7857 corresponds to 1 unit of difference for each pixel, or the same spread
7858 out differently over the block.
7859
7860 A frame is a candidate for dropping if no 8x8 blocks differ by more
7861 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
7862 meaning the whole image) differ by more than a threshold of @option{lo}.
7863
7864 Default value for @option{hi} is 64*12, default value for @option{lo} is
7865 64*5, and default value for @option{frac} is 0.33.
7866 @end table
7867
7868
7869 @section negate
7870
7871 Negate input video.
7872
7873 It accepts an integer in input; if non-zero it negates the
7874 alpha component (if available). The default value in input is 0.
7875
7876 @section noformat
7877
7878 Force libavfilter not to use any of the specified pixel formats for the
7879 input to the next filter.
7880
7881 It accepts the following parameters:
7882 @table @option
7883
7884 @item pix_fmts
7885 A '|'-separated list of pixel format names, such as
7886 apix_fmts=yuv420p|monow|rgb24".
7887
7888 @end table
7889
7890 @subsection Examples
7891
7892 @itemize
7893 @item
7894 Force libavfilter to use a format different from @var{yuv420p} for the
7895 input to the vflip filter:
7896 @example
7897 noformat=pix_fmts=yuv420p,vflip
7898 @end example
7899
7900 @item
7901 Convert the input video to any of the formats not contained in the list:
7902 @example
7903 noformat=yuv420p|yuv444p|yuv410p
7904 @end example
7905 @end itemize
7906
7907 @section noise
7908
7909 Add noise on video input frame.
7910
7911 The filter accepts the following options:
7912
7913 @table @option
7914 @item all_seed
7915 @item c0_seed
7916 @item c1_seed
7917 @item c2_seed
7918 @item c3_seed
7919 Set noise seed for specific pixel component or all pixel components in case
7920 of @var{all_seed}. Default value is @code{123457}.
7921
7922 @item all_strength, alls
7923 @item c0_strength, c0s
7924 @item c1_strength, c1s
7925 @item c2_strength, c2s
7926 @item c3_strength, c3s
7927 Set noise strength for specific pixel component or all pixel components in case
7928 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
7929
7930 @item all_flags, allf
7931 @item c0_flags, c0f
7932 @item c1_flags, c1f
7933 @item c2_flags, c2f
7934 @item c3_flags, c3f
7935 Set pixel component flags or set flags for all components if @var{all_flags}.
7936 Available values for component flags are:
7937 @table @samp
7938 @item a
7939 averaged temporal noise (smoother)
7940 @item p
7941 mix random noise with a (semi)regular pattern
7942 @item t
7943 temporal noise (noise pattern changes between frames)
7944 @item u
7945 uniform noise (gaussian otherwise)
7946 @end table
7947 @end table
7948
7949 @subsection Examples
7950
7951 Add temporal and uniform noise to input video:
7952 @example
7953 noise=alls=20:allf=t+u
7954 @end example
7955
7956 @section null
7957
7958 Pass the video source unchanged to the output.
7959
7960 @section ocr
7961 Optical Character Recognition
7962
7963 This filter uses Tesseract for optical character recognition.
7964
7965 It accepts the following options:
7966
7967 @table @option
7968 @item datapath
7969 Set datapath to tesseract data. Default is to use whatever was
7970 set at installation.
7971
7972 @item language
7973 Set language, default is "eng".
7974
7975 @item whitelist
7976 Set character whitelist.
7977
7978 @item blacklist
7979 Set character blacklist.
7980 @end table
7981
7982 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
7983
7984 @section ocv
7985
7986 Apply a video transform using libopencv.
7987
7988 To enable this filter, install the libopencv library and headers and
7989 configure FFmpeg with @code{--enable-libopencv}.
7990
7991 It accepts the following parameters:
7992
7993 @table @option
7994
7995 @item filter_name
7996 The name of the libopencv filter to apply.
7997
7998 @item filter_params
7999 The parameters to pass to the libopencv filter. If not specified, the default
8000 values are assumed.
8001
8002 @end table
8003
8004 Refer to the official libopencv documentation for more precise
8005 information:
8006 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
8007
8008 Several libopencv filters are supported; see the following subsections.
8009
8010 @anchor{dilate}
8011 @subsection dilate
8012
8013 Dilate an image by using a specific structuring element.
8014 It corresponds to the libopencv function @code{cvDilate}.
8015
8016 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
8017
8018 @var{struct_el} represents a structuring element, and has the syntax:
8019 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
8020
8021 @var{cols} and @var{rows} represent the number of columns and rows of
8022 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
8023 point, and @var{shape} the shape for the structuring element. @var{shape}
8024 must be "rect", "cross", "ellipse", or "custom".
8025
8026 If the value for @var{shape} is "custom", it must be followed by a
8027 string of the form "=@var{filename}". The file with name
8028 @var{filename} is assumed to represent a binary image, with each
8029 printable character corresponding to a bright pixel. When a custom
8030 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
8031 or columns and rows of the read file are assumed instead.
8032
8033 The default value for @var{struct_el} is "3x3+0x0/rect".
8034
8035 @var{nb_iterations} specifies the number of times the transform is
8036 applied to the image, and defaults to 1.
8037
8038 Some examples:
8039 @example
8040 # Use the default values
8041 ocv=dilate
8042
8043 # Dilate using a structuring element with a 5x5 cross, iterating two times
8044 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
8045
8046 # Read the shape from the file diamond.shape, iterating two times.
8047 # The file diamond.shape may contain a pattern of characters like this
8048 #   *
8049 #  ***
8050 # *****
8051 #  ***
8052 #   *
8053 # The specified columns and rows are ignored
8054 # but the anchor point coordinates are not
8055 ocv=dilate:0x0+2x2/custom=diamond.shape|2
8056 @end example
8057
8058 @subsection erode
8059
8060 Erode an image by using a specific structuring element.
8061 It corresponds to the libopencv function @code{cvErode}.
8062
8063 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
8064 with the same syntax and semantics as the @ref{dilate} filter.
8065
8066 @subsection smooth
8067
8068 Smooth the input video.
8069
8070 The filter takes the following parameters:
8071 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
8072
8073 @var{type} is the type of smooth filter to apply, and must be one of
8074 the following values: "blur", "blur_no_scale", "median", "gaussian",
8075 or "bilateral". The default value is "gaussian".
8076
8077 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
8078 depend on the smooth type. @var{param1} and
8079 @var{param2} accept integer positive values or 0. @var{param3} and
8080 @var{param4} accept floating point values.
8081
8082 The default value for @var{param1} is 3. The default value for the
8083 other parameters is 0.
8084
8085 These parameters correspond to the parameters assigned to the
8086 libopencv function @code{cvSmooth}.
8087
8088 @anchor{overlay}
8089 @section overlay
8090
8091 Overlay one video on top of another.
8092
8093 It takes two inputs and has one output. The first input is the "main"
8094 video on which the second input is overlaid.
8095
8096 It accepts the following parameters:
8097
8098 A description of the accepted options follows.
8099
8100 @table @option
8101 @item x
8102 @item y
8103 Set the expression for the x and y coordinates of the overlaid video
8104 on the main video. Default value is "0" for both expressions. In case
8105 the expression is invalid, it is set to a huge value (meaning that the
8106 overlay will not be displayed within the output visible area).
8107
8108 @item eof_action
8109 The action to take when EOF is encountered on the secondary input; it accepts
8110 one of the following values:
8111
8112 @table @option
8113 @item repeat
8114 Repeat the last frame (the default).
8115 @item endall
8116 End both streams.
8117 @item pass
8118 Pass the main input through.
8119 @end table
8120
8121 @item eval
8122 Set when the expressions for @option{x}, and @option{y} are evaluated.
8123
8124 It accepts the following values:
8125 @table @samp
8126 @item init
8127 only evaluate expressions once during the filter initialization or
8128 when a command is processed
8129
8130 @item frame
8131 evaluate expressions for each incoming frame
8132 @end table
8133
8134 Default value is @samp{frame}.
8135
8136 @item shortest
8137 If set to 1, force the output to terminate when the shortest input
8138 terminates. Default value is 0.
8139
8140 @item format
8141 Set the format for the output video.
8142
8143 It accepts the following values:
8144 @table @samp
8145 @item yuv420
8146 force YUV420 output
8147
8148 @item yuv422
8149 force YUV422 output
8150
8151 @item yuv444
8152 force YUV444 output
8153
8154 @item rgb
8155 force RGB output
8156 @end table
8157
8158 Default value is @samp{yuv420}.
8159
8160 @item rgb @emph{(deprecated)}
8161 If set to 1, force the filter to accept inputs in the RGB
8162 color space. Default value is 0. This option is deprecated, use
8163 @option{format} instead.
8164
8165 @item repeatlast
8166 If set to 1, force the filter to draw the last overlay frame over the
8167 main input until the end of the stream. A value of 0 disables this
8168 behavior. Default value is 1.
8169 @end table
8170
8171 The @option{x}, and @option{y} expressions can contain the following
8172 parameters.
8173
8174 @table @option
8175 @item main_w, W
8176 @item main_h, H
8177 The main input width and height.
8178
8179 @item overlay_w, w
8180 @item overlay_h, h
8181 The overlay input width and height.
8182
8183 @item x
8184 @item y
8185 The computed values for @var{x} and @var{y}. They are evaluated for
8186 each new frame.
8187
8188 @item hsub
8189 @item vsub
8190 horizontal and vertical chroma subsample values of the output
8191 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
8192 @var{vsub} is 1.
8193
8194 @item n
8195 the number of input frame, starting from 0
8196
8197 @item pos
8198 the position in the file of the input frame, NAN if unknown
8199
8200 @item t
8201 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
8202
8203 @end table
8204
8205 Note that the @var{n}, @var{pos}, @var{t} variables are available only
8206 when evaluation is done @emph{per frame}, and will evaluate to NAN
8207 when @option{eval} is set to @samp{init}.
8208
8209 Be aware that frames are taken from each input video in timestamp
8210 order, hence, if their initial timestamps differ, it is a good idea
8211 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
8212 have them begin in the same zero timestamp, as the example for
8213 the @var{movie} filter does.
8214
8215 You can chain together more overlays but you should test the
8216 efficiency of such approach.
8217
8218 @subsection Commands
8219
8220 This filter supports the following commands:
8221 @table @option
8222 @item x
8223 @item y
8224 Modify the x and y of the overlay input.
8225 The command accepts the same syntax of the corresponding option.
8226
8227 If the specified expression is not valid, it is kept at its current
8228 value.
8229 @end table
8230
8231 @subsection Examples
8232
8233 @itemize
8234 @item
8235 Draw the overlay at 10 pixels from the bottom right corner of the main
8236 video:
8237 @example
8238 overlay=main_w-overlay_w-10:main_h-overlay_h-10
8239 @end example
8240
8241 Using named options the example above becomes:
8242 @example
8243 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
8244 @end example
8245
8246 @item
8247 Insert a transparent PNG logo in the bottom left corner of the input,
8248 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
8249 @example
8250 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
8251 @end example
8252
8253 @item
8254 Insert 2 different transparent PNG logos (second logo on bottom
8255 right corner) using the @command{ffmpeg} tool:
8256 @example
8257 ffmpeg -i input -i logo1 -i logo2 -filter_complex 'overlay=x=10:y=H-h-10,overlay=x=W-w-10:y=H-h-10' output
8258 @end example
8259
8260 @item
8261 Add a transparent color layer on top of the main video; @code{WxH}
8262 must specify the size of the main input to the overlay filter:
8263 @example
8264 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
8265 @end example
8266
8267 @item
8268 Play an original video and a filtered version (here with the deshake
8269 filter) side by side using the @command{ffplay} tool:
8270 @example
8271 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
8272 @end example
8273
8274 The above command is the same as:
8275 @example
8276 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
8277 @end example
8278
8279 @item
8280 Make a sliding overlay appearing from the left to the right top part of the
8281 screen starting since time 2:
8282 @example
8283 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
8284 @end example
8285
8286 @item
8287 Compose output by putting two input videos side to side:
8288 @example
8289 ffmpeg -i left.avi -i right.avi -filter_complex "
8290 nullsrc=size=200x100 [background];
8291 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
8292 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
8293 [background][left]       overlay=shortest=1       [background+left];
8294 [background+left][right] overlay=shortest=1:x=100 [left+right]
8295 "
8296 @end example
8297
8298 @item
8299 Mask 10-20 seconds of a video by applying the delogo filter to a section
8300 @example
8301 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
8302 -vf '[in]split[split_main][split_delogo];[split_delogo]trim=start=360:end=371,delogo=0:0:640:480[delogoed];[split_main][delogoed]overlay=eof_action=pass[out]'
8303 masked.avi
8304 @end example
8305
8306 @item
8307 Chain several overlays in cascade:
8308 @example
8309 nullsrc=s=200x200 [bg];
8310 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
8311 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
8312 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
8313 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
8314 [in3] null,       [mid2] overlay=100:100 [out0]
8315 @end example
8316
8317 @end itemize
8318
8319 @section owdenoise
8320
8321 Apply Overcomplete Wavelet denoiser.
8322
8323 The filter accepts the following options:
8324
8325 @table @option
8326 @item depth
8327 Set depth.
8328
8329 Larger depth values will denoise lower frequency components more, but
8330 slow down filtering.
8331
8332 Must be an int in the range 8-16, default is @code{8}.
8333
8334 @item luma_strength, ls
8335 Set luma strength.
8336
8337 Must be a double value in the range 0-1000, default is @code{1.0}.
8338
8339 @item chroma_strength, cs
8340 Set chroma strength.
8341
8342 Must be a double value in the range 0-1000, default is @code{1.0}.
8343 @end table
8344
8345 @anchor{pad}
8346 @section pad
8347
8348 Add paddings to the input image, and place the original input at the
8349 provided @var{x}, @var{y} coordinates.
8350
8351 It accepts the following parameters:
8352
8353 @table @option
8354 @item width, w
8355 @item height, h
8356 Specify an expression for the size of the output image with the
8357 paddings added. If the value for @var{width} or @var{height} is 0, the
8358 corresponding input size is used for the output.
8359
8360 The @var{width} expression can reference the value set by the
8361 @var{height} expression, and vice versa.
8362
8363 The default value of @var{width} and @var{height} is 0.
8364
8365 @item x
8366 @item y
8367 Specify the offsets to place the input image at within the padded area,
8368 with respect to the top/left border of the output image.
8369
8370 The @var{x} expression can reference the value set by the @var{y}
8371 expression, and vice versa.
8372
8373 The default value of @var{x} and @var{y} is 0.
8374
8375 @item color
8376 Specify the color of the padded area. For the syntax of this option,
8377 check the "Color" section in the ffmpeg-utils manual.
8378
8379 The default value of @var{color} is "black".
8380 @end table
8381
8382 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
8383 options are expressions containing the following constants:
8384
8385 @table @option
8386 @item in_w
8387 @item in_h
8388 The input video width and height.
8389
8390 @item iw
8391 @item ih
8392 These are the same as @var{in_w} and @var{in_h}.
8393
8394 @item out_w
8395 @item out_h
8396 The output width and height (the size of the padded area), as
8397 specified by the @var{width} and @var{height} expressions.
8398
8399 @item ow
8400 @item oh
8401 These are the same as @var{out_w} and @var{out_h}.
8402
8403 @item x
8404 @item y
8405 The x and y offsets as specified by the @var{x} and @var{y}
8406 expressions, or NAN if not yet specified.
8407
8408 @item a
8409 same as @var{iw} / @var{ih}
8410
8411 @item sar
8412 input sample aspect ratio
8413
8414 @item dar
8415 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8416
8417 @item hsub
8418 @item vsub
8419 The horizontal and vertical chroma subsample values. For example for the
8420 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8421 @end table
8422
8423 @subsection Examples
8424
8425 @itemize
8426 @item
8427 Add paddings with the color "violet" to the input video. The output video
8428 size is 640x480, and the top-left corner of the input video is placed at
8429 column 0, row 40
8430 @example
8431 pad=640:480:0:40:violet
8432 @end example
8433
8434 The example above is equivalent to the following command:
8435 @example
8436 pad=width=640:height=480:x=0:y=40:color=violet
8437 @end example
8438
8439 @item
8440 Pad the input to get an output with dimensions increased by 3/2,
8441 and put the input video at the center of the padded area:
8442 @example
8443 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
8444 @end example
8445
8446 @item
8447 Pad the input to get a squared output with size equal to the maximum
8448 value between the input width and height, and put the input video at
8449 the center of the padded area:
8450 @example
8451 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
8452 @end example
8453
8454 @item
8455 Pad the input to get a final w/h ratio of 16:9:
8456 @example
8457 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
8458 @end example
8459
8460 @item
8461 In case of anamorphic video, in order to set the output display aspect
8462 correctly, it is necessary to use @var{sar} in the expression,
8463 according to the relation:
8464 @example
8465 (ih * X / ih) * sar = output_dar
8466 X = output_dar / sar
8467 @end example
8468
8469 Thus the previous example needs to be modified to:
8470 @example
8471 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
8472 @end example
8473
8474 @item
8475 Double the output size and put the input video in the bottom-right
8476 corner of the output padded area:
8477 @example
8478 pad="2*iw:2*ih:ow-iw:oh-ih"
8479 @end example
8480 @end itemize
8481
8482 @anchor{palettegen}
8483 @section palettegen
8484
8485 Generate one palette for a whole video stream.
8486
8487 It accepts the following options:
8488
8489 @table @option
8490 @item max_colors
8491 Set the maximum number of colors to quantize in the palette.
8492 Note: the palette will still contain 256 colors; the unused palette entries
8493 will be black.
8494
8495 @item reserve_transparent
8496 Create a palette of 255 colors maximum and reserve the last one for
8497 transparency. Reserving the transparency color is useful for GIF optimization.
8498 If not set, the maximum of colors in the palette will be 256. You probably want
8499 to disable this option for a standalone image.
8500 Set by default.
8501
8502 @item stats_mode
8503 Set statistics mode.
8504
8505 It accepts the following values:
8506 @table @samp
8507 @item full
8508 Compute full frame histograms.
8509 @item diff
8510 Compute histograms only for the part that differs from previous frame. This
8511 might be relevant to give more importance to the moving part of your input if
8512 the background is static.
8513 @end table
8514
8515 Default value is @var{full}.
8516 @end table
8517
8518 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8519 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8520 color quantization of the palette. This information is also visible at
8521 @var{info} logging level.
8522
8523 @subsection Examples
8524
8525 @itemize
8526 @item
8527 Generate a representative palette of a given video using @command{ffmpeg}:
8528 @example
8529 ffmpeg -i input.mkv -vf palettegen palette.png
8530 @end example
8531 @end itemize
8532
8533 @section paletteuse
8534
8535 Use a palette to downsample an input video stream.
8536
8537 The filter takes two inputs: one video stream and a palette. The palette must
8538 be a 256 pixels image.
8539
8540 It accepts the following options:
8541
8542 @table @option
8543 @item dither
8544 Select dithering mode. Available algorithms are:
8545 @table @samp
8546 @item bayer
8547 Ordered 8x8 bayer dithering (deterministic)
8548 @item heckbert
8549 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
8550 Note: this dithering is sometimes considered "wrong" and is included as a
8551 reference.
8552 @item floyd_steinberg
8553 Floyd and Steingberg dithering (error diffusion)
8554 @item sierra2
8555 Frankie Sierra dithering v2 (error diffusion)
8556 @item sierra2_4a
8557 Frankie Sierra dithering v2 "Lite" (error diffusion)
8558 @end table
8559
8560 Default is @var{sierra2_4a}.
8561
8562 @item bayer_scale
8563 When @var{bayer} dithering is selected, this option defines the scale of the
8564 pattern (how much the crosshatch pattern is visible). A low value means more
8565 visible pattern for less banding, and higher value means less visible pattern
8566 at the cost of more banding.
8567
8568 The option must be an integer value in the range [0,5]. Default is @var{2}.
8569
8570 @item diff_mode
8571 If set, define the zone to process
8572
8573 @table @samp
8574 @item rectangle
8575 Only the changing rectangle will be reprocessed. This is similar to GIF
8576 cropping/offsetting compression mechanism. This option can be useful for speed
8577 if only a part of the image is changing, and has use cases such as limiting the
8578 scope of the error diffusal @option{dither} to the rectangle that bounds the
8579 moving scene (it leads to more deterministic output if the scene doesn't change
8580 much, and as a result less moving noise and better GIF compression).
8581 @end table
8582
8583 Default is @var{none}.
8584 @end table
8585
8586 @subsection Examples
8587
8588 @itemize
8589 @item
8590 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
8591 using @command{ffmpeg}:
8592 @example
8593 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
8594 @end example
8595 @end itemize
8596
8597 @section perspective
8598
8599 Correct perspective of video not recorded perpendicular to the screen.
8600
8601 A description of the accepted parameters follows.
8602
8603 @table @option
8604 @item x0
8605 @item y0
8606 @item x1
8607 @item y1
8608 @item x2
8609 @item y2
8610 @item x3
8611 @item y3
8612 Set coordinates expression for top left, top right, bottom left and bottom right corners.
8613 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
8614 If the @code{sense} option is set to @code{source}, then the specified points will be sent
8615 to the corners of the destination. If the @code{sense} option is set to @code{destination},
8616 then the corners of the source will be sent to the specified coordinates.
8617
8618 The expressions can use the following variables:
8619
8620 @table @option
8621 @item W
8622 @item H
8623 the width and height of video frame.
8624 @end table
8625
8626 @item interpolation
8627 Set interpolation for perspective correction.
8628
8629 It accepts the following values:
8630 @table @samp
8631 @item linear
8632 @item cubic
8633 @end table
8634
8635 Default value is @samp{linear}.
8636
8637 @item sense
8638 Set interpretation of coordinate options.
8639
8640 It accepts the following values:
8641 @table @samp
8642 @item 0, source
8643
8644 Send point in the source specified by the given coordinates to
8645 the corners of the destination.
8646
8647 @item 1, destination
8648
8649 Send the corners of the source to the point in the destination specified
8650 by the given coordinates.
8651
8652 Default value is @samp{source}.
8653 @end table
8654 @end table
8655
8656 @section phase
8657
8658 Delay interlaced video by one field time so that the field order changes.
8659
8660 The intended use is to fix PAL movies that have been captured with the
8661 opposite field order to the film-to-video transfer.
8662
8663 A description of the accepted parameters follows.
8664
8665 @table @option
8666 @item mode
8667 Set phase mode.
8668
8669 It accepts the following values:
8670 @table @samp
8671 @item t
8672 Capture field order top-first, transfer bottom-first.
8673 Filter will delay the bottom field.
8674
8675 @item b
8676 Capture field order bottom-first, transfer top-first.
8677 Filter will delay the top field.
8678
8679 @item p
8680 Capture and transfer with the same field order. This mode only exists
8681 for the documentation of the other options to refer to, but if you
8682 actually select it, the filter will faithfully do nothing.
8683
8684 @item a
8685 Capture field order determined automatically by field flags, transfer
8686 opposite.
8687 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
8688 basis using field flags. If no field information is available,
8689 then this works just like @samp{u}.
8690
8691 @item u
8692 Capture unknown or varying, transfer opposite.
8693 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
8694 analyzing the images and selecting the alternative that produces best
8695 match between the fields.
8696
8697 @item T
8698 Capture top-first, transfer unknown or varying.
8699 Filter selects among @samp{t} and @samp{p} using image analysis.
8700
8701 @item B
8702 Capture bottom-first, transfer unknown or varying.
8703 Filter selects among @samp{b} and @samp{p} using image analysis.
8704
8705 @item A
8706 Capture determined by field flags, transfer unknown or varying.
8707 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
8708 image analysis. If no field information is available, then this works just
8709 like @samp{U}. This is the default mode.
8710
8711 @item U
8712 Both capture and transfer unknown or varying.
8713 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
8714 @end table
8715 @end table
8716
8717 @section pixdesctest
8718
8719 Pixel format descriptor test filter, mainly useful for internal
8720 testing. The output video should be equal to the input video.
8721
8722 For example:
8723 @example
8724 format=monow, pixdesctest
8725 @end example
8726
8727 can be used to test the monowhite pixel format descriptor definition.
8728
8729 @section pp
8730
8731 Enable the specified chain of postprocessing subfilters using libpostproc. This
8732 library should be automatically selected with a GPL build (@code{--enable-gpl}).
8733 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
8734 Each subfilter and some options have a short and a long name that can be used
8735 interchangeably, i.e. dr/dering are the same.
8736
8737 The filters accept the following options:
8738
8739 @table @option
8740 @item subfilters
8741 Set postprocessing subfilters string.
8742 @end table
8743
8744 All subfilters share common options to determine their scope:
8745
8746 @table @option
8747 @item a/autoq
8748 Honor the quality commands for this subfilter.
8749
8750 @item c/chrom
8751 Do chrominance filtering, too (default).
8752
8753 @item y/nochrom
8754 Do luminance filtering only (no chrominance).
8755
8756 @item n/noluma
8757 Do chrominance filtering only (no luminance).
8758 @end table
8759
8760 These options can be appended after the subfilter name, separated by a '|'.
8761
8762 Available subfilters are:
8763
8764 @table @option
8765 @item hb/hdeblock[|difference[|flatness]]
8766 Horizontal deblocking filter
8767 @table @option
8768 @item difference
8769 Difference factor where higher values mean more deblocking (default: @code{32}).
8770 @item flatness
8771 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8772 @end table
8773
8774 @item vb/vdeblock[|difference[|flatness]]
8775 Vertical deblocking filter
8776 @table @option
8777 @item difference
8778 Difference factor where higher values mean more deblocking (default: @code{32}).
8779 @item flatness
8780 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8781 @end table
8782
8783 @item ha/hadeblock[|difference[|flatness]]
8784 Accurate horizontal deblocking filter
8785 @table @option
8786 @item difference
8787 Difference factor where higher values mean more deblocking (default: @code{32}).
8788 @item flatness
8789 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8790 @end table
8791
8792 @item va/vadeblock[|difference[|flatness]]
8793 Accurate vertical deblocking filter
8794 @table @option
8795 @item difference
8796 Difference factor where higher values mean more deblocking (default: @code{32}).
8797 @item flatness
8798 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8799 @end table
8800 @end table
8801
8802 The horizontal and vertical deblocking filters share the difference and
8803 flatness values so you cannot set different horizontal and vertical
8804 thresholds.
8805
8806 @table @option
8807 @item h1/x1hdeblock
8808 Experimental horizontal deblocking filter
8809
8810 @item v1/x1vdeblock
8811 Experimental vertical deblocking filter
8812
8813 @item dr/dering
8814 Deringing filter
8815
8816 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
8817 @table @option
8818 @item threshold1
8819 larger -> stronger filtering
8820 @item threshold2
8821 larger -> stronger filtering
8822 @item threshold3
8823 larger -> stronger filtering
8824 @end table
8825
8826 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
8827 @table @option
8828 @item f/fullyrange
8829 Stretch luminance to @code{0-255}.
8830 @end table
8831
8832 @item lb/linblenddeint
8833 Linear blend deinterlacing filter that deinterlaces the given block by
8834 filtering all lines with a @code{(1 2 1)} filter.
8835
8836 @item li/linipoldeint
8837 Linear interpolating deinterlacing filter that deinterlaces the given block by
8838 linearly interpolating every second line.
8839
8840 @item ci/cubicipoldeint
8841 Cubic interpolating deinterlacing filter deinterlaces the given block by
8842 cubically interpolating every second line.
8843
8844 @item md/mediandeint
8845 Median deinterlacing filter that deinterlaces the given block by applying a
8846 median filter to every second line.
8847
8848 @item fd/ffmpegdeint
8849 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
8850 second line with a @code{(-1 4 2 4 -1)} filter.
8851
8852 @item l5/lowpass5
8853 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
8854 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
8855
8856 @item fq/forceQuant[|quantizer]
8857 Overrides the quantizer table from the input with the constant quantizer you
8858 specify.
8859 @table @option
8860 @item quantizer
8861 Quantizer to use
8862 @end table
8863
8864 @item de/default
8865 Default pp filter combination (@code{hb|a,vb|a,dr|a})
8866
8867 @item fa/fast
8868 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
8869
8870 @item ac
8871 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
8872 @end table
8873
8874 @subsection Examples
8875
8876 @itemize
8877 @item
8878 Apply horizontal and vertical deblocking, deringing and automatic
8879 brightness/contrast:
8880 @example
8881 pp=hb/vb/dr/al
8882 @end example
8883
8884 @item
8885 Apply default filters without brightness/contrast correction:
8886 @example
8887 pp=de/-al
8888 @end example
8889
8890 @item
8891 Apply default filters and temporal denoiser:
8892 @example
8893 pp=default/tmpnoise|1|2|3
8894 @end example
8895
8896 @item
8897 Apply deblocking on luminance only, and switch vertical deblocking on or off
8898 automatically depending on available CPU time:
8899 @example
8900 pp=hb|y/vb|a
8901 @end example
8902 @end itemize
8903
8904 @section pp7
8905 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
8906 similar to spp = 6 with 7 point DCT, where only the center sample is
8907 used after IDCT.
8908
8909 The filter accepts the following options:
8910
8911 @table @option
8912 @item qp
8913 Force a constant quantization parameter. It accepts an integer in range
8914 0 to 63. If not set, the filter will use the QP from the video stream
8915 (if available).
8916
8917 @item mode
8918 Set thresholding mode. Available modes are:
8919
8920 @table @samp
8921 @item hard
8922 Set hard thresholding.
8923 @item soft
8924 Set soft thresholding (better de-ringing effect, but likely blurrier).
8925 @item medium
8926 Set medium thresholding (good results, default).
8927 @end table
8928 @end table
8929
8930 @section psnr
8931
8932 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
8933 Ratio) between two input videos.
8934
8935 This filter takes in input two input videos, the first input is
8936 considered the "main" source and is passed unchanged to the
8937 output. The second input is used as a "reference" video for computing
8938 the PSNR.
8939
8940 Both video inputs must have the same resolution and pixel format for
8941 this filter to work correctly. Also it assumes that both inputs
8942 have the same number of frames, which are compared one by one.
8943
8944 The obtained average PSNR is printed through the logging system.
8945
8946 The filter stores the accumulated MSE (mean squared error) of each
8947 frame, and at the end of the processing it is averaged across all frames
8948 equally, and the following formula is applied to obtain the PSNR:
8949
8950 @example
8951 PSNR = 10*log10(MAX^2/MSE)
8952 @end example
8953
8954 Where MAX is the average of the maximum values of each component of the
8955 image.
8956
8957 The description of the accepted parameters follows.
8958
8959 @table @option
8960 @item stats_file, f
8961 If specified the filter will use the named file to save the PSNR of
8962 each individual frame. When filename equals "-" the data is sent to
8963 standard output.
8964 @end table
8965
8966 The file printed if @var{stats_file} is selected, contains a sequence of
8967 key/value pairs of the form @var{key}:@var{value} for each compared
8968 couple of frames.
8969
8970 A description of each shown parameter follows:
8971
8972 @table @option
8973 @item n
8974 sequential number of the input frame, starting from 1
8975
8976 @item mse_avg
8977 Mean Square Error pixel-by-pixel average difference of the compared
8978 frames, averaged over all the image components.
8979
8980 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
8981 Mean Square Error pixel-by-pixel average difference of the compared
8982 frames for the component specified by the suffix.
8983
8984 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
8985 Peak Signal to Noise ratio of the compared frames for the component
8986 specified by the suffix.
8987 @end table
8988
8989 For example:
8990 @example
8991 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
8992 [main][ref] psnr="stats_file=stats.log" [out]
8993 @end example
8994
8995 On this example the input file being processed is compared with the
8996 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
8997 is stored in @file{stats.log}.
8998
8999 @anchor{pullup}
9000 @section pullup
9001
9002 Pulldown reversal (inverse telecine) filter, capable of handling mixed
9003 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
9004 content.
9005
9006 The pullup filter is designed to take advantage of future context in making
9007 its decisions. This filter is stateless in the sense that it does not lock
9008 onto a pattern to follow, but it instead looks forward to the following
9009 fields in order to identify matches and rebuild progressive frames.
9010
9011 To produce content with an even framerate, insert the fps filter after
9012 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
9013 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
9014
9015 The filter accepts the following options:
9016
9017 @table @option
9018 @item jl
9019 @item jr
9020 @item jt
9021 @item jb
9022 These options set the amount of "junk" to ignore at the left, right, top, and
9023 bottom of the image, respectively. Left and right are in units of 8 pixels,
9024 while top and bottom are in units of 2 lines.
9025 The default is 8 pixels on each side.
9026
9027 @item sb
9028 Set the strict breaks. Setting this option to 1 will reduce the chances of
9029 filter generating an occasional mismatched frame, but it may also cause an
9030 excessive number of frames to be dropped during high motion sequences.
9031 Conversely, setting it to -1 will make filter match fields more easily.
9032 This may help processing of video where there is slight blurring between
9033 the fields, but may also cause there to be interlaced frames in the output.
9034 Default value is @code{0}.
9035
9036 @item mp
9037 Set the metric plane to use. It accepts the following values:
9038 @table @samp
9039 @item l
9040 Use luma plane.
9041
9042 @item u
9043 Use chroma blue plane.
9044
9045 @item v
9046 Use chroma red plane.
9047 @end table
9048
9049 This option may be set to use chroma plane instead of the default luma plane
9050 for doing filter's computations. This may improve accuracy on very clean
9051 source material, but more likely will decrease accuracy, especially if there
9052 is chroma noise (rainbow effect) or any grayscale video.
9053 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
9054 load and make pullup usable in realtime on slow machines.
9055 @end table
9056
9057 For best results (without duplicated frames in the output file) it is
9058 necessary to change the output frame rate. For example, to inverse
9059 telecine NTSC input:
9060 @example
9061 ffmpeg -i input -vf pullup -r 24000/1001 ...
9062 @end example
9063
9064 @section qp
9065
9066 Change video quantization parameters (QP).
9067
9068 The filter accepts the following option:
9069
9070 @table @option
9071 @item qp
9072 Set expression for quantization parameter.
9073 @end table
9074
9075 The expression is evaluated through the eval API and can contain, among others,
9076 the following constants:
9077
9078 @table @var
9079 @item known
9080 1 if index is not 129, 0 otherwise.
9081
9082 @item qp
9083 Sequentional index starting from -129 to 128.
9084 @end table
9085
9086 @subsection Examples
9087
9088 @itemize
9089 @item
9090 Some equation like:
9091 @example
9092 qp=2+2*sin(PI*qp)
9093 @end example
9094 @end itemize
9095
9096 @section random
9097
9098 Flush video frames from internal cache of frames into a random order.
9099 No frame is discarded.
9100 Inspired by @ref{frei0r} nervous filter.
9101
9102 @table @option
9103 @item frames
9104 Set size in number of frames of internal cache, in range from @code{2} to
9105 @code{512}. Default is @code{30}.
9106
9107 @item seed
9108 Set seed for random number generator, must be an integer included between
9109 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9110 less than @code{0}, the filter will try to use a good random seed on a
9111 best effort basis.
9112 @end table
9113
9114 @section removegrain
9115
9116 The removegrain filter is a spatial denoiser for progressive video.
9117
9118 @table @option
9119 @item m0
9120 Set mode for the first plane.
9121
9122 @item m1
9123 Set mode for the second plane.
9124
9125 @item m2
9126 Set mode for the third plane.
9127
9128 @item m3
9129 Set mode for the fourth plane.
9130 @end table
9131
9132 Range of mode is from 0 to 24. Description of each mode follows:
9133
9134 @table @var
9135 @item 0
9136 Leave input plane unchanged. Default.
9137
9138 @item 1
9139 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
9140
9141 @item 2
9142 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
9143
9144 @item 3
9145 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
9146
9147 @item 4
9148 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
9149 This is equivalent to a median filter.
9150
9151 @item 5
9152 Line-sensitive clipping giving the minimal change.
9153
9154 @item 6
9155 Line-sensitive clipping, intermediate.
9156
9157 @item 7
9158 Line-sensitive clipping, intermediate.
9159
9160 @item 8
9161 Line-sensitive clipping, intermediate.
9162
9163 @item 9
9164 Line-sensitive clipping on a line where the neighbours pixels are the closest.
9165
9166 @item 10
9167 Replaces the target pixel with the closest neighbour.
9168
9169 @item 11
9170 [1 2 1] horizontal and vertical kernel blur.
9171
9172 @item 12
9173 Same as mode 11.
9174
9175 @item 13
9176 Bob mode, interpolates top field from the line where the neighbours
9177 pixels are the closest.
9178
9179 @item 14
9180 Bob mode, interpolates bottom field from the line where the neighbours
9181 pixels are the closest.
9182
9183 @item 15
9184 Bob mode, interpolates top field. Same as 13 but with a more complicated
9185 interpolation formula.
9186
9187 @item 16
9188 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
9189 interpolation formula.
9190
9191 @item 17
9192 Clips the pixel with the minimum and maximum of respectively the maximum and
9193 minimum of each pair of opposite neighbour pixels.
9194
9195 @item 18
9196 Line-sensitive clipping using opposite neighbours whose greatest distance from
9197 the current pixel is minimal.
9198
9199 @item 19
9200 Replaces the pixel with the average of its 8 neighbours.
9201
9202 @item 20
9203 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
9204
9205 @item 21
9206 Clips pixels using the averages of opposite neighbour.
9207
9208 @item 22
9209 Same as mode 21 but simpler and faster.
9210
9211 @item 23
9212 Small edge and halo removal, but reputed useless.
9213
9214 @item 24
9215 Similar as 23.
9216 @end table
9217
9218 @section removelogo
9219
9220 Suppress a TV station logo, using an image file to determine which
9221 pixels comprise the logo. It works by filling in the pixels that
9222 comprise the logo with neighboring pixels.
9223
9224 The filter accepts the following options:
9225
9226 @table @option
9227 @item filename, f
9228 Set the filter bitmap file, which can be any image format supported by
9229 libavformat. The width and height of the image file must match those of the
9230 video stream being processed.
9231 @end table
9232
9233 Pixels in the provided bitmap image with a value of zero are not
9234 considered part of the logo, non-zero pixels are considered part of
9235 the logo. If you use white (255) for the logo and black (0) for the
9236 rest, you will be safe. For making the filter bitmap, it is
9237 recommended to take a screen capture of a black frame with the logo
9238 visible, and then using a threshold filter followed by the erode
9239 filter once or twice.
9240
9241 If needed, little splotches can be fixed manually. Remember that if
9242 logo pixels are not covered, the filter quality will be much
9243 reduced. Marking too many pixels as part of the logo does not hurt as
9244 much, but it will increase the amount of blurring needed to cover over
9245 the image and will destroy more information than necessary, and extra
9246 pixels will slow things down on a large logo.
9247
9248 @section repeatfields
9249
9250 This filter uses the repeat_field flag from the Video ES headers and hard repeats
9251 fields based on its value.
9252
9253 @section reverse, areverse
9254
9255 Reverse a clip.
9256
9257 Warning: This filter requires memory to buffer the entire clip, so trimming
9258 is suggested.
9259
9260 @subsection Examples
9261
9262 @itemize
9263 @item
9264 Take the first 5 seconds of a clip, and reverse it.
9265 @example
9266 trim=end=5,reverse
9267 @end example
9268 @end itemize
9269
9270 @section rotate
9271
9272 Rotate video by an arbitrary angle expressed in radians.
9273
9274 The filter accepts the following options:
9275
9276 A description of the optional parameters follows.
9277 @table @option
9278 @item angle, a
9279 Set an expression for the angle by which to rotate the input video
9280 clockwise, expressed as a number of radians. A negative value will
9281 result in a counter-clockwise rotation. By default it is set to "0".
9282
9283 This expression is evaluated for each frame.
9284
9285 @item out_w, ow
9286 Set the output width expression, default value is "iw".
9287 This expression is evaluated just once during configuration.
9288
9289 @item out_h, oh
9290 Set the output height expression, default value is "ih".
9291 This expression is evaluated just once during configuration.
9292
9293 @item bilinear
9294 Enable bilinear interpolation if set to 1, a value of 0 disables
9295 it. Default value is 1.
9296
9297 @item fillcolor, c
9298 Set the color used to fill the output area not covered by the rotated
9299 image. For the general syntax of this option, check the "Color" section in the
9300 ffmpeg-utils manual. If the special value "none" is selected then no
9301 background is printed (useful for example if the background is never shown).
9302
9303 Default value is "black".
9304 @end table
9305
9306 The expressions for the angle and the output size can contain the
9307 following constants and functions:
9308
9309 @table @option
9310 @item n
9311 sequential number of the input frame, starting from 0. It is always NAN
9312 before the first frame is filtered.
9313
9314 @item t
9315 time in seconds of the input frame, it is set to 0 when the filter is
9316 configured. It is always NAN before the first frame is filtered.
9317
9318 @item hsub
9319 @item vsub
9320 horizontal and vertical chroma subsample values. For example for the
9321 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9322
9323 @item in_w, iw
9324 @item in_h, ih
9325 the input video width and height
9326
9327 @item out_w, ow
9328 @item out_h, oh
9329 the output width and height, that is the size of the padded area as
9330 specified by the @var{width} and @var{height} expressions
9331
9332 @item rotw(a)
9333 @item roth(a)
9334 the minimal width/height required for completely containing the input
9335 video rotated by @var{a} radians.
9336
9337 These are only available when computing the @option{out_w} and
9338 @option{out_h} expressions.
9339 @end table
9340
9341 @subsection Examples
9342
9343 @itemize
9344 @item
9345 Rotate the input by PI/6 radians clockwise:
9346 @example
9347 rotate=PI/6
9348 @end example
9349
9350 @item
9351 Rotate the input by PI/6 radians counter-clockwise:
9352 @example
9353 rotate=-PI/6
9354 @end example
9355
9356 @item
9357 Rotate the input by 45 degrees clockwise:
9358 @example
9359 rotate=45*PI/180
9360 @end example
9361
9362 @item
9363 Apply a constant rotation with period T, starting from an angle of PI/3:
9364 @example
9365 rotate=PI/3+2*PI*t/T
9366 @end example
9367
9368 @item
9369 Make the input video rotation oscillating with a period of T
9370 seconds and an amplitude of A radians:
9371 @example
9372 rotate=A*sin(2*PI/T*t)
9373 @end example
9374
9375 @item
9376 Rotate the video, output size is chosen so that the whole rotating
9377 input video is always completely contained in the output:
9378 @example
9379 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
9380 @end example
9381
9382 @item
9383 Rotate the video, reduce the output size so that no background is ever
9384 shown:
9385 @example
9386 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
9387 @end example
9388 @end itemize
9389
9390 @subsection Commands
9391
9392 The filter supports the following commands:
9393
9394 @table @option
9395 @item a, angle
9396 Set the angle expression.
9397 The command accepts the same syntax of the corresponding option.
9398
9399 If the specified expression is not valid, it is kept at its current
9400 value.
9401 @end table
9402
9403 @section sab
9404
9405 Apply Shape Adaptive Blur.
9406
9407 The filter accepts the following options:
9408
9409 @table @option
9410 @item luma_radius, lr
9411 Set luma blur filter strength, must be a value in range 0.1-4.0, default
9412 value is 1.0. A greater value will result in a more blurred image, and
9413 in slower processing.
9414
9415 @item luma_pre_filter_radius, lpfr
9416 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
9417 value is 1.0.
9418
9419 @item luma_strength, ls
9420 Set luma maximum difference between pixels to still be considered, must
9421 be a value in the 0.1-100.0 range, default value is 1.0.
9422
9423 @item chroma_radius, cr
9424 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
9425 greater value will result in a more blurred image, and in slower
9426 processing.
9427
9428 @item chroma_pre_filter_radius, cpfr
9429 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
9430
9431 @item chroma_strength, cs
9432 Set chroma maximum difference between pixels to still be considered,
9433 must be a value in the 0.1-100.0 range.
9434 @end table
9435
9436 Each chroma option value, if not explicitly specified, is set to the
9437 corresponding luma option value.
9438
9439 @anchor{scale}
9440 @section scale
9441
9442 Scale (resize) the input video, using the libswscale library.
9443
9444 The scale filter forces the output display aspect ratio to be the same
9445 of the input, by changing the output sample aspect ratio.
9446
9447 If the input image format is different from the format requested by
9448 the next filter, the scale filter will convert the input to the
9449 requested format.
9450
9451 @subsection Options
9452 The filter accepts the following options, or any of the options
9453 supported by the libswscale scaler.
9454
9455 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
9456 the complete list of scaler options.
9457
9458 @table @option
9459 @item width, w
9460 @item height, h
9461 Set the output video dimension expression. Default value is the input
9462 dimension.
9463
9464 If the value is 0, the input width is used for the output.
9465
9466 If one of the values is -1, the scale filter will use a value that
9467 maintains the aspect ratio of the input image, calculated from the
9468 other specified dimension. If both of them are -1, the input size is
9469 used
9470
9471 If one of the values is -n with n > 1, the scale filter will also use a value
9472 that maintains the aspect ratio of the input image, calculated from the other
9473 specified dimension. After that it will, however, make sure that the calculated
9474 dimension is divisible by n and adjust the value if necessary.
9475
9476 See below for the list of accepted constants for use in the dimension
9477 expression.
9478
9479 @item interl
9480 Set the interlacing mode. It accepts the following values:
9481
9482 @table @samp
9483 @item 1
9484 Force interlaced aware scaling.
9485
9486 @item 0
9487 Do not apply interlaced scaling.
9488
9489 @item -1
9490 Select interlaced aware scaling depending on whether the source frames
9491 are flagged as interlaced or not.
9492 @end table
9493
9494 Default value is @samp{0}.
9495
9496 @item flags
9497 Set libswscale scaling flags. See
9498 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9499 complete list of values. If not explicitly specified the filter applies
9500 the default flags.
9501
9502 @item size, s
9503 Set the video size. For the syntax of this option, check the
9504 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9505
9506 @item in_color_matrix
9507 @item out_color_matrix
9508 Set in/output YCbCr color space type.
9509
9510 This allows the autodetected value to be overridden as well as allows forcing
9511 a specific value used for the output and encoder.
9512
9513 If not specified, the color space type depends on the pixel format.
9514
9515 Possible values:
9516
9517 @table @samp
9518 @item auto
9519 Choose automatically.
9520
9521 @item bt709
9522 Format conforming to International Telecommunication Union (ITU)
9523 Recommendation BT.709.
9524
9525 @item fcc
9526 Set color space conforming to the United States Federal Communications
9527 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
9528
9529 @item bt601
9530 Set color space conforming to:
9531
9532 @itemize
9533 @item
9534 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
9535
9536 @item
9537 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
9538
9539 @item
9540 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
9541
9542 @end itemize
9543
9544 @item smpte240m
9545 Set color space conforming to SMPTE ST 240:1999.
9546 @end table
9547
9548 @item in_range
9549 @item out_range
9550 Set in/output YCbCr sample range.
9551
9552 This allows the autodetected value to be overridden as well as allows forcing
9553 a specific value used for the output and encoder. If not specified, the
9554 range depends on the pixel format. Possible values:
9555
9556 @table @samp
9557 @item auto
9558 Choose automatically.
9559
9560 @item jpeg/full/pc
9561 Set full range (0-255 in case of 8-bit luma).
9562
9563 @item mpeg/tv
9564 Set "MPEG" range (16-235 in case of 8-bit luma).
9565 @end table
9566
9567 @item force_original_aspect_ratio
9568 Enable decreasing or increasing output video width or height if necessary to
9569 keep the original aspect ratio. Possible values:
9570
9571 @table @samp
9572 @item disable
9573 Scale the video as specified and disable this feature.
9574
9575 @item decrease
9576 The output video dimensions will automatically be decreased if needed.
9577
9578 @item increase
9579 The output video dimensions will automatically be increased if needed.
9580
9581 @end table
9582
9583 One useful instance of this option is that when you know a specific device's
9584 maximum allowed resolution, you can use this to limit the output video to
9585 that, while retaining the aspect ratio. For example, device A allows
9586 1280x720 playback, and your video is 1920x800. Using this option (set it to
9587 decrease) and specifying 1280x720 to the command line makes the output
9588 1280x533.
9589
9590 Please note that this is a different thing than specifying -1 for @option{w}
9591 or @option{h}, you still need to specify the output resolution for this option
9592 to work.
9593
9594 @end table
9595
9596 The values of the @option{w} and @option{h} options are expressions
9597 containing the following constants:
9598
9599 @table @var
9600 @item in_w
9601 @item in_h
9602 The input width and height
9603
9604 @item iw
9605 @item ih
9606 These are the same as @var{in_w} and @var{in_h}.
9607
9608 @item out_w
9609 @item out_h
9610 The output (scaled) width and height
9611
9612 @item ow
9613 @item oh
9614 These are the same as @var{out_w} and @var{out_h}
9615
9616 @item a
9617 The same as @var{iw} / @var{ih}
9618
9619 @item sar
9620 input sample aspect ratio
9621
9622 @item dar
9623 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
9624
9625 @item hsub
9626 @item vsub
9627 horizontal and vertical input chroma subsample values. For example for the
9628 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9629
9630 @item ohsub
9631 @item ovsub
9632 horizontal and vertical output chroma subsample values. For example for the
9633 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9634 @end table
9635
9636 @subsection Examples
9637
9638 @itemize
9639 @item
9640 Scale the input video to a size of 200x100
9641 @example
9642 scale=w=200:h=100
9643 @end example
9644
9645 This is equivalent to:
9646 @example
9647 scale=200:100
9648 @end example
9649
9650 or:
9651 @example
9652 scale=200x100
9653 @end example
9654
9655 @item
9656 Specify a size abbreviation for the output size:
9657 @example
9658 scale=qcif
9659 @end example
9660
9661 which can also be written as:
9662 @example
9663 scale=size=qcif
9664 @end example
9665
9666 @item
9667 Scale the input to 2x:
9668 @example
9669 scale=w=2*iw:h=2*ih
9670 @end example
9671
9672 @item
9673 The above is the same as:
9674 @example
9675 scale=2*in_w:2*in_h
9676 @end example
9677
9678 @item
9679 Scale the input to 2x with forced interlaced scaling:
9680 @example
9681 scale=2*iw:2*ih:interl=1
9682 @end example
9683
9684 @item
9685 Scale the input to half size:
9686 @example
9687 scale=w=iw/2:h=ih/2
9688 @end example
9689
9690 @item
9691 Increase the width, and set the height to the same size:
9692 @example
9693 scale=3/2*iw:ow
9694 @end example
9695
9696 @item
9697 Seek Greek harmony:
9698 @example
9699 scale=iw:1/PHI*iw
9700 scale=ih*PHI:ih
9701 @end example
9702
9703 @item
9704 Increase the height, and set the width to 3/2 of the height:
9705 @example
9706 scale=w=3/2*oh:h=3/5*ih
9707 @end example
9708
9709 @item
9710 Increase the size, making the size a multiple of the chroma
9711 subsample values:
9712 @example
9713 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
9714 @end example
9715
9716 @item
9717 Increase the width to a maximum of 500 pixels,
9718 keeping the same aspect ratio as the input:
9719 @example
9720 scale=w='min(500\, iw*3/2):h=-1'
9721 @end example
9722 @end itemize
9723
9724 @subsection Commands
9725
9726 This filter supports the following commands:
9727 @table @option
9728 @item width, w
9729 @item height, h
9730 Set the output video dimension expression.
9731 The command accepts the same syntax of the corresponding option.
9732
9733 If the specified expression is not valid, it is kept at its current
9734 value.
9735 @end table
9736
9737 @section scale2ref
9738
9739 Scale (resize) the input video, based on a reference video.
9740
9741 See the scale filter for available options, scale2ref supports the same but
9742 uses the reference video instead of the main input as basis.
9743
9744 @subsection Examples
9745
9746 @itemize
9747 @item
9748 Scale a subtitle stream to match the main video in size before overlaying
9749 @example
9750 'scale2ref[b][a];[a][b]overlay'
9751 @end example
9752 @end itemize
9753
9754 @section separatefields
9755
9756 The @code{separatefields} takes a frame-based video input and splits
9757 each frame into its components fields, producing a new half height clip
9758 with twice the frame rate and twice the frame count.
9759
9760 This filter use field-dominance information in frame to decide which
9761 of each pair of fields to place first in the output.
9762 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
9763
9764 @section setdar, setsar
9765
9766 The @code{setdar} filter sets the Display Aspect Ratio for the filter
9767 output video.
9768
9769 This is done by changing the specified Sample (aka Pixel) Aspect
9770 Ratio, according to the following equation:
9771 @example
9772 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
9773 @end example
9774
9775 Keep in mind that the @code{setdar} filter does not modify the pixel
9776 dimensions of the video frame. Also, the display aspect ratio set by
9777 this filter may be changed by later filters in the filterchain,
9778 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
9779 applied.
9780
9781 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
9782 the filter output video.
9783
9784 Note that as a consequence of the application of this filter, the
9785 output display aspect ratio will change according to the equation
9786 above.
9787
9788 Keep in mind that the sample aspect ratio set by the @code{setsar}
9789 filter may be changed by later filters in the filterchain, e.g. if
9790 another "setsar" or a "setdar" filter is applied.
9791
9792 It accepts the following parameters:
9793
9794 @table @option
9795 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
9796 Set the aspect ratio used by the filter.
9797
9798 The parameter can be a floating point number string, an expression, or
9799 a string of the form @var{num}:@var{den}, where @var{num} and
9800 @var{den} are the numerator and denominator of the aspect ratio. If
9801 the parameter is not specified, it is assumed the value "0".
9802 In case the form "@var{num}:@var{den}" is used, the @code{:} character
9803 should be escaped.
9804
9805 @item max
9806 Set the maximum integer value to use for expressing numerator and
9807 denominator when reducing the expressed aspect ratio to a rational.
9808 Default value is @code{100}.
9809
9810 @end table
9811
9812 The parameter @var{sar} is an expression containing
9813 the following constants:
9814
9815 @table @option
9816 @item E, PI, PHI
9817 These are approximated values for the mathematical constants e
9818 (Euler's number), pi (Greek pi), and phi (the golden ratio).
9819
9820 @item w, h
9821 The input width and height.
9822
9823 @item a
9824 These are the same as @var{w} / @var{h}.
9825
9826 @item sar
9827 The input sample aspect ratio.
9828
9829 @item dar
9830 The input display aspect ratio. It is the same as
9831 (@var{w} / @var{h}) * @var{sar}.
9832
9833 @item hsub, vsub
9834 Horizontal and vertical chroma subsample values. For example, for the
9835 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9836 @end table
9837
9838 @subsection Examples
9839
9840 @itemize
9841
9842 @item
9843 To change the display aspect ratio to 16:9, specify one of the following:
9844 @example
9845 setdar=dar=1.77777
9846 setdar=dar=16/9
9847 setdar=dar=1.77777
9848 @end example
9849
9850 @item
9851 To change the sample aspect ratio to 10:11, specify:
9852 @example
9853 setsar=sar=10/11
9854 @end example
9855
9856 @item
9857 To set a display aspect ratio of 16:9, and specify a maximum integer value of
9858 1000 in the aspect ratio reduction, use the command:
9859 @example
9860 setdar=ratio=16/9:max=1000
9861 @end example
9862
9863 @end itemize
9864
9865 @anchor{setfield}
9866 @section setfield
9867
9868 Force field for the output video frame.
9869
9870 The @code{setfield} filter marks the interlace type field for the
9871 output frames. It does not change the input frame, but only sets the
9872 corresponding property, which affects how the frame is treated by
9873 following filters (e.g. @code{fieldorder} or @code{yadif}).
9874
9875 The filter accepts the following options:
9876
9877 @table @option
9878
9879 @item mode
9880 Available values are:
9881
9882 @table @samp
9883 @item auto
9884 Keep the same field property.
9885
9886 @item bff
9887 Mark the frame as bottom-field-first.
9888
9889 @item tff
9890 Mark the frame as top-field-first.
9891
9892 @item prog
9893 Mark the frame as progressive.
9894 @end table
9895 @end table
9896
9897 @section showinfo
9898
9899 Show a line containing various information for each input video frame.
9900 The input video is not modified.
9901
9902 The shown line contains a sequence of key/value pairs of the form
9903 @var{key}:@var{value}.
9904
9905 The following values are shown in the output:
9906
9907 @table @option
9908 @item n
9909 The (sequential) number of the input frame, starting from 0.
9910
9911 @item pts
9912 The Presentation TimeStamp of the input frame, expressed as a number of
9913 time base units. The time base unit depends on the filter input pad.
9914
9915 @item pts_time
9916 The Presentation TimeStamp of the input frame, expressed as a number of
9917 seconds.
9918
9919 @item pos
9920 The position of the frame in the input stream, or -1 if this information is
9921 unavailable and/or meaningless (for example in case of synthetic video).
9922
9923 @item fmt
9924 The pixel format name.
9925
9926 @item sar
9927 The sample aspect ratio of the input frame, expressed in the form
9928 @var{num}/@var{den}.
9929
9930 @item s
9931 The size of the input frame. For the syntax of this option, check the
9932 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9933
9934 @item i
9935 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
9936 for bottom field first).
9937
9938 @item iskey
9939 This is 1 if the frame is a key frame, 0 otherwise.
9940
9941 @item type
9942 The picture type of the input frame ("I" for an I-frame, "P" for a
9943 P-frame, "B" for a B-frame, or "?" for an unknown type).
9944 Also refer to the documentation of the @code{AVPictureType} enum and of
9945 the @code{av_get_picture_type_char} function defined in
9946 @file{libavutil/avutil.h}.
9947
9948 @item checksum
9949 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
9950
9951 @item plane_checksum
9952 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
9953 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
9954 @end table
9955
9956 @section showpalette
9957
9958 Displays the 256 colors palette of each frame. This filter is only relevant for
9959 @var{pal8} pixel format frames.
9960
9961 It accepts the following option:
9962
9963 @table @option
9964 @item s
9965 Set the size of the box used to represent one palette color entry. Default is
9966 @code{30} (for a @code{30x30} pixel box).
9967 @end table
9968
9969 @section shuffleframes
9970
9971 Reorder and/or duplicate video frames.
9972
9973 It accepts the following parameters:
9974
9975 @table @option
9976 @item mapping
9977 Set the destination indexes of input frames.
9978 This is space or '|' separated list of indexes that maps input frames to output
9979 frames. Number of indexes also sets maximal value that each index may have.
9980 @end table
9981
9982 The first frame has the index 0. The default is to keep the input unchanged.
9983
9984 Swap second and third frame of every three frames of the input:
9985 @example
9986 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
9987 @end example
9988
9989 @section shuffleplanes
9990
9991 Reorder and/or duplicate video planes.
9992
9993 It accepts the following parameters:
9994
9995 @table @option
9996
9997 @item map0
9998 The index of the input plane to be used as the first output plane.
9999
10000 @item map1
10001 The index of the input plane to be used as the second output plane.
10002
10003 @item map2
10004 The index of the input plane to be used as the third output plane.
10005
10006 @item map3
10007 The index of the input plane to be used as the fourth output plane.
10008
10009 @end table
10010
10011 The first plane has the index 0. The default is to keep the input unchanged.
10012
10013 Swap the second and third planes of the input:
10014 @example
10015 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
10016 @end example
10017
10018 @anchor{signalstats}
10019 @section signalstats
10020 Evaluate various visual metrics that assist in determining issues associated
10021 with the digitization of analog video media.
10022
10023 By default the filter will log these metadata values:
10024
10025 @table @option
10026 @item YMIN
10027 Display the minimal Y value contained within the input frame. Expressed in
10028 range of [0-255].
10029
10030 @item YLOW
10031 Display the Y value at the 10% percentile within the input frame. Expressed in
10032 range of [0-255].
10033
10034 @item YAVG
10035 Display the average Y value within the input frame. Expressed in range of
10036 [0-255].
10037
10038 @item YHIGH
10039 Display the Y value at the 90% percentile within the input frame. Expressed in
10040 range of [0-255].
10041
10042 @item YMAX
10043 Display the maximum Y value contained within the input frame. Expressed in
10044 range of [0-255].
10045
10046 @item UMIN
10047 Display the minimal U value contained within the input frame. Expressed in
10048 range of [0-255].
10049
10050 @item ULOW
10051 Display the U value at the 10% percentile within the input frame. Expressed in
10052 range of [0-255].
10053
10054 @item UAVG
10055 Display the average U value within the input frame. Expressed in range of
10056 [0-255].
10057
10058 @item UHIGH
10059 Display the U value at the 90% percentile within the input frame. Expressed in
10060 range of [0-255].
10061
10062 @item UMAX
10063 Display the maximum U value contained within the input frame. Expressed in
10064 range of [0-255].
10065
10066 @item VMIN
10067 Display the minimal V value contained within the input frame. Expressed in
10068 range of [0-255].
10069
10070 @item VLOW
10071 Display the V value at the 10% percentile within the input frame. Expressed in
10072 range of [0-255].
10073
10074 @item VAVG
10075 Display the average V value within the input frame. Expressed in range of
10076 [0-255].
10077
10078 @item VHIGH
10079 Display the V value at the 90% percentile within the input frame. Expressed in
10080 range of [0-255].
10081
10082 @item VMAX
10083 Display the maximum V value contained within the input frame. Expressed in
10084 range of [0-255].
10085
10086 @item SATMIN
10087 Display the minimal saturation value contained within the input frame.
10088 Expressed in range of [0-~181.02].
10089
10090 @item SATLOW
10091 Display the saturation value at the 10% percentile within the input frame.
10092 Expressed in range of [0-~181.02].
10093
10094 @item SATAVG
10095 Display the average saturation value within the input frame. Expressed in range
10096 of [0-~181.02].
10097
10098 @item SATHIGH
10099 Display the saturation value at the 90% percentile within the input frame.
10100 Expressed in range of [0-~181.02].
10101
10102 @item SATMAX
10103 Display the maximum saturation value contained within the input frame.
10104 Expressed in range of [0-~181.02].
10105
10106 @item HUEMED
10107 Display the median value for hue within the input frame. Expressed in range of
10108 [0-360].
10109
10110 @item HUEAVG
10111 Display the average value for hue within the input frame. Expressed in range of
10112 [0-360].
10113
10114 @item YDIF
10115 Display the average of sample value difference between all values of the Y
10116 plane in the current frame and corresponding values of the previous input frame.
10117 Expressed in range of [0-255].
10118
10119 @item UDIF
10120 Display the average of sample value difference between all values of the U
10121 plane in the current frame and corresponding values of the previous input frame.
10122 Expressed in range of [0-255].
10123
10124 @item VDIF
10125 Display the average of sample value difference between all values of the V
10126 plane in the current frame and corresponding values of the previous input frame.
10127 Expressed in range of [0-255].
10128 @end table
10129
10130 The filter accepts the following options:
10131
10132 @table @option
10133 @item stat
10134 @item out
10135
10136 @option{stat} specify an additional form of image analysis.
10137 @option{out} output video with the specified type of pixel highlighted.
10138
10139 Both options accept the following values:
10140
10141 @table @samp
10142 @item tout
10143 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
10144 unlike the neighboring pixels of the same field. Examples of temporal outliers
10145 include the results of video dropouts, head clogs, or tape tracking issues.
10146
10147 @item vrep
10148 Identify @var{vertical line repetition}. Vertical line repetition includes
10149 similar rows of pixels within a frame. In born-digital video vertical line
10150 repetition is common, but this pattern is uncommon in video digitized from an
10151 analog source. When it occurs in video that results from the digitization of an
10152 analog source it can indicate concealment from a dropout compensator.
10153
10154 @item brng
10155 Identify pixels that fall outside of legal broadcast range.
10156 @end table
10157
10158 @item color, c
10159 Set the highlight color for the @option{out} option. The default color is
10160 yellow.
10161 @end table
10162
10163 @subsection Examples
10164
10165 @itemize
10166 @item
10167 Output data of various video metrics:
10168 @example
10169 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
10170 @end example
10171
10172 @item
10173 Output specific data about the minimum and maximum values of the Y plane per frame:
10174 @example
10175 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
10176 @end example
10177
10178 @item
10179 Playback video while highlighting pixels that are outside of broadcast range in red.
10180 @example
10181 ffplay example.mov -vf signalstats="out=brng:color=red"
10182 @end example
10183
10184 @item
10185 Playback video with signalstats metadata drawn over the frame.
10186 @example
10187 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
10188 @end example
10189
10190 The contents of signalstat_drawtext.txt used in the command are:
10191 @example
10192 time %@{pts:hms@}
10193 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
10194 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
10195 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
10196 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
10197
10198 @end example
10199 @end itemize
10200
10201 @anchor{smartblur}
10202 @section smartblur
10203
10204 Blur the input video without impacting the outlines.
10205
10206 It accepts the following options:
10207
10208 @table @option
10209 @item luma_radius, lr
10210 Set the luma radius. The option value must be a float number in
10211 the range [0.1,5.0] that specifies the variance of the gaussian filter
10212 used to blur the image (slower if larger). Default value is 1.0.
10213
10214 @item luma_strength, ls
10215 Set the luma strength. The option value must be a float number
10216 in the range [-1.0,1.0] that configures the blurring. A value included
10217 in [0.0,1.0] will blur the image whereas a value included in
10218 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10219
10220 @item luma_threshold, lt
10221 Set the luma threshold used as a coefficient to determine
10222 whether a pixel should be blurred or not. The option value must be an
10223 integer in the range [-30,30]. A value of 0 will filter all the image,
10224 a value included in [0,30] will filter flat areas and a value included
10225 in [-30,0] will filter edges. Default value is 0.
10226
10227 @item chroma_radius, cr
10228 Set the chroma radius. The option value must be a float number in
10229 the range [0.1,5.0] that specifies the variance of the gaussian filter
10230 used to blur the image (slower if larger). Default value is 1.0.
10231
10232 @item chroma_strength, cs
10233 Set the chroma strength. The option value must be a float number
10234 in the range [-1.0,1.0] that configures the blurring. A value included
10235 in [0.0,1.0] will blur the image whereas a value included in
10236 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10237
10238 @item chroma_threshold, ct
10239 Set the chroma threshold used as a coefficient to determine
10240 whether a pixel should be blurred or not. The option value must be an
10241 integer in the range [-30,30]. A value of 0 will filter all the image,
10242 a value included in [0,30] will filter flat areas and a value included
10243 in [-30,0] will filter edges. Default value is 0.
10244 @end table
10245
10246 If a chroma option is not explicitly set, the corresponding luma value
10247 is set.
10248
10249 @section ssim
10250
10251 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
10252
10253 This filter takes in input two input videos, the first input is
10254 considered the "main" source and is passed unchanged to the
10255 output. The second input is used as a "reference" video for computing
10256 the SSIM.
10257
10258 Both video inputs must have the same resolution and pixel format for
10259 this filter to work correctly. Also it assumes that both inputs
10260 have the same number of frames, which are compared one by one.
10261
10262 The filter stores the calculated SSIM of each frame.
10263
10264 The description of the accepted parameters follows.
10265
10266 @table @option
10267 @item stats_file, f
10268 If specified the filter will use the named file to save the SSIM of
10269 each individual frame. When filename equals "-" the data is sent to
10270 standard output.
10271 @end table
10272
10273 The file printed if @var{stats_file} is selected, contains a sequence of
10274 key/value pairs of the form @var{key}:@var{value} for each compared
10275 couple of frames.
10276
10277 A description of each shown parameter follows:
10278
10279 @table @option
10280 @item n
10281 sequential number of the input frame, starting from 1
10282
10283 @item Y, U, V, R, G, B
10284 SSIM of the compared frames for the component specified by the suffix.
10285
10286 @item All
10287 SSIM of the compared frames for the whole frame.
10288
10289 @item dB
10290 Same as above but in dB representation.
10291 @end table
10292
10293 For example:
10294 @example
10295 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10296 [main][ref] ssim="stats_file=stats.log" [out]
10297 @end example
10298
10299 On this example the input file being processed is compared with the
10300 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
10301 is stored in @file{stats.log}.
10302
10303 Another example with both psnr and ssim at same time:
10304 @example
10305 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
10306 @end example
10307
10308 @section stereo3d
10309
10310 Convert between different stereoscopic image formats.
10311
10312 The filters accept the following options:
10313
10314 @table @option
10315 @item in
10316 Set stereoscopic image format of input.
10317
10318 Available values for input image formats are:
10319 @table @samp
10320 @item sbsl
10321 side by side parallel (left eye left, right eye right)
10322
10323 @item sbsr
10324 side by side crosseye (right eye left, left eye right)
10325
10326 @item sbs2l
10327 side by side parallel with half width resolution
10328 (left eye left, right eye right)
10329
10330 @item sbs2r
10331 side by side crosseye with half width resolution
10332 (right eye left, left eye right)
10333
10334 @item abl
10335 above-below (left eye above, right eye below)
10336
10337 @item abr
10338 above-below (right eye above, left eye below)
10339
10340 @item ab2l
10341 above-below with half height resolution
10342 (left eye above, right eye below)
10343
10344 @item ab2r
10345 above-below with half height resolution
10346 (right eye above, left eye below)
10347
10348 @item al
10349 alternating frames (left eye first, right eye second)
10350
10351 @item ar
10352 alternating frames (right eye first, left eye second)
10353
10354 @item irl
10355 interleaved rows (left eye has top row, right eye starts on next row)
10356
10357 @item irr
10358 interleaved rows (right eye has top row, left eye starts on next row)
10359
10360 Default value is @samp{sbsl}.
10361 @end table
10362
10363 @item out
10364 Set stereoscopic image format of output.
10365
10366 Available values for output image formats are all the input formats as well as:
10367 @table @samp
10368 @item arbg
10369 anaglyph red/blue gray
10370 (red filter on left eye, blue filter on right eye)
10371
10372 @item argg
10373 anaglyph red/green gray
10374 (red filter on left eye, green filter on right eye)
10375
10376 @item arcg
10377 anaglyph red/cyan gray
10378 (red filter on left eye, cyan filter on right eye)
10379
10380 @item arch
10381 anaglyph red/cyan half colored
10382 (red filter on left eye, cyan filter on right eye)
10383
10384 @item arcc
10385 anaglyph red/cyan color
10386 (red filter on left eye, cyan filter on right eye)
10387
10388 @item arcd
10389 anaglyph red/cyan color optimized with the least squares projection of dubois
10390 (red filter on left eye, cyan filter on right eye)
10391
10392 @item agmg
10393 anaglyph green/magenta gray
10394 (green filter on left eye, magenta filter on right eye)
10395
10396 @item agmh
10397 anaglyph green/magenta half colored
10398 (green filter on left eye, magenta filter on right eye)
10399
10400 @item agmc
10401 anaglyph green/magenta colored
10402 (green filter on left eye, magenta filter on right eye)
10403
10404 @item agmd
10405 anaglyph green/magenta color optimized with the least squares projection of dubois
10406 (green filter on left eye, magenta filter on right eye)
10407
10408 @item aybg
10409 anaglyph yellow/blue gray
10410 (yellow filter on left eye, blue filter on right eye)
10411
10412 @item aybh
10413 anaglyph yellow/blue half colored
10414 (yellow filter on left eye, blue filter on right eye)
10415
10416 @item aybc
10417 anaglyph yellow/blue colored
10418 (yellow filter on left eye, blue filter on right eye)
10419
10420 @item aybd
10421 anaglyph yellow/blue color optimized with the least squares projection of dubois
10422 (yellow filter on left eye, blue filter on right eye)
10423
10424 @item ml
10425 mono output (left eye only)
10426
10427 @item mr
10428 mono output (right eye only)
10429
10430 @item chl
10431 checkerboard, left eye first
10432
10433 @item chr
10434 checkerboard, right eye first
10435
10436 @item icl
10437 interleaved columns, left eye first
10438
10439 @item icr
10440 interleaved columns, right eye first
10441 @end table
10442
10443 Default value is @samp{arcd}.
10444 @end table
10445
10446 @subsection Examples
10447
10448 @itemize
10449 @item
10450 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
10451 @example
10452 stereo3d=sbsl:aybd
10453 @end example
10454
10455 @item
10456 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
10457 @example
10458 stereo3d=abl:sbsr
10459 @end example
10460 @end itemize
10461
10462 @anchor{spp}
10463 @section spp
10464
10465 Apply a simple postprocessing filter that compresses and decompresses the image
10466 at several (or - in the case of @option{quality} level @code{6} - all) shifts
10467 and average the results.
10468
10469 The filter accepts the following options:
10470
10471 @table @option
10472 @item quality
10473 Set quality. This option defines the number of levels for averaging. It accepts
10474 an integer in the range 0-6. If set to @code{0}, the filter will have no
10475 effect. A value of @code{6} means the higher quality. For each increment of
10476 that value the speed drops by a factor of approximately 2.  Default value is
10477 @code{3}.
10478
10479 @item qp
10480 Force a constant quantization parameter. If not set, the filter will use the QP
10481 from the video stream (if available).
10482
10483 @item mode
10484 Set thresholding mode. Available modes are:
10485
10486 @table @samp
10487 @item hard
10488 Set hard thresholding (default).
10489 @item soft
10490 Set soft thresholding (better de-ringing effect, but likely blurrier).
10491 @end table
10492
10493 @item use_bframe_qp
10494 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10495 option may cause flicker since the B-Frames have often larger QP. Default is
10496 @code{0} (not enabled).
10497 @end table
10498
10499 @anchor{subtitles}
10500 @section subtitles
10501
10502 Draw subtitles on top of input video using the libass library.
10503
10504 To enable compilation of this filter you need to configure FFmpeg with
10505 @code{--enable-libass}. This filter also requires a build with libavcodec and
10506 libavformat to convert the passed subtitles file to ASS (Advanced Substation
10507 Alpha) subtitles format.
10508
10509 The filter accepts the following options:
10510
10511 @table @option
10512 @item filename, f
10513 Set the filename of the subtitle file to read. It must be specified.
10514
10515 @item original_size
10516 Specify the size of the original video, the video for which the ASS file
10517 was composed. For the syntax of this option, check the
10518 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10519 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
10520 correctly scale the fonts if the aspect ratio has been changed.
10521
10522 @item fontsdir
10523 Set a directory path containing fonts that can be used by the filter.
10524 These fonts will be used in addition to whatever the font provider uses.
10525
10526 @item charenc
10527 Set subtitles input character encoding. @code{subtitles} filter only. Only
10528 useful if not UTF-8.
10529
10530 @item stream_index, si
10531 Set subtitles stream index. @code{subtitles} filter only.
10532
10533 @item force_style
10534 Override default style or script info parameters of the subtitles. It accepts a
10535 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
10536 @end table
10537
10538 If the first key is not specified, it is assumed that the first value
10539 specifies the @option{filename}.
10540
10541 For example, to render the file @file{sub.srt} on top of the input
10542 video, use the command:
10543 @example
10544 subtitles=sub.srt
10545 @end example
10546
10547 which is equivalent to:
10548 @example
10549 subtitles=filename=sub.srt
10550 @end example
10551
10552 To render the default subtitles stream from file @file{video.mkv}, use:
10553 @example
10554 subtitles=video.mkv
10555 @end example
10556
10557 To render the second subtitles stream from that file, use:
10558 @example
10559 subtitles=video.mkv:si=1
10560 @end example
10561
10562 To make the subtitles stream from @file{sub.srt} appear in transparent green
10563 @code{DejaVu Serif}, use:
10564 @example
10565 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
10566 @end example
10567
10568 @section super2xsai
10569
10570 Scale the input by 2x and smooth using the Super2xSaI (Scale and
10571 Interpolate) pixel art scaling algorithm.
10572
10573 Useful for enlarging pixel art images without reducing sharpness.
10574
10575 @section swapuv
10576 Swap U & V plane.
10577
10578 @section telecine
10579
10580 Apply telecine process to the video.
10581
10582 This filter accepts the following options:
10583
10584 @table @option
10585 @item first_field
10586 @table @samp
10587 @item top, t
10588 top field first
10589 @item bottom, b
10590 bottom field first
10591 The default value is @code{top}.
10592 @end table
10593
10594 @item pattern
10595 A string of numbers representing the pulldown pattern you wish to apply.
10596 The default value is @code{23}.
10597 @end table
10598
10599 @example
10600 Some typical patterns:
10601
10602 NTSC output (30i):
10603 27.5p: 32222
10604 24p: 23 (classic)
10605 24p: 2332 (preferred)
10606 20p: 33
10607 18p: 334
10608 16p: 3444
10609
10610 PAL output (25i):
10611 27.5p: 12222
10612 24p: 222222222223 ("Euro pulldown")
10613 16.67p: 33
10614 16p: 33333334
10615 @end example
10616
10617 @section thumbnail
10618 Select the most representative frame in a given sequence of consecutive frames.
10619
10620 The filter accepts the following options:
10621
10622 @table @option
10623 @item n
10624 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
10625 will pick one of them, and then handle the next batch of @var{n} frames until
10626 the end. Default is @code{100}.
10627 @end table
10628
10629 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
10630 value will result in a higher memory usage, so a high value is not recommended.
10631
10632 @subsection Examples
10633
10634 @itemize
10635 @item
10636 Extract one picture each 50 frames:
10637 @example
10638 thumbnail=50
10639 @end example
10640
10641 @item
10642 Complete example of a thumbnail creation with @command{ffmpeg}:
10643 @example
10644 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
10645 @end example
10646 @end itemize
10647
10648 @section tile
10649
10650 Tile several successive frames together.
10651
10652 The filter accepts the following options:
10653
10654 @table @option
10655
10656 @item layout
10657 Set the grid size (i.e. the number of lines and columns). For the syntax of
10658 this option, check the
10659 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10660
10661 @item nb_frames
10662 Set the maximum number of frames to render in the given area. It must be less
10663 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
10664 the area will be used.
10665
10666 @item margin
10667 Set the outer border margin in pixels.
10668
10669 @item padding
10670 Set the inner border thickness (i.e. the number of pixels between frames). For
10671 more advanced padding options (such as having different values for the edges),
10672 refer to the pad video filter.
10673
10674 @item color
10675 Specify the color of the unused area. For the syntax of this option, check the
10676 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
10677 is "black".
10678 @end table
10679
10680 @subsection Examples
10681
10682 @itemize
10683 @item
10684 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
10685 @example
10686 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
10687 @end example
10688 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
10689 duplicating each output frame to accommodate the originally detected frame
10690 rate.
10691
10692 @item
10693 Display @code{5} pictures in an area of @code{3x2} frames,
10694 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
10695 mixed flat and named options:
10696 @example
10697 tile=3x2:nb_frames=5:padding=7:margin=2
10698 @end example
10699 @end itemize
10700
10701 @section tinterlace
10702
10703 Perform various types of temporal field interlacing.
10704
10705 Frames are counted starting from 1, so the first input frame is
10706 considered odd.
10707
10708 The filter accepts the following options:
10709
10710 @table @option
10711
10712 @item mode
10713 Specify the mode of the interlacing. This option can also be specified
10714 as a value alone. See below for a list of values for this option.
10715
10716 Available values are:
10717
10718 @table @samp
10719 @item merge, 0
10720 Move odd frames into the upper field, even into the lower field,
10721 generating a double height frame at half frame rate.
10722 @example
10723  ------> time
10724 Input:
10725 Frame 1         Frame 2         Frame 3         Frame 4
10726
10727 11111           22222           33333           44444
10728 11111           22222           33333           44444
10729 11111           22222           33333           44444
10730 11111           22222           33333           44444
10731
10732 Output:
10733 11111                           33333
10734 22222                           44444
10735 11111                           33333
10736 22222                           44444
10737 11111                           33333
10738 22222                           44444
10739 11111                           33333
10740 22222                           44444
10741 @end example
10742
10743 @item drop_odd, 1
10744 Only output even frames, odd frames are dropped, generating a frame with
10745 unchanged height at half frame rate.
10746
10747 @example
10748  ------> time
10749 Input:
10750 Frame 1         Frame 2         Frame 3         Frame 4
10751
10752 11111           22222           33333           44444
10753 11111           22222           33333           44444
10754 11111           22222           33333           44444
10755 11111           22222           33333           44444
10756
10757 Output:
10758                 22222                           44444
10759                 22222                           44444
10760                 22222                           44444
10761                 22222                           44444
10762 @end example
10763
10764 @item drop_even, 2
10765 Only output odd frames, even frames are dropped, generating a frame with
10766 unchanged height at half frame rate.
10767
10768 @example
10769  ------> time
10770 Input:
10771 Frame 1         Frame 2         Frame 3         Frame 4
10772
10773 11111           22222           33333           44444
10774 11111           22222           33333           44444
10775 11111           22222           33333           44444
10776 11111           22222           33333           44444
10777
10778 Output:
10779 11111                           33333
10780 11111                           33333
10781 11111                           33333
10782 11111                           33333
10783 @end example
10784
10785 @item pad, 3
10786 Expand each frame to full height, but pad alternate lines with black,
10787 generating a frame with double height at the same input frame rate.
10788
10789 @example
10790  ------> time
10791 Input:
10792 Frame 1         Frame 2         Frame 3         Frame 4
10793
10794 11111           22222           33333           44444
10795 11111           22222           33333           44444
10796 11111           22222           33333           44444
10797 11111           22222           33333           44444
10798
10799 Output:
10800 11111           .....           33333           .....
10801 .....           22222           .....           44444
10802 11111           .....           33333           .....
10803 .....           22222           .....           44444
10804 11111           .....           33333           .....
10805 .....           22222           .....           44444
10806 11111           .....           33333           .....
10807 .....           22222           .....           44444
10808 @end example
10809
10810
10811 @item interleave_top, 4
10812 Interleave the upper field from odd frames with the lower field from
10813 even frames, generating a frame with unchanged height at half frame rate.
10814
10815 @example
10816  ------> time
10817 Input:
10818 Frame 1         Frame 2         Frame 3         Frame 4
10819
10820 11111<-         22222           33333<-         44444
10821 11111           22222<-         33333           44444<-
10822 11111<-         22222           33333<-         44444
10823 11111           22222<-         33333           44444<-
10824
10825 Output:
10826 11111                           33333
10827 22222                           44444
10828 11111                           33333
10829 22222                           44444
10830 @end example
10831
10832
10833 @item interleave_bottom, 5
10834 Interleave the lower field from odd frames with the upper field from
10835 even frames, generating a frame with unchanged height at half frame rate.
10836
10837 @example
10838  ------> time
10839 Input:
10840 Frame 1         Frame 2         Frame 3         Frame 4
10841
10842 11111           22222<-         33333           44444<-
10843 11111<-         22222           33333<-         44444
10844 11111           22222<-         33333           44444<-
10845 11111<-         22222           33333<-         44444
10846
10847 Output:
10848 22222                           44444
10849 11111                           33333
10850 22222                           44444
10851 11111                           33333
10852 @end example
10853
10854
10855 @item interlacex2, 6
10856 Double frame rate with unchanged height. Frames are inserted each
10857 containing the second temporal field from the previous input frame and
10858 the first temporal field from the next input frame. This mode relies on
10859 the top_field_first flag. Useful for interlaced video displays with no
10860 field synchronisation.
10861
10862 @example
10863  ------> time
10864 Input:
10865 Frame 1         Frame 2         Frame 3         Frame 4
10866
10867 11111           22222           33333           44444
10868  11111           22222           33333           44444
10869 11111           22222           33333           44444
10870  11111           22222           33333           44444
10871
10872 Output:
10873 11111   22222   22222   33333   33333   44444   44444
10874  11111   11111   22222   22222   33333   33333   44444
10875 11111   22222   22222   33333   33333   44444   44444
10876  11111   11111   22222   22222   33333   33333   44444
10877 @end example
10878
10879 @item mergex2, 7
10880 Move odd frames into the upper field, even into the lower field,
10881 generating a double height frame at same frame rate.
10882 @example
10883  ------> time
10884 Input:
10885 Frame 1         Frame 2         Frame 3         Frame 4
10886
10887 11111           22222           33333           44444
10888 11111           22222           33333           44444
10889 11111           22222           33333           44444
10890 11111           22222           33333           44444
10891
10892 Output:
10893 11111           33333           33333           55555
10894 22222           22222           44444           44444
10895 11111           33333           33333           55555
10896 22222           22222           44444           44444
10897 11111           33333           33333           55555
10898 22222           22222           44444           44444
10899 11111           33333           33333           55555
10900 22222           22222           44444           44444
10901 @end example
10902
10903 @end table
10904
10905 Numeric values are deprecated but are accepted for backward
10906 compatibility reasons.
10907
10908 Default mode is @code{merge}.
10909
10910 @item flags
10911 Specify flags influencing the filter process.
10912
10913 Available value for @var{flags} is:
10914
10915 @table @option
10916 @item low_pass_filter, vlfp
10917 Enable vertical low-pass filtering in the filter.
10918 Vertical low-pass filtering is required when creating an interlaced
10919 destination from a progressive source which contains high-frequency
10920 vertical detail. Filtering will reduce interlace 'twitter' and Moire
10921 patterning.
10922
10923 Vertical low-pass filtering can only be enabled for @option{mode}
10924 @var{interleave_top} and @var{interleave_bottom}.
10925
10926 @end table
10927 @end table
10928
10929 @section transpose
10930
10931 Transpose rows with columns in the input video and optionally flip it.
10932
10933 It accepts the following parameters:
10934
10935 @table @option
10936
10937 @item dir
10938 Specify the transposition direction.
10939
10940 Can assume the following values:
10941 @table @samp
10942 @item 0, 4, cclock_flip
10943 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
10944 @example
10945 L.R     L.l
10946 . . ->  . .
10947 l.r     R.r
10948 @end example
10949
10950 @item 1, 5, clock
10951 Rotate by 90 degrees clockwise, that is:
10952 @example
10953 L.R     l.L
10954 . . ->  . .
10955 l.r     r.R
10956 @end example
10957
10958 @item 2, 6, cclock
10959 Rotate by 90 degrees counterclockwise, that is:
10960 @example
10961 L.R     R.r
10962 . . ->  . .
10963 l.r     L.l
10964 @end example
10965
10966 @item 3, 7, clock_flip
10967 Rotate by 90 degrees clockwise and vertically flip, that is:
10968 @example
10969 L.R     r.R
10970 . . ->  . .
10971 l.r     l.L
10972 @end example
10973 @end table
10974
10975 For values between 4-7, the transposition is only done if the input
10976 video geometry is portrait and not landscape. These values are
10977 deprecated, the @code{passthrough} option should be used instead.
10978
10979 Numerical values are deprecated, and should be dropped in favor of
10980 symbolic constants.
10981
10982 @item passthrough
10983 Do not apply the transposition if the input geometry matches the one
10984 specified by the specified value. It accepts the following values:
10985 @table @samp
10986 @item none
10987 Always apply transposition.
10988 @item portrait
10989 Preserve portrait geometry (when @var{height} >= @var{width}).
10990 @item landscape
10991 Preserve landscape geometry (when @var{width} >= @var{height}).
10992 @end table
10993
10994 Default value is @code{none}.
10995 @end table
10996
10997 For example to rotate by 90 degrees clockwise and preserve portrait
10998 layout:
10999 @example
11000 transpose=dir=1:passthrough=portrait
11001 @end example
11002
11003 The command above can also be specified as:
11004 @example
11005 transpose=1:portrait
11006 @end example
11007
11008 @section trim
11009 Trim the input so that the output contains one continuous subpart of the input.
11010
11011 It accepts the following parameters:
11012 @table @option
11013 @item start
11014 Specify the time of the start of the kept section, i.e. the frame with the
11015 timestamp @var{start} will be the first frame in the output.
11016
11017 @item end
11018 Specify the time of the first frame that will be dropped, i.e. the frame
11019 immediately preceding the one with the timestamp @var{end} will be the last
11020 frame in the output.
11021
11022 @item start_pts
11023 This is the same as @var{start}, except this option sets the start timestamp
11024 in timebase units instead of seconds.
11025
11026 @item end_pts
11027 This is the same as @var{end}, except this option sets the end timestamp
11028 in timebase units instead of seconds.
11029
11030 @item duration
11031 The maximum duration of the output in seconds.
11032
11033 @item start_frame
11034 The number of the first frame that should be passed to the output.
11035
11036 @item end_frame
11037 The number of the first frame that should be dropped.
11038 @end table
11039
11040 @option{start}, @option{end}, and @option{duration} are expressed as time
11041 duration specifications; see
11042 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11043 for the accepted syntax.
11044
11045 Note that the first two sets of the start/end options and the @option{duration}
11046 option look at the frame timestamp, while the _frame variants simply count the
11047 frames that pass through the filter. Also note that this filter does not modify
11048 the timestamps. If you wish for the output timestamps to start at zero, insert a
11049 setpts filter after the trim filter.
11050
11051 If multiple start or end options are set, this filter tries to be greedy and
11052 keep all the frames that match at least one of the specified constraints. To keep
11053 only the part that matches all the constraints at once, chain multiple trim
11054 filters.
11055
11056 The defaults are such that all the input is kept. So it is possible to set e.g.
11057 just the end values to keep everything before the specified time.
11058
11059 Examples:
11060 @itemize
11061 @item
11062 Drop everything except the second minute of input:
11063 @example
11064 ffmpeg -i INPUT -vf trim=60:120
11065 @end example
11066
11067 @item
11068 Keep only the first second:
11069 @example
11070 ffmpeg -i INPUT -vf trim=duration=1
11071 @end example
11072
11073 @end itemize
11074
11075
11076 @anchor{unsharp}
11077 @section unsharp
11078
11079 Sharpen or blur the input video.
11080
11081 It accepts the following parameters:
11082
11083 @table @option
11084 @item luma_msize_x, lx
11085 Set the luma matrix horizontal size. It must be an odd integer between
11086 3 and 63. The default value is 5.
11087
11088 @item luma_msize_y, ly
11089 Set the luma matrix vertical size. It must be an odd integer between 3
11090 and 63. The default value is 5.
11091
11092 @item luma_amount, la
11093 Set the luma effect strength. It must be a floating point number, reasonable
11094 values lay between -1.5 and 1.5.
11095
11096 Negative values will blur the input video, while positive values will
11097 sharpen it, a value of zero will disable the effect.
11098
11099 Default value is 1.0.
11100
11101 @item chroma_msize_x, cx
11102 Set the chroma matrix horizontal size. It must be an odd integer
11103 between 3 and 63. The default value is 5.
11104
11105 @item chroma_msize_y, cy
11106 Set the chroma matrix vertical size. It must be an odd integer
11107 between 3 and 63. The default value is 5.
11108
11109 @item chroma_amount, ca
11110 Set the chroma effect strength. It must be a floating point number, reasonable
11111 values lay between -1.5 and 1.5.
11112
11113 Negative values will blur the input video, while positive values will
11114 sharpen it, a value of zero will disable the effect.
11115
11116 Default value is 0.0.
11117
11118 @item opencl
11119 If set to 1, specify using OpenCL capabilities, only available if
11120 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
11121
11122 @end table
11123
11124 All parameters are optional and default to the equivalent of the
11125 string '5:5:1.0:5:5:0.0'.
11126
11127 @subsection Examples
11128
11129 @itemize
11130 @item
11131 Apply strong luma sharpen effect:
11132 @example
11133 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
11134 @end example
11135
11136 @item
11137 Apply a strong blur of both luma and chroma parameters:
11138 @example
11139 unsharp=7:7:-2:7:7:-2
11140 @end example
11141 @end itemize
11142
11143 @section uspp
11144
11145 Apply ultra slow/simple postprocessing filter that compresses and decompresses
11146 the image at several (or - in the case of @option{quality} level @code{8} - all)
11147 shifts and average the results.
11148
11149 The way this differs from the behavior of spp is that uspp actually encodes &
11150 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
11151 DCT similar to MJPEG.
11152
11153 The filter accepts the following options:
11154
11155 @table @option
11156 @item quality
11157 Set quality. This option defines the number of levels for averaging. It accepts
11158 an integer in the range 0-8. If set to @code{0}, the filter will have no
11159 effect. A value of @code{8} means the higher quality. For each increment of
11160 that value the speed drops by a factor of approximately 2.  Default value is
11161 @code{3}.
11162
11163 @item qp
11164 Force a constant quantization parameter. If not set, the filter will use the QP
11165 from the video stream (if available).
11166 @end table
11167
11168 @section vectorscope
11169
11170 Display 2 color component values in the two dimensional graph (which is called
11171 a vectorscope).
11172
11173 This filter accepts the following options:
11174
11175 @table @option
11176 @item mode, m
11177 Set vectorscope mode.
11178
11179 It accepts the following values:
11180 @table @samp
11181 @item gray
11182 Gray values are displayed on graph, higher brightness means more pixels have
11183 same component color value on location in graph. This is the default mode.
11184
11185 @item color
11186 Gray values are displayed on graph. Surrounding pixels values which are not
11187 present in video frame are drawn in gradient of 2 color components which are
11188 set by option @code{x} and @code{y}.
11189
11190 @item color2
11191 Actual color components values present in video frame are displayed on graph.
11192
11193 @item color3
11194 Similar as color2 but higher frequency of same values @code{x} and @code{y}
11195 on graph increases value of another color component, which is luminance by
11196 default values of @code{x} and @code{y}.
11197
11198 @item color4
11199 Actual colors present in video frame are displayed on graph. If two different
11200 colors map to same position on graph then color with higher value of component
11201 not present in graph is picked.
11202 @end table
11203
11204 @item x
11205 Set which color component will be represented on X-axis. Default is @code{1}.
11206
11207 @item y
11208 Set which color component will be represented on Y-axis. Default is @code{2}.
11209
11210 @item intensity, i
11211 Set intensity, used by modes: gray, color and color3 for increasing brightness
11212 of color component which represents frequency of (X, Y) location in graph.
11213
11214 @item envelope, e
11215 @table @samp
11216 @item none
11217 No envelope, this is default.
11218
11219 @item instant
11220 Instant envelope, even darkest single pixel will be clearly highlighted.
11221
11222 @item peak
11223 Hold maximum and minimum values presented in graph over time. This way you
11224 can still spot out of range values without constantly looking at vectorscope.
11225
11226 @item peak+instant
11227 Peak and instant envelope combined together.
11228 @end table
11229 @end table
11230
11231 @anchor{vidstabdetect}
11232 @section vidstabdetect
11233
11234 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
11235 @ref{vidstabtransform} for pass 2.
11236
11237 This filter generates a file with relative translation and rotation
11238 transform information about subsequent frames, which is then used by
11239 the @ref{vidstabtransform} filter.
11240
11241 To enable compilation of this filter you need to configure FFmpeg with
11242 @code{--enable-libvidstab}.
11243
11244 This filter accepts the following options:
11245
11246 @table @option
11247 @item result
11248 Set the path to the file used to write the transforms information.
11249 Default value is @file{transforms.trf}.
11250
11251 @item shakiness
11252 Set how shaky the video is and how quick the camera is. It accepts an
11253 integer in the range 1-10, a value of 1 means little shakiness, a
11254 value of 10 means strong shakiness. Default value is 5.
11255
11256 @item accuracy
11257 Set the accuracy of the detection process. It must be a value in the
11258 range 1-15. A value of 1 means low accuracy, a value of 15 means high
11259 accuracy. Default value is 15.
11260
11261 @item stepsize
11262 Set stepsize of the search process. The region around minimum is
11263 scanned with 1 pixel resolution. Default value is 6.
11264
11265 @item mincontrast
11266 Set minimum contrast. Below this value a local measurement field is
11267 discarded. Must be a floating point value in the range 0-1. Default
11268 value is 0.3.
11269
11270 @item tripod
11271 Set reference frame number for tripod mode.
11272
11273 If enabled, the motion of the frames is compared to a reference frame
11274 in the filtered stream, identified by the specified number. The idea
11275 is to compensate all movements in a more-or-less static scene and keep
11276 the camera view absolutely still.
11277
11278 If set to 0, it is disabled. The frames are counted starting from 1.
11279
11280 @item show
11281 Show fields and transforms in the resulting frames. It accepts an
11282 integer in the range 0-2. Default value is 0, which disables any
11283 visualization.
11284 @end table
11285
11286 @subsection Examples
11287
11288 @itemize
11289 @item
11290 Use default values:
11291 @example
11292 vidstabdetect
11293 @end example
11294
11295 @item
11296 Analyze strongly shaky movie and put the results in file
11297 @file{mytransforms.trf}:
11298 @example
11299 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
11300 @end example
11301
11302 @item
11303 Visualize the result of internal transformations in the resulting
11304 video:
11305 @example
11306 vidstabdetect=show=1
11307 @end example
11308
11309 @item
11310 Analyze a video with medium shakiness using @command{ffmpeg}:
11311 @example
11312 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
11313 @end example
11314 @end itemize
11315
11316 @anchor{vidstabtransform}
11317 @section vidstabtransform
11318
11319 Video stabilization/deshaking: pass 2 of 2,
11320 see @ref{vidstabdetect} for pass 1.
11321
11322 Read a file with transform information for each frame and
11323 apply/compensate them. Together with the @ref{vidstabdetect}
11324 filter this can be used to deshake videos. See also
11325 @url{http://public.hronopik.de/vid.stab}. It is important to also use
11326 the @ref{unsharp} filter, see below.
11327
11328 To enable compilation of this filter you need to configure FFmpeg with
11329 @code{--enable-libvidstab}.
11330
11331 @subsection Options
11332
11333 @table @option
11334 @item input
11335 Set path to the file used to read the transforms. Default value is
11336 @file{transforms.trf}.
11337
11338 @item smoothing
11339 Set the number of frames (value*2 + 1) used for lowpass filtering the
11340 camera movements. Default value is 10.
11341
11342 For example a number of 10 means that 21 frames are used (10 in the
11343 past and 10 in the future) to smoothen the motion in the video. A
11344 larger value leads to a smoother video, but limits the acceleration of
11345 the camera (pan/tilt movements). 0 is a special case where a static
11346 camera is simulated.
11347
11348 @item optalgo
11349 Set the camera path optimization algorithm.
11350
11351 Accepted values are:
11352 @table @samp
11353 @item gauss
11354 gaussian kernel low-pass filter on camera motion (default)
11355 @item avg
11356 averaging on transformations
11357 @end table
11358
11359 @item maxshift
11360 Set maximal number of pixels to translate frames. Default value is -1,
11361 meaning no limit.
11362
11363 @item maxangle
11364 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
11365 value is -1, meaning no limit.
11366
11367 @item crop
11368 Specify how to deal with borders that may be visible due to movement
11369 compensation.
11370
11371 Available values are:
11372 @table @samp
11373 @item keep
11374 keep image information from previous frame (default)
11375 @item black
11376 fill the border black
11377 @end table
11378
11379 @item invert
11380 Invert transforms if set to 1. Default value is 0.
11381
11382 @item relative
11383 Consider transforms as relative to previous frame if set to 1,
11384 absolute if set to 0. Default value is 0.
11385
11386 @item zoom
11387 Set percentage to zoom. A positive value will result in a zoom-in
11388 effect, a negative value in a zoom-out effect. Default value is 0 (no
11389 zoom).
11390
11391 @item optzoom
11392 Set optimal zooming to avoid borders.
11393
11394 Accepted values are:
11395 @table @samp
11396 @item 0
11397 disabled
11398 @item 1
11399 optimal static zoom value is determined (only very strong movements
11400 will lead to visible borders) (default)
11401 @item 2
11402 optimal adaptive zoom value is determined (no borders will be
11403 visible), see @option{zoomspeed}
11404 @end table
11405
11406 Note that the value given at zoom is added to the one calculated here.
11407
11408 @item zoomspeed
11409 Set percent to zoom maximally each frame (enabled when
11410 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
11411 0.25.
11412
11413 @item interpol
11414 Specify type of interpolation.
11415
11416 Available values are:
11417 @table @samp
11418 @item no
11419 no interpolation
11420 @item linear
11421 linear only horizontal
11422 @item bilinear
11423 linear in both directions (default)
11424 @item bicubic
11425 cubic in both directions (slow)
11426 @end table
11427
11428 @item tripod
11429 Enable virtual tripod mode if set to 1, which is equivalent to
11430 @code{relative=0:smoothing=0}. Default value is 0.
11431
11432 Use also @code{tripod} option of @ref{vidstabdetect}.
11433
11434 @item debug
11435 Increase log verbosity if set to 1. Also the detected global motions
11436 are written to the temporary file @file{global_motions.trf}. Default
11437 value is 0.
11438 @end table
11439
11440 @subsection Examples
11441
11442 @itemize
11443 @item
11444 Use @command{ffmpeg} for a typical stabilization with default values:
11445 @example
11446 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
11447 @end example
11448
11449 Note the use of the @ref{unsharp} filter which is always recommended.
11450
11451 @item
11452 Zoom in a bit more and load transform data from a given file:
11453 @example
11454 vidstabtransform=zoom=5:input="mytransforms.trf"
11455 @end example
11456
11457 @item
11458 Smoothen the video even more:
11459 @example
11460 vidstabtransform=smoothing=30
11461 @end example
11462 @end itemize
11463
11464 @section vflip
11465
11466 Flip the input video vertically.
11467
11468 For example, to vertically flip a video with @command{ffmpeg}:
11469 @example
11470 ffmpeg -i in.avi -vf "vflip" out.avi
11471 @end example
11472
11473 @anchor{vignette}
11474 @section vignette
11475
11476 Make or reverse a natural vignetting effect.
11477
11478 The filter accepts the following options:
11479
11480 @table @option
11481 @item angle, a
11482 Set lens angle expression as a number of radians.
11483
11484 The value is clipped in the @code{[0,PI/2]} range.
11485
11486 Default value: @code{"PI/5"}
11487
11488 @item x0
11489 @item y0
11490 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
11491 by default.
11492
11493 @item mode
11494 Set forward/backward mode.
11495
11496 Available modes are:
11497 @table @samp
11498 @item forward
11499 The larger the distance from the central point, the darker the image becomes.
11500
11501 @item backward
11502 The larger the distance from the central point, the brighter the image becomes.
11503 This can be used to reverse a vignette effect, though there is no automatic
11504 detection to extract the lens @option{angle} and other settings (yet). It can
11505 also be used to create a burning effect.
11506 @end table
11507
11508 Default value is @samp{forward}.
11509
11510 @item eval
11511 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
11512
11513 It accepts the following values:
11514 @table @samp
11515 @item init
11516 Evaluate expressions only once during the filter initialization.
11517
11518 @item frame
11519 Evaluate expressions for each incoming frame. This is way slower than the
11520 @samp{init} mode since it requires all the scalers to be re-computed, but it
11521 allows advanced dynamic expressions.
11522 @end table
11523
11524 Default value is @samp{init}.
11525
11526 @item dither
11527 Set dithering to reduce the circular banding effects. Default is @code{1}
11528 (enabled).
11529
11530 @item aspect
11531 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
11532 Setting this value to the SAR of the input will make a rectangular vignetting
11533 following the dimensions of the video.
11534
11535 Default is @code{1/1}.
11536 @end table
11537
11538 @subsection Expressions
11539
11540 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
11541 following parameters.
11542
11543 @table @option
11544 @item w
11545 @item h
11546 input width and height
11547
11548 @item n
11549 the number of input frame, starting from 0
11550
11551 @item pts
11552 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
11553 @var{TB} units, NAN if undefined
11554
11555 @item r
11556 frame rate of the input video, NAN if the input frame rate is unknown
11557
11558 @item t
11559 the PTS (Presentation TimeStamp) of the filtered video frame,
11560 expressed in seconds, NAN if undefined
11561
11562 @item tb
11563 time base of the input video
11564 @end table
11565
11566
11567 @subsection Examples
11568
11569 @itemize
11570 @item
11571 Apply simple strong vignetting effect:
11572 @example
11573 vignette=PI/4
11574 @end example
11575
11576 @item
11577 Make a flickering vignetting:
11578 @example
11579 vignette='PI/4+random(1)*PI/50':eval=frame
11580 @end example
11581
11582 @end itemize
11583
11584 @section vstack
11585 Stack input videos vertically.
11586
11587 All streams must be of same pixel format and of same width.
11588
11589 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11590 to create same output.
11591
11592 The filter accept the following option:
11593
11594 @table @option
11595 @item inputs
11596 Set number of input streams. Default is 2.
11597 @end table
11598
11599 @section w3fdif
11600
11601 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
11602 Deinterlacing Filter").
11603
11604 Based on the process described by Martin Weston for BBC R&D, and
11605 implemented based on the de-interlace algorithm written by Jim
11606 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
11607 uses filter coefficients calculated by BBC R&D.
11608
11609 There are two sets of filter coefficients, so called "simple":
11610 and "complex". Which set of filter coefficients is used can
11611 be set by passing an optional parameter:
11612
11613 @table @option
11614 @item filter
11615 Set the interlacing filter coefficients. Accepts one of the following values:
11616
11617 @table @samp
11618 @item simple
11619 Simple filter coefficient set.
11620 @item complex
11621 More-complex filter coefficient set.
11622 @end table
11623 Default value is @samp{complex}.
11624
11625 @item deint
11626 Specify which frames to deinterlace. Accept one of the following values:
11627
11628 @table @samp
11629 @item all
11630 Deinterlace all frames,
11631 @item interlaced
11632 Only deinterlace frames marked as interlaced.
11633 @end table
11634
11635 Default value is @samp{all}.
11636 @end table
11637
11638 @section waveform
11639 Video waveform monitor.
11640
11641 The waveform monitor plots color component intensity. By default luminance
11642 only. Each column of the waveform corresponds to a column of pixels in the
11643 source video.
11644
11645 It accepts the following options:
11646
11647 @table @option
11648 @item mode, m
11649 Can be either @code{row}, or @code{column}. Default is @code{column}.
11650 In row mode, the graph on the left side represents color component value 0 and
11651 the right side represents value = 255. In column mode, the top side represents
11652 color component value = 0 and bottom side represents value = 255.
11653
11654 @item intensity, i
11655 Set intensity. Smaller values are useful to find out how many values of the same
11656 luminance are distributed across input rows/columns.
11657 Default value is @code{0.04}. Allowed range is [0, 1].
11658
11659 @item mirror, r
11660 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
11661 In mirrored mode, higher values will be represented on the left
11662 side for @code{row} mode and at the top for @code{column} mode. Default is
11663 @code{1} (mirrored).
11664
11665 @item display, d
11666 Set display mode.
11667 It accepts the following values:
11668 @table @samp
11669 @item overlay
11670 Presents information identical to that in the @code{parade}, except
11671 that the graphs representing color components are superimposed directly
11672 over one another.
11673
11674 This display mode makes it easier to spot relative differences or similarities
11675 in overlapping areas of the color components that are supposed to be identical,
11676 such as neutral whites, grays, or blacks.
11677
11678 @item parade
11679 Display separate graph for the color components side by side in
11680 @code{row} mode or one below the other in @code{column} mode.
11681
11682 Using this display mode makes it easy to spot color casts in the highlights
11683 and shadows of an image, by comparing the contours of the top and the bottom
11684 graphs of each waveform. Since whites, grays, and blacks are characterized
11685 by exactly equal amounts of red, green, and blue, neutral areas of the picture
11686 should display three waveforms of roughly equal width/height. If not, the
11687 correction is easy to perform by making level adjustments the three waveforms.
11688 @end table
11689 Default is @code{parade}.
11690
11691 @item components, c
11692 Set which color components to display. Default is 1, which means only luminance
11693 or red color component if input is in RGB colorspace. If is set for example to
11694 7 it will display all 3 (if) available color components.
11695
11696 @item envelope, e
11697 @table @samp
11698 @item none
11699 No envelope, this is default.
11700
11701 @item instant
11702 Instant envelope, minimum and maximum values presented in graph will be easily
11703 visible even with small @code{step} value.
11704
11705 @item peak
11706 Hold minimum and maximum values presented in graph across time. This way you
11707 can still spot out of range values without constantly looking at waveforms.
11708
11709 @item peak+instant
11710 Peak and instant envelope combined together.
11711 @end table
11712
11713 @item filter, f
11714 @table @samp
11715 @item lowpass
11716 No filtering, this is default.
11717
11718 @item flat
11719 Luma and chroma combined together.
11720
11721 @item aflat
11722 Similar as above, but shows difference between blue and red chroma.
11723
11724 @item chroma
11725 Displays only chroma.
11726
11727 @item achroma
11728 Similar as above, but shows difference between blue and red chroma.
11729
11730 @item color
11731 Displays actual color value on waveform.
11732 @end table
11733 @end table
11734
11735 @section xbr
11736 Apply the xBR high-quality magnification filter which is designed for pixel
11737 art. It follows a set of edge-detection rules, see
11738 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
11739
11740 It accepts the following option:
11741
11742 @table @option
11743 @item n
11744 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
11745 @code{3xBR} and @code{4} for @code{4xBR}.
11746 Default is @code{3}.
11747 @end table
11748
11749 @anchor{yadif}
11750 @section yadif
11751
11752 Deinterlace the input video ("yadif" means "yet another deinterlacing
11753 filter").
11754
11755 It accepts the following parameters:
11756
11757
11758 @table @option
11759
11760 @item mode
11761 The interlacing mode to adopt. It accepts one of the following values:
11762
11763 @table @option
11764 @item 0, send_frame
11765 Output one frame for each frame.
11766 @item 1, send_field
11767 Output one frame for each field.
11768 @item 2, send_frame_nospatial
11769 Like @code{send_frame}, but it skips the spatial interlacing check.
11770 @item 3, send_field_nospatial
11771 Like @code{send_field}, but it skips the spatial interlacing check.
11772 @end table
11773
11774 The default value is @code{send_frame}.
11775
11776 @item parity
11777 The picture field parity assumed for the input interlaced video. It accepts one
11778 of the following values:
11779
11780 @table @option
11781 @item 0, tff
11782 Assume the top field is first.
11783 @item 1, bff
11784 Assume the bottom field is first.
11785 @item -1, auto
11786 Enable automatic detection of field parity.
11787 @end table
11788
11789 The default value is @code{auto}.
11790 If the interlacing is unknown or the decoder does not export this information,
11791 top field first will be assumed.
11792
11793 @item deint
11794 Specify which frames to deinterlace. Accept one of the following
11795 values:
11796
11797 @table @option
11798 @item 0, all
11799 Deinterlace all frames.
11800 @item 1, interlaced
11801 Only deinterlace frames marked as interlaced.
11802 @end table
11803
11804 The default value is @code{all}.
11805 @end table
11806
11807 @section zoompan
11808
11809 Apply Zoom & Pan effect.
11810
11811 This filter accepts the following options:
11812
11813 @table @option
11814 @item zoom, z
11815 Set the zoom expression. Default is 1.
11816
11817 @item x
11818 @item y
11819 Set the x and y expression. Default is 0.
11820
11821 @item d
11822 Set the duration expression in number of frames.
11823 This sets for how many number of frames effect will last for
11824 single input image.
11825
11826 @item s
11827 Set the output image size, default is 'hd720'.
11828 @end table
11829
11830 Each expression can contain the following constants:
11831
11832 @table @option
11833 @item in_w, iw
11834 Input width.
11835
11836 @item in_h, ih
11837 Input height.
11838
11839 @item out_w, ow
11840 Output width.
11841
11842 @item out_h, oh
11843 Output height.
11844
11845 @item in
11846 Input frame count.
11847
11848 @item on
11849 Output frame count.
11850
11851 @item x
11852 @item y
11853 Last calculated 'x' and 'y' position from 'x' and 'y' expression
11854 for current input frame.
11855
11856 @item px
11857 @item py
11858 'x' and 'y' of last output frame of previous input frame or 0 when there was
11859 not yet such frame (first input frame).
11860
11861 @item zoom
11862 Last calculated zoom from 'z' expression for current input frame.
11863
11864 @item pzoom
11865 Last calculated zoom of last output frame of previous input frame.
11866
11867 @item duration
11868 Number of output frames for current input frame. Calculated from 'd' expression
11869 for each input frame.
11870
11871 @item pduration
11872 number of output frames created for previous input frame
11873
11874 @item a
11875 Rational number: input width / input height
11876
11877 @item sar
11878 sample aspect ratio
11879
11880 @item dar
11881 display aspect ratio
11882
11883 @end table
11884
11885 @subsection Examples
11886
11887 @itemize
11888 @item
11889 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
11890 @example
11891 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='if(gte(zoom,1.5),x,x+1/a)':y='if(gte(zoom,1.5),y,y+1)':s=640x360
11892 @end example
11893
11894 @item
11895 Zoom-in up to 1.5 and pan always at center of picture:
11896 @example
11897 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
11898 @end example
11899 @end itemize
11900
11901 @section zscale
11902 Scale (resize) the input video, using the z.lib library:
11903 https://github.com/sekrit-twc/zimg.
11904
11905 The zscale filter forces the output display aspect ratio to be the same
11906 as the input, by changing the output sample aspect ratio.
11907
11908 If the input image format is different from the format requested by
11909 the next filter, the zscale filter will convert the input to the
11910 requested format.
11911
11912 @subsection Options
11913 The filter accepts the following options.
11914
11915 @table @option
11916 @item width, w
11917 @item height, h
11918 Set the output video dimension expression. Default value is the input
11919 dimension.
11920
11921 If the @var{width} or @var{w} is 0, the input width is used for the output.
11922 If the @var{height} or @var{h} is 0, the input height is used for the output.
11923
11924 If one of the values is -1, the zscale filter will use a value that
11925 maintains the aspect ratio of the input image, calculated from the
11926 other specified dimension. If both of them are -1, the input size is
11927 used
11928
11929 If one of the values is -n with n > 1, the zscale filter will also use a value
11930 that maintains the aspect ratio of the input image, calculated from the other
11931 specified dimension. After that it will, however, make sure that the calculated
11932 dimension is divisible by n and adjust the value if necessary.
11933
11934 See below for the list of accepted constants for use in the dimension
11935 expression.
11936
11937 @item size, s
11938 Set the video size. For the syntax of this option, check the
11939 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11940
11941 @item dither, d
11942 Set the dither type.
11943
11944 Possible values are:
11945 @table @var
11946 @item none
11947 @item ordered
11948 @item random
11949 @item error_diffusion
11950 @end table
11951
11952 Default is none.
11953
11954 @item filter, f
11955 Set the resize filter type.
11956
11957 Possible values are:
11958 @table @var
11959 @item point
11960 @item bilinear
11961 @item bicubic
11962 @item spline16
11963 @item spline36
11964 @item lanczos
11965 @end table
11966
11967 Default is bilinear.
11968
11969 @item range, r
11970 Set the color range.
11971
11972 Possible values are:
11973 @table @var
11974 @item input
11975 @item limited
11976 @item full
11977 @end table
11978
11979 Default is same as input.
11980
11981 @item primaries, p
11982 Set the color primaries.
11983
11984 Possible values are:
11985 @table @var
11986 @item input
11987 @item 709
11988 @item unspecified
11989 @item 170m
11990 @item 240m
11991 @item 2020
11992 @end table
11993
11994 Default is same as input.
11995
11996 @item transfer, t
11997 Set the transfer characteristics.
11998
11999 Possible values are:
12000 @table @var
12001 @item input
12002 @item 709
12003 @item unspecified
12004 @item 601
12005 @item linear
12006 @item 2020_10
12007 @item 2020_12
12008 @end table
12009
12010 Default is same as input.
12011
12012 @item matrix, m
12013 Set the colorspace matrix.
12014
12015 Possible value are:
12016 @table @var
12017 @item input
12018 @item 709
12019 @item unspecified
12020 @item 470bg
12021 @item 170m
12022 @item 2020_ncl
12023 @item 2020_cl
12024 @end table
12025
12026 Default is same as input.
12027 @end table
12028
12029 The values of the @option{w} and @option{h} options are expressions
12030 containing the following constants:
12031
12032 @table @var
12033 @item in_w
12034 @item in_h
12035 The input width and height
12036
12037 @item iw
12038 @item ih
12039 These are the same as @var{in_w} and @var{in_h}.
12040
12041 @item out_w
12042 @item out_h
12043 The output (scaled) width and height
12044
12045 @item ow
12046 @item oh
12047 These are the same as @var{out_w} and @var{out_h}
12048
12049 @item a
12050 The same as @var{iw} / @var{ih}
12051
12052 @item sar
12053 input sample aspect ratio
12054
12055 @item dar
12056 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12057
12058 @item hsub
12059 @item vsub
12060 horizontal and vertical input chroma subsample values. For example for the
12061 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12062
12063 @item ohsub
12064 @item ovsub
12065 horizontal and vertical output chroma subsample values. For example for the
12066 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12067 @end table
12068
12069 @table @option
12070 @end table
12071
12072 @c man end VIDEO FILTERS
12073
12074 @chapter Video Sources
12075 @c man begin VIDEO SOURCES
12076
12077 Below is a description of the currently available video sources.
12078
12079 @section buffer
12080
12081 Buffer video frames, and make them available to the filter chain.
12082
12083 This source is mainly intended for a programmatic use, in particular
12084 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
12085
12086 It accepts the following parameters:
12087
12088 @table @option
12089
12090 @item video_size
12091 Specify the size (width and height) of the buffered video frames. For the
12092 syntax of this option, check the
12093 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12094
12095 @item width
12096 The input video width.
12097
12098 @item height
12099 The input video height.
12100
12101 @item pix_fmt
12102 A string representing the pixel format of the buffered video frames.
12103 It may be a number corresponding to a pixel format, or a pixel format
12104 name.
12105
12106 @item time_base
12107 Specify the timebase assumed by the timestamps of the buffered frames.
12108
12109 @item frame_rate
12110 Specify the frame rate expected for the video stream.
12111
12112 @item pixel_aspect, sar
12113 The sample (pixel) aspect ratio of the input video.
12114
12115 @item sws_param
12116 Specify the optional parameters to be used for the scale filter which
12117 is automatically inserted when an input change is detected in the
12118 input size or format.
12119 @end table
12120
12121 For example:
12122 @example
12123 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
12124 @end example
12125
12126 will instruct the source to accept video frames with size 320x240 and
12127 with format "yuv410p", assuming 1/24 as the timestamps timebase and
12128 square pixels (1:1 sample aspect ratio).
12129 Since the pixel format with name "yuv410p" corresponds to the number 6
12130 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
12131 this example corresponds to:
12132 @example
12133 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
12134 @end example
12135
12136 Alternatively, the options can be specified as a flat string, but this
12137 syntax is deprecated:
12138
12139 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}[:@var{sws_param}]
12140
12141 @section cellauto
12142
12143 Create a pattern generated by an elementary cellular automaton.
12144
12145 The initial state of the cellular automaton can be defined through the
12146 @option{filename}, and @option{pattern} options. If such options are
12147 not specified an initial state is created randomly.
12148
12149 At each new frame a new row in the video is filled with the result of
12150 the cellular automaton next generation. The behavior when the whole
12151 frame is filled is defined by the @option{scroll} option.
12152
12153 This source accepts the following options:
12154
12155 @table @option
12156 @item filename, f
12157 Read the initial cellular automaton state, i.e. the starting row, from
12158 the specified file.
12159 In the file, each non-whitespace character is considered an alive
12160 cell, a newline will terminate the row, and further characters in the
12161 file will be ignored.
12162
12163 @item pattern, p
12164 Read the initial cellular automaton state, i.e. the starting row, from
12165 the specified string.
12166
12167 Each non-whitespace character in the string is considered an alive
12168 cell, a newline will terminate the row, and further characters in the
12169 string will be ignored.
12170
12171 @item rate, r
12172 Set the video rate, that is the number of frames generated per second.
12173 Default is 25.
12174
12175 @item random_fill_ratio, ratio
12176 Set the random fill ratio for the initial cellular automaton row. It
12177 is a floating point number value ranging from 0 to 1, defaults to
12178 1/PHI.
12179
12180 This option is ignored when a file or a pattern is specified.
12181
12182 @item random_seed, seed
12183 Set the seed for filling randomly the initial row, must be an integer
12184 included between 0 and UINT32_MAX. If not specified, or if explicitly
12185 set to -1, the filter will try to use a good random seed on a best
12186 effort basis.
12187
12188 @item rule
12189 Set the cellular automaton rule, it is a number ranging from 0 to 255.
12190 Default value is 110.
12191
12192 @item size, s
12193 Set the size of the output video. For the syntax of this option, check the
12194 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12195
12196 If @option{filename} or @option{pattern} is specified, the size is set
12197 by default to the width of the specified initial state row, and the
12198 height is set to @var{width} * PHI.
12199
12200 If @option{size} is set, it must contain the width of the specified
12201 pattern string, and the specified pattern will be centered in the
12202 larger row.
12203
12204 If a filename or a pattern string is not specified, the size value
12205 defaults to "320x518" (used for a randomly generated initial state).
12206
12207 @item scroll
12208 If set to 1, scroll the output upward when all the rows in the output
12209 have been already filled. If set to 0, the new generated row will be
12210 written over the top row just after the bottom row is filled.
12211 Defaults to 1.
12212
12213 @item start_full, full
12214 If set to 1, completely fill the output with generated rows before
12215 outputting the first frame.
12216 This is the default behavior, for disabling set the value to 0.
12217
12218 @item stitch
12219 If set to 1, stitch the left and right row edges together.
12220 This is the default behavior, for disabling set the value to 0.
12221 @end table
12222
12223 @subsection Examples
12224
12225 @itemize
12226 @item
12227 Read the initial state from @file{pattern}, and specify an output of
12228 size 200x400.
12229 @example
12230 cellauto=f=pattern:s=200x400
12231 @end example
12232
12233 @item
12234 Generate a random initial row with a width of 200 cells, with a fill
12235 ratio of 2/3:
12236 @example
12237 cellauto=ratio=2/3:s=200x200
12238 @end example
12239
12240 @item
12241 Create a pattern generated by rule 18 starting by a single alive cell
12242 centered on an initial row with width 100:
12243 @example
12244 cellauto=p=@@:s=100x400:full=0:rule=18
12245 @end example
12246
12247 @item
12248 Specify a more elaborated initial pattern:
12249 @example
12250 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
12251 @end example
12252
12253 @end itemize
12254
12255 @section mandelbrot
12256
12257 Generate a Mandelbrot set fractal, and progressively zoom towards the
12258 point specified with @var{start_x} and @var{start_y}.
12259
12260 This source accepts the following options:
12261
12262 @table @option
12263
12264 @item end_pts
12265 Set the terminal pts value. Default value is 400.
12266
12267 @item end_scale
12268 Set the terminal scale value.
12269 Must be a floating point value. Default value is 0.3.
12270
12271 @item inner
12272 Set the inner coloring mode, that is the algorithm used to draw the
12273 Mandelbrot fractal internal region.
12274
12275 It shall assume one of the following values:
12276 @table @option
12277 @item black
12278 Set black mode.
12279 @item convergence
12280 Show time until convergence.
12281 @item mincol
12282 Set color based on point closest to the origin of the iterations.
12283 @item period
12284 Set period mode.
12285 @end table
12286
12287 Default value is @var{mincol}.
12288
12289 @item bailout
12290 Set the bailout value. Default value is 10.0.
12291
12292 @item maxiter
12293 Set the maximum of iterations performed by the rendering
12294 algorithm. Default value is 7189.
12295
12296 @item outer
12297 Set outer coloring mode.
12298 It shall assume one of following values:
12299 @table @option
12300 @item iteration_count
12301 Set iteration cound mode.
12302 @item normalized_iteration_count
12303 set normalized iteration count mode.
12304 @end table
12305 Default value is @var{normalized_iteration_count}.
12306
12307 @item rate, r
12308 Set frame rate, expressed as number of frames per second. Default
12309 value is "25".
12310
12311 @item size, s
12312 Set frame size. For the syntax of this option, check the "Video
12313 size" section in the ffmpeg-utils manual. Default value is "640x480".
12314
12315 @item start_scale
12316 Set the initial scale value. Default value is 3.0.
12317
12318 @item start_x
12319 Set the initial x position. Must be a floating point value between
12320 -100 and 100. Default value is -0.743643887037158704752191506114774.
12321
12322 @item start_y
12323 Set the initial y position. Must be a floating point value between
12324 -100 and 100. Default value is -0.131825904205311970493132056385139.
12325 @end table
12326
12327 @section mptestsrc
12328
12329 Generate various test patterns, as generated by the MPlayer test filter.
12330
12331 The size of the generated video is fixed, and is 256x256.
12332 This source is useful in particular for testing encoding features.
12333
12334 This source accepts the following options:
12335
12336 @table @option
12337
12338 @item rate, r
12339 Specify the frame rate of the sourced video, as the number of frames
12340 generated per second. It has to be a string in the format
12341 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12342 number or a valid video frame rate abbreviation. The default value is
12343 "25".
12344
12345 @item duration, d
12346 Set the duration of the sourced video. See
12347 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12348 for the accepted syntax.
12349
12350 If not specified, or the expressed duration is negative, the video is
12351 supposed to be generated forever.
12352
12353 @item test, t
12354
12355 Set the number or the name of the test to perform. Supported tests are:
12356 @table @option
12357 @item dc_luma
12358 @item dc_chroma
12359 @item freq_luma
12360 @item freq_chroma
12361 @item amp_luma
12362 @item amp_chroma
12363 @item cbp
12364 @item mv
12365 @item ring1
12366 @item ring2
12367 @item all
12368
12369 @end table
12370
12371 Default value is "all", which will cycle through the list of all tests.
12372 @end table
12373
12374 Some examples:
12375 @example
12376 mptestsrc=t=dc_luma
12377 @end example
12378
12379 will generate a "dc_luma" test pattern.
12380
12381 @section frei0r_src
12382
12383 Provide a frei0r source.
12384
12385 To enable compilation of this filter you need to install the frei0r
12386 header and configure FFmpeg with @code{--enable-frei0r}.
12387
12388 This source accepts the following parameters:
12389
12390 @table @option
12391
12392 @item size
12393 The size of the video to generate. For the syntax of this option, check the
12394 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12395
12396 @item framerate
12397 The framerate of the generated video. It may be a string of the form
12398 @var{num}/@var{den} or a frame rate abbreviation.
12399
12400 @item filter_name
12401 The name to the frei0r source to load. For more information regarding frei0r and
12402 how to set the parameters, read the @ref{frei0r} section in the video filters
12403 documentation.
12404
12405 @item filter_params
12406 A '|'-separated list of parameters to pass to the frei0r source.
12407
12408 @end table
12409
12410 For example, to generate a frei0r partik0l source with size 200x200
12411 and frame rate 10 which is overlaid on the overlay filter main input:
12412 @example
12413 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
12414 @end example
12415
12416 @section life
12417
12418 Generate a life pattern.
12419
12420 This source is based on a generalization of John Conway's life game.
12421
12422 The sourced input represents a life grid, each pixel represents a cell
12423 which can be in one of two possible states, alive or dead. Every cell
12424 interacts with its eight neighbours, which are the cells that are
12425 horizontally, vertically, or diagonally adjacent.
12426
12427 At each interaction the grid evolves according to the adopted rule,
12428 which specifies the number of neighbor alive cells which will make a
12429 cell stay alive or born. The @option{rule} option allows one to specify
12430 the rule to adopt.
12431
12432 This source accepts the following options:
12433
12434 @table @option
12435 @item filename, f
12436 Set the file from which to read the initial grid state. In the file,
12437 each non-whitespace character is considered an alive cell, and newline
12438 is used to delimit the end of each row.
12439
12440 If this option is not specified, the initial grid is generated
12441 randomly.
12442
12443 @item rate, r
12444 Set the video rate, that is the number of frames generated per second.
12445 Default is 25.
12446
12447 @item random_fill_ratio, ratio
12448 Set the random fill ratio for the initial random grid. It is a
12449 floating point number value ranging from 0 to 1, defaults to 1/PHI.
12450 It is ignored when a file is specified.
12451
12452 @item random_seed, seed
12453 Set the seed for filling the initial random grid, must be an integer
12454 included between 0 and UINT32_MAX. If not specified, or if explicitly
12455 set to -1, the filter will try to use a good random seed on a best
12456 effort basis.
12457
12458 @item rule
12459 Set the life rule.
12460
12461 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
12462 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
12463 @var{NS} specifies the number of alive neighbor cells which make a
12464 live cell stay alive, and @var{NB} the number of alive neighbor cells
12465 which make a dead cell to become alive (i.e. to "born").
12466 "s" and "b" can be used in place of "S" and "B", respectively.
12467
12468 Alternatively a rule can be specified by an 18-bits integer. The 9
12469 high order bits are used to encode the next cell state if it is alive
12470 for each number of neighbor alive cells, the low order bits specify
12471 the rule for "borning" new cells. Higher order bits encode for an
12472 higher number of neighbor cells.
12473 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
12474 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
12475
12476 Default value is "S23/B3", which is the original Conway's game of life
12477 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
12478 cells, and will born a new cell if there are three alive cells around
12479 a dead cell.
12480
12481 @item size, s
12482 Set the size of the output video. For the syntax of this option, check the
12483 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12484
12485 If @option{filename} is specified, the size is set by default to the
12486 same size of the input file. If @option{size} is set, it must contain
12487 the size specified in the input file, and the initial grid defined in
12488 that file is centered in the larger resulting area.
12489
12490 If a filename is not specified, the size value defaults to "320x240"
12491 (used for a randomly generated initial grid).
12492
12493 @item stitch
12494 If set to 1, stitch the left and right grid edges together, and the
12495 top and bottom edges also. Defaults to 1.
12496
12497 @item mold
12498 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
12499 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
12500 value from 0 to 255.
12501
12502 @item life_color
12503 Set the color of living (or new born) cells.
12504
12505 @item death_color
12506 Set the color of dead cells. If @option{mold} is set, this is the first color
12507 used to represent a dead cell.
12508
12509 @item mold_color
12510 Set mold color, for definitely dead and moldy cells.
12511
12512 For the syntax of these 3 color options, check the "Color" section in the
12513 ffmpeg-utils manual.
12514 @end table
12515
12516 @subsection Examples
12517
12518 @itemize
12519 @item
12520 Read a grid from @file{pattern}, and center it on a grid of size
12521 300x300 pixels:
12522 @example
12523 life=f=pattern:s=300x300
12524 @end example
12525
12526 @item
12527 Generate a random grid of size 200x200, with a fill ratio of 2/3:
12528 @example
12529 life=ratio=2/3:s=200x200
12530 @end example
12531
12532 @item
12533 Specify a custom rule for evolving a randomly generated grid:
12534 @example
12535 life=rule=S14/B34
12536 @end example
12537
12538 @item
12539 Full example with slow death effect (mold) using @command{ffplay}:
12540 @example
12541 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
12542 @end example
12543 @end itemize
12544
12545 @anchor{allrgb}
12546 @anchor{allyuv}
12547 @anchor{color}
12548 @anchor{haldclutsrc}
12549 @anchor{nullsrc}
12550 @anchor{rgbtestsrc}
12551 @anchor{smptebars}
12552 @anchor{smptehdbars}
12553 @anchor{testsrc}
12554 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
12555
12556 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
12557
12558 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
12559
12560 The @code{color} source provides an uniformly colored input.
12561
12562 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
12563 @ref{haldclut} filter.
12564
12565 The @code{nullsrc} source returns unprocessed video frames. It is
12566 mainly useful to be employed in analysis / debugging tools, or as the
12567 source for filters which ignore the input data.
12568
12569 The @code{rgbtestsrc} source generates an RGB test pattern useful for
12570 detecting RGB vs BGR issues. You should see a red, green and blue
12571 stripe from top to bottom.
12572
12573 The @code{smptebars} source generates a color bars pattern, based on
12574 the SMPTE Engineering Guideline EG 1-1990.
12575
12576 The @code{smptehdbars} source generates a color bars pattern, based on
12577 the SMPTE RP 219-2002.
12578
12579 The @code{testsrc} source generates a test video pattern, showing a
12580 color pattern, a scrolling gradient and a timestamp. This is mainly
12581 intended for testing purposes.
12582
12583 The sources accept the following parameters:
12584
12585 @table @option
12586
12587 @item color, c
12588 Specify the color of the source, only available in the @code{color}
12589 source. For the syntax of this option, check the "Color" section in the
12590 ffmpeg-utils manual.
12591
12592 @item level
12593 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
12594 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
12595 pixels to be used as identity matrix for 3D lookup tables. Each component is
12596 coded on a @code{1/(N*N)} scale.
12597
12598 @item size, s
12599 Specify the size of the sourced video. For the syntax of this option, check the
12600 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12601 The default value is @code{320x240}.
12602
12603 This option is not available with the @code{haldclutsrc} filter.
12604
12605 @item rate, r
12606 Specify the frame rate of the sourced video, as the number of frames
12607 generated per second. It has to be a string in the format
12608 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12609 number or a valid video frame rate abbreviation. The default value is
12610 "25".
12611
12612 @item sar
12613 Set the sample aspect ratio of the sourced video.
12614
12615 @item duration, d
12616 Set the duration of the sourced video. See
12617 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12618 for the accepted syntax.
12619
12620 If not specified, or the expressed duration is negative, the video is
12621 supposed to be generated forever.
12622
12623 @item decimals, n
12624 Set the number of decimals to show in the timestamp, only available in the
12625 @code{testsrc} source.
12626
12627 The displayed timestamp value will correspond to the original
12628 timestamp value multiplied by the power of 10 of the specified
12629 value. Default value is 0.
12630 @end table
12631
12632 For example the following:
12633 @example
12634 testsrc=duration=5.3:size=qcif:rate=10
12635 @end example
12636
12637 will generate a video with a duration of 5.3 seconds, with size
12638 176x144 and a frame rate of 10 frames per second.
12639
12640 The following graph description will generate a red source
12641 with an opacity of 0.2, with size "qcif" and a frame rate of 10
12642 frames per second.
12643 @example
12644 color=c=red@@0.2:s=qcif:r=10
12645 @end example
12646
12647 If the input content is to be ignored, @code{nullsrc} can be used. The
12648 following command generates noise in the luminance plane by employing
12649 the @code{geq} filter:
12650 @example
12651 nullsrc=s=256x256, geq=random(1)*255:128:128
12652 @end example
12653
12654 @subsection Commands
12655
12656 The @code{color} source supports the following commands:
12657
12658 @table @option
12659 @item c, color
12660 Set the color of the created image. Accepts the same syntax of the
12661 corresponding @option{color} option.
12662 @end table
12663
12664 @c man end VIDEO SOURCES
12665
12666 @chapter Video Sinks
12667 @c man begin VIDEO SINKS
12668
12669 Below is a description of the currently available video sinks.
12670
12671 @section buffersink
12672
12673 Buffer video frames, and make them available to the end of the filter
12674 graph.
12675
12676 This sink is mainly intended for programmatic use, in particular
12677 through the interface defined in @file{libavfilter/buffersink.h}
12678 or the options system.
12679
12680 It accepts a pointer to an AVBufferSinkContext structure, which
12681 defines the incoming buffers' formats, to be passed as the opaque
12682 parameter to @code{avfilter_init_filter} for initialization.
12683
12684 @section nullsink
12685
12686 Null video sink: do absolutely nothing with the input video. It is
12687 mainly useful as a template and for use in analysis / debugging
12688 tools.
12689
12690 @c man end VIDEO SINKS
12691
12692 @chapter Multimedia Filters
12693 @c man begin MULTIMEDIA FILTERS
12694
12695 Below is a description of the currently available multimedia filters.
12696
12697 @section aphasemeter
12698
12699 Convert input audio to a video output, displaying the audio phase.
12700
12701 The filter accepts the following options:
12702
12703 @table @option
12704 @item rate, r
12705 Set the output frame rate. Default value is @code{25}.
12706
12707 @item size, s
12708 Set the video size for the output. For the syntax of this option, check the
12709 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12710 Default value is @code{800x400}.
12711
12712 @item rc
12713 @item gc
12714 @item bc
12715 Specify the red, green, blue contrast. Default values are @code{2},
12716 @code{7} and @code{1}.
12717 Allowed range is @code{[0, 255]}.
12718
12719 @item mpc
12720 Set color which will be used for drawing median phase. If color is
12721 @code{none} which is default, no median phase value will be drawn.
12722 @end table
12723
12724 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
12725 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
12726 The @code{-1} means left and right channels are completely out of phase and
12727 @code{1} means channels are in phase.
12728
12729 @section avectorscope
12730
12731 Convert input audio to a video output, representing the audio vector
12732 scope.
12733
12734 The filter is used to measure the difference between channels of stereo
12735 audio stream. A monoaural signal, consisting of identical left and right
12736 signal, results in straight vertical line. Any stereo separation is visible
12737 as a deviation from this line, creating a Lissajous figure.
12738 If the straight (or deviation from it) but horizontal line appears this
12739 indicates that the left and right channels are out of phase.
12740
12741 The filter accepts the following options:
12742
12743 @table @option
12744 @item mode, m
12745 Set the vectorscope mode.
12746
12747 Available values are:
12748 @table @samp
12749 @item lissajous
12750 Lissajous rotated by 45 degrees.
12751
12752 @item lissajous_xy
12753 Same as above but not rotated.
12754
12755 @item polar
12756 Shape resembling half of circle.
12757 @end table
12758
12759 Default value is @samp{lissajous}.
12760
12761 @item size, s
12762 Set the video size for the output. For the syntax of this option, check the
12763 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12764 Default value is @code{400x400}.
12765
12766 @item rate, r
12767 Set the output frame rate. Default value is @code{25}.
12768
12769 @item rc
12770 @item gc
12771 @item bc
12772 @item ac
12773 Specify the red, green, blue and alpha contrast. Default values are @code{40},
12774 @code{160}, @code{80} and @code{255}.
12775 Allowed range is @code{[0, 255]}.
12776
12777 @item rf
12778 @item gf
12779 @item bf
12780 @item af
12781 Specify the red, green, blue and alpha fade. Default values are @code{15},
12782 @code{10}, @code{5} and @code{5}.
12783 Allowed range is @code{[0, 255]}.
12784
12785 @item zoom
12786 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
12787 @end table
12788
12789 @subsection Examples
12790
12791 @itemize
12792 @item
12793 Complete example using @command{ffplay}:
12794 @example
12795 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
12796              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
12797 @end example
12798 @end itemize
12799
12800 @section concat
12801
12802 Concatenate audio and video streams, joining them together one after the
12803 other.
12804
12805 The filter works on segments of synchronized video and audio streams. All
12806 segments must have the same number of streams of each type, and that will
12807 also be the number of streams at output.
12808
12809 The filter accepts the following options:
12810
12811 @table @option
12812
12813 @item n
12814 Set the number of segments. Default is 2.
12815
12816 @item v
12817 Set the number of output video streams, that is also the number of video
12818 streams in each segment. Default is 1.
12819
12820 @item a
12821 Set the number of output audio streams, that is also the number of audio
12822 streams in each segment. Default is 0.
12823
12824 @item unsafe
12825 Activate unsafe mode: do not fail if segments have a different format.
12826
12827 @end table
12828
12829 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
12830 @var{a} audio outputs.
12831
12832 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
12833 segment, in the same order as the outputs, then the inputs for the second
12834 segment, etc.
12835
12836 Related streams do not always have exactly the same duration, for various
12837 reasons including codec frame size or sloppy authoring. For that reason,
12838 related synchronized streams (e.g. a video and its audio track) should be
12839 concatenated at once. The concat filter will use the duration of the longest
12840 stream in each segment (except the last one), and if necessary pad shorter
12841 audio streams with silence.
12842
12843 For this filter to work correctly, all segments must start at timestamp 0.
12844
12845 All corresponding streams must have the same parameters in all segments; the
12846 filtering system will automatically select a common pixel format for video
12847 streams, and a common sample format, sample rate and channel layout for
12848 audio streams, but other settings, such as resolution, must be converted
12849 explicitly by the user.
12850
12851 Different frame rates are acceptable but will result in variable frame rate
12852 at output; be sure to configure the output file to handle it.
12853
12854 @subsection Examples
12855
12856 @itemize
12857 @item
12858 Concatenate an opening, an episode and an ending, all in bilingual version
12859 (video in stream 0, audio in streams 1 and 2):
12860 @example
12861 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
12862   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
12863    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
12864   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
12865 @end example
12866
12867 @item
12868 Concatenate two parts, handling audio and video separately, using the
12869 (a)movie sources, and adjusting the resolution:
12870 @example
12871 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
12872 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
12873 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
12874 @end example
12875 Note that a desync will happen at the stitch if the audio and video streams
12876 do not have exactly the same duration in the first file.
12877
12878 @end itemize
12879
12880 @anchor{ebur128}
12881 @section ebur128
12882
12883 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
12884 it unchanged. By default, it logs a message at a frequency of 10Hz with the
12885 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
12886 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
12887
12888 The filter also has a video output (see the @var{video} option) with a real
12889 time graph to observe the loudness evolution. The graphic contains the logged
12890 message mentioned above, so it is not printed anymore when this option is set,
12891 unless the verbose logging is set. The main graphing area contains the
12892 short-term loudness (3 seconds of analysis), and the gauge on the right is for
12893 the momentary loudness (400 milliseconds).
12894
12895 More information about the Loudness Recommendation EBU R128 on
12896 @url{http://tech.ebu.ch/loudness}.
12897
12898 The filter accepts the following options:
12899
12900 @table @option
12901
12902 @item video
12903 Activate the video output. The audio stream is passed unchanged whether this
12904 option is set or no. The video stream will be the first output stream if
12905 activated. Default is @code{0}.
12906
12907 @item size
12908 Set the video size. This option is for video only. For the syntax of this
12909 option, check the
12910 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12911 Default and minimum resolution is @code{640x480}.
12912
12913 @item meter
12914 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
12915 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
12916 other integer value between this range is allowed.
12917
12918 @item metadata
12919 Set metadata injection. If set to @code{1}, the audio input will be segmented
12920 into 100ms output frames, each of them containing various loudness information
12921 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
12922
12923 Default is @code{0}.
12924
12925 @item framelog
12926 Force the frame logging level.
12927
12928 Available values are:
12929 @table @samp
12930 @item info
12931 information logging level
12932 @item verbose
12933 verbose logging level
12934 @end table
12935
12936 By default, the logging level is set to @var{info}. If the @option{video} or
12937 the @option{metadata} options are set, it switches to @var{verbose}.
12938
12939 @item peak
12940 Set peak mode(s).
12941
12942 Available modes can be cumulated (the option is a @code{flag} type). Possible
12943 values are:
12944 @table @samp
12945 @item none
12946 Disable any peak mode (default).
12947 @item sample
12948 Enable sample-peak mode.
12949
12950 Simple peak mode looking for the higher sample value. It logs a message
12951 for sample-peak (identified by @code{SPK}).
12952 @item true
12953 Enable true-peak mode.
12954
12955 If enabled, the peak lookup is done on an over-sampled version of the input
12956 stream for better peak accuracy. It logs a message for true-peak.
12957 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
12958 This mode requires a build with @code{libswresample}.
12959 @end table
12960
12961 @item dualmono
12962 Treat mono input files as "dual mono". If a mono file is intended for playback
12963 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
12964 If set to @code{true}, this option will compensate for this effect.
12965 Multi-channel input files are not affected by this option.
12966
12967 @item panlaw
12968 Set a specific pan law to be used for the measurement of dual mono files.
12969 This parameter is optional, and has a default value of -3.01dB.
12970 @end table
12971
12972 @subsection Examples
12973
12974 @itemize
12975 @item
12976 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
12977 @example
12978 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
12979 @end example
12980
12981 @item
12982 Run an analysis with @command{ffmpeg}:
12983 @example
12984 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
12985 @end example
12986 @end itemize
12987
12988 @section interleave, ainterleave
12989
12990 Temporally interleave frames from several inputs.
12991
12992 @code{interleave} works with video inputs, @code{ainterleave} with audio.
12993
12994 These filters read frames from several inputs and send the oldest
12995 queued frame to the output.
12996
12997 Input streams must have a well defined, monotonically increasing frame
12998 timestamp values.
12999
13000 In order to submit one frame to output, these filters need to enqueue
13001 at least one frame for each input, so they cannot work in case one
13002 input is not yet terminated and will not receive incoming frames.
13003
13004 For example consider the case when one input is a @code{select} filter
13005 which always drop input frames. The @code{interleave} filter will keep
13006 reading from that input, but it will never be able to send new frames
13007 to output until the input will send an end-of-stream signal.
13008
13009 Also, depending on inputs synchronization, the filters will drop
13010 frames in case one input receives more frames than the other ones, and
13011 the queue is already filled.
13012
13013 These filters accept the following options:
13014
13015 @table @option
13016 @item nb_inputs, n
13017 Set the number of different inputs, it is 2 by default.
13018 @end table
13019
13020 @subsection Examples
13021
13022 @itemize
13023 @item
13024 Interleave frames belonging to different streams using @command{ffmpeg}:
13025 @example
13026 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
13027 @end example
13028
13029 @item
13030 Add flickering blur effect:
13031 @example
13032 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
13033 @end example
13034 @end itemize
13035
13036 @section perms, aperms
13037
13038 Set read/write permissions for the output frames.
13039
13040 These filters are mainly aimed at developers to test direct path in the
13041 following filter in the filtergraph.
13042
13043 The filters accept the following options:
13044
13045 @table @option
13046 @item mode
13047 Select the permissions mode.
13048
13049 It accepts the following values:
13050 @table @samp
13051 @item none
13052 Do nothing. This is the default.
13053 @item ro
13054 Set all the output frames read-only.
13055 @item rw
13056 Set all the output frames directly writable.
13057 @item toggle
13058 Make the frame read-only if writable, and writable if read-only.
13059 @item random
13060 Set each output frame read-only or writable randomly.
13061 @end table
13062
13063 @item seed
13064 Set the seed for the @var{random} mode, must be an integer included between
13065 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
13066 @code{-1}, the filter will try to use a good random seed on a best effort
13067 basis.
13068 @end table
13069
13070 Note: in case of auto-inserted filter between the permission filter and the
13071 following one, the permission might not be received as expected in that
13072 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
13073 perms/aperms filter can avoid this problem.
13074
13075 @section realtime, arealtime
13076
13077 Slow down filtering to match real time approximatively.
13078
13079 These filters will pause the filtering for a variable amount of time to
13080 match the output rate with the input timestamps.
13081 They are similar to the @option{re} option to @code{ffmpeg}.
13082
13083 They accept the following options:
13084
13085 @table @option
13086 @item limit
13087 Time limit for the pauses. Any pause longer than that will be considered
13088 a timestamp discontinuity and reset the timer. Default is 2 seconds.
13089 @end table
13090
13091 @section select, aselect
13092
13093 Select frames to pass in output.
13094
13095 This filter accepts the following options:
13096
13097 @table @option
13098
13099 @item expr, e
13100 Set expression, which is evaluated for each input frame.
13101
13102 If the expression is evaluated to zero, the frame is discarded.
13103
13104 If the evaluation result is negative or NaN, the frame is sent to the
13105 first output; otherwise it is sent to the output with index
13106 @code{ceil(val)-1}, assuming that the input index starts from 0.
13107
13108 For example a value of @code{1.2} corresponds to the output with index
13109 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
13110
13111 @item outputs, n
13112 Set the number of outputs. The output to which to send the selected
13113 frame is based on the result of the evaluation. Default value is 1.
13114 @end table
13115
13116 The expression can contain the following constants:
13117
13118 @table @option
13119 @item n
13120 The (sequential) number of the filtered frame, starting from 0.
13121
13122 @item selected_n
13123 The (sequential) number of the selected frame, starting from 0.
13124
13125 @item prev_selected_n
13126 The sequential number of the last selected frame. It's NAN if undefined.
13127
13128 @item TB
13129 The timebase of the input timestamps.
13130
13131 @item pts
13132 The PTS (Presentation TimeStamp) of the filtered video frame,
13133 expressed in @var{TB} units. It's NAN if undefined.
13134
13135 @item t
13136 The PTS of the filtered video frame,
13137 expressed in seconds. It's NAN if undefined.
13138
13139 @item prev_pts
13140 The PTS of the previously filtered video frame. It's NAN if undefined.
13141
13142 @item prev_selected_pts
13143 The PTS of the last previously filtered video frame. It's NAN if undefined.
13144
13145 @item prev_selected_t
13146 The PTS of the last previously selected video frame. It's NAN if undefined.
13147
13148 @item start_pts
13149 The PTS of the first video frame in the video. It's NAN if undefined.
13150
13151 @item start_t
13152 The time of the first video frame in the video. It's NAN if undefined.
13153
13154 @item pict_type @emph{(video only)}
13155 The type of the filtered frame. It can assume one of the following
13156 values:
13157 @table @option
13158 @item I
13159 @item P
13160 @item B
13161 @item S
13162 @item SI
13163 @item SP
13164 @item BI
13165 @end table
13166
13167 @item interlace_type @emph{(video only)}
13168 The frame interlace type. It can assume one of the following values:
13169 @table @option
13170 @item PROGRESSIVE
13171 The frame is progressive (not interlaced).
13172 @item TOPFIRST
13173 The frame is top-field-first.
13174 @item BOTTOMFIRST
13175 The frame is bottom-field-first.
13176 @end table
13177
13178 @item consumed_sample_n @emph{(audio only)}
13179 the number of selected samples before the current frame
13180
13181 @item samples_n @emph{(audio only)}
13182 the number of samples in the current frame
13183
13184 @item sample_rate @emph{(audio only)}
13185 the input sample rate
13186
13187 @item key
13188 This is 1 if the filtered frame is a key-frame, 0 otherwise.
13189
13190 @item pos
13191 the position in the file of the filtered frame, -1 if the information
13192 is not available (e.g. for synthetic video)
13193
13194 @item scene @emph{(video only)}
13195 value between 0 and 1 to indicate a new scene; a low value reflects a low
13196 probability for the current frame to introduce a new scene, while a higher
13197 value means the current frame is more likely to be one (see the example below)
13198
13199 @end table
13200
13201 The default value of the select expression is "1".
13202
13203 @subsection Examples
13204
13205 @itemize
13206 @item
13207 Select all frames in input:
13208 @example
13209 select
13210 @end example
13211
13212 The example above is the same as:
13213 @example
13214 select=1
13215 @end example
13216
13217 @item
13218 Skip all frames:
13219 @example
13220 select=0
13221 @end example
13222
13223 @item
13224 Select only I-frames:
13225 @example
13226 select='eq(pict_type\,I)'
13227 @end example
13228
13229 @item
13230 Select one frame every 100:
13231 @example
13232 select='not(mod(n\,100))'
13233 @end example
13234
13235 @item
13236 Select only frames contained in the 10-20 time interval:
13237 @example
13238 select=between(t\,10\,20)
13239 @end example
13240
13241 @item
13242 Select only I frames contained in the 10-20 time interval:
13243 @example
13244 select=between(t\,10\,20)*eq(pict_type\,I)
13245 @end example
13246
13247 @item
13248 Select frames with a minimum distance of 10 seconds:
13249 @example
13250 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
13251 @end example
13252
13253 @item
13254 Use aselect to select only audio frames with samples number > 100:
13255 @example
13256 aselect='gt(samples_n\,100)'
13257 @end example
13258
13259 @item
13260 Create a mosaic of the first scenes:
13261 @example
13262 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
13263 @end example
13264
13265 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
13266 choice.
13267
13268 @item
13269 Send even and odd frames to separate outputs, and compose them:
13270 @example
13271 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
13272 @end example
13273 @end itemize
13274
13275 @section selectivecolor
13276
13277 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
13278 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
13279 by the "purity" of the color (that is, how saturated it already is).
13280
13281 This filter is similar to the Adobe Photoshop Selective Color tool.
13282
13283 The filter accepts the following options:
13284
13285 @table @option
13286 @item correction_method
13287 Select color correction method.
13288
13289 Available values are:
13290 @table @samp
13291 @item absolute
13292 Specified adjustments are applied "as-is" (added/subtracted to original pixel
13293 component value).
13294 @item relative
13295 Specified adjustments are relative to the original component value.
13296 @end table
13297 Default is @code{absolute}.
13298 @item reds
13299 Adjustments for red pixels (pixels where the red component is the maximum)
13300 @item yellows
13301 Adjustments for yellow pixels (pixels where the blue component is the minimum)
13302 @item greens
13303 Adjustments for green pixels (pixels where the green component is the maximum)
13304 @item cyans
13305 Adjustments for cyan pixels (pixels where the red component is the minimum)
13306 @item blues
13307 Adjustments for blue pixels (pixels where the blue component is the maximum)
13308 @item magentas
13309 Adjustments for magenta pixels (pixels where the green component is the minimum)
13310 @item whites
13311 Adjustments for white pixels (pixels where all components are greater than 128)
13312 @item neutrals
13313 Adjustments for all pixels except pure black and pure white
13314 @item blacks
13315 Adjustments for black pixels (pixels where all components are lesser than 128)
13316 @item psfile
13317 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
13318 @end table
13319
13320 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
13321 4 space separated floating point adjustment values in the [-1,1] range,
13322 respectively to adjust the amount of cyan, magenta, yellow and black for the
13323 pixels of its range.
13324
13325 @subsection Examples
13326
13327 @itemize
13328 @item
13329 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
13330 increase magenta by 27% in blue areas:
13331 @example
13332 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
13333 @end example
13334
13335 @item
13336 Use a Photoshop selective color preset:
13337 @example
13338 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
13339 @end example
13340 @end itemize
13341
13342 @section sendcmd, asendcmd
13343
13344 Send commands to filters in the filtergraph.
13345
13346 These filters read commands to be sent to other filters in the
13347 filtergraph.
13348
13349 @code{sendcmd} must be inserted between two video filters,
13350 @code{asendcmd} must be inserted between two audio filters, but apart
13351 from that they act the same way.
13352
13353 The specification of commands can be provided in the filter arguments
13354 with the @var{commands} option, or in a file specified by the
13355 @var{filename} option.
13356
13357 These filters accept the following options:
13358 @table @option
13359 @item commands, c
13360 Set the commands to be read and sent to the other filters.
13361 @item filename, f
13362 Set the filename of the commands to be read and sent to the other
13363 filters.
13364 @end table
13365
13366 @subsection Commands syntax
13367
13368 A commands description consists of a sequence of interval
13369 specifications, comprising a list of commands to be executed when a
13370 particular event related to that interval occurs. The occurring event
13371 is typically the current frame time entering or leaving a given time
13372 interval.
13373
13374 An interval is specified by the following syntax:
13375 @example
13376 @var{START}[-@var{END}] @var{COMMANDS};
13377 @end example
13378
13379 The time interval is specified by the @var{START} and @var{END} times.
13380 @var{END} is optional and defaults to the maximum time.
13381
13382 The current frame time is considered within the specified interval if
13383 it is included in the interval [@var{START}, @var{END}), that is when
13384 the time is greater or equal to @var{START} and is lesser than
13385 @var{END}.
13386
13387 @var{COMMANDS} consists of a sequence of one or more command
13388 specifications, separated by ",", relating to that interval.  The
13389 syntax of a command specification is given by:
13390 @example
13391 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
13392 @end example
13393
13394 @var{FLAGS} is optional and specifies the type of events relating to
13395 the time interval which enable sending the specified command, and must
13396 be a non-null sequence of identifier flags separated by "+" or "|" and
13397 enclosed between "[" and "]".
13398
13399 The following flags are recognized:
13400 @table @option
13401 @item enter
13402 The command is sent when the current frame timestamp enters the
13403 specified interval. In other words, the command is sent when the
13404 previous frame timestamp was not in the given interval, and the
13405 current is.
13406
13407 @item leave
13408 The command is sent when the current frame timestamp leaves the
13409 specified interval. In other words, the command is sent when the
13410 previous frame timestamp was in the given interval, and the
13411 current is not.
13412 @end table
13413
13414 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
13415 assumed.
13416
13417 @var{TARGET} specifies the target of the command, usually the name of
13418 the filter class or a specific filter instance name.
13419
13420 @var{COMMAND} specifies the name of the command for the target filter.
13421
13422 @var{ARG} is optional and specifies the optional list of argument for
13423 the given @var{COMMAND}.
13424
13425 Between one interval specification and another, whitespaces, or
13426 sequences of characters starting with @code{#} until the end of line,
13427 are ignored and can be used to annotate comments.
13428
13429 A simplified BNF description of the commands specification syntax
13430 follows:
13431 @example
13432 @var{COMMAND_FLAG}  ::= "enter" | "leave"
13433 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
13434 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
13435 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
13436 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
13437 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
13438 @end example
13439
13440 @subsection Examples
13441
13442 @itemize
13443 @item
13444 Specify audio tempo change at second 4:
13445 @example
13446 asendcmd=c='4.0 atempo tempo 1.5',atempo
13447 @end example
13448
13449 @item
13450 Specify a list of drawtext and hue commands in a file.
13451 @example
13452 # show text in the interval 5-10
13453 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
13454          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
13455
13456 # desaturate the image in the interval 15-20
13457 15.0-20.0 [enter] hue s 0,
13458           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
13459           [leave] hue s 1,
13460           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
13461
13462 # apply an exponential saturation fade-out effect, starting from time 25
13463 25 [enter] hue s exp(25-t)
13464 @end example
13465
13466 A filtergraph allowing to read and process the above command list
13467 stored in a file @file{test.cmd}, can be specified with:
13468 @example
13469 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
13470 @end example
13471 @end itemize
13472
13473 @anchor{setpts}
13474 @section setpts, asetpts
13475
13476 Change the PTS (presentation timestamp) of the input frames.
13477
13478 @code{setpts} works on video frames, @code{asetpts} on audio frames.
13479
13480 This filter accepts the following options:
13481
13482 @table @option
13483
13484 @item expr
13485 The expression which is evaluated for each frame to construct its timestamp.
13486
13487 @end table
13488
13489 The expression is evaluated through the eval API and can contain the following
13490 constants:
13491
13492 @table @option
13493 @item FRAME_RATE
13494 frame rate, only defined for constant frame-rate video
13495
13496 @item PTS
13497 The presentation timestamp in input
13498
13499 @item N
13500 The count of the input frame for video or the number of consumed samples,
13501 not including the current frame for audio, starting from 0.
13502
13503 @item NB_CONSUMED_SAMPLES
13504 The number of consumed samples, not including the current frame (only
13505 audio)
13506
13507 @item NB_SAMPLES, S
13508 The number of samples in the current frame (only audio)
13509
13510 @item SAMPLE_RATE, SR
13511 The audio sample rate.
13512
13513 @item STARTPTS
13514 The PTS of the first frame.
13515
13516 @item STARTT
13517 the time in seconds of the first frame
13518
13519 @item INTERLACED
13520 State whether the current frame is interlaced.
13521
13522 @item T
13523 the time in seconds of the current frame
13524
13525 @item POS
13526 original position in the file of the frame, or undefined if undefined
13527 for the current frame
13528
13529 @item PREV_INPTS
13530 The previous input PTS.
13531
13532 @item PREV_INT
13533 previous input time in seconds
13534
13535 @item PREV_OUTPTS
13536 The previous output PTS.
13537
13538 @item PREV_OUTT
13539 previous output time in seconds
13540
13541 @item RTCTIME
13542 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
13543 instead.
13544
13545 @item RTCSTART
13546 The wallclock (RTC) time at the start of the movie in microseconds.
13547
13548 @item TB
13549 The timebase of the input timestamps.
13550
13551 @end table
13552
13553 @subsection Examples
13554
13555 @itemize
13556 @item
13557 Start counting PTS from zero
13558 @example
13559 setpts=PTS-STARTPTS
13560 @end example
13561
13562 @item
13563 Apply fast motion effect:
13564 @example
13565 setpts=0.5*PTS
13566 @end example
13567
13568 @item
13569 Apply slow motion effect:
13570 @example
13571 setpts=2.0*PTS
13572 @end example
13573
13574 @item
13575 Set fixed rate of 25 frames per second:
13576 @example
13577 setpts=N/(25*TB)
13578 @end example
13579
13580 @item
13581 Set fixed rate 25 fps with some jitter:
13582 @example
13583 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
13584 @end example
13585
13586 @item
13587 Apply an offset of 10 seconds to the input PTS:
13588 @example
13589 setpts=PTS+10/TB
13590 @end example
13591
13592 @item
13593 Generate timestamps from a "live source" and rebase onto the current timebase:
13594 @example
13595 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
13596 @end example
13597
13598 @item
13599 Generate timestamps by counting samples:
13600 @example
13601 asetpts=N/SR/TB
13602 @end example
13603
13604 @end itemize
13605
13606 @section settb, asettb
13607
13608 Set the timebase to use for the output frames timestamps.
13609 It is mainly useful for testing timebase configuration.
13610
13611 It accepts the following parameters:
13612
13613 @table @option
13614
13615 @item expr, tb
13616 The expression which is evaluated into the output timebase.
13617
13618 @end table
13619
13620 The value for @option{tb} is an arithmetic expression representing a
13621 rational. The expression can contain the constants "AVTB" (the default
13622 timebase), "intb" (the input timebase) and "sr" (the sample rate,
13623 audio only). Default value is "intb".
13624
13625 @subsection Examples
13626
13627 @itemize
13628 @item
13629 Set the timebase to 1/25:
13630 @example
13631 settb=expr=1/25
13632 @end example
13633
13634 @item
13635 Set the timebase to 1/10:
13636 @example
13637 settb=expr=0.1
13638 @end example
13639
13640 @item
13641 Set the timebase to 1001/1000:
13642 @example
13643 settb=1+0.001
13644 @end example
13645
13646 @item
13647 Set the timebase to 2*intb:
13648 @example
13649 settb=2*intb
13650 @end example
13651
13652 @item
13653 Set the default timebase value:
13654 @example
13655 settb=AVTB
13656 @end example
13657 @end itemize
13658
13659 @section showcqt
13660 Convert input audio to a video output representing frequency spectrum
13661 logarithmically using Brown-Puckette constant Q transform algorithm with
13662 direct frequency domain coefficient calculation (but the transform itself
13663 is not really constant Q, instead the Q factor is actually variable/clamped),
13664 with musical tone scale, from E0 to D#10.
13665
13666 The filter accepts the following options:
13667
13668 @table @option
13669 @item size, s
13670 Specify the video size for the output. It must be even. For the syntax of this option,
13671 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13672 Default value is @code{1920x1080}.
13673
13674 @item fps, rate, r
13675 Set the output frame rate. Default value is @code{25}.
13676
13677 @item bar_h
13678 Set the bargraph height. It must be even. Default value is @code{-1} which
13679 computes the bargraph height automatically.
13680
13681 @item axis_h
13682 Set the axis height. It must be even. Default value is @code{-1} which computes
13683 the axis height automatically.
13684
13685 @item sono_h
13686 Set the sonogram height. It must be even. Default value is @code{-1} which
13687 computes the sonogram height automatically.
13688
13689 @item fullhd
13690 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
13691 instead. Default value is @code{1}.
13692
13693 @item sono_v, volume
13694 Specify the sonogram volume expression. It can contain variables:
13695 @table @option
13696 @item bar_v
13697 the @var{bar_v} evaluated expression
13698 @item frequency, freq, f
13699 the frequency where it is evaluated
13700 @item timeclamp, tc
13701 the value of @var{timeclamp} option
13702 @end table
13703 and functions:
13704 @table @option
13705 @item a_weighting(f)
13706 A-weighting of equal loudness
13707 @item b_weighting(f)
13708 B-weighting of equal loudness
13709 @item c_weighting(f)
13710 C-weighting of equal loudness.
13711 @end table
13712 Default value is @code{16}.
13713
13714 @item bar_v, volume2
13715 Specify the bargraph volume expression. It can contain variables:
13716 @table @option
13717 @item sono_v
13718 the @var{sono_v} evaluated expression
13719 @item frequency, freq, f
13720 the frequency where it is evaluated
13721 @item timeclamp, tc
13722 the value of @var{timeclamp} option
13723 @end table
13724 and functions:
13725 @table @option
13726 @item a_weighting(f)
13727 A-weighting of equal loudness
13728 @item b_weighting(f)
13729 B-weighting of equal loudness
13730 @item c_weighting(f)
13731 C-weighting of equal loudness.
13732 @end table
13733 Default value is @code{sono_v}.
13734
13735 @item sono_g, gamma
13736 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
13737 higher gamma makes the spectrum having more range. Default value is @code{3}.
13738 Acceptable range is @code{[1, 7]}.
13739
13740 @item bar_g, gamma2
13741 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
13742 @code{[1, 7]}.
13743
13744 @item timeclamp, tc
13745 Specify the transform timeclamp. At low frequency, there is trade-off between
13746 accuracy in time domain and frequency domain. If timeclamp is lower,
13747 event in time domain is represented more accurately (such as fast bass drum),
13748 otherwise event in frequency domain is represented more accurately
13749 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
13750
13751 @item basefreq
13752 Specify the transform base frequency. Default value is @code{20.01523126408007475},
13753 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
13754
13755 @item endfreq
13756 Specify the transform end frequency. Default value is @code{20495.59681441799654},
13757 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
13758
13759 @item coeffclamp
13760 This option is deprecated and ignored.
13761
13762 @item tlength
13763 Specify the transform length in time domain. Use this option to control accuracy
13764 trade-off between time domain and frequency domain at every frequency sample.
13765 It can contain variables:
13766 @table @option
13767 @item frequency, freq, f
13768 the frequency where it is evaluated
13769 @item timeclamp, tc
13770 the value of @var{timeclamp} option.
13771 @end table
13772 Default value is @code{384*tc/(384+tc*f)}.
13773
13774 @item count
13775 Specify the transform count for every video frame. Default value is @code{6}.
13776 Acceptable range is @code{[1, 30]}.
13777
13778 @item fcount
13779 Specify the transform count for every single pixel. Default value is @code{0},
13780 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
13781
13782 @item fontfile
13783 Specify font file for use with freetype to draw the axis. If not specified,
13784 use embedded font. Note that drawing with font file or embedded font is not
13785 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
13786 option instead.
13787
13788 @item fontcolor
13789 Specify font color expression. This is arithmetic expression that should return
13790 integer value 0xRRGGBB. It can contain variables:
13791 @table @option
13792 @item frequency, freq, f
13793 the frequency where it is evaluated
13794 @item timeclamp, tc
13795 the value of @var{timeclamp} option
13796 @end table
13797 and functions:
13798 @table @option
13799 @item midi(f)
13800 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
13801 @item r(x), g(x), b(x)
13802 red, green, and blue value of intensity x.
13803 @end table
13804 Default value is @code{st(0, (midi(f)-59.5)/12);
13805 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
13806 r(1-ld(1)) + b(ld(1))}.
13807
13808 @item axisfile
13809 Specify image file to draw the axis. This option override @var{fontfile} and
13810 @var{fontcolor} option.
13811
13812 @item axis, text
13813 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
13814 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
13815 Default value is @code{1}.
13816
13817 @end table
13818
13819 @subsection Examples
13820
13821 @itemize
13822 @item
13823 Playing audio while showing the spectrum:
13824 @example
13825 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
13826 @end example
13827
13828 @item
13829 Same as above, but with frame rate 30 fps:
13830 @example
13831 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
13832 @end example
13833
13834 @item
13835 Playing at 1280x720:
13836 @example
13837 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
13838 @end example
13839
13840 @item
13841 Disable sonogram display:
13842 @example
13843 sono_h=0
13844 @end example
13845
13846 @item
13847 A1 and its harmonics: A1, A2, (near)E3, A3:
13848 @example
13849 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
13850                  asplit[a][out1]; [a] showcqt [out0]'
13851 @end example
13852
13853 @item
13854 Same as above, but with more accuracy in frequency domain:
13855 @example
13856 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
13857                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
13858 @end example
13859
13860 @item
13861 Custom volume:
13862 @example
13863 bar_v=10:sono_v=bar_v*a_weighting(f)
13864 @end example
13865
13866 @item
13867 Custom gamma, now spectrum is linear to the amplitude.
13868 @example
13869 bar_g=2:sono_g=2
13870 @end example
13871
13872 @item
13873 Custom tlength equation:
13874 @example
13875 tc=0.33:tlength='st(0,0.17); 384*tc / (384 / ld(0) + tc*f /(1-ld(0))) + 384*tc / (tc*f / ld(0) + 384 /(1-ld(0)))'
13876 @end example
13877
13878 @item
13879 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
13880 @example
13881 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
13882 @end example
13883
13884 @item
13885 Custom frequency range with custom axis using image file:
13886 @example
13887 axisfile=myaxis.png:basefreq=40:endfreq=10000
13888 @end example
13889 @end itemize
13890
13891 @section showfreqs
13892
13893 Convert input audio to video output representing the audio power spectrum.
13894 Audio amplitude is on Y-axis while frequency is on X-axis.
13895
13896 The filter accepts the following options:
13897
13898 @table @option
13899 @item size, s
13900 Specify size of video. For the syntax of this option, check the
13901 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13902 Default is @code{1024x512}.
13903
13904 @item mode
13905 Set display mode.
13906 This set how each frequency bin will be represented.
13907
13908 It accepts the following values:
13909 @table @samp
13910 @item line
13911 @item bar
13912 @item dot
13913 @end table
13914 Default is @code{bar}.
13915
13916 @item ascale
13917 Set amplitude scale.
13918
13919 It accepts the following values:
13920 @table @samp
13921 @item lin
13922 Linear scale.
13923
13924 @item sqrt
13925 Square root scale.
13926
13927 @item cbrt
13928 Cubic root scale.
13929
13930 @item log
13931 Logarithmic scale.
13932 @end table
13933 Default is @code{log}.
13934
13935 @item fscale
13936 Set frequency scale.
13937
13938 It accepts the following values:
13939 @table @samp
13940 @item lin
13941 Linear scale.
13942
13943 @item log
13944 Logarithmic scale.
13945
13946 @item rlog
13947 Reverse logarithmic scale.
13948 @end table
13949 Default is @code{lin}.
13950
13951 @item win_size
13952 Set window size.
13953
13954 It accepts the following values:
13955 @table @samp
13956 @item w16
13957 @item w32
13958 @item w64
13959 @item w128
13960 @item w256
13961 @item w512
13962 @item w1024
13963 @item w2048
13964 @item w4096
13965 @item w8192
13966 @item w16384
13967 @item w32768
13968 @item w65536
13969 @end table
13970 Default is @code{w2048}
13971
13972 @item win_func
13973 Set windowing function.
13974
13975 It accepts the following values:
13976 @table @samp
13977 @item rect
13978 @item bartlett
13979 @item hanning
13980 @item hamming
13981 @item blackman
13982 @item welch
13983 @item flattop
13984 @item bharris
13985 @item bnuttall
13986 @item bhann
13987 @item sine
13988 @item nuttall
13989 @item lanczos
13990 @item gauss
13991 @end table
13992 Default is @code{hanning}.
13993
13994 @item overlap
13995 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
13996 which means optimal overlap for selected window function will be picked.
13997
13998 @item averaging
13999 Set time averaging. Setting this to 0 will display current maximal peaks.
14000 Default is @code{1}, which means time averaging is disabled.
14001
14002 @item colors
14003 Specify list of colors separated by space or by '|' which will be used to
14004 draw channel frequencies. Unrecognized or missing colors will be replaced
14005 by white color.
14006 @end table
14007
14008 @section showspectrum
14009
14010 Convert input audio to a video output, representing the audio frequency
14011 spectrum.
14012
14013 The filter accepts the following options:
14014
14015 @table @option
14016 @item size, s
14017 Specify the video size for the output. For the syntax of this option, check the
14018 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14019 Default value is @code{640x512}.
14020
14021 @item slide
14022 Specify how the spectrum should slide along the window.
14023
14024 It accepts the following values:
14025 @table @samp
14026 @item replace
14027 the samples start again on the left when they reach the right
14028 @item scroll
14029 the samples scroll from right to left
14030 @item fullframe
14031 frames are only produced when the samples reach the right
14032 @end table
14033
14034 Default value is @code{replace}.
14035
14036 @item mode
14037 Specify display mode.
14038
14039 It accepts the following values:
14040 @table @samp
14041 @item combined
14042 all channels are displayed in the same row
14043 @item separate
14044 all channels are displayed in separate rows
14045 @end table
14046
14047 Default value is @samp{combined}.
14048
14049 @item color
14050 Specify display color mode.
14051
14052 It accepts the following values:
14053 @table @samp
14054 @item channel
14055 each channel is displayed in a separate color
14056 @item intensity
14057 each channel is is displayed using the same color scheme
14058 @end table
14059
14060 Default value is @samp{channel}.
14061
14062 @item scale
14063 Specify scale used for calculating intensity color values.
14064
14065 It accepts the following values:
14066 @table @samp
14067 @item lin
14068 linear
14069 @item sqrt
14070 square root, default
14071 @item cbrt
14072 cubic root
14073 @item log
14074 logarithmic
14075 @end table
14076
14077 Default value is @samp{sqrt}.
14078
14079 @item saturation
14080 Set saturation modifier for displayed colors. Negative values provide
14081 alternative color scheme. @code{0} is no saturation at all.
14082 Saturation must be in [-10.0, 10.0] range.
14083 Default value is @code{1}.
14084
14085 @item win_func
14086 Set window function.
14087
14088 It accepts the following values:
14089 @table @samp
14090 @item none
14091 No samples pre-processing (do not expect this to be faster)
14092 @item hann
14093 Hann window
14094 @item hamming
14095 Hamming window
14096 @item blackman
14097 Blackman window
14098 @end table
14099
14100 Default value is @code{hann}.
14101 @end table
14102
14103 The usage is very similar to the showwaves filter; see the examples in that
14104 section.
14105
14106 @subsection Examples
14107
14108 @itemize
14109 @item
14110 Large window with logarithmic color scaling:
14111 @example
14112 showspectrum=s=1280x480:scale=log
14113 @end example
14114
14115 @item
14116 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
14117 @example
14118 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14119              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
14120 @end example
14121 @end itemize
14122
14123 @section showvolume
14124
14125 Convert input audio volume to a video output.
14126
14127 The filter accepts the following options:
14128
14129 @table @option
14130 @item rate, r
14131 Set video rate.
14132
14133 @item b
14134 Set border width, allowed range is [0, 5]. Default is 1.
14135
14136 @item w
14137 Set channel width, allowed range is [40, 1080]. Default is 400.
14138
14139 @item h
14140 Set channel height, allowed range is [1, 100]. Default is 20.
14141
14142 @item f
14143 Set fade, allowed range is [1, 255]. Default is 20.
14144
14145 @item c
14146 Set volume color expression.
14147
14148 The expression can use the following variables:
14149
14150 @table @option
14151 @item VOLUME
14152 Current max volume of channel in dB.
14153
14154 @item CHANNEL
14155 Current channel number, starting from 0.
14156 @end table
14157
14158 @item t
14159 If set, displays channel names. Default is enabled.
14160 @end table
14161
14162 @section showwaves
14163
14164 Convert input audio to a video output, representing the samples waves.
14165
14166 The filter accepts the following options:
14167
14168 @table @option
14169 @item size, s
14170 Specify the video size for the output. For the syntax of this option, check the
14171 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14172 Default value is @code{600x240}.
14173
14174 @item mode
14175 Set display mode.
14176
14177 Available values are:
14178 @table @samp
14179 @item point
14180 Draw a point for each sample.
14181
14182 @item line
14183 Draw a vertical line for each sample.
14184
14185 @item p2p
14186 Draw a point for each sample and a line between them.
14187
14188 @item cline
14189 Draw a centered vertical line for each sample.
14190 @end table
14191
14192 Default value is @code{point}.
14193
14194 @item n
14195 Set the number of samples which are printed on the same column. A
14196 larger value will decrease the frame rate. Must be a positive
14197 integer. This option can be set only if the value for @var{rate}
14198 is not explicitly specified.
14199
14200 @item rate, r
14201 Set the (approximate) output frame rate. This is done by setting the
14202 option @var{n}. Default value is "25".
14203
14204 @item split_channels
14205 Set if channels should be drawn separately or overlap. Default value is 0.
14206
14207 @end table
14208
14209 @subsection Examples
14210
14211 @itemize
14212 @item
14213 Output the input file audio and the corresponding video representation
14214 at the same time:
14215 @example
14216 amovie=a.mp3,asplit[out0],showwaves[out1]
14217 @end example
14218
14219 @item
14220 Create a synthetic signal and show it with showwaves, forcing a
14221 frame rate of 30 frames per second:
14222 @example
14223 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
14224 @end example
14225 @end itemize
14226
14227 @section showwavespic
14228
14229 Convert input audio to a single video frame, representing the samples waves.
14230
14231 The filter accepts the following options:
14232
14233 @table @option
14234 @item size, s
14235 Specify the video size for the output. For the syntax of this option, check the
14236 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14237 Default value is @code{600x240}.
14238
14239 @item split_channels
14240 Set if channels should be drawn separately or overlap. Default value is 0.
14241 @end table
14242
14243 @subsection Examples
14244
14245 @itemize
14246 @item
14247 Extract a channel split representation of the wave form of a whole audio track
14248 in a 1024x800 picture using @command{ffmpeg}:
14249 @example
14250 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
14251 @end example
14252 @end itemize
14253
14254 @section split, asplit
14255
14256 Split input into several identical outputs.
14257
14258 @code{asplit} works with audio input, @code{split} with video.
14259
14260 The filter accepts a single parameter which specifies the number of outputs. If
14261 unspecified, it defaults to 2.
14262
14263 @subsection Examples
14264
14265 @itemize
14266 @item
14267 Create two separate outputs from the same input:
14268 @example
14269 [in] split [out0][out1]
14270 @end example
14271
14272 @item
14273 To create 3 or more outputs, you need to specify the number of
14274 outputs, like in:
14275 @example
14276 [in] asplit=3 [out0][out1][out2]
14277 @end example
14278
14279 @item
14280 Create two separate outputs from the same input, one cropped and
14281 one padded:
14282 @example
14283 [in] split [splitout1][splitout2];
14284 [splitout1] crop=100:100:0:0    [cropout];
14285 [splitout2] pad=200:200:100:100 [padout];
14286 @end example
14287
14288 @item
14289 Create 5 copies of the input audio with @command{ffmpeg}:
14290 @example
14291 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
14292 @end example
14293 @end itemize
14294
14295 @section zmq, azmq
14296
14297 Receive commands sent through a libzmq client, and forward them to
14298 filters in the filtergraph.
14299
14300 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
14301 must be inserted between two video filters, @code{azmq} between two
14302 audio filters.
14303
14304 To enable these filters you need to install the libzmq library and
14305 headers and configure FFmpeg with @code{--enable-libzmq}.
14306
14307 For more information about libzmq see:
14308 @url{http://www.zeromq.org/}
14309
14310 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
14311 receives messages sent through a network interface defined by the
14312 @option{bind_address} option.
14313
14314 The received message must be in the form:
14315 @example
14316 @var{TARGET} @var{COMMAND} [@var{ARG}]
14317 @end example
14318
14319 @var{TARGET} specifies the target of the command, usually the name of
14320 the filter class or a specific filter instance name.
14321
14322 @var{COMMAND} specifies the name of the command for the target filter.
14323
14324 @var{ARG} is optional and specifies the optional argument list for the
14325 given @var{COMMAND}.
14326
14327 Upon reception, the message is processed and the corresponding command
14328 is injected into the filtergraph. Depending on the result, the filter
14329 will send a reply to the client, adopting the format:
14330 @example
14331 @var{ERROR_CODE} @var{ERROR_REASON}
14332 @var{MESSAGE}
14333 @end example
14334
14335 @var{MESSAGE} is optional.
14336
14337 @subsection Examples
14338
14339 Look at @file{tools/zmqsend} for an example of a zmq client which can
14340 be used to send commands processed by these filters.
14341
14342 Consider the following filtergraph generated by @command{ffplay}
14343 @example
14344 ffplay -dumpgraph 1 -f lavfi "
14345 color=s=100x100:c=red  [l];
14346 color=s=100x100:c=blue [r];
14347 nullsrc=s=200x100, zmq [bg];
14348 [bg][l]   overlay      [bg+l];
14349 [bg+l][r] overlay=x=100 "
14350 @end example
14351
14352 To change the color of the left side of the video, the following
14353 command can be used:
14354 @example
14355 echo Parsed_color_0 c yellow | tools/zmqsend
14356 @end example
14357
14358 To change the right side:
14359 @example
14360 echo Parsed_color_1 c pink | tools/zmqsend
14361 @end example
14362
14363 @c man end MULTIMEDIA FILTERS
14364
14365 @chapter Multimedia Sources
14366 @c man begin MULTIMEDIA SOURCES
14367
14368 Below is a description of the currently available multimedia sources.
14369
14370 @section amovie
14371
14372 This is the same as @ref{movie} source, except it selects an audio
14373 stream by default.
14374
14375 @anchor{movie}
14376 @section movie
14377
14378 Read audio and/or video stream(s) from a movie container.
14379
14380 It accepts the following parameters:
14381
14382 @table @option
14383 @item filename
14384 The name of the resource to read (not necessarily a file; it can also be a
14385 device or a stream accessed through some protocol).
14386
14387 @item format_name, f
14388 Specifies the format assumed for the movie to read, and can be either
14389 the name of a container or an input device. If not specified, the
14390 format is guessed from @var{movie_name} or by probing.
14391
14392 @item seek_point, sp
14393 Specifies the seek point in seconds. The frames will be output
14394 starting from this seek point. The parameter is evaluated with
14395 @code{av_strtod}, so the numerical value may be suffixed by an IS
14396 postfix. The default value is "0".
14397
14398 @item streams, s
14399 Specifies the streams to read. Several streams can be specified,
14400 separated by "+". The source will then have as many outputs, in the
14401 same order. The syntax is explained in the ``Stream specifiers''
14402 section in the ffmpeg manual. Two special names, "dv" and "da" specify
14403 respectively the default (best suited) video and audio stream. Default
14404 is "dv", or "da" if the filter is called as "amovie".
14405
14406 @item stream_index, si
14407 Specifies the index of the video stream to read. If the value is -1,
14408 the most suitable video stream will be automatically selected. The default
14409 value is "-1". Deprecated. If the filter is called "amovie", it will select
14410 audio instead of video.
14411
14412 @item loop
14413 Specifies how many times to read the stream in sequence.
14414 If the value is less than 1, the stream will be read again and again.
14415 Default value is "1".
14416
14417 Note that when the movie is looped the source timestamps are not
14418 changed, so it will generate non monotonically increasing timestamps.
14419 @end table
14420
14421 It allows overlaying a second video on top of the main input of
14422 a filtergraph, as shown in this graph:
14423 @example
14424 input -----------> deltapts0 --> overlay --> output
14425                                     ^
14426                                     |
14427 movie --> scale--> deltapts1 -------+
14428 @end example
14429 @subsection Examples
14430
14431 @itemize
14432 @item
14433 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
14434 on top of the input labelled "in":
14435 @example
14436 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
14437 [in] setpts=PTS-STARTPTS [main];
14438 [main][over] overlay=16:16 [out]
14439 @end example
14440
14441 @item
14442 Read from a video4linux2 device, and overlay it on top of the input
14443 labelled "in":
14444 @example
14445 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
14446 [in] setpts=PTS-STARTPTS [main];
14447 [main][over] overlay=16:16 [out]
14448 @end example
14449
14450 @item
14451 Read the first video stream and the audio stream with id 0x81 from
14452 dvd.vob; the video is connected to the pad named "video" and the audio is
14453 connected to the pad named "audio":
14454 @example
14455 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
14456 @end example
14457 @end itemize
14458
14459 @c man end MULTIMEDIA SOURCES