]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
lavfi/kerndeint: switch to AVOption-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 @section fieldorder
3116
3117 Transform the field order of the input video.
3118
3119 This filter accepts the following options:
3120
3121 @table @option
3122
3123 @item order
3124 Output field order. Valid values are @var{tff} for top field first or @var{bff}
3125 for bottom field first.
3126 @end table
3127
3128 Default value is @samp{tff}.
3129
3130 Transformation is achieved by shifting the picture content up or down
3131 by one line, and filling the remaining line with appropriate picture content.
3132 This method is consistent with most broadcast field order converters.
3133
3134 If the input video is not flagged as being interlaced, or it is already
3135 flagged as being of the required output field order then this filter does
3136 not alter the incoming video.
3137
3138 This filter is very useful when converting to or from PAL DV material,
3139 which is bottom field first.
3140
3141 For example:
3142 @example
3143 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
3144 @end example
3145
3146 @section fifo
3147
3148 Buffer input images and send them when they are requested.
3149
3150 This filter is mainly useful when auto-inserted by the libavfilter
3151 framework.
3152
3153 The filter does not take parameters.
3154
3155 @anchor{format}
3156 @section format
3157
3158 Convert the input video to one of the specified pixel formats.
3159 Libavfilter will try to pick one that is supported for the input to
3160 the next filter.
3161
3162 This filter accepts the following parameters:
3163 @table @option
3164
3165 @item pix_fmts
3166 A '|'-separated list of pixel format names, for example
3167 "pix_fmts=yuv420p|monow|rgb24".
3168
3169 @end table
3170
3171 @subsection Examples
3172
3173 @itemize
3174 @item
3175 Convert the input video to the format @var{yuv420p}
3176 @example
3177 format=pix_fmts=yuv420p
3178 @end example
3179
3180 Convert the input video to any of the formats in the list
3181 @example
3182 format=pix_fmts=yuv420p|yuv444p|yuv410p
3183 @end example
3184 @end itemize
3185
3186 @section fps
3187
3188 Convert the video to specified constant frame rate by duplicating or dropping
3189 frames as necessary.
3190
3191 This filter accepts the following named parameters:
3192 @table @option
3193
3194 @item fps
3195 Desired output frame rate. The default is @code{25}.
3196
3197 @item round
3198 Rounding method.
3199
3200 Possible values are:
3201 @table @option
3202 @item zero
3203 zero round towards 0
3204 @item inf
3205 round away from 0
3206 @item down
3207 round towards -infinity
3208 @item up
3209 round towards +infinity
3210 @item near
3211 round to nearest
3212 @end table
3213 The default is @code{near}.
3214
3215 @end table
3216
3217 Alternatively, the options can be specified as a flat string:
3218 @var{fps}[:@var{round}].
3219
3220 See also the @ref{setpts} filter.
3221
3222 @section framestep
3223
3224 Select one frame every N.
3225
3226 This filter accepts in input a string representing a positive
3227 integer. Default argument is @code{1}.
3228
3229 @anchor{frei0r}
3230 @section frei0r
3231
3232 Apply a frei0r effect to the input video.
3233
3234 To enable compilation of this filter you need to install the frei0r
3235 header and configure FFmpeg with @code{--enable-frei0r}.
3236
3237 This filter accepts the following options:
3238
3239 @table @option
3240
3241 @item filter_name
3242 The name to the frei0r effect to load. If the environment variable
3243 @env{FREI0R_PATH} is defined, the frei0r effect is searched in each one of the
3244 directories specified by the colon separated list in @env{FREIOR_PATH},
3245 otherwise in the standard frei0r paths, which are in this order:
3246 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
3247 @file{/usr/lib/frei0r-1/}.
3248
3249 @item filter_params
3250 A '|'-separated list of parameters to pass to the frei0r effect.
3251
3252 @end table
3253
3254 A frei0r effect parameter can be a boolean (whose values are specified
3255 with "y" and "n"), a double, a color (specified by the syntax
3256 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
3257 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
3258 description), a position (specified by the syntax @var{X}/@var{Y},
3259 @var{X} and @var{Y} being float numbers) and a string.
3260
3261 The number and kind of parameters depend on the loaded effect. If an
3262 effect parameter is not specified the default value is set.
3263
3264 @subsection Examples
3265
3266 @itemize
3267 @item
3268 Apply the distort0r effect, set the first two double parameters:
3269 @example
3270 frei0r=filter_name=distort0r:filter_params=0.5|0.01
3271 @end example
3272
3273 @item
3274 Apply the colordistance effect, take a color as first parameter:
3275 @example
3276 frei0r=colordistance:0.2/0.3/0.4
3277 frei0r=colordistance:violet
3278 frei0r=colordistance:0x112233
3279 @end example
3280
3281 @item
3282 Apply the perspective effect, specify the top left and top right image
3283 positions:
3284 @example
3285 frei0r=perspective:0.2/0.2|0.8/0.2
3286 @end example
3287 @end itemize
3288
3289 For more information see:
3290 @url{http://frei0r.dyne.org}
3291
3292 @section geq
3293
3294 The filter accepts the following options:
3295
3296 @table @option
3297 @item lum_expr
3298 the luminance expression
3299 @item cb_expr
3300 the chrominance blue expression
3301 @item cr_expr
3302 the chrominance red expression
3303 @item alpha_expr
3304 the alpha expression
3305 @end table
3306
3307 If one of the chrominance expression is not defined, it falls back on the other
3308 one. If no alpha expression is specified it will evaluate to opaque value.
3309 If none of chrominance expressions are
3310 specified, they will evaluate the luminance expression.
3311
3312 The expressions can use the following variables and functions:
3313
3314 @table @option
3315 @item N
3316 The sequential number of the filtered frame, starting from @code{0}.
3317
3318 @item X
3319 @item Y
3320 The coordinates of the current sample.
3321
3322 @item W
3323 @item H
3324 The width and height of the image.
3325
3326 @item SW
3327 @item SH
3328 Width and height scale depending on the currently filtered plane. It is the
3329 ratio between the corresponding luma plane number of pixels and the current
3330 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3331 @code{0.5,0.5} for chroma planes.
3332
3333 @item T
3334 Time of the current frame, expressed in seconds.
3335
3336 @item p(x, y)
3337 Return the value of the pixel at location (@var{x},@var{y}) of the current
3338 plane.
3339
3340 @item lum(x, y)
3341 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
3342 plane.
3343
3344 @item cb(x, y)
3345 Return the value of the pixel at location (@var{x},@var{y}) of the
3346 blue-difference chroma plane. Returns 0 if there is no such plane.
3347
3348 @item cr(x, y)
3349 Return the value of the pixel at location (@var{x},@var{y}) of the
3350 red-difference chroma plane. Returns 0 if there is no such plane.
3351
3352 @item alpha(x, y)
3353 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
3354 plane. Returns 0 if there is no such plane.
3355 @end table
3356
3357 For functions, if @var{x} and @var{y} are outside the area, the value will be
3358 automatically clipped to the closer edge.
3359
3360 @subsection Examples
3361
3362 @itemize
3363 @item
3364 Flip the image horizontally:
3365 @example
3366 geq=p(W-X\,Y)
3367 @end example
3368
3369 @item
3370 Generate a bidimensional sine wave, with angle @code{PI/3} and a
3371 wavelength of 100 pixels:
3372 @example
3373 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
3374 @end example
3375
3376 @item
3377 Generate a fancy enigmatic moving light:
3378 @example
3379 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
3380 @end example
3381 @end itemize
3382
3383 @section gradfun
3384
3385 Fix the banding artifacts that are sometimes introduced into nearly flat
3386 regions by truncation to 8bit color depth.
3387 Interpolate the gradients that should go where the bands are, and
3388 dither them.
3389
3390 This filter is designed for playback only.  Do not use it prior to
3391 lossy compression, because compression tends to lose the dither and
3392 bring back the bands.
3393
3394 This filter accepts the following options:
3395
3396 @table @option
3397
3398 @item strength
3399 The maximum amount by which the filter will change any one pixel. Also the
3400 threshold for detecting nearly flat regions. Acceptable values range from .51 to
3401 64, default value is 1.2, out-of-range values will be clipped to the valid
3402 range.
3403
3404 @item radius
3405 The neighborhood to fit the gradient to. A larger radius makes for smoother
3406 gradients, but also prevents the filter from modifying the pixels near detailed
3407 regions. Acceptable values are 8-32, default value is 16, out-of-range values
3408 will be clipped to the valid range.
3409
3410 @end table
3411
3412 Alternatively, the options can be specified as a flat string:
3413 @var{strength}[:@var{radius}]
3414
3415 @subsection Examples
3416
3417 @itemize
3418 @item
3419 Apply the filter with a @code{3.5} strength and radius of @code{8}:
3420 @example
3421 gradfun=3.5:8
3422 @end example
3423
3424 @item
3425 Specify radius, omitting the strength (which will fall-back to the default
3426 value):
3427 @example
3428 gradfun=radius=8
3429 @end example
3430
3431 @end itemize
3432
3433 @section hflip
3434
3435 Flip the input video horizontally.
3436
3437 For example to horizontally flip the input video with @command{ffmpeg}:
3438 @example
3439 ffmpeg -i in.avi -vf "hflip" out.avi
3440 @end example
3441
3442 @section histeq
3443 This filter applies a global color histogram equalization on a
3444 per-frame basis.
3445
3446 It can be used to correct video that has a compressed range of pixel
3447 intensities.  The filter redistributes the pixel intensities to
3448 equalize their distribution across the intensity range. It may be
3449 viewed as an "automatically adjusting contrast filter". This filter is
3450 useful only for correcting degraded or poorly captured source
3451 video.
3452
3453 The filter accepts parameters as a list of @var{key}=@var{value}
3454 pairs, separated by ":". If the key of the first options is omitted,
3455 the arguments are interpreted according to syntax
3456 @var{strength}:@var{intensity}:@var{antibanding}.
3457
3458 This filter accepts the following named options:
3459
3460 @table @option
3461 @item strength
3462 Determine the amount of equalization to be applied.  As the strength
3463 is reduced, the distribution of pixel intensities more-and-more
3464 approaches that of the input frame. The value must be a float number
3465 in the range [0,1] and defaults to 0.200.
3466
3467 @item intensity
3468 Set the maximum intensity that can generated and scale the output
3469 values appropriately.  The strength should be set as desired and then
3470 the intensity can be limited if needed to avoid washing-out. The value
3471 must be a float number in the range [0,1] and defaults to 0.210.
3472
3473 @item antibanding
3474 Set the antibanding level. If enabled the filter will randomly vary
3475 the luminance of output pixels by a small amount to avoid banding of
3476 the histogram. Possible values are @code{none}, @code{weak} or
3477 @code{strong}. It defaults to @code{none}.
3478 @end table
3479
3480 @section histogram
3481
3482 Compute and draw a color distribution histogram for the input video.
3483
3484 The computed histogram is a representation of distribution of color components
3485 in an image.
3486
3487 The filter accepts the following named parameters:
3488
3489 @table @option
3490 @item mode
3491 Set histogram mode.
3492
3493 It accepts the following values:
3494 @table @samp
3495 @item levels
3496 standard histogram that display color components distribution in an image.
3497 Displays color graph for each color component. Shows distribution
3498 of the Y, U, V, A or G, B, R components, depending on input format,
3499 in current frame. Bellow each graph is color component scale meter.
3500
3501 @item color
3502 chroma values in vectorscope, if brighter more such chroma values are
3503 distributed in an image.
3504 Displays chroma values (U/V color placement) in two dimensional graph
3505 (which is called a vectorscope). It can be used to read of the hue and
3506 saturation of the current frame. At a same time it is a histogram.
3507 The whiter a pixel in the vectorscope, the more pixels of the input frame
3508 correspond to that pixel (that is the more pixels have this chroma value).
3509 The V component is displayed on the horizontal (X) axis, with the leftmost
3510 side being V = 0 and the rightmost side being V = 255.
3511 The U component is displayed on the vertical (Y) axis, with the top
3512 representing U = 0 and the bottom representing U = 255.
3513
3514 The position of a white pixel in the graph corresponds to the chroma value
3515 of a pixel of the input clip. So the graph can be used to read of the
3516 hue (color flavor) and the saturation (the dominance of the hue in the color).
3517 As the hue of a color changes, it moves around the square. At the center of
3518 the square, the saturation is zero, which means that the corresponding pixel
3519 has no color. If you increase the amount of a specific color, while leaving
3520 the other colors unchanged, the saturation increases, and you move towards
3521 the edge of the square.
3522
3523 @item color2
3524 chroma values in vectorscope, similar as @code{color} but actual chroma values
3525 are displayed.
3526
3527 @item waveform
3528 per row/column color component graph. In row mode graph in the left side represents
3529 color component value 0 and right side represents value = 255. In column mode top
3530 side represents color component value = 0 and bottom side represents value = 255.
3531 @end table
3532 Default value is @code{levels}.
3533
3534 @item level_height
3535 Set height of level in @code{levels}. Default value is @code{200}.
3536 Allowed range is [50, 2048].
3537
3538 @item scale_height
3539 Set height of color scale in @code{levels}. Default value is @code{12}.
3540 Allowed range is [0, 40].
3541
3542 @item step
3543 Set step for @code{waveform} mode. Smaller values are useful to find out how much
3544 of same luminance values across input rows/columns are distributed.
3545 Default value is @code{10}. Allowed range is [1, 255].
3546
3547 @item waveform_mode
3548 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
3549 Default is @code{row}.
3550
3551 @item display_mode
3552 Set display mode for @code{waveform} and @code{levels}.
3553 It accepts the following values:
3554 @table @samp
3555 @item parade
3556 Display separate graph for the color components side by side in
3557 @code{row} waveform mode or one below other in @code{column} waveform mode
3558 for @code{waveform} histogram mode. For @code{levels} histogram mode
3559 per color component graphs are placed one bellow other.
3560
3561 This display mode in @code{waveform} histogram mode makes it easy to spot
3562 color casts in the highlights and shadows of an image, by comparing the
3563 contours of the top and the bottom of each waveform.
3564 Since whites, grays, and blacks are characterized by
3565 exactly equal amounts of red, green, and blue, neutral areas of the
3566 picture should display three waveforms of roughly equal width/height.
3567 If not, the correction is easy to make by making adjustments to level the
3568 three waveforms.
3569
3570 @item overlay
3571 Presents information that's identical to that in the @code{parade}, except
3572 that the graphs representing color components are superimposed directly
3573 over one another.
3574
3575 This display mode in @code{waveform} histogram mode can make it easier to spot
3576 the relative differences or similarities in overlapping areas of the color
3577 components that are supposed to be identical, such as neutral whites, grays,
3578 or blacks.
3579 @end table
3580 Default is @code{parade}.
3581 @end table
3582
3583 @subsection Examples
3584
3585 @itemize
3586
3587 @item
3588 Calculate and draw histogram:
3589 @example
3590 ffplay -i input -vf histogram
3591 @end example
3592
3593 @end itemize
3594
3595 @section hqdn3d
3596
3597 High precision/quality 3d denoise filter. This filter aims to reduce
3598 image noise producing smooth images and making still images really
3599 still. It should enhance compressibility.
3600
3601 It accepts the following optional parameters:
3602
3603 @table @option
3604 @item luma_spatial
3605 a non-negative float number which specifies spatial luma strength,
3606 defaults to 4.0
3607
3608 @item chroma_spatial
3609 a non-negative float number which specifies spatial chroma strength,
3610 defaults to 3.0*@var{luma_spatial}/4.0
3611
3612 @item luma_tmp
3613 a float number which specifies luma temporal strength, defaults to
3614 6.0*@var{luma_spatial}/4.0
3615
3616 @item chroma_tmp
3617 a float number which specifies chroma temporal strength, defaults to
3618 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
3619 @end table
3620
3621 @section hue
3622
3623 Modify the hue and/or the saturation of the input.
3624
3625 This filter accepts the following optional named options:
3626
3627 @table @option
3628 @item h
3629 Specify the hue angle as a number of degrees. It accepts a float
3630 number or an expression, and defaults to 0.0.
3631
3632 @item H
3633 Specify the hue angle as a number of radians. It accepts a float
3634 number or an expression, and defaults to 0.0.
3635
3636 @item s
3637 Specify the saturation in the [-10,10] range. It accepts a float number and
3638 defaults to 1.0.
3639 @end table
3640
3641 The @var{h}, @var{H} and @var{s} parameters are expressions containing the
3642 following constants:
3643
3644 @table @option
3645 @item n
3646 frame count of the input frame starting from 0
3647
3648 @item pts
3649 presentation timestamp of the input frame expressed in time base units
3650
3651 @item r
3652 frame rate of the input video, NAN if the input frame rate is unknown
3653
3654 @item t
3655 timestamp expressed in seconds, NAN if the input timestamp is unknown
3656
3657 @item tb
3658 time base of the input video
3659 @end table
3660
3661 The options can also be set using the syntax: @var{hue}:@var{saturation}
3662
3663 In this case @var{hue} is expressed in degrees.
3664
3665 @subsection Examples
3666
3667 @itemize
3668 @item
3669 Set the hue to 90 degrees and the saturation to 1.0:
3670 @example
3671 hue=h=90:s=1
3672 @end example
3673
3674 @item
3675 Same command but expressing the hue in radians:
3676 @example
3677 hue=H=PI/2:s=1
3678 @end example
3679
3680 @item
3681 Same command without named options, hue must be expressed in degrees:
3682 @example
3683 hue=90:1
3684 @end example
3685
3686 @item
3687 Note that "h:s" syntax does not support expressions for the values of
3688 h and s, so the following example will issue an error:
3689 @example
3690 hue=PI/2:1
3691 @end example
3692
3693 @item
3694 Rotate hue and make the saturation swing between 0
3695 and 2 over a period of 1 second:
3696 @example
3697 hue="H=2*PI*t: s=sin(2*PI*t)+1"
3698 @end example
3699
3700 @item
3701 Apply a 3 seconds saturation fade-in effect starting at 0:
3702 @example
3703 hue="s=min(t/3\,1)"
3704 @end example
3705
3706 The general fade-in expression can be written as:
3707 @example
3708 hue="s=min(0\, max((t-START)/DURATION\, 1))"
3709 @end example
3710
3711 @item
3712 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
3713 @example
3714 hue="s=max(0\, min(1\, (8-t)/3))"
3715 @end example
3716
3717 The general fade-out expression can be written as:
3718 @example
3719 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
3720 @end example
3721
3722 @end itemize
3723
3724 @subsection Commands
3725
3726 This filter supports the following command:
3727 @table @option
3728 @item reinit
3729 Modify the hue and/or the saturation of the input video.
3730 The command accepts the same named options and syntax than when calling the
3731 filter from the command-line.
3732
3733 If a parameter is omitted, it is kept at its current value.
3734 @end table
3735
3736 @section idet
3737
3738 Detect video interlacing type.
3739
3740 This filter tries to detect if the input is interlaced or progressive,
3741 top or bottom field first.
3742
3743 @section il
3744
3745 Deinterleave or interleave fields.
3746
3747 This filter allows to process interlaced images fields without
3748 deinterlacing them. Deinterleaving splits the input frame into 2
3749 fields (so called half pictures). Odd lines are moved to the top
3750 half of the output image, even lines to the bottom half.
3751 You can process (filter) them independently and then re-interleave them.
3752
3753 The filter accepts the following options:
3754
3755 @table @option
3756 @item luma_mode, l
3757 @item chroma_mode, s
3758 @item alpha_mode, a
3759 Available values for @var{luma_mode}, @var{chroma_mode} and
3760 @var{alpha_mode} are:
3761
3762 @table @samp
3763 @item none
3764 Do nothing.
3765
3766 @item deinterleave, d
3767 Deinterleave fields, placing one above the other.
3768
3769 @item interleave, i
3770 Interleave fields. Reverse the effect of deinterleaving.
3771 @end table
3772 Default value is @code{none}.
3773
3774 @item luma_swap, ls
3775 @item chroma_swap, cs
3776 @item alpha_swap, as
3777 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
3778 @end table
3779
3780 @section kerndeint
3781
3782 Deinterlace input video by applying Donald Graft's adaptive kernel
3783 deinterling. Work on interlaced parts of a video to produce
3784 progressive frames.
3785
3786 The description of the accepted parameters follows.
3787
3788 @table @option
3789 @item thresh
3790 Set the threshold which affects the filter's tolerance when
3791 determining if a pixel line must be processed. It must be an integer
3792 in the range [0,255] and defaults to 10. A value of 0 will result in
3793 applying the process on every pixels.
3794
3795 @item map
3796 Paint pixels exceeding the threshold value to white if set to 1.
3797 Default is 0.
3798
3799 @item order
3800 Set the fields order. Swap fields if set to 1, leave fields alone if
3801 0. Default is 0.
3802
3803 @item sharp
3804 Enable additional sharpening if set to 1. Default is 0.
3805
3806 @item twoway
3807 Enable twoway sharpening if set to 1. Default is 0.
3808 @end table
3809
3810 @subsection Examples
3811
3812 @itemize
3813 @item
3814 Apply default values:
3815 @example
3816 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
3817 @end example
3818
3819 @item
3820 Enable additional sharpening:
3821 @example
3822 kerndeint=sharp=1
3823 @end example
3824
3825 @item
3826 Paint processed pixels in white:
3827 @example
3828 kerndeint=map=1
3829 @end example
3830 @end itemize
3831
3832 @section lut, lutrgb, lutyuv
3833
3834 Compute a look-up table for binding each pixel component input value
3835 to an output value, and apply it to input video.
3836
3837 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
3838 to an RGB input video.
3839
3840 These filters accept the following options:
3841 @table @option
3842 @item c0
3843 set first pixel component expression
3844 @item c1
3845 set second pixel component expression
3846 @item c2
3847 set third pixel component expression
3848 @item c3
3849 set fourth pixel component expression, corresponds to the alpha component
3850
3851 @item r
3852 set red component expression
3853 @item g
3854 set green component expression
3855 @item b
3856 set blue component expression
3857 @item a
3858 alpha component expression
3859
3860 @item y
3861 set Y/luminance component expression
3862 @item u
3863 set U/Cb component expression
3864 @item v
3865 set V/Cr component expression
3866 @end table
3867
3868 Each of them specifies the expression to use for computing the lookup table for
3869 the corresponding pixel component values.
3870
3871 The exact component associated to each of the @var{c*} options depends on the
3872 format in input.
3873
3874 The @var{lut} filter requires either YUV or RGB pixel formats in input,
3875 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
3876
3877 The expressions can contain the following constants and functions:
3878
3879 @table @option
3880 @item w, h
3881 the input width and height
3882
3883 @item val
3884 input value for the pixel component
3885
3886 @item clipval
3887 the input value clipped in the @var{minval}-@var{maxval} range
3888
3889 @item maxval
3890 maximum value for the pixel component
3891
3892 @item minval
3893 minimum value for the pixel component
3894
3895 @item negval
3896 the negated value for the pixel component value clipped in the
3897 @var{minval}-@var{maxval} range , it corresponds to the expression
3898 "maxval-clipval+minval"
3899
3900 @item clip(val)
3901 the computed value in @var{val} clipped in the
3902 @var{minval}-@var{maxval} range
3903
3904 @item gammaval(gamma)
3905 the computed gamma correction value of the pixel component value
3906 clipped in the @var{minval}-@var{maxval} range, corresponds to the
3907 expression
3908 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
3909
3910 @end table
3911
3912 All expressions default to "val".
3913
3914 @subsection Examples
3915
3916 @itemize
3917 @item
3918 Negate input video:
3919 @example
3920 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
3921 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
3922 @end example
3923
3924 The above is the same as:
3925 @example
3926 lutrgb="r=negval:g=negval:b=negval"
3927 lutyuv="y=negval:u=negval:v=negval"
3928 @end example
3929
3930 @item
3931 Negate luminance:
3932 @example
3933 lutyuv=y=negval
3934 @end example
3935
3936 @item
3937 Remove chroma components, turns the video into a graytone image:
3938 @example
3939 lutyuv="u=128:v=128"
3940 @end example
3941
3942 @item
3943 Apply a luma burning effect:
3944 @example
3945 lutyuv="y=2*val"
3946 @end example
3947
3948 @item
3949 Remove green and blue components:
3950 @example
3951 lutrgb="g=0:b=0"
3952 @end example
3953
3954 @item
3955 Set a constant alpha channel value on input:
3956 @example
3957 format=rgba,lutrgb=a="maxval-minval/2"
3958 @end example
3959
3960 @item
3961 Correct luminance gamma by a 0.5 factor:
3962 @example
3963 lutyuv=y=gammaval(0.5)
3964 @end example
3965
3966 @item
3967 Discard least significant bits of luma:
3968 @example
3969 lutyuv=y='bitand(val, 128+64+32)'
3970 @end example
3971 @end itemize
3972
3973 @section mp
3974
3975 Apply an MPlayer filter to the input video.
3976
3977 This filter provides a wrapper around most of the filters of
3978 MPlayer/MEncoder.
3979
3980 This wrapper is considered experimental. Some of the wrapped filters
3981 may not work properly and we may drop support for them, as they will
3982 be implemented natively into FFmpeg. Thus you should avoid
3983 depending on them when writing portable scripts.
3984
3985 The filters accepts the parameters:
3986 @var{filter_name}[:=]@var{filter_params}
3987
3988 @var{filter_name} is the name of a supported MPlayer filter,
3989 @var{filter_params} is a string containing the parameters accepted by
3990 the named filter.
3991
3992 The list of the currently supported filters follows:
3993 @table @var
3994 @item detc
3995 @item dint
3996 @item divtc
3997 @item down3dright
3998 @item eq2
3999 @item eq
4000 @item fil
4001 @item fspp
4002 @item ilpack
4003 @item ivtc
4004 @item mcdeint
4005 @item ow
4006 @item perspective
4007 @item phase
4008 @item pp7
4009 @item pullup
4010 @item qp
4011 @item sab
4012 @item softpulldown
4013 @item spp
4014 @item telecine
4015 @item tinterlace
4016 @item uspp
4017 @end table
4018
4019 The parameter syntax and behavior for the listed filters are the same
4020 of the corresponding MPlayer filters. For detailed instructions check
4021 the "VIDEO FILTERS" section in the MPlayer manual.
4022
4023 @subsection Examples
4024
4025 @itemize
4026 @item
4027 Adjust gamma, brightness, contrast:
4028 @example
4029 mp=eq2=1.0:2:0.5
4030 @end example
4031 @end itemize
4032
4033 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
4034
4035 @section negate
4036
4037 Negate input video.
4038
4039 This filter accepts an integer in input, if non-zero it negates the
4040 alpha component (if available). The default value in input is 0.
4041
4042 @section noformat
4043
4044 Force libavfilter not to use any of the specified pixel formats for the
4045 input to the next filter.
4046
4047 This filter accepts the following parameters:
4048 @table @option
4049
4050 @item pix_fmts
4051 A '|'-separated list of pixel format names, for example
4052 "pix_fmts=yuv420p|monow|rgb24".
4053
4054 @end table
4055
4056 @subsection Examples
4057
4058 @itemize
4059 @item
4060 Force libavfilter to use a format different from @var{yuv420p} for the
4061 input to the vflip filter:
4062 @example
4063 noformat=pix_fmts=yuv420p,vflip
4064 @end example
4065
4066 @item
4067 Convert the input video to any of the formats not contained in the list:
4068 @example
4069 noformat=yuv420p|yuv444p|yuv410p
4070 @end example
4071 @end itemize
4072
4073 @section noise
4074
4075 Add noise on video input frame.
4076
4077 This filter accepts a list of options in the form of @var{key}=@var{value}
4078 pairs separated by ":". A description of the accepted options follows.
4079
4080 @table @option
4081 @item all_seed
4082 @item c0_seed
4083 @item c1_seed
4084 @item c2_seed
4085 @item c3_seed
4086 Set noise seed for specific pixel component or all pixel components in case
4087 of @var{all_seed}. Default value is @code{123457}.
4088
4089 @item all_strength, alls
4090 @item c0_strength, c0s
4091 @item c1_strength, c1s
4092 @item c2_strength, c2s
4093 @item c3_strength, c3s
4094 Set noise strength for specific pixel component or all pixel components in case
4095 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
4096
4097 @item all_flags, allf
4098 @item c0_flags, c0f
4099 @item c1_flags, c1f
4100 @item c2_flags, c2f
4101 @item c3_flags, c3f
4102 Set pixel component flags or set flags for all components if @var{all_flags}.
4103 Available values for component flags are:
4104 @table @samp
4105 @item a
4106 averaged temporal noise (smoother)
4107 @item p
4108 mix random noise with a (semi)regular pattern
4109 @item q
4110 higher quality (slightly better looking, slightly slower)
4111 @item t
4112 temporal noise (noise pattern changes between frames)
4113 @item u
4114 uniform noise (gaussian otherwise)
4115 @end table
4116 @end table
4117
4118 @subsection Examples
4119
4120 Add temporal and uniform noise to input video:
4121 @example
4122 noise=alls=20:allf=t+u
4123 @end example
4124
4125 @section null
4126
4127 Pass the video source unchanged to the output.
4128
4129 @section ocv
4130
4131 Apply video transform using libopencv.
4132
4133 To enable this filter install libopencv library and headers and
4134 configure FFmpeg with @code{--enable-libopencv}.
4135
4136 This filter accepts the following parameters:
4137
4138 @table @option
4139
4140 @item filter_name
4141 The name of the libopencv filter to apply.
4142
4143 @item filter_params
4144 The parameters to pass to the libopencv filter. If not specified the default
4145 values are assumed.
4146
4147 @end table
4148
4149 Refer to the official libopencv documentation for more precise
4150 information:
4151 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
4152
4153 Follows the list of supported libopencv filters.
4154
4155 @anchor{dilate}
4156 @subsection dilate
4157
4158 Dilate an image by using a specific structuring element.
4159 This filter corresponds to the libopencv function @code{cvDilate}.
4160
4161 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
4162
4163 @var{struct_el} represents a structuring element, and has the syntax:
4164 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
4165
4166 @var{cols} and @var{rows} represent the number of columns and rows of
4167 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
4168 point, and @var{shape} the shape for the structuring element, and
4169 can be one of the values "rect", "cross", "ellipse", "custom".
4170
4171 If the value for @var{shape} is "custom", it must be followed by a
4172 string of the form "=@var{filename}". The file with name
4173 @var{filename} is assumed to represent a binary image, with each
4174 printable character corresponding to a bright pixel. When a custom
4175 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
4176 or columns and rows of the read file are assumed instead.
4177
4178 The default value for @var{struct_el} is "3x3+0x0/rect".
4179
4180 @var{nb_iterations} specifies the number of times the transform is
4181 applied to the image, and defaults to 1.
4182
4183 Follow some example:
4184 @example
4185 # use the default values
4186 ocv=dilate
4187
4188 # dilate using a structuring element with a 5x5 cross, iterate two times
4189 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
4190
4191 # read the shape from the file diamond.shape, iterate two times
4192 # the file diamond.shape may contain a pattern of characters like this:
4193 #   *
4194 #  ***
4195 # *****
4196 #  ***
4197 #   *
4198 # the specified cols and rows are ignored (but not the anchor point coordinates)
4199 ocv=dilate:0x0+2x2/custom=diamond.shape|2
4200 @end example
4201
4202 @subsection erode
4203
4204 Erode an image by using a specific structuring element.
4205 This filter corresponds to the libopencv function @code{cvErode}.
4206
4207 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
4208 with the same syntax and semantics as the @ref{dilate} filter.
4209
4210 @subsection smooth
4211
4212 Smooth the input video.
4213
4214 The filter takes the following parameters:
4215 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
4216
4217 @var{type} is the type of smooth filter to apply, and can be one of
4218 the following values: "blur", "blur_no_scale", "median", "gaussian",
4219 "bilateral". The default value is "gaussian".
4220
4221 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
4222 parameters whose meanings depend on smooth type. @var{param1} and
4223 @var{param2} accept integer positive values or 0, @var{param3} and
4224 @var{param4} accept float values.
4225
4226 The default value for @var{param1} is 3, the default value for the
4227 other parameters is 0.
4228
4229 These parameters correspond to the parameters assigned to the
4230 libopencv function @code{cvSmooth}.
4231
4232 @anchor{overlay}
4233 @section overlay
4234
4235 Overlay one video on top of another.
4236
4237 It takes two inputs and one output, the first input is the "main"
4238 video on which the second input is overlayed.
4239
4240 This filter accepts the following parameters:
4241
4242 A description of the accepted options follows.
4243
4244 @table @option
4245 @item x
4246 @item y
4247 Set the expression for the x and y coordinates of the overlayed video
4248 on the main video. Default value is "0" for both expressions. In case
4249 the expression is invalid, it is set to a huge value (meaning that the
4250 overlay will not be displayed within the output visible area).
4251
4252 @item enable
4253 Set the expression which enables the overlay. If the evaluation is
4254 different from 0, the overlay is displayed on top of the input
4255 frame. By default it is "1".
4256
4257 @item eval
4258 Set when the expressions for @option{x}, @option{y}, and
4259 @option{enable} are evaluated.
4260
4261 It accepts the following values:
4262 @table @samp
4263 @item init
4264 only evaluate expressions once during the filter initialization or
4265 when a command is processed
4266
4267 @item frame
4268 evaluate expressions for each incoming frame
4269 @end table
4270
4271 Default value is @samp{frame}.
4272
4273 @item shortest
4274 If set to 1, force the output to terminate when the shortest input
4275 terminates. Default value is 0.
4276
4277 @item format
4278 Set the format for the output video.
4279
4280 It accepts the following values:
4281 @table @samp
4282 @item yuv420
4283 force YUV420 output
4284
4285 @item yuv444
4286 force YUV444 output
4287
4288 @item rgb
4289 force RGB output
4290 @end table
4291
4292 Default value is @samp{yuv420}.
4293
4294 @item rgb @emph{(deprecated)}
4295 If set to 1, force the filter to accept inputs in the RGB
4296 color space. Default value is 0. This option is deprecated, use
4297 @option{format} instead.
4298 @end table
4299
4300 The @option{x}, @option{y}, and @option{enable} expressions can
4301 contain the following parameters.
4302
4303 @table @option
4304 @item main_w, W
4305 @item main_h, H
4306 main input width and height
4307
4308 @item overlay_w, w
4309 @item overlay_h, h
4310 overlay input width and height
4311
4312 @item x
4313 @item y
4314 the computed values for @var{x} and @var{y}. They are evaluated for
4315 each new frame.
4316
4317 @item hsub
4318 @item vsub
4319 horizontal and vertical chroma subsample values of the output
4320 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
4321 @var{vsub} is 1.
4322
4323 @item n
4324 the number of input frame, starting from 0
4325
4326 @item pos
4327 the position in the file of the input frame, NAN if unknown
4328
4329 @item t
4330 timestamp expressed in seconds, NAN if the input timestamp is unknown
4331 @end table
4332
4333 Note that the @var{n}, @var{pos}, @var{t} variables are available only
4334 when evaluation is done @emph{per frame}, and will evaluate to NAN
4335 when @option{eval} is set to @samp{init}.
4336
4337 Be aware that frames are taken from each input video in timestamp
4338 order, hence, if their initial timestamps differ, it is a a good idea
4339 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
4340 have them begin in the same zero timestamp, as it does the example for
4341 the @var{movie} filter.
4342
4343 You can chain together more overlays but you should test the
4344 efficiency of such approach.
4345
4346 @subsection Commands
4347
4348 This filter supports the following command:
4349 @table @option
4350 @item x
4351 Set the @option{x} option expression.
4352
4353 @item y
4354 Set the @option{y} option expression.
4355
4356 @item enable
4357 Set the @option{enable} option expression.
4358 @end table
4359
4360 @subsection Examples
4361
4362 @itemize
4363 @item
4364 Draw the overlay at 10 pixels from the bottom right corner of the main
4365 video:
4366 @example
4367 overlay=main_w-overlay_w-10:main_h-overlay_h-10
4368 @end example
4369
4370 Using named options the example above becomes:
4371 @example
4372 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
4373 @end example
4374
4375 @item
4376 Insert a transparent PNG logo in the bottom left corner of the input,
4377 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
4378 @example
4379 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
4380 @end example
4381
4382 @item
4383 Insert 2 different transparent PNG logos (second logo on bottom
4384 right corner) using the @command{ffmpeg} tool:
4385 @example
4386 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
4387 @end example
4388
4389 @item
4390 Add a transparent color layer on top of the main video, @code{WxH}
4391 must specify the size of the main input to the overlay filter:
4392 @example
4393 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
4394 @end example
4395
4396 @item
4397 Play an original video and a filtered version (here with the deshake
4398 filter) side by side using the @command{ffplay} tool:
4399 @example
4400 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
4401 @end example
4402
4403 The above command is the same as:
4404 @example
4405 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
4406 @end example
4407
4408 @item
4409 Make a sliding overlay appearing from the left to the right top part of the
4410 screen starting since time 2:
4411 @example
4412 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
4413 @end example
4414
4415 @item
4416 Compose output by putting two input videos side to side:
4417 @example
4418 ffmpeg -i left.avi -i right.avi -filter_complex "
4419 nullsrc=size=200x100 [background];
4420 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
4421 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
4422 [background][left]       overlay=shortest=1       [background+left];
4423 [background+left][right] overlay=shortest=1:x=100 [left+right]
4424 "
4425 @end example
4426
4427 @item
4428 Chain several overlays in cascade:
4429 @example
4430 nullsrc=s=200x200 [bg];
4431 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
4432 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
4433 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
4434 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
4435 [in3] null,       [mid2] overlay=100:100 [out0]
4436 @end example
4437
4438 @end itemize
4439
4440 @section pad
4441
4442 Add paddings to the input image, and place the original input at the
4443 given coordinates @var{x}, @var{y}.
4444
4445 This filter accepts the following parameters:
4446
4447 @table @option
4448 @item width, w
4449 @item height, h
4450 Specify an expression for the size of the output image with the
4451 paddings added. If the value for @var{width} or @var{height} is 0, the
4452 corresponding input size is used for the output.
4453
4454 The @var{width} expression can reference the value set by the
4455 @var{height} expression, and vice versa.
4456
4457 The default value of @var{width} and @var{height} is 0.
4458
4459 @item x
4460 @item y
4461 Specify an expression for the offsets where to place the input image
4462 in the padded area with respect to the top/left border of the output
4463 image.
4464
4465 The @var{x} expression can reference the value set by the @var{y}
4466 expression, and vice versa.
4467
4468 The default value of @var{x} and @var{y} is 0.
4469
4470 @item color
4471 Specify the color of the padded area, it can be the name of a color
4472 (case insensitive match) or a 0xRRGGBB[AA] sequence.
4473
4474 The default value of @var{color} is "black".
4475 @end table
4476
4477 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
4478 options are expressions containing the following constants:
4479
4480 @table @option
4481 @item in_w, in_h
4482 the input video width and height
4483
4484 @item iw, ih
4485 same as @var{in_w} and @var{in_h}
4486
4487 @item out_w, out_h
4488 the output width and height, that is the size of the padded area as
4489 specified by the @var{width} and @var{height} expressions
4490
4491 @item ow, oh
4492 same as @var{out_w} and @var{out_h}
4493
4494 @item x, y
4495 x and y offsets as specified by the @var{x} and @var{y}
4496 expressions, or NAN if not yet specified
4497
4498 @item a
4499 same as @var{iw} / @var{ih}
4500
4501 @item sar
4502 input sample aspect ratio
4503
4504 @item dar
4505 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4506
4507 @item hsub, vsub
4508 horizontal and vertical chroma subsample values. For example for the
4509 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4510 @end table
4511
4512 @subsection Examples
4513
4514 @itemize
4515 @item
4516 Add paddings with color "violet" to the input video. Output video
4517 size is 640x480, the top-left corner of the input video is placed at
4518 column 0, row 40:
4519 @example
4520 pad=640:480:0:40:violet
4521 @end example
4522
4523 The example above is equivalent to the following command:
4524 @example
4525 pad=width=640:height=480:x=0:y=40:color=violet
4526 @end example
4527
4528 @item
4529 Pad the input to get an output with dimensions increased by 3/2,
4530 and put the input video at the center of the padded area:
4531 @example
4532 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
4533 @end example
4534
4535 @item
4536 Pad the input to get a squared output with size equal to the maximum
4537 value between the input width and height, and put the input video at
4538 the center of the padded area:
4539 @example
4540 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
4541 @end example
4542
4543 @item
4544 Pad the input to get a final w/h ratio of 16:9:
4545 @example
4546 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
4547 @end example
4548
4549 @item
4550 In case of anamorphic video, in order to set the output display aspect
4551 correctly, it is necessary to use @var{sar} in the expression,
4552 according to the relation:
4553 @example
4554 (ih * X / ih) * sar = output_dar
4555 X = output_dar / sar
4556 @end example
4557
4558 Thus the previous example needs to be modified to:
4559 @example
4560 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
4561 @end example
4562
4563 @item
4564 Double output size and put the input video in the bottom-right
4565 corner of the output padded area:
4566 @example
4567 pad="2*iw:2*ih:ow-iw:oh-ih"
4568 @end example
4569 @end itemize
4570
4571 @section pixdesctest
4572
4573 Pixel format descriptor test filter, mainly useful for internal
4574 testing. The output video should be equal to the input video.
4575
4576 For example:
4577 @example
4578 format=monow, pixdesctest
4579 @end example
4580
4581 can be used to test the monowhite pixel format descriptor definition.
4582
4583 @section pp
4584
4585 Enable the specified chain of postprocessing subfilters using libpostproc. This
4586 library should be automatically selected with a GPL build (@code{--enable-gpl}).
4587 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
4588 Each subfilter and some options have a short and a long name that can be used
4589 interchangeably, i.e. dr/dering are the same.
4590
4591 The filters accept the following options:
4592
4593 @table @option
4594 @item subfilters
4595 Set postprocessing subfilters string.
4596 @end table
4597
4598 All subfilters share common options to determine their scope:
4599
4600 @table @option
4601 @item a/autoq
4602 Honor the quality commands for this subfilter.
4603
4604 @item c/chrom
4605 Do chrominance filtering, too (default).
4606
4607 @item y/nochrom
4608 Do luminance filtering only (no chrominance).
4609
4610 @item n/noluma
4611 Do chrominance filtering only (no luminance).
4612 @end table
4613
4614 These options can be appended after the subfilter name, separated by a '|'.
4615
4616 Available subfilters are:
4617
4618 @table @option
4619 @item hb/hdeblock[|difference[|flatness]]
4620 Horizontal deblocking filter
4621 @table @option
4622 @item difference
4623 Difference factor where higher values mean more deblocking (default: @code{32}).
4624 @item flatness
4625 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4626 @end table
4627
4628 @item vb/vdeblock[|difference[|flatness]]
4629 Vertical deblocking filter
4630 @table @option
4631 @item difference
4632 Difference factor where higher values mean more deblocking (default: @code{32}).
4633 @item flatness
4634 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4635 @end table
4636
4637 @item ha/hadeblock[|difference[|flatness]]
4638 Accurate horizontal deblocking filter
4639 @table @option
4640 @item difference
4641 Difference factor where higher values mean more deblocking (default: @code{32}).
4642 @item flatness
4643 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4644 @end table
4645
4646 @item va/vadeblock[|difference[|flatness]]
4647 Accurate vertical deblocking filter
4648 @table @option
4649 @item difference
4650 Difference factor where higher values mean more deblocking (default: @code{32}).
4651 @item flatness
4652 Flatness threshold where lower values mean more deblocking (default: @code{39}).
4653 @end table
4654 @end table
4655
4656 The horizontal and vertical deblocking filters share the difference and
4657 flatness values so you cannot set different horizontal and vertical
4658 thresholds.
4659
4660 @table @option
4661 @item h1/x1hdeblock
4662 Experimental horizontal deblocking filter
4663
4664 @item v1/x1vdeblock
4665 Experimental vertical deblocking filter
4666
4667 @item dr/dering
4668 Deringing filter
4669
4670 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
4671 @table @option
4672 @item threshold1
4673 larger -> stronger filtering
4674 @item threshold2
4675 larger -> stronger filtering
4676 @item threshold3
4677 larger -> stronger filtering
4678 @end table
4679
4680 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
4681 @table @option
4682 @item f/fullyrange
4683 Stretch luminance to @code{0-255}.
4684 @end table
4685
4686 @item lb/linblenddeint
4687 Linear blend deinterlacing filter that deinterlaces the given block by
4688 filtering all lines with a @code{(1 2 1)} filter.
4689
4690 @item li/linipoldeint
4691 Linear interpolating deinterlacing filter that deinterlaces the given block by
4692 linearly interpolating every second line.
4693
4694 @item ci/cubicipoldeint
4695 Cubic interpolating deinterlacing filter deinterlaces the given block by
4696 cubically interpolating every second line.
4697
4698 @item md/mediandeint
4699 Median deinterlacing filter that deinterlaces the given block by applying a
4700 median filter to every second line.
4701
4702 @item fd/ffmpegdeint
4703 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
4704 second line with a @code{(-1 4 2 4 -1)} filter.
4705
4706 @item l5/lowpass5
4707 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
4708 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
4709
4710 @item fq/forceQuant[|quantizer]
4711 Overrides the quantizer table from the input with the constant quantizer you
4712 specify.
4713 @table @option
4714 @item quantizer
4715 Quantizer to use
4716 @end table
4717
4718 @item de/default
4719 Default pp filter combination (@code{hb|a,vb|a,dr|a})
4720
4721 @item fa/fast
4722 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
4723
4724 @item ac
4725 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
4726 @end table
4727
4728 @subsection Examples
4729
4730 @itemize
4731 @item
4732 Apply horizontal and vertical deblocking, deringing and automatic
4733 brightness/contrast:
4734 @example
4735 pp=hb/vb/dr/al
4736 @end example
4737
4738 @item
4739 Apply default filters without brightness/contrast correction:
4740 @example
4741 pp=de/-al
4742 @end example
4743
4744 @item
4745 Apply default filters and temporal denoiser:
4746 @example
4747 pp=default/tmpnoise|1|2|3
4748 @end example
4749
4750 @item
4751 Apply deblocking on luminance only, and switch vertical deblocking on or off
4752 automatically depending on available CPU time:
4753 @example
4754 pp=hb|y/vb|a
4755 @end example
4756 @end itemize
4757
4758 @section removelogo
4759
4760 Suppress a TV station logo, using an image file to determine which
4761 pixels comprise the logo. It works by filling in the pixels that
4762 comprise the logo with neighboring pixels.
4763
4764 This filter requires one argument which specifies the filter bitmap
4765 file, which can be any image format supported by libavformat. The
4766 width and height of the image file must match those of the video
4767 stream being processed.
4768
4769 Pixels in the provided bitmap image with a value of zero are not
4770 considered part of the logo, non-zero pixels are considered part of
4771 the logo. If you use white (255) for the logo and black (0) for the
4772 rest, you will be safe. For making the filter bitmap, it is
4773 recommended to take a screen capture of a black frame with the logo
4774 visible, and then using a threshold filter followed by the erode
4775 filter once or twice.
4776
4777 If needed, little splotches can be fixed manually. Remember that if
4778 logo pixels are not covered, the filter quality will be much
4779 reduced. Marking too many pixels as part of the logo does not hurt as
4780 much, but it will increase the amount of blurring needed to cover over
4781 the image and will destroy more information than necessary, and extra
4782 pixels will slow things down on a large logo.
4783
4784 @section scale
4785
4786 Scale (resize) the input video, using the libswscale library.
4787
4788 The scale filter forces the output display aspect ratio to be the same
4789 of the input, by changing the output sample aspect ratio.
4790
4791 This filter accepts a list of named options in the form of
4792 @var{key}=@var{value} pairs separated by ":". If the key for the first
4793 two options is not specified, the assumed keys for the first two
4794 values are @code{w} and @code{h}. If the first option has no key and
4795 can be interpreted like a video size specification, it will be used
4796 to set the video size.
4797
4798 A description of the accepted options follows.
4799
4800 @table @option
4801 @item width, w
4802 Output video width.
4803 default value is @code{iw}. See below
4804 for the list of accepted constants.
4805
4806 @item height, h
4807 Output video height.
4808 default value is @code{ih}.
4809 See below for the list of accepted constants.
4810
4811 @item interl
4812 Set the interlacing. It accepts the following values:
4813
4814 @table @option
4815 @item 1
4816 force interlaced aware scaling
4817
4818 @item 0
4819 do not apply interlaced scaling
4820
4821 @item -1
4822 select interlaced aware scaling depending on whether the source frames
4823 are flagged as interlaced or not
4824 @end table
4825
4826 Default value is @code{0}.
4827
4828 @item flags
4829 Set libswscale scaling flags. If not explictly specified the filter
4830 applies a bilinear scaling algorithm.
4831
4832 @item size, s
4833 Set the video size, the value must be a valid abbreviation or in the
4834 form @var{width}x@var{height}.
4835 @end table
4836
4837 The values of the @var{w} and @var{h} options are expressions
4838 containing the following constants:
4839
4840 @table @option
4841 @item in_w, in_h
4842 the input width and height
4843
4844 @item iw, ih
4845 same as @var{in_w} and @var{in_h}
4846
4847 @item out_w, out_h
4848 the output (cropped) width and height
4849
4850 @item ow, oh
4851 same as @var{out_w} and @var{out_h}
4852
4853 @item a
4854 same as @var{iw} / @var{ih}
4855
4856 @item sar
4857 input sample aspect ratio
4858
4859 @item dar
4860 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4861
4862 @item hsub, vsub
4863 horizontal and vertical chroma subsample values. For example for the
4864 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4865 @end table
4866
4867 If the input image format is different from the format requested by
4868 the next filter, the scale filter will convert the input to the
4869 requested format.
4870
4871 If the value for @var{w} or @var{h} is 0, the respective input
4872 size is used for the output.
4873
4874 If the value for @var{w} or @var{h} is -1, the scale filter will use, for the
4875 respective output size, a value that maintains the aspect ratio of the input
4876 image.
4877
4878 @subsection Examples
4879
4880 @itemize
4881 @item
4882 Scale the input video to a size of 200x100:
4883 @example
4884 scale=w=200:h=100
4885 @end example
4886
4887 This is equivalent to:
4888 @example
4889 scale=w=200:h=100
4890 @end example
4891
4892 or:
4893 @example
4894 scale=200x100
4895 @end example
4896
4897 @item
4898 Specify a size abbreviation for the output size:
4899 @example
4900 scale=qcif
4901 @end example
4902
4903 which can also be written as:
4904 @example
4905 scale=size=qcif
4906 @end example
4907
4908 @item
4909 Scale the input to 2x:
4910 @example
4911 scale=w=2*iw:h=2*ih
4912 @end example
4913
4914 @item
4915 The above is the same as:
4916 @example
4917 scale=2*in_w:2*in_h
4918 @end example
4919
4920 @item
4921 Scale the input to 2x with forced interlaced scaling:
4922 @example
4923 scale=2*iw:2*ih:interl=1
4924 @end example
4925
4926 @item
4927 Scale the input to half size:
4928 @example
4929 scale=w=iw/2:h=ih/2
4930 @end example
4931
4932 @item
4933 Increase the width, and set the height to the same size:
4934 @example
4935 scale=3/2*iw:ow
4936 @end example
4937
4938 @item
4939 Seek for Greek harmony:
4940 @example
4941 scale=iw:1/PHI*iw
4942 scale=ih*PHI:ih
4943 @end example
4944
4945 @item
4946 Increase the height, and set the width to 3/2 of the height:
4947 @example
4948 scale=w=3/2*oh:h=3/5*ih
4949 @end example
4950
4951 @item
4952 Increase the size, but make the size a multiple of the chroma
4953 subsample values:
4954 @example
4955 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
4956 @end example
4957
4958 @item
4959 Increase the width to a maximum of 500 pixels, keep the same input
4960 aspect ratio:
4961 @example
4962 scale=w='min(500\, iw*3/2):h=-1'
4963 @end example
4964 @end itemize
4965
4966 @section separatefields
4967
4968 The @code{separatefields} takes a frame-based video input and splits
4969 each frame into its components fields, producing a new half height clip
4970 with twice the frame rate and twice the frame count.
4971
4972 This filter use field-dominance information in frame to decide which
4973 of each pair of fields to place first in the output.
4974 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
4975
4976 @section setdar, setsar
4977
4978 The @code{setdar} filter sets the Display Aspect Ratio for the filter
4979 output video.
4980
4981 This is done by changing the specified Sample (aka Pixel) Aspect
4982 Ratio, according to the following equation:
4983 @example
4984 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
4985 @end example
4986
4987 Keep in mind that the @code{setdar} filter does not modify the pixel
4988 dimensions of the video frame. Also the display aspect ratio set by
4989 this filter may be changed by later filters in the filterchain,
4990 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
4991 applied.
4992
4993 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
4994 the filter output video.
4995
4996 Note that as a consequence of the application of this filter, the
4997 output display aspect ratio will change according to the equation
4998 above.
4999
5000 Keep in mind that the sample aspect ratio set by the @code{setsar}
5001 filter may be changed by later filters in the filterchain, e.g. if
5002 another "setsar" or a "setdar" filter is applied.
5003
5004 The @code{setdar} and @code{setsar} filters accept a string in the
5005 form @var{num}:@var{den} expressing an aspect ratio, or the following
5006 named options, expressed as a sequence of @var{key}=@var{value} pairs,
5007 separated by ":".
5008
5009 @table @option
5010 @item max
5011 Set the maximum integer value to use for expressing numerator and
5012 denominator when reducing the expressed aspect ratio to a rational.
5013 Default value is @code{100}.
5014
5015 @item r, ratio, dar, sar:
5016 Set the aspect ratio used by the filter.
5017
5018 The parameter can be a floating point number string, an expression, or
5019 a string of the form @var{num}:@var{den}, where @var{num} and
5020 @var{den} are the numerator and denominator of the aspect ratio. If
5021 the parameter is not specified, it is assumed the value "0".
5022 In case the form "@var{num}:@var{den}" the @code{:} character should
5023 be escaped.
5024 @end table
5025
5026 If the keys are omitted in the named options list, the specifed values
5027 are assumed to be @var{ratio} and @var{max} in that order.
5028
5029 For example to change the display aspect ratio to 16:9, specify:
5030 @example
5031 setdar='16:9'
5032 # the above is equivalent to
5033 setdar=1.77777
5034 setdar=dar=16/9
5035 setdar=dar=1.77777
5036 @end example
5037
5038 To change the sample aspect ratio to 10:11, specify:
5039 @example
5040 setsar='10:11'
5041 # the above is equivalent to
5042 setsar='sar=10/11'
5043 @end example
5044
5045 To set a display aspect ratio of 16:9, and specify a maximum integer value of
5046 1000 in the aspect ratio reduction, use the command:
5047 @example
5048 setdar=ratio='16:9':max=1000
5049 @end example
5050
5051 @anchor{setfield}
5052 @section setfield
5053
5054 Force field for the output video frame.
5055
5056 The @code{setfield} filter marks the interlace type field for the
5057 output frames. It does not change the input frame, but only sets the
5058 corresponding property, which affects how the frame is treated by
5059 following filters (e.g. @code{fieldorder} or @code{yadif}).
5060
5061 This filter accepts a single option @option{mode}, which can be
5062 specified either by setting @code{mode=VALUE} or setting the value
5063 alone. Available values are:
5064
5065 @table @samp
5066 @item auto
5067 Keep the same field property.
5068
5069 @item bff
5070 Mark the frame as bottom-field-first.
5071
5072 @item tff
5073 Mark the frame as top-field-first.
5074
5075 @item prog
5076 Mark the frame as progressive.
5077 @end table
5078
5079 @section showinfo
5080
5081 Show a line containing various information for each input video frame.
5082 The input video is not modified.
5083
5084 The shown line contains a sequence of key/value pairs of the form
5085 @var{key}:@var{value}.
5086
5087 A description of each shown parameter follows:
5088
5089 @table @option
5090 @item n
5091 sequential number of the input frame, starting from 0
5092
5093 @item pts
5094 Presentation TimeStamp of the input frame, expressed as a number of
5095 time base units. The time base unit depends on the filter input pad.
5096
5097 @item pts_time
5098 Presentation TimeStamp of the input frame, expressed as a number of
5099 seconds
5100
5101 @item pos
5102 position of the frame in the input stream, -1 if this information in
5103 unavailable and/or meaningless (for example in case of synthetic video)
5104
5105 @item fmt
5106 pixel format name
5107
5108 @item sar
5109 sample aspect ratio of the input frame, expressed in the form
5110 @var{num}/@var{den}
5111
5112 @item s
5113 size of the input frame, expressed in the form
5114 @var{width}x@var{height}
5115
5116 @item i
5117 interlaced mode ("P" for "progressive", "T" for top field first, "B"
5118 for bottom field first)
5119
5120 @item iskey
5121 1 if the frame is a key frame, 0 otherwise
5122
5123 @item type
5124 picture type of the input frame ("I" for an I-frame, "P" for a
5125 P-frame, "B" for a B-frame, "?" for unknown type).
5126 Check also the documentation of the @code{AVPictureType} enum and of
5127 the @code{av_get_picture_type_char} function defined in
5128 @file{libavutil/avutil.h}.
5129
5130 @item checksum
5131 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
5132
5133 @item plane_checksum
5134 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
5135 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
5136 @end table
5137
5138 @section smartblur
5139
5140 Blur the input video without impacting the outlines.
5141
5142 A description of the accepted options follows.
5143
5144 @table @option
5145 @item luma_radius, lr
5146 Set the luma radius. The option value must be a float number in
5147 the range [0.1,5.0] that specifies the variance of the gaussian filter
5148 used to blur the image (slower if larger). Default value is 1.0.
5149
5150 @item luma_strength, ls
5151 Set the luma strength. The option value must be a float number
5152 in the range [-1.0,1.0] that configures the blurring. A value included
5153 in [0.0,1.0] will blur the image whereas a value included in
5154 [-1.0,0.0] will sharpen the image. Default value is 1.0.
5155
5156 @item luma_threshold, lt
5157 Set the luma threshold used as a coefficient to determine
5158 whether a pixel should be blurred or not. The option value must be an
5159 integer in the range [-30,30]. A value of 0 will filter all the image,
5160 a value included in [0,30] will filter flat areas and a value included
5161 in [-30,0] will filter edges. Default value is 0.
5162
5163 @item chroma_radius, cr
5164 Set the chroma radius. The option value must be a float number in
5165 the range [0.1,5.0] that specifies the variance of the gaussian filter
5166 used to blur the image (slower if larger). Default value is 1.0.
5167
5168 @item chroma_strength, cs
5169 Set the chroma strength. The option value must be a float number
5170 in the range [-1.0,1.0] that configures the blurring. A value included
5171 in [0.0,1.0] will blur the image whereas a value included in
5172 [-1.0,0.0] will sharpen the image. Default value is 1.0.
5173
5174 @item chroma_threshold, ct
5175 Set the chroma threshold used as a coefficient to determine
5176 whether a pixel should be blurred or not. The option value must be an
5177 integer in the range [-30,30]. A value of 0 will filter all the image,
5178 a value included in [0,30] will filter flat areas and a value included
5179 in [-30,0] will filter edges. Default value is 0.
5180 @end table
5181
5182 If a chroma option is not explicitly set, the corresponding luma value
5183 is set.
5184
5185 @section stereo3d
5186
5187 Convert between different stereoscopic image formats.
5188
5189 This filter accepts the following named options, expressed as a
5190 sequence of @var{key}=@var{value} pairs, separated by ":".
5191
5192 @table @option
5193 @item in
5194 Set stereoscopic image format of input.
5195
5196 Available values for input image formats are:
5197 @table @samp
5198 @item sbsl
5199 side by side parallel (left eye left, right eye right)
5200
5201 @item sbsr
5202 side by side crosseye (right eye left, left eye right)
5203
5204 @item sbs2l
5205 side by side parallel with half width resolution
5206 (left eye left, right eye right)
5207
5208 @item sbs2r
5209 side by side crosseye with half width resolution
5210 (right eye left, left eye right)
5211
5212 @item abl
5213 above-below (left eye above, right eye below)
5214
5215 @item abr
5216 above-below (right eye above, left eye below)
5217
5218 @item ab2l
5219 above-below with half height resolution
5220 (left eye above, right eye below)
5221
5222 @item ab2r
5223 above-below with half height resolution
5224 (right eye above, left eye below)
5225
5226 Default value is @samp{sbsl}.
5227 @end table
5228
5229 @item out
5230 Set stereoscopic image format of output.
5231
5232 Available values for output image formats are all the input formats as well as:
5233 @table @samp
5234 @item arbg
5235 anaglyph red/blue gray
5236 (red filter on left eye, blue filter on right eye)
5237
5238 @item argg
5239 anaglyph red/green gray
5240 (red filter on left eye, green filter on right eye)
5241
5242 @item arcg
5243 anaglyph red/cyan gray
5244 (red filter on left eye, cyan filter on right eye)
5245
5246 @item arch
5247 anaglyph red/cyan half colored
5248 (red filter on left eye, cyan filter on right eye)
5249
5250 @item arcc
5251 anaglyph red/cyan color
5252 (red filter on left eye, cyan filter on right eye)
5253
5254 @item arcd
5255 anaglyph red/cyan color optimized with the least squares projection of dubois
5256 (red filter on left eye, cyan filter on right eye)
5257
5258 @item agmg
5259 anaglyph green/magenta gray
5260 (green filter on left eye, magenta filter on right eye)
5261
5262 @item agmh
5263 anaglyph green/magenta half colored
5264 (green filter on left eye, magenta filter on right eye)
5265
5266 @item agmc
5267 anaglyph green/magenta colored
5268 (green filter on left eye, magenta filter on right eye)
5269
5270 @item agmd
5271 anaglyph green/magenta color optimized with the least squares projection of dubois
5272 (green filter on left eye, magenta filter on right eye)
5273
5274 @item aybg
5275 anaglyph yellow/blue gray
5276 (yellow filter on left eye, blue filter on right eye)
5277
5278 @item aybh
5279 anaglyph yellow/blue half colored
5280 (yellow filter on left eye, blue filter on right eye)
5281
5282 @item aybc
5283 anaglyph yellow/blue colored
5284 (yellow filter on left eye, blue filter on right eye)
5285
5286 @item aybd
5287 anaglyph yellow/blue color optimized with the least squares projection of dubois
5288 (yellow filter on left eye, blue filter on right eye)
5289
5290 @item irl
5291 interleaved rows (left eye has top row, right eye starts on next row)
5292
5293 @item irr
5294 interleaved rows (right eye has top row, left eye starts on next row)
5295
5296 @item ml
5297 mono output (left eye only)
5298
5299 @item mr
5300 mono output (right eye only)
5301 @end table
5302
5303 Default value is @samp{arcd}.
5304 @end table
5305
5306 @anchor{subtitles}
5307 @section subtitles
5308
5309 Draw subtitles on top of input video using the libass library.
5310
5311 To enable compilation of this filter you need to configure FFmpeg with
5312 @code{--enable-libass}. This filter also requires a build with libavcodec and
5313 libavformat to convert the passed subtitles file to ASS (Advanced Substation
5314 Alpha) subtitles format.
5315
5316 The filter accepts the following options:
5317
5318 @table @option
5319 @item filename, f
5320 Set the filename of the subtitle file to read. It must be specified.
5321
5322 @item original_size
5323 Specify the size of the original video, the video for which the ASS file
5324 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
5325 necessary to correctly scale the fonts if the aspect ratio has been changed.
5326
5327 @item charenc
5328 Set subtitles input character encoding. @code{subtitles} filter only. Only
5329 useful if not UTF-8.
5330 @end table
5331
5332 If the first key is not specified, it is assumed that the first value
5333 specifies the @option{filename}.
5334
5335 For example, to render the file @file{sub.srt} on top of the input
5336 video, use the command:
5337 @example
5338 subtitles=sub.srt
5339 @end example
5340
5341 which is equivalent to:
5342 @example
5343 subtitles=filename=sub.srt
5344 @end example
5345
5346 @section split
5347
5348 Split input video into several identical outputs.
5349
5350 The filter accepts a single parameter which specifies the number of outputs. If
5351 unspecified, it defaults to 2.
5352
5353 For example
5354 @example
5355 ffmpeg -i INPUT -filter_complex split=5 OUTPUT
5356 @end example
5357 will create 5 copies of the input video.
5358
5359 For example:
5360 @example
5361 [in] split [splitout1][splitout2];
5362 [splitout1] crop=100:100:0:0    [cropout];
5363 [splitout2] pad=200:200:100:100 [padout];
5364 @end example
5365
5366 will create two separate outputs from the same input, one cropped and
5367 one padded.
5368
5369 @section super2xsai
5370
5371 Scale the input by 2x and smooth using the Super2xSaI (Scale and
5372 Interpolate) pixel art scaling algorithm.
5373
5374 Useful for enlarging pixel art images without reducing sharpness.
5375
5376 @section swapuv
5377 Swap U & V plane.
5378
5379 @section thumbnail
5380 Select the most representative frame in a given sequence of consecutive frames.
5381
5382 The filter accepts the following options:
5383
5384 @table @option
5385 @item n
5386 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
5387 will pick one of them, and then handle the next batch of @var{n} frames until
5388 the end. Default is @code{100}.
5389 @end table
5390
5391 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
5392 value will result in a higher memory usage, so a high value is not recommended.
5393
5394 @subsection Examples
5395
5396 @itemize
5397 @item
5398 Extract one picture each 50 frames:
5399 @example
5400 thumbnail=50
5401 @end example
5402
5403 @item
5404 Complete example of a thumbnail creation with @command{ffmpeg}:
5405 @example
5406 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
5407 @end example
5408 @end itemize
5409
5410 @section tile
5411
5412 Tile several successive frames together.
5413
5414 It accepts a list of options in the form of @var{key}=@var{value} pairs
5415 separated by ":". A description of the accepted options follows.
5416
5417 @table @option
5418
5419 @item layout
5420 Set the grid size (i.e. the number of lines and columns) in the form
5421 "@var{w}x@var{h}".
5422
5423 @item margin
5424 Set the outer border margin in pixels.
5425
5426 @item padding
5427 Set the inner border thickness (i.e. the number of pixels between frames). For
5428 more advanced padding options (such as having different values for the edges),
5429 refer to the pad video filter.
5430
5431 @item nb_frames
5432 Set the maximum number of frames to render in the given area. It must be less
5433 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
5434 the area will be used.
5435
5436 @end table
5437
5438 Alternatively, the options can be specified as a flat string:
5439
5440 @var{layout}[:@var{nb_frames}[:@var{margin}[:@var{padding}]]]
5441
5442 For example, produce 8x8 PNG tiles of all keyframes (@option{-skip_frame
5443 nokey}) in a movie:
5444 @example
5445 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
5446 @end example
5447 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
5448 duplicating each output frame to accomodate the originally detected frame
5449 rate.
5450
5451 Another example to display @code{5} pictures in an area of @code{3x2} frames,
5452 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
5453 mixed flat and named options:
5454 @example
5455 tile=3x2:nb_frames=5:padding=7:margin=2
5456 @end example
5457
5458 @section tinterlace
5459
5460 Perform various types of temporal field interlacing.
5461
5462 Frames are counted starting from 1, so the first input frame is
5463 considered odd.
5464
5465 This filter accepts options in the form of @var{key}=@var{value} pairs
5466 separated by ":".
5467 Alternatively, the @var{mode} option can be specified as a value alone,
5468 optionally followed by a ":" and further ":" separated @var{key}=@var{value}
5469 pairs.
5470
5471 A description of the accepted options follows.
5472
5473 @table @option
5474
5475 @item mode
5476 Specify the mode of the interlacing. This option can also be specified
5477 as a value alone. See below for a list of values for this option.
5478
5479 Available values are:
5480
5481 @table @samp
5482 @item merge, 0
5483 Move odd frames into the upper field, even into the lower field,
5484 generating a double height frame at half frame rate.
5485
5486 @item drop_odd, 1
5487 Only output even frames, odd frames are dropped, generating a frame with
5488 unchanged height at half frame rate.
5489
5490 @item drop_even, 2
5491 Only output odd frames, even frames are dropped, generating a frame with
5492 unchanged height at half frame rate.
5493
5494 @item pad, 3
5495 Expand each frame to full height, but pad alternate lines with black,
5496 generating a frame with double height at the same input frame rate.
5497
5498 @item interleave_top, 4
5499 Interleave the upper field from odd frames with the lower field from
5500 even frames, generating a frame with unchanged height at half frame rate.
5501
5502 @item interleave_bottom, 5
5503 Interleave the lower field from odd frames with the upper field from
5504 even frames, generating a frame with unchanged height at half frame rate.
5505
5506 @item interlacex2, 6
5507 Double frame rate with unchanged height. Frames are inserted each
5508 containing the second temporal field from the previous input frame and
5509 the first temporal field from the next input frame. This mode relies on
5510 the top_field_first flag. Useful for interlaced video displays with no
5511 field synchronisation.
5512 @end table
5513
5514 Numeric values are deprecated but are accepted for backward
5515 compatibility reasons.
5516
5517 Default mode is @code{merge}.
5518
5519 @item flags
5520 Specify flags influencing the filter process.
5521
5522 Available value for @var{flags} is:
5523
5524 @table @option
5525 @item low_pass_filter, vlfp
5526 Enable vertical low-pass filtering in the filter.
5527 Vertical low-pass filtering is required when creating an interlaced
5528 destination from a progressive source which contains high-frequency
5529 vertical detail. Filtering will reduce interlace 'twitter' and Moire
5530 patterning.
5531
5532 Vertical low-pass filtering can only be enabled for @option{mode}
5533 @var{interleave_top} and @var{interleave_bottom}.
5534
5535 @end table
5536 @end table
5537
5538 @section transpose
5539
5540 Transpose rows with columns in the input video and optionally flip it.
5541
5542 The filter accepts parameters as a list of @var{key}=@var{value}
5543 pairs, separated by ':'. If the key of the first options is omitted,
5544 the arguments are interpreted according to the syntax
5545 @var{dir}:@var{passthrough}.
5546
5547 @table @option
5548 @item dir
5549 Specify the transposition direction. Can assume the following values:
5550
5551 @table @samp
5552 @item 0, 4
5553 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
5554 @example
5555 L.R     L.l
5556 . . ->  . .
5557 l.r     R.r
5558 @end example
5559
5560 @item 1, 5
5561 Rotate by 90 degrees clockwise, that is:
5562 @example
5563 L.R     l.L
5564 . . ->  . .
5565 l.r     r.R
5566 @end example
5567
5568 @item 2, 6
5569 Rotate by 90 degrees counterclockwise, that is:
5570 @example
5571 L.R     R.r
5572 . . ->  . .
5573 l.r     L.l
5574 @end example
5575
5576 @item 3, 7
5577 Rotate by 90 degrees clockwise and vertically flip, that is:
5578 @example
5579 L.R     r.R
5580 . . ->  . .
5581 l.r     l.L
5582 @end example
5583 @end table
5584
5585 For values between 4-7, the transposition is only done if the input
5586 video geometry is portrait and not landscape. These values are
5587 deprecated, the @code{passthrough} option should be used instead.
5588
5589 @item passthrough
5590 Do not apply the transposition if the input geometry matches the one
5591 specified by the specified value. It accepts the following values:
5592 @table @samp
5593 @item none
5594 Always apply transposition.
5595 @item portrait
5596 Preserve portrait geometry (when @var{height} >= @var{width}).
5597 @item landscape
5598 Preserve landscape geometry (when @var{width} >= @var{height}).
5599 @end table
5600
5601 Default value is @code{none}.
5602 @end table
5603
5604 For example to rotate by 90 degrees clockwise and preserve portrait
5605 layout:
5606 @example
5607 transpose=dir=1:passthrough=portrait
5608 @end example
5609
5610 The command above can also be specified as:
5611 @example
5612 transpose=1:portrait
5613 @end example
5614
5615 @section unsharp
5616
5617 Sharpen or blur the input video.
5618
5619 This filter accepts parameters as a list of @var{key}=@var{value} pairs,
5620 separated by ":".
5621
5622 If the key of the first options is omitted, the arguments are
5623 interpreted according to the syntax:
5624 @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
5625
5626 A description of the accepted options follows.
5627
5628 @table @option
5629 @item luma_msize_x, lx
5630 @item chroma_msize_x, cx
5631 Set the luma/chroma matrix horizontal size. It must be an odd integer
5632 between 3 and 63, default value is 5.
5633
5634 @item luma_msize_y, ly
5635 @item chroma_msize_y, cy
5636 Set the luma/chroma matrix vertical size. It must be an odd integer
5637 between 3 and 63, default value is 5.
5638
5639 @item luma_amount, la
5640 @item chroma_amount, ca
5641 Set the luma/chroma effect strength. It can be a float number,
5642 reasonable values lay between -1.5 and 1.5.
5643
5644 Negative values will blur the input video, while positive values will
5645 sharpen it, a value of zero will disable the effect.
5646
5647 Default value is 1.0 for @option{luma_amount}, 0.0 for
5648 @option{chroma_amount}.
5649 @end table
5650
5651 @subsection Examples
5652
5653 @itemize
5654 @item
5655 Apply strong luma sharpen effect:
5656 @example
5657 unsharp=7:7:2.5
5658 @end example
5659
5660 @item
5661 Apply strong blur of both luma and chroma parameters:
5662 @example
5663 unsharp=7:7:-2:7:7:-2
5664 @end example
5665 @end itemize
5666
5667 @section vflip
5668
5669 Flip the input video vertically.
5670
5671 @example
5672 ffmpeg -i in.avi -vf "vflip" out.avi
5673 @end example
5674
5675 @section yadif
5676
5677 Deinterlace the input video ("yadif" means "yet another deinterlacing
5678 filter").
5679
5680 The filter accepts parameters as a list of @var{key}=@var{value}
5681 pairs, separated by ":". If the key of the first options is omitted,
5682 the arguments are interpreted according to syntax
5683 @var{mode}:@var{parity}:@var{deint}.
5684
5685 The description of the accepted parameters follows.
5686
5687 @table @option
5688 @item mode
5689 Specify the interlacing mode to adopt. Accept one of the following
5690 values:
5691
5692 @table @option
5693 @item 0, send_frame
5694 output 1 frame for each frame
5695 @item 1, send_field
5696 output 1 frame for each field
5697 @item 2, send_frame_nospatial
5698 like @code{send_frame} but skip spatial interlacing check
5699 @item 3, send_field_nospatial
5700 like @code{send_field} but skip spatial interlacing check
5701 @end table
5702
5703 Default value is @code{send_frame}.
5704
5705 @item parity
5706 Specify the picture field parity assumed for the input interlaced
5707 video. Accept one of the following values:
5708
5709 @table @option
5710 @item 0, tff
5711 assume top field first
5712 @item 1, bff
5713 assume bottom field first
5714 @item -1, auto
5715 enable automatic detection
5716 @end table
5717
5718 Default value is @code{auto}.
5719 If interlacing is unknown or decoder does not export this information,
5720 top field first will be assumed.
5721
5722 @item deint
5723 Specify which frames to deinterlace. Accept one of the following
5724 values:
5725
5726 @table @option
5727 @item 0, all
5728 deinterlace all frames
5729 @item 1, interlaced
5730 only deinterlace frames marked as interlaced
5731 @end table
5732
5733 Default value is @code{all}.
5734 @end table
5735
5736 @c man end VIDEO FILTERS
5737
5738 @chapter Video Sources
5739 @c man begin VIDEO SOURCES
5740
5741 Below is a description of the currently available video sources.
5742
5743 @section buffer
5744
5745 Buffer video frames, and make them available to the filter chain.
5746
5747 This source is mainly intended for a programmatic use, in particular
5748 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
5749
5750 It accepts a list of options in the form of @var{key}=@var{value} pairs
5751 separated by ":". A description of the accepted options follows.
5752
5753 @table @option
5754
5755 @item video_size
5756 Specify the size (width and height) of the buffered video frames.
5757
5758 @item pix_fmt
5759 A string representing the pixel format of the buffered video frames.
5760 It may be a number corresponding to a pixel format, or a pixel format
5761 name.
5762
5763 @item time_base
5764 Specify the timebase assumed by the timestamps of the buffered frames.
5765
5766 @item time_base
5767 Specify the frame rate expected for the video stream.
5768
5769 @item pixel_aspect
5770 Specify the sample aspect ratio assumed by the video frames.
5771
5772 @item sws_param
5773 Specify the optional parameters to be used for the scale filter which
5774 is automatically inserted when an input change is detected in the
5775 input size or format.
5776 @end table
5777
5778 For example:
5779 @example
5780 buffer=size=320x240:pix_fmt=yuv410p:time_base=1/24:pixel_aspect=1/1
5781 @end example
5782
5783 will instruct the source to accept video frames with size 320x240 and
5784 with format "yuv410p", assuming 1/24 as the timestamps timebase and
5785 square pixels (1:1 sample aspect ratio).
5786 Since the pixel format with name "yuv410p" corresponds to the number 6
5787 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
5788 this example corresponds to:
5789 @example
5790 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
5791 @end example
5792
5793 Alternatively, the options can be specified as a flat string, but this
5794 syntax is deprecated:
5795
5796 @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}]
5797
5798 @section cellauto
5799
5800 Create a pattern generated by an elementary cellular automaton.
5801
5802 The initial state of the cellular automaton can be defined through the
5803 @option{filename}, and @option{pattern} options. If such options are
5804 not specified an initial state is created randomly.
5805
5806 At each new frame a new row in the video is filled with the result of
5807 the cellular automaton next generation. The behavior when the whole
5808 frame is filled is defined by the @option{scroll} option.
5809
5810 This source accepts a list of options in the form of
5811 @var{key}=@var{value} pairs separated by ":". A description of the
5812 accepted options follows.
5813
5814 @table @option
5815 @item filename, f
5816 Read the initial cellular automaton state, i.e. the starting row, from
5817 the specified file.
5818 In the file, each non-whitespace character is considered an alive
5819 cell, a newline will terminate the row, and further characters in the
5820 file will be ignored.
5821
5822 @item pattern, p
5823 Read the initial cellular automaton state, i.e. the starting row, from
5824 the specified string.
5825
5826 Each non-whitespace character in the string is considered an alive
5827 cell, a newline will terminate the row, and further characters in the
5828 string will be ignored.
5829
5830 @item rate, r
5831 Set the video rate, that is the number of frames generated per second.
5832 Default is 25.
5833
5834 @item random_fill_ratio, ratio
5835 Set the random fill ratio for the initial cellular automaton row. It
5836 is a floating point number value ranging from 0 to 1, defaults to
5837 1/PHI.
5838
5839 This option is ignored when a file or a pattern is specified.
5840
5841 @item random_seed, seed
5842 Set the seed for filling randomly the initial row, must be an integer
5843 included between 0 and UINT32_MAX. If not specified, or if explicitly
5844 set to -1, the filter will try to use a good random seed on a best
5845 effort basis.
5846
5847 @item rule
5848 Set the cellular automaton rule, it is a number ranging from 0 to 255.
5849 Default value is 110.
5850
5851 @item size, s
5852 Set the size of the output video.
5853
5854 If @option{filename} or @option{pattern} is specified, the size is set
5855 by default to the width of the specified initial state row, and the
5856 height is set to @var{width} * PHI.
5857
5858 If @option{size} is set, it must contain the width of the specified
5859 pattern string, and the specified pattern will be centered in the
5860 larger row.
5861
5862 If a filename or a pattern string is not specified, the size value
5863 defaults to "320x518" (used for a randomly generated initial state).
5864
5865 @item scroll
5866 If set to 1, scroll the output upward when all the rows in the output
5867 have been already filled. If set to 0, the new generated row will be
5868 written over the top row just after the bottom row is filled.
5869 Defaults to 1.
5870
5871 @item start_full, full
5872 If set to 1, completely fill the output with generated rows before
5873 outputting the first frame.
5874 This is the default behavior, for disabling set the value to 0.
5875
5876 @item stitch
5877 If set to 1, stitch the left and right row edges together.
5878 This is the default behavior, for disabling set the value to 0.
5879 @end table
5880
5881 @subsection Examples
5882
5883 @itemize
5884 @item
5885 Read the initial state from @file{pattern}, and specify an output of
5886 size 200x400.
5887 @example
5888 cellauto=f=pattern:s=200x400
5889 @end example
5890
5891 @item
5892 Generate a random initial row with a width of 200 cells, with a fill
5893 ratio of 2/3:
5894 @example
5895 cellauto=ratio=2/3:s=200x200
5896 @end example
5897
5898 @item
5899 Create a pattern generated by rule 18 starting by a single alive cell
5900 centered on an initial row with width 100:
5901 @example
5902 cellauto=p=@@:s=100x400:full=0:rule=18
5903 @end example
5904
5905 @item
5906 Specify a more elaborated initial pattern:
5907 @example
5908 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
5909 @end example
5910
5911 @end itemize
5912
5913 @section mandelbrot
5914
5915 Generate a Mandelbrot set fractal, and progressively zoom towards the
5916 point specified with @var{start_x} and @var{start_y}.
5917
5918 This source accepts a list of options in the form of
5919 @var{key}=@var{value} pairs separated by ":". A description of the
5920 accepted options follows.
5921
5922 @table @option
5923
5924 @item end_pts
5925 Set the terminal pts value. Default value is 400.
5926
5927 @item end_scale
5928 Set the terminal scale value.
5929 Must be a floating point value. Default value is 0.3.
5930
5931 @item inner
5932 Set the inner coloring mode, that is the algorithm used to draw the
5933 Mandelbrot fractal internal region.
5934
5935 It shall assume one of the following values:
5936 @table @option
5937 @item black
5938 Set black mode.
5939 @item convergence
5940 Show time until convergence.
5941 @item mincol
5942 Set color based on point closest to the origin of the iterations.
5943 @item period
5944 Set period mode.
5945 @end table
5946
5947 Default value is @var{mincol}.
5948
5949 @item bailout
5950 Set the bailout value. Default value is 10.0.
5951
5952 @item maxiter
5953 Set the maximum of iterations performed by the rendering
5954 algorithm. Default value is 7189.
5955
5956 @item outer
5957 Set outer coloring mode.
5958 It shall assume one of following values:
5959 @table @option
5960 @item iteration_count
5961 Set iteration cound mode.
5962 @item normalized_iteration_count
5963 set normalized iteration count mode.
5964 @end table
5965 Default value is @var{normalized_iteration_count}.
5966
5967 @item rate, r
5968 Set frame rate, expressed as number of frames per second. Default
5969 value is "25".
5970
5971 @item size, s
5972 Set frame size. Default value is "640x480".
5973
5974 @item start_scale
5975 Set the initial scale value. Default value is 3.0.
5976
5977 @item start_x
5978 Set the initial x position. Must be a floating point value between
5979 -100 and 100. Default value is -0.743643887037158704752191506114774.
5980
5981 @item start_y
5982 Set the initial y position. Must be a floating point value between
5983 -100 and 100. Default value is -0.131825904205311970493132056385139.
5984 @end table
5985
5986 @section mptestsrc
5987
5988 Generate various test patterns, as generated by the MPlayer test filter.
5989
5990 The size of the generated video is fixed, and is 256x256.
5991 This source is useful in particular for testing encoding features.
5992
5993 This source accepts an optional sequence of @var{key}=@var{value} pairs,
5994 separated by ":". The description of the accepted options follows.
5995
5996 @table @option
5997
5998 @item rate, r
5999 Specify the frame rate of the sourced video, as the number of frames
6000 generated per second. It has to be a string in the format
6001 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
6002 number or a valid video frame rate abbreviation. The default value is
6003 "25".
6004
6005 @item duration, d
6006 Set the video duration of the sourced video. The accepted syntax is:
6007 @example
6008 [-]HH:MM:SS[.m...]
6009 [-]S+[.m...]
6010 @end example
6011 See also the function @code{av_parse_time()}.
6012
6013 If not specified, or the expressed duration is negative, the video is
6014 supposed to be generated forever.
6015
6016 @item test, t
6017
6018 Set the number or the name of the test to perform. Supported tests are:
6019 @table @option
6020 @item dc_luma
6021 @item dc_chroma
6022 @item freq_luma
6023 @item freq_chroma
6024 @item amp_luma
6025 @item amp_chroma
6026 @item cbp
6027 @item mv
6028 @item ring1
6029 @item ring2
6030 @item all
6031 @end table
6032
6033 Default value is "all", which will cycle through the list of all tests.
6034 @end table
6035
6036 For example the following:
6037 @example
6038 testsrc=t=dc_luma
6039 @end example
6040
6041 will generate a "dc_luma" test pattern.
6042
6043 @section frei0r_src
6044
6045 Provide a frei0r source.
6046
6047 To enable compilation of this filter you need to install the frei0r
6048 header and configure FFmpeg with @code{--enable-frei0r}.
6049
6050 This source accepts the following options:
6051
6052 @table @option
6053
6054 @item size
6055 The size of the video to generate, may be a string of the form
6056 @var{width}x@var{height} or a frame size abbreviation.
6057
6058 @item framerate
6059 Framerate of the generated video, may be a string of the form
6060 @var{num}/@var{den} or a frame rate abbreviation.
6061
6062 @item filter_name
6063 The name to the frei0r source to load. For more information regarding frei0r and
6064 how to set the parameters read the section @ref{frei0r} in the description of
6065 the video filters.
6066
6067 @item filter_params
6068 A '|'-separated list of parameters to pass to the frei0r source.
6069
6070 @end table
6071
6072 For example, to generate a frei0r partik0l source with size 200x200
6073 and frame rate 10 which is overlayed on the overlay filter main input:
6074 @example
6075 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
6076 @end example
6077
6078 @section life
6079
6080 Generate a life pattern.
6081
6082 This source is based on a generalization of John Conway's life game.
6083
6084 The sourced input represents a life grid, each pixel represents a cell
6085 which can be in one of two possible states, alive or dead. Every cell
6086 interacts with its eight neighbours, which are the cells that are
6087 horizontally, vertically, or diagonally adjacent.
6088
6089 At each interaction the grid evolves according to the adopted rule,
6090 which specifies the number of neighbor alive cells which will make a
6091 cell stay alive or born. The @option{rule} option allows to specify
6092 the rule to adopt.
6093
6094 This source accepts a list of options in the form of
6095 @var{key}=@var{value} pairs separated by ":". A description of the
6096 accepted options follows.
6097
6098 @table @option
6099 @item filename, f
6100 Set the file from which to read the initial grid state. In the file,
6101 each non-whitespace character is considered an alive cell, and newline
6102 is used to delimit the end of each row.
6103
6104 If this option is not specified, the initial grid is generated
6105 randomly.
6106
6107 @item rate, r
6108 Set the video rate, that is the number of frames generated per second.
6109 Default is 25.
6110
6111 @item random_fill_ratio, ratio
6112 Set the random fill ratio for the initial random grid. It is a
6113 floating point number value ranging from 0 to 1, defaults to 1/PHI.
6114 It is ignored when a file is specified.
6115
6116 @item random_seed, seed
6117 Set the seed for filling the initial random grid, must be an integer
6118 included between 0 and UINT32_MAX. If not specified, or if explicitly
6119 set to -1, the filter will try to use a good random seed on a best
6120 effort basis.
6121
6122 @item rule
6123 Set the life rule.
6124
6125 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
6126 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
6127 @var{NS} specifies the number of alive neighbor cells which make a
6128 live cell stay alive, and @var{NB} the number of alive neighbor cells
6129 which make a dead cell to become alive (i.e. to "born").
6130 "s" and "b" can be used in place of "S" and "B", respectively.
6131
6132 Alternatively a rule can be specified by an 18-bits integer. The 9
6133 high order bits are used to encode the next cell state if it is alive
6134 for each number of neighbor alive cells, the low order bits specify
6135 the rule for "borning" new cells. Higher order bits encode for an
6136 higher number of neighbor cells.
6137 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
6138 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
6139
6140 Default value is "S23/B3", which is the original Conway's game of life
6141 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
6142 cells, and will born a new cell if there are three alive cells around
6143 a dead cell.
6144
6145 @item size, s
6146 Set the size of the output video.
6147
6148 If @option{filename} is specified, the size is set by default to the
6149 same size of the input file. If @option{size} is set, it must contain
6150 the size specified in the input file, and the initial grid defined in
6151 that file is centered in the larger resulting area.
6152
6153 If a filename is not specified, the size value defaults to "320x240"
6154 (used for a randomly generated initial grid).
6155
6156 @item stitch
6157 If set to 1, stitch the left and right grid edges together, and the
6158 top and bottom edges also. Defaults to 1.
6159
6160 @item mold
6161 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
6162 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
6163 value from 0 to 255.
6164
6165 @item life_color
6166 Set the color of living (or new born) cells.
6167
6168 @item death_color
6169 Set the color of dead cells. If @option{mold} is set, this is the first color
6170 used to represent a dead cell.
6171
6172 @item mold_color
6173 Set mold color, for definitely dead and moldy cells.
6174 @end table
6175
6176 @subsection Examples
6177
6178 @itemize
6179 @item
6180 Read a grid from @file{pattern}, and center it on a grid of size
6181 300x300 pixels:
6182 @example
6183 life=f=pattern:s=300x300
6184 @end example
6185
6186 @item
6187 Generate a random grid of size 200x200, with a fill ratio of 2/3:
6188 @example
6189 life=ratio=2/3:s=200x200
6190 @end example
6191
6192 @item
6193 Specify a custom rule for evolving a randomly generated grid:
6194 @example
6195 life=rule=S14/B34
6196 @end example
6197
6198 @item
6199 Full example with slow death effect (mold) using @command{ffplay}:
6200 @example
6201 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
6202 @end example
6203 @end itemize
6204
6205 @section color, nullsrc, rgbtestsrc, smptebars, testsrc
6206
6207 The @code{color} source provides an uniformly colored input.
6208
6209 The @code{nullsrc} source returns unprocessed video frames. It is
6210 mainly useful to be employed in analysis / debugging tools, or as the
6211 source for filters which ignore the input data.
6212
6213 The @code{rgbtestsrc} source generates an RGB test pattern useful for
6214 detecting RGB vs BGR issues. You should see a red, green and blue
6215 stripe from top to bottom.
6216
6217 The @code{smptebars} source generates a color bars pattern, based on
6218 the SMPTE Engineering Guideline EG 1-1990.
6219
6220 The @code{testsrc} source generates a test video pattern, showing a
6221 color pattern, a scrolling gradient and a timestamp. This is mainly
6222 intended for testing purposes.
6223
6224 These sources accept an optional sequence of @var{key}=@var{value} pairs,
6225 separated by ":". The description of the accepted options follows.
6226
6227 @table @option
6228
6229 @item color, c
6230 Specify the color of the source, only used in the @code{color}
6231 source. It can be the name of a color (case insensitive match) or a
6232 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
6233 default value is "black".
6234
6235 @item size, s
6236 Specify the size of the sourced video, it may be a string of the form
6237 @var{width}x@var{height}, or the name of a size abbreviation. The
6238 default value is "320x240".
6239
6240 @item rate, r
6241 Specify the frame rate of the sourced video, as the number of frames
6242 generated per second. It has to be a string in the format
6243 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
6244 number or a valid video frame rate abbreviation. The default value is
6245 "25".
6246
6247 @item sar
6248 Set the sample aspect ratio of the sourced video.
6249
6250 @item duration, d
6251 Set the video duration of the sourced video. The accepted syntax is:
6252 @example
6253 [-]HH[:MM[:SS[.m...]]]
6254 [-]S+[.m...]
6255 @end example
6256 See also the function @code{av_parse_time()}.
6257
6258 If not specified, or the expressed duration is negative, the video is
6259 supposed to be generated forever.
6260
6261 @item decimals, n
6262 Set the number of decimals to show in the timestamp, only used in the
6263 @code{testsrc} source.
6264
6265 The displayed timestamp value will correspond to the original
6266 timestamp value multiplied by the power of 10 of the specified
6267 value. Default value is 0.
6268 @end table
6269
6270 For example the following:
6271 @example
6272 testsrc=duration=5.3:size=qcif:rate=10
6273 @end example
6274
6275 will generate a video with a duration of 5.3 seconds, with size
6276 176x144 and a frame rate of 10 frames per second.
6277
6278 The following graph description will generate a red source
6279 with an opacity of 0.2, with size "qcif" and a frame rate of 10
6280 frames per second.
6281 @example
6282 color=c=red@@0.2:s=qcif:r=10
6283 @end example
6284
6285 If the input content is to be ignored, @code{nullsrc} can be used. The
6286 following command generates noise in the luminance plane by employing
6287 the @code{geq} filter:
6288 @example
6289 nullsrc=s=256x256, geq=random(1)*255:128:128
6290 @end example
6291
6292 @c man end VIDEO SOURCES
6293
6294 @chapter Video Sinks
6295 @c man begin VIDEO SINKS
6296
6297 Below is a description of the currently available video sinks.
6298
6299 @section buffersink
6300
6301 Buffer video frames, and make them available to the end of the filter
6302 graph.
6303
6304 This sink is mainly intended for a programmatic use, in particular
6305 through the interface defined in @file{libavfilter/buffersink.h}.
6306
6307 It does not require a string parameter in input, but you need to
6308 specify a pointer to a list of supported pixel formats terminated by
6309 -1 in the opaque parameter provided to @code{avfilter_init_filter}
6310 when initializing this sink.
6311
6312 @section nullsink
6313
6314 Null video sink, do absolutely nothing with the input video. It is
6315 mainly useful as a template and to be employed in analysis / debugging
6316 tools.
6317
6318 @c man end VIDEO SINKS
6319
6320 @chapter Multimedia Filters
6321 @c man begin MULTIMEDIA FILTERS
6322
6323 Below is a description of the currently available multimedia filters.
6324
6325 @section aperms, perms
6326
6327 Set read/write permissions for the output frames.
6328
6329 These filters are mainly aimed at developers to test direct path in the
6330 following filter in the filtergraph.
6331
6332 The filters accept the following options:
6333
6334 @table @option
6335 @item mode
6336 Select the permissions mode.
6337
6338 It accepts the following values:
6339 @table @samp
6340 @item none
6341 Do nothing. This is the default.
6342 @item ro
6343 Set all the output frames read-only.
6344 @item rw
6345 Set all the output frames directly writable.
6346 @item toggle
6347 Make the frame read-only if writable, and writable if read-only.
6348 @item random
6349 Set each output frame read-only or writable randomly.
6350 @end table
6351
6352 @item seed
6353 Set the seed for the @var{random} mode, must be an integer included between
6354 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
6355 @code{-1}, the filter will try to use a good random seed on a best effort
6356 basis.
6357 @end table
6358
6359 Note: in case of auto-inserted filter between the permission filter and the
6360 following one, the permission might not be received as expected in that
6361 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
6362 perms/aperms filter can avoid this problem.
6363
6364 @section aphaser
6365 Add a phasing effect to the input audio.
6366
6367 A phaser filter creates series of peaks and troughs in the frequency spectrum.
6368 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
6369
6370 The filter accepts parameters as a list of @var{key}=@var{value}
6371 pairs, separated by ":".
6372
6373 A description of the accepted parameters follows.
6374
6375 @table @option
6376 @item in_gain
6377 Set input gain. Default is 0.4.
6378
6379 @item out_gain
6380 Set output gain. Default is 0.74
6381
6382 @item delay
6383 Set delay in milliseconds. Default is 3.0.
6384
6385 @item decay
6386 Set decay. Default is 0.4.
6387
6388 @item speed
6389 Set modulation speed in Hz. Default is 0.5.
6390
6391 @item type
6392 Set modulation type. Default is triangular.
6393
6394 It accepts the following values:
6395 @table @samp
6396 @item triangular, t
6397 @item sinusoidal, s
6398 @end table
6399 @end table
6400
6401 @section aselect, select
6402 Select frames to pass in output.
6403
6404 This filter accepts the following options:
6405
6406 @table @option
6407
6408 @item expr
6409 An expression, which is evaluated for each input frame. If the expression is
6410 evaluated to a non-zero value, the frame is selected and passed to the output,
6411 otherwise it is discarded.
6412
6413 @end table
6414
6415 The expression can contain the following constants:
6416
6417 @table @option
6418 @item n
6419 the sequential number of the filtered frame, starting from 0
6420
6421 @item selected_n
6422 the sequential number of the selected frame, starting from 0
6423
6424 @item prev_selected_n
6425 the sequential number of the last selected frame, NAN if undefined
6426
6427 @item TB
6428 timebase of the input timestamps
6429
6430 @item pts
6431 the PTS (Presentation TimeStamp) of the filtered video frame,
6432 expressed in @var{TB} units, NAN if undefined
6433
6434 @item t
6435 the PTS (Presentation TimeStamp) of the filtered video frame,
6436 expressed in seconds, NAN if undefined
6437
6438 @item prev_pts
6439 the PTS of the previously filtered video frame, NAN if undefined
6440
6441 @item prev_selected_pts
6442 the PTS of the last previously filtered video frame, NAN if undefined
6443
6444 @item prev_selected_t
6445 the PTS of the last previously selected video frame, NAN if undefined
6446
6447 @item start_pts
6448 the PTS of the first video frame in the video, NAN if undefined
6449
6450 @item start_t
6451 the time of the first video frame in the video, NAN if undefined
6452
6453 @item pict_type @emph{(video only)}
6454 the type of the filtered frame, can assume one of the following
6455 values:
6456 @table @option
6457 @item I
6458 @item P
6459 @item B
6460 @item S
6461 @item SI
6462 @item SP
6463 @item BI
6464 @end table
6465
6466 @item interlace_type @emph{(video only)}
6467 the frame interlace type, can assume one of the following values:
6468 @table @option
6469 @item PROGRESSIVE
6470 the frame is progressive (not interlaced)
6471 @item TOPFIRST
6472 the frame is top-field-first
6473 @item BOTTOMFIRST
6474 the frame is bottom-field-first
6475 @end table
6476
6477 @item consumed_sample_n @emph{(audio only)}
6478 the number of selected samples before the current frame
6479
6480 @item samples_n @emph{(audio only)}
6481 the number of samples in the current frame
6482
6483 @item sample_rate @emph{(audio only)}
6484 the input sample rate
6485
6486 @item key
6487 1 if the filtered frame is a key-frame, 0 otherwise
6488
6489 @item pos
6490 the position in the file of the filtered frame, -1 if the information
6491 is not available (e.g. for synthetic video)
6492
6493 @item scene @emph{(video only)}
6494 value between 0 and 1 to indicate a new scene; a low value reflects a low
6495 probability for the current frame to introduce a new scene, while a higher
6496 value means the current frame is more likely to be one (see the example below)
6497
6498 @end table
6499
6500 The default value of the select expression is "1".
6501
6502 @subsection Examples
6503
6504 @itemize
6505 @item
6506 Select all frames in input:
6507 @example
6508 select
6509 @end example
6510
6511 The example above is the same as:
6512 @example
6513 select=1
6514 @end example
6515
6516 @item
6517 Skip all frames:
6518 @example
6519 select=0
6520 @end example
6521
6522 @item
6523 Select only I-frames:
6524 @example
6525 select='eq(pict_type\,I)'
6526 @end example
6527
6528 @item
6529 Select one frame every 100:
6530 @example
6531 select='not(mod(n\,100))'
6532 @end example
6533
6534 @item
6535 Select only frames contained in the 10-20 time interval:
6536 @example
6537 select='gte(t\,10)*lte(t\,20)'
6538 @end example
6539
6540 @item
6541 Select only I frames contained in the 10-20 time interval:
6542 @example
6543 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
6544 @end example
6545
6546 @item
6547 Select frames with a minimum distance of 10 seconds:
6548 @example
6549 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
6550 @end example
6551
6552 @item
6553 Use aselect to select only audio frames with samples number > 100:
6554 @example
6555 aselect='gt(samples_n\,100)'
6556 @end example
6557
6558 @item
6559 Create a mosaic of the first scenes:
6560 @example
6561 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
6562 @end example
6563
6564 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
6565 choice.
6566 @end itemize
6567
6568 @section asendcmd, sendcmd
6569
6570 Send commands to filters in the filtergraph.
6571
6572 These filters read commands to be sent to other filters in the
6573 filtergraph.
6574
6575 @code{asendcmd} must be inserted between two audio filters,
6576 @code{sendcmd} must be inserted between two video filters, but apart
6577 from that they act the same way.
6578
6579 The specification of commands can be provided in the filter arguments
6580 with the @var{commands} option, or in a file specified by the
6581 @var{filename} option.
6582
6583 These filters accept the following options:
6584 @table @option
6585 @item commands, c
6586 Set the commands to be read and sent to the other filters.
6587 @item filename, f
6588 Set the filename of the commands to be read and sent to the other
6589 filters.
6590 @end table
6591
6592 @subsection Commands syntax
6593
6594 A commands description consists of a sequence of interval
6595 specifications, comprising a list of commands to be executed when a
6596 particular event related to that interval occurs. The occurring event
6597 is typically the current frame time entering or leaving a given time
6598 interval.
6599
6600 An interval is specified by the following syntax:
6601 @example
6602 @var{START}[-@var{END}] @var{COMMANDS};
6603 @end example
6604
6605 The time interval is specified by the @var{START} and @var{END} times.
6606 @var{END} is optional and defaults to the maximum time.
6607
6608 The current frame time is considered within the specified interval if
6609 it is included in the interval [@var{START}, @var{END}), that is when
6610 the time is greater or equal to @var{START} and is lesser than
6611 @var{END}.
6612
6613 @var{COMMANDS} consists of a sequence of one or more command
6614 specifications, separated by ",", relating to that interval.  The
6615 syntax of a command specification is given by:
6616 @example
6617 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
6618 @end example
6619
6620 @var{FLAGS} is optional and specifies the type of events relating to
6621 the time interval which enable sending the specified command, and must
6622 be a non-null sequence of identifier flags separated by "+" or "|" and
6623 enclosed between "[" and "]".
6624
6625 The following flags are recognized:
6626 @table @option
6627 @item enter
6628 The command is sent when the current frame timestamp enters the
6629 specified interval. In other words, the command is sent when the
6630 previous frame timestamp was not in the given interval, and the
6631 current is.
6632
6633 @item leave
6634 The command is sent when the current frame timestamp leaves the
6635 specified interval. In other words, the command is sent when the
6636 previous frame timestamp was in the given interval, and the
6637 current is not.
6638 @end table
6639
6640 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
6641 assumed.
6642
6643 @var{TARGET} specifies the target of the command, usually the name of
6644 the filter class or a specific filter instance name.
6645
6646 @var{COMMAND} specifies the name of the command for the target filter.
6647
6648 @var{ARG} is optional and specifies the optional list of argument for
6649 the given @var{COMMAND}.
6650
6651 Between one interval specification and another, whitespaces, or
6652 sequences of characters starting with @code{#} until the end of line,
6653 are ignored and can be used to annotate comments.
6654
6655 A simplified BNF description of the commands specification syntax
6656 follows:
6657 @example
6658 @var{COMMAND_FLAG}  ::= "enter" | "leave"
6659 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
6660 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
6661 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
6662 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
6663 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
6664 @end example
6665
6666 @subsection Examples
6667
6668 @itemize
6669 @item
6670 Specify audio tempo change at second 4:
6671 @example
6672 asendcmd=c='4.0 atempo tempo 1.5',atempo
6673 @end example
6674
6675 @item
6676 Specify a list of drawtext and hue commands in a file.
6677 @example
6678 # show text in the interval 5-10
6679 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
6680          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
6681
6682 # desaturate the image in the interval 15-20
6683 15.0-20.0 [enter] hue reinit s=0,
6684           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
6685           [leave] hue reinit s=1,
6686           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
6687
6688 # apply an exponential saturation fade-out effect, starting from time 25
6689 25 [enter] hue s=exp(t-25)
6690 @end example
6691
6692 A filtergraph allowing to read and process the above command list
6693 stored in a file @file{test.cmd}, can be specified with:
6694 @example
6695 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
6696 @end example
6697 @end itemize
6698
6699 @anchor{setpts}
6700 @section asetpts, setpts
6701
6702 Change the PTS (presentation timestamp) of the input frames.
6703
6704 @code{asetpts} works on audio frames, @code{setpts} on video frames.
6705
6706 This filter accepts the following options:
6707
6708 @table @option
6709
6710 @item expr
6711 The expression which is evaluated for each frame to construct its timestamp.
6712
6713 @end table
6714
6715 The expression is evaluated through the eval API and can contain the following
6716 constants:
6717
6718 @table @option
6719 @item FRAME_RATE
6720 frame rate, only defined for constant frame-rate video
6721
6722 @item PTS
6723 the presentation timestamp in input
6724
6725 @item N
6726 the count of the input frame, starting from 0.
6727
6728 @item NB_CONSUMED_SAMPLES
6729 the number of consumed samples, not including the current frame (only
6730 audio)
6731
6732 @item NB_SAMPLES
6733 the number of samples in the current frame (only audio)
6734
6735 @item SAMPLE_RATE
6736 audio sample rate
6737
6738 @item STARTPTS
6739 the PTS of the first frame
6740
6741 @item STARTT
6742 the time in seconds of the first frame
6743
6744 @item INTERLACED
6745 tell if the current frame is interlaced
6746
6747 @item T
6748 the time in seconds of the current frame
6749
6750 @item TB
6751 the time base
6752
6753 @item POS
6754 original position in the file of the frame, or undefined if undefined
6755 for the current frame
6756
6757 @item PREV_INPTS
6758 previous input PTS
6759
6760 @item PREV_INT
6761 previous input time in seconds
6762
6763 @item PREV_OUTPTS
6764 previous output PTS
6765
6766 @item PREV_OUTT
6767 previous output time in seconds
6768
6769 @item RTCTIME
6770 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
6771 instead.
6772
6773 @item RTCSTART
6774 wallclock (RTC) time at the start of the movie in microseconds
6775 @end table
6776
6777 @subsection Examples
6778
6779 @itemize
6780 @item
6781 Start counting PTS from zero
6782 @example
6783 setpts=PTS-STARTPTS
6784 @end example
6785
6786 @item
6787 Apply fast motion effect:
6788 @example
6789 setpts=0.5*PTS
6790 @end example
6791
6792 @item
6793 Apply slow motion effect:
6794 @example
6795 setpts=2.0*PTS
6796 @end example
6797
6798 @item
6799 Set fixed rate of 25 frames per second:
6800 @example
6801 setpts=N/(25*TB)
6802 @end example
6803
6804 @item
6805 Set fixed rate 25 fps with some jitter:
6806 @example
6807 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
6808 @end example
6809
6810 @item
6811 Apply an offset of 10 seconds to the input PTS:
6812 @example
6813 setpts=PTS+10/TB
6814 @end example
6815
6816 @item
6817 Generate timestamps from a "live source" and rebase onto the current timebase:
6818 @example
6819 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
6820 @end example
6821 @end itemize
6822
6823 @section ebur128
6824
6825 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
6826 it unchanged. By default, it logs a message at a frequency of 10Hz with the
6827 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
6828 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
6829
6830 The filter also has a video output (see the @var{video} option) with a real
6831 time graph to observe the loudness evolution. The graphic contains the logged
6832 message mentioned above, so it is not printed anymore when this option is set,
6833 unless the verbose logging is set. The main graphing area contains the
6834 short-term loudness (3 seconds of analysis), and the gauge on the right is for
6835 the momentary loudness (400 milliseconds).
6836
6837 More information about the Loudness Recommendation EBU R128 on
6838 @url{http://tech.ebu.ch/loudness}.
6839
6840 The filter accepts the following options:
6841
6842 @table @option
6843
6844 @item video
6845 Activate the video output. The audio stream is passed unchanged whether this
6846 option is set or no. The video stream will be the first output stream if
6847 activated. Default is @code{0}.
6848
6849 @item size
6850 Set the video size. This option is for video only. Default and minimum
6851 resolution is @code{640x480}.
6852
6853 @item meter
6854 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
6855 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
6856 other integer value between this range is allowed.
6857
6858 @item metadata
6859 Set metadata injection. If set to @code{1}, the audio input will be segmented
6860 into 100ms output frames, each of them containing various loudness information
6861 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
6862
6863 Default is @code{0}.
6864
6865 @item framelog
6866 Force the frame logging level.
6867
6868 Available values are:
6869 @table @samp
6870 @item info
6871 information logging level
6872 @item verbose
6873 verbose logging level
6874 @end table
6875
6876 By default, the logging level is set to @var{info}. If the @option{video} or
6877 the @option{metadata} options are set, it switches to @var{verbose}.
6878 @end table
6879
6880 @subsection Examples
6881
6882 @itemize
6883 @item
6884 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
6885 @example
6886 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
6887 @end example
6888
6889 @item
6890 Run an analysis with @command{ffmpeg}:
6891 @example
6892 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
6893 @end example
6894 @end itemize
6895
6896 @section settb, asettb
6897
6898 Set the timebase to use for the output frames timestamps.
6899 It is mainly useful for testing timebase configuration.
6900
6901 This filter accepts the following options:
6902
6903 @table @option
6904
6905 @item expr
6906 The expression which is evaluated into the output timebase.
6907
6908 @end table
6909
6910 The value for @option{tb} is an arithmetic expression representing a
6911 rational. The expression can contain the constants "AVTB" (the default
6912 timebase), "intb" (the input timebase) and "sr" (the sample rate,
6913 audio only). Default value is "intb".
6914
6915 @subsection Examples
6916
6917 @itemize
6918 @item
6919 Set the timebase to 1/25:
6920 @example
6921 settb=expr=1/25
6922 @end example
6923
6924 @item
6925 Set the timebase to 1/10:
6926 @example
6927 settb=expr=0.1
6928 @end example
6929
6930 @item
6931 Set the timebase to 1001/1000:
6932 @example
6933 settb=1+0.001
6934 @end example
6935
6936 @item
6937 Set the timebase to 2*intb:
6938 @example
6939 settb=2*intb
6940 @end example
6941
6942 @item
6943 Set the default timebase value:
6944 @example
6945 settb=AVTB
6946 @end example
6947 @end itemize
6948
6949 @section concat
6950
6951 Concatenate audio and video streams, joining them together one after the
6952 other.
6953
6954 The filter works on segments of synchronized video and audio streams. All
6955 segments must have the same number of streams of each type, and that will
6956 also be the number of streams at output.
6957
6958 The filter accepts the following named parameters:
6959 @table @option
6960
6961 @item n
6962 Set the number of segments. Default is 2.
6963
6964 @item v
6965 Set the number of output video streams, that is also the number of video
6966 streams in each segment. Default is 1.
6967
6968 @item a
6969 Set the number of output audio streams, that is also the number of video
6970 streams in each segment. Default is 0.
6971
6972 @item unsafe
6973 Activate unsafe mode: do not fail if segments have a different format.
6974
6975 @end table
6976
6977 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
6978 @var{a} audio outputs.
6979
6980 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
6981 segment, in the same order as the outputs, then the inputs for the second
6982 segment, etc.
6983
6984 Related streams do not always have exactly the same duration, for various
6985 reasons including codec frame size or sloppy authoring. For that reason,
6986 related synchronized streams (e.g. a video and its audio track) should be
6987 concatenated at once. The concat filter will use the duration of the longest
6988 stream in each segment (except the last one), and if necessary pad shorter
6989 audio streams with silence.
6990
6991 For this filter to work correctly, all segments must start at timestamp 0.
6992
6993 All corresponding streams must have the same parameters in all segments; the
6994 filtering system will automatically select a common pixel format for video
6995 streams, and a common sample format, sample rate and channel layout for
6996 audio streams, but other settings, such as resolution, must be converted
6997 explicitly by the user.
6998
6999 Different frame rates are acceptable but will result in variable frame rate
7000 at output; be sure to configure the output file to handle it.
7001
7002 @subsection Examples
7003
7004 @itemize
7005 @item
7006 Concatenate an opening, an episode and an ending, all in bilingual version
7007 (video in stream 0, audio in streams 1 and 2):
7008 @example
7009 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
7010   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
7011    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
7012   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
7013 @end example
7014
7015 @item
7016 Concatenate two parts, handling audio and video separately, using the
7017 (a)movie sources, and adjusting the resolution:
7018 @example
7019 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
7020 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
7021 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
7022 @end example
7023 Note that a desync will happen at the stitch if the audio and video streams
7024 do not have exactly the same duration in the first file.
7025
7026 @end itemize
7027
7028 @section showspectrum
7029
7030 Convert input audio to a video output, representing the audio frequency
7031 spectrum.
7032
7033 The filter accepts the following options:
7034
7035 @table @option
7036 @item size, s
7037 Specify the video size for the output. Default value is @code{640x512}.
7038
7039 @item slide
7040 Specify if the spectrum should slide along the window. Default value is
7041 @code{0}.
7042
7043 @item mode
7044 Specify display mode.
7045
7046 It accepts the following values:
7047 @table @samp
7048 @item combined
7049 all channels are displayed in the same row
7050 @item separate
7051 all channels are displayed in separate rows
7052 @end table
7053
7054 Default value is @samp{combined}.
7055
7056 @item color
7057 Specify display color mode.
7058
7059 It accepts the following values:
7060 @table @samp
7061 @item channel
7062 each channel is displayed in a separate color
7063 @item intensity
7064 each channel is is displayed using the same color scheme
7065 @end table
7066
7067 Default value is @samp{channel}.
7068
7069 @item scale
7070 Specify scale used for calculating intensity color values.
7071
7072 It accepts the following values:
7073 @table @samp
7074 @item lin
7075 linear
7076 @item sqrt
7077 square root, default
7078 @item cbrt
7079 cubic root
7080 @item log
7081 logarithmic
7082 @end table
7083
7084 Default value is @samp{sqrt}.
7085
7086 @item saturation
7087 Set saturation modifier for displayed colors. Negative values provide
7088 alternative color scheme. @code{0} is no saturation at all.
7089 Saturation must be in [-10.0, 10.0] range.
7090 Default value is @code{1}.
7091 @end table
7092
7093 The usage is very similar to the showwaves filter; see the examples in that
7094 section.
7095
7096 @subsection Examples
7097
7098 @itemize
7099 @item
7100 Large window with logarithmic color scaling:
7101 @example
7102 showspectrum=s=1280x480:scale=log
7103 @end example
7104
7105 @item
7106 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
7107 @example
7108 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
7109              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
7110 @end example
7111 @end itemize
7112
7113 @section showwaves
7114
7115 Convert input audio to a video output, representing the samples waves.
7116
7117 The filter accepts the following named parameters:
7118 @table @option
7119 @item mode
7120 Set display mode.
7121
7122 Available values are:
7123 @table @samp
7124 @item point
7125 Draw a point for each sample.
7126
7127 @item line
7128 Draw a vertical line for each sample.
7129 @end table
7130
7131 Default value is @code{point}.
7132
7133 @item n
7134 Set the number of samples which are printed on the same column. A
7135 larger value will decrease the frame rate. Must be a positive
7136 integer. This option can be set only if the value for @var{rate}
7137 is not explicitly specified.
7138
7139 @item rate, r
7140 Set the (approximate) output frame rate. This is done by setting the
7141 option @var{n}. Default value is "25".
7142
7143 @item size, s
7144 Specify the video size for the output. Default value is "600x240".
7145 @end table
7146
7147 @subsection Examples
7148
7149 @itemize
7150 @item
7151 Output the input file audio and the corresponding video representation
7152 at the same time:
7153 @example
7154 amovie=a.mp3,asplit[out0],showwaves[out1]
7155 @end example
7156
7157 @item
7158 Create a synthetic signal and show it with showwaves, forcing a
7159 frame rate of 30 frames per second:
7160 @example
7161 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
7162 @end example
7163 @end itemize
7164
7165 @c man end MULTIMEDIA FILTERS
7166
7167 @chapter Multimedia Sources
7168 @c man begin MULTIMEDIA SOURCES
7169
7170 Below is a description of the currently available multimedia sources.
7171
7172 @section amovie
7173
7174 This is the same as @ref{movie} source, except it selects an audio
7175 stream by default.
7176
7177 @anchor{movie}
7178 @section movie
7179
7180 Read audio and/or video stream(s) from a movie container.
7181
7182 It accepts the syntax: @var{movie_name}[:@var{options}] where
7183 @var{movie_name} is the name of the resource to read (not necessarily
7184 a file but also a device or a stream accessed through some protocol),
7185 and @var{options} is an optional sequence of @var{key}=@var{value}
7186 pairs, separated by ":".
7187
7188 The description of the accepted options follows.
7189
7190 @table @option
7191
7192 @item format_name, f
7193 Specifies the format assumed for the movie to read, and can be either
7194 the name of a container or an input device. If not specified the
7195 format is guessed from @var{movie_name} or by probing.
7196
7197 @item seek_point, sp
7198 Specifies the seek point in seconds, the frames will be output
7199 starting from this seek point, the parameter is evaluated with
7200 @code{av_strtod} so the numerical value may be suffixed by an IS
7201 postfix. Default value is "0".
7202
7203 @item streams, s
7204 Specifies the streams to read. Several streams can be specified,
7205 separated by "+". The source will then have as many outputs, in the
7206 same order. The syntax is explained in the ``Stream specifiers''
7207 section in the ffmpeg manual. Two special names, "dv" and "da" specify
7208 respectively the default (best suited) video and audio stream. Default
7209 is "dv", or "da" if the filter is called as "amovie".
7210
7211 @item stream_index, si
7212 Specifies the index of the video stream to read. If the value is -1,
7213 the best suited video stream will be automatically selected. Default
7214 value is "-1". Deprecated. If the filter is called "amovie", it will select
7215 audio instead of video.
7216
7217 @item loop
7218 Specifies how many times to read the stream in sequence.
7219 If the value is less than 1, the stream will be read again and again.
7220 Default value is "1".
7221
7222 Note that when the movie is looped the source timestamps are not
7223 changed, so it will generate non monotonically increasing timestamps.
7224 @end table
7225
7226 This filter allows to overlay a second video on top of main input of
7227 a filtergraph as shown in this graph:
7228 @example
7229 input -----------> deltapts0 --> overlay --> output
7230                                     ^
7231                                     |
7232 movie --> scale--> deltapts1 -------+
7233 @end example
7234
7235 @subsection Examples
7236
7237 @itemize
7238 @item
7239 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
7240 on top of the input labelled as "in":
7241 @example
7242 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
7243 [in] setpts=PTS-STARTPTS [main];
7244 [main][over] overlay=16:16 [out]
7245 @end example
7246
7247 @item
7248 Read from a video4linux2 device, and overlay it on top of the input
7249 labelled as "in":
7250 @example
7251 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
7252 [in] setpts=PTS-STARTPTS [main];
7253 [main][over] overlay=16:16 [out]
7254 @end example
7255
7256 @item
7257 Read the first video stream and the audio stream with id 0x81 from
7258 dvd.vob; the video is connected to the pad named "video" and the audio is
7259 connected to the pad named "audio":
7260 @example
7261 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
7262 @end example
7263 @end itemize
7264
7265 @c man end MULTIMEDIA SOURCES