]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit 'c93ccf5a4cca722b39f05e9f5660b4cb75bc1740'
[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/avfilter.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 @chapter Timeline editing
271
272 Some filters support a generic @option{enable} option. For the filters
273 supporting timeline editing, this option can be set to an expression which is
274 evaluated before sending a frame to the filter. If the evaluation is non-zero,
275 the filter will be enabled, otherwise the frame will be sent unchanged to the
276 next filter in the filtergraph.
277
278 The expression accepts the following values:
279 @table @samp
280 @item t
281 timestamp expressed in seconds, NAN if the input timestamp is unknown
282
283 @item n
284 sequential number of the input frame, starting from 0
285
286 @item pos
287 the position in the file of the input frame, NAN if unknown
288 @end table
289
290 Additionally, these filters support an @option{enable} command that can be used
291 to re-define the expression.
292
293 Like any other filtering option, the @option{enable} option follows the same
294 rules.
295
296 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
297 minutes, and a @ref{curves} filter starting at 3 seconds:
298 @example
299 smartblur = enable='between(t,10,3*60)',
300 curves    = enable='gte(t,3)' : preset=cross_process
301 @end example
302
303 @c man end FILTERGRAPH DESCRIPTION
304
305 @chapter Audio Filters
306 @c man begin AUDIO FILTERS
307
308 When you configure your FFmpeg build, you can disable any of the
309 existing filters using @code{--disable-filters}.
310 The configure output will show the audio filters included in your
311 build.
312
313 Below is a description of the currently available audio filters.
314
315 @section aconvert
316
317 Convert the input audio format to the specified formats.
318
319 @emph{This filter is deprecated. Use @ref{aformat} instead.}
320
321 The filter accepts a string of the form:
322 "@var{sample_format}:@var{channel_layout}".
323
324 @var{sample_format} specifies the sample format, and can be a string or the
325 corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
326 suffix for a planar sample format.
327
328 @var{channel_layout} specifies the channel layout, and can be a string
329 or the corresponding number value defined in @file{libavutil/channel_layout.h}.
330
331 The special parameter "auto", signifies that the filter will
332 automatically select the output format depending on the output filter.
333
334 @subsection Examples
335
336 @itemize
337 @item
338 Convert input to float, planar, stereo:
339 @example
340 aconvert=fltp:stereo
341 @end example
342
343 @item
344 Convert input to unsigned 8-bit, automatically select out channel layout:
345 @example
346 aconvert=u8:auto
347 @end example
348 @end itemize
349
350 @section afade
351
352 Apply fade-in/out effect to input audio.
353
354 A description of the accepted parameters follows.
355
356 @table @option
357 @item type, t
358 Specify the effect type, can be either @code{in} for fade-in, or
359 @code{out} for a fade-out effect. Default is @code{in}.
360
361 @item start_sample, ss
362 Specify the number of the start sample for starting to apply the fade
363 effect. Default is 0.
364
365 @item nb_samples, ns
366 Specify the number of samples for which the fade effect has to last. At
367 the end of the fade-in effect the output audio will have the same
368 volume as the input audio, at the end of the fade-out transition
369 the output audio will be silence. Default is 44100.
370
371 @item start_time, st
372 Specify time for starting to apply the fade effect. Default is 0.
373 The accepted syntax is:
374 @example
375 [-]HH[:MM[:SS[.m...]]]
376 [-]S+[.m...]
377 @end example
378 See also the function @code{av_parse_time()}.
379 If set this option is used instead of @var{start_sample} one.
380
381 @item duration, d
382 Specify the duration for which the fade effect has to last. Default is 0.
383 The accepted syntax is:
384 @example
385 [-]HH[:MM[:SS[.m...]]]
386 [-]S+[.m...]
387 @end example
388 See also the function @code{av_parse_time()}.
389 At the end of the fade-in effect the output audio will have the same
390 volume as the input audio, at the end of the fade-out transition
391 the output audio will be silence.
392 If set this option is used instead of @var{nb_samples} one.
393
394 @item curve
395 Set curve for fade transition.
396
397 It accepts the following values:
398 @table @option
399 @item tri
400 select triangular, linear slope (default)
401 @item qsin
402 select quarter of sine wave
403 @item hsin
404 select half of sine wave
405 @item esin
406 select exponential sine wave
407 @item log
408 select logarithmic
409 @item par
410 select inverted parabola
411 @item qua
412 select quadratic
413 @item cub
414 select cubic
415 @item squ
416 select square root
417 @item cbr
418 select cubic root
419 @end table
420 @end table
421
422 @subsection Examples
423
424 @itemize
425 @item
426 Fade in first 15 seconds of audio:
427 @example
428 afade=t=in:ss=0:d=15
429 @end example
430
431 @item
432 Fade out last 25 seconds of a 900 seconds audio:
433 @example
434 afade=t=out:st=875:d=25
435 @end example
436 @end itemize
437
438 @anchor{aformat}
439 @section aformat
440
441 Set output format constraints for the input audio. The framework will
442 negotiate the most appropriate format to minimize conversions.
443
444 The filter accepts the following named parameters:
445 @table @option
446
447 @item sample_fmts
448 A '|'-separated list of requested sample formats.
449
450 @item sample_rates
451 A '|'-separated list of requested sample rates.
452
453 @item channel_layouts
454 A '|'-separated list of requested channel layouts.
455
456 @end table
457
458 If a parameter is omitted, all values are allowed.
459
460 For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
461 @example
462 aformat=sample_fmts=u8|s16:channel_layouts=stereo
463 @end example
464
465 @section allpass
466
467 Apply a two-pole all-pass filter with central frequency (in Hz)
468 @var{frequency}, and filter-width @var{width}.
469 An all-pass filter changes the audio's frequency to phase relationship
470 without changing its frequency to amplitude relationship.
471
472 The filter accepts the following options:
473
474 @table @option
475 @item frequency, f
476 Set frequency in Hz.
477
478 @item width_type
479 Set method to specify band-width of filter.
480 @table @option
481 @item h
482 Hz
483 @item q
484 Q-Factor
485 @item o
486 octave
487 @item s
488 slope
489 @end table
490
491 @item width, w
492 Specify the band-width of a filter in width_type units.
493 @end table
494
495 @section amerge
496
497 Merge two or more audio streams into a single multi-channel stream.
498
499 The filter accepts the following options:
500
501 @table @option
502
503 @item inputs
504 Set the number of inputs. Default is 2.
505
506 @end table
507
508 If the channel layouts of the inputs are disjoint, and therefore compatible,
509 the channel layout of the output will be set accordingly and the channels
510 will be reordered as necessary. If the channel layouts of the inputs are not
511 disjoint, the output will have all the channels of the first input then all
512 the channels of the second input, in that order, and the channel layout of
513 the output will be the default value corresponding to the total number of
514 channels.
515
516 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
517 is FC+BL+BR, then the output will be in 5.1, with the channels in the
518 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
519 first input, b1 is the first channel of the second input).
520
521 On the other hand, if both input are in stereo, the output channels will be
522 in the default order: a1, a2, b1, b2, and the channel layout will be
523 arbitrarily set to 4.0, which may or may not be the expected value.
524
525 All inputs must have the same sample rate, and format.
526
527 If inputs do not have the same duration, the output will stop with the
528 shortest.
529
530 @subsection Examples
531
532 @itemize
533 @item
534 Merge two mono files into a stereo stream:
535 @example
536 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
537 @end example
538
539 @item
540 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
541 @example
542 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
543 @end example
544 @end itemize
545
546 @section amix
547
548 Mixes multiple audio inputs into a single output.
549
550 For example
551 @example
552 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
553 @end example
554 will mix 3 input audio streams to a single output with the same duration as the
555 first input and a dropout transition time of 3 seconds.
556
557 The filter accepts the following named parameters:
558 @table @option
559
560 @item inputs
561 Number of inputs. If unspecified, it defaults to 2.
562
563 @item duration
564 How to determine the end-of-stream.
565 @table @option
566
567 @item longest
568 Duration of longest input. (default)
569
570 @item shortest
571 Duration of shortest input.
572
573 @item first
574 Duration of first input.
575
576 @end table
577
578 @item dropout_transition
579 Transition time, in seconds, for volume renormalization when an input
580 stream ends. The default value is 2 seconds.
581
582 @end table
583
584 @section anull
585
586 Pass the audio source unchanged to the output.
587
588 @section apad
589
590 Pad the end of a audio stream with silence, this can be used together with
591 -shortest to extend audio streams to the same length as the video stream.
592
593 @section aphaser
594 Add a phasing effect to the input audio.
595
596 A phaser filter creates series of peaks and troughs in the frequency spectrum.
597 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
598
599 A description of the accepted parameters follows.
600
601 @table @option
602 @item in_gain
603 Set input gain. Default is 0.4.
604
605 @item out_gain
606 Set output gain. Default is 0.74
607
608 @item delay
609 Set delay in milliseconds. Default is 3.0.
610
611 @item decay
612 Set decay. Default is 0.4.
613
614 @item speed
615 Set modulation speed in Hz. Default is 0.5.
616
617 @item type
618 Set modulation type. Default is triangular.
619
620 It accepts the following values:
621 @table @samp
622 @item triangular, t
623 @item sinusoidal, s
624 @end table
625 @end table
626
627 @anchor{aresample}
628 @section aresample
629
630 Resample the input audio to the specified parameters, using the
631 libswresample library. If none are specified then the filter will
632 automatically convert between its input and output.
633
634 This filter is also able to stretch/squeeze the audio data to make it match
635 the timestamps or to inject silence / cut out audio to make it match the
636 timestamps, do a combination of both or do neither.
637
638 The filter accepts the syntax
639 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
640 expresses a sample rate and @var{resampler_options} is a list of
641 @var{key}=@var{value} pairs, separated by ":". See the
642 ffmpeg-resampler manual for the complete list of supported options.
643
644 @subsection Examples
645
646 @itemize
647 @item
648 Resample the input audio to 44100Hz:
649 @example
650 aresample=44100
651 @end example
652
653 @item
654 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
655 samples per second compensation:
656 @example
657 aresample=async=1000
658 @end example
659 @end itemize
660
661 @section asetnsamples
662
663 Set the number of samples per each output audio frame.
664
665 The last output packet may contain a different number of samples, as
666 the filter will flush all the remaining samples when the input audio
667 signal its end.
668
669 The filter accepts the following options:
670
671 @table @option
672
673 @item nb_out_samples, n
674 Set the number of frames per each output audio frame. The number is
675 intended as the number of samples @emph{per each channel}.
676 Default value is 1024.
677
678 @item pad, p
679 If set to 1, the filter will pad the last audio frame with zeroes, so
680 that the last frame will contain the same number of samples as the
681 previous ones. Default value is 1.
682 @end table
683
684 For example, to set the number of per-frame samples to 1234 and
685 disable padding for the last frame, use:
686 @example
687 asetnsamples=n=1234:p=0
688 @end example
689
690 @section asetrate
691
692 Set the sample rate without altering the PCM data.
693 This will result in a change of speed and pitch.
694
695 The filter accepts the following options:
696
697 @table @option
698 @item sample_rate, r
699 Set the output sample rate. Default is 44100 Hz.
700 @end table
701
702 @section ashowinfo
703
704 Show a line containing various information for each input audio frame.
705 The input audio is not modified.
706
707 The shown line contains a sequence of key/value pairs of the form
708 @var{key}:@var{value}.
709
710 A description of each shown parameter follows:
711
712 @table @option
713 @item n
714 sequential number of the input frame, starting from 0
715
716 @item pts
717 Presentation timestamp of the input frame, in time base units; the time base
718 depends on the filter input pad, and is usually 1/@var{sample_rate}.
719
720 @item pts_time
721 presentation timestamp of the input frame in seconds
722
723 @item pos
724 position of the frame in the input stream, -1 if this information in
725 unavailable and/or meaningless (for example in case of synthetic audio)
726
727 @item fmt
728 sample format
729
730 @item chlayout
731 channel layout
732
733 @item rate
734 sample rate for the audio frame
735
736 @item nb_samples
737 number of samples (per channel) in the frame
738
739 @item checksum
740 Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
741 the data is treated as if all the planes were concatenated.
742
743 @item plane_checksums
744 A list of Adler-32 checksums for each data plane.
745 @end table
746
747 @section astats
748
749 Display time domain statistical information about the audio channels.
750 Statistics are calculated and displayed for each audio channel and,
751 where applicable, an overall figure is also given.
752
753 The filter accepts the following option:
754 @table @option
755 @item length
756 Short window length in seconds, used for peak and trough RMS measurement.
757 Default is @code{0.05} (50 miliseconds). Allowed range is @code{[0.1 - 10]}.
758 @end table
759
760 A description of each shown parameter follows:
761
762 @table @option
763 @item DC offset
764 Mean amplitude displacement from zero.
765
766 @item Min level
767 Minimal sample level.
768
769 @item Max level
770 Maximal sample level.
771
772 @item Peak level dB
773 @item RMS level dB
774 Standard peak and RMS level measured in dBFS.
775
776 @item RMS peak dB
777 @item RMS trough dB
778 Peak and trough values for RMS level measured over a short window.
779
780 @item Crest factor
781 Standard ratio of peak to RMS level (note: not in dB).
782
783 @item Flat factor
784 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
785 (i.e. either @var{Min level} or @var{Max level}).
786
787 @item Peak count
788 Number of occasions (not the number of samples) that the signal attained either
789 @var{Min level} or @var{Max level}.
790 @end table
791
792 @section astreamsync
793
794 Forward two audio streams and control the order the buffers are forwarded.
795
796 The filter accepts the following options:
797
798 @table @option
799 @item expr, e
800 Set the expression deciding which stream should be
801 forwarded next: if the result is negative, the first stream is forwarded; if
802 the result is positive or zero, the second stream is forwarded. It can use
803 the following variables:
804
805 @table @var
806 @item b1 b2
807 number of buffers forwarded so far on each stream
808 @item s1 s2
809 number of samples forwarded so far on each stream
810 @item t1 t2
811 current timestamp of each stream
812 @end table
813
814 The default value is @code{t1-t2}, which means to always forward the stream
815 that has a smaller timestamp.
816 @end table
817
818 @subsection Examples
819
820 Stress-test @code{amerge} by randomly sending buffers on the wrong
821 input, while avoiding too much of a desynchronization:
822 @example
823 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
824 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
825 [a2] [b2] amerge
826 @end example
827
828 @section asyncts
829
830 Synchronize audio data with timestamps by squeezing/stretching it and/or
831 dropping samples/adding silence when needed.
832
833 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
834
835 The filter accepts the following named parameters:
836 @table @option
837
838 @item compensate
839 Enable stretching/squeezing the data to make it match the timestamps. Disabled
840 by default. When disabled, time gaps are covered with silence.
841
842 @item min_delta
843 Minimum difference between timestamps and audio data (in seconds) to trigger
844 adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
845 this filter, try setting this parameter to 0.
846
847 @item max_comp
848 Maximum compensation in samples per second. Relevant only with compensate=1.
849 Default value 500.
850
851 @item first_pts
852 Assume the first pts should be this value. The time base is 1 / sample rate.
853 This allows for padding/trimming at the start of stream. By default, no
854 assumption is made about the first frame's expected pts, so no padding or
855 trimming is done. For example, this could be set to 0 to pad the beginning with
856 silence if an audio stream starts after the video stream or to trim any samples
857 with a negative pts due to encoder delay.
858
859 @end table
860
861 @section atempo
862
863 Adjust audio tempo.
864
865 The filter accepts exactly one parameter, the audio tempo. If not
866 specified then the filter will assume nominal 1.0 tempo. Tempo must
867 be in the [0.5, 2.0] range.
868
869 @subsection Examples
870
871 @itemize
872 @item
873 Slow down audio to 80% tempo:
874 @example
875 atempo=0.8
876 @end example
877
878 @item
879 To speed up audio to 125% tempo:
880 @example
881 atempo=1.25
882 @end example
883 @end itemize
884
885 @section atrim
886
887 Trim the input so that the output contains one continuous subpart of the input.
888
889 This filter accepts the following options:
890 @table @option
891 @item start
892 Timestamp (in seconds) of the start of the kept section. I.e. the audio sample
893 with the timestamp @var{start} will be the first sample in the output.
894
895 @item end
896 Timestamp (in seconds) of the first audio sample that will be dropped. I.e. the
897 audio sample immediately preceding the one with the timestamp @var{end} will be
898 the last sample in the output.
899
900 @item start_pts
901 Same as @var{start}, except this option sets the start timestamp in samples
902 instead of seconds.
903
904 @item end_pts
905 Same as @var{end}, except this option sets the end timestamp in samples instead
906 of seconds.
907
908 @item duration
909 Maximum duration of the output in seconds.
910
911 @item start_sample
912 Number of the first sample that should be passed to output.
913
914 @item end_sample
915 Number of the first sample that should be dropped.
916 @end table
917
918 Note that the first two sets of the start/end options and the @option{duration}
919 option look at the frame timestamp, while the _sample options simply count the
920 samples that pass through the filter. So start/end_pts and start/end_sample will
921 give different results when the timestamps are wrong, inexact or do not start at
922 zero. Also note that this filter does not modify the timestamps. If you wish
923 that the output timestamps start at zero, insert the asetpts filter after the
924 atrim filter.
925
926 If multiple start or end options are set, this filter tries to be greedy and
927 keep all samples that match at least one of the specified constraints. To keep
928 only the part that matches all the constraints at once, chain multiple atrim
929 filters.
930
931 The defaults are such that all the input is kept. So it is possible to set e.g.
932 just the end values to keep everything before the specified time.
933
934 Examples:
935 @itemize
936 @item
937 drop everything except the second minute of input
938 @example
939 ffmpeg -i INPUT -af atrim=60:120
940 @end example
941
942 @item
943 keep only the first 1000 samples
944 @example
945 ffmpeg -i INPUT -af atrim=end_sample=1000
946 @end example
947
948 @end itemize
949
950 @section bandpass
951
952 Apply a two-pole Butterworth band-pass filter with central
953 frequency @var{frequency}, and (3dB-point) band-width width.
954 The @var{csg} option selects a constant skirt gain (peak gain = Q)
955 instead of the default: constant 0dB peak gain.
956 The filter roll off at 6dB per octave (20dB per decade).
957
958 The filter accepts the following options:
959
960 @table @option
961 @item frequency, f
962 Set the filter's central frequency. Default is @code{3000}.
963
964 @item csg
965 Constant skirt gain if set to 1. Defaults to 0.
966
967 @item width_type
968 Set method to specify band-width of filter.
969 @table @option
970 @item h
971 Hz
972 @item q
973 Q-Factor
974 @item o
975 octave
976 @item s
977 slope
978 @end table
979
980 @item width, w
981 Specify the band-width of a filter in width_type units.
982 @end table
983
984 @section bandreject
985
986 Apply a two-pole Butterworth band-reject filter with central
987 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
988 The filter roll off at 6dB per octave (20dB per decade).
989
990 The filter accepts the following options:
991
992 @table @option
993 @item frequency, f
994 Set the filter's central frequency. Default is @code{3000}.
995
996 @item width_type
997 Set method to specify band-width of filter.
998 @table @option
999 @item h
1000 Hz
1001 @item q
1002 Q-Factor
1003 @item o
1004 octave
1005 @item s
1006 slope
1007 @end table
1008
1009 @item width, w
1010 Specify the band-width of a filter in width_type units.
1011 @end table
1012
1013 @section bass
1014
1015 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1016 shelving filter with a response similar to that of a standard
1017 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1018
1019 The filter accepts the following options:
1020
1021 @table @option
1022 @item gain, g
1023 Give the gain at 0 Hz. Its useful range is about -20
1024 (for a large cut) to +20 (for a large boost).
1025 Beware of clipping when using a positive gain.
1026
1027 @item frequency, f
1028 Set the filter's central frequency and so can be used
1029 to extend or reduce the frequency range to be boosted or cut.
1030 The default value is @code{100} Hz.
1031
1032 @item width_type
1033 Set method to specify band-width of filter.
1034 @table @option
1035 @item h
1036 Hz
1037 @item q
1038 Q-Factor
1039 @item o
1040 octave
1041 @item s
1042 slope
1043 @end table
1044
1045 @item width, w
1046 Determine how steep is the filter's shelf transition.
1047 @end table
1048
1049 @section biquad
1050
1051 Apply a biquad IIR filter with the given coefficients.
1052 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1053 are the numerator and denominator coefficients respectively.
1054
1055 @section channelmap
1056
1057 Remap input channels to new locations.
1058
1059 This filter accepts the following named parameters:
1060 @table @option
1061 @item channel_layout
1062 Channel layout of the output stream.
1063
1064 @item map
1065 Map channels from input to output. The argument is a '|'-separated list of
1066 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1067 @var{in_channel} form. @var{in_channel} can be either the name of the input
1068 channel (e.g. FL for front left) or its index in the input channel layout.
1069 @var{out_channel} is the name of the output channel or its index in the output
1070 channel layout. If @var{out_channel} is not given then it is implicitly an
1071 index, starting with zero and increasing by one for each mapping.
1072 @end table
1073
1074 If no mapping is present, the filter will implicitly map input channels to
1075 output channels preserving index.
1076
1077 For example, assuming a 5.1+downmix input MOV file
1078 @example
1079 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1080 @end example
1081 will create an output WAV file tagged as stereo from the downmix channels of
1082 the input.
1083
1084 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1085 @example
1086 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:channel_layout=5.1' out.wav
1087 @end example
1088
1089 @section channelsplit
1090
1091 Split each channel in input audio stream into a separate output stream.
1092
1093 This filter accepts the following named parameters:
1094 @table @option
1095 @item channel_layout
1096 Channel layout of the input stream. Default is "stereo".
1097 @end table
1098
1099 For example, assuming a stereo input MP3 file
1100 @example
1101 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1102 @end example
1103 will create an output Matroska file with two audio streams, one containing only
1104 the left channel and the other the right channel.
1105
1106 To split a 5.1 WAV file into per-channel files
1107 @example
1108 ffmpeg -i in.wav -filter_complex
1109 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1110 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1111 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1112 side_right.wav
1113 @end example
1114
1115 @section earwax
1116
1117 Make audio easier to listen to on headphones.
1118
1119 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1120 so that when listened to on headphones the stereo image is moved from
1121 inside your head (standard for headphones) to outside and in front of
1122 the listener (standard for speakers).
1123
1124 Ported from SoX.
1125
1126 @section equalizer
1127
1128 Apply a two-pole peaking equalisation (EQ) filter. With this
1129 filter, the signal-level at and around a selected frequency can
1130 be increased or decreased, whilst (unlike bandpass and bandreject
1131 filters) that at all other frequencies is unchanged.
1132
1133 In order to produce complex equalisation curves, this filter can
1134 be given several times, each with a different central frequency.
1135
1136 The filter accepts the following options:
1137
1138 @table @option
1139 @item frequency, f
1140 Set the filter's central frequency in Hz.
1141
1142 @item width_type
1143 Set method to specify band-width of filter.
1144 @table @option
1145 @item h
1146 Hz
1147 @item q
1148 Q-Factor
1149 @item o
1150 octave
1151 @item s
1152 slope
1153 @end table
1154
1155 @item width, w
1156 Specify the band-width of a filter in width_type units.
1157
1158 @item gain, g
1159 Set the required gain or attenuation in dB.
1160 Beware of clipping when using a positive gain.
1161 @end table
1162
1163 @section highpass
1164
1165 Apply a high-pass filter with 3dB point frequency.
1166 The filter can be either single-pole, or double-pole (the default).
1167 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1168
1169 The filter accepts the following options:
1170
1171 @table @option
1172 @item frequency, f
1173 Set frequency in Hz. Default is 3000.
1174
1175 @item poles, p
1176 Set number of poles. Default is 2.
1177
1178 @item width_type
1179 Set method to specify band-width of filter.
1180 @table @option
1181 @item h
1182 Hz
1183 @item q
1184 Q-Factor
1185 @item o
1186 octave
1187 @item s
1188 slope
1189 @end table
1190
1191 @item width, w
1192 Specify the band-width of a filter in width_type units.
1193 Applies only to double-pole filter.
1194 The default is 0.707q and gives a Butterworth response.
1195 @end table
1196
1197 @section join
1198
1199 Join multiple input streams into one multi-channel stream.
1200
1201 The filter accepts the following named parameters:
1202 @table @option
1203
1204 @item inputs
1205 Number of input streams. Defaults to 2.
1206
1207 @item channel_layout
1208 Desired output channel layout. Defaults to stereo.
1209
1210 @item map
1211 Map channels from inputs to output. The argument is a '|'-separated list of
1212 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
1213 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
1214 can be either the name of the input channel (e.g. FL for front left) or its
1215 index in the specified input stream. @var{out_channel} is the name of the output
1216 channel.
1217 @end table
1218
1219 The filter will attempt to guess the mappings when those are not specified
1220 explicitly. It does so by first trying to find an unused matching input channel
1221 and if that fails it picks the first unused input channel.
1222
1223 E.g. to join 3 inputs (with properly set channel layouts)
1224 @example
1225 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
1226 @end example
1227
1228 To build a 5.1 output from 6 single-channel streams:
1229 @example
1230 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
1231 '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'
1232 out
1233 @end example
1234
1235 @section lowpass
1236
1237 Apply a low-pass filter with 3dB point frequency.
1238 The filter can be either single-pole or double-pole (the default).
1239 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1240
1241 The filter accepts the following options:
1242
1243 @table @option
1244 @item frequency, f
1245 Set frequency in Hz. Default is 500.
1246
1247 @item poles, p
1248 Set number of poles. Default is 2.
1249
1250 @item width_type
1251 Set method to specify band-width of filter.
1252 @table @option
1253 @item h
1254 Hz
1255 @item q
1256 Q-Factor
1257 @item o
1258 octave
1259 @item s
1260 slope
1261 @end table
1262
1263 @item width, w
1264 Specify the band-width of a filter in width_type units.
1265 Applies only to double-pole filter.
1266 The default is 0.707q and gives a Butterworth response.
1267 @end table
1268
1269 @section pan
1270
1271 Mix channels with specific gain levels. The filter accepts the output
1272 channel layout followed by a set of channels definitions.
1273
1274 This filter is also designed to remap efficiently the channels of an audio
1275 stream.
1276
1277 The filter accepts parameters of the form:
1278 "@var{l}:@var{outdef}:@var{outdef}:..."
1279
1280 @table @option
1281 @item l
1282 output channel layout or number of channels
1283
1284 @item outdef
1285 output channel specification, of the form:
1286 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
1287
1288 @item out_name
1289 output channel to define, either a channel name (FL, FR, etc.) or a channel
1290 number (c0, c1, etc.)
1291
1292 @item gain
1293 multiplicative coefficient for the channel, 1 leaving the volume unchanged
1294
1295 @item in_name
1296 input channel to use, see out_name for details; it is not possible to mix
1297 named and numbered input channels
1298 @end table
1299
1300 If the `=' in a channel specification is replaced by `<', then the gains for
1301 that specification will be renormalized so that the total is 1, thus
1302 avoiding clipping noise.
1303
1304 @subsection Mixing examples
1305
1306 For example, if you want to down-mix from stereo to mono, but with a bigger
1307 factor for the left channel:
1308 @example
1309 pan=1:c0=0.9*c0+0.1*c1
1310 @end example
1311
1312 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
1313 7-channels surround:
1314 @example
1315 pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
1316 @end example
1317
1318 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
1319 that should be preferred (see "-ac" option) unless you have very specific
1320 needs.
1321
1322 @subsection Remapping examples
1323
1324 The channel remapping will be effective if, and only if:
1325
1326 @itemize
1327 @item gain coefficients are zeroes or ones,
1328 @item only one input per channel output,
1329 @end itemize
1330
1331 If all these conditions are satisfied, the filter will notify the user ("Pure
1332 channel mapping detected"), and use an optimized and lossless method to do the
1333 remapping.
1334
1335 For example, if you have a 5.1 source and want a stereo audio stream by
1336 dropping the extra channels:
1337 @example
1338 pan="stereo: c0=FL : c1=FR"
1339 @end example
1340
1341 Given the same source, you can also switch front left and front right channels
1342 and keep the input channel layout:
1343 @example
1344 pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
1345 @end example
1346
1347 If the input is a stereo audio stream, you can mute the front left channel (and
1348 still keep the stereo channel layout) with:
1349 @example
1350 pan="stereo:c1=c1"
1351 @end example
1352
1353 Still with a stereo audio stream input, you can copy the right channel in both
1354 front left and right:
1355 @example
1356 pan="stereo: c0=FR : c1=FR"
1357 @end example
1358
1359 @section resample
1360
1361 Convert the audio sample format, sample rate and channel layout. This filter is
1362 not meant to be used directly.
1363
1364 @section silencedetect
1365
1366 Detect silence in an audio stream.
1367
1368 This filter logs a message when it detects that the input audio volume is less
1369 or equal to a noise tolerance value for a duration greater or equal to the
1370 minimum detected noise duration.
1371
1372 The printed times and duration are expressed in seconds.
1373
1374 The filter accepts the following options:
1375
1376 @table @option
1377 @item duration, d
1378 Set silence duration until notification (default is 2 seconds).
1379
1380 @item noise, n
1381 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
1382 specified value) or amplitude ratio. Default is -60dB, or 0.001.
1383 @end table
1384
1385 @subsection Examples
1386
1387 @itemize
1388 @item
1389 Detect 5 seconds of silence with -50dB noise tolerance:
1390 @example
1391 silencedetect=n=-50dB:d=5
1392 @end example
1393
1394 @item
1395 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
1396 tolerance in @file{silence.mp3}:
1397 @example
1398 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
1399 @end example
1400 @end itemize
1401
1402 @section treble
1403
1404 Boost or cut treble (upper) frequencies of the audio using a two-pole
1405 shelving filter with a response similar to that of a standard
1406 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1407
1408 The filter accepts the following options:
1409
1410 @table @option
1411 @item gain, g
1412 Give the gain at whichever is the lower of ~22 kHz and the
1413 Nyquist frequency. Its useful range is about -20 (for a large cut)
1414 to +20 (for a large boost). Beware of clipping when using a positive gain.
1415
1416 @item frequency, f
1417 Set the filter's central frequency and so can be used
1418 to extend or reduce the frequency range to be boosted or cut.
1419 The default value is @code{3000} Hz.
1420
1421 @item width_type
1422 Set method to specify band-width of filter.
1423 @table @option
1424 @item h
1425 Hz
1426 @item q
1427 Q-Factor
1428 @item o
1429 octave
1430 @item s
1431 slope
1432 @end table
1433
1434 @item width, w
1435 Determine how steep is the filter's shelf transition.
1436 @end table
1437
1438 @section volume
1439
1440 Adjust the input audio volume.
1441
1442 The filter accepts the following options:
1443
1444 @table @option
1445
1446 @item volume
1447 Expresses how the audio volume will be increased or decreased.
1448
1449 Output values are clipped to the maximum value.
1450
1451 The output audio volume is given by the relation:
1452 @example
1453 @var{output_volume} = @var{volume} * @var{input_volume}
1454 @end example
1455
1456 Default value for @var{volume} is 1.0.
1457
1458 @item precision
1459 Set the mathematical precision.
1460
1461 This determines which input sample formats will be allowed, which affects the
1462 precision of the volume scaling.
1463
1464 @table @option
1465 @item fixed
1466 8-bit fixed-point; limits input sample format to U8, S16, and S32.
1467 @item float
1468 32-bit floating-point; limits input sample format to FLT. (default)
1469 @item double
1470 64-bit floating-point; limits input sample format to DBL.
1471 @end table
1472 @end table
1473
1474 @subsection Examples
1475
1476 @itemize
1477 @item
1478 Halve the input audio volume:
1479 @example
1480 volume=volume=0.5
1481 volume=volume=1/2
1482 volume=volume=-6.0206dB
1483 @end example
1484
1485 In all the above example the named key for @option{volume} can be
1486 omitted, for example like in:
1487 @example
1488 volume=0.5
1489 @end example
1490
1491 @item
1492 Increase input audio power by 6 decibels using fixed-point precision:
1493 @example
1494 volume=volume=6dB:precision=fixed
1495 @end example
1496 @end itemize
1497
1498 @section volumedetect
1499
1500 Detect the volume of the input video.
1501
1502 The filter has no parameters. The input is not modified. Statistics about
1503 the volume will be printed in the log when the input stream end is reached.
1504
1505 In particular it will show the mean volume (root mean square), maximum
1506 volume (on a per-sample basis), and the beginning of an histogram of the
1507 registered volume values (from the maximum value to a cumulated 1/1000 of
1508 the samples).
1509
1510 All volumes are in decibels relative to the maximum PCM value.
1511
1512 @subsection Examples
1513
1514 Here is an excerpt of the output:
1515 @example
1516 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
1517 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
1518 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
1519 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
1520 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
1521 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
1522 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
1523 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
1524 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
1525 @end example
1526
1527 It means that:
1528 @itemize
1529 @item
1530 The mean square energy is approximately -27 dB, or 10^-2.7.
1531 @item
1532 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
1533 @item
1534 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
1535 @end itemize
1536
1537 In other words, raising the volume by +4 dB does not cause any clipping,
1538 raising it by +5 dB causes clipping for 6 samples, etc.
1539
1540 @c man end AUDIO FILTERS
1541
1542 @chapter Audio Sources
1543 @c man begin AUDIO SOURCES
1544
1545 Below is a description of the currently available audio sources.
1546
1547 @section abuffer
1548
1549 Buffer audio frames, and make them available to the filter chain.
1550
1551 This source is mainly intended for a programmatic use, in particular
1552 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
1553
1554 It accepts the following named parameters:
1555
1556 @table @option
1557
1558 @item time_base
1559 Timebase which will be used for timestamps of submitted frames. It must be
1560 either a floating-point number or in @var{numerator}/@var{denominator} form.
1561
1562 @item sample_rate
1563 The sample rate of the incoming audio buffers.
1564
1565 @item sample_fmt
1566 The sample format of the incoming audio buffers.
1567 Either a sample format name or its corresponging integer representation from
1568 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
1569
1570 @item channel_layout
1571 The channel layout of the incoming audio buffers.
1572 Either a channel layout name from channel_layout_map in
1573 @file{libavutil/channel_layout.c} or its corresponding integer representation
1574 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
1575
1576 @item channels
1577 The number of channels of the incoming audio buffers.
1578 If both @var{channels} and @var{channel_layout} are specified, then they
1579 must be consistent.
1580
1581 @end table
1582
1583 @subsection Examples
1584
1585 @example
1586 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
1587 @end example
1588
1589 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
1590 Since the sample format with name "s16p" corresponds to the number
1591 6 and the "stereo" channel layout corresponds to the value 0x3, this is
1592 equivalent to:
1593 @example
1594 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
1595 @end example
1596
1597 @section aevalsrc
1598
1599 Generate an audio signal specified by an expression.
1600
1601 This source accepts in input one or more expressions (one for each
1602 channel), which are evaluated and used to generate a corresponding
1603 audio signal.
1604
1605 This source accepts the following options:
1606
1607 @table @option
1608 @item exprs
1609 Set the '|'-separated expressions list for each separate channel. In case the
1610 @option{channel_layout} option is not specified, the selected channel layout
1611 depends on the number of provided expressions.
1612
1613 @item channel_layout, c
1614 Set the channel layout. The number of channels in the specified layout
1615 must be equal to the number of specified expressions.
1616
1617 @item duration, d
1618 Set the minimum duration of the sourced audio. See the function
1619 @code{av_parse_time()} for the accepted format.
1620 Note that the resulting duration may be greater than the specified
1621 duration, as the generated audio is always cut at the end of a
1622 complete frame.
1623
1624 If not specified, or the expressed duration is negative, the audio is
1625 supposed to be generated forever.
1626
1627 @item nb_samples, n
1628 Set the number of samples per channel per each output frame,
1629 default to 1024.
1630
1631 @item sample_rate, s
1632 Specify the sample rate, default to 44100.
1633 @end table
1634
1635 Each expression in @var{exprs} can contain the following constants:
1636
1637 @table @option
1638 @item n
1639 number of the evaluated sample, starting from 0
1640
1641 @item t
1642 time of the evaluated sample expressed in seconds, starting from 0
1643
1644 @item s
1645 sample rate
1646
1647 @end table
1648
1649 @subsection Examples
1650
1651 @itemize
1652 @item
1653 Generate silence:
1654 @example
1655 aevalsrc=0
1656 @end example
1657
1658 @item
1659 Generate a sin signal with frequency of 440 Hz, set sample rate to
1660 8000 Hz:
1661 @example
1662 aevalsrc="sin(440*2*PI*t):s=8000"
1663 @end example
1664
1665 @item
1666 Generate a two channels signal, specify the channel layout (Front
1667 Center + Back Center) explicitly:
1668 @example
1669 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
1670 @end example
1671
1672 @item
1673 Generate white noise:
1674 @example
1675 aevalsrc="-2+random(0)"
1676 @end example
1677
1678 @item
1679 Generate an amplitude modulated signal:
1680 @example
1681 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
1682 @end example
1683
1684 @item
1685 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
1686 @example
1687 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
1688 @end example
1689
1690 @end itemize
1691
1692 @section anullsrc
1693
1694 Null audio source, return unprocessed audio frames. It is mainly useful
1695 as a template and to be employed in analysis / debugging tools, or as
1696 the source for filters which ignore the input data (for example the sox
1697 synth filter).
1698
1699 This source accepts the following options:
1700
1701 @table @option
1702
1703 @item channel_layout, cl
1704
1705 Specify the channel layout, and can be either an integer or a string
1706 representing a channel layout. The default value of @var{channel_layout}
1707 is "stereo".
1708
1709 Check the channel_layout_map definition in
1710 @file{libavutil/channel_layout.c} for the mapping between strings and
1711 channel layout values.
1712
1713 @item sample_rate, r
1714 Specify the sample rate, and defaults to 44100.
1715
1716 @item nb_samples, n
1717 Set the number of samples per requested frames.
1718
1719 @end table
1720
1721 @subsection Examples
1722
1723 @itemize
1724 @item
1725 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
1726 @example
1727 anullsrc=r=48000:cl=4
1728 @end example
1729
1730 @item
1731 Do the same operation with a more obvious syntax:
1732 @example
1733 anullsrc=r=48000:cl=mono
1734 @end example
1735 @end itemize
1736
1737 All the parameters need to be explicitly defined.
1738
1739 @section flite
1740
1741 Synthesize a voice utterance using the libflite library.
1742
1743 To enable compilation of this filter you need to configure FFmpeg with
1744 @code{--enable-libflite}.
1745
1746 Note that the flite library is not thread-safe.
1747
1748 The filter accepts the following options:
1749
1750 @table @option
1751
1752 @item list_voices
1753 If set to 1, list the names of the available voices and exit
1754 immediately. Default value is 0.
1755
1756 @item nb_samples, n
1757 Set the maximum number of samples per frame. Default value is 512.
1758
1759 @item textfile
1760 Set the filename containing the text to speak.
1761
1762 @item text
1763 Set the text to speak.
1764
1765 @item voice, v
1766 Set the voice to use for the speech synthesis. Default value is
1767 @code{kal}. See also the @var{list_voices} option.
1768 @end table
1769
1770 @subsection Examples
1771
1772 @itemize
1773 @item
1774 Read from file @file{speech.txt}, and synthetize the text using the
1775 standard flite voice:
1776 @example
1777 flite=textfile=speech.txt
1778 @end example
1779
1780 @item
1781 Read the specified text selecting the @code{slt} voice:
1782 @example
1783 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1784 @end example
1785
1786 @item
1787 Input text to ffmpeg:
1788 @example
1789 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1790 @end example
1791
1792 @item
1793 Make @file{ffplay} speak the specified text, using @code{flite} and
1794 the @code{lavfi} device:
1795 @example
1796 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
1797 @end example
1798 @end itemize
1799
1800 For more information about libflite, check:
1801 @url{http://www.speech.cs.cmu.edu/flite/}
1802
1803 @section sine
1804
1805 Generate an audio signal made of a sine wave with amplitude 1/8.
1806
1807 The audio signal is bit-exact.
1808
1809 The filter accepts the following options:
1810
1811 @table @option
1812
1813 @item frequency, f
1814 Set the carrier frequency. Default is 440 Hz.
1815
1816 @item beep_factor, b
1817 Enable a periodic beep every second with frequency @var{beep_factor} times
1818 the carrier frequency. Default is 0, meaning the beep is disabled.
1819
1820 @item sample_rate, s
1821 Specify the sample rate, default is 44100.
1822
1823 @item duration, d
1824 Specify the duration of the generated audio stream.
1825
1826 @item samples_per_frame
1827 Set the number of samples per output frame, default is 1024.
1828 @end table
1829
1830 @subsection Examples
1831
1832 @itemize
1833
1834 @item
1835 Generate a simple 440 Hz sine wave:
1836 @example
1837 sine
1838 @end example
1839
1840 @item
1841 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
1842 @example
1843 sine=220:4:d=5
1844 sine=f=220:b=4:d=5
1845 sine=frequency=220:beep_factor=4:duration=5
1846 @end example
1847
1848 @end itemize
1849
1850 @c man end AUDIO SOURCES
1851
1852 @chapter Audio Sinks
1853 @c man begin AUDIO SINKS
1854
1855 Below is a description of the currently available audio sinks.
1856
1857 @section abuffersink
1858
1859 Buffer audio frames, and make them available to the end of filter chain.
1860
1861 This sink is mainly intended for programmatic use, in particular
1862 through the interface defined in @file{libavfilter/buffersink.h}
1863 or the options system.
1864
1865 It accepts a pointer to an AVABufferSinkContext structure, which
1866 defines the incoming buffers' formats, to be passed as the opaque
1867 parameter to @code{avfilter_init_filter} for initialization.
1868
1869 @section anullsink
1870
1871 Null audio sink, do absolutely nothing with the input audio. It is
1872 mainly useful as a template and to be employed in analysis / debugging
1873 tools.
1874
1875 @c man end AUDIO SINKS
1876
1877 @chapter Video Filters
1878 @c man begin VIDEO FILTERS
1879
1880 When you configure your FFmpeg build, you can disable any of the
1881 existing filters using @code{--disable-filters}.
1882 The configure output will show the video filters included in your
1883 build.
1884
1885 Below is a description of the currently available video filters.
1886
1887 @section alphaextract
1888
1889 Extract the alpha component from the input as a grayscale video. This
1890 is especially useful with the @var{alphamerge} filter.
1891
1892 @section alphamerge
1893
1894 Add or replace the alpha component of the primary input with the
1895 grayscale value of a second input. This is intended for use with
1896 @var{alphaextract} to allow the transmission or storage of frame
1897 sequences that have alpha in a format that doesn't support an alpha
1898 channel.
1899
1900 For example, to reconstruct full frames from a normal YUV-encoded video
1901 and a separate video created with @var{alphaextract}, you might use:
1902 @example
1903 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
1904 @end example
1905
1906 Since this filter is designed for reconstruction, it operates on frame
1907 sequences without considering timestamps, and terminates when either
1908 input reaches end of stream. This will cause problems if your encoding
1909 pipeline drops frames. If you're trying to apply an image as an
1910 overlay to a video stream, consider the @var{overlay} filter instead.
1911
1912 @section ass
1913
1914 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
1915 and libavformat to work. On the other hand, it is limited to ASS (Advanced
1916 Substation Alpha) subtitles files.
1917
1918 @section bbox
1919
1920 Compute the bounding box for the non-black pixels in the input frame
1921 luminance plane.
1922
1923 This filter computes the bounding box containing all the pixels with a
1924 luminance value greater than the minimum allowed value.
1925 The parameters describing the bounding box are printed on the filter
1926 log.
1927
1928 The filter accepts the following option:
1929
1930 @table @option
1931 @item min_val
1932 Set the minimal luminance value. Default is @code{16}.
1933 @end table
1934
1935 @section blackdetect
1936
1937 Detect video intervals that are (almost) completely black. Can be
1938 useful to detect chapter transitions, commercials, or invalid
1939 recordings. Output lines contains the time for the start, end and
1940 duration of the detected black interval expressed in seconds.
1941
1942 In order to display the output lines, you need to set the loglevel at
1943 least to the AV_LOG_INFO value.
1944
1945 The filter accepts the following options:
1946
1947 @table @option
1948 @item black_min_duration, d
1949 Set the minimum detected black duration expressed in seconds. It must
1950 be a non-negative floating point number.
1951
1952 Default value is 2.0.
1953
1954 @item picture_black_ratio_th, pic_th
1955 Set the threshold for considering a picture "black".
1956 Express the minimum value for the ratio:
1957 @example
1958 @var{nb_black_pixels} / @var{nb_pixels}
1959 @end example
1960
1961 for which a picture is considered black.
1962 Default value is 0.98.
1963
1964 @item pixel_black_th, pix_th
1965 Set the threshold for considering a pixel "black".
1966
1967 The threshold expresses the maximum pixel luminance value for which a
1968 pixel is considered "black". The provided value is scaled according to
1969 the following equation:
1970 @example
1971 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
1972 @end example
1973
1974 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
1975 the input video format, the range is [0-255] for YUV full-range
1976 formats and [16-235] for YUV non full-range formats.
1977
1978 Default value is 0.10.
1979 @end table
1980
1981 The following example sets the maximum pixel threshold to the minimum
1982 value, and detects only black intervals of 2 or more seconds:
1983 @example
1984 blackdetect=d=2:pix_th=0.00
1985 @end example
1986
1987 @section blackframe
1988
1989 Detect frames that are (almost) completely black. Can be useful to
1990 detect chapter transitions or commercials. Output lines consist of
1991 the frame number of the detected frame, the percentage of blackness,
1992 the position in the file if known or -1 and the timestamp in seconds.
1993
1994 In order to display the output lines, you need to set the loglevel at
1995 least to the AV_LOG_INFO value.
1996
1997 The filter accepts the following options:
1998
1999 @table @option
2000
2001 @item amount
2002 Set the percentage of the pixels that have to be below the threshold, defaults
2003 to @code{98}.
2004
2005 @item threshold, thresh
2006 Set the threshold below which a pixel value is considered black, defaults to
2007 @code{32}.
2008
2009 @end table
2010
2011 @section blend
2012
2013 Blend two video frames into each other.
2014
2015 It takes two input streams and outputs one stream, the first input is the
2016 "top" layer and second input is "bottom" layer.
2017 Output terminates when shortest input terminates.
2018
2019 A description of the accepted options follows.
2020
2021 @table @option
2022 @item c0_mode
2023 @item c1_mode
2024 @item c2_mode
2025 @item c3_mode
2026 @item all_mode
2027 Set blend mode for specific pixel component or all pixel components in case
2028 of @var{all_mode}. Default value is @code{normal}.
2029
2030 Available values for component modes are:
2031 @table @samp
2032 @item addition
2033 @item and
2034 @item average
2035 @item burn
2036 @item darken
2037 @item difference
2038 @item divide
2039 @item dodge
2040 @item exclusion
2041 @item hardlight
2042 @item lighten
2043 @item multiply
2044 @item negation
2045 @item normal
2046 @item or
2047 @item overlay
2048 @item phoenix
2049 @item pinlight
2050 @item reflect
2051 @item screen
2052 @item softlight
2053 @item subtract
2054 @item vividlight
2055 @item xor
2056 @end table
2057
2058 @item c0_opacity
2059 @item c1_opacity
2060 @item c2_opacity
2061 @item c3_opacity
2062 @item all_opacity
2063 Set blend opacity for specific pixel component or all pixel components in case
2064 of @var{all_opacity}. Only used in combination with pixel component blend modes.
2065
2066 @item c0_expr
2067 @item c1_expr
2068 @item c2_expr
2069 @item c3_expr
2070 @item all_expr
2071 Set blend expression for specific pixel component or all pixel components in case
2072 of @var{all_expr}. Note that related mode options will be ignored if those are set.
2073
2074 The expressions can use the following variables:
2075
2076 @table @option
2077 @item N
2078 The sequential number of the filtered frame, starting from @code{0}.
2079
2080 @item X
2081 @item Y
2082 the coordinates of the current sample
2083
2084 @item W
2085 @item H
2086 the width and height of currently filtered plane
2087
2088 @item SW
2089 @item SH
2090 Width and height scale depending on the currently filtered plane. It is the
2091 ratio between the corresponding luma plane number of pixels and the current
2092 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
2093 @code{0.5,0.5} for chroma planes.
2094
2095 @item T
2096 Time of the current frame, expressed in seconds.
2097
2098 @item TOP, A
2099 Value of pixel component at current location for first video frame (top layer).
2100
2101 @item BOTTOM, B
2102 Value of pixel component at current location for second video frame (bottom layer).
2103 @end table
2104 @end table
2105
2106 @subsection Examples
2107
2108 @itemize
2109 @item
2110 Apply transition from bottom layer to top layer in first 10 seconds:
2111 @example
2112 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
2113 @end example
2114
2115 @item
2116 Apply 1x1 checkerboard effect:
2117 @example
2118 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
2119 @end example
2120 @end itemize
2121
2122 @section boxblur
2123
2124 Apply boxblur algorithm to the input video.
2125
2126 The filter accepts the following options:
2127
2128 @table @option
2129
2130 @item luma_radius, lr
2131 @item luma_power, lp
2132 @item chroma_radius, cr
2133 @item chroma_power, cp
2134 @item alpha_radius, ar
2135 @item alpha_power, ap
2136
2137 @end table
2138
2139 A description of the accepted options follows.
2140
2141 @table @option
2142 @item luma_radius, lr
2143 @item chroma_radius, cr
2144 @item alpha_radius, ar
2145 Set an expression for the box radius in pixels used for blurring the
2146 corresponding input plane.
2147
2148 The radius value must be a non-negative number, and must not be
2149 greater than the value of the expression @code{min(w,h)/2} for the
2150 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
2151 planes.
2152
2153 Default value for @option{luma_radius} is "2". If not specified,
2154 @option{chroma_radius} and @option{alpha_radius} default to the
2155 corresponding value set for @option{luma_radius}.
2156
2157 The expressions can contain the following constants:
2158 @table @option
2159 @item w
2160 @item h
2161 the input width and height in pixels
2162
2163 @item cw
2164 @item ch
2165 the input chroma image width and height in pixels
2166
2167 @item hsub
2168 @item vsub
2169 horizontal and vertical chroma subsample values. For example for the
2170 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2171 @end table
2172
2173 @item luma_power, lp
2174 @item chroma_power, cp
2175 @item alpha_power, ap
2176 Specify how many times the boxblur filter is applied to the
2177 corresponding plane.
2178
2179 Default value for @option{luma_power} is 2. If not specified,
2180 @option{chroma_power} and @option{alpha_power} default to the
2181 corresponding value set for @option{luma_power}.
2182
2183 A value of 0 will disable the effect.
2184 @end table
2185
2186 @subsection Examples
2187
2188 @itemize
2189 @item
2190 Apply a boxblur filter with luma, chroma, and alpha radius
2191 set to 2:
2192 @example
2193 boxblur=luma_radius=2:luma_power=1
2194 boxblur=2:1
2195 @end example
2196
2197 @item
2198 Set luma radius to 2, alpha and chroma radius to 0:
2199 @example
2200 boxblur=2:1:cr=0:ar=0
2201 @end example
2202
2203 @item
2204 Set luma and chroma radius to a fraction of the video dimension:
2205 @example
2206 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
2207 @end example
2208 @end itemize
2209
2210 @section colorbalance
2211 Modify intensity of primary colors (red, green and blue) of input frames.
2212
2213 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
2214 regions for the red-cyan, green-magenta or blue-yellow balance.
2215
2216 A positive adjustment value shifts the balance towards the primary color, a negative
2217 value towards the complementary color.
2218
2219 The filter accepts the following options:
2220
2221 @table @option
2222 @item rs
2223 @item gs
2224 @item bs
2225 Adjust red, green and blue shadows (darkest pixels).
2226
2227 @item rm
2228 @item gm
2229 @item bm
2230 Adjust red, green and blue midtones (medium pixels).
2231
2232 @item rh
2233 @item gh
2234 @item bh
2235 Adjust red, green and blue highlights (brightest pixels).
2236
2237 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
2238 @end table
2239
2240 @subsection Examples
2241
2242 @itemize
2243 @item
2244 Add red color cast to shadows:
2245 @example
2246 colorbalance=rs=.3
2247 @end example
2248 @end itemize
2249
2250 @section colorchannelmixer
2251
2252 Adjust video input frames by re-mixing color channels.
2253
2254 This filter modifies a color channel by adding the values associated to
2255 the other channels of the same pixels. For example if the value to
2256 modify is red, the output value will be:
2257 @example
2258 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
2259 @end example
2260
2261 The filter accepts the following options:
2262
2263 @table @option
2264 @item rr
2265 @item rg
2266 @item rb
2267 @item ra
2268 Adjust contribution of input red, green, blue and alpha channels for output red channel.
2269 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
2270
2271 @item gr
2272 @item gg
2273 @item gb
2274 @item ga
2275 Adjust contribution of input red, green, blue and alpha channels for output green channel.
2276 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
2277
2278 @item br
2279 @item bg
2280 @item bb
2281 @item ba
2282 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
2283 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
2284
2285 @item ar
2286 @item ag
2287 @item ab
2288 @item aa
2289 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
2290 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
2291
2292 Allowed ranges for options are @code{[-2.0, 2.0]}.
2293 @end table
2294
2295 @subsection Examples
2296
2297 @itemize
2298 @item
2299 Convert source to grayscale:
2300 @example
2301 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
2302 @end example
2303 @end itemize
2304
2305 @section colormatrix
2306
2307 Convert color matrix.
2308
2309 The filter accepts the following options:
2310
2311 @table @option
2312 @item src
2313 @item dst
2314 Specify the source and destination color matrix. Both values must be
2315 specified.
2316
2317 The accepted values are:
2318 @table @samp
2319 @item bt709
2320 BT.709
2321
2322 @item bt601
2323 BT.601
2324
2325 @item smpte240m
2326 SMPTE-240M
2327
2328 @item fcc
2329 FCC
2330 @end table
2331 @end table
2332
2333 For example to convert from BT.601 to SMPTE-240M, use the command:
2334 @example
2335 colormatrix=bt601:smpte240m
2336 @end example
2337
2338 @section copy
2339
2340 Copy the input source unchanged to the output. Mainly useful for
2341 testing purposes.
2342
2343 @section crop
2344
2345 Crop the input video to given dimensions.
2346
2347 The filter accepts the following options:
2348
2349 @table @option
2350 @item w, out_w
2351 Width of the output video. It defaults to @code{iw}.
2352 This expression is evaluated only once during the filter
2353 configuration.
2354
2355 @item h, out_h
2356 Height of the output video. It defaults to @code{ih}.
2357 This expression is evaluated only once during the filter
2358 configuration.
2359
2360 @item x
2361 Horizontal position, in the input video, of the left edge of the output video.
2362 It defaults to @code{(in_w-out_w)/2}.
2363 This expression is evaluated per-frame.
2364
2365 @item y
2366 Vertical position, in the input video, of the top edge of the output video.
2367 It defaults to @code{(in_h-out_h)/2}.
2368 This expression is evaluated per-frame.
2369
2370 @item keep_aspect
2371 If set to 1 will force the output display aspect ratio
2372 to be the same of the input, by changing the output sample aspect
2373 ratio. It defaults to 0.
2374 @end table
2375
2376 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
2377 expressions containing the following constants:
2378
2379 @table @option
2380 @item x
2381 @item y
2382 the computed values for @var{x} and @var{y}. They are evaluated for
2383 each new frame.
2384
2385 @item in_w
2386 @item in_h
2387 the input width and height
2388
2389 @item iw
2390 @item ih
2391 same as @var{in_w} and @var{in_h}
2392
2393 @item out_w
2394 @item out_h
2395 the output (cropped) width and height
2396
2397 @item ow
2398 @item oh
2399 same as @var{out_w} and @var{out_h}
2400
2401 @item a
2402 same as @var{iw} / @var{ih}
2403
2404 @item sar
2405 input sample aspect ratio
2406
2407 @item dar
2408 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2409
2410 @item hsub
2411 @item vsub
2412 horizontal and vertical chroma subsample values. For example for the
2413 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2414
2415 @item n
2416 the number of input frame, starting from 0
2417
2418 @item pos
2419 the position in the file of the input frame, NAN if unknown
2420
2421 @item t
2422 timestamp expressed in seconds, NAN if the input timestamp is unknown
2423
2424 @end table
2425
2426 The expression for @var{out_w} may depend on the value of @var{out_h},
2427 and the expression for @var{out_h} may depend on @var{out_w}, but they
2428 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
2429 evaluated after @var{out_w} and @var{out_h}.
2430
2431 The @var{x} and @var{y} parameters specify the expressions for the
2432 position of the top-left corner of the output (non-cropped) area. They
2433 are evaluated for each frame. If the evaluated value is not valid, it
2434 is approximated to the nearest valid value.
2435
2436 The expression for @var{x} may depend on @var{y}, and the expression
2437 for @var{y} may depend on @var{x}.
2438
2439 @subsection Examples
2440
2441 @itemize
2442 @item
2443 Crop area with size 100x100 at position (12,34).
2444 @example
2445 crop=100:100:12:34
2446 @end example
2447
2448 Using named options, the example above becomes:
2449 @example
2450 crop=w=100:h=100:x=12:y=34
2451 @end example
2452
2453 @item
2454 Crop the central input area with size 100x100:
2455 @example
2456 crop=100:100
2457 @end example
2458
2459 @item
2460 Crop the central input area with size 2/3 of the input video:
2461 @example
2462 crop=2/3*in_w:2/3*in_h
2463 @end example
2464
2465 @item
2466 Crop the input video central square:
2467 @example
2468 crop=out_w=in_h
2469 crop=in_h
2470 @end example
2471
2472 @item
2473 Delimit the rectangle with the top-left corner placed at position
2474 100:100 and the right-bottom corner corresponding to the right-bottom
2475 corner of the input image:
2476 @example
2477 crop=in_w-100:in_h-100:100:100
2478 @end example
2479
2480 @item
2481 Crop 10 pixels from the left and right borders, and 20 pixels from
2482 the top and bottom borders
2483 @example
2484 crop=in_w-2*10:in_h-2*20
2485 @end example
2486
2487 @item
2488 Keep only the bottom right quarter of the input image:
2489 @example
2490 crop=in_w/2:in_h/2:in_w/2:in_h/2
2491 @end example
2492
2493 @item
2494 Crop height for getting Greek harmony:
2495 @example
2496 crop=in_w:1/PHI*in_w
2497 @end example
2498
2499 @item
2500 Appply trembling effect:
2501 @example
2502 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)
2503 @end example
2504
2505 @item
2506 Apply erratic camera effect depending on timestamp:
2507 @example
2508 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)"
2509 @end example
2510
2511 @item
2512 Set x depending on the value of y:
2513 @example
2514 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
2515 @end example
2516 @end itemize
2517
2518 @section cropdetect
2519
2520 Auto-detect crop size.
2521
2522 Calculate necessary cropping parameters and prints the recommended
2523 parameters through the logging system. The detected dimensions
2524 correspond to the non-black area of the input video.
2525
2526 The filter accepts the following options:
2527
2528 @table @option
2529
2530 @item limit
2531 Set higher black value threshold, which can be optionally specified
2532 from nothing (0) to everything (255). An intensity value greater
2533 to the set value is considered non-black. Default value is 24.
2534
2535 @item round
2536 Set the value for which the width/height should be divisible by. The
2537 offset is automatically adjusted to center the video. Use 2 to get
2538 only even dimensions (needed for 4:2:2 video). 16 is best when
2539 encoding to most video codecs. Default value is 16.
2540
2541 @item reset_count, reset
2542 Set the counter that determines after how many frames cropdetect will
2543 reset the previously detected largest video area and start over to
2544 detect the current optimal crop area. Default value is 0.
2545
2546 This can be useful when channel logos distort the video area. 0
2547 indicates never reset and return the largest area encountered during
2548 playback.
2549 @end table
2550
2551 @anchor{curves}
2552 @section curves
2553
2554 Apply color adjustments using curves.
2555
2556 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
2557 component (red, green and blue) has its values defined by @var{N} key points
2558 tied from each other using a smooth curve. The x-axis represents the pixel
2559 values from the input frame, and the y-axis the new pixel values to be set for
2560 the output frame.
2561
2562 By default, a component curve is defined by the two points @var{(0;0)} and
2563 @var{(1;1)}. This creates a straight line where each original pixel value is
2564 "adjusted" to its own value, which means no change to the image.
2565
2566 The filter allows you to redefine these two points and add some more. A new
2567 curve (using a natural cubic spline interpolation) will be define to pass
2568 smoothly through all these new coordinates. The new defined points needs to be
2569 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
2570 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
2571 the vector spaces, the values will be clipped accordingly.
2572
2573 If there is no key point defined in @code{x=0}, the filter will automatically
2574 insert a @var{(0;0)} point. In the same way, if there is no key point defined
2575 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
2576
2577 The filter accepts the following options:
2578
2579 @table @option
2580 @item preset
2581 Select one of the available color presets. This option can be used in addition
2582 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
2583 options takes priority on the preset values.
2584 Available presets are:
2585 @table @samp
2586 @item none
2587 @item color_negative
2588 @item cross_process
2589 @item darker
2590 @item increase_contrast
2591 @item lighter
2592 @item linear_contrast
2593 @item medium_contrast
2594 @item negative
2595 @item strong_contrast
2596 @item vintage
2597 @end table
2598 Default is @code{none}.
2599 @item master, m
2600 Set the master key points. These points will define a second pass mapping. It
2601 is sometimes called a "luminance" or "value" mapping. It can be used with
2602 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
2603 post-processing LUT.
2604 @item red, r
2605 Set the key points for the red component.
2606 @item green, g
2607 Set the key points for the green component.
2608 @item blue, b
2609 Set the key points for the blue component.
2610 @item all
2611 Set the key points for all components (not including master).
2612 Can be used in addition to the other key points component
2613 options. In this case, the unset component(s) will fallback on this
2614 @option{all} setting.
2615 @item psfile
2616 Specify a Photoshop curves file (@code{.asv}) to import the settings from.
2617 @end table
2618
2619 To avoid some filtergraph syntax conflicts, each key points list need to be
2620 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
2621
2622 @subsection Examples
2623
2624 @itemize
2625 @item
2626 Increase slightly the middle level of blue:
2627 @example
2628 curves=blue='0.5/0.58'
2629 @end example
2630
2631 @item
2632 Vintage effect:
2633 @example
2634 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
2635 @end example
2636 Here we obtain the following coordinates for each components:
2637 @table @var
2638 @item red
2639 @code{(0;0.11) (0.42;0.51) (1;0.95)}
2640 @item green
2641 @code{(0;0) (0.50;0.48) (1;1)}
2642 @item blue
2643 @code{(0;0.22) (0.49;0.44) (1;0.80)}
2644 @end table
2645
2646 @item
2647 The previous example can also be achieved with the associated built-in preset:
2648 @example
2649 curves=preset=vintage
2650 @end example
2651
2652 @item
2653 Or simply:
2654 @example
2655 curves=vintage
2656 @end example
2657
2658 @item
2659 Use a Photoshop preset and redefine the points of the green component:
2660 @example
2661 curves=psfile='MyCurvesPresets/purple.asv':green='0.45/0.53'
2662 @end example
2663 @end itemize
2664
2665 @section dctdnoiz
2666
2667 Denoise frames using 2D DCT (frequency domain filtering).
2668
2669 This filter is not designed for real time and can be extremely slow.
2670
2671 The filter accepts the following options:
2672
2673 @table @option
2674 @item sigma, s
2675 Set the noise sigma constant.
2676
2677 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
2678 coefficient (absolute value) below this threshold with be dropped.
2679
2680 If you need a more advanced filtering, see @option{expr}.
2681
2682 Default is @code{0}.
2683
2684 @item overlap
2685 Set number overlapping pixels for each block. Each block is of size
2686 @code{16x16}. Since the filter can be slow, you may want to reduce this value,
2687 at the cost of a less effective filter and the risk of various artefacts.
2688
2689 If the overlapping value doesn't allow to process the whole input width or
2690 height, a warning will be displayed and according borders won't be denoised.
2691
2692 Default value is @code{15}.
2693
2694 @item expr, e
2695 Set the coefficient factor expression.
2696
2697 For each coefficient of a DCT block, this expression will be evaluated as a
2698 multiplier value for the coefficient.
2699
2700 If this is option is set, the @option{sigma} option will be ignored.
2701
2702 The absolute value of the coefficient can be accessed through the @var{c}
2703 variable.
2704 @end table
2705
2706 @subsection Examples
2707
2708 Apply a denoise with a @option{sigma} of @code{4.5}:
2709 @example
2710 dctdnoiz=4.5
2711 @end example
2712
2713 The same operation can be achieved using the expression system:
2714 @example
2715 dctdnoiz=e='gte(c, 4.5*3)'
2716 @end example
2717
2718 @anchor{decimate}
2719 @section decimate
2720
2721 Drop duplicated frames at regular intervals.
2722
2723 The filter accepts the following options:
2724
2725 @table @option
2726 @item cycle
2727 Set the number of frames from which one will be dropped. Setting this to
2728 @var{N} means one frame in every batch of @var{N} frames will be dropped.
2729 Default is @code{5}.
2730
2731 @item dupthresh
2732 Set the threshold for duplicate detection. If the difference metric for a frame
2733 is less than or equal to this value, then it is declared as duplicate. Default
2734 is @code{1.1}
2735
2736 @item scthresh
2737 Set scene change threshold. Default is @code{15}.
2738
2739 @item blockx
2740 @item blocky
2741 Set the size of the x and y-axis blocks used during metric calculations.
2742 Larger blocks give better noise suppression, but also give worse detection of
2743 small movements. Must be a power of two. Default is @code{32}.
2744
2745 @item ppsrc
2746 Mark main input as a pre-processed input and activate clean source input
2747 stream. This allows the input to be pre-processed with various filters to help
2748 the metrics calculation while keeping the frame selection lossless. When set to
2749 @code{1}, the first stream is for the pre-processed input, and the second
2750 stream is the clean source from where the kept frames are chosen. Default is
2751 @code{0}.
2752
2753 @item chroma
2754 Set whether or not chroma is considered in the metric calculations. Default is
2755 @code{1}.
2756 @end table
2757
2758 @section delogo
2759
2760 Suppress a TV station logo by a simple interpolation of the surrounding
2761 pixels. Just set a rectangle covering the logo and watch it disappear
2762 (and sometimes something even uglier appear - your mileage may vary).
2763
2764 This filter accepts the following options:
2765 @table @option
2766
2767 @item x
2768 @item y
2769 Specify the top left corner coordinates of the logo. They must be
2770 specified.
2771
2772 @item w
2773 @item h
2774 Specify the width and height of the logo to clear. They must be
2775 specified.
2776
2777 @item band, t
2778 Specify the thickness of the fuzzy edge of the rectangle (added to
2779 @var{w} and @var{h}). The default value is 4.
2780
2781 @item show
2782 When set to 1, a green rectangle is drawn on the screen to simplify
2783 finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
2784 @var{band} is set to 4. The default value is 0.
2785
2786 @end table
2787
2788 @subsection Examples
2789
2790 @itemize
2791 @item
2792 Set a rectangle covering the area with top left corner coordinates 0,0
2793 and size 100x77, setting a band of size 10:
2794 @example
2795 delogo=x=0:y=0:w=100:h=77:band=10
2796 @end example
2797
2798 @end itemize
2799
2800 @section deshake
2801
2802 Attempt to fix small changes in horizontal and/or vertical shift. This
2803 filter helps remove camera shake from hand-holding a camera, bumping a
2804 tripod, moving on a vehicle, etc.
2805
2806 The filter accepts the following options:
2807
2808 @table @option
2809
2810 @item x
2811 @item y
2812 @item w
2813 @item h
2814 Specify a rectangular area where to limit the search for motion
2815 vectors.
2816 If desired the search for motion vectors can be limited to a
2817 rectangular area of the frame defined by its top left corner, width
2818 and height. These parameters have the same meaning as the drawbox
2819 filter which can be used to visualise the position of the bounding
2820 box.
2821
2822 This is useful when simultaneous movement of subjects within the frame
2823 might be confused for camera motion by the motion vector search.
2824
2825 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
2826 then the full frame is used. This allows later options to be set
2827 without specifying the bounding box for the motion vector search.
2828
2829 Default - search the whole frame.
2830
2831 @item rx
2832 @item ry
2833 Specify the maximum extent of movement in x and y directions in the
2834 range 0-64 pixels. Default 16.
2835
2836 @item edge
2837 Specify how to generate pixels to fill blanks at the edge of the
2838 frame. Available values are:
2839 @table @samp
2840 @item blank, 0
2841 Fill zeroes at blank locations
2842 @item original, 1
2843 Original image at blank locations
2844 @item clamp, 2
2845 Extruded edge value at blank locations
2846 @item mirror, 3
2847 Mirrored edge at blank locations
2848 @end table
2849 Default value is @samp{mirror}.
2850
2851 @item blocksize
2852 Specify the blocksize to use for motion search. Range 4-128 pixels,
2853 default 8.
2854
2855 @item contrast
2856 Specify the contrast threshold for blocks. Only blocks with more than
2857 the specified contrast (difference between darkest and lightest
2858 pixels) will be considered. Range 1-255, default 125.
2859
2860 @item search
2861 Specify the search strategy. Available values are:
2862 @table @samp
2863 @item exhaustive, 0
2864 Set exhaustive search
2865 @item less, 1
2866 Set less exhaustive search.
2867 @end table
2868 Default value is @samp{exhaustive}.
2869
2870 @item filename
2871 If set then a detailed log of the motion search is written to the
2872 specified file.
2873
2874 @item opencl
2875 If set to 1, specify using OpenCL capabilities, only available if
2876 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
2877
2878 @end table
2879
2880 @section drawbox
2881
2882 Draw a colored box on the input image.
2883
2884 This filter accepts the following options:
2885
2886 @table @option
2887 @item x
2888 @item y
2889 The expressions which specify the top left corner coordinates of the box. Default to 0.
2890
2891 @item width, w
2892 @item height, h
2893 The expressions which specify the width and height of the box, if 0 they are interpreted as
2894 the input width and height. Default to 0.
2895
2896 @item color, c
2897 Specify the color of the box to write, it can be the name of a color
2898 (case insensitive match) or a 0xRRGGBB[AA] sequence. If the special
2899 value @code{invert} is used, the box edge color is the same as the
2900 video with inverted luma.
2901
2902 @item thickness, t
2903 The expression which sets the thickness of the box edge. Default value is @code{3}.
2904
2905 See below for the list of accepted constants.
2906 @end table
2907
2908 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
2909 following constants:
2910
2911 @table @option
2912 @item dar
2913 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
2914
2915 @item hsub
2916 @item vsub
2917 horizontal and vertical chroma subsample values. For example for the
2918 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2919
2920 @item in_h, ih
2921 @item in_w, iw
2922 The input width and height.
2923
2924 @item sar
2925 The input sample aspect ratio.
2926
2927 @item x
2928 @item y
2929 The x and y offset coordinates where the box is drawn.
2930
2931 @item w
2932 @item h
2933 The width and height of the drawn box.
2934
2935 @item t
2936 The thickness of the drawn box.
2937
2938 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
2939 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
2940
2941 @end table
2942
2943 @subsection Examples
2944
2945 @itemize
2946 @item
2947 Draw a black box around the edge of the input image:
2948 @example
2949 drawbox
2950 @end example
2951
2952 @item
2953 Draw a box with color red and an opacity of 50%:
2954 @example
2955 drawbox=10:20:200:60:red@@0.5
2956 @end example
2957
2958 The previous example can be specified as:
2959 @example
2960 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
2961 @end example
2962
2963 @item
2964 Fill the box with pink color:
2965 @example
2966 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
2967 @end example
2968
2969 @item
2970 Draw a 2-pixel red 2.40:1 mask:
2971 @example
2972 drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
2973 @end example
2974 @end itemize
2975
2976 @section drawgrid
2977
2978 Draw a grid on the input image.
2979
2980 This filter accepts the following options:
2981
2982 @table @option
2983 @item x
2984 @item y
2985 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
2986
2987 @item width, w
2988 @item height, h
2989 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
2990 input width and height, respectively, minus @code{thickness}, so image gets
2991 framed. Default to 0.
2992
2993 @item color, c
2994 Specify the color of the grid, it can be the name of a color
2995 (case insensitive match) or a 0xRRGGBB[AA] sequence. If the special
2996 value @code{invert} is used, the grid color is the same as the
2997 video with inverted luma.
2998 Note that you can append opacity value (in range of 0.0 - 1.0)
2999 to color name after @@ sign.
3000
3001 @item thickness, t
3002 The expression which sets the thickness of the grid line. Default value is @code{1}.
3003
3004 See below for the list of accepted constants.
3005 @end table
3006
3007 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
3008 following constants:
3009
3010 @table @option
3011 @item dar
3012 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
3013
3014 @item hsub
3015 @item vsub
3016 horizontal and vertical chroma subsample values. For example for the
3017 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3018
3019 @item in_h, ih
3020 @item in_w, iw
3021 The input grid cell width and height.
3022
3023 @item sar
3024 The input sample aspect ratio.
3025
3026 @item x
3027 @item y
3028 The x and y coordinates of some point of grid intersection (meant to configure offset).
3029
3030 @item w
3031 @item h
3032 The width and height of the drawn cell.
3033
3034 @item t
3035 The thickness of the drawn cell.
3036
3037 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
3038 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
3039
3040 @end table
3041
3042 @subsection Examples
3043
3044 @itemize
3045 @item
3046 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
3047 @example
3048 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
3049 @end example
3050
3051 @item
3052 Draw a white 3x3 grid with an opacity of 50%:
3053 @example
3054 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
3055 @end example
3056 @end itemize
3057
3058 @anchor{drawtext}
3059 @section drawtext
3060
3061 Draw text string or text from specified file on top of video using the
3062 libfreetype library.
3063
3064 To enable compilation of this filter you need to configure FFmpeg with
3065 @code{--enable-libfreetype}.
3066
3067 @subsection Syntax
3068
3069 The description of the accepted parameters follows.
3070
3071 @table @option
3072
3073 @item box
3074 Used to draw a box around text using background color.
3075 Value should be either 1 (enable) or 0 (disable).
3076 The default value of @var{box} is 0.
3077
3078 @item boxcolor
3079 The color to be used for drawing box around text.
3080 Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
3081 (e.g. "0xff00ff"), possibly followed by an alpha specifier.
3082 The default value of @var{boxcolor} is "white".
3083
3084 @item draw
3085 Set an expression which specifies if the text should be drawn. If the
3086 expression evaluates to 0, the text is not drawn. This is useful for
3087 specifying that the text should be drawn only when specific conditions
3088 are met.
3089
3090 Default value is "1".
3091
3092 See below for the list of accepted constants and functions.
3093
3094 @item expansion
3095 Select how the @var{text} is expanded. Can be either @code{none},
3096 @code{strftime} (deprecated) or
3097 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
3098 below for details.
3099
3100 @item fix_bounds
3101 If true, check and fix text coords to avoid clipping.
3102
3103 @item fontcolor
3104 The color to be used for drawing fonts.
3105 Either a string (e.g. "red") or in 0xRRGGBB[AA] format
3106 (e.g. "0xff000033"), possibly followed by an alpha specifier.
3107 The default value of @var{fontcolor} is "black".
3108
3109 @item fontfile
3110 The font file to be used for drawing text. Path must be included.
3111 This parameter is mandatory.
3112
3113 @item fontsize
3114 The font size to be used for drawing text.
3115 The default value of @var{fontsize} is 16.
3116
3117 @item ft_load_flags
3118 Flags to be used for loading the fonts.
3119
3120 The flags map the corresponding flags supported by libfreetype, and are
3121 a combination of the following values:
3122 @table @var
3123 @item default
3124 @item no_scale
3125 @item no_hinting
3126 @item render
3127 @item no_bitmap
3128 @item vertical_layout
3129 @item force_autohint
3130 @item crop_bitmap
3131 @item pedantic
3132 @item ignore_global_advance_width
3133 @item no_recurse
3134 @item ignore_transform
3135 @item monochrome
3136 @item linear_design
3137 @item no_autohint
3138 @end table
3139
3140 Default value is "render".
3141
3142 For more information consult the documentation for the FT_LOAD_*
3143 libfreetype flags.
3144
3145 @item shadowcolor
3146 The color to be used for drawing a shadow behind the drawn text.  It
3147 can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
3148 form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
3149 The default value of @var{shadowcolor} is "black".
3150
3151 @item shadowx
3152 @item shadowy
3153 The x and y offsets for the text shadow position with respect to the
3154 position of the text. They can be either positive or negative
3155 values. Default value for both is "0".
3156
3157 @item start_number
3158 The starting frame number for the n/frame_num variable. The default value
3159 is "0".
3160
3161 @item tabsize
3162 The size in number of spaces to use for rendering the tab.
3163 Default value is 4.
3164
3165 @item timecode
3166 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
3167 format. It can be used with or without text parameter. @var{timecode_rate}
3168 option must be specified.
3169
3170 @item timecode_rate, rate, r
3171 Set the timecode frame rate (timecode only).
3172
3173 @item text
3174 The text string to be drawn. The text must be a sequence of UTF-8
3175 encoded characters.
3176 This parameter is mandatory if no file is specified with the parameter
3177 @var{textfile}.
3178
3179 @item textfile
3180 A text file containing text to be drawn. The text must be a sequence
3181 of UTF-8 encoded characters.
3182
3183 This parameter is mandatory if no text string is specified with the
3184 parameter @var{text}.
3185
3186 If both @var{text} and @var{textfile} are specified, an error is thrown.
3187
3188 @item reload
3189 If set to 1, the @var{textfile} will be reloaded before each frame.
3190 Be sure to update it atomically, or it may be read partially, or even fail.
3191
3192 @item x
3193 @item y
3194 The expressions which specify the offsets where text will be drawn
3195 within the video frame. They are relative to the top/left border of the
3196 output image.
3197
3198 The default value of @var{x} and @var{y} is "0".
3199
3200 See below for the list of accepted constants and functions.
3201 @end table
3202
3203 The parameters for @var{x} and @var{y} are expressions containing the
3204 following constants and functions:
3205
3206 @table @option
3207 @item dar
3208 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
3209
3210 @item hsub
3211 @item vsub
3212 horizontal and vertical chroma subsample values. For example for the
3213 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3214
3215 @item line_h, lh
3216 the height of each text line
3217
3218 @item main_h, h, H
3219 the input height
3220
3221 @item main_w, w, W
3222 the input width
3223
3224 @item max_glyph_a, ascent
3225 the maximum distance from the baseline to the highest/upper grid
3226 coordinate used to place a glyph outline point, for all the rendered
3227 glyphs.
3228 It is a positive value, due to the grid's orientation with the Y axis
3229 upwards.
3230
3231 @item max_glyph_d, descent
3232 the maximum distance from the baseline to the lowest grid coordinate
3233 used to place a glyph outline point, for all the rendered glyphs.
3234 This is a negative value, due to the grid's orientation, with the Y axis
3235 upwards.
3236
3237 @item max_glyph_h
3238 maximum glyph height, that is the maximum height for all the glyphs
3239 contained in the rendered text, it is equivalent to @var{ascent} -
3240 @var{descent}.
3241
3242 @item max_glyph_w
3243 maximum glyph width, that is the maximum width for all the glyphs
3244 contained in the rendered text
3245
3246 @item n
3247 the number of input frame, starting from 0
3248
3249 @item rand(min, max)
3250 return a random number included between @var{min} and @var{max}
3251
3252 @item sar
3253 input sample aspect ratio
3254
3255 @item t
3256 timestamp expressed in seconds, NAN if the input timestamp is unknown
3257
3258 @item text_h, th
3259 the height of the rendered text
3260
3261 @item text_w, tw
3262 the width of the rendered text
3263
3264 @item x
3265 @item y
3266 the x and y offset coordinates where the text is drawn.
3267
3268 These parameters allow the @var{x} and @var{y} expressions to refer
3269 each other, so you can for example specify @code{y=x/dar}.
3270 @end table
3271
3272 If libavfilter was built with @code{--enable-fontconfig}, then
3273 @option{fontfile} can be a fontconfig pattern or omitted.
3274
3275 @anchor{drawtext_expansion}
3276 @subsection Text expansion
3277
3278 If @option{expansion} is set to @code{strftime},
3279 the filter recognizes strftime() sequences in the provided text and
3280 expands them accordingly. Check the documentation of strftime(). This
3281 feature is deprecated.
3282
3283 If @option{expansion} is set to @code{none}, the text is printed verbatim.
3284
3285 If @option{expansion} is set to @code{normal} (which is the default),
3286 the following expansion mechanism is used.
3287
3288 The backslash character '\', followed by any character, always expands to
3289 the second character.
3290
3291 Sequence of the form @code{%@{...@}} are expanded. The text between the
3292 braces is a function name, possibly followed by arguments separated by ':'.
3293 If the arguments contain special characters or delimiters (':' or '@}'),
3294 they should be escaped.
3295
3296 Note that they probably must also be escaped as the value for the
3297 @option{text} option in the filter argument string and as the filter
3298 argument in the filtergraph description, and possibly also for the shell,
3299 that makes up to four levels of escaping; using a text file avoids these
3300 problems.
3301
3302 The following functions are available:
3303
3304 @table @command
3305
3306 @item expr, e
3307 The expression evaluation result.
3308
3309 It must take one argument specifying the expression to be evaluated,
3310 which accepts the same constants and functions as the @var{x} and
3311 @var{y} values. Note that not all constants should be used, for
3312 example the text size is not known when evaluating the expression, so
3313 the constants @var{text_w} and @var{text_h} will have an undefined
3314 value.
3315
3316 @item gmtime
3317 The time at which the filter is running, expressed in UTC.
3318 It can accept an argument: a strftime() format string.
3319
3320 @item localtime
3321 The time at which the filter is running, expressed in the local time zone.
3322 It can accept an argument: a strftime() format string.
3323
3324 @item n, frame_num
3325 The frame number, starting from 0.
3326
3327 @item pict_type
3328 A 1 character description of the current picture type.
3329
3330 @item pts
3331 The timestamp of the current frame, in seconds, with microsecond accuracy.
3332
3333 @end table
3334
3335 @subsection Examples
3336
3337 @itemize
3338 @item
3339 Draw "Test Text" with font FreeSerif, using the default values for the
3340 optional parameters.
3341
3342 @example
3343 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
3344 @end example
3345
3346 @item
3347 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
3348 and y=50 (counting from the top-left corner of the screen), text is
3349 yellow with a red box around it. Both the text and the box have an
3350 opacity of 20%.
3351
3352 @example
3353 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
3354           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
3355 @end example
3356
3357 Note that the double quotes are not necessary if spaces are not used
3358 within the parameter list.
3359
3360 @item
3361 Show the text at the center of the video frame:
3362 @example
3363 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
3364 @end example
3365
3366 @item
3367 Show a text line sliding from right to left in the last row of the video
3368 frame. The file @file{LONG_LINE} is assumed to contain a single line
3369 with no newlines.
3370 @example
3371 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
3372 @end example
3373
3374 @item
3375 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
3376 @example
3377 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
3378 @end example
3379
3380 @item
3381 Draw a single green letter "g", at the center of the input video.
3382 The glyph baseline is placed at half screen height.
3383 @example
3384 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
3385 @end example
3386
3387 @item
3388 Show text for 1 second every 3 seconds:
3389 @example
3390 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:draw=lt(mod(t\,3)\,1):text='blink'"
3391 @end example
3392
3393 @item
3394 Use fontconfig to set the font. Note that the colons need to be escaped.
3395 @example
3396 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
3397 @end example
3398
3399 @item
3400 Print the date of a real-time encoding (see strftime(3)):
3401 @example
3402 drawtext='fontfile=FreeSans.ttf:text=%@{localtime:%a %b %d %Y@}'
3403 @end example
3404
3405 @end itemize
3406
3407 For more information about libfreetype, check:
3408 @url{http://www.freetype.org/}.
3409
3410 For more information about fontconfig, check:
3411 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
3412
3413 @section edgedetect
3414
3415 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
3416
3417 The filter accepts the following options:
3418
3419 @table @option
3420 @item low
3421 @item high
3422 Set low and high threshold values used by the Canny thresholding
3423 algorithm.
3424
3425 The high threshold selects the "strong" edge pixels, which are then
3426 connected through 8-connectivity with the "weak" edge pixels selected
3427 by the low threshold.
3428
3429 @var{low} and @var{high} threshold values must be choosen in the range
3430 [0,1], and @var{low} should be lesser or equal to @var{high}.
3431
3432 Default value for @var{low} is @code{20/255}, and default value for @var{high}
3433 is @code{50/255}.
3434 @end table
3435
3436 Example:
3437 @example
3438 edgedetect=low=0.1:high=0.4
3439 @end example
3440
3441 @section extractplanes
3442
3443 Extract color channel components from input video stream into
3444 separate grayscale video streams.
3445
3446 The filter accepts the following option:
3447
3448 @table @option
3449 @item planes
3450 Set plane(s) to extract.
3451
3452 Available values for planes are:
3453 @table @samp
3454 @item y
3455 @item u
3456 @item v
3457 @item a
3458 @item r
3459 @item g
3460 @item b
3461 @end table
3462
3463 Choosing planes not available in the input will result in an error.
3464 That means you cannot select @code{r}, @code{g}, @code{b} planes
3465 with @code{y}, @code{u}, @code{v} planes at same time.
3466 @end table
3467
3468 @subsection Examples
3469
3470 @itemize
3471 @item
3472 Extract luma, u and v color channel component from input video frame
3473 into 3 grayscale outputs:
3474 @example
3475 ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi
3476 @end example
3477 @end itemize
3478
3479 @section fade
3480
3481 Apply fade-in/out effect to input video.
3482
3483 This filter accepts the following options:
3484
3485 @table @option
3486 @item type, t
3487 The effect type -- can be either "in" for fade-in, or "out" for a fade-out
3488 effect.
3489 Default is @code{in}.
3490
3491 @item start_frame, s
3492 Specify the number of the start frame for starting to apply the fade
3493 effect. Default is 0.
3494
3495 @item nb_frames, n
3496 The number of frames for which the fade effect has to last. At the end of the
3497 fade-in effect the output video will have the same intensity as the input video,
3498 at the end of the fade-out transition the output video will be completely black.
3499 Default is 25.
3500
3501 @item alpha
3502 If set to 1, fade only alpha channel, if one exists on the input.
3503 Default value is 0.
3504
3505 @item start_time, st
3506 Specify the timestamp (in seconds) of the frame to start to apply the fade
3507 effect. If both start_frame and start_time are specified, the fade will start at
3508 whichever comes last.  Default is 0.
3509
3510 @item duration, d
3511 The number of seconds for which the fade effect has to last. At the end of the
3512 fade-in effect the output video will have the same intensity as the input video,
3513 at the end of the fade-out transition the output video will be completely black.
3514 If both duration and nb_frames are specified, duration is used. Default is 0.
3515 @end table
3516
3517 @subsection Examples
3518
3519 @itemize
3520 @item
3521 Fade in first 30 frames of video:
3522 @example
3523 fade=in:0:30
3524 @end example
3525
3526 The command above is equivalent to:
3527 @example
3528 fade=t=in:s=0:n=30
3529 @end example
3530
3531 @item
3532 Fade out last 45 frames of a 200-frame video:
3533 @example
3534 fade=out:155:45
3535 fade=type=out:start_frame=155:nb_frames=45
3536 @end example
3537
3538 @item
3539 Fade in first 25 frames and fade out last 25 frames of a 1000-frame video:
3540 @example
3541 fade=in:0:25, fade=out:975:25
3542 @end example
3543
3544 @item
3545 Make first 5 frames black, then fade in from frame 5-24:
3546 @example
3547 fade=in:5:20
3548 @end example
3549
3550 @item
3551 Fade in alpha over first 25 frames of video:
3552 @example
3553 fade=in:0:25:alpha=1
3554 @end example
3555
3556 @item
3557 Make first 5.5 seconds black, then fade in for 0.5 seconds:
3558 @example
3559 fade=t=in:st=5.5:d=0.5
3560 @end example
3561
3562 @end itemize
3563
3564 @section field
3565
3566 Extract a single field from an interlaced image using stride
3567 arithmetic to avoid wasting CPU time. The output frames are marked as
3568 non-interlaced.
3569
3570 The filter accepts the following options:
3571
3572 @table @option
3573 @item type
3574 Specify whether to extract the top (if the value is @code{0} or
3575 @code{top}) or the bottom field (if the value is @code{1} or
3576 @code{bottom}).
3577 @end table
3578
3579 @section fieldmatch
3580
3581 Field matching filter for inverse telecine. It is meant to reconstruct the
3582 progressive frames from a telecined stream. The filter does not drop duplicated
3583 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
3584 followed by a decimation filter such as @ref{decimate} in the filtergraph.
3585
3586 The separation of the field matching and the decimation is notably motivated by
3587 the possibility of inserting a de-interlacing filter fallback between the two.
3588 If the source has mixed telecined and real interlaced content,
3589 @code{fieldmatch} will not be able to match fields for the interlaced parts.
3590 But these remaining combed frames will be marked as interlaced, and thus can be
3591 de-interlaced by a later filter such as @ref{yadif} before decimation.
3592
3593 In addition to the various configuration options, @code{fieldmatch} can take an
3594 optional second stream, activated through the @option{ppsrc} option. If
3595 enabled, the frames reconstruction will be based on the fields and frames from
3596 this second stream. This allows the first input to be pre-processed in order to
3597 help the various algorithms of the filter, while keeping the output lossless
3598 (assuming the fields are matched properly). Typically, a field-aware denoiser,
3599 or brightness/contrast adjustments can help.
3600
3601 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
3602 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
3603 which @code{fieldmatch} is based on. While the semantic and usage are very
3604 close, some behaviour and options names can differ.
3605
3606 The filter accepts the following options:
3607
3608 @table @option
3609 @item order
3610 Specify the assumed field order of the input stream. Available values are:
3611
3612 @table @samp
3613 @item auto
3614 Auto detect parity (use FFmpeg's internal parity value).
3615 @item bff
3616 Assume bottom field first.
3617 @item tff
3618 Assume top field first.
3619 @end table
3620
3621 Note that it is sometimes recommended not to trust the parity announced by the
3622 stream.
3623
3624 Default value is @var{auto}.
3625
3626 @item mode
3627 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
3628 sense that it won't risk creating jerkiness due to duplicate frames when
3629 possible, but if there are bad edits or blended fields it will end up
3630 outputting combed frames when a good match might actually exist. On the other
3631 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
3632 but will almost always find a good frame if there is one. The other values are
3633 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
3634 jerkiness and creating duplicate frames versus finding good matches in sections
3635 with bad edits, orphaned fields, blended fields, etc.
3636
3637 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
3638
3639 Available values are:
3640
3641 @table @samp
3642 @item pc
3643 2-way matching (p/c)
3644 @item pc_n
3645 2-way matching, and trying 3rd match if still combed (p/c + n)
3646 @item pc_u
3647 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
3648 @item pc_n_ub
3649 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
3650 still combed (p/c + n + u/b)
3651 @item pcn
3652 3-way matching (p/c/n)
3653 @item pcn_ub
3654 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
3655 detected as combed (p/c/n + u/b)
3656 @end table
3657
3658 The parenthesis at the end indicate the matches that would be used for that
3659 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
3660 @var{top}).
3661
3662 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
3663 the slowest.
3664
3665 Default value is @var{pc_n}.
3666
3667 @item ppsrc
3668 Mark the main input stream as a pre-processed input, and enable the secondary
3669 input stream as the clean source to pick the fields from. See the filter
3670 introduction for more details. It is similar to the @option{clip2} feature from
3671 VFM/TFM.
3672
3673 Default value is @code{0} (disabled).
3674
3675 @item field
3676 Set the field to match from. It is recommended to set this to the same value as
3677 @option{order} unless you experience matching failures with that setting. In
3678 certain circumstances changing the field that is used to match from can have a
3679 large impact on matching performance. Available values are:
3680
3681 @table @samp
3682 @item auto
3683 Automatic (same value as @option{order}).
3684 @item bottom
3685 Match from the bottom field.
3686 @item top
3687 Match from the top field.
3688 @end table
3689
3690 Default value is @var{auto}.
3691
3692 @item mchroma
3693 Set whether or not chroma is included during the match comparisons. In most
3694 cases it is recommended to leave this enabled. You should set this to @code{0}
3695 only if your clip has bad chroma problems such as heavy rainbowing or other
3696 artifacts. Setting this to @code{0} could also be used to speed things up at
3697 the cost of some accuracy.
3698
3699 Default value is @code{1}.
3700
3701 @item y0
3702 @item y1
3703 These define an exclusion band which excludes the lines between @option{y0} and
3704 @option{y1} from being included in the field matching decision. An exclusion
3705 band can be used to ignore subtitles, a logo, or other things that may
3706 interfere with the matching. @option{y0} sets the starting scan line and
3707 @option{y1} sets the ending line; all lines in between @option{y0} and
3708 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
3709 @option{y0} and @option{y1} to the same value will disable the feature.
3710 @option{y0} and @option{y1} defaults to @code{0}.
3711
3712 @item scthresh
3713 Set the scene change detection threshold as a percentage of maximum change on
3714 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
3715 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
3716 @option{scthresh} is @code{[0.0, 100.0]}.
3717
3718 Default value is @code{12.0}.
3719
3720 @item combmatch
3721 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
3722 account the combed scores of matches when deciding what match to use as the
3723 final match. Available values are:
3724
3725 @table @samp
3726 @item none
3727 No final matching based on combed scores.
3728 @item sc
3729 Combed scores are only used when a scene change is detected.
3730 @item full
3731 Use combed scores all the time.
3732 @end table
3733
3734 Default is @var{sc}.
3735
3736 @item combdbg
3737 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
3738 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
3739 Available values are:
3740
3741 @table @samp
3742 @item none
3743 No forced calculation.
3744 @item pcn
3745 Force p/c/n calculations.
3746 @item pcnub
3747 Force p/c/n/u/b calculations.
3748 @end table
3749
3750 Default value is @var{none}.
3751
3752 @item cthresh
3753 This is the area combing threshold used for combed frame detection. This
3754 essentially controls how "strong" or "visible" combing must be to be detected.
3755 Larger values mean combing must be more visible and smaller values mean combing
3756 can be less visible or strong and still be detected. Valid settings are from
3757 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
3758 be detected as combed). This is basically a pixel difference value. A good
3759 range is @code{[8, 12]}.
3760
3761 Default value is @code{9}.
3762
3763 @item chroma
3764 Sets whether or not chroma is considered in the combed frame decision.  Only
3765 disable this if your source has chroma problems (rainbowing, etc.) that are
3766 causing problems for the combed frame detection with chroma enabled. Actually,
3767 using @option{chroma}=@var{0} is usually more reliable, except for the case
3768 where there is chroma only combing in the source.
3769
3770 Default value is @code{0}.
3771
3772 @item blockx
3773 @item blocky
3774 Respectively set the x-axis and y-axis size of the window used during combed
3775 frame detection. This has to do with the size of the area in which
3776 @option{combpel} pixels are required to be detected as combed for a frame to be
3777 declared combed. See the @option{combpel} parameter description for more info.
3778 Possible values are any number that is a power of 2 starting at 4 and going up
3779 to 512.
3780
3781 Default value is @code{16}.
3782
3783 @item combpel
3784 The number of combed pixels inside any of the @option{blocky} by
3785 @option{blockx} size blocks on the frame for the frame to be detected as
3786 combed. While @option{cthresh} controls how "visible" the combing must be, this
3787 setting controls "how much" combing there must be in any localized area (a
3788 window defined by the @option{blockx} and @option{blocky} settings) on the
3789 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
3790 which point no frames will ever be detected as combed). This setting is known
3791 as @option{MI} in TFM/VFM vocabulary.
3792
3793 Default value is @code{80}.
3794 @end table
3795
3796 @anchor{p/c/n/u/b meaning}
3797 @subsection p/c/n/u/b meaning
3798
3799 @subsubsection p/c/n
3800
3801 We assume the following telecined stream:
3802
3803 @example
3804 Top fields:     1 2 2 3 4
3805 Bottom fields:  1 2 3 4 4
3806 @end example
3807
3808 The numbers correspond to the progressive frame the fields relate to. Here, the
3809 first two frames are progressive, the 3rd and 4th are combed, and so on.
3810
3811 When @code{fieldmatch} is configured to run a matching from bottom
3812 (@option{field}=@var{bottom}) this is how this input stream get transformed:
3813
3814 @example
3815 Input stream:
3816                 T     1 2 2 3 4
3817                 B     1 2 3 4 4   <-- matching reference
3818
3819 Matches:              c c n n c
3820
3821 Output stream:
3822                 T     1 2 3 4 4
3823                 B     1 2 3 4 4
3824 @end example
3825
3826 As a result of the field matching, we can see that some frames get duplicated.
3827 To perform a complete inverse telecine, you need to rely on a decimation filter
3828 after this operation. See for instance the @ref{decimate} filter.
3829
3830 The same operation now matching from top fields (@option{field}=@var{top})
3831 looks like this:
3832
3833 @example
3834 Input stream:
3835                 T     1 2 2 3 4   <-- matching reference
3836                 B     1 2 3 4 4
3837
3838 Matches:              c c p p c
3839
3840 Output stream:
3841                 T     1 2 2 3 4
3842                 B     1 2 2 3 4
3843 @end example
3844
3845 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
3846 basically, they refer to the frame and field of the opposite parity:
3847
3848 @itemize
3849 @item @var{p} matches the field of the opposite parity in the previous frame
3850 @item @var{c} matches the field of the opposite parity in the current frame
3851 @item @var{n} matches the field of the opposite parity in the next frame
3852 @end itemize
3853
3854 @subsubsection u/b
3855
3856 The @var{u} and @var{b} matching are a bit special in the sense that they match
3857 from the opposite parity flag. In the following examples, we assume that we are
3858 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
3859 'x' is placed above and below each matched fields.
3860
3861 With bottom matching (@option{field}=@var{bottom}):
3862 @example
3863 Match:           c         p           n          b          u
3864
3865                  x       x               x        x          x
3866   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
3867   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
3868                  x         x           x        x              x
3869
3870 Output frames:
3871                  2          1          2          2          2
3872                  2          2          2          1          3
3873 @end example
3874
3875 With top matching (@option{field}=@var{top}):
3876 @example
3877 Match:           c         p           n          b          u
3878
3879                  x         x           x        x              x
3880   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
3881   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
3882                  x       x               x        x          x
3883
3884 Output frames:
3885                  2          2          2          1          2
3886                  2          1          3          2          2
3887 @end example
3888
3889 @subsection Examples
3890
3891 Simple IVTC of a top field first telecined stream:
3892 @example
3893 fieldmatch=order=tff:combmatch=none, decimate
3894 @end example
3895
3896 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
3897 @example
3898 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
3899 @end example
3900
3901 @section fieldorder
3902
3903 Transform the field order of the input video.
3904
3905 This filter accepts the following options:
3906
3907 @table @option
3908
3909 @item order
3910 Output field order. Valid values are @var{tff} for top field first or @var{bff}
3911 for bottom field first.
3912 @end table
3913
3914 Default value is @samp{tff}.
3915
3916 Transformation is achieved by shifting the picture content up or down
3917 by one line, and filling the remaining line with appropriate picture content.
3918 This method is consistent with most broadcast field order converters.
3919
3920 If the input video is not flagged as being interlaced, or it is already
3921 flagged as being of the required output field order then this filter does
3922 not alter the incoming video.
3923
3924 This filter is very useful when converting to or from PAL DV material,
3925 which is bottom field first.
3926
3927 For example:
3928 @example
3929 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
3930 @end example
3931
3932 @section fifo
3933
3934 Buffer input images and send them when they are requested.
3935
3936 This filter is mainly useful when auto-inserted by the libavfilter
3937 framework.
3938
3939 The filter does not take parameters.
3940
3941 @anchor{format}
3942 @section format
3943
3944 Convert the input video to one of the specified pixel formats.
3945 Libavfilter will try to pick one that is supported for the input to
3946 the next filter.
3947
3948 This filter accepts the following parameters:
3949 @table @option
3950
3951 @item pix_fmts
3952 A '|'-separated list of pixel format names, for example
3953 "pix_fmts=yuv420p|monow|rgb24".
3954
3955 @end table
3956
3957 @subsection Examples
3958
3959 @itemize
3960 @item
3961 Convert the input video to the format @var{yuv420p}
3962 @example
3963 format=pix_fmts=yuv420p
3964 @end example
3965
3966 Convert the input video to any of the formats in the list
3967 @example
3968 format=pix_fmts=yuv420p|yuv444p|yuv410p
3969 @end example
3970 @end itemize
3971
3972 @section fps
3973
3974 Convert the video to specified constant frame rate by duplicating or dropping
3975 frames as necessary.
3976
3977 This filter accepts the following named parameters:
3978 @table @option
3979
3980 @item fps
3981 Desired output frame rate. The default is @code{25}.
3982
3983 @item round
3984 Rounding method.
3985
3986 Possible values are:
3987 @table @option
3988 @item zero
3989 zero round towards 0
3990 @item inf
3991 round away from 0
3992 @item down
3993 round towards -infinity
3994 @item up
3995 round towards +infinity
3996 @item near
3997 round to nearest
3998 @end table
3999 The default is @code{near}.
4000
4001 @end table
4002
4003 Alternatively, the options can be specified as a flat string:
4004 @var{fps}[:@var{round}].
4005
4006 See also the @ref{setpts} filter.
4007
4008 @subsection Examples
4009
4010 @itemize
4011 @item
4012 A typical usage in order to set the fps to 25:
4013 @example
4014 fps=fps=25
4015 @end example
4016
4017 @item
4018 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
4019 @example
4020 fps=fps=film:round=near
4021 @end example
4022 @end itemize
4023
4024 @section framestep
4025
4026 Select one frame every N-th frame.
4027
4028 This filter accepts the following option:
4029 @table @option
4030 @item step
4031 Select frame after every @code{step} frames.
4032 Allowed values are positive integers higher than 0. Default value is @code{1}.
4033 @end table
4034
4035 @anchor{frei0r}
4036 @section frei0r
4037
4038 Apply a frei0r effect to the input video.
4039
4040 To enable compilation of this filter you need to install the frei0r
4041 header and configure FFmpeg with @code{--enable-frei0r}.
4042
4043 This filter accepts the following options:
4044
4045 @table @option
4046
4047 @item filter_name
4048 The name to the frei0r effect to load. If the environment variable
4049 @env{FREI0R_PATH} is defined, the frei0r effect is searched in each one of the
4050 directories specified by the colon separated list in @env{FREIOR_PATH},
4051 otherwise in the standard frei0r paths, which are in this order:
4052 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
4053 @file{/usr/lib/frei0r-1/}.
4054
4055 @item filter_params
4056 A '|'-separated list of parameters to pass to the frei0r effect.
4057
4058 @end table
4059
4060 A frei0r effect parameter can be a boolean (whose values are specified
4061 with "y" and "n"), a double, a color (specified by the syntax
4062 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
4063 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
4064 description), a position (specified by the syntax @var{X}/@var{Y},
4065 @var{X} and @var{Y} being float numbers) and a string.
4066
4067 The number and kind of parameters depend on the loaded effect. If an
4068 effect parameter is not specified the default value is set.
4069
4070 @subsection Examples
4071
4072 @itemize
4073 @item
4074 Apply the distort0r effect, set the first two double parameters:
4075 @example
4076 frei0r=filter_name=distort0r:filter_params=0.5|0.01
4077 @end example
4078
4079 @item
4080 Apply the colordistance effect, take a color as first parameter:
4081 @example
4082 frei0r=colordistance:0.2/0.3/0.4
4083 frei0r=colordistance:violet
4084 frei0r=colordistance:0x112233
4085 @end example
4086
4087 @item
4088 Apply the perspective effect, specify the top left and top right image
4089 positions:
4090 @example
4091 frei0r=perspective:0.2/0.2|0.8/0.2
4092 @end example
4093 @end itemize
4094
4095 For more information see:
4096 @url{http://frei0r.dyne.org}
4097
4098 @section geq
4099
4100 The filter accepts the following options:
4101
4102 @table @option
4103 @item lum_expr, lum
4104 Set the luminance expression.
4105 @item cb_expr, cb
4106 Set the chrominance blue expression.
4107 @item cr_expr, cr
4108 Set the chrominance red expression.
4109 @item alpha_expr, a
4110 Set the alpha expression.
4111 @item red_expr, r
4112 Set the red expression.
4113 @item green_expr, g
4114 Set the green expression.
4115 @item blue_expr, b
4116 Set the blue expression.
4117 @end table
4118
4119 The colorspace is selected according to the specified options. If one
4120 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
4121 options is specified, the filter will automatically select a YCbCr
4122 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
4123 @option{blue_expr} options is specified, it will select an RGB
4124 colorspace.
4125
4126 If one of the chrominance expression is not defined, it falls back on the other
4127 one. If no alpha expression is specified it will evaluate to opaque value.
4128 If none of chrominance expressions are specified, they will evaluate
4129 to the luminance expression.
4130
4131 The expressions can use the following variables and functions:
4132
4133 @table @option
4134 @item N
4135 The sequential number of the filtered frame, starting from @code{0}.
4136
4137 @item X
4138 @item Y
4139 The coordinates of the current sample.
4140
4141 @item W
4142 @item H
4143 The width and height of the image.
4144
4145 @item SW
4146 @item SH
4147 Width and height scale depending on the currently filtered plane. It is the
4148 ratio between the corresponding luma plane number of pixels and the current
4149 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4150 @code{0.5,0.5} for chroma planes.
4151
4152 @item T
4153 Time of the current frame, expressed in seconds.
4154
4155 @item p(x, y)
4156 Return the value of the pixel at location (@var{x},@var{y}) of the current
4157 plane.
4158
4159 @item lum(x, y)
4160 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
4161 plane.
4162
4163 @item cb(x, y)
4164 Return the value of the pixel at location (@var{x},@var{y}) of the
4165 blue-difference chroma plane. Return 0 if there is no such plane.
4166
4167 @item cr(x, y)
4168 Return the value of the pixel at location (@var{x},@var{y}) of the
4169 red-difference chroma plane. Return 0 if there is no such plane.
4170
4171 @item r(x, y)
4172 @item g(x, y)
4173 @item b(x, y)
4174 Return the value of the pixel at location (@var{x},@var{y}) of the
4175 red/green/blue component. Return 0 if there is no such component.
4176
4177 @item alpha(x, y)
4178 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
4179 plane. Return 0 if there is no such plane.
4180 @end table
4181
4182 For functions, if @var{x} and @var{y} are outside the area, the value will be
4183 automatically clipped to the closer edge.
4184
4185 @subsection Examples
4186
4187 @itemize
4188 @item
4189 Flip the image horizontally:
4190 @example
4191 geq=p(W-X\,Y)
4192 @end example
4193
4194 @item
4195 Generate a bidimensional sine wave, with angle @code{PI/3} and a
4196 wavelength of 100 pixels:
4197 @example
4198 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
4199 @end example
4200
4201 @item
4202 Generate a fancy enigmatic moving light:
4203 @example
4204 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
4205 @end example
4206
4207 @item
4208 Generate a quick emboss effect:
4209 @example
4210 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
4211 @end example
4212
4213 @item
4214 Modify RGB components depending on pixel position:
4215 @example
4216 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
4217 @end example
4218 @end itemize
4219
4220 @section gradfun
4221
4222 Fix the banding artifacts that are sometimes introduced into nearly flat
4223 regions by truncation to 8bit color depth.
4224 Interpolate the gradients that should go where the bands are, and
4225 dither them.
4226
4227 This filter is designed for playback only.  Do not use it prior to
4228 lossy compression, because compression tends to lose the dither and
4229 bring back the bands.
4230
4231 This filter accepts the following options:
4232
4233 @table @option
4234
4235 @item strength
4236 The maximum amount by which the filter will change any one pixel. Also the
4237 threshold for detecting nearly flat regions. Acceptable values range from .51 to
4238 64, default value is 1.2, out-of-range values will be clipped to the valid
4239 range.
4240
4241 @item radius
4242 The neighborhood to fit the gradient to. A larger radius makes for smoother
4243 gradients, but also prevents the filter from modifying the pixels near detailed
4244 regions. Acceptable values are 8-32, default value is 16, out-of-range values
4245 will be clipped to the valid range.
4246
4247 @end table
4248
4249 Alternatively, the options can be specified as a flat string:
4250 @var{strength}[:@var{radius}]
4251
4252 @subsection Examples
4253
4254 @itemize
4255 @item
4256 Apply the filter with a @code{3.5} strength and radius of @code{8}:
4257 @example
4258 gradfun=3.5:8
4259 @end example
4260
4261 @item
4262 Specify radius, omitting the strength (which will fall-back to the default
4263 value):
4264 @example
4265 gradfun=radius=8
4266 @end example
4267
4268 @end itemize
4269
4270 @anchor{haldclut}
4271 @section haldclut
4272
4273 Apply a Hald CLUT to a video stream.
4274
4275 First input is the video stream to process, and second one is the Hald CLUT.
4276 The Hald CLUT input can be a simple picture or a complete video stream.
4277
4278 The filter accepts the following options:
4279
4280 @table @option
4281 @item shortest
4282 Force termination when the shortest input terminates. Default is @code{0}.
4283 @item repeatlast
4284 Continue applying the last CLUT after the end of the stream. A value of
4285 @code{0} disable the filter after the last frame of the CLUT is reached.
4286 Default is @code{1}.
4287 @end table
4288
4289 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
4290 filters share the same internals).
4291
4292 More information about the Hald CLUT can be found on Eskil Steenberg's website
4293 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
4294
4295 @subsection Workflow examples
4296
4297 @subsubsection Hald CLUT video stream
4298
4299 Generate an identity Hald CLUT stream altered with various effects:
4300 @example
4301 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "hue=H=2*PI*t:s=sin(2*PI*t)+1, curves=cross_process" -t 10 -c:v ffv1 clut.nut
4302 @end example
4303
4304 Note: make sure you use a lossless codec.
4305
4306 Then use it with @code{haldclut} to apply it on some random stream:
4307 @example
4308 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
4309 @end example
4310
4311 The Hald CLUT will be applied to the 10 first seconds (duration of
4312 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
4313 to the remaining frames of the @code{mandelbrot} stream.
4314
4315 @subsubsection Hald CLUT with preview
4316
4317 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
4318 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
4319 biggest possible square starting at the top left of the picture. The remaining
4320 padding pixels (bottom or right) will be ignored. This area can be used to add
4321 a preview of the Hald CLUT.
4322
4323 Typically, the following generated Hald CLUT will be supported by the
4324 @code{haldclut} filter:
4325
4326 @example
4327 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
4328    pad=iw+320 [padded_clut];
4329    smptebars=s=320x256, split [a][b];
4330    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
4331    [main][b] overlay=W-320" -frames:v 1 clut.png
4332 @end example
4333
4334 It contains the original and a preview of the effect of the CLUT: SMPTE color
4335 bars are displayed on the right-top, and below the same color bars processed by
4336 the color changes.
4337
4338 Then, the effect of this Hald CLUT can be visualized with:
4339 @example
4340 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
4341 @end example
4342
4343 @section hflip
4344
4345 Flip the input video horizontally.
4346
4347 For example to horizontally flip the input video with @command{ffmpeg}:
4348 @example
4349 ffmpeg -i in.avi -vf "hflip" out.avi
4350 @end example
4351
4352 @section histeq
4353 This filter applies a global color histogram equalization on a
4354 per-frame basis.
4355
4356 It can be used to correct video that has a compressed range of pixel
4357 intensities.  The filter redistributes the pixel intensities to
4358 equalize their distribution across the intensity range. It may be
4359 viewed as an "automatically adjusting contrast filter". This filter is
4360 useful only for correcting degraded or poorly captured source
4361 video.
4362
4363 The filter accepts the following options:
4364
4365 @table @option
4366 @item strength
4367 Determine the amount of equalization to be applied.  As the strength
4368 is reduced, the distribution of pixel intensities more-and-more
4369 approaches that of the input frame. The value must be a float number
4370 in the range [0,1] and defaults to 0.200.
4371
4372 @item intensity
4373 Set the maximum intensity that can generated and scale the output
4374 values appropriately.  The strength should be set as desired and then
4375 the intensity can be limited if needed to avoid washing-out. The value
4376 must be a float number in the range [0,1] and defaults to 0.210.
4377
4378 @item antibanding
4379 Set the antibanding level. If enabled the filter will randomly vary
4380 the luminance of output pixels by a small amount to avoid banding of
4381 the histogram. Possible values are @code{none}, @code{weak} or
4382 @code{strong}. It defaults to @code{none}.
4383 @end table
4384
4385 @section histogram
4386
4387 Compute and draw a color distribution histogram for the input video.
4388
4389 The computed histogram is a representation of distribution of color components
4390 in an image.
4391
4392 The filter accepts the following options:
4393
4394 @table @option
4395 @item mode
4396 Set histogram mode.
4397
4398 It accepts the following values:
4399 @table @samp
4400 @item levels
4401 standard histogram that display color components distribution in an image.
4402 Displays color graph for each color component. Shows distribution
4403 of the Y, U, V, A or G, B, R components, depending on input format,
4404 in current frame. Bellow each graph is color component scale meter.
4405
4406 @item color
4407 chroma values in vectorscope, if brighter more such chroma values are
4408 distributed in an image.
4409 Displays chroma values (U/V color placement) in two dimensional graph
4410 (which is called a vectorscope). It can be used to read of the hue and
4411 saturation of the current frame. At a same time it is a histogram.
4412 The whiter a pixel in the vectorscope, the more pixels of the input frame
4413 correspond to that pixel (that is the more pixels have this chroma value).
4414 The V component is displayed on the horizontal (X) axis, with the leftmost
4415 side being V = 0 and the rightmost side being V = 255.
4416 The U component is displayed on the vertical (Y) axis, with the top
4417 representing U = 0 and the bottom representing U = 255.
4418
4419 The position of a white pixel in the graph corresponds to the chroma value
4420 of a pixel of the input clip. So the graph can be used to read of the
4421 hue (color flavor) and the saturation (the dominance of the hue in the color).
4422 As the hue of a color changes, it moves around the square. At the center of
4423 the square, the saturation is zero, which means that the corresponding pixel
4424 has no color. If you increase the amount of a specific color, while leaving
4425 the other colors unchanged, the saturation increases, and you move towards
4426 the edge of the square.
4427
4428 @item color2
4429 chroma values in vectorscope, similar as @code{color} but actual chroma values
4430 are displayed.
4431
4432 @item waveform
4433 per row/column color component graph. In row mode graph in the left side represents
4434 color component value 0 and right side represents value = 255. In column mode top
4435 side represents color component value = 0 and bottom side represents value = 255.
4436 @end table
4437 Default value is @code{levels}.
4438
4439 @item level_height
4440 Set height of level in @code{levels}. Default value is @code{200}.
4441 Allowed range is [50, 2048].
4442
4443 @item scale_height
4444 Set height of color scale in @code{levels}. Default value is @code{12}.
4445 Allowed range is [0, 40].
4446
4447 @item step
4448 Set step for @code{waveform} mode. Smaller values are useful to find out how much
4449 of same luminance values across input rows/columns are distributed.
4450 Default value is @code{10}. Allowed range is [1, 255].
4451
4452 @item waveform_mode
4453 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
4454 Default is @code{row}.
4455
4456 @item display_mode
4457 Set display mode for @code{waveform} and @code{levels}.
4458 It accepts the following values:
4459 @table @samp
4460 @item parade
4461 Display separate graph for the color components side by side in
4462 @code{row} waveform mode or one below other in @code{column} waveform mode
4463 for @code{waveform} histogram mode. For @code{levels} histogram mode
4464 per color component graphs are placed one bellow other.
4465
4466 This display mode in @code{waveform} histogram mode makes it easy to spot
4467 color casts in the highlights and shadows of an image, by comparing the
4468 contours of the top and the bottom of each waveform.
4469 Since whites, grays, and blacks are characterized by
4470 exactly equal amounts of red, green, and blue, neutral areas of the
4471 picture should display three waveforms of roughly equal width/height.
4472 If not, the correction is easy to make by making adjustments to level the
4473 three waveforms.
4474
4475 @item overlay
4476 Presents information that's identical to that in the @code{parade}, except
4477 that the graphs representing color components are superimposed directly
4478 over one another.
4479
4480 This display mode in @code{waveform} histogram mode can make it easier to spot
4481 the relative differences or similarities in overlapping areas of the color
4482 components that are supposed to be identical, such as neutral whites, grays,
4483 or blacks.
4484 @end table
4485 Default is @code{parade}.
4486
4487 @item levels_mode
4488 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
4489 Default is @code{linear}.
4490 @end table
4491
4492 @subsection Examples
4493
4494 @itemize
4495
4496 @item
4497 Calculate and draw histogram:
4498 @example
4499 ffplay -i input -vf histogram
4500 @end example
4501
4502 @end itemize
4503
4504 @anchor{hqdn3d}
4505 @section hqdn3d
4506
4507 High precision/quality 3d denoise filter. This filter aims to reduce
4508 image noise producing smooth images and making still images really
4509 still. It should enhance compressibility.
4510
4511 It accepts the following optional parameters:
4512
4513 @table @option
4514 @item luma_spatial
4515 a non-negative float number which specifies spatial luma strength,
4516 defaults to 4.0
4517
4518 @item chroma_spatial
4519 a non-negative float number which specifies spatial chroma strength,
4520 defaults to 3.0*@var{luma_spatial}/4.0
4521
4522 @item luma_tmp
4523 a float number which specifies luma temporal strength, defaults to
4524 6.0*@var{luma_spatial}/4.0
4525
4526 @item chroma_tmp
4527 a float number which specifies chroma temporal strength, defaults to
4528 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
4529 @end table
4530
4531 @section hue
4532
4533 Modify the hue and/or the saturation of the input.
4534
4535 This filter accepts the following options:
4536
4537 @table @option
4538 @item h
4539 Specify the hue angle as a number of degrees. It accepts an expression,
4540 and defaults to "0".
4541
4542 @item s
4543 Specify the saturation in the [-10,10] range. It accepts an expression and
4544 defaults to "1".
4545
4546 @item H
4547 Specify the hue angle as a number of radians. It accepts an
4548 expression, and defaults to "0".
4549 @end table
4550
4551 @option{h} and @option{H} are mutually exclusive, and can't be
4552 specified at the same time.
4553
4554 The @option{h}, @option{H} and @option{s} option values are
4555 expressions containing the following constants:
4556
4557 @table @option
4558 @item n
4559 frame count of the input frame starting from 0
4560
4561 @item pts
4562 presentation timestamp of the input frame expressed in time base units
4563
4564 @item r
4565 frame rate of the input video, NAN if the input frame rate is unknown
4566
4567 @item t
4568 timestamp expressed in seconds, NAN if the input timestamp is unknown
4569
4570 @item tb
4571 time base of the input video
4572 @end table
4573
4574 @subsection Examples
4575
4576 @itemize
4577 @item
4578 Set the hue to 90 degrees and the saturation to 1.0:
4579 @example
4580 hue=h=90:s=1
4581 @end example
4582
4583 @item
4584 Same command but expressing the hue in radians:
4585 @example
4586 hue=H=PI/2:s=1
4587 @end example
4588
4589 @item
4590 Rotate hue and make the saturation swing between 0
4591 and 2 over a period of 1 second:
4592 @example
4593 hue="H=2*PI*t: s=sin(2*PI*t)+1"
4594 @end example
4595
4596 @item
4597 Apply a 3 seconds saturation fade-in effect starting at 0:
4598 @example
4599 hue="s=min(t/3\,1)"
4600 @end example
4601
4602 The general fade-in expression can be written as:
4603 @example
4604 hue="s=min(0\, max((t-START)/DURATION\, 1))"
4605 @end example
4606
4607 @item
4608 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
4609 @example
4610 hue="s=max(0\, min(1\, (8-t)/3))"
4611 @end example
4612
4613 The general fade-out expression can be written as:
4614 @example
4615 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
4616 @end example
4617
4618 @end itemize
4619
4620 @subsection Commands
4621
4622 This filter supports the following commands:
4623 @table @option
4624 @item s
4625 @item h
4626 @item H
4627 Modify the hue and/or the saturation of the input video.
4628 The command accepts the same syntax of the corresponding option.
4629
4630 If the specified expression is not valid, it is kept at its current
4631 value.
4632 @end table
4633
4634 @section idet
4635
4636 Detect video interlacing type.
4637
4638 This filter tries to detect if the input is interlaced or progressive,
4639 top or bottom field first.
4640
4641 The filter accepts the following options:
4642
4643 @table @option
4644 @item intl_thres
4645 Set interlacing threshold.
4646 @item prog_thres
4647 Set progressive threshold.
4648 @end table
4649
4650 @section il
4651
4652 Deinterleave or interleave fields.
4653
4654 This filter allows to process interlaced images fields without
4655 deinterlacing them. Deinterleaving splits the input frame into 2
4656 fields (so called half pictures). Odd lines are moved to the top
4657 half of the output image, even lines to the bottom half.
4658 You can process (filter) them independently and then re-interleave them.
4659
4660 The filter accepts the following options:
4661
4662 @table @option
4663 @item luma_mode, l
4664 @item chroma_mode, c
4665 @item alpha_mode, a
4666 Available values for @var{luma_mode}, @var{chroma_mode} and
4667 @var{alpha_mode} are:
4668
4669 @table @samp
4670 @item none
4671 Do nothing.
4672
4673 @item deinterleave, d
4674 Deinterleave fields, placing one above the other.
4675
4676 @item interleave, i
4677 Interleave fields. Reverse the effect of deinterleaving.
4678 @end table
4679 Default value is @code{none}.
4680
4681 @item luma_swap, ls
4682 @item chroma_swap, cs
4683 @item alpha_swap, as
4684 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
4685 @end table
4686
4687 @section interlace
4688
4689 Simple interlacing filter from progressive contents. This interleaves upper (or
4690 lower) lines from odd frames with lower (or upper) lines from even frames,
4691 halving the frame rate and preserving image height.
4692
4693 @example
4694    Original        Original             New Frame
4695    Frame 'j'      Frame 'j+1'             (tff)
4696   ==========      ===========       ==================
4697     Line 0  -------------------->    Frame 'j' Line 0
4698     Line 1          Line 1  ---->   Frame 'j+1' Line 1
4699     Line 2 --------------------->    Frame 'j' Line 2
4700     Line 3          Line 3  ---->   Frame 'j+1' Line 3
4701      ...             ...                   ...
4702 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
4703 @end example
4704
4705 It accepts the following optional parameters:
4706
4707 @table @option
4708 @item scan
4709 determines whether the interlaced frame is taken from the even (tff - default)
4710 or odd (bff) lines of the progressive frame.
4711
4712 @item lowpass
4713 Enable (default) or disable the vertical lowpass filter to avoid twitter
4714 interlacing and reduce moire patterns.
4715 @end table
4716
4717 @section kerndeint
4718
4719 Deinterlace input video by applying Donald Graft's adaptive kernel
4720 deinterling. Work on interlaced parts of a video to produce
4721 progressive frames.
4722
4723 The description of the accepted parameters follows.
4724
4725 @table @option
4726 @item thresh
4727 Set the threshold which affects the filter's tolerance when
4728 determining if a pixel line must be processed. It must be an integer
4729 in the range [0,255] and defaults to 10. A value of 0 will result in
4730 applying the process on every pixels.
4731
4732 @item map
4733 Paint pixels exceeding the threshold value to white if set to 1.
4734 Default is 0.
4735
4736 @item order
4737 Set the fields order. Swap fields if set to 1, leave fields alone if
4738 0. Default is 0.
4739
4740 @item sharp
4741 Enable additional sharpening if set to 1. Default is 0.
4742
4743 @item twoway
4744 Enable twoway sharpening if set to 1. Default is 0.
4745 @end table
4746
4747 @subsection Examples
4748
4749 @itemize
4750 @item
4751 Apply default values:
4752 @example
4753 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
4754 @end example
4755
4756 @item
4757 Enable additional sharpening:
4758 @example
4759 kerndeint=sharp=1
4760 @end example
4761
4762 @item
4763 Paint processed pixels in white:
4764 @example
4765 kerndeint=map=1
4766 @end example
4767 @end itemize
4768
4769 @anchor{lut3d}
4770 @section lut3d
4771
4772 Apply a 3D LUT to an input video.
4773
4774 The filter accepts the following options:
4775
4776 @table @option
4777 @item file
4778 Set the 3D LUT file name.
4779
4780 Currently supported formats:
4781 @table @samp
4782 @item 3dl
4783 AfterEffects
4784 @item cube
4785 Iridas
4786 @item dat
4787 DaVinci
4788 @item m3d
4789 Pandora
4790 @end table
4791 @item interp
4792 Select interpolation mode.
4793
4794 Available values are:
4795
4796 @table @samp
4797 @item nearest
4798 Use values from the nearest defined point.
4799 @item trilinear
4800 Interpolate values using the 8 points defining a cube.
4801 @item tetrahedral
4802 Interpolate values using a tetrahedron.
4803 @end table
4804 @end table
4805
4806 @section lut, lutrgb, lutyuv
4807
4808 Compute a look-up table for binding each pixel component input value
4809 to an output value, and apply it to input video.
4810
4811 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
4812 to an RGB input video.
4813
4814 These filters accept the following options:
4815 @table @option
4816 @item c0
4817 set first pixel component expression
4818 @item c1
4819 set second pixel component expression
4820 @item c2
4821 set third pixel component expression
4822 @item c3
4823 set fourth pixel component expression, corresponds to the alpha component
4824
4825 @item r
4826 set red component expression
4827 @item g
4828 set green component expression
4829 @item b
4830 set blue component expression
4831 @item a
4832 alpha component expression
4833
4834 @item y
4835 set Y/luminance component expression
4836 @item u
4837 set U/Cb component expression
4838 @item v
4839 set V/Cr component expression
4840 @end table
4841
4842 Each of them specifies the expression to use for computing the lookup table for
4843 the corresponding pixel component values.
4844
4845 The exact component associated to each of the @var{c*} options depends on the
4846 format in input.
4847
4848 The @var{lut} filter requires either YUV or RGB pixel formats in input,
4849 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
4850
4851 The expressions can contain the following constants and functions:
4852
4853 @table @option
4854 @item w
4855 @item h
4856 the input width and height
4857
4858 @item val
4859 input value for the pixel component
4860
4861 @item clipval
4862 the input value clipped in the @var{minval}-@var{maxval} range
4863
4864 @item maxval
4865 maximum value for the pixel component
4866
4867 @item minval
4868 minimum value for the pixel component
4869
4870 @item negval
4871 the negated value for the pixel component value clipped in the
4872 @var{minval}-@var{maxval} range , it corresponds to the expression
4873 "maxval-clipval+minval"
4874
4875 @item clip(val)
4876 the computed value in @var{val} clipped in the
4877 @var{minval}-@var{maxval} range
4878
4879 @item gammaval(gamma)
4880 the computed gamma correction value of the pixel component value
4881 clipped in the @var{minval}-@var{maxval} range, corresponds to the
4882 expression
4883 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
4884
4885 @end table
4886
4887 All expressions default to "val".
4888
4889 @subsection Examples
4890
4891 @itemize
4892 @item
4893 Negate input video:
4894 @example
4895 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
4896 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
4897 @end example
4898
4899 The above is the same as:
4900 @example
4901 lutrgb="r=negval:g=negval:b=negval"
4902 lutyuv="y=negval:u=negval:v=negval"
4903 @end example
4904
4905 @item
4906 Negate luminance:
4907 @example
4908 lutyuv=y=negval
4909 @end example
4910
4911 @item
4912 Remove chroma components, turns the video into a graytone image:
4913 @example
4914 lutyuv="u=128:v=128"
4915 @end example
4916
4917 @item
4918 Apply a luma burning effect:
4919 @example
4920 lutyuv="y=2*val"
4921 @end example
4922
4923 @item
4924 Remove green and blue components:
4925 @example
4926 lutrgb="g=0:b=0"
4927 @end example
4928
4929 @item
4930 Set a constant alpha channel value on input:
4931 @example
4932 format=rgba,lutrgb=a="maxval-minval/2"
4933 @end example
4934
4935 @item
4936 Correct luminance gamma by a 0.5 factor:
4937 @example
4938 lutyuv=y=gammaval(0.5)
4939 @end example
4940
4941 @item
4942 Discard least significant bits of luma:
4943 @example
4944 lutyuv=y='bitand(val, 128+64+32)'
4945 @end example
4946 @end itemize
4947
4948 @section mcdeint
4949
4950 Apply motion-compensation deinterlacing.
4951
4952 It needs one field per frame as input and must thus be used together
4953 with yadif=1/3 or equivalent.
4954
4955 This filter accepts the following options:
4956 @table @option
4957 @item mode
4958 Set the deinterlacing mode.
4959
4960 It accepts one of the following values:
4961 @table @samp
4962 @item fast
4963 @item medium
4964 @item slow
4965 use iterative motion estimation
4966 @item extra_slow
4967 like @samp{slow}, but use multiple reference frames.
4968 @end table
4969 Default value is @samp{fast}.
4970
4971 @item parity
4972 Set the picture field parity assumed for the input video. It must be
4973 one of the following values:
4974
4975 @table @samp
4976 @item 0, tff
4977 assume top field first
4978 @item 1, bff
4979 assume bottom field first
4980 @end table
4981
4982 Default value is @samp{bff}.
4983
4984 @item qp
4985 Set per-block quantization parameter (QP) used by the internal
4986 encoder.
4987
4988 Higher values should result in a smoother motion vector field but less
4989 optimal individual vectors. Default value is 1.
4990 @end table
4991
4992 @section mp
4993
4994 Apply an MPlayer filter to the input video.
4995
4996 This filter provides a wrapper around most of the filters of
4997 MPlayer/MEncoder.
4998
4999 This wrapper is considered experimental. Some of the wrapped filters
5000 may not work properly and we may drop support for them, as they will
5001 be implemented natively into FFmpeg. Thus you should avoid
5002 depending on them when writing portable scripts.
5003
5004 The filters accepts the parameters:
5005 @var{filter_name}[:=]@var{filter_params}
5006
5007 @var{filter_name} is the name of a supported MPlayer filter,
5008 @var{filter_params} is a string containing the parameters accepted by
5009 the named filter.
5010
5011 The list of the currently supported filters follows:
5012 @table @var
5013 @item dint
5014 @item eq2
5015 @item eq
5016 @item fil
5017 @item fspp
5018 @item ilpack
5019 @item perspective
5020 @item phase
5021 @item pp7
5022 @item pullup
5023 @item qp
5024 @item softpulldown
5025 @item uspp
5026 @end table
5027
5028 The parameter syntax and behavior for the listed filters are the same
5029 of the corresponding MPlayer filters. For detailed instructions check
5030 the "VIDEO FILTERS" section in the MPlayer manual.
5031
5032 @subsection Examples
5033
5034 @itemize
5035 @item
5036 Adjust gamma, brightness, contrast:
5037 @example
5038 mp=eq2=1.0:2:0.5
5039 @end example
5040 @end itemize
5041
5042 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
5043
5044 @section mpdecimate
5045
5046 Drop frames that do not differ greatly from the previous frame in
5047 order to reduce frame rate.
5048
5049 The main use of this filter is for very-low-bitrate encoding
5050 (e.g. streaming over dialup modem), but it could in theory be used for
5051 fixing movies that were inverse-telecined incorrectly.
5052
5053 A description of the accepted options follows.
5054
5055 @table @option
5056 @item max
5057 Set the maximum number of consecutive frames which can be dropped (if
5058 positive), or the minimum interval between dropped frames (if
5059 negative). If the value is 0, the frame is dropped unregarding the
5060 number of previous sequentially dropped frames.
5061
5062 Default value is 0.
5063
5064 @item hi
5065 @item lo
5066 @item frac
5067 Set the dropping threshold values.
5068
5069 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
5070 represent actual pixel value differences, so a threshold of 64
5071 corresponds to 1 unit of difference for each pixel, or the same spread
5072 out differently over the block.
5073
5074 A frame is a candidate for dropping if no 8x8 blocks differ by more
5075 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
5076 meaning the whole image) differ by more than a threshold of @option{lo}.
5077
5078 Default value for @option{hi} is 64*12, default value for @option{lo} is
5079 64*5, and default value for @option{frac} is 0.33.
5080 @end table
5081
5082
5083 @section negate
5084
5085 Negate input video.
5086
5087 This filter accepts an integer in input, if non-zero it negates the
5088 alpha component (if available). The default value in input is 0.
5089
5090 @section noformat
5091
5092 Force libavfilter not to use any of the specified pixel formats for the
5093 input to the next filter.
5094
5095 This filter accepts the following parameters:
5096 @table @option
5097
5098 @item pix_fmts
5099 A '|'-separated list of pixel format names, for example
5100 "pix_fmts=yuv420p|monow|rgb24".
5101
5102 @end table
5103
5104 @subsection Examples
5105
5106 @itemize
5107 @item
5108 Force libavfilter to use a format different from @var{yuv420p} for the
5109 input to the vflip filter:
5110 @example
5111 noformat=pix_fmts=yuv420p,vflip
5112 @end example
5113
5114 @item
5115 Convert the input video to any of the formats not contained in the list:
5116 @example
5117 noformat=yuv420p|yuv444p|yuv410p
5118 @end example
5119 @end itemize
5120
5121 @section noise
5122
5123 Add noise on video input frame.
5124
5125 The filter accepts the following options:
5126
5127 @table @option
5128 @item all_seed
5129 @item c0_seed
5130 @item c1_seed
5131 @item c2_seed
5132 @item c3_seed
5133 Set noise seed for specific pixel component or all pixel components in case
5134 of @var{all_seed}. Default value is @code{123457}.
5135
5136 @item all_strength, alls
5137 @item c0_strength, c0s
5138 @item c1_strength, c1s
5139 @item c2_strength, c2s
5140 @item c3_strength, c3s
5141 Set noise strength for specific pixel component or all pixel components in case
5142 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
5143
5144 @item all_flags, allf
5145 @item c0_flags, c0f
5146 @item c1_flags, c1f
5147 @item c2_flags, c2f
5148 @item c3_flags, c3f
5149 Set pixel component flags or set flags for all components if @var{all_flags}.
5150 Available values for component flags are:
5151 @table @samp
5152 @item a
5153 averaged temporal noise (smoother)
5154 @item p
5155 mix random noise with a (semi)regular pattern
5156 @item t
5157 temporal noise (noise pattern changes between frames)
5158 @item u
5159 uniform noise (gaussian otherwise)
5160 @end table
5161 @end table
5162
5163 @subsection Examples
5164
5165 Add temporal and uniform noise to input video:
5166 @example
5167 noise=alls=20:allf=t+u
5168 @end example
5169
5170 @section null
5171
5172 Pass the video source unchanged to the output.
5173
5174 @section ocv
5175
5176 Apply video transform using libopencv.
5177
5178 To enable this filter install libopencv library and headers and
5179 configure FFmpeg with @code{--enable-libopencv}.
5180
5181 This filter accepts the following parameters:
5182
5183 @table @option
5184
5185 @item filter_name
5186 The name of the libopencv filter to apply.
5187
5188 @item filter_params
5189 The parameters to pass to the libopencv filter. If not specified the default
5190 values are assumed.
5191
5192 @end table
5193
5194 Refer to the official libopencv documentation for more precise
5195 information:
5196 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
5197
5198 Follows the list of supported libopencv filters.
5199
5200 @anchor{dilate}
5201 @subsection dilate
5202
5203 Dilate an image by using a specific structuring element.
5204 This filter corresponds to the libopencv function @code{cvDilate}.
5205
5206 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
5207
5208 @var{struct_el} represents a structuring element, and has the syntax:
5209 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
5210
5211 @var{cols} and @var{rows} represent the number of columns and rows of
5212 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
5213 point, and @var{shape} the shape for the structuring element, and
5214 can be one of the values "rect", "cross", "ellipse", "custom".
5215
5216 If the value for @var{shape} is "custom", it must be followed by a
5217 string of the form "=@var{filename}". The file with name
5218 @var{filename} is assumed to represent a binary image, with each
5219 printable character corresponding to a bright pixel. When a custom
5220 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
5221 or columns and rows of the read file are assumed instead.
5222
5223 The default value for @var{struct_el} is "3x3+0x0/rect".
5224
5225 @var{nb_iterations} specifies the number of times the transform is
5226 applied to the image, and defaults to 1.
5227
5228 Follow some example:
5229 @example
5230 # use the default values
5231 ocv=dilate
5232
5233 # dilate using a structuring element with a 5x5 cross, iterate two times
5234 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
5235
5236 # read the shape from the file diamond.shape, iterate two times
5237 # the file diamond.shape may contain a pattern of characters like this:
5238 #   *
5239 #  ***
5240 # *****
5241 #  ***
5242 #   *
5243 # the specified cols and rows are ignored (but not the anchor point coordinates)
5244 ocv=dilate:0x0+2x2/custom=diamond.shape|2
5245 @end example
5246
5247 @subsection erode
5248
5249 Erode an image by using a specific structuring element.
5250 This filter corresponds to the libopencv function @code{cvErode}.
5251
5252 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
5253 with the same syntax and semantics as the @ref{dilate} filter.
5254
5255 @subsection smooth
5256
5257 Smooth the input video.
5258
5259 The filter takes the following parameters:
5260 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
5261
5262 @var{type} is the type of smooth filter to apply, and can be one of
5263 the following values: "blur", "blur_no_scale", "median", "gaussian",
5264 "bilateral". The default value is "gaussian".
5265
5266 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
5267 parameters whose meanings depend on smooth type. @var{param1} and
5268 @var{param2} accept integer positive values or 0, @var{param3} and
5269 @var{param4} accept float values.
5270
5271 The default value for @var{param1} is 3, the default value for the
5272 other parameters is 0.
5273
5274 These parameters correspond to the parameters assigned to the
5275 libopencv function @code{cvSmooth}.
5276
5277 @anchor{overlay}
5278 @section overlay
5279
5280 Overlay one video on top of another.
5281
5282 It takes two inputs and one output, the first input is the "main"
5283 video on which the second input is overlayed.
5284
5285 This filter accepts the following parameters:
5286
5287 A description of the accepted options follows.
5288
5289 @table @option
5290 @item x
5291 @item y
5292 Set the expression for the x and y coordinates of the overlayed video
5293 on the main video. Default value is "0" for both expressions. In case
5294 the expression is invalid, it is set to a huge value (meaning that the
5295 overlay will not be displayed within the output visible area).
5296
5297 @item eval
5298 Set when the expressions for @option{x}, and @option{y} are evaluated.
5299
5300 It accepts the following values:
5301 @table @samp
5302 @item init
5303 only evaluate expressions once during the filter initialization or
5304 when a command is processed
5305
5306 @item frame
5307 evaluate expressions for each incoming frame
5308 @end table
5309
5310 Default value is @samp{frame}.
5311
5312 @item shortest
5313 If set to 1, force the output to terminate when the shortest input
5314 terminates. Default value is 0.
5315
5316 @item format
5317 Set the format for the output video.
5318
5319 It accepts the following values:
5320 @table @samp
5321 @item yuv420
5322 force YUV420 output
5323
5324 @item yuv444
5325 force YUV444 output
5326
5327 @item rgb
5328 force RGB output
5329 @end table
5330
5331 Default value is @samp{yuv420}.
5332
5333 @item rgb @emph{(deprecated)}
5334 If set to 1, force the filter to accept inputs in the RGB
5335 color space. Default value is 0. This option is deprecated, use
5336 @option{format} instead.
5337
5338 @item repeatlast
5339 If set to 1, force the filter to draw the last overlay frame over the
5340 main input until the end of the stream. A value of 0 disables this
5341 behavior, which is enabled by default.
5342 @end table
5343
5344 The @option{x}, and @option{y} expressions can contain the following
5345 parameters.
5346
5347 @table @option
5348 @item main_w, W
5349 @item main_h, H
5350 main input width and height
5351
5352 @item overlay_w, w
5353 @item overlay_h, h
5354 overlay input width and height
5355
5356 @item x
5357 @item y
5358 the computed values for @var{x} and @var{y}. They are evaluated for
5359 each new frame.
5360
5361 @item hsub
5362 @item vsub
5363 horizontal and vertical chroma subsample values of the output
5364 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
5365 @var{vsub} is 1.
5366
5367 @item n
5368 the number of input frame, starting from 0
5369
5370 @item pos
5371 the position in the file of the input frame, NAN if unknown
5372
5373 @item t
5374 timestamp expressed in seconds, NAN if the input timestamp is unknown
5375 @end table
5376
5377 Note that the @var{n}, @var{pos}, @var{t} variables are available only
5378 when evaluation is done @emph{per frame}, and will evaluate to NAN
5379 when @option{eval} is set to @samp{init}.
5380
5381 Be aware that frames are taken from each input video in timestamp
5382 order, hence, if their initial timestamps differ, it is a a good idea
5383 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
5384 have them begin in the same zero timestamp, as it does the example for
5385 the @var{movie} filter.
5386
5387 You can chain together more overlays but you should test the
5388 efficiency of such approach.
5389
5390 @subsection Commands
5391
5392 This filter supports the following commands:
5393 @table @option
5394 @item x
5395 @item y
5396 Modify the x and y of the overlay input.
5397 The command accepts the same syntax of the corresponding option.
5398
5399 If the specified expression is not valid, it is kept at its current
5400 value.
5401 @end table
5402
5403 @subsection Examples
5404
5405 @itemize
5406 @item
5407 Draw the overlay at 10 pixels from the bottom right corner of the main
5408 video:
5409 @example
5410 overlay=main_w-overlay_w-10:main_h-overlay_h-10
5411 @end example
5412
5413 Using named options the example above becomes:
5414 @example
5415 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
5416 @end example
5417
5418 @item
5419 Insert a transparent PNG logo in the bottom left corner of the input,
5420 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
5421 @example
5422 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
5423 @end example
5424
5425 @item
5426 Insert 2 different transparent PNG logos (second logo on bottom
5427 right corner) using the @command{ffmpeg} tool:
5428 @example
5429 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
5430 @end example
5431
5432 @item
5433 Add a transparent color layer on top of the main video, @code{WxH}
5434 must specify the size of the main input to the overlay filter:
5435 @example
5436 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
5437 @end example
5438
5439 @item
5440 Play an original video and a filtered version (here with the deshake
5441 filter) side by side using the @command{ffplay} tool:
5442 @example
5443 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
5444 @end example
5445
5446 The above command is the same as:
5447 @example
5448 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
5449 @end example
5450
5451 @item
5452 Make a sliding overlay appearing from the left to the right top part of the
5453 screen starting since time 2:
5454 @example
5455 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
5456 @end example
5457
5458 @item
5459 Compose output by putting two input videos side to side:
5460 @example
5461 ffmpeg -i left.avi -i right.avi -filter_complex "
5462 nullsrc=size=200x100 [background];
5463 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
5464 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
5465 [background][left]       overlay=shortest=1       [background+left];
5466 [background+left][right] overlay=shortest=1:x=100 [left+right]
5467 "
5468 @end example
5469
5470 @item
5471 Chain several overlays in cascade:
5472 @example
5473 nullsrc=s=200x200 [bg];
5474 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
5475 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
5476 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
5477 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
5478 [in3] null,       [mid2] overlay=100:100 [out0]
5479 @end example
5480
5481 @end itemize
5482
5483 @section owdenoise
5484
5485 Apply Overcomplete Wavelet denoiser.
5486
5487 The filter accepts the following options:
5488
5489 @table @option
5490 @item depth
5491 Set depth.
5492
5493 Larger depth values will denoise lower frequency components more, but
5494 slow down filtering.
5495
5496 Must be an int in the range 8-16, default is @code{8}.
5497
5498 @item luma_strength, ls
5499 Set luma strength.
5500
5501 Must be a double value in the range 0-1000, default is @code{1.0}.
5502
5503 @item chroma_strength, cs
5504 Set chroma strength.
5505
5506 Must be a double value in the range 0-1000, default is @code{1.0}.
5507 @end table
5508
5509 @section pad
5510
5511 Add paddings to the input image, and place the original input at the
5512 given coordinates @var{x}, @var{y}.
5513
5514 This filter accepts the following parameters:
5515
5516 @table @option
5517 @item width, w
5518 @item height, h
5519 Specify an expression for the size of the output image with the
5520 paddings added. If the value for @var{width} or @var{height} is 0, the
5521 corresponding input size is used for the output.
5522
5523 The @var{width} expression can reference the value set by the
5524 @var{height} expression, and vice versa.
5525
5526 The default value of @var{width} and @var{height} is 0.
5527
5528 @item x
5529 @item y
5530 Specify an expression for the offsets where to place the input image
5531 in the padded area with respect to the top/left border of the output
5532 image.
5533
5534 The @var{x} expression can reference the value set by the @var{y}
5535 expression, and vice versa.
5536
5537 The default value of @var{x} and @var{y} is 0.
5538
5539 @item color
5540 Specify the color of the padded area, it can be the name of a color
5541 (case insensitive match) or a 0xRRGGBB[AA] sequence.
5542
5543 The default value of @var{color} is "black".
5544 @end table
5545
5546 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
5547 options are expressions containing the following constants:
5548
5549 @table @option
5550 @item in_w
5551 @item in_h
5552 the input video width and height
5553
5554 @item iw
5555 @item ih
5556 same as @var{in_w} and @var{in_h}
5557
5558 @item out_w
5559 @item out_h
5560 the output width and height, that is the size of the padded area as
5561 specified by the @var{width} and @var{height} expressions
5562
5563 @item ow
5564 @item oh
5565 same as @var{out_w} and @var{out_h}
5566
5567 @item x
5568 @item y
5569 x and y offsets as specified by the @var{x} and @var{y}
5570 expressions, or NAN if not yet specified
5571
5572 @item a
5573 same as @var{iw} / @var{ih}
5574
5575 @item sar
5576 input sample aspect ratio
5577
5578 @item dar
5579 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5580
5581 @item hsub
5582 @item vsub
5583 horizontal and vertical chroma subsample values. For example for the
5584 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5585 @end table
5586
5587 @subsection Examples
5588
5589 @itemize
5590 @item
5591 Add paddings with color "violet" to the input video. Output video
5592 size is 640x480, the top-left corner of the input video is placed at
5593 column 0, row 40:
5594 @example
5595 pad=640:480:0:40:violet
5596 @end example
5597
5598 The example above is equivalent to the following command:
5599 @example
5600 pad=width=640:height=480:x=0:y=40:color=violet
5601 @end example
5602
5603 @item
5604 Pad the input to get an output with dimensions increased by 3/2,
5605 and put the input video at the center of the padded area:
5606 @example
5607 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
5608 @end example
5609
5610 @item
5611 Pad the input to get a squared output with size equal to the maximum
5612 value between the input width and height, and put the input video at
5613 the center of the padded area:
5614 @example
5615 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
5616 @end example
5617
5618 @item
5619 Pad the input to get a final w/h ratio of 16:9:
5620 @example
5621 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
5622 @end example
5623
5624 @item
5625 In case of anamorphic video, in order to set the output display aspect
5626 correctly, it is necessary to use @var{sar} in the expression,
5627 according to the relation:
5628 @example
5629 (ih * X / ih) * sar = output_dar
5630 X = output_dar / sar
5631 @end example
5632
5633 Thus the previous example needs to be modified to:
5634 @example
5635 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
5636 @end example
5637
5638 @item
5639 Double output size and put the input video in the bottom-right
5640 corner of the output padded area:
5641 @example
5642 pad="2*iw:2*ih:ow-iw:oh-ih"
5643 @end example
5644 @end itemize
5645
5646 @section pixdesctest
5647
5648 Pixel format descriptor test filter, mainly useful for internal
5649 testing. The output video should be equal to the input video.
5650
5651 For example:
5652 @example
5653 format=monow, pixdesctest
5654 @end example
5655
5656 can be used to test the monowhite pixel format descriptor definition.
5657
5658 @section pp
5659
5660 Enable the specified chain of postprocessing subfilters using libpostproc. This
5661 library should be automatically selected with a GPL build (@code{--enable-gpl}).
5662 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
5663 Each subfilter and some options have a short and a long name that can be used
5664 interchangeably, i.e. dr/dering are the same.
5665
5666 The filters accept the following options:
5667
5668 @table @option
5669 @item subfilters
5670 Set postprocessing subfilters string.
5671 @end table
5672
5673 All subfilters share common options to determine their scope:
5674
5675 @table @option
5676 @item a/autoq
5677 Honor the quality commands for this subfilter.
5678
5679 @item c/chrom
5680 Do chrominance filtering, too (default).
5681
5682 @item y/nochrom
5683 Do luminance filtering only (no chrominance).
5684
5685 @item n/noluma
5686 Do chrominance filtering only (no luminance).
5687 @end table
5688
5689 These options can be appended after the subfilter name, separated by a '|'.
5690
5691 Available subfilters are:
5692
5693 @table @option
5694 @item hb/hdeblock[|difference[|flatness]]
5695 Horizontal deblocking filter
5696 @table @option
5697 @item difference
5698 Difference factor where higher values mean more deblocking (default: @code{32}).
5699 @item flatness
5700 Flatness threshold where lower values mean more deblocking (default: @code{39}).
5701 @end table
5702
5703 @item vb/vdeblock[|difference[|flatness]]
5704 Vertical deblocking filter
5705 @table @option
5706 @item difference
5707 Difference factor where higher values mean more deblocking (default: @code{32}).
5708 @item flatness
5709 Flatness threshold where lower values mean more deblocking (default: @code{39}).
5710 @end table
5711
5712 @item ha/hadeblock[|difference[|flatness]]
5713 Accurate horizontal deblocking filter
5714 @table @option
5715 @item difference
5716 Difference factor where higher values mean more deblocking (default: @code{32}).
5717 @item flatness
5718 Flatness threshold where lower values mean more deblocking (default: @code{39}).
5719 @end table
5720
5721 @item va/vadeblock[|difference[|flatness]]
5722 Accurate vertical deblocking filter
5723 @table @option
5724 @item difference
5725 Difference factor where higher values mean more deblocking (default: @code{32}).
5726 @item flatness
5727 Flatness threshold where lower values mean more deblocking (default: @code{39}).
5728 @end table
5729 @end table
5730
5731 The horizontal and vertical deblocking filters share the difference and
5732 flatness values so you cannot set different horizontal and vertical
5733 thresholds.
5734
5735 @table @option
5736 @item h1/x1hdeblock
5737 Experimental horizontal deblocking filter
5738
5739 @item v1/x1vdeblock
5740 Experimental vertical deblocking filter
5741
5742 @item dr/dering
5743 Deringing filter
5744
5745 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
5746 @table @option
5747 @item threshold1
5748 larger -> stronger filtering
5749 @item threshold2
5750 larger -> stronger filtering
5751 @item threshold3
5752 larger -> stronger filtering
5753 @end table
5754
5755 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
5756 @table @option
5757 @item f/fullyrange
5758 Stretch luminance to @code{0-255}.
5759 @end table
5760
5761 @item lb/linblenddeint
5762 Linear blend deinterlacing filter that deinterlaces the given block by
5763 filtering all lines with a @code{(1 2 1)} filter.
5764
5765 @item li/linipoldeint
5766 Linear interpolating deinterlacing filter that deinterlaces the given block by
5767 linearly interpolating every second line.
5768
5769 @item ci/cubicipoldeint
5770 Cubic interpolating deinterlacing filter deinterlaces the given block by
5771 cubically interpolating every second line.
5772
5773 @item md/mediandeint
5774 Median deinterlacing filter that deinterlaces the given block by applying a
5775 median filter to every second line.
5776
5777 @item fd/ffmpegdeint
5778 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
5779 second line with a @code{(-1 4 2 4 -1)} filter.
5780
5781 @item l5/lowpass5
5782 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
5783 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
5784
5785 @item fq/forceQuant[|quantizer]
5786 Overrides the quantizer table from the input with the constant quantizer you
5787 specify.
5788 @table @option
5789 @item quantizer
5790 Quantizer to use
5791 @end table
5792
5793 @item de/default
5794 Default pp filter combination (@code{hb|a,vb|a,dr|a})
5795
5796 @item fa/fast
5797 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
5798
5799 @item ac
5800 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
5801 @end table
5802
5803 @subsection Examples
5804
5805 @itemize
5806 @item
5807 Apply horizontal and vertical deblocking, deringing and automatic
5808 brightness/contrast:
5809 @example
5810 pp=hb/vb/dr/al
5811 @end example
5812
5813 @item
5814 Apply default filters without brightness/contrast correction:
5815 @example
5816 pp=de/-al
5817 @end example
5818
5819 @item
5820 Apply default filters and temporal denoiser:
5821 @example
5822 pp=default/tmpnoise|1|2|3
5823 @end example
5824
5825 @item
5826 Apply deblocking on luminance only, and switch vertical deblocking on or off
5827 automatically depending on available CPU time:
5828 @example
5829 pp=hb|y/vb|a
5830 @end example
5831 @end itemize
5832
5833 @section removelogo
5834
5835 Suppress a TV station logo, using an image file to determine which
5836 pixels comprise the logo. It works by filling in the pixels that
5837 comprise the logo with neighboring pixels.
5838
5839 The filter accepts the following options:
5840
5841 @table @option
5842 @item filename, f
5843 Set the filter bitmap file, which can be any image format supported by
5844 libavformat. The width and height of the image file must match those of the
5845 video stream being processed.
5846 @end table
5847
5848 Pixels in the provided bitmap image with a value of zero are not
5849 considered part of the logo, non-zero pixels are considered part of
5850 the logo. If you use white (255) for the logo and black (0) for the
5851 rest, you will be safe. For making the filter bitmap, it is
5852 recommended to take a screen capture of a black frame with the logo
5853 visible, and then using a threshold filter followed by the erode
5854 filter once or twice.
5855
5856 If needed, little splotches can be fixed manually. Remember that if
5857 logo pixels are not covered, the filter quality will be much
5858 reduced. Marking too many pixels as part of the logo does not hurt as
5859 much, but it will increase the amount of blurring needed to cover over
5860 the image and will destroy more information than necessary, and extra
5861 pixels will slow things down on a large logo.
5862
5863 @section rotate
5864
5865 Rotate video by an arbitrary angle expressed in radians.
5866
5867 The filter accepts the following options:
5868
5869 A description of the optional parameters follows.
5870 @table @option
5871 @item angle, a
5872 Set an expression for the angle by which to rotate the input video
5873 clockwise, expressed as a number of radians. A negative value will
5874 result in a counter-clockwise rotation. By default it is set to "0".
5875
5876 This expression is evaluated for each frame.
5877
5878 @item out_w, ow
5879 Set the output width expression, default value is "iw".
5880 This expression is evaluated just once during configuration.
5881
5882 @item out_h, oh
5883 Set the output height expression, default value is "ih".
5884 This expression is evaluated just once during configuration.
5885
5886 @item bilinear
5887 Enable bilinear interpolation if set to 1, a value of 0 disables
5888 it. Default value is 1.
5889
5890 @item fillcolor, c
5891 Set the color used to fill the output area not covered by the rotated
5892 image. If the special value "none" is selected then no background is
5893 printed (useful for example if the background is never shown). Default
5894 value is "black".
5895 @end table
5896
5897 The expressions for the angle and the output size can contain the
5898 following constants and functions:
5899
5900 @table @option
5901 @item n
5902 sequential number of the input frame, starting from 0. It is always NAN
5903 before the first frame is filtered.
5904
5905 @item t
5906 time in seconds of the input frame, it is set to 0 when the filter is
5907 configured. It is always NAN before the first frame is filtered.
5908
5909 @item hsub
5910 @item vsub
5911 horizontal and vertical chroma subsample values. For example for the
5912 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5913
5914 @item in_w, iw
5915 @item in_h, ih
5916 the input video width and heigth
5917
5918 @item out_w, ow
5919 @item out_h, oh
5920 the output width and heigth, that is the size of the padded area as
5921 specified by the @var{width} and @var{height} expressions
5922
5923 @item rotw(a)
5924 @item roth(a)
5925 the minimal width/height required for completely containing the input
5926 video rotated by @var{a} radians.
5927
5928 These are only available when computing the @option{out_w} and
5929 @option{out_h} expressions.
5930 @end table
5931
5932 @subsection Examples
5933
5934 @itemize
5935 @item
5936 Rotate the input by PI/6 radians clockwise:
5937 @example
5938 rotate=PI/6
5939 @end example
5940
5941 @item
5942 Rotate the input by PI/6 radians counter-clockwise:
5943 @example
5944 rotate=-PI/6
5945 @end example
5946
5947 @item
5948 Apply a constant rotation with period T, starting from an angle of PI/3:
5949 @example
5950 rotate=PI/3+2*PI*t/T
5951 @end example
5952
5953 @item
5954 Make the input video rotation oscillating with a period of T
5955 seconds and an amplitude of A radians:
5956 @example
5957 rotate=A*sin(2*PI/T*t)
5958 @end example
5959
5960 @item
5961 Rotate the video, output size is choosen so that the whole rotating
5962 input video is always completely contained in the output:
5963 @example
5964 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
5965 @end example
5966
5967 @item
5968 Rotate the video, reduce the output size so that no background is ever
5969 shown:
5970 @example
5971 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
5972 @end example
5973 @end itemize
5974
5975 @subsection Commands
5976
5977 The filter supports the following commands:
5978
5979 @table @option
5980 @item a, angle
5981 Set the angle expression.
5982 The command accepts the same syntax of the corresponding option.
5983
5984 If the specified expression is not valid, it is kept at its current
5985 value.
5986 @end table
5987
5988 @section sab
5989
5990 Apply Shape Adaptive Blur.
5991
5992 The filter accepts the following options:
5993
5994 @table @option
5995 @item luma_radius, lr
5996 Set luma blur filter strength, must be a value in range 0.1-4.0, default
5997 value is 1.0. A greater value will result in a more blurred image, and
5998 in slower processing.
5999
6000 @item luma_pre_filter_radius, lpfr
6001 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
6002 value is 1.0.
6003
6004 @item luma_strength, ls
6005 Set luma maximum difference between pixels to still be considered, must
6006 be a value in the 0.1-100.0 range, default value is 1.0.
6007
6008 @item chroma_radius, cr
6009 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
6010 greater value will result in a more blurred image, and in slower
6011 processing.
6012
6013 @item chroma_pre_filter_radius, cpfr
6014 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
6015
6016 @item chroma_strength, cs
6017 Set chroma maximum difference between pixels to still be considered,
6018 must be a value in the 0.1-100.0 range.
6019 @end table
6020
6021 Each chroma option value, if not explicitly specified, is set to the
6022 corresponding luma option value.
6023
6024 @section scale
6025
6026 Scale (resize) the input video, using the libswscale library.
6027
6028 The scale filter forces the output display aspect ratio to be the same
6029 of the input, by changing the output sample aspect ratio.
6030
6031 The filter accepts the following options:
6032
6033 @table @option
6034 @item width, w
6035 Set the output video width expression. Default value is @code{iw}. See
6036 below for the list of accepted constants.
6037
6038 @item height, h
6039 Set the output video height expression. Default value is @code{ih}.
6040 See below for the list of accepted constants.
6041
6042 @item interl
6043 Set the interlacing. It accepts the following values:
6044
6045 @table @option
6046 @item 1
6047 force interlaced aware scaling
6048
6049 @item 0
6050 do not apply interlaced scaling
6051
6052 @item -1
6053 select interlaced aware scaling depending on whether the source frames
6054 are flagged as interlaced or not
6055 @end table
6056
6057 Default value is @code{0}.
6058
6059 @item flags
6060 Set libswscale scaling flags. If not explictly specified the filter
6061 applies a bilinear scaling algorithm.
6062
6063 @item size, s
6064 Set the video size, the value must be a valid abbreviation or in the
6065 form @var{width}x@var{height}.
6066 @end table
6067
6068 The values of the @var{w} and @var{h} options are expressions
6069 containing the following constants:
6070
6071 @table @option
6072 @item in_w
6073 @item in_h
6074 the input width and height
6075
6076 @item iw
6077 @item ih
6078 same as @var{in_w} and @var{in_h}
6079
6080 @item out_w
6081 @item out_h
6082 the output (cropped) width and height
6083
6084 @item ow
6085 @item oh
6086 same as @var{out_w} and @var{out_h}
6087
6088 @item a
6089 same as @var{iw} / @var{ih}
6090
6091 @item sar
6092 input sample aspect ratio
6093
6094 @item dar
6095 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6096
6097 @item hsub
6098 @item vsub
6099 horizontal and vertical chroma subsample values. For example for the
6100 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6101 @end table
6102
6103 If the input image format is different from the format requested by
6104 the next filter, the scale filter will convert the input to the
6105 requested format.
6106
6107 If the value for @var{w} or @var{h} is 0, the respective input
6108 size is used for the output.
6109
6110 If the value for @var{w} or @var{h} is -1, the scale filter will use, for the
6111 respective output size, a value that maintains the aspect ratio of the input
6112 image.
6113
6114 @subsection Examples
6115
6116 @itemize
6117 @item
6118 Scale the input video to a size of 200x100:
6119 @example
6120 scale=w=200:h=100
6121 @end example
6122
6123 This is equivalent to:
6124 @example
6125 scale=200:100
6126 @end example
6127
6128 or:
6129 @example
6130 scale=200x100
6131 @end example
6132
6133 @item
6134 Specify a size abbreviation for the output size:
6135 @example
6136 scale=qcif
6137 @end example
6138
6139 which can also be written as:
6140 @example
6141 scale=size=qcif
6142 @end example
6143
6144 @item
6145 Scale the input to 2x:
6146 @example
6147 scale=w=2*iw:h=2*ih
6148 @end example
6149
6150 @item
6151 The above is the same as:
6152 @example
6153 scale=2*in_w:2*in_h
6154 @end example
6155
6156 @item
6157 Scale the input to 2x with forced interlaced scaling:
6158 @example
6159 scale=2*iw:2*ih:interl=1
6160 @end example
6161
6162 @item
6163 Scale the input to half size:
6164 @example
6165 scale=w=iw/2:h=ih/2
6166 @end example
6167
6168 @item
6169 Increase the width, and set the height to the same size:
6170 @example
6171 scale=3/2*iw:ow
6172 @end example
6173
6174 @item
6175 Seek for Greek harmony:
6176 @example
6177 scale=iw:1/PHI*iw
6178 scale=ih*PHI:ih
6179 @end example
6180
6181 @item
6182 Increase the height, and set the width to 3/2 of the height:
6183 @example
6184 scale=w=3/2*oh:h=3/5*ih
6185 @end example
6186
6187 @item
6188 Increase the size, but make the size a multiple of the chroma
6189 subsample values:
6190 @example
6191 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
6192 @end example
6193
6194 @item
6195 Increase the width to a maximum of 500 pixels, keep the same input
6196 aspect ratio:
6197 @example
6198 scale=w='min(500\, iw*3/2):h=-1'
6199 @end example
6200 @end itemize
6201
6202 @section separatefields
6203
6204 The @code{separatefields} takes a frame-based video input and splits
6205 each frame into its components fields, producing a new half height clip
6206 with twice the frame rate and twice the frame count.
6207
6208 This filter use field-dominance information in frame to decide which
6209 of each pair of fields to place first in the output.
6210 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
6211
6212 @section setdar, setsar
6213
6214 The @code{setdar} filter sets the Display Aspect Ratio for the filter
6215 output video.
6216
6217 This is done by changing the specified Sample (aka Pixel) Aspect
6218 Ratio, according to the following equation:
6219 @example
6220 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
6221 @end example
6222
6223 Keep in mind that the @code{setdar} filter does not modify the pixel
6224 dimensions of the video frame. Also the display aspect ratio set by
6225 this filter may be changed by later filters in the filterchain,
6226 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
6227 applied.
6228
6229 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
6230 the filter output video.
6231
6232 Note that as a consequence of the application of this filter, the
6233 output display aspect ratio will change according to the equation
6234 above.
6235
6236 Keep in mind that the sample aspect ratio set by the @code{setsar}
6237 filter may be changed by later filters in the filterchain, e.g. if
6238 another "setsar" or a "setdar" filter is applied.
6239
6240 The filters accept the following options:
6241
6242 @table @option
6243 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
6244 Set the aspect ratio used by the filter.
6245
6246 The parameter can be a floating point number string, an expression, or
6247 a string of the form @var{num}:@var{den}, where @var{num} and
6248 @var{den} are the numerator and denominator of the aspect ratio. If
6249 the parameter is not specified, it is assumed the value "0".
6250 In case the form "@var{num}:@var{den}" is used, the @code{:} character
6251 should be escaped.
6252
6253 @item max
6254 Set the maximum integer value to use for expressing numerator and
6255 denominator when reducing the expressed aspect ratio to a rational.
6256 Default value is @code{100}.
6257
6258 @end table
6259
6260 @subsection Examples
6261
6262 @itemize
6263
6264 @item
6265 To change the display aspect ratio to 16:9, specify one of the following:
6266 @example
6267 setdar=dar=1.77777
6268 setdar=dar=16/9
6269 setdar=dar=1.77777
6270 @end example
6271
6272 @item
6273 To change the sample aspect ratio to 10:11, specify:
6274 @example
6275 setsar=sar=10/11
6276 @end example
6277
6278 @item
6279 To set a display aspect ratio of 16:9, and specify a maximum integer value of
6280 1000 in the aspect ratio reduction, use the command:
6281 @example
6282 setdar=ratio=16/9:max=1000
6283 @end example
6284
6285 @end itemize
6286
6287 @anchor{setfield}
6288 @section setfield
6289
6290 Force field for the output video frame.
6291
6292 The @code{setfield} filter marks the interlace type field for the
6293 output frames. It does not change the input frame, but only sets the
6294 corresponding property, which affects how the frame is treated by
6295 following filters (e.g. @code{fieldorder} or @code{yadif}).
6296
6297 The filter accepts the following options:
6298
6299 @table @option
6300
6301 @item mode
6302 Available values are:
6303
6304 @table @samp
6305 @item auto
6306 Keep the same field property.
6307
6308 @item bff
6309 Mark the frame as bottom-field-first.
6310
6311 @item tff
6312 Mark the frame as top-field-first.
6313
6314 @item prog
6315 Mark the frame as progressive.
6316 @end table
6317 @end table
6318
6319 @section showinfo
6320
6321 Show a line containing various information for each input video frame.
6322 The input video is not modified.
6323
6324 The shown line contains a sequence of key/value pairs of the form
6325 @var{key}:@var{value}.
6326
6327 A description of each shown parameter follows:
6328
6329 @table @option
6330 @item n
6331 sequential number of the input frame, starting from 0
6332
6333 @item pts
6334 Presentation TimeStamp of the input frame, expressed as a number of
6335 time base units. The time base unit depends on the filter input pad.
6336
6337 @item pts_time
6338 Presentation TimeStamp of the input frame, expressed as a number of
6339 seconds
6340
6341 @item pos
6342 position of the frame in the input stream, -1 if this information in
6343 unavailable and/or meaningless (for example in case of synthetic video)
6344
6345 @item fmt
6346 pixel format name
6347
6348 @item sar
6349 sample aspect ratio of the input frame, expressed in the form
6350 @var{num}/@var{den}
6351
6352 @item s
6353 size of the input frame, expressed in the form
6354 @var{width}x@var{height}
6355
6356 @item i
6357 interlaced mode ("P" for "progressive", "T" for top field first, "B"
6358 for bottom field first)
6359
6360 @item iskey
6361 1 if the frame is a key frame, 0 otherwise
6362
6363 @item type
6364 picture type of the input frame ("I" for an I-frame, "P" for a
6365 P-frame, "B" for a B-frame, "?" for unknown type).
6366 Check also the documentation of the @code{AVPictureType} enum and of
6367 the @code{av_get_picture_type_char} function defined in
6368 @file{libavutil/avutil.h}.
6369
6370 @item checksum
6371 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
6372
6373 @item plane_checksum
6374 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
6375 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
6376 @end table
6377
6378 @anchor{smartblur}
6379 @section smartblur
6380
6381 Blur the input video without impacting the outlines.
6382
6383 The filter accepts the following options:
6384
6385 @table @option
6386 @item luma_radius, lr
6387 Set the luma radius. The option value must be a float number in
6388 the range [0.1,5.0] that specifies the variance of the gaussian filter
6389 used to blur the image (slower if larger). Default value is 1.0.
6390
6391 @item luma_strength, ls
6392 Set the luma strength. The option value must be a float number
6393 in the range [-1.0,1.0] that configures the blurring. A value included
6394 in [0.0,1.0] will blur the image whereas a value included in
6395 [-1.0,0.0] will sharpen the image. Default value is 1.0.
6396
6397 @item luma_threshold, lt
6398 Set the luma threshold used as a coefficient to determine
6399 whether a pixel should be blurred or not. The option value must be an
6400 integer in the range [-30,30]. A value of 0 will filter all the image,
6401 a value included in [0,30] will filter flat areas and a value included
6402 in [-30,0] will filter edges. Default value is 0.
6403
6404 @item chroma_radius, cr
6405 Set the chroma radius. The option value must be a float number in
6406 the range [0.1,5.0] that specifies the variance of the gaussian filter
6407 used to blur the image (slower if larger). Default value is 1.0.
6408
6409 @item chroma_strength, cs
6410 Set the chroma strength. The option value must be a float number
6411 in the range [-1.0,1.0] that configures the blurring. A value included
6412 in [0.0,1.0] will blur the image whereas a value included in
6413 [-1.0,0.0] will sharpen the image. Default value is 1.0.
6414
6415 @item chroma_threshold, ct
6416 Set the chroma threshold used as a coefficient to determine
6417 whether a pixel should be blurred or not. The option value must be an
6418 integer in the range [-30,30]. A value of 0 will filter all the image,
6419 a value included in [0,30] will filter flat areas and a value included
6420 in [-30,0] will filter edges. Default value is 0.
6421 @end table
6422
6423 If a chroma option is not explicitly set, the corresponding luma value
6424 is set.
6425
6426 @section stereo3d
6427
6428 Convert between different stereoscopic image formats.
6429
6430 The filters accept the following options:
6431
6432 @table @option
6433 @item in
6434 Set stereoscopic image format of input.
6435
6436 Available values for input image formats are:
6437 @table @samp
6438 @item sbsl
6439 side by side parallel (left eye left, right eye right)
6440
6441 @item sbsr
6442 side by side crosseye (right eye left, left eye right)
6443
6444 @item sbs2l
6445 side by side parallel with half width resolution
6446 (left eye left, right eye right)
6447
6448 @item sbs2r
6449 side by side crosseye with half width resolution
6450 (right eye left, left eye right)
6451
6452 @item abl
6453 above-below (left eye above, right eye below)
6454
6455 @item abr
6456 above-below (right eye above, left eye below)
6457
6458 @item ab2l
6459 above-below with half height resolution
6460 (left eye above, right eye below)
6461
6462 @item ab2r
6463 above-below with half height resolution
6464 (right eye above, left eye below)
6465
6466 @item al
6467 alternating frames (left eye first, right eye second)
6468
6469 @item ar
6470 alternating frames (right eye first, left eye second)
6471
6472 Default value is @samp{sbsl}.
6473 @end table
6474
6475 @item out
6476 Set stereoscopic image format of output.
6477
6478 Available values for output image formats are all the input formats as well as:
6479 @table @samp
6480 @item arbg
6481 anaglyph red/blue gray
6482 (red filter on left eye, blue filter on right eye)
6483
6484 @item argg
6485 anaglyph red/green gray
6486 (red filter on left eye, green filter on right eye)
6487
6488 @item arcg
6489 anaglyph red/cyan gray
6490 (red filter on left eye, cyan filter on right eye)
6491
6492 @item arch
6493 anaglyph red/cyan half colored
6494 (red filter on left eye, cyan filter on right eye)
6495
6496 @item arcc
6497 anaglyph red/cyan color
6498 (red filter on left eye, cyan filter on right eye)
6499
6500 @item arcd
6501 anaglyph red/cyan color optimized with the least squares projection of dubois
6502 (red filter on left eye, cyan filter on right eye)
6503
6504 @item agmg
6505 anaglyph green/magenta gray
6506 (green filter on left eye, magenta filter on right eye)
6507
6508 @item agmh
6509 anaglyph green/magenta half colored
6510 (green filter on left eye, magenta filter on right eye)
6511
6512 @item agmc
6513 anaglyph green/magenta colored
6514 (green filter on left eye, magenta filter on right eye)
6515
6516 @item agmd
6517 anaglyph green/magenta color optimized with the least squares projection of dubois
6518 (green filter on left eye, magenta filter on right eye)
6519
6520 @item aybg
6521 anaglyph yellow/blue gray
6522 (yellow filter on left eye, blue filter on right eye)
6523
6524 @item aybh
6525 anaglyph yellow/blue half colored
6526 (yellow filter on left eye, blue filter on right eye)
6527
6528 @item aybc
6529 anaglyph yellow/blue colored
6530 (yellow filter on left eye, blue filter on right eye)
6531
6532 @item aybd
6533 anaglyph yellow/blue color optimized with the least squares projection of dubois
6534 (yellow filter on left eye, blue filter on right eye)
6535
6536 @item irl
6537 interleaved rows (left eye has top row, right eye starts on next row)
6538
6539 @item irr
6540 interleaved rows (right eye has top row, left eye starts on next row)
6541
6542 @item ml
6543 mono output (left eye only)
6544
6545 @item mr
6546 mono output (right eye only)
6547 @end table
6548
6549 Default value is @samp{arcd}.
6550 @end table
6551
6552 @subsection Examples
6553
6554 @itemize
6555 @item
6556 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
6557 @example
6558 stereo3d=sbsl:aybd
6559 @end example
6560
6561 @item
6562 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
6563 @example
6564 stereo3d=abl:sbsr
6565 @end example
6566 @end itemize
6567
6568 @section spp
6569
6570 Apply a simple postprocessing filter that compresses and decompresses the image
6571 at several (or - in the case of @option{quality} level @code{6} - all) shifts
6572 and average the results.
6573
6574 The filter accepts the following options:
6575
6576 @table @option
6577 @item quality
6578 Set quality. This option defines the number of levels for averaging. It accepts
6579 an integer in the range 0-6. If set to @code{0}, the filter will have no
6580 effect. A value of @code{6} means the higher quality. For each increment of
6581 that value the speed drops by a factor of approximately 2.  Default value is
6582 @code{3}.
6583
6584 @item qp
6585 Force a constant quantization parameter. If not set, the filter will use the QP
6586 from the video stream (if available).
6587
6588 @item mode
6589 Set thresholding mode. Available modes are:
6590
6591 @table @samp
6592 @item hard
6593 Set hard thresholding (default).
6594 @item soft
6595 Set soft thresholding (better de-ringing effect, but likely blurrier).
6596 @end table
6597
6598 @item use_bframe_qp
6599 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
6600 option may cause flicker since the B-Frames have often larger QP. Default is
6601 @code{0} (not enabled).
6602 @end table
6603
6604 @anchor{subtitles}
6605 @section subtitles
6606
6607 Draw subtitles on top of input video using the libass library.
6608
6609 To enable compilation of this filter you need to configure FFmpeg with
6610 @code{--enable-libass}. This filter also requires a build with libavcodec and
6611 libavformat to convert the passed subtitles file to ASS (Advanced Substation
6612 Alpha) subtitles format.
6613
6614 The filter accepts the following options:
6615
6616 @table @option
6617 @item filename, f
6618 Set the filename of the subtitle file to read. It must be specified.
6619
6620 @item original_size
6621 Specify the size of the original video, the video for which the ASS file
6622 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
6623 necessary to correctly scale the fonts if the aspect ratio has been changed.
6624
6625 @item charenc
6626 Set subtitles input character encoding. @code{subtitles} filter only. Only
6627 useful if not UTF-8.
6628 @end table
6629
6630 If the first key is not specified, it is assumed that the first value
6631 specifies the @option{filename}.
6632
6633 For example, to render the file @file{sub.srt} on top of the input
6634 video, use the command:
6635 @example
6636 subtitles=sub.srt
6637 @end example
6638
6639 which is equivalent to:
6640 @example
6641 subtitles=filename=sub.srt
6642 @end example
6643
6644 @section super2xsai
6645
6646 Scale the input by 2x and smooth using the Super2xSaI (Scale and
6647 Interpolate) pixel art scaling algorithm.
6648
6649 Useful for enlarging pixel art images without reducing sharpness.
6650
6651 @section swapuv
6652 Swap U & V plane.
6653
6654 @section telecine
6655
6656 Apply telecine process to the video.
6657
6658 This filter accepts the following options:
6659
6660 @table @option
6661 @item first_field
6662 @table @samp
6663 @item top, t
6664 top field first
6665 @item bottom, b
6666 bottom field first
6667 The default value is @code{top}.
6668 @end table
6669
6670 @item pattern
6671 A string of numbers representing the pulldown pattern you wish to apply.
6672 The default value is @code{23}.
6673 @end table
6674
6675 @example
6676 Some typical patterns:
6677
6678 NTSC output (30i):
6679 27.5p: 32222
6680 24p: 23 (classic)
6681 24p: 2332 (preferred)
6682 20p: 33
6683 18p: 334
6684 16p: 3444
6685
6686 PAL output (25i):
6687 27.5p: 12222
6688 24p: 222222222223 ("Euro pulldown")
6689 16.67p: 33
6690 16p: 33333334
6691 @end example
6692
6693 @section thumbnail
6694 Select the most representative frame in a given sequence of consecutive frames.
6695
6696 The filter accepts the following options:
6697
6698 @table @option
6699 @item n
6700 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
6701 will pick one of them, and then handle the next batch of @var{n} frames until
6702 the end. Default is @code{100}.
6703 @end table
6704
6705 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
6706 value will result in a higher memory usage, so a high value is not recommended.
6707
6708 @subsection Examples
6709
6710 @itemize
6711 @item
6712 Extract one picture each 50 frames:
6713 @example
6714 thumbnail=50
6715 @end example
6716
6717 @item
6718 Complete example of a thumbnail creation with @command{ffmpeg}:
6719 @example
6720 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
6721 @end example
6722 @end itemize
6723
6724 @section tile
6725
6726 Tile several successive frames together.
6727
6728 The filter accepts the following options:
6729
6730 @table @option
6731
6732 @item layout
6733 Set the grid size (i.e. the number of lines and columns) in the form
6734 "@var{w}x@var{h}".
6735
6736 @item nb_frames
6737 Set the maximum number of frames to render in the given area. It must be less
6738 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
6739 the area will be used.
6740
6741 @item margin
6742 Set the outer border margin in pixels.
6743
6744 @item padding
6745 Set the inner border thickness (i.e. the number of pixels between frames). For
6746 more advanced padding options (such as having different values for the edges),
6747 refer to the pad video filter.
6748
6749 @end table
6750
6751 @subsection Examples
6752
6753 @itemize
6754 @item
6755 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
6756 @example
6757 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
6758 @end example
6759 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
6760 duplicating each output frame to accomodate the originally detected frame
6761 rate.
6762
6763 @item
6764 Display @code{5} pictures in an area of @code{3x2} frames,
6765 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
6766 mixed flat and named options:
6767 @example
6768 tile=3x2:nb_frames=5:padding=7:margin=2
6769 @end example
6770 @end itemize
6771
6772 @section tinterlace
6773
6774 Perform various types of temporal field interlacing.
6775
6776 Frames are counted starting from 1, so the first input frame is
6777 considered odd.
6778
6779 The filter accepts the following options:
6780
6781 @table @option
6782
6783 @item mode
6784 Specify the mode of the interlacing. This option can also be specified
6785 as a value alone. See below for a list of values for this option.
6786
6787 Available values are:
6788
6789 @table @samp
6790 @item merge, 0
6791 Move odd frames into the upper field, even into the lower field,
6792 generating a double height frame at half frame rate.
6793
6794 @item drop_odd, 1
6795 Only output even frames, odd frames are dropped, generating a frame with
6796 unchanged height at half frame rate.
6797
6798 @item drop_even, 2
6799 Only output odd frames, even frames are dropped, generating a frame with
6800 unchanged height at half frame rate.
6801
6802 @item pad, 3
6803 Expand each frame to full height, but pad alternate lines with black,
6804 generating a frame with double height at the same input frame rate.
6805
6806 @item interleave_top, 4
6807 Interleave the upper field from odd frames with the lower field from
6808 even frames, generating a frame with unchanged height at half frame rate.
6809
6810 @item interleave_bottom, 5
6811 Interleave the lower field from odd frames with the upper field from
6812 even frames, generating a frame with unchanged height at half frame rate.
6813
6814 @item interlacex2, 6
6815 Double frame rate with unchanged height. Frames are inserted each
6816 containing the second temporal field from the previous input frame and
6817 the first temporal field from the next input frame. This mode relies on
6818 the top_field_first flag. Useful for interlaced video displays with no
6819 field synchronisation.
6820 @end table
6821
6822 Numeric values are deprecated but are accepted for backward
6823 compatibility reasons.
6824
6825 Default mode is @code{merge}.
6826
6827 @item flags
6828 Specify flags influencing the filter process.
6829
6830 Available value for @var{flags} is:
6831
6832 @table @option
6833 @item low_pass_filter, vlfp
6834 Enable vertical low-pass filtering in the filter.
6835 Vertical low-pass filtering is required when creating an interlaced
6836 destination from a progressive source which contains high-frequency
6837 vertical detail. Filtering will reduce interlace 'twitter' and Moire
6838 patterning.
6839
6840 Vertical low-pass filtering can only be enabled for @option{mode}
6841 @var{interleave_top} and @var{interleave_bottom}.
6842
6843 @end table
6844 @end table
6845
6846 @section transpose
6847
6848 Transpose rows with columns in the input video and optionally flip it.
6849
6850 This filter accepts the following options:
6851
6852 @table @option
6853
6854 @item dir
6855 Specify the transposition direction.
6856
6857 Can assume the following values:
6858 @table @samp
6859 @item 0, 4, cclock_flip
6860 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
6861 @example
6862 L.R     L.l
6863 . . ->  . .
6864 l.r     R.r
6865 @end example
6866
6867 @item 1, 5, clock
6868 Rotate by 90 degrees clockwise, that is:
6869 @example
6870 L.R     l.L
6871 . . ->  . .
6872 l.r     r.R
6873 @end example
6874
6875 @item 2, 6, cclock
6876 Rotate by 90 degrees counterclockwise, that is:
6877 @example
6878 L.R     R.r
6879 . . ->  . .
6880 l.r     L.l
6881 @end example
6882
6883 @item 3, 7, clock_flip
6884 Rotate by 90 degrees clockwise and vertically flip, that is:
6885 @example
6886 L.R     r.R
6887 . . ->  . .
6888 l.r     l.L
6889 @end example
6890 @end table
6891
6892 For values between 4-7, the transposition is only done if the input
6893 video geometry is portrait and not landscape. These values are
6894 deprecated, the @code{passthrough} option should be used instead.
6895
6896 Numerical values are deprecated, and should be dropped in favor of
6897 symbolic constants.
6898
6899 @item passthrough
6900 Do not apply the transposition if the input geometry matches the one
6901 specified by the specified value. It accepts the following values:
6902 @table @samp
6903 @item none
6904 Always apply transposition.
6905 @item portrait
6906 Preserve portrait geometry (when @var{height} >= @var{width}).
6907 @item landscape
6908 Preserve landscape geometry (when @var{width} >= @var{height}).
6909 @end table
6910
6911 Default value is @code{none}.
6912 @end table
6913
6914 For example to rotate by 90 degrees clockwise and preserve portrait
6915 layout:
6916 @example
6917 transpose=dir=1:passthrough=portrait
6918 @end example
6919
6920 The command above can also be specified as:
6921 @example
6922 transpose=1:portrait
6923 @end example
6924
6925 @section trim
6926 Trim the input so that the output contains one continuous subpart of the input.
6927
6928 This filter accepts the following options:
6929 @table @option
6930 @item start
6931 Timestamp (in seconds) of the start of the kept section. I.e. the frame with the
6932 timestamp @var{start} will be the first frame in the output.
6933
6934 @item end
6935 Timestamp (in seconds) of the first frame that will be dropped. I.e. the frame
6936 immediately preceding the one with the timestamp @var{end} will be the last
6937 frame in the output.
6938
6939 @item start_pts
6940 Same as @var{start}, except this option sets the start timestamp in timebase
6941 units instead of seconds.
6942
6943 @item end_pts
6944 Same as @var{end}, except this option sets the end timestamp in timebase units
6945 instead of seconds.
6946
6947 @item duration
6948 Maximum duration of the output in seconds.
6949
6950 @item start_frame
6951 Number of the first frame that should be passed to output.
6952
6953 @item end_frame
6954 Number of the first frame that should be dropped.
6955 @end table
6956
6957 Note that the first two sets of the start/end options and the @option{duration}
6958 option look at the frame timestamp, while the _frame variants simply count the
6959 frames that pass through the filter. Also note that this filter does not modify
6960 the timestamps. If you wish that the output timestamps start at zero, insert a
6961 setpts filter after the trim filter.
6962
6963 If multiple start or end options are set, this filter tries to be greedy and
6964 keep all the frames that match at least one of the specified constraints. To keep
6965 only the part that matches all the constraints at once, chain multiple trim
6966 filters.
6967
6968 The defaults are such that all the input is kept. So it is possible to set e.g.
6969 just the end values to keep everything before the specified time.
6970
6971 Examples:
6972 @itemize
6973 @item
6974 drop everything except the second minute of input
6975 @example
6976 ffmpeg -i INPUT -vf trim=60:120
6977 @end example
6978
6979 @item
6980 keep only the first second
6981 @example
6982 ffmpeg -i INPUT -vf trim=duration=1
6983 @end example
6984
6985 @end itemize
6986
6987
6988 @section unsharp
6989
6990 Sharpen or blur the input video.
6991
6992 It accepts the following parameters:
6993
6994 @table @option
6995 @item luma_msize_x, lx
6996 Set the luma matrix horizontal size. It must be an odd integer between
6997 3 and 63, default value is 5.
6998
6999 @item luma_msize_y, ly
7000 Set the luma matrix vertical size. It must be an odd integer between 3
7001 and 63, default value is 5.
7002
7003 @item luma_amount, la
7004 Set the luma effect strength. It can be a float number, reasonable
7005 values lay between -1.5 and 1.5.
7006
7007 Negative values will blur the input video, while positive values will
7008 sharpen it, a value of zero will disable the effect.
7009
7010 Default value is 1.0.
7011
7012 @item chroma_msize_x, cx
7013 Set the chroma matrix horizontal size. It must be an odd integer
7014 between 3 and 63, default value is 5.
7015
7016 @item chroma_msize_y, cy
7017 Set the chroma matrix vertical size. It must be an odd integer
7018 between 3 and 63, default value is 5.
7019
7020 @item chroma_amount, ca
7021 Set the chroma effect strength. It can be a float number, reasonable
7022 values lay between -1.5 and 1.5.
7023
7024 Negative values will blur the input video, while positive values will
7025 sharpen it, a value of zero will disable the effect.
7026
7027 Default value is 0.0.
7028
7029 @item opencl
7030 If set to 1, specify using OpenCL capabilities, only available if
7031 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
7032
7033 @end table
7034
7035 All parameters are optional and default to the equivalent of the
7036 string '5:5:1.0:5:5:0.0'.
7037
7038 @subsection Examples
7039
7040 @itemize
7041 @item
7042 Apply strong luma sharpen effect:
7043 @example
7044 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
7045 @end example
7046
7047 @item
7048 Apply strong blur of both luma and chroma parameters:
7049 @example
7050 unsharp=7:7:-2:7:7:-2
7051 @end example
7052 @end itemize
7053
7054 @anchor{vidstabdetect}
7055 @section vidstabdetect
7056
7057 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
7058 @ref{vidstabtransform} for pass 2.
7059
7060 This filter generates a file with relative translation and rotation
7061 transform information about subsequent frames, which is then used by
7062 the @ref{vidstabtransform} filter.
7063
7064 To enable compilation of this filter you need to configure FFmpeg with
7065 @code{--enable-libvidstab}.
7066
7067 This filter accepts the following options:
7068
7069 @table @option
7070 @item result
7071 Set the path to the file used to write the transforms information.
7072 Default value is @file{transforms.trf}.
7073
7074 @item shakiness
7075 Set how shaky the video is and how quick the camera is. It accepts an
7076 integer in the range 1-10, a value of 1 means little shakiness, a
7077 value of 10 means strong shakiness. Default value is 5.
7078
7079 @item accuracy
7080 Set the accuracy of the detection process. It must be a value in the
7081 range 1-15. A value of 1 means low accuracy, a value of 15 means high
7082 accuracy. Default value is 9.
7083
7084 @item stepsize
7085 Set stepsize of the search process. The region around minimum is
7086 scanned with 1 pixel resolution. Default value is 6.
7087
7088 @item mincontrast
7089 Set minimum contrast. Below this value a local measurement field is
7090 discarded. Must be a floating point value in the range 0-1. Default
7091 value is 0.3.
7092
7093 @item tripod
7094 Set reference frame number for tripod mode.
7095
7096 If enabled, the motion of the frames is compared to a reference frame
7097 in the filtered stream, identified by the specified number. The idea
7098 is to compensate all movements in a more-or-less static scene and keep
7099 the camera view absolutely still.
7100
7101 If set to 0, it is disabled. The frames are counted starting from 1.
7102
7103 @item show
7104 Show fields and transforms in the resulting frames. It accepts an
7105 integer in the range 0-2. Default value is 0, which disables any
7106 visualization.
7107 @end table
7108
7109 @subsection Examples
7110
7111 @itemize
7112 @item
7113 Use default values:
7114 @example
7115 vidstabdetect
7116 @end example
7117
7118 @item
7119 Analyze strongly shaky movie and put the results in file
7120 @file{mytransforms.trf}:
7121 @example
7122 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
7123 @end example
7124
7125 @item
7126 Visualize the result of internal transformations in the resulting
7127 video:
7128 @example
7129 vidstabdetect=show=1
7130 @end example
7131
7132 @item
7133 Analyze a video with medium shakiness using @command{ffmpeg}:
7134 @example
7135 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
7136 @end example
7137 @end itemize
7138
7139 @anchor{vidstabtransform}
7140 @section vidstabtransform
7141
7142 Video stabilization/deshaking: pass 2 of 2,
7143 see @ref{vidstabdetect} for pass 1.
7144
7145 Read a file with transform information for each frame and
7146 apply/compensate them. Together with the @ref{vidstabdetect}
7147 filter this can be used to deshake videos. See also
7148 @url{http://public.hronopik.de/vid.stab}. It is important to also use
7149 the unsharp filter, see below.
7150
7151 To enable compilation of this filter you need to configure FFmpeg with
7152 @code{--enable-libvidstab}.
7153
7154 This filter accepts the following options:
7155
7156 @table @option
7157
7158 @item input
7159 path to the file used to read the transforms (default: @file{transforms.trf})
7160
7161 @item smoothing
7162 number of frames (value*2 + 1) used for lowpass filtering the camera movements
7163 (default: 10). For example a number of 10 means that 21 frames are used
7164 (10 in the past and 10 in the future) to smoothen the motion in the
7165 video. A larger values leads to a smoother video, but limits the
7166 acceleration of the camera (pan/tilt movements).
7167
7168 @item maxshift
7169 maximal number of pixels to translate frames (default: -1 no limit)
7170
7171 @item maxangle
7172 maximal angle in radians (degree*PI/180) to rotate frames (default: -1
7173 no limit)
7174
7175 @item crop
7176 How to deal with borders that may be visible due to movement
7177 compensation. Available values are:
7178
7179 @table @samp
7180 @item keep
7181 keep image information from previous frame (default)
7182 @item black
7183 fill the border black
7184 @end table
7185
7186 @item invert
7187 @table @samp
7188 @item 0
7189  keep transforms normal (default)
7190 @item 1
7191  invert transforms
7192 @end table
7193
7194
7195 @item relative
7196 consider transforms as
7197 @table @samp
7198 @item 0
7199  absolute
7200 @item 1
7201  relative to previous frame (default)
7202 @end table
7203
7204
7205 @item zoom
7206 percentage to zoom (default: 0)
7207 @table @samp
7208 @item >0
7209   zoom in
7210 @item <0
7211   zoom out
7212 @end table
7213
7214 @item optzoom
7215 if 1 then optimal zoom value is determined (default).
7216 Optimal zoom means no (or only little) border should be visible.
7217 Note that the value given at zoom is added to the one calculated
7218 here.
7219
7220 @item interpol
7221 type of interpolation
7222
7223 Available values are:
7224 @table @samp
7225 @item no
7226 no interpolation
7227 @item linear
7228 linear only horizontal
7229 @item bilinear
7230 linear in both directions (default)
7231 @item bicubic
7232 cubic in both directions (slow)
7233 @end table
7234
7235 @item tripod
7236 virtual tripod mode means that the video is stabilized such that the
7237 camera stays stationary. Use also @code{tripod} option of
7238 @ref{vidstabdetect}.
7239 @table @samp
7240 @item 0
7241 off (default)
7242 @item 1
7243 virtual tripod mode: equivalent to @code{relative=0:smoothing=0}
7244 @end table
7245
7246 @end table
7247
7248 @subsection Examples
7249
7250 @itemize
7251 @item
7252 typical call with default default values:
7253  (note the unsharp filter which is always recommended)
7254 @example
7255 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
7256 @end example
7257
7258 @item
7259 zoom in a bit more and load transform data from a given file
7260 @example
7261 vidstabtransform=zoom=5:input="mytransforms.trf"
7262 @end example
7263
7264 @item
7265 smoothen the video even more
7266 @example
7267 vidstabtransform=smoothing=30
7268 @end example
7269
7270 @end itemize
7271
7272 @section vflip
7273
7274 Flip the input video vertically.
7275
7276 For example, to vertically flip a video with @command{ffmpeg}:
7277 @example
7278 ffmpeg -i in.avi -vf "vflip" out.avi
7279 @end example
7280
7281 @section vignette
7282
7283 Make or reverse a natural vignetting effect.
7284
7285 The filter accepts the following options:
7286
7287 @table @option
7288 @item angle, a
7289 Set lens angle expression as a number of radians.
7290
7291 The value is clipped in the @code{[0,PI/2]} range.
7292
7293 Default value: @code{"PI/5"}
7294
7295 @item x0
7296 @item y0
7297 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
7298 by default.
7299
7300 @item mode
7301 Set forward/backward mode.
7302
7303 Available modes are:
7304 @table @samp
7305 @item forward
7306 The larger the distance from the central point, the darker the image becomes.
7307
7308 @item backward
7309 The larger the distance from the central point, the brighter the image becomes.
7310 This can be used to reverse a vignette effect, though there is no automatic
7311 detection to extract the lens @option{angle} and other settings (yet). It can
7312 also be used to create a burning effect.
7313 @end table
7314
7315 Default value is @samp{forward}.
7316
7317 @item eval
7318 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
7319
7320 It accepts the following values:
7321 @table @samp
7322 @item init
7323 Evaluate expressions only once during the filter initialization.
7324
7325 @item frame
7326 Evaluate expressions for each incoming frame. This is way slower than the
7327 @samp{init} mode since it requires all the scalers to be re-computed, but it
7328 allows advanced dynamic expressions.
7329 @end table
7330
7331 Default value is @samp{init}.
7332
7333 @item dither
7334 Set dithering to reduce the circular banding effects. Default is @code{1}
7335 (enabled).
7336
7337 @item aspect
7338 Set vignette aspect. This setting allows to adjust the shape of the vignette.
7339 Setting this value to the SAR of the input will make a rectangular vignetting
7340 following the dimensions of the video.
7341
7342 Default is @code{1/1}.
7343 @end table
7344
7345 @subsection Expressions
7346
7347 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
7348 following parameters.
7349
7350 @table @option
7351 @item w
7352 @item h
7353 input width and height
7354
7355 @item n
7356 the number of input frame, starting from 0
7357
7358 @item pts
7359 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
7360 @var{TB} units, NAN if undefined
7361
7362 @item r
7363 frame rate of the input video, NAN if the input frame rate is unknown
7364
7365 @item t
7366 the PTS (Presentation TimeStamp) of the filtered video frame,
7367 expressed in seconds, NAN if undefined
7368
7369 @item tb
7370 time base of the input video
7371 @end table
7372
7373
7374 @subsection Examples
7375
7376 @itemize
7377 @item
7378 Apply simple strong vignetting effect:
7379 @example
7380 vignette=PI/4
7381 @end example
7382
7383 @item
7384 Make a flickering vignetting:
7385 @example
7386 vignette='PI/4+random(1)*PI/50':eval=frame
7387 @end example
7388
7389 @end itemize
7390
7391 @anchor{yadif}
7392 @section yadif
7393
7394 Deinterlace the input video ("yadif" means "yet another deinterlacing
7395 filter").
7396
7397 This filter accepts the following options:
7398
7399
7400 @table @option
7401
7402 @item mode
7403 The interlacing mode to adopt, accepts one of the following values:
7404
7405 @table @option
7406 @item 0, send_frame
7407 output 1 frame for each frame
7408 @item 1, send_field
7409 output 1 frame for each field
7410 @item 2, send_frame_nospatial
7411 like @code{send_frame} but skip spatial interlacing check
7412 @item 3, send_field_nospatial
7413 like @code{send_field} but skip spatial interlacing check
7414 @end table
7415
7416 Default value is @code{send_frame}.
7417
7418 @item parity
7419 The picture field parity assumed for the input interlaced video, accepts one of
7420 the following values:
7421
7422 @table @option
7423 @item 0, tff
7424 assume top field first
7425 @item 1, bff
7426 assume bottom field first
7427 @item -1, auto
7428 enable automatic detection
7429 @end table
7430
7431 Default value is @code{auto}.
7432 If interlacing is unknown or decoder does not export this information,
7433 top field first will be assumed.
7434
7435 @item deint
7436 Specify which frames to deinterlace. Accept one of the following
7437 values:
7438
7439 @table @option
7440 @item 0, all
7441 deinterlace all frames
7442 @item 1, interlaced
7443 only deinterlace frames marked as interlaced
7444 @end table
7445
7446 Default value is @code{all}.
7447 @end table
7448
7449 @c man end VIDEO FILTERS
7450
7451 @chapter Video Sources
7452 @c man begin VIDEO SOURCES
7453
7454 Below is a description of the currently available video sources.
7455
7456 @section buffer
7457
7458 Buffer video frames, and make them available to the filter chain.
7459
7460 This source is mainly intended for a programmatic use, in particular
7461 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
7462
7463 This source accepts the following options:
7464
7465 @table @option
7466
7467 @item video_size
7468 Specify the size (width and height) of the buffered video frames.
7469
7470 @item width
7471 Input video width.
7472
7473 @item height
7474 Input video height.
7475
7476 @item pix_fmt
7477 A string representing the pixel format of the buffered video frames.
7478 It may be a number corresponding to a pixel format, or a pixel format
7479 name.
7480
7481 @item time_base
7482 Specify the timebase assumed by the timestamps of the buffered frames.
7483
7484 @item frame_rate
7485 Specify the frame rate expected for the video stream.
7486
7487 @item pixel_aspect, sar
7488 Specify the sample aspect ratio assumed by the video frames.
7489
7490 @item sws_param
7491 Specify the optional parameters to be used for the scale filter which
7492 is automatically inserted when an input change is detected in the
7493 input size or format.
7494 @end table
7495
7496 For example:
7497 @example
7498 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
7499 @end example
7500
7501 will instruct the source to accept video frames with size 320x240 and
7502 with format "yuv410p", assuming 1/24 as the timestamps timebase and
7503 square pixels (1:1 sample aspect ratio).
7504 Since the pixel format with name "yuv410p" corresponds to the number 6
7505 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
7506 this example corresponds to:
7507 @example
7508 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
7509 @end example
7510
7511 Alternatively, the options can be specified as a flat string, but this
7512 syntax is deprecated:
7513
7514 @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}]
7515
7516 @section cellauto
7517
7518 Create a pattern generated by an elementary cellular automaton.
7519
7520 The initial state of the cellular automaton can be defined through the
7521 @option{filename}, and @option{pattern} options. If such options are
7522 not specified an initial state is created randomly.
7523
7524 At each new frame a new row in the video is filled with the result of
7525 the cellular automaton next generation. The behavior when the whole
7526 frame is filled is defined by the @option{scroll} option.
7527
7528 This source accepts the following options:
7529
7530 @table @option
7531 @item filename, f
7532 Read the initial cellular automaton state, i.e. the starting row, from
7533 the specified file.
7534 In the file, each non-whitespace character is considered an alive
7535 cell, a newline will terminate the row, and further characters in the
7536 file will be ignored.
7537
7538 @item pattern, p
7539 Read the initial cellular automaton state, i.e. the starting row, from
7540 the specified string.
7541
7542 Each non-whitespace character in the string is considered an alive
7543 cell, a newline will terminate the row, and further characters in the
7544 string will be ignored.
7545
7546 @item rate, r
7547 Set the video rate, that is the number of frames generated per second.
7548 Default is 25.
7549
7550 @item random_fill_ratio, ratio
7551 Set the random fill ratio for the initial cellular automaton row. It
7552 is a floating point number value ranging from 0 to 1, defaults to
7553 1/PHI.
7554
7555 This option is ignored when a file or a pattern is specified.
7556
7557 @item random_seed, seed
7558 Set the seed for filling randomly the initial row, must be an integer
7559 included between 0 and UINT32_MAX. If not specified, or if explicitly
7560 set to -1, the filter will try to use a good random seed on a best
7561 effort basis.
7562
7563 @item rule
7564 Set the cellular automaton rule, it is a number ranging from 0 to 255.
7565 Default value is 110.
7566
7567 @item size, s
7568 Set the size of the output video.
7569
7570 If @option{filename} or @option{pattern} is specified, the size is set
7571 by default to the width of the specified initial state row, and the
7572 height is set to @var{width} * PHI.
7573
7574 If @option{size} is set, it must contain the width of the specified
7575 pattern string, and the specified pattern will be centered in the
7576 larger row.
7577
7578 If a filename or a pattern string is not specified, the size value
7579 defaults to "320x518" (used for a randomly generated initial state).
7580
7581 @item scroll
7582 If set to 1, scroll the output upward when all the rows in the output
7583 have been already filled. If set to 0, the new generated row will be
7584 written over the top row just after the bottom row is filled.
7585 Defaults to 1.
7586
7587 @item start_full, full
7588 If set to 1, completely fill the output with generated rows before
7589 outputting the first frame.
7590 This is the default behavior, for disabling set the value to 0.
7591
7592 @item stitch
7593 If set to 1, stitch the left and right row edges together.
7594 This is the default behavior, for disabling set the value to 0.
7595 @end table
7596
7597 @subsection Examples
7598
7599 @itemize
7600 @item
7601 Read the initial state from @file{pattern}, and specify an output of
7602 size 200x400.
7603 @example
7604 cellauto=f=pattern:s=200x400
7605 @end example
7606
7607 @item
7608 Generate a random initial row with a width of 200 cells, with a fill
7609 ratio of 2/3:
7610 @example
7611 cellauto=ratio=2/3:s=200x200
7612 @end example
7613
7614 @item
7615 Create a pattern generated by rule 18 starting by a single alive cell
7616 centered on an initial row with width 100:
7617 @example
7618 cellauto=p=@@:s=100x400:full=0:rule=18
7619 @end example
7620
7621 @item
7622 Specify a more elaborated initial pattern:
7623 @example
7624 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
7625 @end example
7626
7627 @end itemize
7628
7629 @section mandelbrot
7630
7631 Generate a Mandelbrot set fractal, and progressively zoom towards the
7632 point specified with @var{start_x} and @var{start_y}.
7633
7634 This source accepts the following options:
7635
7636 @table @option
7637
7638 @item end_pts
7639 Set the terminal pts value. Default value is 400.
7640
7641 @item end_scale
7642 Set the terminal scale value.
7643 Must be a floating point value. Default value is 0.3.
7644
7645 @item inner
7646 Set the inner coloring mode, that is the algorithm used to draw the
7647 Mandelbrot fractal internal region.
7648
7649 It shall assume one of the following values:
7650 @table @option
7651 @item black
7652 Set black mode.
7653 @item convergence
7654 Show time until convergence.
7655 @item mincol
7656 Set color based on point closest to the origin of the iterations.
7657 @item period
7658 Set period mode.
7659 @end table
7660
7661 Default value is @var{mincol}.
7662
7663 @item bailout
7664 Set the bailout value. Default value is 10.0.
7665
7666 @item maxiter
7667 Set the maximum of iterations performed by the rendering
7668 algorithm. Default value is 7189.
7669
7670 @item outer
7671 Set outer coloring mode.
7672 It shall assume one of following values:
7673 @table @option
7674 @item iteration_count
7675 Set iteration cound mode.
7676 @item normalized_iteration_count
7677 set normalized iteration count mode.
7678 @end table
7679 Default value is @var{normalized_iteration_count}.
7680
7681 @item rate, r
7682 Set frame rate, expressed as number of frames per second. Default
7683 value is "25".
7684
7685 @item size, s
7686 Set frame size. Default value is "640x480".
7687
7688 @item start_scale
7689 Set the initial scale value. Default value is 3.0.
7690
7691 @item start_x
7692 Set the initial x position. Must be a floating point value between
7693 -100 and 100. Default value is -0.743643887037158704752191506114774.
7694
7695 @item start_y
7696 Set the initial y position. Must be a floating point value between
7697 -100 and 100. Default value is -0.131825904205311970493132056385139.
7698 @end table
7699
7700 @section mptestsrc
7701
7702 Generate various test patterns, as generated by the MPlayer test filter.
7703
7704 The size of the generated video is fixed, and is 256x256.
7705 This source is useful in particular for testing encoding features.
7706
7707 This source accepts the following options:
7708
7709 @table @option
7710
7711 @item rate, r
7712 Specify the frame rate of the sourced video, as the number of frames
7713 generated per second. It has to be a string in the format
7714 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
7715 number or a valid video frame rate abbreviation. The default value is
7716 "25".
7717
7718 @item duration, d
7719 Set the video duration of the sourced video. The accepted syntax is:
7720 @example
7721 [-]HH:MM:SS[.m...]
7722 [-]S+[.m...]
7723 @end example
7724 See also the function @code{av_parse_time()}.
7725
7726 If not specified, or the expressed duration is negative, the video is
7727 supposed to be generated forever.
7728
7729 @item test, t
7730
7731 Set the number or the name of the test to perform. Supported tests are:
7732 @table @option
7733 @item dc_luma
7734 @item dc_chroma
7735 @item freq_luma
7736 @item freq_chroma
7737 @item amp_luma
7738 @item amp_chroma
7739 @item cbp
7740 @item mv
7741 @item ring1
7742 @item ring2
7743 @item all
7744 @end table
7745
7746 Default value is "all", which will cycle through the list of all tests.
7747 @end table
7748
7749 For example the following:
7750 @example
7751 testsrc=t=dc_luma
7752 @end example
7753
7754 will generate a "dc_luma" test pattern.
7755
7756 @section frei0r_src
7757
7758 Provide a frei0r source.
7759
7760 To enable compilation of this filter you need to install the frei0r
7761 header and configure FFmpeg with @code{--enable-frei0r}.
7762
7763 This source accepts the following options:
7764
7765 @table @option
7766
7767 @item size
7768 The size of the video to generate, may be a string of the form
7769 @var{width}x@var{height} or a frame size abbreviation.
7770
7771 @item framerate
7772 Framerate of the generated video, may be a string of the form
7773 @var{num}/@var{den} or a frame rate abbreviation.
7774
7775 @item filter_name
7776 The name to the frei0r source to load. For more information regarding frei0r and
7777 how to set the parameters read the section @ref{frei0r} in the description of
7778 the video filters.
7779
7780 @item filter_params
7781 A '|'-separated list of parameters to pass to the frei0r source.
7782
7783 @end table
7784
7785 For example, to generate a frei0r partik0l source with size 200x200
7786 and frame rate 10 which is overlayed on the overlay filter main input:
7787 @example
7788 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
7789 @end example
7790
7791 @section life
7792
7793 Generate a life pattern.
7794
7795 This source is based on a generalization of John Conway's life game.
7796
7797 The sourced input represents a life grid, each pixel represents a cell
7798 which can be in one of two possible states, alive or dead. Every cell
7799 interacts with its eight neighbours, which are the cells that are
7800 horizontally, vertically, or diagonally adjacent.
7801
7802 At each interaction the grid evolves according to the adopted rule,
7803 which specifies the number of neighbor alive cells which will make a
7804 cell stay alive or born. The @option{rule} option allows to specify
7805 the rule to adopt.
7806
7807 This source accepts the following options:
7808
7809 @table @option
7810 @item filename, f
7811 Set the file from which to read the initial grid state. In the file,
7812 each non-whitespace character is considered an alive cell, and newline
7813 is used to delimit the end of each row.
7814
7815 If this option is not specified, the initial grid is generated
7816 randomly.
7817
7818 @item rate, r
7819 Set the video rate, that is the number of frames generated per second.
7820 Default is 25.
7821
7822 @item random_fill_ratio, ratio
7823 Set the random fill ratio for the initial random grid. It is a
7824 floating point number value ranging from 0 to 1, defaults to 1/PHI.
7825 It is ignored when a file is specified.
7826
7827 @item random_seed, seed
7828 Set the seed for filling the initial random grid, must be an integer
7829 included between 0 and UINT32_MAX. If not specified, or if explicitly
7830 set to -1, the filter will try to use a good random seed on a best
7831 effort basis.
7832
7833 @item rule
7834 Set the life rule.
7835
7836 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
7837 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
7838 @var{NS} specifies the number of alive neighbor cells which make a
7839 live cell stay alive, and @var{NB} the number of alive neighbor cells
7840 which make a dead cell to become alive (i.e. to "born").
7841 "s" and "b" can be used in place of "S" and "B", respectively.
7842
7843 Alternatively a rule can be specified by an 18-bits integer. The 9
7844 high order bits are used to encode the next cell state if it is alive
7845 for each number of neighbor alive cells, the low order bits specify
7846 the rule for "borning" new cells. Higher order bits encode for an
7847 higher number of neighbor cells.
7848 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
7849 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
7850
7851 Default value is "S23/B3", which is the original Conway's game of life
7852 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
7853 cells, and will born a new cell if there are three alive cells around
7854 a dead cell.
7855
7856 @item size, s
7857 Set the size of the output video.
7858
7859 If @option{filename} is specified, the size is set by default to the
7860 same size of the input file. If @option{size} is set, it must contain
7861 the size specified in the input file, and the initial grid defined in
7862 that file is centered in the larger resulting area.
7863
7864 If a filename is not specified, the size value defaults to "320x240"
7865 (used for a randomly generated initial grid).
7866
7867 @item stitch
7868 If set to 1, stitch the left and right grid edges together, and the
7869 top and bottom edges also. Defaults to 1.
7870
7871 @item mold
7872 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
7873 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
7874 value from 0 to 255.
7875
7876 @item life_color
7877 Set the color of living (or new born) cells.
7878
7879 @item death_color
7880 Set the color of dead cells. If @option{mold} is set, this is the first color
7881 used to represent a dead cell.
7882
7883 @item mold_color
7884 Set mold color, for definitely dead and moldy cells.
7885 @end table
7886
7887 @subsection Examples
7888
7889 @itemize
7890 @item
7891 Read a grid from @file{pattern}, and center it on a grid of size
7892 300x300 pixels:
7893 @example
7894 life=f=pattern:s=300x300
7895 @end example
7896
7897 @item
7898 Generate a random grid of size 200x200, with a fill ratio of 2/3:
7899 @example
7900 life=ratio=2/3:s=200x200
7901 @end example
7902
7903 @item
7904 Specify a custom rule for evolving a randomly generated grid:
7905 @example
7906 life=rule=S14/B34
7907 @end example
7908
7909 @item
7910 Full example with slow death effect (mold) using @command{ffplay}:
7911 @example
7912 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
7913 @end example
7914 @end itemize
7915
7916 @anchor{color}
7917 @anchor{haldclutsrc}
7918 @anchor{nullsrc}
7919 @anchor{rgbtestsrc}
7920 @anchor{smptebars}
7921 @anchor{smptehdbars}
7922 @anchor{testsrc}
7923 @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
7924
7925 The @code{color} source provides an uniformly colored input.
7926
7927 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
7928 @ref{haldclut} filter.
7929
7930 The @code{nullsrc} source returns unprocessed video frames. It is
7931 mainly useful to be employed in analysis / debugging tools, or as the
7932 source for filters which ignore the input data.
7933
7934 The @code{rgbtestsrc} source generates an RGB test pattern useful for
7935 detecting RGB vs BGR issues. You should see a red, green and blue
7936 stripe from top to bottom.
7937
7938 The @code{smptebars} source generates a color bars pattern, based on
7939 the SMPTE Engineering Guideline EG 1-1990.
7940
7941 The @code{smptehdbars} source generates a color bars pattern, based on
7942 the SMPTE RP 219-2002.
7943
7944 The @code{testsrc} source generates a test video pattern, showing a
7945 color pattern, a scrolling gradient and a timestamp. This is mainly
7946 intended for testing purposes.
7947
7948 The sources accept the following options:
7949
7950 @table @option
7951
7952 @item color, c
7953 Specify the color of the source, only available in the @code{color}
7954 source. It can be the name of a color (case insensitive match) or a
7955 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
7956 default value is "black".
7957
7958 @item level
7959 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
7960 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
7961 pixels to be used as identity matrix for 3D lookup tables. Each component is
7962 coded on a @code{1/(N*N)} scale.
7963
7964 @item size, s
7965 Specify the size of the sourced video, it may be a string of the form
7966 @var{width}x@var{height}, or the name of a size abbreviation. The
7967 default value is "320x240".
7968
7969 This option is not available with the @code{haldclutsrc} filter.
7970
7971 @item rate, r
7972 Specify the frame rate of the sourced video, as the number of frames
7973 generated per second. It has to be a string in the format
7974 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
7975 number or a valid video frame rate abbreviation. The default value is
7976 "25".
7977
7978 @item sar
7979 Set the sample aspect ratio of the sourced video.
7980
7981 @item duration, d
7982 Set the video duration of the sourced video. The accepted syntax is:
7983 @example
7984 [-]HH[:MM[:SS[.m...]]]
7985 [-]S+[.m...]
7986 @end example
7987 See also the function @code{av_parse_time()}.
7988
7989 If not specified, or the expressed duration is negative, the video is
7990 supposed to be generated forever.
7991
7992 @item decimals, n
7993 Set the number of decimals to show in the timestamp, only available in the
7994 @code{testsrc} source.
7995
7996 The displayed timestamp value will correspond to the original
7997 timestamp value multiplied by the power of 10 of the specified
7998 value. Default value is 0.
7999 @end table
8000
8001 For example the following:
8002 @example
8003 testsrc=duration=5.3:size=qcif:rate=10
8004 @end example
8005
8006 will generate a video with a duration of 5.3 seconds, with size
8007 176x144 and a frame rate of 10 frames per second.
8008
8009 The following graph description will generate a red source
8010 with an opacity of 0.2, with size "qcif" and a frame rate of 10
8011 frames per second.
8012 @example
8013 color=c=red@@0.2:s=qcif:r=10
8014 @end example
8015
8016 If the input content is to be ignored, @code{nullsrc} can be used. The
8017 following command generates noise in the luminance plane by employing
8018 the @code{geq} filter:
8019 @example
8020 nullsrc=s=256x256, geq=random(1)*255:128:128
8021 @end example
8022
8023 @subsection Commands
8024
8025 The @code{color} source supports the following commands:
8026
8027 @table @option
8028 @item c, color
8029 Set the color of the created image. Accepts the same syntax of the
8030 corresponding @option{color} option.
8031 @end table
8032
8033 @c man end VIDEO SOURCES
8034
8035 @chapter Video Sinks
8036 @c man begin VIDEO SINKS
8037
8038 Below is a description of the currently available video sinks.
8039
8040 @section buffersink
8041
8042 Buffer video frames, and make them available to the end of the filter
8043 graph.
8044
8045 This sink is mainly intended for a programmatic use, in particular
8046 through the interface defined in @file{libavfilter/buffersink.h}
8047 or the options system.
8048
8049 It accepts a pointer to an AVBufferSinkContext structure, which
8050 defines the incoming buffers' formats, to be passed as the opaque
8051 parameter to @code{avfilter_init_filter} for initialization.
8052
8053 @section nullsink
8054
8055 Null video sink, do absolutely nothing with the input video. It is
8056 mainly useful as a template and to be employed in analysis / debugging
8057 tools.
8058
8059 @c man end VIDEO SINKS
8060
8061 @chapter Multimedia Filters
8062 @c man begin MULTIMEDIA FILTERS
8063
8064 Below is a description of the currently available multimedia filters.
8065
8066 @section avectorscope
8067
8068 Convert input audio to a video output, representing the audio vector
8069 scope.
8070
8071 The filter is used to measure the difference between channels of stereo
8072 audio stream. A monoaural signal, consisting of identical left and right
8073 signal, results in straight vertical line. Any stereo separation is visible
8074 as a deviation from this line, creating a Lissajous figure.
8075 If the straight (or deviation from it) but horizontal line appears this
8076 indicates that the left and right channels are out of phase.
8077
8078 The filter accepts the following options:
8079
8080 @table @option
8081 @item mode, m
8082 Set the vectorscope mode.
8083
8084 Available values are:
8085 @table @samp
8086 @item lissajous
8087 Lissajous rotated by 45 degrees.
8088
8089 @item lissajous_xy
8090 Same as above but not rotated.
8091 @end table
8092
8093 Default value is @samp{lissajous}.
8094
8095 @item size, s
8096 Set the video size for the output. Default value is @code{400x400}.
8097
8098 @item rate, r
8099 Set the output frame rate. Default value is @code{25}.
8100
8101 @item rc
8102 @item gc
8103 @item bc
8104 Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
8105 Allowed range is @code{[0, 255]}.
8106
8107 @item rf
8108 @item gf
8109 @item bf
8110 Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
8111 Allowed range is @code{[0, 255]}.
8112
8113 @item zoom
8114 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
8115 @end table
8116
8117 @subsection Examples
8118
8119 @itemize
8120 @item
8121 Complete example using @command{ffplay}:
8122 @example
8123 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
8124              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
8125 @end example
8126 @end itemize
8127
8128 @section concat
8129
8130 Concatenate audio and video streams, joining them together one after the
8131 other.
8132
8133 The filter works on segments of synchronized video and audio streams. All
8134 segments must have the same number of streams of each type, and that will
8135 also be the number of streams at output.
8136
8137 The filter accepts the following options:
8138
8139 @table @option
8140
8141 @item n
8142 Set the number of segments. Default is 2.
8143
8144 @item v
8145 Set the number of output video streams, that is also the number of video
8146 streams in each segment. Default is 1.
8147
8148 @item a
8149 Set the number of output audio streams, that is also the number of video
8150 streams in each segment. Default is 0.
8151
8152 @item unsafe
8153 Activate unsafe mode: do not fail if segments have a different format.
8154
8155 @end table
8156
8157 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
8158 @var{a} audio outputs.
8159
8160 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
8161 segment, in the same order as the outputs, then the inputs for the second
8162 segment, etc.
8163
8164 Related streams do not always have exactly the same duration, for various
8165 reasons including codec frame size or sloppy authoring. For that reason,
8166 related synchronized streams (e.g. a video and its audio track) should be
8167 concatenated at once. The concat filter will use the duration of the longest
8168 stream in each segment (except the last one), and if necessary pad shorter
8169 audio streams with silence.
8170
8171 For this filter to work correctly, all segments must start at timestamp 0.
8172
8173 All corresponding streams must have the same parameters in all segments; the
8174 filtering system will automatically select a common pixel format for video
8175 streams, and a common sample format, sample rate and channel layout for
8176 audio streams, but other settings, such as resolution, must be converted
8177 explicitly by the user.
8178
8179 Different frame rates are acceptable but will result in variable frame rate
8180 at output; be sure to configure the output file to handle it.
8181
8182 @subsection Examples
8183
8184 @itemize
8185 @item
8186 Concatenate an opening, an episode and an ending, all in bilingual version
8187 (video in stream 0, audio in streams 1 and 2):
8188 @example
8189 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
8190   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
8191    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
8192   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
8193 @end example
8194
8195 @item
8196 Concatenate two parts, handling audio and video separately, using the
8197 (a)movie sources, and adjusting the resolution:
8198 @example
8199 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
8200 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
8201 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
8202 @end example
8203 Note that a desync will happen at the stitch if the audio and video streams
8204 do not have exactly the same duration in the first file.
8205
8206 @end itemize
8207
8208 @section ebur128
8209
8210 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
8211 it unchanged. By default, it logs a message at a frequency of 10Hz with the
8212 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
8213 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
8214
8215 The filter also has a video output (see the @var{video} option) with a real
8216 time graph to observe the loudness evolution. The graphic contains the logged
8217 message mentioned above, so it is not printed anymore when this option is set,
8218 unless the verbose logging is set. The main graphing area contains the
8219 short-term loudness (3 seconds of analysis), and the gauge on the right is for
8220 the momentary loudness (400 milliseconds).
8221
8222 More information about the Loudness Recommendation EBU R128 on
8223 @url{http://tech.ebu.ch/loudness}.
8224
8225 The filter accepts the following options:
8226
8227 @table @option
8228
8229 @item video
8230 Activate the video output. The audio stream is passed unchanged whether this
8231 option is set or no. The video stream will be the first output stream if
8232 activated. Default is @code{0}.
8233
8234 @item size
8235 Set the video size. This option is for video only. Default and minimum
8236 resolution is @code{640x480}.
8237
8238 @item meter
8239 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
8240 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
8241 other integer value between this range is allowed.
8242
8243 @item metadata
8244 Set metadata injection. If set to @code{1}, the audio input will be segmented
8245 into 100ms output frames, each of them containing various loudness information
8246 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
8247
8248 Default is @code{0}.
8249
8250 @item framelog
8251 Force the frame logging level.
8252
8253 Available values are:
8254 @table @samp
8255 @item info
8256 information logging level
8257 @item verbose
8258 verbose logging level
8259 @end table
8260
8261 By default, the logging level is set to @var{info}. If the @option{video} or
8262 the @option{metadata} options are set, it switches to @var{verbose}.
8263 @end table
8264
8265 @subsection Examples
8266
8267 @itemize
8268 @item
8269 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
8270 @example
8271 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
8272 @end example
8273
8274 @item
8275 Run an analysis with @command{ffmpeg}:
8276 @example
8277 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
8278 @end example
8279 @end itemize
8280
8281 @section interleave, ainterleave
8282
8283 Temporally interleave frames from several inputs.
8284
8285 @code{interleave} works with video inputs, @code{ainterleave} with audio.
8286
8287 These filters read frames from several inputs and send the oldest
8288 queued frame to the output.
8289
8290 Input streams must have a well defined, monotonically increasing frame
8291 timestamp values.
8292
8293 In order to submit one frame to output, these filters need to enqueue
8294 at least one frame for each input, so they cannot work in case one
8295 input is not yet terminated and will not receive incoming frames.
8296
8297 For example consider the case when one input is a @code{select} filter
8298 which always drop input frames. The @code{interleave} filter will keep
8299 reading from that input, but it will never be able to send new frames
8300 to output until the input will send an end-of-stream signal.
8301
8302 Also, depending on inputs synchronization, the filters will drop
8303 frames in case one input receives more frames than the other ones, and
8304 the queue is already filled.
8305
8306 These filters accept the following options:
8307
8308 @table @option
8309 @item nb_inputs, n
8310 Set the number of different inputs, it is 2 by default.
8311 @end table
8312
8313 @subsection Examples
8314
8315 @itemize
8316 @item
8317 Interleave frames belonging to different streams using @command{ffmpeg}:
8318 @example
8319 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
8320 @end example
8321
8322 @item
8323 Add flickering blur effect:
8324 @example
8325 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
8326 @end example
8327 @end itemize
8328
8329 @section perms, aperms
8330
8331 Set read/write permissions for the output frames.
8332
8333 These filters are mainly aimed at developers to test direct path in the
8334 following filter in the filtergraph.
8335
8336 The filters accept the following options:
8337
8338 @table @option
8339 @item mode
8340 Select the permissions mode.
8341
8342 It accepts the following values:
8343 @table @samp
8344 @item none
8345 Do nothing. This is the default.
8346 @item ro
8347 Set all the output frames read-only.
8348 @item rw
8349 Set all the output frames directly writable.
8350 @item toggle
8351 Make the frame read-only if writable, and writable if read-only.
8352 @item random
8353 Set each output frame read-only or writable randomly.
8354 @end table
8355
8356 @item seed
8357 Set the seed for the @var{random} mode, must be an integer included between
8358 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
8359 @code{-1}, the filter will try to use a good random seed on a best effort
8360 basis.
8361 @end table
8362
8363 Note: in case of auto-inserted filter between the permission filter and the
8364 following one, the permission might not be received as expected in that
8365 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
8366 perms/aperms filter can avoid this problem.
8367
8368 @section select, aselect
8369
8370 Select frames to pass in output.
8371
8372 This filter accepts the following options:
8373
8374 @table @option
8375
8376 @item expr, e
8377 Set expression, which is evaluated for each input frame.
8378
8379 If the expression is evaluated to zero, the frame is discarded.
8380
8381 If the evaluation result is negative or NaN, the frame is sent to the
8382 first output; otherwise it is sent to the output with index
8383 @code{ceil(val)-1}, assuming that the input index starts from 0.
8384
8385 For example a value of @code{1.2} corresponds to the output with index
8386 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
8387
8388 @item outputs, n
8389 Set the number of outputs. The output to which to send the selected
8390 frame is based on the result of the evaluation. Default value is 1.
8391 @end table
8392
8393 The expression can contain the following constants:
8394
8395 @table @option
8396 @item n
8397 the sequential number of the filtered frame, starting from 0
8398
8399 @item selected_n
8400 the sequential number of the selected frame, starting from 0
8401
8402 @item prev_selected_n
8403 the sequential number of the last selected frame, NAN if undefined
8404
8405 @item TB
8406 timebase of the input timestamps
8407
8408 @item pts
8409 the PTS (Presentation TimeStamp) of the filtered video frame,
8410 expressed in @var{TB} units, NAN if undefined
8411
8412 @item t
8413 the PTS (Presentation TimeStamp) of the filtered video frame,
8414 expressed in seconds, NAN if undefined
8415
8416 @item prev_pts
8417 the PTS of the previously filtered video frame, NAN if undefined
8418
8419 @item prev_selected_pts
8420 the PTS of the last previously filtered video frame, NAN if undefined
8421
8422 @item prev_selected_t
8423 the PTS of the last previously selected video frame, NAN if undefined
8424
8425 @item start_pts
8426 the PTS of the first video frame in the video, NAN if undefined
8427
8428 @item start_t
8429 the time of the first video frame in the video, NAN if undefined
8430
8431 @item pict_type @emph{(video only)}
8432 the type of the filtered frame, can assume one of the following
8433 values:
8434 @table @option
8435 @item I
8436 @item P
8437 @item B
8438 @item S
8439 @item SI
8440 @item SP
8441 @item BI
8442 @end table
8443
8444 @item interlace_type @emph{(video only)}
8445 the frame interlace type, can assume one of the following values:
8446 @table @option
8447 @item PROGRESSIVE
8448 the frame is progressive (not interlaced)
8449 @item TOPFIRST
8450 the frame is top-field-first
8451 @item BOTTOMFIRST
8452 the frame is bottom-field-first
8453 @end table
8454
8455 @item consumed_sample_n @emph{(audio only)}
8456 the number of selected samples before the current frame
8457
8458 @item samples_n @emph{(audio only)}
8459 the number of samples in the current frame
8460
8461 @item sample_rate @emph{(audio only)}
8462 the input sample rate
8463
8464 @item key
8465 1 if the filtered frame is a key-frame, 0 otherwise
8466
8467 @item pos
8468 the position in the file of the filtered frame, -1 if the information
8469 is not available (e.g. for synthetic video)
8470
8471 @item scene @emph{(video only)}
8472 value between 0 and 1 to indicate a new scene; a low value reflects a low
8473 probability for the current frame to introduce a new scene, while a higher
8474 value means the current frame is more likely to be one (see the example below)
8475
8476 @end table
8477
8478 The default value of the select expression is "1".
8479
8480 @subsection Examples
8481
8482 @itemize
8483 @item
8484 Select all frames in input:
8485 @example
8486 select
8487 @end example
8488
8489 The example above is the same as:
8490 @example
8491 select=1
8492 @end example
8493
8494 @item
8495 Skip all frames:
8496 @example
8497 select=0
8498 @end example
8499
8500 @item
8501 Select only I-frames:
8502 @example
8503 select='eq(pict_type\,I)'
8504 @end example
8505
8506 @item
8507 Select one frame every 100:
8508 @example
8509 select='not(mod(n\,100))'
8510 @end example
8511
8512 @item
8513 Select only frames contained in the 10-20 time interval:
8514 @example
8515 select='gte(t\,10)*lte(t\,20)'
8516 @end example
8517
8518 @item
8519 Select only I frames contained in the 10-20 time interval:
8520 @example
8521 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
8522 @end example
8523
8524 @item
8525 Select frames with a minimum distance of 10 seconds:
8526 @example
8527 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
8528 @end example
8529
8530 @item
8531 Use aselect to select only audio frames with samples number > 100:
8532 @example
8533 aselect='gt(samples_n\,100)'
8534 @end example
8535
8536 @item
8537 Create a mosaic of the first scenes:
8538 @example
8539 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
8540 @end example
8541
8542 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
8543 choice.
8544
8545 @item
8546 Send even and odd frames to separate outputs, and compose them:
8547 @example
8548 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
8549 @end example
8550 @end itemize
8551
8552 @section sendcmd, asendcmd
8553
8554 Send commands to filters in the filtergraph.
8555
8556 These filters read commands to be sent to other filters in the
8557 filtergraph.
8558
8559 @code{sendcmd} must be inserted between two video filters,
8560 @code{asendcmd} must be inserted between two audio filters, but apart
8561 from that they act the same way.
8562
8563 The specification of commands can be provided in the filter arguments
8564 with the @var{commands} option, or in a file specified by the
8565 @var{filename} option.
8566
8567 These filters accept the following options:
8568 @table @option
8569 @item commands, c
8570 Set the commands to be read and sent to the other filters.
8571 @item filename, f
8572 Set the filename of the commands to be read and sent to the other
8573 filters.
8574 @end table
8575
8576 @subsection Commands syntax
8577
8578 A commands description consists of a sequence of interval
8579 specifications, comprising a list of commands to be executed when a
8580 particular event related to that interval occurs. The occurring event
8581 is typically the current frame time entering or leaving a given time
8582 interval.
8583
8584 An interval is specified by the following syntax:
8585 @example
8586 @var{START}[-@var{END}] @var{COMMANDS};
8587 @end example
8588
8589 The time interval is specified by the @var{START} and @var{END} times.
8590 @var{END} is optional and defaults to the maximum time.
8591
8592 The current frame time is considered within the specified interval if
8593 it is included in the interval [@var{START}, @var{END}), that is when
8594 the time is greater or equal to @var{START} and is lesser than
8595 @var{END}.
8596
8597 @var{COMMANDS} consists of a sequence of one or more command
8598 specifications, separated by ",", relating to that interval.  The
8599 syntax of a command specification is given by:
8600 @example
8601 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
8602 @end example
8603
8604 @var{FLAGS} is optional and specifies the type of events relating to
8605 the time interval which enable sending the specified command, and must
8606 be a non-null sequence of identifier flags separated by "+" or "|" and
8607 enclosed between "[" and "]".
8608
8609 The following flags are recognized:
8610 @table @option
8611 @item enter
8612 The command is sent when the current frame timestamp enters the
8613 specified interval. In other words, the command is sent when the
8614 previous frame timestamp was not in the given interval, and the
8615 current is.
8616
8617 @item leave
8618 The command is sent when the current frame timestamp leaves the
8619 specified interval. In other words, the command is sent when the
8620 previous frame timestamp was in the given interval, and the
8621 current is not.
8622 @end table
8623
8624 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
8625 assumed.
8626
8627 @var{TARGET} specifies the target of the command, usually the name of
8628 the filter class or a specific filter instance name.
8629
8630 @var{COMMAND} specifies the name of the command for the target filter.
8631
8632 @var{ARG} is optional and specifies the optional list of argument for
8633 the given @var{COMMAND}.
8634
8635 Between one interval specification and another, whitespaces, or
8636 sequences of characters starting with @code{#} until the end of line,
8637 are ignored and can be used to annotate comments.
8638
8639 A simplified BNF description of the commands specification syntax
8640 follows:
8641 @example
8642 @var{COMMAND_FLAG}  ::= "enter" | "leave"
8643 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
8644 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
8645 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
8646 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
8647 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
8648 @end example
8649
8650 @subsection Examples
8651
8652 @itemize
8653 @item
8654 Specify audio tempo change at second 4:
8655 @example
8656 asendcmd=c='4.0 atempo tempo 1.5',atempo
8657 @end example
8658
8659 @item
8660 Specify a list of drawtext and hue commands in a file.
8661 @example
8662 # show text in the interval 5-10
8663 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
8664          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
8665
8666 # desaturate the image in the interval 15-20
8667 15.0-20.0 [enter] hue s 0,
8668           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
8669           [leave] hue s 1,
8670           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
8671
8672 # apply an exponential saturation fade-out effect, starting from time 25
8673 25 [enter] hue s exp(25-t)
8674 @end example
8675
8676 A filtergraph allowing to read and process the above command list
8677 stored in a file @file{test.cmd}, can be specified with:
8678 @example
8679 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
8680 @end example
8681 @end itemize
8682
8683 @anchor{setpts}
8684 @section setpts, asetpts
8685
8686 Change the PTS (presentation timestamp) of the input frames.
8687
8688 @code{setpts} works on video frames, @code{asetpts} on audio frames.
8689
8690 This filter accepts the following options:
8691
8692 @table @option
8693
8694 @item expr
8695 The expression which is evaluated for each frame to construct its timestamp.
8696
8697 @end table
8698
8699 The expression is evaluated through the eval API and can contain the following
8700 constants:
8701
8702 @table @option
8703 @item FRAME_RATE
8704 frame rate, only defined for constant frame-rate video
8705
8706 @item PTS
8707 the presentation timestamp in input
8708
8709 @item N
8710 the count of the input frame for video or the number of consumed samples,
8711 not including the current frame for audio, starting from 0.
8712
8713 @item NB_CONSUMED_SAMPLES
8714 the number of consumed samples, not including the current frame (only
8715 audio)
8716
8717 @item NB_SAMPLES, S
8718 the number of samples in the current frame (only audio)
8719
8720 @item SAMPLE_RATE, SR
8721 audio sample rate
8722
8723 @item STARTPTS
8724 the PTS of the first frame
8725
8726 @item STARTT
8727 the time in seconds of the first frame
8728
8729 @item INTERLACED
8730 tell if the current frame is interlaced
8731
8732 @item T
8733 the time in seconds of the current frame
8734
8735 @item TB
8736 the time base
8737
8738 @item POS
8739 original position in the file of the frame, or undefined if undefined
8740 for the current frame
8741
8742 @item PREV_INPTS
8743 previous input PTS
8744
8745 @item PREV_INT
8746 previous input time in seconds
8747
8748 @item PREV_OUTPTS
8749 previous output PTS
8750
8751 @item PREV_OUTT
8752 previous output time in seconds
8753
8754 @item RTCTIME
8755 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
8756 instead.
8757
8758 @item RTCSTART
8759 wallclock (RTC) time at the start of the movie in microseconds
8760 @end table
8761
8762 @subsection Examples
8763
8764 @itemize
8765 @item
8766 Start counting PTS from zero
8767 @example
8768 setpts=PTS-STARTPTS
8769 @end example
8770
8771 @item
8772 Apply fast motion effect:
8773 @example
8774 setpts=0.5*PTS
8775 @end example
8776
8777 @item
8778 Apply slow motion effect:
8779 @example
8780 setpts=2.0*PTS
8781 @end example
8782
8783 @item
8784 Set fixed rate of 25 frames per second:
8785 @example
8786 setpts=N/(25*TB)
8787 @end example
8788
8789 @item
8790 Set fixed rate 25 fps with some jitter:
8791 @example
8792 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
8793 @end example
8794
8795 @item
8796 Apply an offset of 10 seconds to the input PTS:
8797 @example
8798 setpts=PTS+10/TB
8799 @end example
8800
8801 @item
8802 Generate timestamps from a "live source" and rebase onto the current timebase:
8803 @example
8804 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
8805 @end example
8806
8807 @item
8808 Generate timestamps by counting samples:
8809 @example
8810 asetpts=N/SR/TB
8811 @end example
8812
8813 @end itemize
8814
8815 @section settb, asettb
8816
8817 Set the timebase to use for the output frames timestamps.
8818 It is mainly useful for testing timebase configuration.
8819
8820 This filter accepts the following options:
8821
8822 @table @option
8823
8824 @item expr, tb
8825 The expression which is evaluated into the output timebase.
8826
8827 @end table
8828
8829 The value for @option{tb} is an arithmetic expression representing a
8830 rational. The expression can contain the constants "AVTB" (the default
8831 timebase), "intb" (the input timebase) and "sr" (the sample rate,
8832 audio only). Default value is "intb".
8833
8834 @subsection Examples
8835
8836 @itemize
8837 @item
8838 Set the timebase to 1/25:
8839 @example
8840 settb=expr=1/25
8841 @end example
8842
8843 @item
8844 Set the timebase to 1/10:
8845 @example
8846 settb=expr=0.1
8847 @end example
8848
8849 @item
8850 Set the timebase to 1001/1000:
8851 @example
8852 settb=1+0.001
8853 @end example
8854
8855 @item
8856 Set the timebase to 2*intb:
8857 @example
8858 settb=2*intb
8859 @end example
8860
8861 @item
8862 Set the default timebase value:
8863 @example
8864 settb=AVTB
8865 @end example
8866 @end itemize
8867
8868 @section showspectrum
8869
8870 Convert input audio to a video output, representing the audio frequency
8871 spectrum.
8872
8873 The filter accepts the following options:
8874
8875 @table @option
8876 @item size, s
8877 Specify the video size for the output. Default value is @code{640x512}.
8878
8879 @item slide
8880 Specify if the spectrum should slide along the window. Default value is
8881 @code{0}.
8882
8883 @item mode
8884 Specify display mode.
8885
8886 It accepts the following values:
8887 @table @samp
8888 @item combined
8889 all channels are displayed in the same row
8890 @item separate
8891 all channels are displayed in separate rows
8892 @end table
8893
8894 Default value is @samp{combined}.
8895
8896 @item color
8897 Specify display color mode.
8898
8899 It accepts the following values:
8900 @table @samp
8901 @item channel
8902 each channel is displayed in a separate color
8903 @item intensity
8904 each channel is is displayed using the same color scheme
8905 @end table
8906
8907 Default value is @samp{channel}.
8908
8909 @item scale
8910 Specify scale used for calculating intensity color values.
8911
8912 It accepts the following values:
8913 @table @samp
8914 @item lin
8915 linear
8916 @item sqrt
8917 square root, default
8918 @item cbrt
8919 cubic root
8920 @item log
8921 logarithmic
8922 @end table
8923
8924 Default value is @samp{sqrt}.
8925
8926 @item saturation
8927 Set saturation modifier for displayed colors. Negative values provide
8928 alternative color scheme. @code{0} is no saturation at all.
8929 Saturation must be in [-10.0, 10.0] range.
8930 Default value is @code{1}.
8931 @end table
8932
8933 The usage is very similar to the showwaves filter; see the examples in that
8934 section.
8935
8936 @subsection Examples
8937
8938 @itemize
8939 @item
8940 Large window with logarithmic color scaling:
8941 @example
8942 showspectrum=s=1280x480:scale=log
8943 @end example
8944
8945 @item
8946 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
8947 @example
8948 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
8949              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
8950 @end example
8951 @end itemize
8952
8953 @section showwaves
8954
8955 Convert input audio to a video output, representing the samples waves.
8956
8957 The filter accepts the following options:
8958
8959 @table @option
8960 @item size, s
8961 Specify the video size for the output. Default value is "600x240".
8962
8963 @item mode
8964 Set display mode.
8965
8966 Available values are:
8967 @table @samp
8968 @item point
8969 Draw a point for each sample.
8970
8971 @item line
8972 Draw a vertical line for each sample.
8973 @end table
8974
8975 Default value is @code{point}.
8976
8977 @item n
8978 Set the number of samples which are printed on the same column. A
8979 larger value will decrease the frame rate. Must be a positive
8980 integer. This option can be set only if the value for @var{rate}
8981 is not explicitly specified.
8982
8983 @item rate, r
8984 Set the (approximate) output frame rate. This is done by setting the
8985 option @var{n}. Default value is "25".
8986
8987 @end table
8988
8989 @subsection Examples
8990
8991 @itemize
8992 @item
8993 Output the input file audio and the corresponding video representation
8994 at the same time:
8995 @example
8996 amovie=a.mp3,asplit[out0],showwaves[out1]
8997 @end example
8998
8999 @item
9000 Create a synthetic signal and show it with showwaves, forcing a
9001 frame rate of 30 frames per second:
9002 @example
9003 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
9004 @end example
9005 @end itemize
9006
9007 @section split, asplit
9008
9009 Split input into several identical outputs.
9010
9011 @code{asplit} works with audio input, @code{split} with video.
9012
9013 The filter accepts a single parameter which specifies the number of outputs. If
9014 unspecified, it defaults to 2.
9015
9016 @subsection Examples
9017
9018 @itemize
9019 @item
9020 Create two separate outputs from the same input:
9021 @example
9022 [in] split [out0][out1]
9023 @end example
9024
9025 @item
9026 To create 3 or more outputs, you need to specify the number of
9027 outputs, like in:
9028 @example
9029 [in] asplit=3 [out0][out1][out2]
9030 @end example
9031
9032 @item
9033 Create two separate outputs from the same input, one cropped and
9034 one padded:
9035 @example
9036 [in] split [splitout1][splitout2];
9037 [splitout1] crop=100:100:0:0    [cropout];
9038 [splitout2] pad=200:200:100:100 [padout];
9039 @end example
9040
9041 @item
9042 Create 5 copies of the input audio with @command{ffmpeg}:
9043 @example
9044 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
9045 @end example
9046 @end itemize
9047
9048 @section zmq, azmq
9049
9050 Receive commands sent through a libzmq client, and forward them to
9051 filters in the filtergraph.
9052
9053 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
9054 must be inserted between two video filters, @code{azmq} between two
9055 audio filters.
9056
9057 To enable these filters you need to install the libzmq library and
9058 headers and configure FFmpeg with @code{--enable-libzmq}.
9059
9060 For more information about libzmq see:
9061 @url{http://www.zeromq.org/}
9062
9063 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
9064 receives messages sent through a network interface defined by the
9065 @option{bind_address} option.
9066
9067 The received message must be in the form:
9068 @example
9069 @var{TARGET} @var{COMMAND} [@var{ARG}]
9070 @end example
9071
9072 @var{TARGET} specifies the target of the command, usually the name of
9073 the filter class or a specific filter instance name.
9074
9075 @var{COMMAND} specifies the name of the command for the target filter.
9076
9077 @var{ARG} is optional and specifies the optional argument list for the
9078 given @var{COMMAND}.
9079
9080 Upon reception, the message is processed and the corresponding command
9081 is injected into the filtergraph. Depending on the result, the filter
9082 will send a reply to the client, adopting the format:
9083 @example
9084 @var{ERROR_CODE} @var{ERROR_REASON}
9085 @var{MESSAGE}
9086 @end example
9087
9088 @var{MESSAGE} is optional.
9089
9090 @subsection Examples
9091
9092 Look at @file{tools/zmqsend} for an example of a zmq client which can
9093 be used to send commands processed by these filters.
9094
9095 Consider the following filtergraph generated by @command{ffplay}
9096 @example
9097 ffplay -dumpgraph 1 -f lavfi "
9098 color=s=100x100:c=red  [l];
9099 color=s=100x100:c=blue [r];
9100 nullsrc=s=200x100, zmq [bg];
9101 [bg][l]   overlay      [bg+l];
9102 [bg+l][r] overlay=x=100 "
9103 @end example
9104
9105 To change the color of the left side of the video, the following
9106 command can be used:
9107 @example
9108 echo Parsed_color_0 c yellow | tools/zmqsend
9109 @end example
9110
9111 To change the right side:
9112 @example
9113 echo Parsed_color_1 c pink | tools/zmqsend
9114 @end example
9115
9116 @c man end MULTIMEDIA FILTERS
9117
9118 @chapter Multimedia Sources
9119 @c man begin MULTIMEDIA SOURCES
9120
9121 Below is a description of the currently available multimedia sources.
9122
9123 @section amovie
9124
9125 This is the same as @ref{movie} source, except it selects an audio
9126 stream by default.
9127
9128 @anchor{movie}
9129 @section movie
9130
9131 Read audio and/or video stream(s) from a movie container.
9132
9133 This filter accepts the following options:
9134
9135 @table @option
9136 @item filename
9137 The name of the resource to read (not necessarily a file but also a device or a
9138 stream accessed through some protocol).
9139
9140 @item format_name, f
9141 Specifies the format assumed for the movie to read, and can be either
9142 the name of a container or an input device. If not specified the
9143 format is guessed from @var{movie_name} or by probing.
9144
9145 @item seek_point, sp
9146 Specifies the seek point in seconds, the frames will be output
9147 starting from this seek point, the parameter is evaluated with
9148 @code{av_strtod} so the numerical value may be suffixed by an IS
9149 postfix. Default value is "0".
9150
9151 @item streams, s
9152 Specifies the streams to read. Several streams can be specified,
9153 separated by "+". The source will then have as many outputs, in the
9154 same order. The syntax is explained in the ``Stream specifiers''
9155 section in the ffmpeg manual. Two special names, "dv" and "da" specify
9156 respectively the default (best suited) video and audio stream. Default
9157 is "dv", or "da" if the filter is called as "amovie".
9158
9159 @item stream_index, si
9160 Specifies the index of the video stream to read. If the value is -1,
9161 the best suited video stream will be automatically selected. Default
9162 value is "-1". Deprecated. If the filter is called "amovie", it will select
9163 audio instead of video.
9164
9165 @item loop
9166 Specifies how many times to read the stream in sequence.
9167 If the value is less than 1, the stream will be read again and again.
9168 Default value is "1".
9169
9170 Note that when the movie is looped the source timestamps are not
9171 changed, so it will generate non monotonically increasing timestamps.
9172 @end table
9173
9174 This filter allows to overlay a second video on top of main input of
9175 a filtergraph as shown in this graph:
9176 @example
9177 input -----------> deltapts0 --> overlay --> output
9178                                     ^
9179                                     |
9180 movie --> scale--> deltapts1 -------+
9181 @end example
9182
9183 @subsection Examples
9184
9185 @itemize
9186 @item
9187 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
9188 on top of the input labelled as "in":
9189 @example
9190 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
9191 [in] setpts=PTS-STARTPTS [main];
9192 [main][over] overlay=16:16 [out]
9193 @end example
9194
9195 @item
9196 Read from a video4linux2 device, and overlay it on top of the input
9197 labelled as "in":
9198 @example
9199 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
9200 [in] setpts=PTS-STARTPTS [main];
9201 [main][over] overlay=16:16 [out]
9202 @end example
9203
9204 @item
9205 Read the first video stream and the audio stream with id 0x81 from
9206 dvd.vob; the video is connected to the pad named "video" and the audio is
9207 connected to the pad named "audio":
9208 @example
9209 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
9210 @end example
9211 @end itemize
9212
9213 @c man end MULTIMEDIA SOURCES