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