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