]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
dv: Correctly identify CDVC profile
[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, it is possible for filters to have multiple inputs and
7 multiple outputs.
8 To illustrate the sorts of things that are possible, we can
9 use a complex filter graph. For example, the following one:
10
11 @example
12 input --> split ---------------------> overlay --> output
13             |                             ^
14             |                             |
15             +-----> crop --> vflip -------+
16 @end example
17
18 splits the stream in two streams, sends one stream through the crop filter
19 and the vflip filter before merging it back with the other stream by
20 overlaying it on top. You can use the following command to achieve this:
21
22 @example
23 ffmpeg -i input -vf "[in] split [T1], [T2] overlay=0:H/2 [out]; [T1] crop=iw:ih/2:0:ih/2, vflip [T2]" output
24 @end example
25
26 The result will be that in output the top half of the video is mirrored
27 onto the bottom half.
28
29 Filters are loaded using the @var{-vf} or @var{-af} option passed to
30 @command{ffmpeg} or to @command{ffplay}. Filters in the same linear
31 chain are separated by commas. In our example, @var{split,
32 overlay} are in one linear chain, and @var{crop, vflip} are in
33 another. The points where the linear chains join are labeled by names
34 enclosed in square brackets. In our example, that is @var{[T1]} and
35 @var{[T2]}. The special labels @var{[in]} and @var{[out]} are the points
36 where video is input and output.
37
38 Some filters take in input a list of parameters: they are specified
39 after the filter name and an equal sign, and are separated from each other
40 by a colon.
41
42 There exist so-called @var{source filters} that do not have an
43 audio/video input, and @var{sink filters} that will not have audio/video
44 output.
45
46 @c man end FILTERING INTRODUCTION
47
48 @chapter graph2dot
49 @c man begin GRAPH2DOT
50
51 The @file{graph2dot} program included in the FFmpeg @file{tools}
52 directory can be used to parse a filter graph description and issue a
53 corresponding textual representation in the dot language.
54
55 Invoke the command:
56 @example
57 graph2dot -h
58 @end example
59
60 to see how to use @file{graph2dot}.
61
62 You can then pass the dot description to the @file{dot} program (from
63 the graphviz suite of programs) and obtain a graphical representation
64 of the filter graph.
65
66 For example the sequence of commands:
67 @example
68 echo @var{GRAPH_DESCRIPTION} | \
69 tools/graph2dot -o graph.tmp && \
70 dot -Tpng graph.tmp -o graph.png && \
71 display graph.png
72 @end example
73
74 can be used to create and display an image representing the graph
75 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
76 a complete self-contained graph, with its inputs and outputs explicitly defined.
77 For example if your command line is of the form:
78 @example
79 ffmpeg -i infile -vf scale=640:360 outfile
80 @end example
81 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
82 @example
83 nullsrc,scale=640:360,nullsink
84 @end example
85 you may also need to set the @var{nullsrc} parameters and add a @var{format}
86 filter in order to simulate a specific input file.
87
88 @c man end GRAPH2DOT
89
90 @chapter Filtergraph description
91 @c man begin FILTERGRAPH DESCRIPTION
92
93 A filtergraph is a directed graph of connected filters. It can contain
94 cycles, and there can be multiple links between a pair of
95 filters. Each link has one input pad on one side connecting it to one
96 filter from which it takes its input, and one output pad on the other
97 side connecting it to the one filter accepting its output.
98
99 Each filter in a filtergraph is an instance of a filter class
100 registered in the application, which defines the features and the
101 number of input and output pads of the filter.
102
103 A filter with no input pads is called a "source", a filter with no
104 output pads is called a "sink".
105
106 @anchor{Filtergraph syntax}
107 @section Filtergraph syntax
108
109 A filtergraph can be represented using a textual representation, which is
110 recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
111 options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
112 @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
113 @file{libavfilter/avfiltergraph.h}.
114
115 A filterchain consists of a sequence of connected filters, each one
116 connected to the previous one in the sequence. A filterchain is
117 represented by a list of ","-separated filter descriptions.
118
119 A filtergraph consists of a sequence of filterchains. A sequence of
120 filterchains is represented by a list of ";"-separated filterchain
121 descriptions.
122
123 A filter is represented by a string of the form:
124 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
125
126 @var{filter_name} is the name of the filter class of which the
127 described filter is an instance of, and has to be the name of one of
128 the filter classes registered in the program.
129 The name of the filter class is optionally followed by a string
130 "=@var{arguments}".
131
132 @var{arguments} is a string which contains the parameters used to
133 initialize the filter instance, and are described in the filter
134 descriptions below.
135
136 The list of arguments can be quoted using the character "'" as initial
137 and ending mark, and the character '\' for escaping the characters
138 within the quoted text; otherwise the argument string is considered
139 terminated when the next special character (belonging to the set
140 "[]=;,") is encountered.
141
142 The name and arguments of the filter are optionally preceded and
143 followed by a list of link labels.
144 A link label allows to name a link and associate it to a filter output
145 or input pad. The preceding labels @var{in_link_1}
146 ... @var{in_link_N}, are associated to the filter input pads,
147 the following labels @var{out_link_1} ... @var{out_link_M}, are
148 associated to the output pads.
149
150 When two link labels with the same name are found in the
151 filtergraph, a link between the corresponding input and output pad is
152 created.
153
154 If an output pad is not labelled, it is linked by default to the first
155 unlabelled input pad of the next filter in the filterchain.
156 For example in the filterchain:
157 @example
158 nullsrc, split[L1], [L2]overlay, nullsink
159 @end example
160 the split filter instance has two output pads, and the overlay filter
161 instance two input pads. The first output pad of split is labelled
162 "L1", the first input pad of overlay is labelled "L2", and the second
163 output pad of split is linked to the second input pad of overlay,
164 which are both unlabelled.
165
166 In a complete filterchain all the unlabelled filter input and output
167 pads must be connected. A filtergraph is considered valid if all the
168 filter input and output pads of all the filterchains are connected.
169
170 Libavfilter will automatically insert scale filters where format
171 conversion is required. It is possible to specify swscale flags
172 for those automatically inserted scalers by prepending
173 @code{sws_flags=@var{flags};}
174 to the filtergraph description.
175
176 Follows a BNF description for the filtergraph syntax:
177 @example
178 @var{NAME}             ::= sequence of alphanumeric characters and '_'
179 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
180 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
181 @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
182 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
183 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
184 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
185 @end example
186
187 @section Notes on filtergraph escaping
188
189 Some filter arguments require the use of special characters, typically
190 @code{:} to separate key=value pairs in a named options list. In this
191 case the user should perform a first level escaping when specifying
192 the filter arguments. For example, consider the following literal
193 string to be embedded in the @ref{drawtext} filter arguments:
194 @example
195 this is a 'string': may contain one, or more, special characters
196 @end example
197
198 Since @code{:} is special for the filter arguments syntax, it needs to
199 be escaped, so you get:
200 @example
201 text=this is a \'string\'\: may contain one, or more, special characters
202 @end example
203
204 A second level of escaping is required when embedding the filter
205 arguments in a filtergraph description, in order to escape all the
206 filtergraph special characters. Thus the example above becomes:
207 @example
208 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
209 @end example
210
211 Finally an additional level of escaping may be needed when writing the
212 filtergraph description in a shell command, which depends on the
213 escaping rules of the adopted shell. For example, assuming that
214 @code{\} is special and needs to be escaped with another @code{\}, the
215 previous string will finally result in:
216 @example
217 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
218 @end example
219
220 Sometimes, it might be more convenient to employ quoting in place of
221 escaping. For example the string:
222 @example
223 Caesar: tu quoque, Brute, fili mi
224 @end example
225
226 Can be quoted in the filter arguments as:
227 @example
228 text='Caesar: tu quoque, Brute, fili mi'
229 @end example
230
231 And finally inserted in a filtergraph like:
232 @example
233 drawtext=text=\'Caesar: tu quoque\, Brute\, fili mi\'
234 @end example
235
236 See the ``Quoting and escaping'' section in the ffmpeg-utils manual
237 for more information about the escaping and quoting rules adopted by
238 FFmpeg.
239
240 @c man end FILTERGRAPH DESCRIPTION
241
242 @chapter Audio Filters
243 @c man begin AUDIO FILTERS
244
245 When you configure your FFmpeg build, you can disable any of the
246 existing filters using @code{--disable-filters}.
247 The configure output will show the audio filters included in your
248 build.
249
250 Below is a description of the currently available audio filters.
251
252 @section aconvert
253
254 Convert the input audio format to the specified formats.
255
256 The filter accepts a string of the form:
257 "@var{sample_format}:@var{channel_layout}".
258
259 @var{sample_format} specifies the sample format, and can be a string or the
260 corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
261 suffix for a planar sample format.
262
263 @var{channel_layout} specifies the channel layout, and can be a string
264 or the corresponding number value defined in @file{libavutil/channel_layout.h}.
265
266 The special parameter "auto", signifies that the filter will
267 automatically select the output format depending on the output filter.
268
269 Some examples follow.
270
271 @itemize
272 @item
273 Convert input to float, planar, stereo:
274 @example
275 aconvert=fltp:stereo
276 @end example
277
278 @item
279 Convert input to unsigned 8-bit, automatically select out channel layout:
280 @example
281 aconvert=u8:auto
282 @end example
283 @end itemize
284
285 @section allpass
286
287 Apply a two-pole all-pass filter with central frequency (in Hz)
288 @var{frequency}, and filter-width @var{width}.
289 An all-pass filter changes the audio's frequency to phase relationship
290 without changing its frequency to amplitude relationship.
291
292 The filter accepts parameters as a list of @var{key}=@var{value}
293 pairs, separated by ":".
294
295 A description of the accepted parameters follows.
296
297 @table @option
298 @item frequency, f
299 Set frequency in Hz.
300
301 @item width_type
302 Set method to specify band-width of filter.
303 @table @option
304 @item h
305 Hz
306 @item q
307 Q-Factor
308 @item o
309 octave
310 @item s
311 slope
312 @end table
313
314 @item width, w
315 Specify the band-width of a filter in width_type units.
316 @end table
317
318 @section highpass
319
320 Apply a high-pass filter with 3dB point frequency.
321 The filter can be either single-pole, or double-pole (the default).
322 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
323
324 The filter accepts parameters as a list of @var{key}=@var{value}
325 pairs, separated by ":".
326
327 A description of the accepted parameters follows.
328
329 @table @option
330 @item frequency, f
331 Set frequency in Hz. Default is 3000.
332
333 @item poles, p
334 Set number of poles. Default is 2.
335
336 @item width_type
337 Set method to specify band-width of filter.
338 @table @option
339 @item h
340 Hz
341 @item q
342 Q-Factor
343 @item o
344 octave
345 @item s
346 slope
347 @end table
348
349 @item width, w
350 Specify the band-width of a filter in width_type units.
351 Applies only to double-pole filter.
352 The default is 0.707q and gives a Butterworth response.
353 @end table
354
355 @section lowpass
356
357 Apply a low-pass filter with 3dB point frequency.
358 The filter can be either single-pole or double-pole (the default).
359 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
360
361 The filter accepts parameters as a list of @var{key}=@var{value}
362 pairs, separated by ":".
363
364 A description of the accepted parameters follows.
365
366 @table @option
367 @item frequency, f
368 Set frequency in Hz. Default is 500.
369
370 @item poles, p
371 Set number of poles. Default is 2.
372
373 @item width_type
374 Set method to specify band-width of filter.
375 @table @option
376 @item h
377 Hz
378 @item q
379 Q-Factor
380 @item o
381 octave
382 @item s
383 slope
384 @end table
385
386 @item width, w
387 Specify the band-width of a filter in width_type units.
388 Applies only to double-pole filter.
389 The default is 0.707q and gives a Butterworth response.
390 @end table
391
392 @section bass
393
394 Boost or cut the bass (lower) frequencies of the audio using a two-pole
395 shelving filter with a response similar to that of a standard
396 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
397
398 The filter accepts parameters as a list of @var{key}=@var{value}
399 pairs, separated by ":".
400
401 A description of the accepted parameters follows.
402
403 @table @option
404 @item gain, g
405 Give the gain at 0 Hz. Its useful range is about -20
406 (for a large cut) to +20 (for a large boost).
407 Beware of clipping when using a positive gain.
408
409 @item frequency, f
410 Set the filter's central frequency and so can be used
411 to extend or reduce the frequency range to be boosted or cut.
412 The default value is @code{100} Hz.
413
414 @item width_type
415 Set method to specify band-width of filter.
416 @table @option
417 @item h
418 Hz
419 @item q
420 Q-Factor
421 @item o
422 octave
423 @item s
424 slope
425 @end table
426
427 @item width, w
428 Determine how steep is the filter's shelf transition.
429 @end table
430
431 @section treble
432
433 Boost or cut treble (upper) frequencies of the audio using a two-pole
434 shelving filter with a response similar to that of a standard
435 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
436
437 The filter accepts parameters as a list of @var{key}=@var{value}
438 pairs, separated by ":".
439
440 A description of the accepted parameters follows.
441
442 @table @option
443 @item gain, g
444 Give the gain at whichever is the lower of ~22 kHz and the
445 Nyquist frequency. Its useful range is about -20 (for a large cut)
446 to +20 (for a large boost). Beware of clipping when using a positive gain.
447
448 @item frequency, f
449 Set the filter's central frequency and so can be used
450 to extend or reduce the frequency range to be boosted or cut.
451 The default value is @code{3000} Hz.
452
453 @item width_type
454 Set method to specify band-width of filter.
455 @table @option
456 @item h
457 Hz
458 @item q
459 Q-Factor
460 @item o
461 octave
462 @item s
463 slope
464 @end table
465
466 @item width, w
467 Determine how steep is the filter's shelf transition.
468 @end table
469
470 @section bandpass
471
472 Apply a two-pole Butterworth band-pass filter with central
473 frequency @var{frequency}, and (3dB-point) band-width width.
474 The @var{csg} option selects a constant skirt gain (peak gain = Q)
475 instead of the default: constant 0dB peak gain.
476 The filter roll off at 6dB per octave (20dB per decade).
477
478 The filter accepts parameters as a list of @var{key}=@var{value}
479 pairs, separated by ":".
480
481 A description of the accepted parameters follows.
482
483 @table @option
484 @item frequency, f
485 Set the filter's central frequency. Default is @code{3000}.
486
487 @item csg
488 Constant skirt gain if set to 1. Defaults to 0.
489
490 @item width_type
491 Set method to specify band-width of filter.
492 @table @option
493 @item h
494 Hz
495 @item q
496 Q-Factor
497 @item o
498 octave
499 @item s
500 slope
501 @end table
502
503 @item width, w
504 Specify the band-width of a filter in width_type units.
505 @end table
506
507 @section bandreject
508
509 Apply a two-pole Butterworth band-reject filter with central
510 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
511 The filter roll off at 6dB per octave (20dB per decade).
512
513 The filter accepts parameters as a list of @var{key}=@var{value}
514 pairs, separated by ":".
515
516 A description of the accepted parameters follows.
517
518 @table @option
519 @item frequency, f
520 Set the filter's central frequency. Default is @code{3000}.
521
522 @item width_type
523 Set method to specify band-width of filter.
524 @table @option
525 @item h
526 Hz
527 @item q
528 Q-Factor
529 @item o
530 octave
531 @item s
532 slope
533 @end table
534
535 @item width, w
536 Specify the band-width of a filter in width_type units.
537 @end table
538
539 @section biquad
540
541 Apply a biquad IIR filter with the given coefficients.
542 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
543 are the numerator and denominator coefficients respectively.
544
545 @section equalizer
546
547 Apply a two-pole peaking equalisation (EQ) filter. With this
548 filter, the signal-level at and around a selected frequency can
549 be increased or decreased, whilst (unlike bandpass and bandreject
550 filters) that at all other frequencies is unchanged.
551
552 In order to produce complex equalisation curves, this filter can
553 be given several times, each with a different central frequency.
554
555 The filter accepts parameters as a list of @var{key}=@var{value}
556 pairs, separated by ":".
557
558 A description of the accepted parameters follows.
559
560 @table @option
561 @item frequency, f
562 Set the filter's central frequency in Hz.
563
564 @item width_type
565 Set method to specify band-width of filter.
566 @table @option
567 @item h
568 Hz
569 @item q
570 Q-Factor
571 @item o
572 octave
573 @item s
574 slope
575 @end table
576
577 @item width, w
578 Specify the band-width of a filter in width_type units.
579
580 @item gain, g
581 Set the required gain or attenuation in dB.
582 Beware of clipping when using a positive gain.
583 @end table
584
585 @section afade
586
587 Apply fade-in/out effect to input audio.
588
589 The filter accepts parameters as a list of @var{key}=@var{value}
590 pairs, separated by ":".
591
592 A description of the accepted parameters follows.
593
594 @table @option
595 @item type, t
596 Specify the effect type, can be either @code{in} for fade-in, or
597 @code{out} for a fade-out effect. Default is @code{in}.
598
599 @item start_sample, ss
600 Specify the number of the start sample for starting to apply the fade
601 effect. Default is 0.
602
603 @item nb_samples, ns
604 Specify the number of samples for which the fade effect has to last. At
605 the end of the fade-in effect the output audio will have the same
606 volume as the input audio, at the end of the fade-out transition
607 the output audio will be silence. Default is 44100.
608
609 @item start_time, st
610 Specify time in seconds for starting to apply the fade
611 effect. Default is 0.
612 If set this option is used instead of @var{start_sample} one.
613
614 @item duration, d
615 Specify the number of seconds for which the fade effect has to last. At
616 the end of the fade-in effect the output audio will have the same
617 volume as the input audio, at the end of the fade-out transition
618 the output audio will be silence. Default is 0.
619 If set this option is used instead of @var{nb_samples} one.
620
621 @item curve
622 Set curve for fade transition.
623
624 It accepts the following values:
625 @table @option
626 @item tri
627 select triangular, linear slope (default)
628 @item qsin
629 select quarter of sine wave
630 @item hsin
631 select half of sine wave
632 @item esin
633 select exponential sine wave
634 @item log
635 select logarithmic
636 @item par
637 select inverted parabola
638 @item qua
639 select quadratic
640 @item cub
641 select cubic
642 @item squ
643 select square root
644 @item cbr
645 select cubic root
646 @end table
647 @end table
648
649 @subsection Examples
650 @itemize
651 @item
652 Fade in first 15 seconds of audio:
653 @example
654 afade=t=in:ss=0:d=15
655 @end example
656
657 @item
658 Fade out last 25 seconds of a 900 seconds audio:
659 @example
660 afade=t=out:ss=875:d=25
661 @end example
662 @end itemize
663
664 @section aformat
665
666 Set output format constraints for the input audio. The framework will
667 negotiate the most appropriate format to minimize conversions.
668
669 The filter accepts the following named parameters:
670 @table @option
671
672 @item sample_fmts
673 A comma-separated list of requested sample formats.
674
675 @item sample_rates
676 A comma-separated list of requested sample rates.
677
678 @item channel_layouts
679 A comma-separated list of requested channel layouts.
680
681 @end table
682
683 If a parameter is omitted, all values are allowed.
684
685 For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
686 @example
687 aformat='sample_fmts=u8,s16:channel_layouts=stereo'
688 @end example
689
690 @section amerge
691
692 Merge two or more audio streams into a single multi-channel stream.
693
694 The filter accepts the following named options:
695
696 @table @option
697
698 @item inputs
699 Set the number of inputs. Default is 2.
700
701 @end table
702
703 If the channel layouts of the inputs are disjoint, and therefore compatible,
704 the channel layout of the output will be set accordingly and the channels
705 will be reordered as necessary. If the channel layouts of the inputs are not
706 disjoint, the output will have all the channels of the first input then all
707 the channels of the second input, in that order, and the channel layout of
708 the output will be the default value corresponding to the total number of
709 channels.
710
711 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
712 is FC+BL+BR, then the output will be in 5.1, with the channels in the
713 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
714 first input, b1 is the first channel of the second input).
715
716 On the other hand, if both input are in stereo, the output channels will be
717 in the default order: a1, a2, b1, b2, and the channel layout will be
718 arbitrarily set to 4.0, which may or may not be the expected value.
719
720 All inputs must have the same sample rate, and format.
721
722 If inputs do not have the same duration, the output will stop with the
723 shortest.
724
725 Example: merge two mono files into a stereo stream:
726 @example
727 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
728 @end example
729
730 Example: multiple merges:
731 @example
732 ffmpeg -f lavfi -i "
733 amovie=input.mkv:si=0 [a0];
734 amovie=input.mkv:si=1 [a1];
735 amovie=input.mkv:si=2 [a2];
736 amovie=input.mkv:si=3 [a3];
737 amovie=input.mkv:si=4 [a4];
738 amovie=input.mkv:si=5 [a5];
739 [a0][a1][a2][a3][a4][a5] amerge=inputs=6" -c:a pcm_s16le output.mkv
740 @end example
741
742 @section amix
743
744 Mixes multiple audio inputs into a single output.
745
746 For example
747 @example
748 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
749 @end example
750 will mix 3 input audio streams to a single output with the same duration as the
751 first input and a dropout transition time of 3 seconds.
752
753 The filter accepts the following named parameters:
754 @table @option
755
756 @item inputs
757 Number of inputs. If unspecified, it defaults to 2.
758
759 @item duration
760 How to determine the end-of-stream.
761 @table @option
762
763 @item longest
764 Duration of longest input. (default)
765
766 @item shortest
767 Duration of shortest input.
768
769 @item first
770 Duration of first input.
771
772 @end table
773
774 @item dropout_transition
775 Transition time, in seconds, for volume renormalization when an input
776 stream ends. The default value is 2 seconds.
777
778 @end table
779
780 @section anull
781
782 Pass the audio source unchanged to the output.
783
784 @section apad
785
786 Pad the end of a audio stream with silence, this can be used together with
787 -shortest to extend audio streams to the same length as the video stream.
788
789 @anchor{aresample}
790 @section aresample
791
792 Resample the input audio to the specified parameters, using the
793 libswresample library. If none are specified then the filter will
794 automatically convert between its input and output.
795
796 This filter is also able to stretch/squeeze the audio data to make it match
797 the timestamps or to inject silence / cut out audio to make it match the
798 timestamps, do a combination of both or do neither.
799
800 The filter accepts the syntax
801 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
802 expresses a sample rate and @var{resampler_options} is a list of
803 @var{key}=@var{value} pairs, separated by ":". See the
804 ffmpeg-resampler manual for the complete list of supported options.
805
806 For example, to resample the input audio to 44100Hz:
807 @example
808 aresample=44100
809 @end example
810
811 To stretch/squeeze samples to the given timestamps, with a maximum of 1000
812 samples per second compensation:
813 @example
814 aresample=async=1000
815 @end example
816
817 @section asetnsamples
818
819 Set the number of samples per each output audio frame.
820
821 The last output packet may contain a different number of samples, as
822 the filter will flush all the remaining samples when the input audio
823 signal its end.
824
825 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
826 separated by ":".
827
828 @table @option
829
830 @item nb_out_samples, n
831 Set the number of frames per each output audio frame. The number is
832 intended as the number of samples @emph{per each channel}.
833 Default value is 1024.
834
835 @item pad, p
836 If set to 1, the filter will pad the last audio frame with zeroes, so
837 that the last frame will contain the same number of samples as the
838 previous ones. Default value is 1.
839 @end table
840
841 For example, to set the number of per-frame samples to 1234 and
842 disable padding for the last frame, use:
843 @example
844 asetnsamples=n=1234:p=0
845 @end example
846
847 @section ashowinfo
848
849 Show a line containing various information for each input audio frame.
850 The input audio is not modified.
851
852 The shown line contains a sequence of key/value pairs of the form
853 @var{key}:@var{value}.
854
855 A description of each shown parameter follows:
856
857 @table @option
858 @item n
859 sequential number of the input frame, starting from 0
860
861 @item pts
862 Presentation timestamp of the input frame, in time base units; the time base
863 depends on the filter input pad, and is usually 1/@var{sample_rate}.
864
865 @item pts_time
866 presentation timestamp of the input frame in seconds
867
868 @item pos
869 position of the frame in the input stream, -1 if this information in
870 unavailable and/or meaningless (for example in case of synthetic audio)
871
872 @item fmt
873 sample format
874
875 @item chlayout
876 channel layout
877
878 @item rate
879 sample rate for the audio frame
880
881 @item nb_samples
882 number of samples (per channel) in the frame
883
884 @item checksum
885 Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
886 the data is treated as if all the planes were concatenated.
887
888 @item plane_checksums
889 A list of Adler-32 checksums for each data plane.
890 @end table
891
892 @section asplit
893
894 Split input audio into several identical outputs.
895
896 The filter accepts a single parameter which specifies the number of outputs. If
897 unspecified, it defaults to 2.
898
899 For example:
900 @example
901 [in] asplit [out0][out1]
902 @end example
903
904 will create two separate outputs from the same input.
905
906 To create 3 or more outputs, you need to specify the number of
907 outputs, like in:
908 @example
909 [in] asplit=3 [out0][out1][out2]
910 @end example
911
912 @example
913 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
914 @end example
915 will create 5 copies of the input audio.
916
917
918 @section astreamsync
919
920 Forward two audio streams and control the order the buffers are forwarded.
921
922 The argument to the filter is an expression deciding which stream should be
923 forwarded next: if the result is negative, the first stream is forwarded; if
924 the result is positive or zero, the second stream is forwarded. It can use
925 the following variables:
926
927 @table @var
928 @item b1 b2
929 number of buffers forwarded so far on each stream
930 @item s1 s2
931 number of samples forwarded so far on each stream
932 @item t1 t2
933 current timestamp of each stream
934 @end table
935
936 The default value is @code{t1-t2}, which means to always forward the stream
937 that has a smaller timestamp.
938
939 Example: stress-test @code{amerge} by randomly sending buffers on the wrong
940 input, while avoiding too much of a desynchronization:
941 @example
942 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
943 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
944 [a2] [b2] amerge
945 @end example
946
947 @section atempo
948
949 Adjust audio tempo.
950
951 The filter accepts exactly one parameter, the audio tempo. If not
952 specified then the filter will assume nominal 1.0 tempo. Tempo must
953 be in the [0.5, 2.0] range.
954
955 For example, to slow down audio to 80% tempo:
956 @example
957 atempo=0.8
958 @end example
959
960 For example, to speed up audio to 125% tempo:
961 @example
962 atempo=1.25
963 @end example
964
965 @section earwax
966
967 Make audio easier to listen to on headphones.
968
969 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
970 so that when listened to on headphones the stereo image is moved from
971 inside your head (standard for headphones) to outside and in front of
972 the listener (standard for speakers).
973
974 Ported from SoX.
975
976 @section pan
977
978 Mix channels with specific gain levels. The filter accepts the output
979 channel layout followed by a set of channels definitions.
980
981 This filter is also designed to remap efficiently the channels of an audio
982 stream.
983
984 The filter accepts parameters of the form:
985 "@var{l}:@var{outdef}:@var{outdef}:..."
986
987 @table @option
988 @item l
989 output channel layout or number of channels
990
991 @item outdef
992 output channel specification, of the form:
993 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
994
995 @item out_name
996 output channel to define, either a channel name (FL, FR, etc.) or a channel
997 number (c0, c1, etc.)
998
999 @item gain
1000 multiplicative coefficient for the channel, 1 leaving the volume unchanged
1001
1002 @item in_name
1003 input channel to use, see out_name for details; it is not possible to mix
1004 named and numbered input channels
1005 @end table
1006
1007 If the `=' in a channel specification is replaced by `<', then the gains for
1008 that specification will be renormalized so that the total is 1, thus
1009 avoiding clipping noise.
1010
1011 @subsection Mixing examples
1012
1013 For example, if you want to down-mix from stereo to mono, but with a bigger
1014 factor for the left channel:
1015 @example
1016 pan=1:c0=0.9*c0+0.1*c1
1017 @end example
1018
1019 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
1020 7-channels surround:
1021 @example
1022 pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
1023 @end example
1024
1025 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
1026 that should be preferred (see "-ac" option) unless you have very specific
1027 needs.
1028
1029 @subsection Remapping examples
1030
1031 The channel remapping will be effective if, and only if:
1032
1033 @itemize
1034 @item gain coefficients are zeroes or ones,
1035 @item only one input per channel output,
1036 @end itemize
1037
1038 If all these conditions are satisfied, the filter will notify the user ("Pure
1039 channel mapping detected"), and use an optimized and lossless method to do the
1040 remapping.
1041
1042 For example, if you have a 5.1 source and want a stereo audio stream by
1043 dropping the extra channels:
1044 @example
1045 pan="stereo: c0=FL : c1=FR"
1046 @end example
1047
1048 Given the same source, you can also switch front left and front right channels
1049 and keep the input channel layout:
1050 @example
1051 pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
1052 @end example
1053
1054 If the input is a stereo audio stream, you can mute the front left channel (and
1055 still keep the stereo channel layout) with:
1056 @example
1057 pan="stereo:c1=c1"
1058 @end example
1059
1060 Still with a stereo audio stream input, you can copy the right channel in both
1061 front left and right:
1062 @example
1063 pan="stereo: c0=FR : c1=FR"
1064 @end example
1065
1066 @section silencedetect
1067
1068 Detect silence in an audio stream.
1069
1070 This filter logs a message when it detects that the input audio volume is less
1071 or equal to a noise tolerance value for a duration greater or equal to the
1072 minimum detected noise duration.
1073
1074 The printed times and duration are expressed in seconds.
1075
1076 @table @option
1077 @item duration, d
1078 Set silence duration until notification (default is 2 seconds).
1079
1080 @item noise, n
1081 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
1082 specified value) or amplitude ratio. Default is -60dB, or 0.001.
1083 @end table
1084
1085 Detect 5 seconds of silence with -50dB noise tolerance:
1086 @example
1087 silencedetect=n=-50dB:d=5
1088 @end example
1089
1090 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
1091 tolerance in @file{silence.mp3}:
1092 @example
1093 ffmpeg -f lavfi -i amovie=silence.mp3,silencedetect=noise=0.0001 -f null -
1094 @end example
1095
1096 @section asyncts
1097 Synchronize audio data with timestamps by squeezing/stretching it and/or
1098 dropping samples/adding silence when needed.
1099
1100 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1101
1102 The filter accepts the following named parameters:
1103 @table @option
1104
1105 @item compensate
1106 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1107 by default. When disabled, time gaps are covered with silence.
1108
1109 @item min_delta
1110 Minimum difference between timestamps and audio data (in seconds) to trigger
1111 adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
1112 this filter, try setting this parameter to 0.
1113
1114 @item max_comp
1115 Maximum compensation in samples per second. Relevant only with compensate=1.
1116 Default value 500.
1117
1118 @item first_pts
1119 Assume the first pts should be this value. The time base is 1 / sample rate.
1120 This allows for padding/trimming at the start of stream. By default, no
1121 assumption is made about the first frame's expected pts, so no padding or
1122 trimming is done. For example, this could be set to 0 to pad the beginning with
1123 silence if an audio stream starts after the video stream or to trim any samples
1124 with a negative pts due to encoder delay.
1125
1126 @end table
1127
1128 @section channelsplit
1129 Split each channel in input audio stream into a separate output stream.
1130
1131 This filter accepts the following named parameters:
1132 @table @option
1133 @item channel_layout
1134 Channel layout of the input stream. Default is "stereo".
1135 @end table
1136
1137 For example, assuming a stereo input MP3 file
1138 @example
1139 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1140 @end example
1141 will create an output Matroska file with two audio streams, one containing only
1142 the left channel and the other the right channel.
1143
1144 To split a 5.1 WAV file into per-channel files
1145 @example
1146 ffmpeg -i in.wav -filter_complex
1147 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1148 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1149 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1150 side_right.wav
1151 @end example
1152
1153 @section channelmap
1154 Remap input channels to new locations.
1155
1156 This filter accepts the following named parameters:
1157 @table @option
1158 @item channel_layout
1159 Channel layout of the output stream.
1160
1161 @item map
1162 Map channels from input to output. The argument is a comma-separated list of
1163 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1164 @var{in_channel} form. @var{in_channel} can be either the name of the input
1165 channel (e.g. FL for front left) or its index in the input channel layout.
1166 @var{out_channel} is the name of the output channel or its index in the output
1167 channel layout. If @var{out_channel} is not given then it is implicitly an
1168 index, starting with zero and increasing by one for each mapping.
1169 @end table
1170
1171 If no mapping is present, the filter will implicitly map input channels to
1172 output channels preserving index.
1173
1174 For example, assuming a 5.1+downmix input MOV file
1175 @example
1176 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL\,DR-FR' out.wav
1177 @end example
1178 will create an output WAV file tagged as stereo from the downmix channels of
1179 the input.
1180
1181 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1182 @example
1183 ffmpeg -i in.wav -filter 'channelmap=1\,2\,0\,5\,3\,4:channel_layout=5.1' out.wav
1184 @end example
1185
1186 @section join
1187 Join multiple input streams into one multi-channel stream.
1188
1189 The filter accepts the following named parameters:
1190 @table @option
1191
1192 @item inputs
1193 Number of input streams. Defaults to 2.
1194
1195 @item channel_layout
1196 Desired output channel layout. Defaults to stereo.
1197
1198 @item map
1199 Map channels from inputs to output. The argument is a comma-separated list of
1200 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
1201 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
1202 can be either the name of the input channel (e.g. FL for front left) or its
1203 index in the specified input stream. @var{out_channel} is the name of the output
1204 channel.
1205 @end table
1206
1207 The filter will attempt to guess the mappings when those are not specified
1208 explicitly. It does so by first trying to find an unused matching input channel
1209 and if that fails it picks the first unused input channel.
1210
1211 E.g. to join 3 inputs (with properly set channel layouts)
1212 @example
1213 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
1214 @end example
1215
1216 To build a 5.1 output from 6 single-channel streams:
1217 @example
1218 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
1219 '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'
1220 out
1221 @end example
1222
1223 @section resample
1224 Convert the audio sample format, sample rate and channel layout. This filter is
1225 not meant to be used directly.
1226
1227 @section volume
1228
1229 Adjust the input audio volume.
1230
1231 The filter accepts the following named parameters. If the key of the
1232 first options is omitted, the arguments are interpreted according to
1233 the following syntax:
1234 @example
1235 volume=@var{volume}:@var{precision}
1236 @end example
1237
1238 @table @option
1239
1240 @item volume
1241 Expresses how the audio volume will be increased or decreased.
1242
1243 Output values are clipped to the maximum value.
1244
1245 The output audio volume is given by the relation:
1246 @example
1247 @var{output_volume} = @var{volume} * @var{input_volume}
1248 @end example
1249
1250 Default value for @var{volume} is 1.0.
1251
1252 @item precision
1253 Set the mathematical precision.
1254
1255 This determines which input sample formats will be allowed, which affects the
1256 precision of the volume scaling.
1257
1258 @table @option
1259 @item fixed
1260 8-bit fixed-point; limits input sample format to U8, S16, and S32.
1261 @item float
1262 32-bit floating-point; limits input sample format to FLT. (default)
1263 @item double
1264 64-bit floating-point; limits input sample format to DBL.
1265 @end table
1266 @end table
1267
1268 @subsection Examples
1269
1270 @itemize
1271 @item
1272 Halve the input audio volume:
1273 @example
1274 volume=volume=0.5
1275 volume=volume=1/2
1276 volume=volume=-6.0206dB
1277 @end example
1278
1279 In all the above example the named key for @option{volume} can be
1280 omitted, for example like in:
1281 @example
1282 volume=0.5
1283 @end example
1284
1285 @item
1286 Increase input audio power by 6 decibels using fixed-point precision:
1287 @example
1288 volume=volume=6dB:precision=fixed
1289 @end example
1290 @end itemize
1291
1292 @section volumedetect
1293
1294 Detect the volume of the input video.
1295
1296 The filter has no parameters. The input is not modified. Statistics about
1297 the volume will be printed in the log when the input stream end is reached.
1298
1299 In particular it will show the mean volume (root mean square), maximum
1300 volume (on a per-sample basis), and the beginning of an histogram of the
1301 registered volume values (from the maximum value to a cumulated 1/1000 of
1302 the samples).
1303
1304 All volumes are in decibels relative to the maximum PCM value.
1305
1306 Here is an excerpt of the output:
1307 @example
1308 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
1309 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
1310 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
1311 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
1312 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
1313 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
1314 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
1315 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
1316 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
1317 @end example
1318
1319 It means that:
1320 @itemize
1321 @item
1322 The mean square energy is approximately -27 dB, or 10^-2.7.
1323 @item
1324 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
1325 @item
1326 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
1327 @end itemize
1328
1329 In other words, raising the volume by +4 dB does not cause any clipping,
1330 raising it by +5 dB causes clipping for 6 samples, etc.
1331
1332 @c man end AUDIO FILTERS
1333
1334 @chapter Audio Sources
1335 @c man begin AUDIO SOURCES
1336
1337 Below is a description of the currently available audio sources.
1338
1339 @section abuffer
1340
1341 Buffer audio frames, and make them available to the filter chain.
1342
1343 This source is mainly intended for a programmatic use, in particular
1344 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
1345
1346 It accepts the following mandatory parameters:
1347 @var{sample_rate}:@var{sample_fmt}:@var{channel_layout}
1348
1349 @table @option
1350
1351 @item sample_rate
1352 The sample rate of the incoming audio buffers.
1353
1354 @item sample_fmt
1355 The sample format of the incoming audio buffers.
1356 Either a sample format name or its corresponging integer representation from
1357 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
1358
1359 @item channel_layout
1360 The channel layout of the incoming audio buffers.
1361 Either a channel layout name from channel_layout_map in
1362 @file{libavutil/channel_layout.c} or its corresponding integer representation
1363 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
1364
1365 @item channels
1366 The number of channels of the incoming audio buffers.
1367 If both @var{channels} and @var{channel_layout} are specified, then they
1368 must be consistent.
1369
1370 @end table
1371
1372 For example:
1373 @example
1374 abuffer=44100:s16p:stereo
1375 @end example
1376
1377 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
1378 Since the sample format with name "s16p" corresponds to the number
1379 6 and the "stereo" channel layout corresponds to the value 0x3, this is
1380 equivalent to:
1381 @example
1382 abuffer=44100:6:0x3
1383 @end example
1384
1385 @section aevalsrc
1386
1387 Generate an audio signal specified by an expression.
1388
1389 This source accepts in input one or more expressions (one for each
1390 channel), which are evaluated and used to generate a corresponding
1391 audio signal.
1392
1393 It accepts the syntax: @var{exprs}[::@var{options}].
1394 @var{exprs} is a list of expressions separated by ":", one for each
1395 separate channel. In case the @var{channel_layout} is not
1396 specified, the selected channel layout depends on the number of
1397 provided expressions.
1398
1399 @var{options} is an optional sequence of @var{key}=@var{value} pairs,
1400 separated by ":".
1401
1402 The description of the accepted options follows.
1403
1404 @table @option
1405
1406 @item channel_layout, c
1407 Set the channel layout. The number of channels in the specified layout
1408 must be equal to the number of specified expressions.
1409
1410 @item duration, d
1411 Set the minimum duration of the sourced audio. See the function
1412 @code{av_parse_time()} for the accepted format.
1413 Note that the resulting duration may be greater than the specified
1414 duration, as the generated audio is always cut at the end of a
1415 complete frame.
1416
1417 If not specified, or the expressed duration is negative, the audio is
1418 supposed to be generated forever.
1419
1420 @item nb_samples, n
1421 Set the number of samples per channel per each output frame,
1422 default to 1024.
1423
1424 @item sample_rate, s
1425 Specify the sample rate, default to 44100.
1426 @end table
1427
1428 Each expression in @var{exprs} can contain the following constants:
1429
1430 @table @option
1431 @item n
1432 number of the evaluated sample, starting from 0
1433
1434 @item t
1435 time of the evaluated sample expressed in seconds, starting from 0
1436
1437 @item s
1438 sample rate
1439
1440 @end table
1441
1442 @subsection Examples
1443
1444 @itemize
1445
1446 @item
1447 Generate silence:
1448 @example
1449 aevalsrc=0
1450 @end example
1451
1452 @item
1453
1454 Generate a sin signal with frequency of 440 Hz, set sample rate to
1455 8000 Hz:
1456 @example
1457 aevalsrc="sin(440*2*PI*t)::s=8000"
1458 @end example
1459
1460 @item
1461 Generate a two channels signal, specify the channel layout (Front
1462 Center + Back Center) explicitly:
1463 @example
1464 aevalsrc="sin(420*2*PI*t):cos(430*2*PI*t)::c=FC|BC"
1465 @end example
1466
1467 @item
1468 Generate white noise:
1469 @example
1470 aevalsrc="-2+random(0)"
1471 @end example
1472
1473 @item
1474 Generate an amplitude modulated signal:
1475 @example
1476 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
1477 @end example
1478
1479 @item
1480 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
1481 @example
1482 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) : 0.1*sin(2*PI*(360+2.5/2)*t)"
1483 @end example
1484
1485 @end itemize
1486
1487 @section anullsrc
1488
1489 Null audio source, return unprocessed audio frames. It is mainly useful
1490 as a template and to be employed in analysis / debugging tools, or as
1491 the source for filters which ignore the input data (for example the sox
1492 synth filter).
1493
1494 It accepts an optional sequence of @var{key}=@var{value} pairs,
1495 separated by ":".
1496
1497 The description of the accepted options follows.
1498
1499 @table @option
1500
1501 @item sample_rate, s
1502 Specify the sample rate, and defaults to 44100.
1503
1504 @item channel_layout, cl
1505
1506 Specify the channel layout, and can be either an integer or a string
1507 representing a channel layout. The default value of @var{channel_layout}
1508 is "stereo".
1509
1510 Check the channel_layout_map definition in
1511 @file{libavutil/channel_layout.c} for the mapping between strings and
1512 channel layout values.
1513
1514 @item nb_samples, n
1515 Set the number of samples per requested frames.
1516
1517 @end table
1518
1519 Follow some examples:
1520 @example
1521 #  set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
1522 anullsrc=r=48000:cl=4
1523
1524 # same as
1525 anullsrc=r=48000:cl=mono
1526 @end example
1527
1528 @section abuffer
1529 Buffer audio frames, and make them available to the filter chain.
1530
1531 This source is not intended to be part of user-supplied graph descriptions but
1532 for insertion by calling programs through the interface defined in
1533 @file{libavfilter/buffersrc.h}.
1534
1535 It accepts the following named parameters:
1536 @table @option
1537
1538 @item time_base
1539 Timebase which will be used for timestamps of submitted frames. It must be
1540 either a floating-point number or in @var{numerator}/@var{denominator} form.
1541
1542 @item sample_rate
1543 Audio sample rate.
1544
1545 @item sample_fmt
1546 Name of the sample format, as returned by @code{av_get_sample_fmt_name()}.
1547
1548 @item channel_layout
1549 Channel layout of the audio data, in the form that can be accepted by
1550 @code{av_get_channel_layout()}.
1551 @end table
1552
1553 All the parameters need to be explicitly defined.
1554
1555 @section flite
1556
1557 Synthesize a voice utterance using the libflite library.
1558
1559 To enable compilation of this filter you need to configure FFmpeg with
1560 @code{--enable-libflite}.
1561
1562 Note that the flite library is not thread-safe.
1563
1564 The source accepts parameters as a list of @var{key}=@var{value} pairs,
1565 separated by ":".
1566
1567 The description of the accepted parameters follows.
1568
1569 @table @option
1570
1571 @item list_voices
1572 If set to 1, list the names of the available voices and exit
1573 immediately. Default value is 0.
1574
1575 @item nb_samples, n
1576 Set the maximum number of samples per frame. Default value is 512.
1577
1578 @item textfile
1579 Set the filename containing the text to speak.
1580
1581 @item text
1582 Set the text to speak.
1583
1584 @item voice, v
1585 Set the voice to use for the speech synthesis. Default value is
1586 @code{kal}. See also the @var{list_voices} option.
1587 @end table
1588
1589 @subsection Examples
1590
1591 @itemize
1592 @item
1593 Read from file @file{speech.txt}, and synthetize the text using the
1594 standard flite voice:
1595 @example
1596 flite=textfile=speech.txt
1597 @end example
1598
1599 @item
1600 Read the specified text selecting the @code{slt} voice:
1601 @example
1602 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1603 @end example
1604
1605 @item
1606 Input text to ffmpeg:
1607 @example
1608 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1609 @end example
1610
1611 @item
1612 Make @file{ffplay} speak the specified text, using @code{flite} and
1613 the @code{lavfi} device:
1614 @example
1615 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
1616 @end example
1617 @end itemize
1618
1619 For more information about libflite, check:
1620 @url{http://www.speech.cs.cmu.edu/flite/}
1621
1622 @c man end AUDIO SOURCES
1623
1624 @chapter Audio Sinks
1625 @c man begin AUDIO SINKS
1626
1627 Below is a description of the currently available audio sinks.
1628
1629 @section abuffersink
1630
1631 Buffer audio frames, and make them available to the end of filter chain.
1632
1633 This sink is mainly intended for programmatic use, in particular
1634 through the interface defined in @file{libavfilter/buffersink.h}.
1635
1636 It requires a pointer to an AVABufferSinkContext structure, which
1637 defines the incoming buffers' formats, to be passed as the opaque
1638 parameter to @code{avfilter_init_filter} for initialization.
1639
1640 @section anullsink
1641
1642 Null audio sink, do absolutely nothing with the input audio. It is
1643 mainly useful as a template and to be employed in analysis / debugging
1644 tools.
1645
1646 @section abuffersink
1647 This sink is intended for programmatic use. Frames that arrive on this sink can
1648 be retrieved by the calling program using the interface defined in
1649 @file{libavfilter/buffersink.h}.
1650
1651 This filter accepts no parameters.
1652
1653 @c man end AUDIO SINKS
1654
1655 @chapter Video Filters
1656 @c man begin VIDEO FILTERS
1657
1658 When you configure your FFmpeg build, you can disable any of the
1659 existing filters using @code{--disable-filters}.
1660 The configure output will show the video filters included in your
1661 build.
1662
1663 Below is a description of the currently available video filters.
1664
1665 @section alphaextract
1666
1667 Extract the alpha component from the input as a grayscale video. This
1668 is especially useful with the @var{alphamerge} filter.
1669
1670 @section alphamerge
1671
1672 Add or replace the alpha component of the primary input with the
1673 grayscale value of a second input. This is intended for use with
1674 @var{alphaextract} to allow the transmission or storage of frame
1675 sequences that have alpha in a format that doesn't support an alpha
1676 channel.
1677
1678 For example, to reconstruct full frames from a normal YUV-encoded video
1679 and a separate video created with @var{alphaextract}, you might use:
1680 @example
1681 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
1682 @end example
1683
1684 Since this filter is designed for reconstruction, it operates on frame
1685 sequences without considering timestamps, and terminates when either
1686 input reaches end of stream. This will cause problems if your encoding
1687 pipeline drops frames. If you're trying to apply an image as an
1688 overlay to a video stream, consider the @var{overlay} filter instead.
1689
1690 @section ass
1691
1692 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
1693 and libavformat to work. On the other hand, it is limited to ASS (Advanced
1694 Substation Alpha) subtitles files.
1695
1696 @section bbox
1697
1698 Compute the bounding box for the non-black pixels in the input frame
1699 luminance plane.
1700
1701 This filter computes the bounding box containing all the pixels with a
1702 luminance value greater than the minimum allowed value.
1703 The parameters describing the bounding box are printed on the filter
1704 log.
1705
1706 @section blackdetect
1707
1708 Detect video intervals that are (almost) completely black. Can be
1709 useful to detect chapter transitions, commercials, or invalid
1710 recordings. Output lines contains the time for the start, end and
1711 duration of the detected black interval expressed in seconds.
1712
1713 In order to display the output lines, you need to set the loglevel at
1714 least to the AV_LOG_INFO value.
1715
1716 This filter accepts a list of options in the form of
1717 @var{key}=@var{value} pairs separated by ":". A description of the
1718 accepted options follows.
1719
1720 @table @option
1721 @item black_min_duration, d
1722 Set the minimum detected black duration expressed in seconds. It must
1723 be a non-negative floating point number.
1724
1725 Default value is 2.0.
1726
1727 @item picture_black_ratio_th, pic_th
1728 Set the threshold for considering a picture "black".
1729 Express the minimum value for the ratio:
1730 @example
1731 @var{nb_black_pixels} / @var{nb_pixels}
1732 @end example
1733
1734 for which a picture is considered black.
1735 Default value is 0.98.
1736
1737 @item pixel_black_th, pix_th
1738 Set the threshold for considering a pixel "black".
1739
1740 The threshold expresses the maximum pixel luminance value for which a
1741 pixel is considered "black". The provided value is scaled according to
1742 the following equation:
1743 @example
1744 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
1745 @end example
1746
1747 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
1748 the input video format, the range is [0-255] for YUV full-range
1749 formats and [16-235] for YUV non full-range formats.
1750
1751 Default value is 0.10.
1752 @end table
1753
1754 The following example sets the maximum pixel threshold to the minimum
1755 value, and detects only black intervals of 2 or more seconds:
1756 @example
1757 blackdetect=d=2:pix_th=0.00
1758 @end example
1759
1760 @section blackframe
1761
1762 Detect frames that are (almost) completely black. Can be useful to
1763 detect chapter transitions or commercials. Output lines consist of
1764 the frame number of the detected frame, the percentage of blackness,
1765 the position in the file if known or -1 and the timestamp in seconds.
1766
1767 In order to display the output lines, you need to set the loglevel at
1768 least to the AV_LOG_INFO value.
1769
1770 The filter accepts the syntax:
1771 @example
1772 blackframe[=@var{amount}:[@var{threshold}]]
1773 @end example
1774
1775 @var{amount} is the percentage of the pixels that have to be below the
1776 threshold, and defaults to 98.
1777
1778 @var{threshold} is the threshold below which a pixel value is
1779 considered black, and defaults to 32.
1780
1781 @section blend
1782
1783 Blend two video frames into each other.
1784
1785 It takes two input streams and outputs one stream, the first input is the
1786 "top" layer and second input is "bottom" layer.
1787 Output terminates when shortest input terminates.
1788
1789 This filter accepts a list of options in the form of @var{key}=@var{value}
1790 pairs separated by ":". A description of the accepted options follows.
1791
1792 @table @option
1793 @item c0_mode
1794 @item c1_mode
1795 @item c2_mode
1796 @item c3_mode
1797 @item all_mode
1798 Set blend mode for specific pixel component or all pixel components in case
1799 of @var{all_mode}. Default value is @code{normal}.
1800
1801 Available values for component modes are:
1802 @table @samp
1803 @item addition
1804 @item and
1805 @item average
1806 @item burn
1807 @item darken
1808 @item difference
1809 @item divide
1810 @item dodge
1811 @item exclusion
1812 @item hardlight
1813 @item lighten
1814 @item multiply
1815 @item negation
1816 @item normal
1817 @item or
1818 @item overlay
1819 @item phoenix
1820 @item pinlight
1821 @item reflect
1822 @item screen
1823 @item softlight
1824 @item subtract
1825 @item vividlight
1826 @item xor
1827 @end table
1828
1829 @item c0_opacity
1830 @item c1_opacity
1831 @item c2_opacity
1832 @item c3_opacity
1833 @item all_opacity
1834 Set blend opacity for specific pixel component or all pixel components in case
1835 of @var{all_expr}. Only used in combination with pixel component blend modes.
1836
1837 @item c0_expr
1838 @item c1_expr
1839 @item c2_expr
1840 @item c3_expr
1841 @item all_expr
1842 Set blend expression for specific pixel component or all pixel components in case
1843 of @var{all_expr}. Note that related mode options will be ignored if those are set.
1844
1845 The expressions can use the following variables:
1846
1847 @table @option
1848 @item X
1849 @item Y
1850 the coordinates of the current sample
1851
1852 @item W
1853 @item H
1854 the width and height of currently filtered plane
1855
1856 @item SW
1857 @item SH
1858 Width and height scale depending on the currently filtered plane. It is the
1859 ratio between the corresponding luma plane number of pixels and the current
1860 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
1861 @code{0.5,0.5} for chroma planes.
1862
1863 @item T
1864 Time of the current frame, expressed in seconds.
1865
1866 @item TOP, A
1867 Value of pixel component at current location for first video frame (top layer).
1868
1869 @item BOTTOM, B
1870 Value of pixel component at current location for second video frame (bottom layer).
1871 @end table
1872 @end table
1873
1874 Some examples follow.
1875
1876 @itemize
1877
1878 @item
1879 Apply transition from bottom layer to top layer in first 10 seconds:
1880 @example
1881 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
1882 @end example
1883
1884 @item
1885 Apply 1x1 checkerboard effect:
1886 @example
1887 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
1888 @end example
1889 @end itemize
1890
1891 @section boxblur
1892
1893 Apply boxblur algorithm to the input video.
1894
1895 The filter accepts parameters as a list of @var{key}=@var{value}
1896 pairs, separated by ":". If the key of the first options is omitted,
1897 the arguments are interpreted according to the syntax
1898 @option{luma_radius}:@option{luma_power}:@option{chroma_radius}:@option{chroma_power}:@option{alpha_radius}:@option{alpha_power}.
1899
1900 A description of the accepted options follows.
1901
1902 @table @option
1903 @item luma_radius, lr
1904 @item chroma_radius, cr
1905 @item alpha_radius, ar
1906 Set an expression for the box radius in pixels used for blurring the
1907 corresponding input plane.
1908
1909 The radius value must be a non-negative number, and must not be
1910 greater than the value of the expression @code{min(w,h)/2} for the
1911 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
1912 planes.
1913
1914 Default value for @option{luma_radius} is "2". If not specified,
1915 @option{chroma_radius} and @option{alpha_radius} default to the
1916 corresponding value set for @option{luma_radius}.
1917
1918 The expressions can contain the following constants:
1919 @table @option
1920 @item w, h
1921 the input width and height in pixels
1922
1923 @item cw, ch
1924 the input chroma image width and height in pixels
1925
1926 @item hsub, vsub
1927 horizontal and vertical chroma subsample values. For example for the
1928 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
1929 @end table
1930
1931 @item luma_power, lp
1932 @item chroma_power, cp
1933 @item alpha_power, ap
1934 Specify how many times the boxblur filter is applied to the
1935 corresponding plane.
1936
1937 Default value for @option{luma_power} is 2. If not specified,
1938 @option{chroma_power} and @option{alpha_power} default to the
1939 corresponding value set for @option{luma_power}.
1940
1941 A value of 0 will disable the effect.
1942 @end table
1943
1944 Some examples follow.
1945
1946 @itemize
1947 @item
1948 Apply a boxblur filter with luma, chroma, and alpha radius
1949 set to 2:
1950 @example
1951 boxblur=2:1
1952 @end example
1953
1954 @item
1955 Set luma radius to 2, alpha and chroma radius to 0:
1956 @example
1957 boxblur=2:1:cr=0:ar=0
1958 @end example
1959
1960 @item
1961 Set luma and chroma radius to a fraction of the video dimension:
1962 @example
1963 boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
1964 @end example
1965 @end itemize
1966
1967 @section colormatrix
1968
1969 The colormatrix filter allows conversion between any of the following color
1970 space: BT.709 (@var{bt709}), BT.601 (@var{bt601}), SMPTE-240M (@var{smpte240m})
1971 and FCC (@var{fcc}).
1972
1973 The syntax of the parameters is @var{source}:@var{destination}:
1974
1975 @example
1976 colormatrix=bt601:smpte240m
1977 @end example
1978
1979 @section copy
1980
1981 Copy the input source unchanged to the output. Mainly useful for
1982 testing purposes.
1983
1984 @section crop
1985
1986 Crop the input video.
1987
1988 This filter accepts a list of @var{key}=@var{value} pairs as argument,
1989 separated by ':'. If the key of the first options is omitted, the
1990 arguments are interpreted according to the syntax
1991 @var{out_w}:@var{out_h}:@var{x}:@var{y}:@var{keep_aspect}.
1992
1993 A description of the accepted options follows:
1994 @table @option
1995 @item w, out_w
1996 Set the crop area width. It defaults to @code{iw}.
1997 This expression is evaluated only once during the filter
1998 configuration.
1999
2000 @item h, out_h
2001 Set the crop area width. It defaults to @code{ih}.
2002 This expression is evaluated only once during the filter
2003 configuration.
2004
2005 @item x
2006 Set the expression for the x top-left coordinate of the cropped area.
2007 It defaults to @code{(in_w-out_w)/2}.
2008 This expression is evaluated per-frame.
2009
2010 @item y
2011 Set the expression for the y top-left coordinate of the cropped area.
2012 It defaults to @code{(in_h-out_h)/2}.
2013 This expression is evaluated per-frame.
2014
2015 @item keep_aspect
2016 If set to 1 will force the output display aspect ratio
2017 to be the same of the input, by changing the output sample aspect
2018 ratio. It defaults to 0.
2019 @end table
2020
2021 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
2022 expressions containing the following constants:
2023
2024 @table @option
2025 @item x, y
2026 the computed values for @var{x} and @var{y}. They are evaluated for
2027 each new frame.
2028
2029 @item in_w, in_h
2030 the input width and height
2031
2032 @item iw, ih
2033 same as @var{in_w} and @var{in_h}
2034
2035 @item out_w, out_h
2036 the output (cropped) width and height
2037
2038 @item ow, oh
2039 same as @var{out_w} and @var{out_h}
2040
2041 @item a
2042 same as @var{iw} / @var{ih}
2043
2044 @item sar
2045 input sample aspect ratio
2046
2047 @item dar
2048 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2049
2050 @item hsub, vsub
2051 horizontal and vertical chroma subsample values. For example for the
2052 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2053
2054 @item n
2055 the number of input frame, starting from 0
2056
2057 @item pos
2058 the position in the file of the input frame, NAN if unknown
2059
2060 @item t
2061 timestamp expressed in seconds, NAN if the input timestamp is unknown
2062
2063 @end table
2064
2065 The expression for @var{out_w} may depend on the value of @var{out_h},
2066 and the expression for @var{out_h} may depend on @var{out_w}, but they
2067 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
2068 evaluated after @var{out_w} and @var{out_h}.
2069
2070 The @var{x} and @var{y} parameters specify the expressions for the
2071 position of the top-left corner of the output (non-cropped) area. They
2072 are evaluated for each frame. If the evaluated value is not valid, it
2073 is approximated to the nearest valid value.
2074
2075 The expression for @var{x} may depend on @var{y}, and the expression
2076 for @var{y} may depend on @var{x}.
2077
2078 @subsection Examples
2079 @itemize
2080 @item
2081 Crop area with size 100x100 at position (12,34).
2082 @example
2083 crop=100:100:12:34
2084 @end example
2085
2086 Using named options, the example above becomes:
2087 @example
2088 crop=w=100:h=100:x=12:y=34
2089 @end example
2090
2091 @item
2092 Crop the central input area with size 100x100:
2093 @example
2094 crop=100:100
2095 @end example
2096
2097 @item
2098 Crop the central input area with size 2/3 of the input video:
2099 @example
2100 crop=2/3*in_w:2/3*in_h
2101 @end example
2102
2103 @item
2104 Crop the input video central square:
2105 @example
2106 crop=in_h
2107 @end example
2108
2109 @item
2110 Delimit the rectangle with the top-left corner placed at position
2111 100:100 and the right-bottom corner corresponding to the right-bottom
2112 corner of the input image:
2113 @example
2114 crop=in_w-100:in_h-100:100:100
2115 @end example
2116
2117 @item
2118 Crop 10 pixels from the left and right borders, and 20 pixels from
2119 the top and bottom borders
2120 @example
2121 crop=in_w-2*10:in_h-2*20
2122 @end example
2123
2124 @item
2125 Keep only the bottom right quarter of the input image:
2126 @example
2127 crop=in_w/2:in_h/2:in_w/2:in_h/2
2128 @end example
2129
2130 @item
2131 Crop height for getting Greek harmony:
2132 @example
2133 crop=in_w:1/PHI*in_w
2134 @end example
2135
2136 @item
2137 Appply trembling effect:
2138 @example
2139 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)
2140 @end example
2141
2142 @item
2143 Apply erratic camera effect depending on timestamp:
2144 @example
2145 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)"
2146 @end example
2147
2148 @item
2149 Set x depending on the value of y:
2150 @example
2151 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
2152 @end example
2153 @end itemize
2154
2155 @section cropdetect
2156
2157 Auto-detect crop size.
2158
2159 Calculate necessary cropping parameters and prints the recommended
2160 parameters through the logging system. The detected dimensions
2161 correspond to the non-black area of the input video.
2162
2163 It accepts the syntax:
2164 @example
2165 cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
2166 @end example
2167
2168 @table @option
2169
2170 @item limit
2171 Threshold, which can be optionally specified from nothing (0) to
2172 everything (255), defaults to 24.
2173
2174 @item round
2175 Value which the width/height should be divisible by, defaults to
2176 16. The offset is automatically adjusted to center the video. Use 2 to
2177 get only even dimensions (needed for 4:2:2 video). 16 is best when
2178 encoding to most video codecs.
2179
2180 @item reset
2181 Counter that determines after how many frames cropdetect will reset
2182 the previously detected largest video area and start over to detect
2183 the current optimal crop area. Defaults to 0.
2184
2185 This can be useful when channel logos distort the video area. 0
2186 indicates never reset and return the largest area encountered during
2187 playback.
2188 @end table
2189
2190 @section decimate
2191
2192 Drop frames that do not differ greatly from the previous frame in
2193 order to reduce framerate.
2194
2195 The main use of this filter is for very-low-bitrate encoding
2196 (e.g. streaming over dialup modem), but it could in theory be used for
2197 fixing movies that were inverse-telecined incorrectly.
2198
2199 The filter accepts parameters as a list of @var{key}=@var{value}
2200 pairs, separated by ":". If the key of the first options is omitted,
2201 the arguments are interpreted according to the syntax:
2202 @option{max}:@option{hi}:@option{lo}:@option{frac}.
2203
2204 A description of the accepted options follows.
2205
2206 @table @option
2207 @item max
2208 Set the maximum number of consecutive frames which can be dropped (if
2209 positive), or the minimum interval between dropped frames (if
2210 negative). If the value is 0, the frame is dropped unregarding the
2211 number of previous sequentially dropped frames.
2212
2213 Default value is 0.
2214
2215 @item hi
2216 @item lo
2217 @item frac
2218 Set the dropping threshold values.
2219
2220 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
2221 represent actual pixel value differences, so a threshold of 64
2222 corresponds to 1 unit of difference for each pixel, or the same spread
2223 out differently over the block.
2224
2225 A frame is a candidate for dropping if no 8x8 blocks differ by more
2226 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
2227 meaning the whole image) differ by more than a threshold of @option{lo}.
2228
2229 Default value for @option{hi} is 64*12, default value for @option{lo} is
2230 64*5, and default value for @option{frac} is 0.33.
2231 @end table
2232
2233 @section delogo
2234
2235 Suppress a TV station logo by a simple interpolation of the surrounding
2236 pixels. Just set a rectangle covering the logo and watch it disappear
2237 (and sometimes something even uglier appear - your mileage may vary).
2238
2239 The filter accepts parameters as a string of the form
2240 "@var{x}:@var{y}:@var{w}:@var{h}:@var{band}", or as a list of
2241 @var{key}=@var{value} pairs, separated by ":".
2242
2243 The description of the accepted parameters follows.
2244
2245 @table @option
2246
2247 @item x, y
2248 Specify the top left corner coordinates of the logo. They must be
2249 specified.
2250
2251 @item w, h
2252 Specify the width and height of the logo to clear. They must be
2253 specified.
2254
2255 @item band, t
2256 Specify the thickness of the fuzzy edge of the rectangle (added to
2257 @var{w} and @var{h}). The default value is 4.
2258
2259 @item show
2260 When set to 1, a green rectangle is drawn on the screen to simplify
2261 finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
2262 @var{band} is set to 4. The default value is 0.
2263
2264 @end table
2265
2266 Some examples follow.
2267
2268 @itemize
2269
2270 @item
2271 Set a rectangle covering the area with top left corner coordinates 0,0
2272 and size 100x77, setting a band of size 10:
2273 @example
2274 delogo=0:0:100:77:10
2275 @end example
2276
2277 @item
2278 As the previous example, but use named options:
2279 @example
2280 delogo=x=0:y=0:w=100:h=77:band=10
2281 @end example
2282
2283 @end itemize
2284
2285 @section deshake
2286
2287 Attempt to fix small changes in horizontal and/or vertical shift. This
2288 filter helps remove camera shake from hand-holding a camera, bumping a
2289 tripod, moving on a vehicle, etc.
2290
2291 The filter accepts parameters as a string of the form
2292 "@var{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}"
2293
2294 A description of the accepted parameters follows.
2295
2296 @table @option
2297
2298 @item x, y, w, h
2299 Specify a rectangular area where to limit the search for motion
2300 vectors.
2301 If desired the search for motion vectors can be limited to a
2302 rectangular area of the frame defined by its top left corner, width
2303 and height. These parameters have the same meaning as the drawbox
2304 filter which can be used to visualise the position of the bounding
2305 box.
2306
2307 This is useful when simultaneous movement of subjects within the frame
2308 might be confused for camera motion by the motion vector search.
2309
2310 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
2311 then the full frame is used. This allows later options to be set
2312 without specifying the bounding box for the motion vector search.
2313
2314 Default - search the whole frame.
2315
2316 @item rx, ry
2317 Specify the maximum extent of movement in x and y directions in the
2318 range 0-64 pixels. Default 16.
2319
2320 @item edge
2321 Specify how to generate pixels to fill blanks at the edge of the
2322 frame. An integer from 0 to 3 as follows:
2323 @table @option
2324 @item 0
2325 Fill zeroes at blank locations
2326 @item 1
2327 Original image at blank locations
2328 @item 2
2329 Extruded edge value at blank locations
2330 @item 3
2331 Mirrored edge at blank locations
2332 @end table
2333
2334 The default setting is mirror edge at blank locations.
2335
2336 @item blocksize
2337 Specify the blocksize to use for motion search. Range 4-128 pixels,
2338 default 8.
2339
2340 @item contrast
2341 Specify the contrast threshold for blocks. Only blocks with more than
2342 the specified contrast (difference between darkest and lightest
2343 pixels) will be considered. Range 1-255, default 125.
2344
2345 @item search
2346 Specify the search strategy 0 = exhaustive search, 1 = less exhaustive
2347 search. Default - exhaustive search.
2348
2349 @item filename
2350 If set then a detailed log of the motion search is written to the
2351 specified file.
2352
2353 @end table
2354
2355 @section drawbox
2356
2357 Draw a colored box on the input image.
2358
2359 The filter accepts parameters as a list of @var{key}=@var{value}
2360 pairs, separated by ":". If the key of the first options is omitted,
2361 the arguments are interpreted according to the syntax
2362 @option{x}:@option{y}:@option{width}:@option{height}:@option{color}:@option{thickness}.
2363
2364 A description of the accepted options follows.
2365
2366 @table @option
2367 @item x, y
2368 Specify the top left corner coordinates of the box. Default to 0.
2369
2370 @item width, w
2371 @item height, h
2372 Specify the width and height of the box, if 0 they are interpreted as
2373 the input width and height. Default to 0.
2374
2375 @item color, c
2376 Specify the color of the box to write, it can be the name of a color
2377 (case insensitive match) or a 0xRRGGBB[AA] sequence. If the special
2378 value @code{invert} is used, the box edge color is the same as the
2379 video with inverted luma.
2380
2381 @item thickness, t
2382 Set the thickness of the box edge. Default value is @code{4}.
2383 @end table
2384
2385 Some examples follow:
2386 @itemize
2387 @item
2388 Draw a black box around the edge of the input image:
2389 @example
2390 drawbox
2391 @end example
2392
2393 @item
2394 Draw a box with color red and an opacity of 50%:
2395 @example
2396 drawbox=10:20:200:60:red@@0.5
2397 @end example
2398
2399 The previous example can be specified as:
2400 @example
2401 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
2402 @end example
2403
2404 @item
2405 Fill the box with pink color:
2406 @example
2407 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
2408 @end example
2409 @end itemize
2410
2411 @anchor{drawtext}
2412 @section drawtext
2413
2414 Draw text string or text from specified file on top of video using the
2415 libfreetype library.
2416
2417 To enable compilation of this filter you need to configure FFmpeg with
2418 @code{--enable-libfreetype}.
2419
2420 @subsection Syntax
2421
2422 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
2423 separated by ":".
2424
2425 The description of the accepted parameters follows.
2426
2427 @table @option
2428
2429 @item box
2430 Used to draw a box around text using background color.
2431 Value should be either 1 (enable) or 0 (disable).
2432 The default value of @var{box} is 0.
2433
2434 @item boxcolor
2435 The color to be used for drawing box around text.
2436 Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
2437 (e.g. "0xff00ff"), possibly followed by an alpha specifier.
2438 The default value of @var{boxcolor} is "white".
2439
2440 @item draw
2441 Set an expression which specifies if the text should be drawn. If the
2442 expression evaluates to 0, the text is not drawn. This is useful for
2443 specifying that the text should be drawn only when specific conditions
2444 are met.
2445
2446 Default value is "1".
2447
2448 See below for the list of accepted constants and functions.
2449
2450 @item expansion
2451 Select how the @var{text} is expanded. Can be either @code{none},
2452 @code{strftime} (deprecated) or
2453 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
2454 below for details.
2455
2456 @item fix_bounds
2457 If true, check and fix text coords to avoid clipping.
2458
2459 @item fontcolor
2460 The color to be used for drawing fonts.
2461 Either a string (e.g. "red") or in 0xRRGGBB[AA] format
2462 (e.g. "0xff000033"), possibly followed by an alpha specifier.
2463 The default value of @var{fontcolor} is "black".
2464
2465 @item fontfile
2466 The font file to be used for drawing text. Path must be included.
2467 This parameter is mandatory.
2468
2469 @item fontsize
2470 The font size to be used for drawing text.
2471 The default value of @var{fontsize} is 16.
2472
2473 @item ft_load_flags
2474 Flags to be used for loading the fonts.
2475
2476 The flags map the corresponding flags supported by libfreetype, and are
2477 a combination of the following values:
2478 @table @var
2479 @item default
2480 @item no_scale
2481 @item no_hinting
2482 @item render
2483 @item no_bitmap
2484 @item vertical_layout
2485 @item force_autohint
2486 @item crop_bitmap
2487 @item pedantic
2488 @item ignore_global_advance_width
2489 @item no_recurse
2490 @item ignore_transform
2491 @item monochrome
2492 @item linear_design
2493 @item no_autohint
2494 @item end table
2495 @end table
2496
2497 Default value is "render".
2498
2499 For more information consult the documentation for the FT_LOAD_*
2500 libfreetype flags.
2501
2502 @item shadowcolor
2503 The color to be used for drawing a shadow behind the drawn text.  It
2504 can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
2505 form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
2506 The default value of @var{shadowcolor} is "black".
2507
2508 @item shadowx, shadowy
2509 The x and y offsets for the text shadow position with respect to the
2510 position of the text. They can be either positive or negative
2511 values. Default value for both is "0".
2512
2513 @item tabsize
2514 The size in number of spaces to use for rendering the tab.
2515 Default value is 4.
2516
2517 @item timecode
2518 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
2519 format. It can be used with or without text parameter. @var{timecode_rate}
2520 option must be specified.
2521
2522 @item timecode_rate, rate, r
2523 Set the timecode frame rate (timecode only).
2524
2525 @item text
2526 The text string to be drawn. The text must be a sequence of UTF-8
2527 encoded characters.
2528 This parameter is mandatory if no file is specified with the parameter
2529 @var{textfile}.
2530
2531 @item textfile
2532 A text file containing text to be drawn. The text must be a sequence
2533 of UTF-8 encoded characters.
2534
2535 This parameter is mandatory if no text string is specified with the
2536 parameter @var{text}.
2537
2538 If both @var{text} and @var{textfile} are specified, an error is thrown.
2539
2540 @item reload
2541 If set to 1, the @var{textfile} will be reloaded before each frame.
2542 Be sure to update it atomically, or it may be read partially, or even fail.
2543
2544 @item x, y
2545 The expressions which specify the offsets where text will be drawn
2546 within the video frame. They are relative to the top/left border of the
2547 output image.
2548
2549 The default value of @var{x} and @var{y} is "0".
2550
2551 See below for the list of accepted constants and functions.
2552 @end table
2553
2554 The parameters for @var{x} and @var{y} are expressions containing the
2555 following constants and functions:
2556
2557 @table @option
2558 @item dar
2559 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
2560
2561 @item hsub, vsub
2562 horizontal and vertical chroma subsample values. For example for the
2563 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2564
2565 @item line_h, lh
2566 the height of each text line
2567
2568 @item main_h, h, H
2569 the input height
2570
2571 @item main_w, w, W
2572 the input width
2573
2574 @item max_glyph_a, ascent
2575 the maximum distance from the baseline to the highest/upper grid
2576 coordinate used to place a glyph outline point, for all the rendered
2577 glyphs.
2578 It is a positive value, due to the grid's orientation with the Y axis
2579 upwards.
2580
2581 @item max_glyph_d, descent
2582 the maximum distance from the baseline to the lowest grid coordinate
2583 used to place a glyph outline point, for all the rendered glyphs.
2584 This is a negative value, due to the grid's orientation, with the Y axis
2585 upwards.
2586
2587 @item max_glyph_h
2588 maximum glyph height, that is the maximum height for all the glyphs
2589 contained in the rendered text, it is equivalent to @var{ascent} -
2590 @var{descent}.
2591
2592 @item max_glyph_w
2593 maximum glyph width, that is the maximum width for all the glyphs
2594 contained in the rendered text
2595
2596 @item n
2597 the number of input frame, starting from 0
2598
2599 @item rand(min, max)
2600 return a random number included between @var{min} and @var{max}
2601
2602 @item sar
2603 input sample aspect ratio
2604
2605 @item t
2606 timestamp expressed in seconds, NAN if the input timestamp is unknown
2607
2608 @item text_h, th
2609 the height of the rendered text
2610
2611 @item text_w, tw
2612 the width of the rendered text
2613
2614 @item x, y
2615 the x and y offset coordinates where the text is drawn.
2616
2617 These parameters allow the @var{x} and @var{y} expressions to refer
2618 each other, so you can for example specify @code{y=x/dar}.
2619 @end table
2620
2621 If libavfilter was built with @code{--enable-fontconfig}, then
2622 @option{fontfile} can be a fontconfig pattern or omitted.
2623
2624 @anchor{drawtext_expansion}
2625 @subsection Text expansion
2626
2627 If @option{expansion} is set to @code{strftime},
2628 the filter recognizes strftime() sequences in the provided text and
2629 expands them accordingly. Check the documentation of strftime(). This
2630 feature is deprecated.
2631
2632 If @option{expansion} is set to @code{none}, the text is printed verbatim.
2633
2634 If @option{expansion} is set to @code{normal} (which is the default),
2635 the following expansion mechanism is used.
2636
2637 The backslash character '\', followed by any character, always expands to
2638 the second character.
2639
2640 Sequence of the form @code{%@{...@}} are expanded. The text between the
2641 braces is a function name, possibly followed by arguments separated by ':'.
2642 If the arguments contain special characters or delimiters (':' or '@}'),
2643 they should be escaped.
2644
2645 Note that they probably must also be escaped as the value for the
2646 @option{text} option in the filter argument string and as the filter
2647 argument in the filter graph description, and possibly also for the shell,
2648 that makes up to four levels of escaping; using a text file avoids these
2649 problems.
2650
2651 The following functions are available:
2652
2653 @table @command
2654
2655 @item expr, e
2656 The expression evaluation result.
2657
2658 It must take one argument specifying the expression to be evaluated,
2659 which accepts the same constants and functions as the @var{x} and
2660 @var{y} values. Note that not all constants should be used, for
2661 example the text size is not known when evaluating the expression, so
2662 the constants @var{text_w} and @var{text_h} will have an undefined
2663 value.
2664
2665 @item gmtime
2666 The time at which the filter is running, expressed in UTC.
2667 It can accept an argument: a strftime() format string.
2668
2669 @item localtime
2670 The time at which the filter is running, expressed in the local time zone.
2671 It can accept an argument: a strftime() format string.
2672
2673 @item n, frame_num
2674 The frame number, starting from 0.
2675
2676 @item pts
2677 The timestamp of the current frame, in seconds, with microsecond accuracy.
2678
2679 @end table
2680
2681 @subsection Examples
2682
2683 Some examples follow.
2684
2685 @itemize
2686
2687 @item
2688 Draw "Test Text" with font FreeSerif, using the default values for the
2689 optional parameters.
2690
2691 @example
2692 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
2693 @end example
2694
2695 @item
2696 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
2697 and y=50 (counting from the top-left corner of the screen), text is
2698 yellow with a red box around it. Both the text and the box have an
2699 opacity of 20%.
2700
2701 @example
2702 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
2703           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
2704 @end example
2705
2706 Note that the double quotes are not necessary if spaces are not used
2707 within the parameter list.
2708
2709 @item
2710 Show the text at the center of the video frame:
2711 @example
2712 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
2713 @end example
2714
2715 @item
2716 Show a text line sliding from right to left in the last row of the video
2717 frame. The file @file{LONG_LINE} is assumed to contain a single line
2718 with no newlines.
2719 @example
2720 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
2721 @end example
2722
2723 @item
2724 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
2725 @example
2726 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
2727 @end example
2728
2729 @item
2730 Draw a single green letter "g", at the center of the input video.
2731 The glyph baseline is placed at half screen height.
2732 @example
2733 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
2734 @end example
2735
2736 @item
2737 Show text for 1 second every 3 seconds:
2738 @example
2739 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:draw=lt(mod(t\,3)\,1):text='blink'"
2740 @end example
2741
2742 @item
2743 Use fontconfig to set the font. Note that the colons need to be escaped.
2744 @example
2745 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
2746 @end example
2747
2748 @item
2749 Print the date of a real-time encoding (see strftime(3)):
2750 @example
2751 drawtext='fontfile=FreeSans.ttf:text=%@{localtime:%a %b %d %Y@}'
2752 @end example
2753
2754 @end itemize
2755
2756 For more information about libfreetype, check:
2757 @url{http://www.freetype.org/}.
2758
2759 For more information about fontconfig, check:
2760 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
2761
2762 @section edgedetect
2763
2764 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
2765
2766 This filter accepts the following optional named parameters:
2767
2768 @table @option
2769 @item low, high
2770 Set low and high threshold values used by the Canny thresholding
2771 algorithm.
2772
2773 The high threshold selects the "strong" edge pixels, which are then
2774 connected through 8-connectivity with the "weak" edge pixels selected
2775 by the low threshold.
2776
2777 @var{low} and @var{high} threshold values must be choosen in the range
2778 [0,1], and @var{low} should be lesser or equal to @var{high}.
2779
2780 Default value for @var{low} is @code{20/255}, and default value for @var{high}
2781 is @code{50/255}.
2782 @end table
2783
2784 Example:
2785 @example
2786 edgedetect=low=0.1:high=0.4
2787 @end example
2788
2789 @section fade
2790
2791 Apply fade-in/out effect to input video.
2792
2793 The filter accepts parameters as a list of @var{key}=@var{value}
2794 pairs, separated by ":". If the key of the first options is omitted,
2795 the arguments are interpreted according to the syntax
2796 @var{type}:@var{start_frame}:@var{nb_frames}.
2797
2798 A description of the accepted parameters follows.
2799
2800 @table @option
2801 @item type, t
2802 Specify if the effect type, can be either @code{in} for fade-in, or
2803 @code{out} for a fade-out effect. Default is @code{in}.
2804
2805 @item start_frame, s
2806 Specify the number of the start frame for starting to apply the fade
2807 effect. Default is 0.
2808
2809 @item nb_frames, n
2810 Specify the number of frames for which the fade effect has to last. At
2811 the end of the fade-in effect the output video will have the same
2812 intensity as the input video, at the end of the fade-out transition
2813 the output video will be completely black. Default is 25.
2814
2815 @item alpha
2816 If set to 1, fade only alpha channel, if one exists on the input.
2817 Default value is 0.
2818 @end table
2819
2820 @subsection Examples
2821 @itemize
2822 @item
2823 Fade in first 30 frames of video:
2824 @example
2825 fade=in:0:30
2826 @end example
2827
2828 The command above is equivalent to:
2829 @example
2830 fade=t=in:s=0:n=30
2831 @end example
2832
2833 @item
2834 Fade out last 45 frames of a 200-frame video:
2835 @example
2836 fade=out:155:45
2837 @end example
2838
2839 @item
2840 Fade in first 25 frames and fade out last 25 frames of a 1000-frame video:
2841 @example
2842 fade=in:0:25, fade=out:975:25
2843 @end example
2844
2845 @item
2846 Make first 5 frames black, then fade in from frame 5-24:
2847 @example
2848 fade=in:5:20
2849 @end example
2850
2851 @item
2852 Fade in alpha over first 25 frames of video:
2853 @example
2854 fade=in:0:25:alpha=1
2855 @end example
2856 @end itemize
2857
2858 @section field
2859
2860 Extract a single field from an interlaced image using stride
2861 arithmetic to avoid wasting CPU time. The output frames are marked as
2862 non-interlaced.
2863
2864 This filter accepts the following named options:
2865 @table @option
2866 @item type
2867 Specify whether to extract the top (if the value is @code{0} or
2868 @code{top}) or the bottom field (if the value is @code{1} or
2869 @code{bottom}).
2870 @end table
2871
2872 If the option key is not specified, the first value sets the @var{type}
2873 option. For example:
2874 @example
2875 field=bottom
2876 @end example
2877
2878 is equivalent to:
2879 @example
2880 field=type=bottom
2881 @end example
2882
2883 @section fieldorder
2884
2885 Transform the field order of the input video.
2886
2887 It accepts one parameter which specifies the required field order that
2888 the input interlaced video will be transformed to. The parameter can
2889 assume one of the following values:
2890
2891 @table @option
2892 @item 0 or bff
2893 output bottom field first
2894 @item 1 or tff
2895 output top field first
2896 @end table
2897
2898 Default value is "tff".
2899
2900 Transformation is achieved by shifting the picture content up or down
2901 by one line, and filling the remaining line with appropriate picture content.
2902 This method is consistent with most broadcast field order converters.
2903
2904 If the input video is not flagged as being interlaced, or it is already
2905 flagged as being of the required output field order then this filter does
2906 not alter the incoming video.
2907
2908 This filter is very useful when converting to or from PAL DV material,
2909 which is bottom field first.
2910
2911 For example:
2912 @example
2913 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
2914 @end example
2915
2916 @section fifo
2917
2918 Buffer input images and send them when they are requested.
2919
2920 This filter is mainly useful when auto-inserted by the libavfilter
2921 framework.
2922
2923 The filter does not take parameters.
2924
2925 @section format
2926
2927 Convert the input video to one of the specified pixel formats.
2928 Libavfilter will try to pick one that is supported for the input to
2929 the next filter.
2930
2931 The filter accepts a list of pixel format names, separated by ":",
2932 for example "yuv420p:monow:rgb24".
2933
2934 Some examples follow:
2935 @example
2936 # convert the input video to the format "yuv420p"
2937 format=yuv420p
2938
2939 # convert the input video to any of the formats in the list
2940 format=yuv420p:yuv444p:yuv410p
2941 @end example
2942
2943 @section fps
2944
2945 Convert the video to specified constant framerate by duplicating or dropping
2946 frames as necessary.
2947
2948 This filter accepts the following named parameters:
2949 @table @option
2950
2951 @item fps
2952 Desired output framerate. The default is @code{25}.
2953
2954 @item round
2955 Rounding method.
2956
2957 Possible values are:
2958 @table @option
2959 @item zero
2960 zero round towards 0
2961 @item inf
2962 round away from 0
2963 @item down
2964 round towards -infinity
2965 @item up
2966 round towards +infinity
2967 @item near
2968 round to nearest
2969 @end table
2970 The default is @code{near}.
2971
2972 @end table
2973
2974 Alternatively, the options can be specified as a flat string:
2975 @var{fps}[:@var{round}].
2976
2977 See also the @ref{setpts} filter.
2978
2979 @section framestep
2980
2981 Select one frame every N.
2982
2983 This filter accepts in input a string representing a positive
2984 integer. Default argument is @code{1}.
2985
2986 @anchor{frei0r}
2987 @section frei0r
2988
2989 Apply a frei0r effect to the input video.
2990
2991 To enable compilation of this filter you need to install the frei0r
2992 header and configure FFmpeg with @code{--enable-frei0r}.
2993
2994 The filter supports the syntax:
2995 @example
2996 @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
2997 @end example
2998
2999 @var{filter_name} is the name of the frei0r effect to load. If the
3000 environment variable @env{FREI0R_PATH} is defined, the frei0r effect
3001 is searched in each one of the directories specified by the colon (or
3002 semicolon on Windows platforms) separated list in @env{FREIOR_PATH},
3003 otherwise in the standard frei0r paths, which are in this order:
3004 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
3005 @file{/usr/lib/frei0r-1/}.
3006
3007 @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
3008 for the frei0r effect.
3009
3010 A frei0r effect parameter can be a boolean (whose values are specified
3011 with "y" and "n"), a double, a color (specified by the syntax
3012 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
3013 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
3014 description), a position (specified by the syntax @var{X}/@var{Y},
3015 @var{X} and @var{Y} being float numbers) and a string.
3016
3017 The number and kind of parameters depend on the loaded effect. If an
3018 effect parameter is not specified the default value is set.
3019
3020 Some examples follow:
3021
3022 @itemize
3023 @item
3024 Apply the distort0r effect, set the first two double parameters:
3025 @example
3026 frei0r=distort0r:0.5:0.01
3027 @end example
3028
3029 @item
3030 Apply the colordistance effect, take a color as first parameter:
3031 @example
3032 frei0r=colordistance:0.2/0.3/0.4
3033 frei0r=colordistance:violet
3034 frei0r=colordistance:0x112233
3035 @end example
3036
3037 @item
3038 Apply the perspective effect, specify the top left and top right image
3039 positions:
3040 @example
3041 frei0r=perspective:0.2/0.2:0.8/0.2
3042 @end example
3043 @end itemize
3044
3045 For more information see:
3046 @url{http://frei0r.dyne.org}
3047
3048 @section geq
3049
3050 The filter takes one, two, three or four equations as parameter, separated by ':'.
3051 The first equation is mandatory and applies to the luma plane. The two
3052 following are respectively for chroma blue and chroma red planes.
3053
3054 The filter syntax allows named parameters:
3055
3056 @table @option
3057 @item lum_expr
3058 the luminance expression
3059 @item cb_expr
3060 the chrominance blue expression
3061 @item cr_expr
3062 the chrominance red expression
3063 @item alpha_expr
3064 the alpha expression
3065 @end table
3066
3067 If one of the chrominance expression is not defined, it falls back on the other
3068 one. If no alpha expression is specified it will evaluate to opaque value.
3069 If none of chrominance expressions are
3070 specified, they will evaluate the luminance expression.
3071
3072 The expressions can use the following variables and functions:
3073
3074 @table @option
3075 @item N
3076 The sequential number of the filtered frame, starting from @code{0}.
3077
3078 @item X, Y
3079 The coordinates of the current sample.
3080
3081 @item W, H
3082 The width and height of the image.
3083
3084 @item SW, SH
3085 Width and height scale depending on the currently filtered plane. It is the
3086 ratio between the corresponding luma plane number of pixels and the current
3087 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3088 @code{0.5,0.5} for chroma planes.
3089
3090 @item T
3091 Time of the current frame, expressed in seconds.
3092
3093 @item p(x, y)
3094 Return the value of the pixel at location (@var{x},@var{y}) of the current
3095 plane.
3096
3097 @item lum(x, y)
3098 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
3099 plane.
3100
3101 @item cb(x, y)
3102 Return the value of the pixel at location (@var{x},@var{y}) of the
3103 blue-difference chroma plane. Returns 0 if there is no such plane.
3104
3105 @item cr(x, y)
3106 Return the value of the pixel at location (@var{x},@var{y}) of the
3107 red-difference chroma plane. Returns 0 if there is no such plane.
3108
3109 @item alpha(x, y)
3110 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
3111 plane. Returns 0 if there is no such plane.
3112 @end table
3113
3114 For functions, if @var{x} and @var{y} are outside the area, the value will be
3115 automatically clipped to the closer edge.
3116
3117 Some examples follow:
3118
3119 @itemize
3120 @item
3121 Flip the image horizontally:
3122 @example
3123 geq=p(W-X\,Y)
3124 @end example
3125
3126 @item
3127 Generate a bidimensional sine wave, with angle @code{PI/3} and a
3128 wavelength of 100 pixels:
3129 @example
3130 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
3131 @end example
3132
3133 @item
3134 Generate a fancy enigmatic moving light:
3135 @example
3136 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
3137 @end example
3138 @end itemize
3139
3140 @section gradfun
3141
3142 Fix the banding artifacts that are sometimes introduced into nearly flat
3143 regions by truncation to 8bit color depth.
3144 Interpolate the gradients that should go where the bands are, and
3145 dither them.
3146
3147 This filter is designed for playback only.  Do not use it prior to
3148 lossy compression, because compression tends to lose the dither and
3149 bring back the bands.
3150
3151 The filter accepts a list of options in the form of @var{key}=@var{value} pairs
3152 separated by ":". A description of the accepted options follows.
3153
3154 @table @option
3155
3156 @item strength
3157 The maximum amount by which the filter will change
3158 any one pixel. Also the threshold for detecting nearly flat
3159 regions. Acceptable values range from @code{0.51} to @code{64}, default value
3160 is @code{1.2}.
3161
3162 @item radius
3163 The neighborhood to fit the gradient to. A larger
3164 radius makes for smoother gradients, but also prevents the filter from
3165 modifying the pixels near detailed regions. Acceptable values are
3166 @code{8-32}, default value is @code{16}.
3167
3168 @end table
3169
3170 Alternatively, the options can be specified as a flat string:
3171 @var{strength}[:@var{radius}]
3172
3173 @subsection Examples
3174
3175 @itemize
3176 @item
3177 Apply the filter with a @code{3.5} strength and radius of @code{8}:
3178 @example
3179 gradfun=3.5:8
3180 @end example
3181
3182 @item
3183 Specify radius, omitting the strength (which will fall-back to the default
3184 value):
3185 @example
3186 gradfun=radius=8
3187 @end example
3188
3189 @end itemize
3190
3191 @section hflip
3192
3193 Flip the input video horizontally.
3194
3195 For example to horizontally flip the input video with @command{ffmpeg}:
3196 @example
3197 ffmpeg -i in.avi -vf "hflip" out.avi
3198 @end example
3199
3200 @section histeq
3201 This filter applies a global color histogram equalization on a
3202 per-frame basis.
3203
3204 It can be used to correct video that has a compressed range of pixel
3205 intensities.  The filter redistributes the pixel intensities to
3206 equalize their distribution across the intensity range. It may be
3207 viewed as an "automatically adjusting contrast filter". This filter is
3208 useful only for correcting degraded or poorly captured source
3209 video.
3210
3211 The filter accepts parameters as a list of @var{key}=@var{value}
3212 pairs, separated by ":". If the key of the first options is omitted,
3213 the arguments are interpreted according to syntax
3214 @var{strength}:@var{intensity}:@var{antibanding}.
3215
3216 This filter accepts the following named options:
3217
3218 @table @option
3219 @item strength
3220 Determine the amount of equalization to be applied.  As the strength
3221 is reduced, the distribution of pixel intensities more-and-more
3222 approaches that of the input frame. The value must be a float number
3223 in the range [0,1] and defaults to 0.200.
3224
3225 @item intensity
3226 Set the maximum intensity that can generated and scale the output
3227 values appropriately.  The strength should be set as desired and then
3228 the intensity can be limited if needed to avoid washing-out. The value
3229 must be a float number in the range [0,1] and defaults to 0.210.
3230
3231 @item antibanding
3232 Set the antibanding level. If enabled the filter will randomly vary
3233 the luminance of output pixels by a small amount to avoid banding of
3234 the histogram. Possible values are @code{none}, @code{weak} or
3235 @code{strong}. It defaults to @code{none}.
3236 @end table
3237
3238 @section histogram
3239
3240 Compute and draw a color distribution histogram for the input video.
3241
3242 The computed histogram is a representation of distribution of color components
3243 in an image.
3244
3245 The filter accepts the following named parameters:
3246
3247 @table @option
3248 @item mode
3249 Set histogram mode.
3250
3251 It accepts the following values:
3252 @table @samp
3253 @item levels
3254 standard histogram that display color components distribution in an image.
3255 Displays color graph for each color component. Shows distribution
3256 of the Y, U, V, A or G, B, R components, depending on input format,
3257 in current frame. Bellow each graph is color component scale meter.
3258
3259 @item color
3260 chroma values in vectorscope, if brighter more such chroma values are
3261 distributed in an image.
3262 Displays chroma values (U/V color placement) in two dimensional graph
3263 (which is called a vectorscope). It can be used to read of the hue and
3264 saturation of the current frame. At a same time it is a histogram.
3265 The whiter a pixel in the vectorscope, the more pixels of the input frame
3266 correspond to that pixel (that is the more pixels have this chroma value).
3267 The V component is displayed on the horizontal (X) axis, with the leftmost
3268 side being V = 0 and the rightmost side being V = 255.
3269 The U component is displayed on the vertical (Y) axis, with the top
3270 representing U = 0 and the bottom representing U = 255.
3271
3272 The position of a white pixel in the graph corresponds to the chroma value
3273 of a pixel of the input clip. So the graph can be used to read of the
3274 hue (color flavor) and the saturation (the dominance of the hue in the color).
3275 As the hue of a color changes, it moves around the square. At the center of
3276 the square, the saturation is zero, which means that the corresponding pixel
3277 has no color. If you increase the amount of a specific color, while leaving
3278 the other colors unchanged, the saturation increases, and you move towards
3279 the edge of the square.
3280
3281 @item color2
3282 chroma values in vectorscope, similar as @code{color} but actual chroma values
3283 are displayed.
3284
3285 @item waveform
3286 per row/column color component graph. In row mode graph in the left side represents
3287 color component value 0 and right side represents value = 255. In column mode top
3288 side represents color component value = 0 and bottom side represents value = 255.
3289 @end table
3290 Default value is @code{levels}.
3291
3292 @item level_height
3293 Set height of level in @code{levels}. Default value is @code{200}.
3294 Allowed range is [50, 2048].
3295
3296 @item scale_height
3297 Set height of color scale in @code{levels}. Default value is @code{12}.
3298 Allowed range is [0, 40].
3299
3300 @item step
3301 Set step for @code{waveform} mode. Smaller values are useful to find out how much
3302 of same luminance values across input rows/columns are distributed.
3303 Default value is @code{10}. Allowed range is [1, 255].
3304
3305 @item waveform_mode
3306 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
3307 Default is @code{row}.
3308
3309 @item display_mode
3310 Set display mode for @code{waveform} and @code{levels}.
3311 It accepts the following values:
3312 @table @samp
3313 @item parade
3314 Display separate graph for the color components side by side in
3315 @code{row} waveform mode or one below other in @code{column} waveform mode
3316 for @code{waveform} histogram mode. For @code{levels} histogram mode
3317 per color component graphs are placed one bellow other.
3318
3319 This display mode in @code{waveform} histogram mode makes it easy to spot
3320 color casts in the highlights and shadows of an image, by comparing the
3321 contours of the top and the bottom of each waveform.
3322 Since whites, grays, and blacks are characterized by
3323 exactly equal amounts of red, green, and blue, neutral areas of the
3324 picture should display three waveforms of roughly equal width/height.
3325 If not, the correction is easy to make by making adjustments to level the
3326 three waveforms.
3327
3328 @item overlay
3329 Presents information that's identical to that in the @code{parade}, except
3330 that the graphs representing color components are superimposed directly
3331 over one another.
3332
3333 This display mode in @code{waveform} histogram mode can make it easier to spot
3334 the relative differences or similarities in overlapping areas of the color
3335 components that are supposed to be identical, such as neutral whites, grays,
3336 or blacks.
3337 @end table
3338 Default is @code{parade}.
3339 @end table
3340
3341 @subsection Examples
3342
3343 @itemize
3344
3345 @item
3346 Calculate and draw histogram:
3347 @example
3348 ffplay -i input -vf histogram
3349 @end example
3350
3351 @end itemize
3352
3353 @section hqdn3d
3354
3355 High precision/quality 3d denoise filter. This filter aims to reduce
3356 image noise producing smooth images and making still images really
3357 still. It should enhance compressibility.
3358
3359 It accepts the following optional parameters:
3360 @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
3361
3362 @table @option
3363 @item luma_spatial
3364 a non-negative float number which specifies spatial luma strength,
3365 defaults to 4.0
3366
3367 @item chroma_spatial
3368 a non-negative float number which specifies spatial chroma strength,
3369 defaults to 3.0*@var{luma_spatial}/4.0
3370
3371 @item luma_tmp
3372 a float number which specifies luma temporal strength, defaults to
3373 6.0*@var{luma_spatial}/4.0
3374
3375 @item chroma_tmp
3376 a float number which specifies chroma temporal strength, defaults to
3377 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
3378 @end table
3379
3380 @section hue
3381
3382 Modify the hue and/or the saturation of the input.
3383
3384 This filter accepts the following optional named options:
3385
3386 @table @option
3387 @item h
3388 Specify the hue angle as a number of degrees. It accepts a float
3389 number or an expression, and defaults to 0.0.
3390
3391 @item H
3392 Specify the hue angle as a number of degrees. It accepts a float
3393 number or an expression, and defaults to 0.0.
3394
3395 @item s
3396 Specify the saturation in the [-10,10] range. It accepts a float number and
3397 defaults to 1.0.
3398 @end table
3399
3400 The @var{h}, @var{H} and @var{s} parameters are expressions containing the
3401 following constants:
3402
3403 @table @option
3404 @item n
3405 frame count of the input frame starting from 0
3406
3407 @item pts
3408 presentation timestamp of the input frame expressed in time base units
3409
3410 @item r
3411 frame rate of the input video, NAN if the input frame rate is unknown
3412
3413 @item t
3414 timestamp expressed in seconds, NAN if the input timestamp is unknown
3415
3416 @item tb
3417 time base of the input video
3418 @end table
3419
3420 The options can also be set using the syntax: @var{hue}:@var{saturation}
3421
3422 In this case @var{hue} is expressed in degrees.
3423
3424 Some examples follow:
3425 @itemize
3426 @item
3427 Set the hue to 90 degrees and the saturation to 1.0:
3428 @example
3429 hue=h=90:s=1
3430 @end example
3431
3432 @item
3433 Same command but expressing the hue in radians:
3434 @example
3435 hue=H=PI/2:s=1
3436 @end example
3437
3438 @item
3439 Same command without named options, hue must be expressed in degrees:
3440 @example
3441 hue=90:1
3442 @end example
3443
3444 @item
3445 Note that "h:s" syntax does not support expressions for the values of
3446 h and s, so the following example will issue an error:
3447 @example
3448 hue=PI/2:1
3449 @end example
3450
3451 @item
3452 Rotate hue and make the saturation swing between 0
3453 and 2 over a period of 1 second:
3454 @example
3455 hue="H=2*PI*t: s=sin(2*PI*t)+1"
3456 @end example
3457
3458 @item
3459 Apply a 3 seconds saturation fade-in effect starting at 0:
3460 @example
3461 hue="s=min(t/3\,1)"
3462 @end example
3463
3464 The general fade-in expression can be written as:
3465 @example
3466 hue="s=min(0\, max((t-START)/DURATION\, 1))"
3467 @end example
3468
3469 @item
3470 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
3471 @example
3472 hue="s=max(0\, min(1\, (8-t)/3))"
3473 @end example
3474
3475 The general fade-out expression can be written as:
3476 @example
3477 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
3478 @end example
3479
3480 @end itemize
3481
3482 @subsection Commands
3483
3484 This filter supports the following command:
3485 @table @option
3486 @item reinit
3487 Modify the hue and/or the saturation of the input video.
3488 The command accepts the same named options and syntax than when calling the
3489 filter from the command-line.
3490
3491 If a parameter is omitted, it is kept at its current value.
3492 @end table
3493
3494 @section idet
3495
3496 Detect video interlacing type.
3497
3498 This filter tries to detect if the input is interlaced or progressive,
3499 top or bottom field first.
3500
3501 @section il
3502
3503 Deinterleave or interleave fields.
3504
3505 This filter allows to process interlaced images fields without
3506 deinterlacing them. Deinterleaving splits the input frame into 2
3507 fields (so called half pictures). Odd lines are moved to the top
3508 half of the output image, even lines to the bottom half.
3509 You can process (filter) them independently and then re-interleave them.
3510
3511 It accepts a list of options in the form of @var{key}=@var{value} pairs
3512 separated by ":". A description of the accepted options follows.
3513
3514 @table @option
3515 @item luma_mode, l
3516 @item chroma_mode, s
3517 @item alpha_mode, a
3518 Available values for @var{luma_mode}, @var{chroma_mode} and
3519 @var{alpha_mode} are:
3520
3521 @table @samp
3522 @item none
3523 Do nothing.
3524
3525 @item deinterleave, d
3526 Deinterleave fields, placing one above the other.
3527
3528 @item interleave, i
3529 Interleave fields. Reverse the effect of deinterleaving.
3530 @end table
3531 Default value is @code{none}.
3532
3533 @item luma_swap, ls
3534 @item chroma_swap, cs
3535 @item alpha_swap, as
3536 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
3537 @end table
3538
3539 @section kerndeint
3540
3541 Deinterlace input video by applying Donald Graft's adaptive kernel
3542 deinterling. Work on interlaced parts of a video to produce
3543 progressive frames.
3544
3545 This filter accepts parameters as a list of @var{key}=@var{value}
3546 pairs, separated by ":". If the key of the first options is omitted,
3547 the arguments are interpreted according to the following syntax:
3548 @var{thresh}:@var{map}:@var{order}:@var{sharp}:@var{twoway}.
3549
3550 The description of the accepted parameters follows.
3551
3552 @table @option
3553 @item thresh
3554 Set the threshold which affects the filter's tolerance when
3555 determining if a pixel line must be processed. It must be an integer
3556 in the range [0,255] and defaults to 10. A value of 0 will result in
3557 applying the process on every pixels.
3558
3559 @item map
3560 Paint pixels exceeding the threshold value to white if set to 1.
3561 Default is 0.
3562
3563 @item order
3564 Set the fields order. Swap fields if set to 1, leave fields alone if
3565 0. Default is 0.
3566
3567 @item sharp
3568 Enable additional sharpening if set to 1. Default is 0.
3569
3570 @item twoway
3571 Enable twoway sharpening if set to 1. Default is 0.
3572 @end table
3573
3574 @subsection Examples
3575
3576 @itemize
3577 @item
3578 Apply default values:
3579 @example
3580 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
3581 @end example
3582
3583 @item
3584 Enable additional sharpening:
3585 @example
3586 kerndeint=sharp=1
3587 @end example
3588
3589 @item
3590 Paint processed pixels in white:
3591 @example
3592 kerndeint=map=1
3593 @end example
3594 @end itemize
3595
3596 @section lut, lutrgb, lutyuv
3597
3598 Compute a look-up table for binding each pixel component input value
3599 to an output value, and apply it to input video.
3600
3601 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
3602 to an RGB input video.
3603
3604 These filters accept in input a ":"-separated list of options, which
3605 specify the expressions used for computing the lookup table for the
3606 corresponding pixel component values.
3607
3608 The @var{lut} filter requires either YUV or RGB pixel formats in
3609 input, and accepts the options:
3610 @table @option
3611 @item c0
3612 set first pixel component expression
3613 @item c1
3614 set second pixel component expression
3615 @item c2
3616 set third pixel component expression
3617 @item c3
3618 set fourth pixel component expression, corresponds to the alpha component
3619 @end table
3620
3621 The exact component associated to each option depends on the format in
3622 input.
3623
3624 The @var{lutrgb} filter requires RGB pixel formats in input, and
3625 accepts the options:
3626 @table @option
3627 @item r
3628 set red component expression
3629 @item g
3630 set green component expression
3631 @item b
3632 set blue component expression
3633 @item a
3634 alpha component expression
3635 @end table
3636
3637 The @var{lutyuv} filter requires YUV pixel formats in input, and
3638 accepts the options:
3639 @table @option
3640 @item y
3641 set Y/luminance component expression
3642 @item u
3643 set U/Cb component expression
3644 @item v
3645 set V/Cr component expression
3646 @item a
3647 set alpha component expression
3648 @end table
3649
3650 The expressions can contain the following constants and functions:
3651
3652 @table @option
3653 @item w, h
3654 the input width and height
3655
3656 @item val
3657 input value for the pixel component
3658
3659 @item clipval
3660 the input value clipped in the @var{minval}-@var{maxval} range
3661
3662 @item maxval
3663 maximum value for the pixel component
3664
3665 @item minval
3666 minimum value for the pixel component
3667
3668 @item negval
3669 the negated value for the pixel component value clipped in the
3670 @var{minval}-@var{maxval} range , it corresponds to the expression
3671 "maxval-clipval+minval"
3672
3673 @item clip(val)
3674 the computed value in @var{val} clipped in the
3675 @var{minval}-@var{maxval} range
3676
3677 @item gammaval(gamma)
3678 the computed gamma correction value of the pixel component value
3679 clipped in the @var{minval}-@var{maxval} range, corresponds to the
3680 expression
3681 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
3682
3683 @end table
3684
3685 All expressions default to "val".
3686
3687 @subsection Examples
3688
3689 @itemize
3690 @item
3691 Negate input video:
3692 @example
3693 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
3694 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
3695 @end example
3696
3697 The above is the same as:
3698 @example
3699 lutrgb="r=negval:g=negval:b=negval"
3700 lutyuv="y=negval:u=negval:v=negval"
3701 @end example
3702
3703 @item
3704 Negate luminance:
3705 @example
3706 lutyuv=y=negval
3707 @end example
3708
3709 @item
3710 Remove chroma components, turns the video into a graytone image:
3711 @example
3712 lutyuv="u=128:v=128"
3713 @end example
3714
3715 @item
3716 Apply a luma burning effect:
3717 @example
3718 lutyuv="y=2*val"
3719 @end example
3720
3721 @item
3722 Remove green and blue components:
3723 @example
3724 lutrgb="g=0:b=0"
3725 @end example
3726
3727 @item
3728 Set a constant alpha channel value on input:
3729 @example
3730 format=rgba,lutrgb=a="maxval-minval/2"
3731 @end example
3732
3733 @item
3734 Correct luminance gamma by a 0.5 factor:
3735 @example
3736 lutyuv=y=gammaval(0.5)
3737 @end example
3738 @end itemize
3739
3740 @section mp
3741
3742 Apply an MPlayer filter to the input video.
3743
3744 This filter provides a wrapper around most of the filters of
3745 MPlayer/MEncoder.
3746
3747 This wrapper is considered experimental. Some of the wrapped filters
3748 may not work properly and we may drop support for them, as they will
3749 be implemented natively into FFmpeg. Thus you should avoid
3750 depending on them when writing portable scripts.
3751
3752 The filters accepts the parameters:
3753 @var{filter_name}[:=]@var{filter_params}
3754
3755 @var{filter_name} is the name of a supported MPlayer filter,
3756 @var{filter_params} is a string containing the parameters accepted by
3757 the named filter.
3758
3759 The list of the currently supported filters follows:
3760 @table @var
3761 @item detc
3762 @item dint
3763 @item divtc
3764 @item down3dright
3765 @item eq2
3766 @item eq
3767 @item fil
3768 @item fspp
3769 @item harddup
3770 @item ilpack
3771 @item ivtc
3772 @item mcdeint
3773 @item ow
3774 @item perspective
3775 @item phase
3776 @item pp7
3777 @item pullup
3778 @item qp
3779 @item sab
3780 @item softpulldown
3781 @item spp
3782 @item telecine
3783 @item tinterlace
3784 @item uspp
3785 @end table
3786
3787 The parameter syntax and behavior for the listed filters are the same
3788 of the corresponding MPlayer filters. For detailed instructions check
3789 the "VIDEO FILTERS" section in the MPlayer manual.
3790
3791 Some examples follow:
3792 @itemize
3793 @item
3794 Adjust gamma, brightness, contrast:
3795 @example
3796 mp=eq2=1.0:2:0.5
3797 @end example
3798 @end itemize
3799
3800 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
3801
3802 @section negate
3803
3804 Negate input video.
3805
3806 This filter accepts an integer in input, if non-zero it negates the
3807 alpha component (if available). The default value in input is 0.
3808
3809 @section noformat
3810
3811 Force libavfilter not to use any of the specified pixel formats for the
3812 input to the next filter.
3813
3814 The filter accepts a list of pixel format names, separated by ":",
3815 for example "yuv420p:monow:rgb24".
3816
3817 Some examples follow:
3818 @example
3819 # force libavfilter to use a format different from "yuv420p" for the
3820 # input to the vflip filter
3821 noformat=yuv420p,vflip
3822
3823 # convert the input video to any of the formats not contained in the list
3824 noformat=yuv420p:yuv444p:yuv410p
3825 @end example
3826
3827 @section noise
3828
3829 Add noise on video input frame.
3830
3831 This filter accepts a list of options in the form of @var{key}=@var{value}
3832 pairs separated by ":". A description of the accepted options follows.
3833
3834 @table @option
3835 @item all_seed
3836 @item c0_seed
3837 @item c1_seed
3838 @item c2_seed
3839 @item c3_seed
3840 Set noise seed for specific pixel component or all pixel components in case
3841 of @var{all_seed}. Default value is @code{123457}.
3842
3843 @item all_strength, as
3844 @item c0_strength, c0s
3845 @item c1_strength, c1s
3846 @item c2_strength, c2s
3847 @item c3_strength, c3s
3848 Set noise strength for specific pixel component or all pixel components in case
3849 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
3850
3851 @item all_flags, af
3852 @item c0_flags, c0f
3853 @item c1_flags, c1f
3854 @item c2_flags, c2f
3855 @item c3_flags, c3f
3856 Set pixel component flags or set flags for all components if @var{all_flags}.
3857 Available values for component flags are:
3858 @table @samp
3859 @item a
3860 averaged temporal noise (smoother)
3861 @item p
3862 mix random noise with a (semi)regular pattern
3863 @item q
3864 higher quality (slightly better looking, slightly slower)
3865 @item t
3866 temporal noise (noise pattern changes between frames)
3867 @item u
3868 uniform noise (gaussian otherwise)
3869 @end table
3870 @end table
3871
3872 Some examples follow:
3873 @example
3874 Add temporal and uniform noise to input video:
3875 noise=alls=20:allf=t+u
3876 @end example
3877
3878 @section null
3879
3880 Pass the video source unchanged to the output.
3881
3882 @section ocv
3883
3884 Apply video transform using libopencv.
3885
3886 To enable this filter install libopencv library and headers and
3887 configure FFmpeg with @code{--enable-libopencv}.
3888
3889 The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
3890
3891 @var{filter_name} is the name of the libopencv filter to apply.
3892
3893 @var{filter_params} specifies the parameters to pass to the libopencv
3894 filter. If not specified the default values are assumed.
3895
3896 Refer to the official libopencv documentation for more precise
3897 information:
3898 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
3899
3900 Follows the list of supported libopencv filters.
3901
3902 @anchor{dilate}
3903 @subsection dilate
3904
3905 Dilate an image by using a specific structuring element.
3906 This filter corresponds to the libopencv function @code{cvDilate}.
3907
3908 It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
3909
3910 @var{struct_el} represents a structuring element, and has the syntax:
3911 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
3912
3913 @var{cols} and @var{rows} represent the number of columns and rows of
3914 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
3915 point, and @var{shape} the shape for the structuring element, and
3916 can be one of the values "rect", "cross", "ellipse", "custom".
3917
3918 If the value for @var{shape} is "custom", it must be followed by a
3919 string of the form "=@var{filename}". The file with name
3920 @var{filename} is assumed to represent a binary image, with each
3921 printable character corresponding to a bright pixel. When a custom
3922 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
3923 or columns and rows of the read file are assumed instead.
3924
3925 The default value for @var{struct_el} is "3x3+0x0/rect".
3926
3927 @var{nb_iterations} specifies the number of times the transform is
3928 applied to the image, and defaults to 1.
3929
3930 Follow some example:
3931 @example
3932 # use the default values
3933 ocv=dilate
3934
3935 # dilate using a structuring element with a 5x5 cross, iterate two times
3936 ocv=dilate=5x5+2x2/cross:2
3937
3938 # read the shape from the file diamond.shape, iterate two times
3939 # the file diamond.shape may contain a pattern of characters like this:
3940 #   *
3941 #  ***
3942 # *****
3943 #  ***
3944 #   *
3945 # the specified cols and rows are ignored (but not the anchor point coordinates)
3946 ocv=0x0+2x2/custom=diamond.shape:2
3947 @end example
3948
3949 @subsection erode
3950
3951 Erode an image by using a specific structuring element.
3952 This filter corresponds to the libopencv function @code{cvErode}.
3953
3954 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
3955 with the same syntax and semantics as the @ref{dilate} filter.
3956
3957 @subsection smooth
3958
3959 Smooth the input video.
3960
3961 The filter takes the following parameters:
3962 @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
3963
3964 @var{type} is the type of smooth filter to apply, and can be one of
3965 the following values: "blur", "blur_no_scale", "median", "gaussian",
3966 "bilateral". The default value is "gaussian".
3967
3968 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
3969 parameters whose meanings depend on smooth type. @var{param1} and
3970 @var{param2} accept integer positive values or 0, @var{param3} and
3971 @var{param4} accept float values.
3972
3973 The default value for @var{param1} is 3, the default value for the
3974 other parameters is 0.
3975
3976 These parameters correspond to the parameters assigned to the
3977 libopencv function @code{cvSmooth}.
3978
3979 @anchor{overlay}
3980 @section overlay
3981
3982 Overlay one video on top of another.
3983
3984 It takes two inputs and one output, the first input is the "main"
3985 video on which the second input is overlayed.
3986
3987 This filter accepts a list of @var{key}=@var{value} pairs as argument,
3988 separated by ":". If the key of the first options is omitted, the
3989 arguments are interpreted according to the syntax @var{x}:@var{y}.
3990
3991 A description of the accepted options follows.
3992
3993 @table @option
3994 @item x, y
3995 Set the expression for the x and y coordinates of the overlayed video
3996 on the main video. Default value is 0.
3997
3998 The @var{x} and @var{y} expressions can contain the following
3999 parameters:
4000 @table @option
4001 @item main_w, main_h
4002 main input width and height
4003
4004 @item W, H
4005 same as @var{main_w} and @var{main_h}
4006
4007 @item overlay_w, overlay_h
4008 overlay input width and height
4009
4010 @item w, h
4011 same as @var{overlay_w} and @var{overlay_h}
4012 @end table
4013
4014 @item format
4015 Set the format for the output video.
4016
4017 It accepts the following values:
4018 @table @samp
4019 @item yuv420
4020 force YUV420 output
4021
4022 @item yuv444
4023 force YUV444 output
4024
4025 @item rgb
4026 force RGB output
4027 @end table
4028
4029 Default value is @samp{yuv420}.
4030
4031 @item rgb @emph{(deprecated)}
4032 If set to 1, force the filter to accept inputs in the RGB
4033 color space. Default value is 0. This option is deprecated, use
4034 @option{format} instead.
4035
4036 @item shortest
4037 If set to 1, force the output to terminate when the shortest input
4038 terminates. Default value is 0.
4039 @end table
4040
4041 Be aware that frames are taken from each input video in timestamp
4042 order, hence, if their initial timestamps differ, it is a a good idea
4043 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
4044 have them begin in the same zero timestamp, as it does the example for
4045 the @var{movie} filter.
4046
4047 You can chain together more overlays but you should test the
4048 efficiency of such approach.
4049
4050 @subsection Examples
4051
4052 @itemize
4053 @item
4054 Draw the overlay at 10 pixels from the bottom right corner of the main
4055 video:
4056 @example
4057 overlay=main_w-overlay_w-10:main_h-overlay_h-10
4058 @end example
4059
4060 Using named options the example above becomes:
4061 @example
4062 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
4063 @end example
4064
4065 @item
4066 Insert a transparent PNG logo in the bottom left corner of the input,
4067 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
4068 @example
4069 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
4070 @end example
4071
4072 @item
4073 Insert 2 different transparent PNG logos (second logo on bottom
4074 right corner) using the @command{ffmpeg} tool:
4075 @example
4076 ffmpeg -i input -i logo1 -i logo2 -filter_complex 'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
4077 @end example
4078
4079 @item
4080 Add a transparent color layer on top of the main video, WxH specifies
4081 the size of the main input to the overlay filter:
4082 @example
4083 color=red@@.3:WxH [over]; [in][over] overlay [out]
4084 @end example
4085
4086 @item
4087 Play an original video and a filtered version (here with the deshake
4088 filter) side by side using the @command{ffplay} tool:
4089 @example
4090 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
4091 @end example
4092
4093 The above command is the same as:
4094 @example
4095 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
4096 @end example
4097
4098 @item
4099 Compose output by putting two input videos side to side:
4100 @example
4101 ffmpeg -i left.avi -i right.avi -filter_complex "
4102 nullsrc=size=200x100 [background];
4103 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
4104 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
4105 [background][left]       overlay=shortest=1       [background+left];
4106 [background+left][right] overlay=shortest=1:x=100 [left+right]
4107 "
4108 @end example
4109
4110 @item
4111 Chain several overlays in cascade:
4112 @example
4113 nullsrc=s=200x200 [bg];
4114 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
4115 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
4116 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
4117 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
4118 [in3] null,       [mid2] overlay=100:100 [out0]
4119 @end example
4120
4121 @end itemize
4122
4123 @section pad
4124
4125 Add paddings to the input image, and place the original input at the
4126 given coordinates @var{x}, @var{y}.
4127
4128 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
4129 separated by ":".
4130
4131 If the key of the first options is omitted, the arguments are
4132 interpreted according to the syntax
4133 @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
4134
4135 A description of the accepted options follows.
4136
4137 @table @option
4138 @item width, w
4139 @item height, h
4140 Specify an expression for the size of the output image with the
4141 paddings added. If the value for @var{width} or @var{height} is 0, the
4142 corresponding input size is used for the output.
4143
4144 The @var{width} expression can reference the value set by the
4145 @var{height} expression, and vice versa.
4146
4147 The default value of @var{width} and @var{height} is 0.
4148
4149 @item x
4150 @item y
4151 Specify an expression for the offsets where to place the input image
4152 in the padded area with respect to the top/left border of the output
4153 image.
4154
4155 The @var{x} expression can reference the value set by the @var{y}
4156 expression, and vice versa.
4157
4158 The default value of @var{x} and @var{y} is 0.
4159
4160 @item color
4161 Specify the color of the padded area, it can be the name of a color
4162 (case insensitive match) or a 0xRRGGBB[AA] sequence.
4163
4164 The default value of @var{color} is "black".
4165 @end table
4166
4167 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
4168 options are expressions containing the following constants:
4169
4170 @table @option
4171 @item in_w, in_h
4172 the input video width and height
4173
4174 @item iw, ih
4175 same as @var{in_w} and @var{in_h}
4176
4177 @item out_w, out_h
4178 the output width and height, that is the size of the padded area as
4179 specified by the @var{width} and @var{height} expressions
4180
4181 @item ow, oh
4182 same as @var{out_w} and @var{out_h}
4183
4184 @item x, y
4185 x and y offsets as specified by the @var{x} and @var{y}
4186 expressions, or NAN if not yet specified
4187
4188 @item a
4189 same as @var{iw} / @var{ih}
4190
4191 @item sar
4192 input sample aspect ratio
4193
4194 @item dar
4195 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4196
4197 @item hsub, vsub
4198 horizontal and vertical chroma subsample values. For example for the
4199 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4200 @end table
4201
4202 @subsection Examples
4203
4204 @itemize
4205 @item
4206 Add paddings with color "violet" to the input video. Output video
4207 size is 640x480, the top-left corner of the input video is placed at
4208 column 0, row 40:
4209 @example
4210 pad=640:480:0:40:violet
4211 @end example
4212
4213 The example above is equivalent to the following command:
4214 @example
4215 pad=width=640:height=480:x=0:y=40:color=violet
4216 @end example
4217
4218 @item
4219 Pad the input to get an output with dimensions increased by 3/2,
4220 and put the input video at the center of the padded area:
4221 @example
4222 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
4223 @end example
4224
4225 @item
4226 Pad the input to get a squared output with size equal to the maximum
4227 value between the input width and height, and put the input video at
4228 the center of the padded area:
4229 @example
4230 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
4231 @end example
4232
4233 @item
4234 Pad the input to get a final w/h ratio of 16:9:
4235 @example
4236 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
4237 @end example
4238
4239 @item
4240 In case of anamorphic video, in order to set the output display aspect
4241 correctly, it is necessary to use @var{sar} in the expression,
4242 according to the relation:
4243 @example
4244 (ih * X / ih) * sar = output_dar
4245 X = output_dar / sar
4246 @end example
4247
4248 Thus the previous example needs to be modified to:
4249 @example
4250 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
4251 @end example
4252
4253 @item
4254 Double output size and put the input video in the bottom-right
4255 corner of the output padded area:
4256 @example
4257 pad="2*iw:2*ih:ow-iw:oh-ih"
4258 @end example
4259 @end itemize
4260
4261 @section pixdesctest
4262
4263 Pixel format descriptor test filter, mainly useful for internal
4264 testing. The output video should be equal to the input video.
4265
4266 For example:
4267 @example
4268 format=monow, pixdesctest
4269 @end example
4270
4271 can be used to test the monowhite pixel format descriptor definition.
4272
4273 @section pp
4274
4275 Enable the specified chain of postprocessing subfilters using libpostproc. This
4276 library should be automatically selected with a GPL build (@code{--enable-gpl}).
4277 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
4278 Each subfilter and some options have a short and a long name that can be used
4279 interchangeably, i.e. dr/dering are the same.
4280
4281 All subfilters share common options to determine their scope:
4282
4283 @table @option
4284 @item a/autoq
4285 Honor the quality commands for this subfilter.
4286
4287 @item c/chrom
4288 Do chrominance filtering, too (default).
4289
4290 @item y/nochrom
4291 Do luminance filtering only (no chrominance).
4292
4293 @item n/noluma
4294 Do chrominance filtering only (no luminance).
4295 @end table
4296
4297 These options can be appended after the subfilter name, separated by a ':'.
4298
4299 Available subfilters are:
4300
4301 @table @option
4302 @item hb/hdeblock[:difference[:flatness]]
4303 Horizontal deblocking filter
4304 @table @option
4305 @item difference
4306 Difference factor where higher values mean more deblocking (default: @code{32}).
4307 @item flatness
4308 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4309 @end table
4310
4311 @item vb/vdeblock[:difference[:flatness]]
4312 Vertical deblocking filter
4313 @table @option
4314 @item difference
4315 Difference factor where higher values mean more deblocking (default: @code{32}).
4316 @item flatness
4317 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4318 @end table
4319
4320 @item ha/hadeblock[:difference[:flatness]]
4321 Accurate horizontal deblocking filter
4322 @table @option
4323 @item difference
4324 Difference factor where higher values mean more deblocking (default: @code{32}).
4325 @item flatness
4326 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4327 @end table
4328
4329 @item va/vadeblock[:difference[:flatness]]
4330 Accurate vertical deblocking filter
4331 @table @option
4332 @item difference
4333 Difference factor where higher values mean more deblocking (default: @code{32}).
4334 @item flatness
4335 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4336 @end table
4337 @end table
4338
4339 The horizontal and vertical deblocking filters share the difference and
4340 flatness values so you cannot set different horizontal and vertical
4341 thresholds.
4342
4343 @table @option
4344 @item h1/x1hdeblock
4345 Experimental horizontal deblocking filter
4346
4347 @item v1/x1vdeblock
4348 Experimental vertical deblocking filter
4349
4350 @item dr/dering
4351 Deringing filter
4352
4353 @item tn/tmpnoise[:threshold1[:threshold2[:threshold3]]], temporal noise reducer
4354 @table @option
4355 @item threshold1
4356 larger -> stronger filtering
4357 @item threshold2
4358 larger -> stronger filtering
4359 @item threshold3
4360 larger -> stronger filtering
4361 @end table
4362
4363 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
4364 @table @option
4365 @item f/fullyrange
4366 Stretch luminance to @code{0-255}.
4367 @end table
4368
4369 @item lb/linblenddeint
4370 Linear blend deinterlacing filter that deinterlaces the given block by
4371 filtering all lines with a @code{(1 2 1)} filter.
4372
4373 @item li/linipoldeint
4374 Linear interpolating deinterlacing filter that deinterlaces the given block by
4375 linearly interpolating every second line.
4376
4377 @item ci/cubicipoldeint
4378 Cubic interpolating deinterlacing filter deinterlaces the given block by
4379 cubically interpolating every second line.
4380
4381 @item md/mediandeint
4382 Median deinterlacing filter that deinterlaces the given block by applying a
4383 median filter to every second line.
4384
4385 @item fd/ffmpegdeint
4386 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
4387 second line with a @code{(-1 4 2 4 -1)} filter.
4388
4389 @item l5/lowpass5
4390 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
4391 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
4392
4393 @item fq/forceQuant[:quantizer]
4394 Overrides the quantizer table from the input with the constant quantizer you
4395 specify.
4396 @table @option
4397 @item quantizer
4398 Quantizer to use
4399 @end table
4400
4401 @item de/default
4402 Default pp filter combination (@code{hb:a,vb:a,dr:a})
4403
4404 @item fa/fast
4405 Fast pp filter combination (@code{h1:a,v1:a,dr:a})
4406
4407 @item ac
4408 High quality pp filter combination (@code{ha:a:128:7,va:a,dr:a})
4409 @end table
4410
4411 @subsection Examples
4412
4413 @itemize
4414 @item
4415 Apply horizontal and vertical deblocking, deringing and automatic
4416 brightness/contrast:
4417 @example
4418 pp=hb/vb/dr/al
4419 @end example
4420
4421 @item
4422 Apply default filters without brightness/contrast correction:
4423 @example
4424 pp=de/-al
4425 @end example
4426
4427 @item
4428 Apply default filters and temporal denoiser:
4429 @example
4430 pp=default/tmpnoise:1:2:3
4431 @end example
4432
4433 @item
4434 Apply deblocking on luminance only, and switch vertical deblocking on or off
4435 automatically depending on available CPU time:
4436 @example
4437 pp=hb:y/vb:a
4438 @end example
4439 @end itemize
4440
4441 @section removelogo
4442
4443 Suppress a TV station logo, using an image file to determine which
4444 pixels comprise the logo. It works by filling in the pixels that
4445 comprise the logo with neighboring pixels.
4446
4447 This filter requires one argument which specifies the filter bitmap
4448 file, which can be any image format supported by libavformat. The
4449 width and height of the image file must match those of the video
4450 stream being processed.
4451
4452 Pixels in the provided bitmap image with a value of zero are not
4453 considered part of the logo, non-zero pixels are considered part of
4454 the logo. If you use white (255) for the logo and black (0) for the
4455 rest, you will be safe. For making the filter bitmap, it is
4456 recommended to take a screen capture of a black frame with the logo
4457 visible, and then using a threshold filter followed by the erode
4458 filter once or twice.
4459
4460 If needed, little splotches can be fixed manually. Remember that if
4461 logo pixels are not covered, the filter quality will be much
4462 reduced. Marking too many pixels as part of the logo does not hurt as
4463 much, but it will increase the amount of blurring needed to cover over
4464 the image and will destroy more information than necessary, and extra
4465 pixels will slow things down on a large logo.
4466
4467 @section scale
4468
4469 Scale (resize) the input video, using the libswscale library.
4470
4471 The scale filter forces the output display aspect ratio to be the same
4472 of the input, by changing the output sample aspect ratio.
4473
4474 This filter accepts a list of named options in the form of
4475 @var{key}=@var{value} pairs separated by ":". If the key for the first
4476 two options is not specified, the assumed keys for the first two
4477 values are @code{w} and @code{h}. If the first option has no key and
4478 can be interpreted like a video size specification, it will be used
4479 to set the video size.
4480
4481 A description of the accepted options follows.
4482
4483 @table @option
4484 @item width, w
4485 Set the video width expression, default value is @code{iw}. See below
4486 for the list of accepted constants.
4487
4488 @item height, h
4489 Set the video heiht expression, default value is @code{ih}.
4490 See below for the list of accepted constants.
4491
4492 @item interl
4493 Set the interlacing. It accepts the following values:
4494
4495 @table @option
4496 @item 1
4497 force interlaced aware scaling
4498
4499 @item 0
4500 do not apply interlaced scaling
4501
4502 @item -1
4503 select interlaced aware scaling depending on whether the source frames
4504 are flagged as interlaced or not
4505 @end table
4506
4507 Default value is @code{0}.
4508
4509 @item flags
4510 Set libswscale scaling flags. If not explictly specified the filter
4511 applies a bilinear scaling algorithm.
4512
4513 @item size, s
4514 Set the video size, the value must be a valid abbreviation or in the
4515 form @var{width}x@var{height}.
4516 @end table
4517
4518 The values of the @var{w} and @var{h} options are expressions
4519 containing the following constants:
4520
4521 @table @option
4522 @item in_w, in_h
4523 the input width and height
4524
4525 @item iw, ih
4526 same as @var{in_w} and @var{in_h}
4527
4528 @item out_w, out_h
4529 the output (cropped) width and height
4530
4531 @item ow, oh
4532 same as @var{out_w} and @var{out_h}
4533
4534 @item a
4535 same as @var{iw} / @var{ih}
4536
4537 @item sar
4538 input sample aspect ratio
4539
4540 @item dar
4541 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4542
4543 @item hsub, vsub
4544 horizontal and vertical chroma subsample values. For example for the
4545 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4546 @end table
4547
4548 If the input image format is different from the format requested by
4549 the next filter, the scale filter will convert the input to the
4550 requested format.
4551
4552 If the value for @var{width} or @var{height} is 0, the respective input
4553 size is used for the output.
4554
4555 If the value for @var{width} or @var{height} is -1, the scale filter will
4556 use, for the respective output size, a value that maintains the aspect
4557 ratio of the input image.
4558
4559 @subsection Examples
4560
4561 @itemize
4562 @item
4563 Scale the input video to a size of 200x100:
4564 @example
4565 scale=200:100
4566 @end example
4567
4568 This is equivalent to:
4569 @example
4570 scale=w=200:h=100
4571 @end example
4572
4573 or:
4574 @example
4575 scale=200x100
4576 @end example
4577
4578 @item
4579 Specify a size abbreviation for the output size:
4580 @example
4581 scale=qcif
4582 @end example
4583
4584 which can also be written as:
4585 @example
4586 scale=size=qcif
4587 @end example
4588
4589 @item
4590 Scale the input to 2x:
4591 @example
4592 scale=2*iw:2*ih
4593 @end example
4594
4595 @item
4596 The above is the same as:
4597 @example
4598 scale=2*in_w:2*in_h
4599 @end example
4600
4601 @item
4602 Scale the input to 2x with forced interlaced scaling:
4603 @example
4604 scale=2*iw:2*ih:interl=1
4605 @end example
4606
4607 @item
4608 Scale the input to half size:
4609 @example
4610 scale=iw/2:ih/2
4611 @end example
4612
4613 @item
4614 Increase the width, and set the height to the same size:
4615 @example
4616 scale=3/2*iw:ow
4617 @end example
4618
4619 @item
4620 Seek for Greek harmony:
4621 @example
4622 scale=iw:1/PHI*iw
4623 scale=ih*PHI:ih
4624 @end example
4625
4626 @item
4627 Increase the height, and set the width to 3/2 of the height:
4628 @example
4629 scale=3/2*oh:3/5*ih
4630 @end example
4631
4632 @item
4633 Increase the size, but make the size a multiple of the chroma:
4634 @example
4635 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
4636 @end example
4637
4638 @item
4639 Increase the width to a maximum of 500 pixels, keep the same input
4640 aspect ratio:
4641 @example
4642 scale='min(500\, iw*3/2):-1'
4643 @end example
4644 @end itemize
4645
4646 @section setdar, setsar
4647
4648 The @code{setdar} filter sets the Display Aspect Ratio for the filter
4649 output video.
4650
4651 This is done by changing the specified Sample (aka Pixel) Aspect
4652 Ratio, according to the following equation:
4653 @example
4654 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
4655 @end example
4656
4657 Keep in mind that the @code{setdar} filter does not modify the pixel
4658 dimensions of the video frame. Also the display aspect ratio set by
4659 this filter may be changed by later filters in the filterchain,
4660 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
4661 applied.
4662
4663 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
4664 the filter output video.
4665
4666 Note that as a consequence of the application of this filter, the
4667 output display aspect ratio will change according to the equation
4668 above.
4669
4670 Keep in mind that the sample aspect ratio set by the @code{setsar}
4671 filter may be changed by later filters in the filterchain, e.g. if
4672 another "setsar" or a "setdar" filter is applied.
4673
4674 The @code{setdar} and @code{setsar} filters accept a string in the
4675 form @var{num}:@var{den} expressing an aspect ratio, or the following
4676 named options, expressed as a sequence of @var{key}=@var{value} pairs,
4677 separated by ":".
4678
4679 @table @option
4680 @item max
4681 Set the maximum integer value to use for expressing numerator and
4682 denominator when reducing the expressed aspect ratio to a rational.
4683 Default value is @code{100}.
4684
4685 @item r, ratio:
4686 Set the aspect ratio used by the filter.
4687
4688 The parameter can be a floating point number string, an expression, or
4689 a string of the form @var{num}:@var{den}, where @var{num} and
4690 @var{den} are the numerator and denominator of the aspect ratio. If
4691 the parameter is not specified, it is assumed the value "0".
4692 In case the form "@var{num}:@var{den}" the @code{:} character should
4693 be escaped.
4694 @end table
4695
4696 If the keys are omitted in the named options list, the specifed values
4697 are assumed to be @var{ratio} and @var{max} in that order.
4698
4699 For example to change the display aspect ratio to 16:9, specify:
4700 @example
4701 setdar='16:9'
4702 @end example
4703
4704 The example above is equivalent to:
4705 @example
4706 setdar=1.77777
4707 @end example
4708
4709 To change the sample aspect ratio to 10:11, specify:
4710 @example
4711 setsar='10:11'
4712 @end example
4713
4714 To set a display aspect ratio of 16:9, and specify a maximum integer value of
4715 1000 in the aspect ratio reduction, use the command:
4716 @example
4717 setdar=ratio='16:9':max=1000
4718 @end example
4719
4720 @section setfield
4721
4722 Force field for the output video frame.
4723
4724 The @code{setfield} filter marks the interlace type field for the
4725 output frames. It does not change the input frame, but only sets the
4726 corresponding property, which affects how the frame is treated by
4727 following filters (e.g. @code{fieldorder} or @code{yadif}).
4728
4729 This filter accepts a single option @option{mode}, which can be
4730 specified either by setting @code{mode=VALUE} or setting the value
4731 alone. Available values are:
4732
4733 @table @samp
4734 @item auto
4735 Keep the same field property.
4736
4737 @item bff
4738 Mark the frame as bottom-field-first.
4739
4740 @item tff
4741 Mark the frame as top-field-first.
4742
4743 @item prog
4744 Mark the frame as progressive.
4745 @end table
4746
4747 @section showinfo
4748
4749 Show a line containing various information for each input video frame.
4750 The input video is not modified.
4751
4752 The shown line contains a sequence of key/value pairs of the form
4753 @var{key}:@var{value}.
4754
4755 A description of each shown parameter follows:
4756
4757 @table @option
4758 @item n
4759 sequential number of the input frame, starting from 0
4760
4761 @item pts
4762 Presentation TimeStamp of the input frame, expressed as a number of
4763 time base units. The time base unit depends on the filter input pad.
4764
4765 @item pts_time
4766 Presentation TimeStamp of the input frame, expressed as a number of
4767 seconds
4768
4769 @item pos
4770 position of the frame in the input stream, -1 if this information in
4771 unavailable and/or meaningless (for example in case of synthetic video)
4772
4773 @item fmt
4774 pixel format name
4775
4776 @item sar
4777 sample aspect ratio of the input frame, expressed in the form
4778 @var{num}/@var{den}
4779
4780 @item s
4781 size of the input frame, expressed in the form
4782 @var{width}x@var{height}
4783
4784 @item i
4785 interlaced mode ("P" for "progressive", "T" for top field first, "B"
4786 for bottom field first)
4787
4788 @item iskey
4789 1 if the frame is a key frame, 0 otherwise
4790
4791 @item type
4792 picture type of the input frame ("I" for an I-frame, "P" for a
4793 P-frame, "B" for a B-frame, "?" for unknown type).
4794 Check also the documentation of the @code{AVPictureType} enum and of
4795 the @code{av_get_picture_type_char} function defined in
4796 @file{libavutil/avutil.h}.
4797
4798 @item checksum
4799 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
4800
4801 @item plane_checksum
4802 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
4803 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
4804 @end table
4805
4806 @section smartblur
4807
4808 Blur the input video without impacting the outlines.
4809
4810 The filter accepts the following parameters:
4811 @var{luma_radius}:@var{luma_strength}:@var{luma_threshold}[:@var{chroma_radius}:@var{chroma_strength}:@var{chroma_threshold}]
4812
4813 Parameters prefixed by @var{luma} indicate that they work on the
4814 luminance of the pixels whereas parameters prefixed by @var{chroma}
4815 refer to the chrominance of the pixels.
4816
4817 If the chroma parameters are not set, the luma parameters are used for
4818 either the luminance and the chrominance of the pixels.
4819
4820 @var{luma_radius} or @var{chroma_radius} must be a float number in the
4821 range [0.1,5.0] that specifies the variance of the gaussian filter
4822 used to blur the image (slower if larger).
4823
4824 @var{luma_strength} or @var{chroma_strength} must be a float number in
4825 the range [-1.0,1.0] that configures the blurring. A value included in
4826 [0.0,1.0] will blur the image whereas a value included in [-1.0,0.0]
4827 will sharpen the image.
4828
4829 @var{luma_threshold} or @var{chroma_threshold} must be an integer in
4830 the range [-30,30] that is used as a coefficient to determine whether
4831 a pixel should be blurred or not. A value of 0 will filter all the
4832 image, a value included in [0,30] will filter flat areas and a value
4833 included in [-30,0] will filter edges.
4834
4835 @anchor{subtitles}
4836 @section subtitles
4837
4838 Draw subtitles on top of input video using the libass library.
4839
4840 To enable compilation of this filter you need to configure FFmpeg with
4841 @code{--enable-libass}. This filter also requires a build with libavcodec and
4842 libavformat to convert the passed subtitles file to ASS (Advanced Substation
4843 Alpha) subtitles format.
4844
4845 This filter accepts the following named options, expressed as a
4846 sequence of @var{key}=@var{value} pairs, separated by ":".
4847
4848 @table @option
4849 @item filename, f
4850 Set the filename of the subtitle file to read. It must be specified.
4851
4852 @item original_size
4853 Specify the size of the original video, the video for which the ASS file
4854 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
4855 necessary to correctly scale the fonts if the aspect ratio has been changed.
4856
4857 @item charenc
4858 Set subtitles input character encoding. @code{subtitles} filter only. Only
4859 useful if not UTF-8.
4860 @end table
4861
4862 If the first key is not specified, it is assumed that the first value
4863 specifies the @option{filename}.
4864
4865 For example, to render the file @file{sub.srt} on top of the input
4866 video, use the command:
4867 @example
4868 subtitles=sub.srt
4869 @end example
4870
4871 which is equivalent to:
4872 @example
4873 subtitles=filename=sub.srt
4874 @end example
4875
4876 @section split
4877
4878 Split input video into several identical outputs.
4879
4880 The filter accepts a single parameter which specifies the number of outputs. If
4881 unspecified, it defaults to 2.
4882
4883 For example
4884 @example
4885 ffmpeg -i INPUT -filter_complex split=5 OUTPUT
4886 @end example
4887 will create 5 copies of the input video.
4888
4889 For example:
4890 @example
4891 [in] split [splitout1][splitout2];
4892 [splitout1] crop=100:100:0:0    [cropout];
4893 [splitout2] pad=200:200:100:100 [padout];
4894 @end example
4895
4896 will create two separate outputs from the same input, one cropped and
4897 one padded.
4898
4899 @section super2xsai
4900
4901 Scale the input by 2x and smooth using the Super2xSaI (Scale and
4902 Interpolate) pixel art scaling algorithm.
4903
4904 Useful for enlarging pixel art images without reducing sharpness.
4905
4906 @section swapuv
4907 Swap U & V plane.
4908
4909 @section thumbnail
4910 Select the most representative frame in a given sequence of consecutive frames.
4911
4912 It accepts as argument the frames batch size to analyze (default @var{N}=100);
4913 in a set of @var{N} frames, the filter will pick one of them, and then handle
4914 the next batch of @var{N} frames until the end.
4915
4916 Since the filter keeps track of the whole frames sequence, a bigger @var{N}
4917 value will result in a higher memory usage, so a high value is not recommended.
4918
4919 The following example extract one picture each 50 frames:
4920 @example
4921 thumbnail=50
4922 @end example
4923
4924 Complete example of a thumbnail creation with @command{ffmpeg}:
4925 @example
4926 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
4927 @end example
4928
4929 @section tile
4930
4931 Tile several successive frames together.
4932
4933 It accepts a list of options in the form of @var{key}=@var{value} pairs
4934 separated by ":". A description of the accepted options follows.
4935
4936 @table @option
4937
4938 @item layout
4939 Set the grid size (i.e. the number of lines and columns) in the form
4940 "@var{w}x@var{h}".
4941
4942 @item margin
4943 Set the outer border margin in pixels.
4944
4945 @item padding
4946 Set the inner border thickness (i.e. the number of pixels between frames). For
4947 more advanced padding options (such as having different values for the edges),
4948 refer to the pad video filter.
4949
4950 @item nb_frames
4951 Set the maximum number of frames to render in the given area. It must be less
4952 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
4953 the area will be used.
4954
4955 @end table
4956
4957 Alternatively, the options can be specified as a flat string:
4958
4959 @var{layout}[:@var{nb_frames}[:@var{margin}[:@var{padding}]]]
4960
4961 For example, produce 8x8 PNG tiles of all keyframes (@option{-skip_frame
4962 nokey}) in a movie:
4963 @example
4964 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
4965 @end example
4966 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
4967 duplicating each output frame to accomodate the originally detected frame
4968 rate.
4969
4970 Another example to display @code{5} pictures in an area of @code{3x2} frames,
4971 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
4972 mixed flat and named options:
4973 @example
4974 tile=3x2:nb_frames=5:padding=7:margin=2
4975 @end example
4976
4977 @section tinterlace
4978
4979 Perform various types of temporal field interlacing.
4980
4981 Frames are counted starting from 1, so the first input frame is
4982 considered odd.
4983
4984 This filter accepts options in the form of @var{key}=@var{value} pairs
4985 separated by ":".
4986 Alternatively, the @var{mode} option can be specified as a value alone,
4987 optionally followed by a ":" and further ":" separated @var{key}=@var{value}
4988 pairs.
4989
4990 A description of the accepted options follows.
4991
4992 @table @option
4993
4994 @item mode
4995 Specify the mode of the interlacing. This option can also be specified
4996 as a value alone. See below for a list of values for this option.
4997
4998 Available values are:
4999
5000 @table @samp
5001 @item merge, 0
5002 Move odd frames into the upper field, even into the lower field,
5003 generating a double height frame at half framerate.
5004
5005 @item drop_odd, 1
5006 Only output even frames, odd frames are dropped, generating a frame with
5007 unchanged height at half framerate.
5008
5009 @item drop_even, 2
5010 Only output odd frames, even frames are dropped, generating a frame with
5011 unchanged height at half framerate.
5012
5013 @item pad, 3
5014 Expand each frame to full height, but pad alternate lines with black,
5015 generating a frame with double height at the same input framerate.
5016
5017 @item interleave_top, 4
5018 Interleave the upper field from odd frames with the lower field from
5019 even frames, generating a frame with unchanged height at half framerate.
5020
5021 @item interleave_bottom, 5
5022 Interleave the lower field from odd frames with the upper field from
5023 even frames, generating a frame with unchanged height at half framerate.
5024
5025 @item interlacex2, 6
5026 Double frame rate with unchanged height. Frames are inserted each
5027 containing the second temporal field from the previous input frame and
5028 the first temporal field from the next input frame. This mode relies on
5029 the top_field_first flag. Useful for interlaced video displays with no
5030 field synchronisation.
5031 @end table
5032
5033 Numeric values are deprecated but are accepted for backward
5034 compatibility reasons.
5035
5036 Default mode is @code{merge}.
5037
5038 @item flags
5039 Specify flags influencing the filter process.
5040
5041 Available value for @var{flags} is:
5042
5043 @table @option
5044 @item low_pass_filter, vlfp
5045 Enable vertical low-pass filtering in the filter.
5046 Vertical low-pass filtering is required when creating an interlaced
5047 destination from a progressive source which contains high-frequency
5048 vertical detail. Filtering will reduce interlace 'twitter' and Moire
5049 patterning.
5050
5051 Vertical low-pass filtering can only be enabled for @option{mode}
5052 @var{interleave_top} and @var{interleave_bottom}.
5053
5054 @end table
5055 @end table
5056
5057 @section transpose
5058
5059 Transpose rows with columns in the input video and optionally flip it.
5060
5061 The filter accepts parameters as a list of @var{key}=@var{value}
5062 pairs, separated by ':'. If the key of the first options is omitted,
5063 the arguments are interpreted according to the syntax
5064 @var{dir}:@var{passthrough}.
5065
5066 @table @option
5067 @item dir
5068 Specify the transposition direction. Can assume the following values:
5069
5070 @table @samp
5071 @item 0, 4
5072 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
5073 @example
5074 L.R     L.l
5075 . . ->  . .
5076 l.r     R.r
5077 @end example
5078
5079 @item 1, 5
5080 Rotate by 90 degrees clockwise, that is:
5081 @example
5082 L.R     l.L
5083 . . ->  . .
5084 l.r     r.R
5085 @end example
5086
5087 @item 2, 6
5088 Rotate by 90 degrees counterclockwise, that is:
5089 @example
5090 L.R     R.r
5091 . . ->  . .
5092 l.r     L.l
5093 @end example
5094
5095 @item 3, 7
5096 Rotate by 90 degrees clockwise and vertically flip, that is:
5097 @example
5098 L.R     r.R
5099 . . ->  . .
5100 l.r     l.L
5101 @end example
5102 @end table
5103
5104 For values between 4-7, the transposition is only done if the input
5105 video geometry is portrait and not landscape. These values are
5106 deprecated, the @code{passthrough} option should be used instead.
5107
5108 @item passthrough
5109 Do not apply the transposition if the input geometry matches the one
5110 specified by the specified value. It accepts the following values:
5111 @table @samp
5112 @item none
5113 Always apply transposition.
5114 @item portrait
5115 Preserve portrait geometry (when @var{height} >= @var{width}).
5116 @item landscape
5117 Preserve landscape geometry (when @var{width} >= @var{height}).
5118 @end table
5119
5120 Default value is @code{none}.
5121 @end table
5122
5123 For example to rotate by 90 degrees clockwise and preserve portrait
5124 layout:
5125 @example
5126 transpose=dir=1:passthrough=portrait
5127 @end example
5128
5129 The command above can also be specified as:
5130 @example
5131 transpose=1:portrait
5132 @end example
5133
5134 @section unsharp
5135
5136 Sharpen or blur the input video.
5137
5138 This filter accepts parameters as a list of @var{key}=@var{value} pairs,
5139 separated by ":".
5140
5141 If the key of the first options is omitted, the arguments are
5142 interpreted according to the syntax:
5143 @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
5144
5145 A description of the accepted options follows.
5146
5147 @table @option
5148 @item luma_msize_x, lx
5149 @item chroma_msize_x, cx
5150 Set the luma/chroma matrix horizontal size. It must be an odd integer
5151 between 3 and 63, default value is 5.
5152
5153 @item luma_msize_y, ly
5154 @item chroma_msize_y, cy
5155 Set the luma/chroma matrix vertical size. It must be an odd integer
5156 between 3 and 63, default value is 5.
5157
5158 @item luma_amount, la
5159 @item chroma_amount, ca
5160 Set the luma/chroma effect strength. It can be a float number,
5161 reasonable values lay between -1.5 and 1.5.
5162
5163 Negative values will blur the input video, while positive values will
5164 sharpen it, a value of zero will disable the effect.
5165
5166 Default value is 1.0 for @option{luma_amount}, 0.0 for
5167 @option{chroma_amount}.
5168 @end table
5169
5170 Some examples follow:
5171 @itemize
5172 @item
5173 Apply strong luma sharpen effect:
5174 @example
5175 unsharp=7:7:2.5
5176 @end example
5177
5178 @item
5179 Apply strong blur of both luma and chroma parameters:
5180 @example
5181 unsharp=7:7:-2:7:7:-2
5182 @end example
5183 @end itemize
5184
5185 @section vflip
5186
5187 Flip the input video vertically.
5188
5189 @example
5190 ffmpeg -i in.avi -vf "vflip" out.avi
5191 @end example
5192
5193 @section yadif
5194
5195 Deinterlace the input video ("yadif" means "yet another deinterlacing
5196 filter").
5197
5198 The filter accepts parameters as a list of @var{key}=@var{value}
5199 pairs, separated by ":". If the key of the first options is omitted,
5200 the arguments are interpreted according to syntax
5201 @var{mode}:@var{parity}:@var{deint}.
5202
5203 The description of the accepted parameters follows.
5204
5205 @table @option
5206 @item mode
5207 Specify the interlacing mode to adopt. Accept one of the following
5208 values:
5209
5210 @table @option
5211 @item 0, send_frame
5212 output 1 frame for each frame
5213 @item 1, send_field
5214 output 1 frame for each field
5215 @item 2, send_frame_nospatial
5216 like @code{send_frame} but skip spatial interlacing check
5217 @item 3, send_field_nospatial
5218 like @code{send_field} but skip spatial interlacing check
5219 @end table
5220
5221 Default value is @code{send_frame}.
5222
5223 @item parity
5224 Specify the picture field parity assumed for the input interlaced
5225 video. Accept one of the following values:
5226
5227 @table @option
5228 @item 0, tff
5229 assume top field first
5230 @item 1, bff
5231 assume bottom field first
5232 @item -1, auto
5233 enable automatic detection
5234 @end table
5235
5236 Default value is @code{auto}.
5237 If interlacing is unknown or decoder does not export this information,
5238 top field first will be assumed.
5239
5240 @item deint
5241 Specify which frames to deinterlace. Accept one of the following
5242 values:
5243
5244 @table @option
5245 @item 0, all
5246 deinterlace all frames
5247 @item 1, interlaced
5248 only deinterlace frames marked as interlaced
5249 @end table
5250
5251 Default value is @code{all}.
5252 @end table
5253
5254 @c man end VIDEO FILTERS
5255
5256 @chapter Video Sources
5257 @c man begin VIDEO SOURCES
5258
5259 Below is a description of the currently available video sources.
5260
5261 @section buffer
5262
5263 Buffer video frames, and make them available to the filter chain.
5264
5265 This source is mainly intended for a programmatic use, in particular
5266 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
5267
5268 It accepts a list of options in the form of @var{key}=@var{value} pairs
5269 separated by ":". A description of the accepted options follows.
5270
5271 @table @option
5272
5273 @item video_size
5274 Specify the size (width and height) of the buffered video frames.
5275
5276 @item pix_fmt
5277 A string representing the pixel format of the buffered video frames.
5278 It may be a number corresponding to a pixel format, or a pixel format
5279 name.
5280
5281 @item time_base
5282 Specify the timebase assumed by the timestamps of the buffered frames.
5283
5284 @item time_base
5285 Specify the frame rate expected for the video stream.
5286
5287 @item pixel_aspect
5288 Specify the sample aspect ratio assumed by the video frames.
5289
5290 @item sws_param
5291 Specify the optional parameters to be used for the scale filter which
5292 is automatically inserted when an input change is detected in the
5293 input size or format.
5294 @end table
5295
5296 For example:
5297 @example
5298 buffer=size=320x240:pix_fmt=yuv410p:time_base=1/24:pixel_aspect=1/1
5299 @end example
5300
5301 will instruct the source to accept video frames with size 320x240 and
5302 with format "yuv410p", assuming 1/24 as the timestamps timebase and
5303 square pixels (1:1 sample aspect ratio).
5304 Since the pixel format with name "yuv410p" corresponds to the number 6
5305 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
5306 this example corresponds to:
5307 @example
5308 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
5309 @end example
5310
5311 Alternatively, the options can be specified as a flat string, but this
5312 syntax is deprecated:
5313
5314 @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}]
5315
5316 @section cellauto
5317
5318 Create a pattern generated by an elementary cellular automaton.
5319
5320 The initial state of the cellular automaton can be defined through the
5321 @option{filename}, and @option{pattern} options. If such options are
5322 not specified an initial state is created randomly.
5323
5324 At each new frame a new row in the video is filled with the result of
5325 the cellular automaton next generation. The behavior when the whole
5326 frame is filled is defined by the @option{scroll} option.
5327
5328 This source accepts a list of options in the form of
5329 @var{key}=@var{value} pairs separated by ":". A description of the
5330 accepted options follows.
5331
5332 @table @option
5333 @item filename, f
5334 Read the initial cellular automaton state, i.e. the starting row, from
5335 the specified file.
5336 In the file, each non-whitespace character is considered an alive
5337 cell, a newline will terminate the row, and further characters in the
5338 file will be ignored.
5339
5340 @item pattern, p
5341 Read the initial cellular automaton state, i.e. the starting row, from
5342 the specified string.
5343
5344 Each non-whitespace character in the string is considered an alive
5345 cell, a newline will terminate the row, and further characters in the
5346 string will be ignored.
5347
5348 @item rate, r
5349 Set the video rate, that is the number of frames generated per second.
5350 Default is 25.
5351
5352 @item random_fill_ratio, ratio
5353 Set the random fill ratio for the initial cellular automaton row. It
5354 is a floating point number value ranging from 0 to 1, defaults to
5355 1/PHI.
5356
5357 This option is ignored when a file or a pattern is specified.
5358
5359 @item random_seed, seed
5360 Set the seed for filling randomly the initial row, must be an integer
5361 included between 0 and UINT32_MAX. If not specified, or if explicitly
5362 set to -1, the filter will try to use a good random seed on a best
5363 effort basis.
5364
5365 @item rule
5366 Set the cellular automaton rule, it is a number ranging from 0 to 255.
5367 Default value is 110.
5368
5369 @item size, s
5370 Set the size of the output video.
5371
5372 If @option{filename} or @option{pattern} is specified, the size is set
5373 by default to the width of the specified initial state row, and the
5374 height is set to @var{width} * PHI.
5375
5376 If @option{size} is set, it must contain the width of the specified
5377 pattern string, and the specified pattern will be centered in the
5378 larger row.
5379
5380 If a filename or a pattern string is not specified, the size value
5381 defaults to "320x518" (used for a randomly generated initial state).
5382
5383 @item scroll
5384 If set to 1, scroll the output upward when all the rows in the output
5385 have been already filled. If set to 0, the new generated row will be
5386 written over the top row just after the bottom row is filled.
5387 Defaults to 1.
5388
5389 @item start_full, full
5390 If set to 1, completely fill the output with generated rows before
5391 outputting the first frame.
5392 This is the default behavior, for disabling set the value to 0.
5393
5394 @item stitch
5395 If set to 1, stitch the left and right row edges together.
5396 This is the default behavior, for disabling set the value to 0.
5397 @end table
5398
5399 @subsection Examples
5400
5401 @itemize
5402 @item
5403 Read the initial state from @file{pattern}, and specify an output of
5404 size 200x400.
5405 @example
5406 cellauto=f=pattern:s=200x400
5407 @end example
5408
5409 @item
5410 Generate a random initial row with a width of 200 cells, with a fill
5411 ratio of 2/3:
5412 @example
5413 cellauto=ratio=2/3:s=200x200
5414 @end example
5415
5416 @item
5417 Create a pattern generated by rule 18 starting by a single alive cell
5418 centered on an initial row with width 100:
5419 @example
5420 cellauto=p=@@:s=100x400:full=0:rule=18
5421 @end example
5422
5423 @item
5424 Specify a more elaborated initial pattern:
5425 @example
5426 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
5427 @end example
5428
5429 @end itemize
5430
5431 @section mandelbrot
5432
5433 Generate a Mandelbrot set fractal, and progressively zoom towards the
5434 point specified with @var{start_x} and @var{start_y}.
5435
5436 This source accepts a list of options in the form of
5437 @var{key}=@var{value} pairs separated by ":". A description of the
5438 accepted options follows.
5439
5440 @table @option
5441
5442 @item end_pts
5443 Set the terminal pts value. Default value is 400.
5444
5445 @item end_scale
5446 Set the terminal scale value.
5447 Must be a floating point value. Default value is 0.3.
5448
5449 @item inner
5450 Set the inner coloring mode, that is the algorithm used to draw the
5451 Mandelbrot fractal internal region.
5452
5453 It shall assume one of the following values:
5454 @table @option
5455 @item black
5456 Set black mode.
5457 @item convergence
5458 Show time until convergence.
5459 @item mincol
5460 Set color based on point closest to the origin of the iterations.
5461 @item period
5462 Set period mode.
5463 @end table
5464
5465 Default value is @var{mincol}.
5466
5467 @item bailout
5468 Set the bailout value. Default value is 10.0.
5469
5470 @item maxiter
5471 Set the maximum of iterations performed by the rendering
5472 algorithm. Default value is 7189.
5473
5474 @item outer
5475 Set outer coloring mode.
5476 It shall assume one of following values:
5477 @table @option
5478 @item iteration_count
5479 Set iteration cound mode.
5480 @item normalized_iteration_count
5481 set normalized iteration count mode.
5482 @end table
5483 Default value is @var{normalized_iteration_count}.
5484
5485 @item rate, r
5486 Set frame rate, expressed as number of frames per second. Default
5487 value is "25".
5488
5489 @item size, s
5490 Set frame size. Default value is "640x480".
5491
5492 @item start_scale
5493 Set the initial scale value. Default value is 3.0.
5494
5495 @item start_x
5496 Set the initial x position. Must be a floating point value between
5497 -100 and 100. Default value is -0.743643887037158704752191506114774.
5498
5499 @item start_y
5500 Set the initial y position. Must be a floating point value between
5501 -100 and 100. Default value is -0.131825904205311970493132056385139.
5502 @end table
5503
5504 @section mptestsrc
5505
5506 Generate various test patterns, as generated by the MPlayer test filter.
5507
5508 The size of the generated video is fixed, and is 256x256.
5509 This source is useful in particular for testing encoding features.
5510
5511 This source accepts an optional sequence of @var{key}=@var{value} pairs,
5512 separated by ":". The description of the accepted options follows.
5513
5514 @table @option
5515
5516 @item rate, r
5517 Specify the frame rate of the sourced video, as the number of frames
5518 generated per second. It has to be a string in the format
5519 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
5520 number or a valid video frame rate abbreviation. The default value is
5521 "25".
5522
5523 @item duration, d
5524 Set the video duration of the sourced video. The accepted syntax is:
5525 @example
5526 [-]HH:MM:SS[.m...]
5527 [-]S+[.m...]
5528 @end example
5529 See also the function @code{av_parse_time()}.
5530
5531 If not specified, or the expressed duration is negative, the video is
5532 supposed to be generated forever.
5533
5534 @item test, t
5535
5536 Set the number or the name of the test to perform. Supported tests are:
5537 @table @option
5538 @item dc_luma
5539 @item dc_chroma
5540 @item freq_luma
5541 @item freq_chroma
5542 @item amp_luma
5543 @item amp_chroma
5544 @item cbp
5545 @item mv
5546 @item ring1
5547 @item ring2
5548 @item all
5549 @end table
5550
5551 Default value is "all", which will cycle through the list of all tests.
5552 @end table
5553
5554 For example the following:
5555 @example
5556 testsrc=t=dc_luma
5557 @end example
5558
5559 will generate a "dc_luma" test pattern.
5560
5561 @section frei0r_src
5562
5563 Provide a frei0r source.
5564
5565 To enable compilation of this filter you need to install the frei0r
5566 header and configure FFmpeg with @code{--enable-frei0r}.
5567
5568 The source supports the syntax:
5569 @example
5570 @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
5571 @end example
5572
5573 @var{size} is the size of the video to generate, may be a string of the
5574 form @var{width}x@var{height} or a frame size abbreviation.
5575 @var{rate} is the rate of the video to generate, may be a string of
5576 the form @var{num}/@var{den} or a frame rate abbreviation.
5577 @var{src_name} is the name to the frei0r source to load. For more
5578 information regarding frei0r and how to set the parameters read the
5579 section @ref{frei0r} in the description of the video filters.
5580
5581 For example, to generate a frei0r partik0l source with size 200x200
5582 and frame rate 10 which is overlayed on the overlay filter main input:
5583 @example
5584 frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
5585 @end example
5586
5587 @section life
5588
5589 Generate a life pattern.
5590
5591 This source is based on a generalization of John Conway's life game.
5592
5593 The sourced input represents a life grid, each pixel represents a cell
5594 which can be in one of two possible states, alive or dead. Every cell
5595 interacts with its eight neighbours, which are the cells that are
5596 horizontally, vertically, or diagonally adjacent.
5597
5598 At each interaction the grid evolves according to the adopted rule,
5599 which specifies the number of neighbor alive cells which will make a
5600 cell stay alive or born. The @option{rule} option allows to specify
5601 the rule to adopt.
5602
5603 This source accepts a list of options in the form of
5604 @var{key}=@var{value} pairs separated by ":". A description of the
5605 accepted options follows.
5606
5607 @table @option
5608 @item filename, f
5609 Set the file from which to read the initial grid state. In the file,
5610 each non-whitespace character is considered an alive cell, and newline
5611 is used to delimit the end of each row.
5612
5613 If this option is not specified, the initial grid is generated
5614 randomly.
5615
5616 @item rate, r
5617 Set the video rate, that is the number of frames generated per second.
5618 Default is 25.
5619
5620 @item random_fill_ratio, ratio
5621 Set the random fill ratio for the initial random grid. It is a
5622 floating point number value ranging from 0 to 1, defaults to 1/PHI.
5623 It is ignored when a file is specified.
5624
5625 @item random_seed, seed
5626 Set the seed for filling the initial random grid, must be an integer
5627 included between 0 and UINT32_MAX. If not specified, or if explicitly
5628 set to -1, the filter will try to use a good random seed on a best
5629 effort basis.
5630
5631 @item rule
5632 Set the life rule.
5633
5634 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
5635 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
5636 @var{NS} specifies the number of alive neighbor cells which make a
5637 live cell stay alive, and @var{NB} the number of alive neighbor cells
5638 which make a dead cell to become alive (i.e. to "born").
5639 "s" and "b" can be used in place of "S" and "B", respectively.
5640
5641 Alternatively a rule can be specified by an 18-bits integer. The 9
5642 high order bits are used to encode the next cell state if it is alive
5643 for each number of neighbor alive cells, the low order bits specify
5644 the rule for "borning" new cells. Higher order bits encode for an
5645 higher number of neighbor cells.
5646 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
5647 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
5648
5649 Default value is "S23/B3", which is the original Conway's game of life
5650 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
5651 cells, and will born a new cell if there are three alive cells around
5652 a dead cell.
5653
5654 @item size, s
5655 Set the size of the output video.
5656
5657 If @option{filename} is specified, the size is set by default to the
5658 same size of the input file. If @option{size} is set, it must contain
5659 the size specified in the input file, and the initial grid defined in
5660 that file is centered in the larger resulting area.
5661
5662 If a filename is not specified, the size value defaults to "320x240"
5663 (used for a randomly generated initial grid).
5664
5665 @item stitch
5666 If set to 1, stitch the left and right grid edges together, and the
5667 top and bottom edges also. Defaults to 1.
5668
5669 @item mold
5670 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
5671 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
5672 value from 0 to 255.
5673
5674 @item life_color
5675 Set the color of living (or new born) cells.
5676
5677 @item death_color
5678 Set the color of dead cells. If @option{mold} is set, this is the first color
5679 used to represent a dead cell.
5680
5681 @item mold_color
5682 Set mold color, for definitely dead and moldy cells.
5683 @end table
5684
5685 @subsection Examples
5686
5687 @itemize
5688 @item
5689 Read a grid from @file{pattern}, and center it on a grid of size
5690 300x300 pixels:
5691 @example
5692 life=f=pattern:s=300x300
5693 @end example
5694
5695 @item
5696 Generate a random grid of size 200x200, with a fill ratio of 2/3:
5697 @example
5698 life=ratio=2/3:s=200x200
5699 @end example
5700
5701 @item
5702 Specify a custom rule for evolving a randomly generated grid:
5703 @example
5704 life=rule=S14/B34
5705 @end example
5706
5707 @item
5708 Full example with slow death effect (mold) using @command{ffplay}:
5709 @example
5710 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
5711 @end example
5712 @end itemize
5713
5714 @section color, nullsrc, rgbtestsrc, smptebars, testsrc
5715
5716 The @code{color} source provides an uniformly colored input.
5717
5718 The @code{nullsrc} source returns unprocessed video frames. It is
5719 mainly useful to be employed in analysis / debugging tools, or as the
5720 source for filters which ignore the input data.
5721
5722 The @code{rgbtestsrc} source generates an RGB test pattern useful for
5723 detecting RGB vs BGR issues. You should see a red, green and blue
5724 stripe from top to bottom.
5725
5726 The @code{smptebars} source generates a color bars pattern, based on
5727 the SMPTE Engineering Guideline EG 1-1990.
5728
5729 The @code{testsrc} source generates a test video pattern, showing a
5730 color pattern, a scrolling gradient and a timestamp. This is mainly
5731 intended for testing purposes.
5732
5733 These sources accept an optional sequence of @var{key}=@var{value} pairs,
5734 separated by ":". The description of the accepted options follows.
5735
5736 @table @option
5737
5738 @item color, c
5739 Specify the color of the source, only used in the @code{color}
5740 source. It can be the name of a color (case insensitive match) or a
5741 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
5742 default value is "black".
5743
5744 @item size, s
5745 Specify the size of the sourced video, it may be a string of the form
5746 @var{width}x@var{height}, or the name of a size abbreviation. The
5747 default value is "320x240".
5748
5749 @item rate, r
5750 Specify the frame rate of the sourced video, as the number of frames
5751 generated per second. It has to be a string in the format
5752 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
5753 number or a valid video frame rate abbreviation. The default value is
5754 "25".
5755
5756 @item sar
5757 Set the sample aspect ratio of the sourced video.
5758
5759 @item duration, d
5760 Set the video duration of the sourced video. The accepted syntax is:
5761 @example
5762 [-]HH[:MM[:SS[.m...]]]
5763 [-]S+[.m...]
5764 @end example
5765 See also the function @code{av_parse_time()}.
5766
5767 If not specified, or the expressed duration is negative, the video is
5768 supposed to be generated forever.
5769
5770 @item decimals, n
5771 Set the number of decimals to show in the timestamp, only used in the
5772 @code{testsrc} source.
5773
5774 The displayed timestamp value will correspond to the original
5775 timestamp value multiplied by the power of 10 of the specified
5776 value. Default value is 0.
5777 @end table
5778
5779 For example the following:
5780 @example
5781 testsrc=duration=5.3:size=qcif:rate=10
5782 @end example
5783
5784 will generate a video with a duration of 5.3 seconds, with size
5785 176x144 and a frame rate of 10 frames per second.
5786
5787 The following graph description will generate a red source
5788 with an opacity of 0.2, with size "qcif" and a frame rate of 10
5789 frames per second.
5790 @example
5791 color=c=red@@0.2:s=qcif:r=10
5792 @end example
5793
5794 If the input content is to be ignored, @code{nullsrc} can be used. The
5795 following command generates noise in the luminance plane by employing
5796 the @code{geq} filter:
5797 @example
5798 nullsrc=s=256x256, geq=random(1)*255:128:128
5799 @end example
5800
5801 @c man end VIDEO SOURCES
5802
5803 @chapter Video Sinks
5804 @c man begin VIDEO SINKS
5805
5806 Below is a description of the currently available video sinks.
5807
5808 @section buffersink
5809
5810 Buffer video frames, and make them available to the end of the filter
5811 graph.
5812
5813 This sink is mainly intended for a programmatic use, in particular
5814 through the interface defined in @file{libavfilter/buffersink.h}.
5815
5816 It does not require a string parameter in input, but you need to
5817 specify a pointer to a list of supported pixel formats terminated by
5818 -1 in the opaque parameter provided to @code{avfilter_init_filter}
5819 when initializing this sink.
5820
5821 @section nullsink
5822
5823 Null video sink, do absolutely nothing with the input video. It is
5824 mainly useful as a template and to be employed in analysis / debugging
5825 tools.
5826
5827 @c man end VIDEO SINKS
5828
5829 @chapter Multimedia Filters
5830 @c man begin MULTIMEDIA FILTERS
5831
5832 Below is a description of the currently available multimedia filters.
5833
5834 @section aselect, select
5835 Select frames to pass in output.
5836
5837 These filters accept a single option @option{expr} or @option{e}
5838 specifying the select expression, which can be specified either by
5839 specyfing @code{expr=VALUE} or specifying the expression
5840 alone.
5841
5842 The select expression is evaluated for each input frame. If the
5843 evaluation result is a non-zero value, the frame is selected and
5844 passed to the output, otherwise it is discarded.
5845
5846 The expression can contain the following constants:
5847
5848 @table @option
5849 @item n
5850 the sequential number of the filtered frame, starting from 0
5851
5852 @item selected_n
5853 the sequential number of the selected frame, starting from 0
5854
5855 @item prev_selected_n
5856 the sequential number of the last selected frame, NAN if undefined
5857
5858 @item TB
5859 timebase of the input timestamps
5860
5861 @item pts
5862 the PTS (Presentation TimeStamp) of the filtered video frame,
5863 expressed in @var{TB} units, NAN if undefined
5864
5865 @item t
5866 the PTS (Presentation TimeStamp) of the filtered video frame,
5867 expressed in seconds, NAN if undefined
5868
5869 @item prev_pts
5870 the PTS of the previously filtered video frame, NAN if undefined
5871
5872 @item prev_selected_pts
5873 the PTS of the last previously filtered video frame, NAN if undefined
5874
5875 @item prev_selected_t
5876 the PTS of the last previously selected video frame, NAN if undefined
5877
5878 @item start_pts
5879 the PTS of the first video frame in the video, NAN if undefined
5880
5881 @item start_t
5882 the time of the first video frame in the video, NAN if undefined
5883
5884 @item pict_type @emph{(video only)}
5885 the type of the filtered frame, can assume one of the following
5886 values:
5887 @table @option
5888 @item I
5889 @item P
5890 @item B
5891 @item S
5892 @item SI
5893 @item SP
5894 @item BI
5895 @end table
5896
5897 @item interlace_type @emph{(video only)}
5898 the frame interlace type, can assume one of the following values:
5899 @table @option
5900 @item PROGRESSIVE
5901 the frame is progressive (not interlaced)
5902 @item TOPFIRST
5903 the frame is top-field-first
5904 @item BOTTOMFIRST
5905 the frame is bottom-field-first
5906 @end table
5907
5908 @item consumed_sample_n @emph{(audio only)}
5909 the number of selected samples before the current frame
5910
5911 @item samples_n @emph{(audio only)}
5912 the number of samples in the current frame
5913
5914 @item sample_rate @emph{(audio only)}
5915 the input sample rate
5916
5917 @item key
5918 1 if the filtered frame is a key-frame, 0 otherwise
5919
5920 @item pos
5921 the position in the file of the filtered frame, -1 if the information
5922 is not available (e.g. for synthetic video)
5923
5924 @item scene @emph{(video only)}
5925 value between 0 and 1 to indicate a new scene; a low value reflects a low
5926 probability for the current frame to introduce a new scene, while a higher
5927 value means the current frame is more likely to be one (see the example below)
5928
5929 @end table
5930
5931 The default value of the select expression is "1".
5932
5933 @subsection Examples
5934
5935 @itemize
5936 @item
5937 Select all frames in input:
5938 @example
5939 select
5940 @end example
5941
5942 The example above is the same as:
5943 @example
5944 select=1
5945 @end example
5946
5947 @item
5948 Skip all frames:
5949 @example
5950 select=0
5951 @end example
5952
5953 @item
5954 Select only I-frames:
5955 @example
5956 select='eq(pict_type\,I)'
5957 @end example
5958
5959 @item
5960 Select one frame every 100:
5961 @example
5962 select='not(mod(n\,100))'
5963 @end example
5964
5965 @item
5966 Select only frames contained in the 10-20 time interval:
5967 @example
5968 select='gte(t\,10)*lte(t\,20)'
5969 @end example
5970
5971 @item
5972 Select only I frames contained in the 10-20 time interval:
5973 @example
5974 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
5975 @end example
5976
5977 @item
5978 Select frames with a minimum distance of 10 seconds:
5979 @example
5980 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
5981 @end example
5982
5983 @item
5984 Use aselect to select only audio frames with samples number > 100:
5985 @example
5986 aselect='gt(samples_n\,100)'
5987 @end example
5988
5989 @item
5990 Create a mosaic of the first scenes:
5991 @example
5992 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
5993 @end example
5994
5995 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
5996 choice.
5997 @end itemize
5998
5999 @section asendcmd, sendcmd
6000
6001 Send commands to filters in the filtergraph.
6002
6003 These filters read commands to be sent to other filters in the
6004 filtergraph.
6005
6006 @code{asendcmd} must be inserted between two audio filters,
6007 @code{sendcmd} must be inserted between two video filters, but apart
6008 from that they act the same way.
6009
6010 The specification of commands can be provided in the filter arguments
6011 with the @var{commands} option, or in a file specified by the
6012 @var{filename} option.
6013
6014 These filters accept the following options:
6015 @table @option
6016 @item commands, c
6017 Set the commands to be read and sent to the other filters.
6018 @item filename, f
6019 Set the filename of the commands to be read and sent to the other
6020 filters.
6021 @end table
6022
6023 @subsection Commands syntax
6024
6025 A commands description consists of a sequence of interval
6026 specifications, comprising a list of commands to be executed when a
6027 particular event related to that interval occurs. The occurring event
6028 is typically the current frame time entering or leaving a given time
6029 interval.
6030
6031 An interval is specified by the following syntax:
6032 @example
6033 @var{START}[-@var{END}] @var{COMMANDS};
6034 @end example
6035
6036 The time interval is specified by the @var{START} and @var{END} times.
6037 @var{END} is optional and defaults to the maximum time.
6038
6039 The current frame time is considered within the specified interval if
6040 it is included in the interval [@var{START}, @var{END}), that is when
6041 the time is greater or equal to @var{START} and is lesser than
6042 @var{END}.
6043
6044 @var{COMMANDS} consists of a sequence of one or more command
6045 specifications, separated by ",", relating to that interval.  The
6046 syntax of a command specification is given by:
6047 @example
6048 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
6049 @end example
6050
6051 @var{FLAGS} is optional and specifies the type of events relating to
6052 the time interval which enable sending the specified command, and must
6053 be a non-null sequence of identifier flags separated by "+" or "|" and
6054 enclosed between "[" and "]".
6055
6056 The following flags are recognized:
6057 @table @option
6058 @item enter
6059 The command is sent when the current frame timestamp enters the
6060 specified interval. In other words, the command is sent when the
6061 previous frame timestamp was not in the given interval, and the
6062 current is.
6063
6064 @item leave
6065 The command is sent when the current frame timestamp leaves the
6066 specified interval. In other words, the command is sent when the
6067 previous frame timestamp was in the given interval, and the
6068 current is not.
6069 @end table
6070
6071 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
6072 assumed.
6073
6074 @var{TARGET} specifies the target of the command, usually the name of
6075 the filter class or a specific filter instance name.
6076
6077 @var{COMMAND} specifies the name of the command for the target filter.
6078
6079 @var{ARG} is optional and specifies the optional list of argument for
6080 the given @var{COMMAND}.
6081
6082 Between one interval specification and another, whitespaces, or
6083 sequences of characters starting with @code{#} until the end of line,
6084 are ignored and can be used to annotate comments.
6085
6086 A simplified BNF description of the commands specification syntax
6087 follows:
6088 @example
6089 @var{COMMAND_FLAG}  ::= "enter" | "leave"
6090 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
6091 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
6092 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
6093 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
6094 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
6095 @end example
6096
6097 @subsection Examples
6098
6099 @itemize
6100 @item
6101 Specify audio tempo change at second 4:
6102 @example
6103 asendcmd=c='4.0 atempo tempo 1.5',atempo
6104 @end example
6105
6106 @item
6107 Specify a list of drawtext and hue commands in a file.
6108 @example
6109 # show text in the interval 5-10
6110 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
6111          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
6112
6113 # desaturate the image in the interval 15-20
6114 15.0-20.0 [enter] hue reinit s=0,
6115           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
6116           [leave] hue reinit s=1,
6117           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
6118
6119 # apply an exponential saturation fade-out effect, starting from time 25
6120 25 [enter] hue s=exp(t-25)
6121 @end example
6122
6123 A filtergraph allowing to read and process the above command list
6124 stored in a file @file{test.cmd}, can be specified with:
6125 @example
6126 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
6127 @end example
6128 @end itemize
6129
6130 @anchor{setpts}
6131 @section asetpts, setpts
6132
6133 Change the PTS (presentation timestamp) of the input frames.
6134
6135 @code{asetpts} works on audio frames, @code{setpts} on video frames.
6136
6137 Accept in input an expression evaluated through the eval API, which
6138 can contain the following constants:
6139
6140 @table @option
6141 @item FRAME_RATE
6142 frame rate, only defined for constant frame-rate video
6143
6144 @item PTS
6145 the presentation timestamp in input
6146
6147 @item N
6148 the count of the input frame, starting from 0.
6149
6150 @item NB_CONSUMED_SAMPLES
6151 the number of consumed samples, not including the current frame (only
6152 audio)
6153
6154 @item NB_SAMPLES
6155 the number of samples in the current frame (only audio)
6156
6157 @item SAMPLE_RATE
6158 audio sample rate
6159
6160 @item STARTPTS
6161 the PTS of the first frame
6162
6163 @item STARTT
6164 the time in seconds of the first frame
6165
6166 @item INTERLACED
6167 tell if the current frame is interlaced
6168
6169 @item T
6170 the time in seconds of the current frame
6171
6172 @item TB
6173 the time base
6174
6175 @item POS
6176 original position in the file of the frame, or undefined if undefined
6177 for the current frame
6178
6179 @item PREV_INPTS
6180 previous input PTS
6181
6182 @item PREV_INT
6183 previous input time in seconds
6184
6185 @item PREV_OUTPTS
6186 previous output PTS
6187
6188 @item PREV_OUTT
6189 previous output time in seconds
6190
6191 @item RTCTIME
6192 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
6193 instead.
6194
6195 @item RTCSTART
6196 wallclock (RTC) time at the start of the movie in microseconds
6197 @end table
6198
6199 @subsection Examples
6200
6201 @itemize
6202 @item
6203 Start counting PTS from zero
6204 @example
6205 setpts=PTS-STARTPTS
6206 @end example
6207
6208 @item
6209 Apply fast motion effect:
6210 @example
6211 setpts=0.5*PTS
6212 @end example
6213
6214 @item
6215 Apply slow motion effect:
6216 @example
6217 setpts=2.0*PTS
6218 @end example
6219
6220 @item
6221 Set fixed rate of 25 frames per second:
6222 @example
6223 setpts=N/(25*TB)
6224 @end example
6225
6226 @item
6227 Set fixed rate 25 fps with some jitter:
6228 @example
6229 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
6230 @end example
6231
6232 @item
6233 Apply an offset of 10 seconds to the input PTS:
6234 @example
6235 setpts=PTS+10/TB
6236 @end example
6237
6238 @item
6239 Generate timestamps from a "live source" and rebase onto the current timebase:
6240 @example
6241 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
6242 @end example
6243 @end itemize
6244
6245 @section ebur128
6246
6247 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
6248 it unchanged. By default, it logs a message at a frequency of 10Hz with the
6249 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
6250 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
6251
6252 The filter also has a video output (see the @var{video} option) with a real
6253 time graph to observe the loudness evolution. The graphic contains the logged
6254 message mentioned above, so it is not printed anymore when this option is set,
6255 unless the verbose logging is set. The main graphing area contains the
6256 short-term loudness (3 seconds of analysis), and the gauge on the right is for
6257 the momentary loudness (400 milliseconds).
6258
6259 More information about the Loudness Recommendation EBU R128 on
6260 @url{http://tech.ebu.ch/loudness}.
6261
6262 The filter accepts the following named parameters:
6263
6264 @table @option
6265
6266 @item video
6267 Activate the video output. The audio stream is passed unchanged whether this
6268 option is set or no. The video stream will be the first output stream if
6269 activated. Default is @code{0}.
6270
6271 @item size
6272 Set the video size. This option is for video only. Default and minimum
6273 resolution is @code{640x480}.
6274
6275 @item meter
6276 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
6277 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
6278 other integer value between this range is allowed.
6279
6280 @end table
6281
6282 Example of real-time graph using @command{ffplay}, with a EBU scale meter +18:
6283 @example
6284 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
6285 @end example
6286
6287 Run an analysis with @command{ffmpeg}:
6288 @example
6289 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
6290 @end example
6291
6292 @section settb, asettb
6293
6294 Set the timebase to use for the output frames timestamps.
6295 It is mainly useful for testing timebase configuration.
6296
6297 It accepts in input an arithmetic expression representing a rational.
6298 The expression can contain the constants "AVTB" (the
6299 default timebase), "intb" (the input timebase) and "sr" (the sample rate,
6300 audio only).
6301
6302 The default value for the input is "intb".
6303
6304 @subsection Examples
6305
6306 @itemize
6307 @item
6308 Set the timebase to 1/25:
6309 @example
6310 settb=1/25
6311 @end example
6312
6313 @item
6314 Set the timebase to 1/10:
6315 @example
6316 settb=0.1
6317 @end example
6318
6319 @item
6320 Set the timebase to 1001/1000:
6321 @example
6322 settb=1+0.001
6323 @end example
6324
6325 @item
6326 Set the timebase to 2*intb:
6327 @example
6328 settb=2*intb
6329 @end example
6330
6331 @item
6332 Set the default timebase value:
6333 @example
6334 settb=AVTB
6335 @end example
6336 @end itemize
6337
6338 @section concat
6339
6340 Concatenate audio and video streams, joining them together one after the
6341 other.
6342
6343 The filter works on segments of synchronized video and audio streams. All
6344 segments must have the same number of streams of each type, and that will
6345 also be the number of streams at output.
6346
6347 The filter accepts the following named parameters:
6348 @table @option
6349
6350 @item n
6351 Set the number of segments. Default is 2.
6352
6353 @item v
6354 Set the number of output video streams, that is also the number of video
6355 streams in each segment. Default is 1.
6356
6357 @item a
6358 Set the number of output audio streams, that is also the number of video
6359 streams in each segment. Default is 0.
6360
6361 @item unsafe
6362 Activate unsafe mode: do not fail if segments have a different format.
6363
6364 @end table
6365
6366 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
6367 @var{a} audio outputs.
6368
6369 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
6370 segment, in the same order as the outputs, then the inputs for the second
6371 segment, etc.
6372
6373 Related streams do not always have exactly the same duration, for various
6374 reasons including codec frame size or sloppy authoring. For that reason,
6375 related synchronized streams (e.g. a video and its audio track) should be
6376 concatenated at once. The concat filter will use the duration of the longest
6377 stream in each segment (except the last one), and if necessary pad shorter
6378 audio streams with silence.
6379
6380 For this filter to work correctly, all segments must start at timestamp 0.
6381
6382 All corresponding streams must have the same parameters in all segments; the
6383 filtering system will automatically select a common pixel format for video
6384 streams, and a common sample format, sample rate and channel layout for
6385 audio streams, but other settings, such as resolution, must be converted
6386 explicitly by the user.
6387
6388 Different frame rates are acceptable but will result in variable frame rate
6389 at output; be sure to configure the output file to handle it.
6390
6391 Examples:
6392 @itemize
6393 @item
6394 Concatenate an opening, an episode and an ending, all in bilingual version
6395 (video in stream 0, audio in streams 1 and 2):
6396 @example
6397 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
6398   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
6399    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
6400   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
6401 @end example
6402
6403 @item
6404 Concatenate two parts, handling audio and video separately, using the
6405 (a)movie sources, and adjusting the resolution:
6406 @example
6407 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
6408 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
6409 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
6410 @end example
6411 Note that a desync will happen at the stitch if the audio and video streams
6412 do not have exactly the same duration in the first file.
6413
6414 @end itemize
6415
6416 @section showspectrum
6417
6418 Convert input audio to a video output, representing the audio frequency
6419 spectrum.
6420
6421 The filter accepts the following named parameters:
6422 @table @option
6423 @item size, s
6424 Specify the video size for the output. Default value is @code{640x512}.
6425
6426 @item slide
6427 Specify if the spectrum should slide along the window. Default value is
6428 @code{0}.
6429
6430 @item mode
6431 Specify display mode.
6432
6433 It accepts the following values:
6434 @table @samp
6435 @item combined
6436 all channels are displayed in the same row
6437 @item separate
6438 all channels are displayed in separate rows
6439 @end table
6440
6441 Default value is @samp{combined}.
6442
6443 @item color
6444 Specify display color mode.
6445
6446 It accepts the following values:
6447 @table @samp
6448 @item channel
6449 each channel is displayed in a separate color
6450 @item intensity
6451 each channel is is displayed using the same color scheme
6452 @end table
6453
6454 Default value is @samp{channel}.
6455
6456 @item scale
6457 Specify scale used for calculating intensity color values.
6458
6459 It accepts the following values:
6460 @table @samp
6461 @item lin
6462 linear
6463 @item sqrt
6464 square root, default
6465 @item cbrt
6466 cubic root
6467 @item log
6468 logarithmic
6469 @end table
6470
6471 Default value is @samp{sqrt}.
6472
6473 @item saturation
6474 Set saturation modifier for displayed colors. Negative values provide
6475 alternative color scheme. @code{0} is no saturation at all.
6476 Saturation must be in [-10.0, 10.0] range.
6477 Default value is @code{1}.
6478 @end table
6479
6480 The usage is very similar to the showwaves filter; see the examples in that
6481 section.
6482
6483 @section showwaves
6484
6485 Convert input audio to a video output, representing the samples waves.
6486
6487 The filter accepts the following named parameters:
6488 @table @option
6489 @item mode
6490 Set display mode.
6491
6492 Available values are:
6493 @table @samp
6494 @item point
6495 Draw a point for each sample.
6496
6497 @item line
6498 Draw a vertical line for each sample.
6499 @end table
6500
6501 Default value is @code{point}.
6502
6503 @item n
6504 Set the number of samples which are printed on the same column. A
6505 larger value will decrease the frame rate. Must be a positive
6506 integer. This option can be set only if the value for @var{rate}
6507 is not explicitly specified.
6508
6509 @item rate, r
6510 Set the (approximate) output frame rate. This is done by setting the
6511 option @var{n}. Default value is "25".
6512
6513 @item size, s
6514 Specify the video size for the output. Default value is "600x240".
6515 @end table
6516
6517 Some examples follow.
6518 @itemize
6519 @item
6520 Output the input file audio and the corresponding video representation
6521 at the same time:
6522 @example
6523 amovie=a.mp3,asplit[out0],showwaves[out1]
6524 @end example
6525
6526 @item
6527 Create a synthetic signal and show it with showwaves, forcing a
6528 framerate of 30 frames per second:
6529 @example
6530 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
6531 @end example
6532 @end itemize
6533
6534 @c man end MULTIMEDIA FILTERS
6535
6536 @chapter Multimedia Sources
6537 @c man begin MULTIMEDIA SOURCES
6538
6539 Below is a description of the currently available multimedia sources.
6540
6541 @section amovie
6542
6543 This is the same as @ref{movie} source, except it selects an audio
6544 stream by default.
6545
6546 @anchor{movie}
6547 @section movie
6548
6549 Read audio and/or video stream(s) from a movie container.
6550
6551 It accepts the syntax: @var{movie_name}[:@var{options}] where
6552 @var{movie_name} is the name of the resource to read (not necessarily
6553 a file but also a device or a stream accessed through some protocol),
6554 and @var{options} is an optional sequence of @var{key}=@var{value}
6555 pairs, separated by ":".
6556
6557 The description of the accepted options follows.
6558
6559 @table @option
6560
6561 @item format_name, f
6562 Specifies the format assumed for the movie to read, and can be either
6563 the name of a container or an input device. If not specified the
6564 format is guessed from @var{movie_name} or by probing.
6565
6566 @item seek_point, sp
6567 Specifies the seek point in seconds, the frames will be output
6568 starting from this seek point, the parameter is evaluated with
6569 @code{av_strtod} so the numerical value may be suffixed by an IS
6570 postfix. Default value is "0".
6571
6572 @item streams, s
6573 Specifies the streams to read. Several streams can be specified,
6574 separated by "+". The source will then have as many outputs, in the
6575 same order. The syntax is explained in the ``Stream specifiers''
6576 section in the ffmpeg manual. Two special names, "dv" and "da" specify
6577 respectively the default (best suited) video and audio stream. Default
6578 is "dv", or "da" if the filter is called as "amovie".
6579
6580 @item stream_index, si
6581 Specifies the index of the video stream to read. If the value is -1,
6582 the best suited video stream will be automatically selected. Default
6583 value is "-1". Deprecated. If the filter is called "amovie", it will select
6584 audio instead of video.
6585
6586 @item loop
6587 Specifies how many times to read the stream in sequence.
6588 If the value is less than 1, the stream will be read again and again.
6589 Default value is "1".
6590
6591 Note that when the movie is looped the source timestamps are not
6592 changed, so it will generate non monotonically increasing timestamps.
6593 @end table
6594
6595 This filter allows to overlay a second video on top of main input of
6596 a filtergraph as shown in this graph:
6597 @example
6598 input -----------> deltapts0 --> overlay --> output
6599                                     ^
6600                                     |
6601 movie --> scale--> deltapts1 -------+
6602 @end example
6603
6604 Some examples follow.
6605
6606 @itemize
6607 @item
6608 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
6609 on top of the input labelled as "in":
6610 @example
6611 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
6612 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
6613 @end example
6614
6615 @item
6616 Read from a video4linux2 device, and overlay it on top of the input
6617 labelled as "in":
6618 @example
6619 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
6620 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
6621 @end example
6622
6623 @item
6624 Read the first video stream and the audio stream with id 0x81 from
6625 dvd.vob; the video is connected to the pad named "video" and the audio is
6626 connected to the pad named "audio":
6627 @example
6628 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
6629 @end example
6630 @end itemize
6631
6632 @c man end MULTIMEDIA SOURCES