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