]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter: add extrastereo filter
[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 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acrossfade
322
323 Apply cross fade from one input audio stream to another input audio stream.
324 The cross fade is applied for specified duration near the end of first stream.
325
326 The filter accepts the following options:
327
328 @table @option
329 @item nb_samples, ns
330 Specify the number of samples for which the cross fade effect has to last.
331 At the end of the cross fade effect the first input audio will be completely
332 silent. Default is 44100.
333
334 @item duration, d
335 Specify the duration of the cross fade effect. See
336 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
337 for the accepted syntax.
338 By default the duration is determined by @var{nb_samples}.
339 If set this option is used instead of @var{nb_samples}.
340
341 @item overlap, o
342 Should first stream end overlap with second stream start. Default is enabled.
343
344 @item curve1
345 Set curve for cross fade transition for first stream.
346
347 @item curve2
348 Set curve for cross fade transition for second stream.
349
350 For description of available curve types see @ref{afade} filter description.
351 @end table
352
353 @subsection Examples
354
355 @itemize
356 @item
357 Cross fade from one input to another:
358 @example
359 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
360 @end example
361
362 @item
363 Cross fade from one input to another but without overlapping:
364 @example
365 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
366 @end example
367 @end itemize
368
369 @section adelay
370
371 Delay one or more audio channels.
372
373 Samples in delayed channel are filled with silence.
374
375 The filter accepts the following option:
376
377 @table @option
378 @item delays
379 Set list of delays in milliseconds for each channel separated by '|'.
380 At least one delay greater than 0 should be provided.
381 Unused delays will be silently ignored. If number of given delays is
382 smaller than number of channels all remaining channels will not be delayed.
383 @end table
384
385 @subsection Examples
386
387 @itemize
388 @item
389 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
390 the second channel (and any other channels that may be present) unchanged.
391 @example
392 adelay=1500|0|500
393 @end example
394 @end itemize
395
396 @section aecho
397
398 Apply echoing to the input audio.
399
400 Echoes are reflected sound and can occur naturally amongst mountains
401 (and sometimes large buildings) when talking or shouting; digital echo
402 effects emulate this behaviour and are often used to help fill out the
403 sound of a single instrument or vocal. The time difference between the
404 original signal and the reflection is the @code{delay}, and the
405 loudness of the reflected signal is the @code{decay}.
406 Multiple echoes can have different delays and decays.
407
408 A description of the accepted parameters follows.
409
410 @table @option
411 @item in_gain
412 Set input gain of reflected signal. Default is @code{0.6}.
413
414 @item out_gain
415 Set output gain of reflected signal. Default is @code{0.3}.
416
417 @item delays
418 Set list of time intervals in milliseconds between original signal and reflections
419 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
420 Default is @code{1000}.
421
422 @item decays
423 Set list of loudnesses of reflected signals separated by '|'.
424 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
425 Default is @code{0.5}.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Make it sound as if there are twice as many instruments as are actually playing:
433 @example
434 aecho=0.8:0.88:60:0.4
435 @end example
436
437 @item
438 If delay is very short, then it sound like a (metallic) robot playing music:
439 @example
440 aecho=0.8:0.88:6:0.4
441 @end example
442
443 @item
444 A longer delay will sound like an open air concert in the mountains:
445 @example
446 aecho=0.8:0.9:1000:0.3
447 @end example
448
449 @item
450 Same as above but with one more mountain:
451 @example
452 aecho=0.8:0.9:1000|1800:0.3|0.25
453 @end example
454 @end itemize
455
456 @section aeval
457
458 Modify an audio signal according to the specified expressions.
459
460 This filter accepts one or more expressions (one for each channel),
461 which are evaluated and used to modify a corresponding audio signal.
462
463 It accepts the following parameters:
464
465 @table @option
466 @item exprs
467 Set the '|'-separated expressions list for each separate channel. If
468 the number of input channels is greater than the number of
469 expressions, the last specified expression is used for the remaining
470 output channels.
471
472 @item channel_layout, c
473 Set output channel layout. If not specified, the channel layout is
474 specified by the number of expressions. If set to @samp{same}, it will
475 use by default the same input channel layout.
476 @end table
477
478 Each expression in @var{exprs} can contain the following constants and functions:
479
480 @table @option
481 @item ch
482 channel number of the current expression
483
484 @item n
485 number of the evaluated sample, starting from 0
486
487 @item s
488 sample rate
489
490 @item t
491 time of the evaluated sample expressed in seconds
492
493 @item nb_in_channels
494 @item nb_out_channels
495 input and output number of channels
496
497 @item val(CH)
498 the value of input channel with number @var{CH}
499 @end table
500
501 Note: this filter is slow. For faster processing you should use a
502 dedicated filter.
503
504 @subsection Examples
505
506 @itemize
507 @item
508 Half volume:
509 @example
510 aeval=val(ch)/2:c=same
511 @end example
512
513 @item
514 Invert phase of the second channel:
515 @example
516 aeval=val(0)|-val(1)
517 @end example
518 @end itemize
519
520 @anchor{afade}
521 @section afade
522
523 Apply fade-in/out effect to input audio.
524
525 A description of the accepted parameters follows.
526
527 @table @option
528 @item type, t
529 Specify the effect type, can be either @code{in} for fade-in, or
530 @code{out} for a fade-out effect. Default is @code{in}.
531
532 @item start_sample, ss
533 Specify the number of the start sample for starting to apply the fade
534 effect. Default is 0.
535
536 @item nb_samples, ns
537 Specify the number of samples for which the fade effect has to last. At
538 the end of the fade-in effect the output audio will have the same
539 volume as the input audio, at the end of the fade-out transition
540 the output audio will be silence. Default is 44100.
541
542 @item start_time, st
543 Specify the start time of the fade effect. Default is 0.
544 The value must be specified as a time duration; see
545 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
546 for the accepted syntax.
547 If set this option is used instead of @var{start_sample}.
548
549 @item duration, d
550 Specify the duration of the fade effect. See
551 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
552 for the accepted syntax.
553 At the end of the fade-in effect the output audio will have the same
554 volume as the input audio, at the end of the fade-out transition
555 the output audio will be silence.
556 By default the duration is determined by @var{nb_samples}.
557 If set this option is used instead of @var{nb_samples}.
558
559 @item curve
560 Set curve for fade transition.
561
562 It accepts the following values:
563 @table @option
564 @item tri
565 select triangular, linear slope (default)
566 @item qsin
567 select quarter of sine wave
568 @item hsin
569 select half of sine wave
570 @item esin
571 select exponential sine wave
572 @item log
573 select logarithmic
574 @item ipar
575 select inverted parabola
576 @item qua
577 select quadratic
578 @item cub
579 select cubic
580 @item squ
581 select square root
582 @item cbr
583 select cubic root
584 @item par
585 select parabola
586 @item exp
587 select exponential
588 @item iqsin
589 select inverted quarter of sine wave
590 @item ihsin
591 select inverted half of sine wave
592 @item dese
593 select double-exponential seat
594 @item desi
595 select double-exponential sigmoid
596 @end table
597 @end table
598
599 @subsection Examples
600
601 @itemize
602 @item
603 Fade in first 15 seconds of audio:
604 @example
605 afade=t=in:ss=0:d=15
606 @end example
607
608 @item
609 Fade out last 25 seconds of a 900 seconds audio:
610 @example
611 afade=t=out:st=875:d=25
612 @end example
613 @end itemize
614
615 @anchor{aformat}
616 @section aformat
617
618 Set output format constraints for the input audio. The framework will
619 negotiate the most appropriate format to minimize conversions.
620
621 It accepts the following parameters:
622 @table @option
623
624 @item sample_fmts
625 A '|'-separated list of requested sample formats.
626
627 @item sample_rates
628 A '|'-separated list of requested sample rates.
629
630 @item channel_layouts
631 A '|'-separated list of requested channel layouts.
632
633 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
634 for the required syntax.
635 @end table
636
637 If a parameter is omitted, all values are allowed.
638
639 Force the output to either unsigned 8-bit or signed 16-bit stereo
640 @example
641 aformat=sample_fmts=u8|s16:channel_layouts=stereo
642 @end example
643
644 @section allpass
645
646 Apply a two-pole all-pass filter with central frequency (in Hz)
647 @var{frequency}, and filter-width @var{width}.
648 An all-pass filter changes the audio's frequency to phase relationship
649 without changing its frequency to amplitude relationship.
650
651 The filter accepts the following options:
652
653 @table @option
654 @item frequency, f
655 Set frequency in Hz.
656
657 @item width_type
658 Set method to specify band-width of filter.
659 @table @option
660 @item h
661 Hz
662 @item q
663 Q-Factor
664 @item o
665 octave
666 @item s
667 slope
668 @end table
669
670 @item width, w
671 Specify the band-width of a filter in width_type units.
672 @end table
673
674 @anchor{amerge}
675 @section amerge
676
677 Merge two or more audio streams into a single multi-channel stream.
678
679 The filter accepts the following options:
680
681 @table @option
682
683 @item inputs
684 Set the number of inputs. Default is 2.
685
686 @end table
687
688 If the channel layouts of the inputs are disjoint, and therefore compatible,
689 the channel layout of the output will be set accordingly and the channels
690 will be reordered as necessary. If the channel layouts of the inputs are not
691 disjoint, the output will have all the channels of the first input then all
692 the channels of the second input, in that order, and the channel layout of
693 the output will be the default value corresponding to the total number of
694 channels.
695
696 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
697 is FC+BL+BR, then the output will be in 5.1, with the channels in the
698 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
699 first input, b1 is the first channel of the second input).
700
701 On the other hand, if both input are in stereo, the output channels will be
702 in the default order: a1, a2, b1, b2, and the channel layout will be
703 arbitrarily set to 4.0, which may or may not be the expected value.
704
705 All inputs must have the same sample rate, and format.
706
707 If inputs do not have the same duration, the output will stop with the
708 shortest.
709
710 @subsection Examples
711
712 @itemize
713 @item
714 Merge two mono files into a stereo stream:
715 @example
716 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
717 @end example
718
719 @item
720 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
721 @example
722 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
723 @end example
724 @end itemize
725
726 @section amix
727
728 Mixes multiple audio inputs into a single output.
729
730 Note that this filter only supports float samples (the @var{amerge}
731 and @var{pan} audio filters support many formats). If the @var{amix}
732 input has integer samples then @ref{aresample} will be automatically
733 inserted to perform the conversion to float samples.
734
735 For example
736 @example
737 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
738 @end example
739 will mix 3 input audio streams to a single output with the same duration as the
740 first input and a dropout transition time of 3 seconds.
741
742 It accepts the following parameters:
743 @table @option
744
745 @item inputs
746 The number of inputs. If unspecified, it defaults to 2.
747
748 @item duration
749 How to determine the end-of-stream.
750 @table @option
751
752 @item longest
753 The duration of the longest input. (default)
754
755 @item shortest
756 The duration of the shortest input.
757
758 @item first
759 The duration of the first input.
760
761 @end table
762
763 @item dropout_transition
764 The transition time, in seconds, for volume renormalization when an input
765 stream ends. The default value is 2 seconds.
766
767 @end table
768
769 @section anull
770
771 Pass the audio source unchanged to the output.
772
773 @section apad
774
775 Pad the end of an audio stream with silence.
776
777 This can be used together with @command{ffmpeg} @option{-shortest} to
778 extend audio streams to the same length as the video stream.
779
780 A description of the accepted options follows.
781
782 @table @option
783 @item packet_size
784 Set silence packet size. Default value is 4096.
785
786 @item pad_len
787 Set the number of samples of silence to add to the end. After the
788 value is reached, the stream is terminated. This option is mutually
789 exclusive with @option{whole_len}.
790
791 @item whole_len
792 Set the minimum total number of samples in the output audio stream. If
793 the value is longer than the input audio length, silence is added to
794 the end, until the value is reached. This option is mutually exclusive
795 with @option{pad_len}.
796 @end table
797
798 If neither the @option{pad_len} nor the @option{whole_len} option is
799 set, the filter will add silence to the end of the input stream
800 indefinitely.
801
802 @subsection Examples
803
804 @itemize
805 @item
806 Add 1024 samples of silence to the end of the input:
807 @example
808 apad=pad_len=1024
809 @end example
810
811 @item
812 Make sure the audio output will contain at least 10000 samples, pad
813 the input with silence if required:
814 @example
815 apad=whole_len=10000
816 @end example
817
818 @item
819 Use @command{ffmpeg} to pad the audio input with silence, so that the
820 video stream will always result the shortest and will be converted
821 until the end in the output file when using the @option{shortest}
822 option:
823 @example
824 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
825 @end example
826 @end itemize
827
828 @section aphaser
829 Add a phasing effect to the input audio.
830
831 A phaser filter creates series of peaks and troughs in the frequency spectrum.
832 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
833
834 A description of the accepted parameters follows.
835
836 @table @option
837 @item in_gain
838 Set input gain. Default is 0.4.
839
840 @item out_gain
841 Set output gain. Default is 0.74
842
843 @item delay
844 Set delay in milliseconds. Default is 3.0.
845
846 @item decay
847 Set decay. Default is 0.4.
848
849 @item speed
850 Set modulation speed in Hz. Default is 0.5.
851
852 @item type
853 Set modulation type. Default is triangular.
854
855 It accepts the following values:
856 @table @samp
857 @item triangular, t
858 @item sinusoidal, s
859 @end table
860 @end table
861
862 @anchor{aresample}
863 @section aresample
864
865 Resample the input audio to the specified parameters, using the
866 libswresample library. If none are specified then the filter will
867 automatically convert between its input and output.
868
869 This filter is also able to stretch/squeeze the audio data to make it match
870 the timestamps or to inject silence / cut out audio to make it match the
871 timestamps, do a combination of both or do neither.
872
873 The filter accepts the syntax
874 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
875 expresses a sample rate and @var{resampler_options} is a list of
876 @var{key}=@var{value} pairs, separated by ":". See the
877 ffmpeg-resampler manual for the complete list of supported options.
878
879 @subsection Examples
880
881 @itemize
882 @item
883 Resample the input audio to 44100Hz:
884 @example
885 aresample=44100
886 @end example
887
888 @item
889 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
890 samples per second compensation:
891 @example
892 aresample=async=1000
893 @end example
894 @end itemize
895
896 @section asetnsamples
897
898 Set the number of samples per each output audio frame.
899
900 The last output packet may contain a different number of samples, as
901 the filter will flush all the remaining samples when the input audio
902 signal its end.
903
904 The filter accepts the following options:
905
906 @table @option
907
908 @item nb_out_samples, n
909 Set the number of frames per each output audio frame. The number is
910 intended as the number of samples @emph{per each channel}.
911 Default value is 1024.
912
913 @item pad, p
914 If set to 1, the filter will pad the last audio frame with zeroes, so
915 that the last frame will contain the same number of samples as the
916 previous ones. Default value is 1.
917 @end table
918
919 For example, to set the number of per-frame samples to 1234 and
920 disable padding for the last frame, use:
921 @example
922 asetnsamples=n=1234:p=0
923 @end example
924
925 @section asetrate
926
927 Set the sample rate without altering the PCM data.
928 This will result in a change of speed and pitch.
929
930 The filter accepts the following options:
931
932 @table @option
933 @item sample_rate, r
934 Set the output sample rate. Default is 44100 Hz.
935 @end table
936
937 @section ashowinfo
938
939 Show a line containing various information for each input audio frame.
940 The input audio is not modified.
941
942 The shown line contains a sequence of key/value pairs of the form
943 @var{key}:@var{value}.
944
945 The following values are shown in the output:
946
947 @table @option
948 @item n
949 The (sequential) number of the input frame, starting from 0.
950
951 @item pts
952 The presentation timestamp of the input frame, in time base units; the time base
953 depends on the filter input pad, and is usually 1/@var{sample_rate}.
954
955 @item pts_time
956 The presentation timestamp of the input frame in seconds.
957
958 @item pos
959 position of the frame in the input stream, -1 if this information in
960 unavailable and/or meaningless (for example in case of synthetic audio)
961
962 @item fmt
963 The sample format.
964
965 @item chlayout
966 The channel layout.
967
968 @item rate
969 The sample rate for the audio frame.
970
971 @item nb_samples
972 The number of samples (per channel) in the frame.
973
974 @item checksum
975 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
976 audio, the data is treated as if all the planes were concatenated.
977
978 @item plane_checksums
979 A list of Adler-32 checksums for each data plane.
980 @end table
981
982 @anchor{astats}
983 @section astats
984
985 Display time domain statistical information about the audio channels.
986 Statistics are calculated and displayed for each audio channel and,
987 where applicable, an overall figure is also given.
988
989 It accepts the following option:
990 @table @option
991 @item length
992 Short window length in seconds, used for peak and trough RMS measurement.
993 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
994
995 @item metadata
996
997 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
998 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
999 disabled.
1000
1001 Available keys for each channel are:
1002 DC_offset
1003 Min_level
1004 Max_level
1005 Min_difference
1006 Max_difference
1007 Mean_difference
1008 Peak_level
1009 RMS_peak
1010 RMS_trough
1011 Crest_factor
1012 Flat_factor
1013 Peak_count
1014 Bit_depth
1015
1016 and for Overall:
1017 DC_offset
1018 Min_level
1019 Max_level
1020 Min_difference
1021 Max_difference
1022 Mean_difference
1023 Peak_level
1024 RMS_level
1025 RMS_peak
1026 RMS_trough
1027 Flat_factor
1028 Peak_count
1029 Bit_depth
1030 Number_of_samples
1031
1032 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1033 this @code{lavfi.astats.Overall.Peak_count}.
1034
1035 For description what each key means read bellow.
1036
1037 @item reset
1038 Set number of frame after which stats are going to be recalculated.
1039 Default is disabled.
1040 @end table
1041
1042 A description of each shown parameter follows:
1043
1044 @table @option
1045 @item DC offset
1046 Mean amplitude displacement from zero.
1047
1048 @item Min level
1049 Minimal sample level.
1050
1051 @item Max level
1052 Maximal sample level.
1053
1054 @item Min difference
1055 Minimal difference between two consecutive samples.
1056
1057 @item Max difference
1058 Maximal difference between two consecutive samples.
1059
1060 @item Mean difference
1061 Mean difference between two consecutive samples.
1062 The average of each difference between two consecutive samples.
1063
1064 @item Peak level dB
1065 @item RMS level dB
1066 Standard peak and RMS level measured in dBFS.
1067
1068 @item RMS peak dB
1069 @item RMS trough dB
1070 Peak and trough values for RMS level measured over a short window.
1071
1072 @item Crest factor
1073 Standard ratio of peak to RMS level (note: not in dB).
1074
1075 @item Flat factor
1076 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1077 (i.e. either @var{Min level} or @var{Max level}).
1078
1079 @item Peak count
1080 Number of occasions (not the number of samples) that the signal attained either
1081 @var{Min level} or @var{Max level}.
1082
1083 @item Bit depth
1084 Overall bit depth of audio. Number of bits used for each sample.
1085 @end table
1086
1087 @section astreamsync
1088
1089 Forward two audio streams and control the order the buffers are forwarded.
1090
1091 The filter accepts the following options:
1092
1093 @table @option
1094 @item expr, e
1095 Set the expression deciding which stream should be
1096 forwarded next: if the result is negative, the first stream is forwarded; if
1097 the result is positive or zero, the second stream is forwarded. It can use
1098 the following variables:
1099
1100 @table @var
1101 @item b1 b2
1102 number of buffers forwarded so far on each stream
1103 @item s1 s2
1104 number of samples forwarded so far on each stream
1105 @item t1 t2
1106 current timestamp of each stream
1107 @end table
1108
1109 The default value is @code{t1-t2}, which means to always forward the stream
1110 that has a smaller timestamp.
1111 @end table
1112
1113 @subsection Examples
1114
1115 Stress-test @code{amerge} by randomly sending buffers on the wrong
1116 input, while avoiding too much of a desynchronization:
1117 @example
1118 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
1119 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
1120 [a2] [b2] amerge
1121 @end example
1122
1123 @section asyncts
1124
1125 Synchronize audio data with timestamps by squeezing/stretching it and/or
1126 dropping samples/adding silence when needed.
1127
1128 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1129
1130 It accepts the following parameters:
1131 @table @option
1132
1133 @item compensate
1134 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1135 by default. When disabled, time gaps are covered with silence.
1136
1137 @item min_delta
1138 The minimum difference between timestamps and audio data (in seconds) to trigger
1139 adding/dropping samples. The default value is 0.1. If you get an imperfect
1140 sync with this filter, try setting this parameter to 0.
1141
1142 @item max_comp
1143 The maximum compensation in samples per second. Only relevant with compensate=1.
1144 The default value is 500.
1145
1146 @item first_pts
1147 Assume that the first PTS should be this value. The time base is 1 / sample
1148 rate. This allows for padding/trimming at the start of the stream. By default,
1149 no assumption is made about the first frame's expected PTS, so no padding or
1150 trimming is done. For example, this could be set to 0 to pad the beginning with
1151 silence if an audio stream starts after the video stream or to trim any samples
1152 with a negative PTS due to encoder delay.
1153
1154 @end table
1155
1156 @section atempo
1157
1158 Adjust audio tempo.
1159
1160 The filter accepts exactly one parameter, the audio tempo. If not
1161 specified then the filter will assume nominal 1.0 tempo. Tempo must
1162 be in the [0.5, 2.0] range.
1163
1164 @subsection Examples
1165
1166 @itemize
1167 @item
1168 Slow down audio to 80% tempo:
1169 @example
1170 atempo=0.8
1171 @end example
1172
1173 @item
1174 To speed up audio to 125% tempo:
1175 @example
1176 atempo=1.25
1177 @end example
1178 @end itemize
1179
1180 @section atrim
1181
1182 Trim the input so that the output contains one continuous subpart of the input.
1183
1184 It accepts the following parameters:
1185 @table @option
1186 @item start
1187 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1188 sample with the timestamp @var{start} will be the first sample in the output.
1189
1190 @item end
1191 Specify time of the first audio sample that will be dropped, i.e. the
1192 audio sample immediately preceding the one with the timestamp @var{end} will be
1193 the last sample in the output.
1194
1195 @item start_pts
1196 Same as @var{start}, except this option sets the start timestamp in samples
1197 instead of seconds.
1198
1199 @item end_pts
1200 Same as @var{end}, except this option sets the end timestamp in samples instead
1201 of seconds.
1202
1203 @item duration
1204 The maximum duration of the output in seconds.
1205
1206 @item start_sample
1207 The number of the first sample that should be output.
1208
1209 @item end_sample
1210 The number of the first sample that should be dropped.
1211 @end table
1212
1213 @option{start}, @option{end}, and @option{duration} are expressed as time
1214 duration specifications; see
1215 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1216
1217 Note that the first two sets of the start/end options and the @option{duration}
1218 option look at the frame timestamp, while the _sample options simply count the
1219 samples that pass through the filter. So start/end_pts and start/end_sample will
1220 give different results when the timestamps are wrong, inexact or do not start at
1221 zero. Also note that this filter does not modify the timestamps. If you wish
1222 to have the output timestamps start at zero, insert the asetpts filter after the
1223 atrim filter.
1224
1225 If multiple start or end options are set, this filter tries to be greedy and
1226 keep all samples that match at least one of the specified constraints. To keep
1227 only the part that matches all the constraints at once, chain multiple atrim
1228 filters.
1229
1230 The defaults are such that all the input is kept. So it is possible to set e.g.
1231 just the end values to keep everything before the specified time.
1232
1233 Examples:
1234 @itemize
1235 @item
1236 Drop everything except the second minute of input:
1237 @example
1238 ffmpeg -i INPUT -af atrim=60:120
1239 @end example
1240
1241 @item
1242 Keep only the first 1000 samples:
1243 @example
1244 ffmpeg -i INPUT -af atrim=end_sample=1000
1245 @end example
1246
1247 @end itemize
1248
1249 @section bandpass
1250
1251 Apply a two-pole Butterworth band-pass filter with central
1252 frequency @var{frequency}, and (3dB-point) band-width width.
1253 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1254 instead of the default: constant 0dB peak gain.
1255 The filter roll off at 6dB per octave (20dB per decade).
1256
1257 The filter accepts the following options:
1258
1259 @table @option
1260 @item frequency, f
1261 Set the filter's central frequency. Default is @code{3000}.
1262
1263 @item csg
1264 Constant skirt gain if set to 1. Defaults to 0.
1265
1266 @item width_type
1267 Set method to specify band-width of filter.
1268 @table @option
1269 @item h
1270 Hz
1271 @item q
1272 Q-Factor
1273 @item o
1274 octave
1275 @item s
1276 slope
1277 @end table
1278
1279 @item width, w
1280 Specify the band-width of a filter in width_type units.
1281 @end table
1282
1283 @section bandreject
1284
1285 Apply a two-pole Butterworth band-reject filter with central
1286 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1287 The filter roll off at 6dB per octave (20dB per decade).
1288
1289 The filter accepts the following options:
1290
1291 @table @option
1292 @item frequency, f
1293 Set the filter's central frequency. Default is @code{3000}.
1294
1295 @item width_type
1296 Set method to specify band-width of filter.
1297 @table @option
1298 @item h
1299 Hz
1300 @item q
1301 Q-Factor
1302 @item o
1303 octave
1304 @item s
1305 slope
1306 @end table
1307
1308 @item width, w
1309 Specify the band-width of a filter in width_type units.
1310 @end table
1311
1312 @section bass
1313
1314 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1315 shelving filter with a response similar to that of a standard
1316 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1317
1318 The filter accepts the following options:
1319
1320 @table @option
1321 @item gain, g
1322 Give the gain at 0 Hz. Its useful range is about -20
1323 (for a large cut) to +20 (for a large boost).
1324 Beware of clipping when using a positive gain.
1325
1326 @item frequency, f
1327 Set the filter's central frequency and so can be used
1328 to extend or reduce the frequency range to be boosted or cut.
1329 The default value is @code{100} Hz.
1330
1331 @item width_type
1332 Set method to specify band-width of filter.
1333 @table @option
1334 @item h
1335 Hz
1336 @item q
1337 Q-Factor
1338 @item o
1339 octave
1340 @item s
1341 slope
1342 @end table
1343
1344 @item width, w
1345 Determine how steep is the filter's shelf transition.
1346 @end table
1347
1348 @section biquad
1349
1350 Apply a biquad IIR filter with the given coefficients.
1351 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1352 are the numerator and denominator coefficients respectively.
1353
1354 @section bs2b
1355 Bauer stereo to binaural transformation, which improves headphone listening of
1356 stereo audio records.
1357
1358 It accepts the following parameters:
1359 @table @option
1360
1361 @item profile
1362 Pre-defined crossfeed level.
1363 @table @option
1364
1365 @item default
1366 Default level (fcut=700, feed=50).
1367
1368 @item cmoy
1369 Chu Moy circuit (fcut=700, feed=60).
1370
1371 @item jmeier
1372 Jan Meier circuit (fcut=650, feed=95).
1373
1374 @end table
1375
1376 @item fcut
1377 Cut frequency (in Hz).
1378
1379 @item feed
1380 Feed level (in Hz).
1381
1382 @end table
1383
1384 @section channelmap
1385
1386 Remap input channels to new locations.
1387
1388 It accepts the following parameters:
1389 @table @option
1390 @item channel_layout
1391 The channel layout of the output stream.
1392
1393 @item map
1394 Map channels from input to output. The argument is a '|'-separated list of
1395 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1396 @var{in_channel} form. @var{in_channel} can be either the name of the input
1397 channel (e.g. FL for front left) or its index in the input channel layout.
1398 @var{out_channel} is the name of the output channel or its index in the output
1399 channel layout. If @var{out_channel} is not given then it is implicitly an
1400 index, starting with zero and increasing by one for each mapping.
1401 @end table
1402
1403 If no mapping is present, the filter will implicitly map input channels to
1404 output channels, preserving indices.
1405
1406 For example, assuming a 5.1+downmix input MOV file,
1407 @example
1408 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1409 @end example
1410 will create an output WAV file tagged as stereo from the downmix channels of
1411 the input.
1412
1413 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1414 @example
1415 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1416 @end example
1417
1418 @section channelsplit
1419
1420 Split each channel from an input audio stream into a separate output stream.
1421
1422 It accepts the following parameters:
1423 @table @option
1424 @item channel_layout
1425 The channel layout of the input stream. The default is "stereo".
1426 @end table
1427
1428 For example, assuming a stereo input MP3 file,
1429 @example
1430 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1431 @end example
1432 will create an output Matroska file with two audio streams, one containing only
1433 the left channel and the other the right channel.
1434
1435 Split a 5.1 WAV file into per-channel files:
1436 @example
1437 ffmpeg -i in.wav -filter_complex
1438 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1439 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1440 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1441 side_right.wav
1442 @end example
1443
1444 @section chorus
1445 Add a chorus effect to the audio.
1446
1447 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1448
1449 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1450 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1451 The modulation depth defines the range the modulated delay is played before or after
1452 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1453 sound tuned around the original one, like in a chorus where some vocals are slightly
1454 off key.
1455
1456 It accepts the following parameters:
1457 @table @option
1458 @item in_gain
1459 Set input gain. Default is 0.4.
1460
1461 @item out_gain
1462 Set output gain. Default is 0.4.
1463
1464 @item delays
1465 Set delays. A typical delay is around 40ms to 60ms.
1466
1467 @item decays
1468 Set decays.
1469
1470 @item speeds
1471 Set speeds.
1472
1473 @item depths
1474 Set depths.
1475 @end table
1476
1477 @subsection Examples
1478
1479 @itemize
1480 @item
1481 A single delay:
1482 @example
1483 chorus=0.7:0.9:55:0.4:0.25:2
1484 @end example
1485
1486 @item
1487 Two delays:
1488 @example
1489 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1490 @end example
1491
1492 @item
1493 Fuller sounding chorus with three delays:
1494 @example
1495 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
1496 @end example
1497 @end itemize
1498
1499 @section compand
1500 Compress or expand the audio's dynamic range.
1501
1502 It accepts the following parameters:
1503
1504 @table @option
1505
1506 @item attacks
1507 @item decays
1508 A list of times in seconds for each channel over which the instantaneous level
1509 of the input signal is averaged to determine its volume. @var{attacks} refers to
1510 increase of volume and @var{decays} refers to decrease of volume. For most
1511 situations, the attack time (response to the audio getting louder) should be
1512 shorter than the decay time, because the human ear is more sensitive to sudden
1513 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1514 a typical value for decay is 0.8 seconds.
1515 If specified number of attacks & decays is lower than number of channels, the last
1516 set attack/decay will be used for all remaining channels.
1517
1518 @item points
1519 A list of points for the transfer function, specified in dB relative to the
1520 maximum possible signal amplitude. Each key points list must be defined using
1521 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1522 @code{x0/y0 x1/y1 x2/y2 ....}
1523
1524 The input values must be in strictly increasing order but the transfer function
1525 does not have to be monotonically rising. The point @code{0/0} is assumed but
1526 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1527 function are @code{-70/-70|-60/-20}.
1528
1529 @item soft-knee
1530 Set the curve radius in dB for all joints. It defaults to 0.01.
1531
1532 @item gain
1533 Set the additional gain in dB to be applied at all points on the transfer
1534 function. This allows for easy adjustment of the overall gain.
1535 It defaults to 0.
1536
1537 @item volume
1538 Set an initial volume, in dB, to be assumed for each channel when filtering
1539 starts. This permits the user to supply a nominal level initially, so that, for
1540 example, a very large gain is not applied to initial signal levels before the
1541 companding has begun to operate. A typical value for audio which is initially
1542 quiet is -90 dB. It defaults to 0.
1543
1544 @item delay
1545 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1546 delayed before being fed to the volume adjuster. Specifying a delay
1547 approximately equal to the attack/decay times allows the filter to effectively
1548 operate in predictive rather than reactive mode. It defaults to 0.
1549
1550 @end table
1551
1552 @subsection Examples
1553
1554 @itemize
1555 @item
1556 Make music with both quiet and loud passages suitable for listening to in a
1557 noisy environment:
1558 @example
1559 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1560 @end example
1561
1562 Another example for audio with whisper and explosion parts:
1563 @example
1564 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1565 @end example
1566
1567 @item
1568 A noise gate for when the noise is at a lower level than the signal:
1569 @example
1570 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1571 @end example
1572
1573 @item
1574 Here is another noise gate, this time for when the noise is at a higher level
1575 than the signal (making it, in some ways, similar to squelch):
1576 @example
1577 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1578 @end example
1579 @end itemize
1580
1581 @section dcshift
1582 Apply a DC shift to the audio.
1583
1584 This can be useful to remove a DC offset (caused perhaps by a hardware problem
1585 in the recording chain) from the audio. The effect of a DC offset is reduced
1586 headroom and hence volume. The @ref{astats} filter can be used to determine if
1587 a signal has a DC offset.
1588
1589 @table @option
1590 @item shift
1591 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
1592 the audio.
1593
1594 @item limitergain
1595 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
1596 used to prevent clipping.
1597 @end table
1598
1599 @section dynaudnorm
1600 Dynamic Audio Normalizer.
1601
1602 This filter applies a certain amount of gain to the input audio in order
1603 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
1604 contrast to more "simple" normalization algorithms, the Dynamic Audio
1605 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
1606 This allows for applying extra gain to the "quiet" sections of the audio
1607 while avoiding distortions or clipping the "loud" sections. In other words:
1608 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
1609 sections, in the sense that the volume of each section is brought to the
1610 same target level. Note, however, that the Dynamic Audio Normalizer achieves
1611 this goal *without* applying "dynamic range compressing". It will retain 100%
1612 of the dynamic range *within* each section of the audio file.
1613
1614 @table @option
1615 @item f
1616 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
1617 Default is 500 milliseconds.
1618 The Dynamic Audio Normalizer processes the input audio in small chunks,
1619 referred to as frames. This is required, because a peak magnitude has no
1620 meaning for just a single sample value. Instead, we need to determine the
1621 peak magnitude for a contiguous sequence of sample values. While a "standard"
1622 normalizer would simply use the peak magnitude of the complete file, the
1623 Dynamic Audio Normalizer determines the peak magnitude individually for each
1624 frame. The length of a frame is specified in milliseconds. By default, the
1625 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
1626 been found to give good results with most files.
1627 Note that the exact frame length, in number of samples, will be determined
1628 automatically, based on the sampling rate of the individual input audio file.
1629
1630 @item g
1631 Set the Gaussian filter window size. In range from 3 to 301, must be odd
1632 number. Default is 31.
1633 Probably the most important parameter of the Dynamic Audio Normalizer is the
1634 @code{window size} of the Gaussian smoothing filter. The filter's window size
1635 is specified in frames, centered around the current frame. For the sake of
1636 simplicity, this must be an odd number. Consequently, the default value of 31
1637 takes into account the current frame, as well as the 15 preceding frames and
1638 the 15 subsequent frames. Using a larger window results in a stronger
1639 smoothing effect and thus in less gain variation, i.e. slower gain
1640 adaptation. Conversely, using a smaller window results in a weaker smoothing
1641 effect and thus in more gain variation, i.e. faster gain adaptation.
1642 In other words, the more you increase this value, the more the Dynamic Audio
1643 Normalizer will behave like a "traditional" normalization filter. On the
1644 contrary, the more you decrease this value, the more the Dynamic Audio
1645 Normalizer will behave like a dynamic range compressor.
1646
1647 @item p
1648 Set the target peak value. This specifies the highest permissible magnitude
1649 level for the normalized audio input. This filter will try to approach the
1650 target peak magnitude as closely as possible, but at the same time it also
1651 makes sure that the normalized signal will never exceed the peak magnitude.
1652 A frame's maximum local gain factor is imposed directly by the target peak
1653 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
1654 It is not recommended to go above this value.
1655
1656 @item m
1657 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
1658 The Dynamic Audio Normalizer determines the maximum possible (local) gain
1659 factor for each input frame, i.e. the maximum gain factor that does not
1660 result in clipping or distortion. The maximum gain factor is determined by
1661 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
1662 additionally bounds the frame's maximum gain factor by a predetermined
1663 (global) maximum gain factor. This is done in order to avoid excessive gain
1664 factors in "silent" or almost silent frames. By default, the maximum gain
1665 factor is 10.0, For most inputs the default value should be sufficient and
1666 it usually is not recommended to increase this value. Though, for input
1667 with an extremely low overall volume level, it may be necessary to allow even
1668 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
1669 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
1670 Instead, a "sigmoid" threshold function will be applied. This way, the
1671 gain factors will smoothly approach the threshold value, but never exceed that
1672 value.
1673
1674 @item r
1675 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
1676 By default, the Dynamic Audio Normalizer performs "peak" normalization.
1677 This means that the maximum local gain factor for each frame is defined
1678 (only) by the frame's highest magnitude sample. This way, the samples can
1679 be amplified as much as possible without exceeding the maximum signal
1680 level, i.e. without clipping. Optionally, however, the Dynamic Audio
1681 Normalizer can also take into account the frame's root mean square,
1682 abbreviated RMS. In electrical engineering, the RMS is commonly used to
1683 determine the power of a time-varying signal. It is therefore considered
1684 that the RMS is a better approximation of the "perceived loudness" than
1685 just looking at the signal's peak magnitude. Consequently, by adjusting all
1686 frames to a constant RMS value, a uniform "perceived loudness" can be
1687 established. If a target RMS value has been specified, a frame's local gain
1688 factor is defined as the factor that would result in exactly that RMS value.
1689 Note, however, that the maximum local gain factor is still restricted by the
1690 frame's highest magnitude sample, in order to prevent clipping.
1691
1692 @item n
1693 Enable channels coupling. By default is enabled.
1694 By default, the Dynamic Audio Normalizer will amplify all channels by the same
1695 amount. This means the same gain factor will be applied to all channels, i.e.
1696 the maximum possible gain factor is determined by the "loudest" channel.
1697 However, in some recordings, it may happen that the volume of the different
1698 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
1699 In this case, this option can be used to disable the channel coupling. This way,
1700 the gain factor will be determined independently for each channel, depending
1701 only on the individual channel's highest magnitude sample. This allows for
1702 harmonizing the volume of the different channels.
1703
1704 @item c
1705 Enable DC bias correction. By default is disabled.
1706 An audio signal (in the time domain) is a sequence of sample values.
1707 In the Dynamic Audio Normalizer these sample values are represented in the
1708 -1.0 to 1.0 range, regardless of the original input format. Normally, the
1709 audio signal, or "waveform", should be centered around the zero point.
1710 That means if we calculate the mean value of all samples in a file, or in a
1711 single frame, then the result should be 0.0 or at least very close to that
1712 value. If, however, there is a significant deviation of the mean value from
1713 0.0, in either positive or negative direction, this is referred to as a
1714 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
1715 Audio Normalizer provides optional DC bias correction.
1716 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
1717 the mean value, or "DC correction" offset, of each input frame and subtract
1718 that value from all of the frame's sample values which ensures those samples
1719 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
1720 boundaries, the DC correction offset values will be interpolated smoothly
1721 between neighbouring frames.
1722
1723 @item b
1724 Enable alternative boundary mode. By default is disabled.
1725 The Dynamic Audio Normalizer takes into account a certain neighbourhood
1726 around each frame. This includes the preceding frames as well as the
1727 subsequent frames. However, for the "boundary" frames, located at the very
1728 beginning and at the very end of the audio file, not all neighbouring
1729 frames are available. In particular, for the first few frames in the audio
1730 file, the preceding frames are not known. And, similarly, for the last few
1731 frames in the audio file, the subsequent frames are not known. Thus, the
1732 question arises which gain factors should be assumed for the missing frames
1733 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
1734 to deal with this situation. The default boundary mode assumes a gain factor
1735 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
1736 "fade out" at the beginning and at the end of the input, respectively.
1737
1738 @item s
1739 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
1740 By default, the Dynamic Audio Normalizer does not apply "traditional"
1741 compression. This means that signal peaks will not be pruned and thus the
1742 full dynamic range will be retained within each local neighbourhood. However,
1743 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
1744 normalization algorithm with a more "traditional" compression.
1745 For this purpose, the Dynamic Audio Normalizer provides an optional compression
1746 (thresholding) function. If (and only if) the compression feature is enabled,
1747 all input frames will be processed by a soft knee thresholding function prior
1748 to the actual normalization process. Put simply, the thresholding function is
1749 going to prune all samples whose magnitude exceeds a certain threshold value.
1750 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
1751 value. Instead, the threshold value will be adjusted for each individual
1752 frame.
1753 In general, smaller parameters result in stronger compression, and vice versa.
1754 Values below 3.0 are not recommended, because audible distortion may appear.
1755 @end table
1756
1757 @section earwax
1758
1759 Make audio easier to listen to on headphones.
1760
1761 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1762 so that when listened to on headphones the stereo image is moved from
1763 inside your head (standard for headphones) to outside and in front of
1764 the listener (standard for speakers).
1765
1766 Ported from SoX.
1767
1768 @section equalizer
1769
1770 Apply a two-pole peaking equalisation (EQ) filter. With this
1771 filter, the signal-level at and around a selected frequency can
1772 be increased or decreased, whilst (unlike bandpass and bandreject
1773 filters) that at all other frequencies is unchanged.
1774
1775 In order to produce complex equalisation curves, this filter can
1776 be given several times, each with a different central frequency.
1777
1778 The filter accepts the following options:
1779
1780 @table @option
1781 @item frequency, f
1782 Set the filter's central frequency in Hz.
1783
1784 @item width_type
1785 Set method to specify band-width of filter.
1786 @table @option
1787 @item h
1788 Hz
1789 @item q
1790 Q-Factor
1791 @item o
1792 octave
1793 @item s
1794 slope
1795 @end table
1796
1797 @item width, w
1798 Specify the band-width of a filter in width_type units.
1799
1800 @item gain, g
1801 Set the required gain or attenuation in dB.
1802 Beware of clipping when using a positive gain.
1803 @end table
1804
1805 @subsection Examples
1806 @itemize
1807 @item
1808 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
1809 @example
1810 equalizer=f=1000:width_type=h:width=200:g=-10
1811 @end example
1812
1813 @item
1814 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
1815 @example
1816 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
1817 @end example
1818 @end itemize
1819
1820 @section extrastereo
1821
1822 Linearly increases the difference between left and right channels which
1823 adds some sort of "live" effect to playback.
1824
1825 The filter accepts the following option:
1826
1827 @table @option
1828 @item m
1829 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
1830 (average of both channels), with 1.0 sound will be unchanged, with
1831 -1.0 left and right channels will be swapped.
1832
1833 @item c
1834 Enable clipping. By default is enabled.
1835 @end table
1836
1837 @section flanger
1838 Apply a flanging effect to the audio.
1839
1840 The filter accepts the following options:
1841
1842 @table @option
1843 @item delay
1844 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
1845
1846 @item depth
1847 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
1848
1849 @item regen
1850 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
1851 Default value is 0.
1852
1853 @item width
1854 Set percentage of delayed signal mixed with original. Range from 0 to 100.
1855 Default value is 71.
1856
1857 @item speed
1858 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
1859
1860 @item shape
1861 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
1862 Default value is @var{sinusoidal}.
1863
1864 @item phase
1865 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
1866 Default value is 25.
1867
1868 @item interp
1869 Set delay-line interpolation, @var{linear} or @var{quadratic}.
1870 Default is @var{linear}.
1871 @end table
1872
1873 @section highpass
1874
1875 Apply a high-pass filter with 3dB point frequency.
1876 The filter can be either single-pole, or double-pole (the default).
1877 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1878
1879 The filter accepts the following options:
1880
1881 @table @option
1882 @item frequency, f
1883 Set frequency in Hz. Default is 3000.
1884
1885 @item poles, p
1886 Set number of poles. Default is 2.
1887
1888 @item width_type
1889 Set method to specify band-width of filter.
1890 @table @option
1891 @item h
1892 Hz
1893 @item q
1894 Q-Factor
1895 @item o
1896 octave
1897 @item s
1898 slope
1899 @end table
1900
1901 @item width, w
1902 Specify the band-width of a filter in width_type units.
1903 Applies only to double-pole filter.
1904 The default is 0.707q and gives a Butterworth response.
1905 @end table
1906
1907 @section join
1908
1909 Join multiple input streams into one multi-channel stream.
1910
1911 It accepts the following parameters:
1912 @table @option
1913
1914 @item inputs
1915 The number of input streams. It defaults to 2.
1916
1917 @item channel_layout
1918 The desired output channel layout. It defaults to stereo.
1919
1920 @item map
1921 Map channels from inputs to output. The argument is a '|'-separated list of
1922 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
1923 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
1924 can be either the name of the input channel (e.g. FL for front left) or its
1925 index in the specified input stream. @var{out_channel} is the name of the output
1926 channel.
1927 @end table
1928
1929 The filter will attempt to guess the mappings when they are not specified
1930 explicitly. It does so by first trying to find an unused matching input channel
1931 and if that fails it picks the first unused input channel.
1932
1933 Join 3 inputs (with properly set channel layouts):
1934 @example
1935 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
1936 @end example
1937
1938 Build a 5.1 output from 6 single-channel streams:
1939 @example
1940 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
1941 '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'
1942 out
1943 @end example
1944
1945 @section ladspa
1946
1947 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
1948
1949 To enable compilation of this filter you need to configure FFmpeg with
1950 @code{--enable-ladspa}.
1951
1952 @table @option
1953 @item file, f
1954 Specifies the name of LADSPA plugin library to load. If the environment
1955 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
1956 each one of the directories specified by the colon separated list in
1957 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
1958 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
1959 @file{/usr/lib/ladspa/}.
1960
1961 @item plugin, p
1962 Specifies the plugin within the library. Some libraries contain only
1963 one plugin, but others contain many of them. If this is not set filter
1964 will list all available plugins within the specified library.
1965
1966 @item controls, c
1967 Set the '|' separated list of controls which are zero or more floating point
1968 values that determine the behavior of the loaded plugin (for example delay,
1969 threshold or gain).
1970 Controls need to be defined using the following syntax:
1971 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
1972 @var{valuei} is the value set on the @var{i}-th control.
1973 If @option{controls} is set to @code{help}, all available controls and
1974 their valid ranges are printed.
1975
1976 @item sample_rate, s
1977 Specify the sample rate, default to 44100. Only used if plugin have
1978 zero inputs.
1979
1980 @item nb_samples, n
1981 Set the number of samples per channel per each output frame, default
1982 is 1024. Only used if plugin have zero inputs.
1983
1984 @item duration, d
1985 Set the minimum duration of the sourced audio. See
1986 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1987 for the accepted syntax.
1988 Note that the resulting duration may be greater than the specified duration,
1989 as the generated audio is always cut at the end of a complete frame.
1990 If not specified, or the expressed duration is negative, the audio is
1991 supposed to be generated forever.
1992 Only used if plugin have zero inputs.
1993
1994 @end table
1995
1996 @subsection Examples
1997
1998 @itemize
1999 @item
2000 List all available plugins within amp (LADSPA example plugin) library:
2001 @example
2002 ladspa=file=amp
2003 @end example
2004
2005 @item
2006 List all available controls and their valid ranges for @code{vcf_notch}
2007 plugin from @code{VCF} library:
2008 @example
2009 ladspa=f=vcf:p=vcf_notch:c=help
2010 @end example
2011
2012 @item
2013 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2014 plugin library:
2015 @example
2016 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2017 @end example
2018
2019 @item
2020 Add reverberation to the audio using TAP-plugins
2021 (Tom's Audio Processing plugins):
2022 @example
2023 ladspa=file=tap_reverb:tap_reverb
2024 @end example
2025
2026 @item
2027 Generate white noise, with 0.2 amplitude:
2028 @example
2029 ladspa=file=cmt:noise_source_white:c=c0=.2
2030 @end example
2031
2032 @item
2033 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2034 @code{C* Audio Plugin Suite} (CAPS) library:
2035 @example
2036 ladspa=file=caps:Click:c=c1=20'
2037 @end example
2038
2039 @item
2040 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2041 @example
2042 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2043 @end example
2044 @end itemize
2045
2046 @subsection Commands
2047
2048 This filter supports the following commands:
2049 @table @option
2050 @item cN
2051 Modify the @var{N}-th control value.
2052
2053 If the specified value is not valid, it is ignored and prior one is kept.
2054 @end table
2055
2056 @section lowpass
2057
2058 Apply a low-pass filter with 3dB point frequency.
2059 The filter can be either single-pole or double-pole (the default).
2060 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2061
2062 The filter accepts the following options:
2063
2064 @table @option
2065 @item frequency, f
2066 Set frequency in Hz. Default is 500.
2067
2068 @item poles, p
2069 Set number of poles. Default is 2.
2070
2071 @item width_type
2072 Set method to specify band-width of filter.
2073 @table @option
2074 @item h
2075 Hz
2076 @item q
2077 Q-Factor
2078 @item o
2079 octave
2080 @item s
2081 slope
2082 @end table
2083
2084 @item width, w
2085 Specify the band-width of a filter in width_type units.
2086 Applies only to double-pole filter.
2087 The default is 0.707q and gives a Butterworth response.
2088 @end table
2089
2090 @anchor{pan}
2091 @section pan
2092
2093 Mix channels with specific gain levels. The filter accepts the output
2094 channel layout followed by a set of channels definitions.
2095
2096 This filter is also designed to efficiently remap the channels of an audio
2097 stream.
2098
2099 The filter accepts parameters of the form:
2100 "@var{l}|@var{outdef}|@var{outdef}|..."
2101
2102 @table @option
2103 @item l
2104 output channel layout or number of channels
2105
2106 @item outdef
2107 output channel specification, of the form:
2108 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2109
2110 @item out_name
2111 output channel to define, either a channel name (FL, FR, etc.) or a channel
2112 number (c0, c1, etc.)
2113
2114 @item gain
2115 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2116
2117 @item in_name
2118 input channel to use, see out_name for details; it is not possible to mix
2119 named and numbered input channels
2120 @end table
2121
2122 If the `=' in a channel specification is replaced by `<', then the gains for
2123 that specification will be renormalized so that the total is 1, thus
2124 avoiding clipping noise.
2125
2126 @subsection Mixing examples
2127
2128 For example, if you want to down-mix from stereo to mono, but with a bigger
2129 factor for the left channel:
2130 @example
2131 pan=1c|c0=0.9*c0+0.1*c1
2132 @end example
2133
2134 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2135 7-channels surround:
2136 @example
2137 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2138 @end example
2139
2140 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2141 that should be preferred (see "-ac" option) unless you have very specific
2142 needs.
2143
2144 @subsection Remapping examples
2145
2146 The channel remapping will be effective if, and only if:
2147
2148 @itemize
2149 @item gain coefficients are zeroes or ones,
2150 @item only one input per channel output,
2151 @end itemize
2152
2153 If all these conditions are satisfied, the filter will notify the user ("Pure
2154 channel mapping detected"), and use an optimized and lossless method to do the
2155 remapping.
2156
2157 For example, if you have a 5.1 source and want a stereo audio stream by
2158 dropping the extra channels:
2159 @example
2160 pan="stereo| c0=FL | c1=FR"
2161 @end example
2162
2163 Given the same source, you can also switch front left and front right channels
2164 and keep the input channel layout:
2165 @example
2166 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2167 @end example
2168
2169 If the input is a stereo audio stream, you can mute the front left channel (and
2170 still keep the stereo channel layout) with:
2171 @example
2172 pan="stereo|c1=c1"
2173 @end example
2174
2175 Still with a stereo audio stream input, you can copy the right channel in both
2176 front left and right:
2177 @example
2178 pan="stereo| c0=FR | c1=FR"
2179 @end example
2180
2181 @section replaygain
2182
2183 ReplayGain scanner filter. This filter takes an audio stream as an input and
2184 outputs it unchanged.
2185 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2186
2187 @section resample
2188
2189 Convert the audio sample format, sample rate and channel layout. It is
2190 not meant to be used directly.
2191
2192 @section sidechaincompress
2193
2194 This filter acts like normal compressor but has the ability to compress
2195 detected signal using second input signal.
2196 It needs two input streams and returns one output stream.
2197 First input stream will be processed depending on second stream signal.
2198 The filtered signal then can be filtered with other filters in later stages of
2199 processing. See @ref{pan} and @ref{amerge} filter.
2200
2201 The filter accepts the following options:
2202
2203 @table @option
2204 @item threshold
2205 If a signal of second stream raises above this level it will affect the gain
2206 reduction of first stream.
2207 By default is 0.125. Range is between 0.00097563 and 1.
2208
2209 @item ratio
2210 Set a ratio about which the signal is reduced. 1:2 means that if the level
2211 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2212 Default is 2. Range is between 1 and 20.
2213
2214 @item attack
2215 Amount of milliseconds the signal has to rise above the threshold before gain
2216 reduction starts. Default is 20. Range is between 0.01 and 2000.
2217
2218 @item release
2219 Amount of milliseconds the signal has to fall bellow the threshold before
2220 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2221
2222 @item makeup
2223 Set the amount by how much signal will be amplified after processing.
2224 Default is 2. Range is from 1 and 64.
2225
2226 @item knee
2227 Curve the sharp knee around the threshold to enter gain reduction more softly.
2228 Default is 2.82843. Range is between 1 and 8.
2229
2230 @item link
2231 Choose if the @code{average} level between all channels of side-chain stream
2232 or the louder(@code{maximum}) channel of side-chain stream affects the
2233 reduction. Default is @code{average}.
2234
2235 @item detection
2236 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2237 of @code{rms}. Default is @code{rms} which is mainly smoother.
2238 @end table
2239
2240 @subsection Examples
2241
2242 @itemize
2243 @item
2244 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2245 depending on the signal of 2nd input and later compressed signal to be
2246 merged with 2nd input:
2247 @example
2248 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2249 @end example
2250 @end itemize
2251
2252 @section silencedetect
2253
2254 Detect silence in an audio stream.
2255
2256 This filter logs a message when it detects that the input audio volume is less
2257 or equal to a noise tolerance value for a duration greater or equal to the
2258 minimum detected noise duration.
2259
2260 The printed times and duration are expressed in seconds.
2261
2262 The filter accepts the following options:
2263
2264 @table @option
2265 @item duration, d
2266 Set silence duration until notification (default is 2 seconds).
2267
2268 @item noise, n
2269 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2270 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2271 @end table
2272
2273 @subsection Examples
2274
2275 @itemize
2276 @item
2277 Detect 5 seconds of silence with -50dB noise tolerance:
2278 @example
2279 silencedetect=n=-50dB:d=5
2280 @end example
2281
2282 @item
2283 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2284 tolerance in @file{silence.mp3}:
2285 @example
2286 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2287 @end example
2288 @end itemize
2289
2290 @section silenceremove
2291
2292 Remove silence from the beginning, middle or end of the audio.
2293
2294 The filter accepts the following options:
2295
2296 @table @option
2297 @item start_periods
2298 This value is used to indicate if audio should be trimmed at beginning of
2299 the audio. A value of zero indicates no silence should be trimmed from the
2300 beginning. When specifying a non-zero value, it trims audio up until it
2301 finds non-silence. Normally, when trimming silence from beginning of audio
2302 the @var{start_periods} will be @code{1} but it can be increased to higher
2303 values to trim all audio up to specific count of non-silence periods.
2304 Default value is @code{0}.
2305
2306 @item start_duration
2307 Specify the amount of time that non-silence must be detected before it stops
2308 trimming audio. By increasing the duration, bursts of noises can be treated
2309 as silence and trimmed off. Default value is @code{0}.
2310
2311 @item start_threshold
2312 This indicates what sample value should be treated as silence. For digital
2313 audio, a value of @code{0} may be fine but for audio recorded from analog,
2314 you may wish to increase the value to account for background noise.
2315 Can be specified in dB (in case "dB" is appended to the specified value)
2316 or amplitude ratio. Default value is @code{0}.
2317
2318 @item stop_periods
2319 Set the count for trimming silence from the end of audio.
2320 To remove silence from the middle of a file, specify a @var{stop_periods}
2321 that is negative. This value is then treated as a positive value and is
2322 used to indicate the effect should restart processing as specified by
2323 @var{start_periods}, making it suitable for removing periods of silence
2324 in the middle of the audio.
2325 Default value is @code{0}.
2326
2327 @item stop_duration
2328 Specify a duration of silence that must exist before audio is not copied any
2329 more. By specifying a higher duration, silence that is wanted can be left in
2330 the audio.
2331 Default value is @code{0}.
2332
2333 @item stop_threshold
2334 This is the same as @option{start_threshold} but for trimming silence from
2335 the end of audio.
2336 Can be specified in dB (in case "dB" is appended to the specified value)
2337 or amplitude ratio. Default value is @code{0}.
2338
2339 @item leave_silence
2340 This indicate that @var{stop_duration} length of audio should be left intact
2341 at the beginning of each period of silence.
2342 For example, if you want to remove long pauses between words but do not want
2343 to remove the pauses completely. Default value is @code{0}.
2344
2345 @end table
2346
2347 @subsection Examples
2348
2349 @itemize
2350 @item
2351 The following example shows how this filter can be used to start a recording
2352 that does not contain the delay at the start which usually occurs between
2353 pressing the record button and the start of the performance:
2354 @example
2355 silenceremove=1:5:0.02
2356 @end example
2357 @end itemize
2358
2359 @section treble
2360
2361 Boost or cut treble (upper) frequencies of the audio using a two-pole
2362 shelving filter with a response similar to that of a standard
2363 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2364
2365 The filter accepts the following options:
2366
2367 @table @option
2368 @item gain, g
2369 Give the gain at whichever is the lower of ~22 kHz and the
2370 Nyquist frequency. Its useful range is about -20 (for a large cut)
2371 to +20 (for a large boost). Beware of clipping when using a positive gain.
2372
2373 @item frequency, f
2374 Set the filter's central frequency and so can be used
2375 to extend or reduce the frequency range to be boosted or cut.
2376 The default value is @code{3000} Hz.
2377
2378 @item width_type
2379 Set method to specify band-width of filter.
2380 @table @option
2381 @item h
2382 Hz
2383 @item q
2384 Q-Factor
2385 @item o
2386 octave
2387 @item s
2388 slope
2389 @end table
2390
2391 @item width, w
2392 Determine how steep is the filter's shelf transition.
2393 @end table
2394
2395 @section volume
2396
2397 Adjust the input audio volume.
2398
2399 It accepts the following parameters:
2400 @table @option
2401
2402 @item volume
2403 Set audio volume expression.
2404
2405 Output values are clipped to the maximum value.
2406
2407 The output audio volume is given by the relation:
2408 @example
2409 @var{output_volume} = @var{volume} * @var{input_volume}
2410 @end example
2411
2412 The default value for @var{volume} is "1.0".
2413
2414 @item precision
2415 This parameter represents the mathematical precision.
2416
2417 It determines which input sample formats will be allowed, which affects the
2418 precision of the volume scaling.
2419
2420 @table @option
2421 @item fixed
2422 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
2423 @item float
2424 32-bit floating-point; this limits input sample format to FLT. (default)
2425 @item double
2426 64-bit floating-point; this limits input sample format to DBL.
2427 @end table
2428
2429 @item replaygain
2430 Choose the behaviour on encountering ReplayGain side data in input frames.
2431
2432 @table @option
2433 @item drop
2434 Remove ReplayGain side data, ignoring its contents (the default).
2435
2436 @item ignore
2437 Ignore ReplayGain side data, but leave it in the frame.
2438
2439 @item track
2440 Prefer the track gain, if present.
2441
2442 @item album
2443 Prefer the album gain, if present.
2444 @end table
2445
2446 @item replaygain_preamp
2447 Pre-amplification gain in dB to apply to the selected replaygain gain.
2448
2449 Default value for @var{replaygain_preamp} is 0.0.
2450
2451 @item eval
2452 Set when the volume expression is evaluated.
2453
2454 It accepts the following values:
2455 @table @samp
2456 @item once
2457 only evaluate expression once during the filter initialization, or
2458 when the @samp{volume} command is sent
2459
2460 @item frame
2461 evaluate expression for each incoming frame
2462 @end table
2463
2464 Default value is @samp{once}.
2465 @end table
2466
2467 The volume expression can contain the following parameters.
2468
2469 @table @option
2470 @item n
2471 frame number (starting at zero)
2472 @item nb_channels
2473 number of channels
2474 @item nb_consumed_samples
2475 number of samples consumed by the filter
2476 @item nb_samples
2477 number of samples in the current frame
2478 @item pos
2479 original frame position in the file
2480 @item pts
2481 frame PTS
2482 @item sample_rate
2483 sample rate
2484 @item startpts
2485 PTS at start of stream
2486 @item startt
2487 time at start of stream
2488 @item t
2489 frame time
2490 @item tb
2491 timestamp timebase
2492 @item volume
2493 last set volume value
2494 @end table
2495
2496 Note that when @option{eval} is set to @samp{once} only the
2497 @var{sample_rate} and @var{tb} variables are available, all other
2498 variables will evaluate to NAN.
2499
2500 @subsection Commands
2501
2502 This filter supports the following commands:
2503 @table @option
2504 @item volume
2505 Modify the volume expression.
2506 The command accepts the same syntax of the corresponding option.
2507
2508 If the specified expression is not valid, it is kept at its current
2509 value.
2510 @item replaygain_noclip
2511 Prevent clipping by limiting the gain applied.
2512
2513 Default value for @var{replaygain_noclip} is 1.
2514
2515 @end table
2516
2517 @subsection Examples
2518
2519 @itemize
2520 @item
2521 Halve the input audio volume:
2522 @example
2523 volume=volume=0.5
2524 volume=volume=1/2
2525 volume=volume=-6.0206dB
2526 @end example
2527
2528 In all the above example the named key for @option{volume} can be
2529 omitted, for example like in:
2530 @example
2531 volume=0.5
2532 @end example
2533
2534 @item
2535 Increase input audio power by 6 decibels using fixed-point precision:
2536 @example
2537 volume=volume=6dB:precision=fixed
2538 @end example
2539
2540 @item
2541 Fade volume after time 10 with an annihilation period of 5 seconds:
2542 @example
2543 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
2544 @end example
2545 @end itemize
2546
2547 @section volumedetect
2548
2549 Detect the volume of the input video.
2550
2551 The filter has no parameters. The input is not modified. Statistics about
2552 the volume will be printed in the log when the input stream end is reached.
2553
2554 In particular it will show the mean volume (root mean square), maximum
2555 volume (on a per-sample basis), and the beginning of a histogram of the
2556 registered volume values (from the maximum value to a cumulated 1/1000 of
2557 the samples).
2558
2559 All volumes are in decibels relative to the maximum PCM value.
2560
2561 @subsection Examples
2562
2563 Here is an excerpt of the output:
2564 @example
2565 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
2566 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
2567 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
2568 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
2569 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
2570 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
2571 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
2572 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
2573 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
2574 @end example
2575
2576 It means that:
2577 @itemize
2578 @item
2579 The mean square energy is approximately -27 dB, or 10^-2.7.
2580 @item
2581 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
2582 @item
2583 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
2584 @end itemize
2585
2586 In other words, raising the volume by +4 dB does not cause any clipping,
2587 raising it by +5 dB causes clipping for 6 samples, etc.
2588
2589 @c man end AUDIO FILTERS
2590
2591 @chapter Audio Sources
2592 @c man begin AUDIO SOURCES
2593
2594 Below is a description of the currently available audio sources.
2595
2596 @section abuffer
2597
2598 Buffer audio frames, and make them available to the filter chain.
2599
2600 This source is mainly intended for a programmatic use, in particular
2601 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
2602
2603 It accepts the following parameters:
2604 @table @option
2605
2606 @item time_base
2607 The timebase which will be used for timestamps of submitted frames. It must be
2608 either a floating-point number or in @var{numerator}/@var{denominator} form.
2609
2610 @item sample_rate
2611 The sample rate of the incoming audio buffers.
2612
2613 @item sample_fmt
2614 The sample format of the incoming audio buffers.
2615 Either a sample format name or its corresponding integer representation from
2616 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
2617
2618 @item channel_layout
2619 The channel layout of the incoming audio buffers.
2620 Either a channel layout name from channel_layout_map in
2621 @file{libavutil/channel_layout.c} or its corresponding integer representation
2622 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
2623
2624 @item channels
2625 The number of channels of the incoming audio buffers.
2626 If both @var{channels} and @var{channel_layout} are specified, then they
2627 must be consistent.
2628
2629 @end table
2630
2631 @subsection Examples
2632
2633 @example
2634 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
2635 @end example
2636
2637 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
2638 Since the sample format with name "s16p" corresponds to the number
2639 6 and the "stereo" channel layout corresponds to the value 0x3, this is
2640 equivalent to:
2641 @example
2642 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
2643 @end example
2644
2645 @section aevalsrc
2646
2647 Generate an audio signal specified by an expression.
2648
2649 This source accepts in input one or more expressions (one for each
2650 channel), which are evaluated and used to generate a corresponding
2651 audio signal.
2652
2653 This source accepts the following options:
2654
2655 @table @option
2656 @item exprs
2657 Set the '|'-separated expressions list for each separate channel. In case the
2658 @option{channel_layout} option is not specified, the selected channel layout
2659 depends on the number of provided expressions. Otherwise the last
2660 specified expression is applied to the remaining output channels.
2661
2662 @item channel_layout, c
2663 Set the channel layout. The number of channels in the specified layout
2664 must be equal to the number of specified expressions.
2665
2666 @item duration, d
2667 Set the minimum duration of the sourced audio. See
2668 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2669 for the accepted syntax.
2670 Note that the resulting duration may be greater than the specified
2671 duration, as the generated audio is always cut at the end of a
2672 complete frame.
2673
2674 If not specified, or the expressed duration is negative, the audio is
2675 supposed to be generated forever.
2676
2677 @item nb_samples, n
2678 Set the number of samples per channel per each output frame,
2679 default to 1024.
2680
2681 @item sample_rate, s
2682 Specify the sample rate, default to 44100.
2683 @end table
2684
2685 Each expression in @var{exprs} can contain the following constants:
2686
2687 @table @option
2688 @item n
2689 number of the evaluated sample, starting from 0
2690
2691 @item t
2692 time of the evaluated sample expressed in seconds, starting from 0
2693
2694 @item s
2695 sample rate
2696
2697 @end table
2698
2699 @subsection Examples
2700
2701 @itemize
2702 @item
2703 Generate silence:
2704 @example
2705 aevalsrc=0
2706 @end example
2707
2708 @item
2709 Generate a sin signal with frequency of 440 Hz, set sample rate to
2710 8000 Hz:
2711 @example
2712 aevalsrc="sin(440*2*PI*t):s=8000"
2713 @end example
2714
2715 @item
2716 Generate a two channels signal, specify the channel layout (Front
2717 Center + Back Center) explicitly:
2718 @example
2719 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
2720 @end example
2721
2722 @item
2723 Generate white noise:
2724 @example
2725 aevalsrc="-2+random(0)"
2726 @end example
2727
2728 @item
2729 Generate an amplitude modulated signal:
2730 @example
2731 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
2732 @end example
2733
2734 @item
2735 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
2736 @example
2737 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
2738 @end example
2739
2740 @end itemize
2741
2742 @section anullsrc
2743
2744 The null audio source, return unprocessed audio frames. It is mainly useful
2745 as a template and to be employed in analysis / debugging tools, or as
2746 the source for filters which ignore the input data (for example the sox
2747 synth filter).
2748
2749 This source accepts the following options:
2750
2751 @table @option
2752
2753 @item channel_layout, cl
2754
2755 Specifies the channel layout, and can be either an integer or a string
2756 representing a channel layout. The default value of @var{channel_layout}
2757 is "stereo".
2758
2759 Check the channel_layout_map definition in
2760 @file{libavutil/channel_layout.c} for the mapping between strings and
2761 channel layout values.
2762
2763 @item sample_rate, r
2764 Specifies the sample rate, and defaults to 44100.
2765
2766 @item nb_samples, n
2767 Set the number of samples per requested frames.
2768
2769 @end table
2770
2771 @subsection Examples
2772
2773 @itemize
2774 @item
2775 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
2776 @example
2777 anullsrc=r=48000:cl=4
2778 @end example
2779
2780 @item
2781 Do the same operation with a more obvious syntax:
2782 @example
2783 anullsrc=r=48000:cl=mono
2784 @end example
2785 @end itemize
2786
2787 All the parameters need to be explicitly defined.
2788
2789 @section flite
2790
2791 Synthesize a voice utterance using the libflite library.
2792
2793 To enable compilation of this filter you need to configure FFmpeg with
2794 @code{--enable-libflite}.
2795
2796 Note that the flite library is not thread-safe.
2797
2798 The filter accepts the following options:
2799
2800 @table @option
2801
2802 @item list_voices
2803 If set to 1, list the names of the available voices and exit
2804 immediately. Default value is 0.
2805
2806 @item nb_samples, n
2807 Set the maximum number of samples per frame. Default value is 512.
2808
2809 @item textfile
2810 Set the filename containing the text to speak.
2811
2812 @item text
2813 Set the text to speak.
2814
2815 @item voice, v
2816 Set the voice to use for the speech synthesis. Default value is
2817 @code{kal}. See also the @var{list_voices} option.
2818 @end table
2819
2820 @subsection Examples
2821
2822 @itemize
2823 @item
2824 Read from file @file{speech.txt}, and synthesize the text using the
2825 standard flite voice:
2826 @example
2827 flite=textfile=speech.txt
2828 @end example
2829
2830 @item
2831 Read the specified text selecting the @code{slt} voice:
2832 @example
2833 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
2834 @end example
2835
2836 @item
2837 Input text to ffmpeg:
2838 @example
2839 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
2840 @end example
2841
2842 @item
2843 Make @file{ffplay} speak the specified text, using @code{flite} and
2844 the @code{lavfi} device:
2845 @example
2846 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
2847 @end example
2848 @end itemize
2849
2850 For more information about libflite, check:
2851 @url{http://www.speech.cs.cmu.edu/flite/}
2852
2853 @section sine
2854
2855 Generate an audio signal made of a sine wave with amplitude 1/8.
2856
2857 The audio signal is bit-exact.
2858
2859 The filter accepts the following options:
2860
2861 @table @option
2862
2863 @item frequency, f
2864 Set the carrier frequency. Default is 440 Hz.
2865
2866 @item beep_factor, b
2867 Enable a periodic beep every second with frequency @var{beep_factor} times
2868 the carrier frequency. Default is 0, meaning the beep is disabled.
2869
2870 @item sample_rate, r
2871 Specify the sample rate, default is 44100.
2872
2873 @item duration, d
2874 Specify the duration of the generated audio stream.
2875
2876 @item samples_per_frame
2877 Set the number of samples per output frame.
2878
2879 The expression can contain the following constants:
2880
2881 @table @option
2882 @item n
2883 The (sequential) number of the output audio frame, starting from 0.
2884
2885 @item pts
2886 The PTS (Presentation TimeStamp) of the output audio frame,
2887 expressed in @var{TB} units.
2888
2889 @item t
2890 The PTS of the output audio frame, expressed in seconds.
2891
2892 @item TB
2893 The timebase of the output audio frames.
2894 @end table
2895
2896 Default is @code{1024}.
2897 @end table
2898
2899 @subsection Examples
2900
2901 @itemize
2902
2903 @item
2904 Generate a simple 440 Hz sine wave:
2905 @example
2906 sine
2907 @end example
2908
2909 @item
2910 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
2911 @example
2912 sine=220:4:d=5
2913 sine=f=220:b=4:d=5
2914 sine=frequency=220:beep_factor=4:duration=5
2915 @end example
2916
2917 @item
2918 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
2919 pattern:
2920 @example
2921 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
2922 @end example
2923 @end itemize
2924
2925 @c man end AUDIO SOURCES
2926
2927 @chapter Audio Sinks
2928 @c man begin AUDIO SINKS
2929
2930 Below is a description of the currently available audio sinks.
2931
2932 @section abuffersink
2933
2934 Buffer audio frames, and make them available to the end of filter chain.
2935
2936 This sink is mainly intended for programmatic use, in particular
2937 through the interface defined in @file{libavfilter/buffersink.h}
2938 or the options system.
2939
2940 It accepts a pointer to an AVABufferSinkContext structure, which
2941 defines the incoming buffers' formats, to be passed as the opaque
2942 parameter to @code{avfilter_init_filter} for initialization.
2943 @section anullsink
2944
2945 Null audio sink; do absolutely nothing with the input audio. It is
2946 mainly useful as a template and for use in analysis / debugging
2947 tools.
2948
2949 @c man end AUDIO SINKS
2950
2951 @chapter Video Filters
2952 @c man begin VIDEO FILTERS
2953
2954 When you configure your FFmpeg build, you can disable any of the
2955 existing filters using @code{--disable-filters}.
2956 The configure output will show the video filters included in your
2957 build.
2958
2959 Below is a description of the currently available video filters.
2960
2961 @section alphaextract
2962
2963 Extract the alpha component from the input as a grayscale video. This
2964 is especially useful with the @var{alphamerge} filter.
2965
2966 @section alphamerge
2967
2968 Add or replace the alpha component of the primary input with the
2969 grayscale value of a second input. This is intended for use with
2970 @var{alphaextract} to allow the transmission or storage of frame
2971 sequences that have alpha in a format that doesn't support an alpha
2972 channel.
2973
2974 For example, to reconstruct full frames from a normal YUV-encoded video
2975 and a separate video created with @var{alphaextract}, you might use:
2976 @example
2977 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
2978 @end example
2979
2980 Since this filter is designed for reconstruction, it operates on frame
2981 sequences without considering timestamps, and terminates when either
2982 input reaches end of stream. This will cause problems if your encoding
2983 pipeline drops frames. If you're trying to apply an image as an
2984 overlay to a video stream, consider the @var{overlay} filter instead.
2985
2986 @section ass
2987
2988 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
2989 and libavformat to work. On the other hand, it is limited to ASS (Advanced
2990 Substation Alpha) subtitles files.
2991
2992 This filter accepts the following option in addition to the common options from
2993 the @ref{subtitles} filter:
2994
2995 @table @option
2996 @item shaping
2997 Set the shaping engine
2998
2999 Available values are:
3000 @table @samp
3001 @item auto
3002 The default libass shaping engine, which is the best available.
3003 @item simple
3004 Fast, font-agnostic shaper that can do only substitutions
3005 @item complex
3006 Slower shaper using OpenType for substitutions and positioning
3007 @end table
3008
3009 The default is @code{auto}.
3010 @end table
3011
3012 @section atadenoise
3013 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3014
3015 The filter accepts the following options:
3016
3017 @table @option
3018 @item 0a
3019 Set threshold A for 1st plane. Default is 0.02.
3020 Valid range is 0 to 0.3.
3021
3022 @item 0b
3023 Set threshold B for 1st plane. Default is 0.04.
3024 Valid range is 0 to 5.
3025
3026 @item 1a
3027 Set threshold A for 2nd plane. Default is 0.02.
3028 Valid range is 0 to 0.3.
3029
3030 @item 1b
3031 Set threshold B for 2nd plane. Default is 0.04.
3032 Valid range is 0 to 5.
3033
3034 @item 2a
3035 Set threshold A for 3rd plane. Default is 0.02.
3036 Valid range is 0 to 0.3.
3037
3038 @item 2b
3039 Set threshold B for 3rd plane. Default is 0.04.
3040 Valid range is 0 to 5.
3041
3042 Threshold A is designed to react on abrupt changes in the input signal and
3043 threshold B is designed to react on continuous changes in the input signal.
3044
3045 @item s
3046 Set number of frames filter will use for averaging. Default is 33. Must be odd
3047 number in range [5, 129].
3048 @end table
3049
3050 @section bbox
3051
3052 Compute the bounding box for the non-black pixels in the input frame
3053 luminance plane.
3054
3055 This filter computes the bounding box containing all the pixels with a
3056 luminance value greater than the minimum allowed value.
3057 The parameters describing the bounding box are printed on the filter
3058 log.
3059
3060 The filter accepts the following option:
3061
3062 @table @option
3063 @item min_val
3064 Set the minimal luminance value. Default is @code{16}.
3065 @end table
3066
3067 @section blackdetect
3068
3069 Detect video intervals that are (almost) completely black. Can be
3070 useful to detect chapter transitions, commercials, or invalid
3071 recordings. Output lines contains the time for the start, end and
3072 duration of the detected black interval expressed in seconds.
3073
3074 In order to display the output lines, you need to set the loglevel at
3075 least to the AV_LOG_INFO value.
3076
3077 The filter accepts the following options:
3078
3079 @table @option
3080 @item black_min_duration, d
3081 Set the minimum detected black duration expressed in seconds. It must
3082 be a non-negative floating point number.
3083
3084 Default value is 2.0.
3085
3086 @item picture_black_ratio_th, pic_th
3087 Set the threshold for considering a picture "black".
3088 Express the minimum value for the ratio:
3089 @example
3090 @var{nb_black_pixels} / @var{nb_pixels}
3091 @end example
3092
3093 for which a picture is considered black.
3094 Default value is 0.98.
3095
3096 @item pixel_black_th, pix_th
3097 Set the threshold for considering a pixel "black".
3098
3099 The threshold expresses the maximum pixel luminance value for which a
3100 pixel is considered "black". The provided value is scaled according to
3101 the following equation:
3102 @example
3103 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
3104 @end example
3105
3106 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
3107 the input video format, the range is [0-255] for YUV full-range
3108 formats and [16-235] for YUV non full-range formats.
3109
3110 Default value is 0.10.
3111 @end table
3112
3113 The following example sets the maximum pixel threshold to the minimum
3114 value, and detects only black intervals of 2 or more seconds:
3115 @example
3116 blackdetect=d=2:pix_th=0.00
3117 @end example
3118
3119 @section blackframe
3120
3121 Detect frames that are (almost) completely black. Can be useful to
3122 detect chapter transitions or commercials. Output lines consist of
3123 the frame number of the detected frame, the percentage of blackness,
3124 the position in the file if known or -1 and the timestamp in seconds.
3125
3126 In order to display the output lines, you need to set the loglevel at
3127 least to the AV_LOG_INFO value.
3128
3129 It accepts the following parameters:
3130
3131 @table @option
3132
3133 @item amount
3134 The percentage of the pixels that have to be below the threshold; it defaults to
3135 @code{98}.
3136
3137 @item threshold, thresh
3138 The threshold below which a pixel value is considered black; it defaults to
3139 @code{32}.
3140
3141 @end table
3142
3143 @section blend, tblend
3144
3145 Blend two video frames into each other.
3146
3147 The @code{blend} filter takes two input streams and outputs one
3148 stream, the first input is the "top" layer and second input is
3149 "bottom" layer.  Output terminates when shortest input terminates.
3150
3151 The @code{tblend} (time blend) filter takes two consecutive frames
3152 from one single stream, and outputs the result obtained by blending
3153 the new frame on top of the old frame.
3154
3155 A description of the accepted options follows.
3156
3157 @table @option
3158 @item c0_mode
3159 @item c1_mode
3160 @item c2_mode
3161 @item c3_mode
3162 @item all_mode
3163 Set blend mode for specific pixel component or all pixel components in case
3164 of @var{all_mode}. Default value is @code{normal}.
3165
3166 Available values for component modes are:
3167 @table @samp
3168 @item addition
3169 @item and
3170 @item average
3171 @item burn
3172 @item darken
3173 @item difference
3174 @item difference128
3175 @item divide
3176 @item dodge
3177 @item exclusion
3178 @item glow
3179 @item hardlight
3180 @item hardmix
3181 @item lighten
3182 @item linearlight
3183 @item multiply
3184 @item negation
3185 @item normal
3186 @item or
3187 @item overlay
3188 @item phoenix
3189 @item pinlight
3190 @item reflect
3191 @item screen
3192 @item softlight
3193 @item subtract
3194 @item vividlight
3195 @item xor
3196 @end table
3197
3198 @item c0_opacity
3199 @item c1_opacity
3200 @item c2_opacity
3201 @item c3_opacity
3202 @item all_opacity
3203 Set blend opacity for specific pixel component or all pixel components in case
3204 of @var{all_opacity}. Only used in combination with pixel component blend modes.
3205
3206 @item c0_expr
3207 @item c1_expr
3208 @item c2_expr
3209 @item c3_expr
3210 @item all_expr
3211 Set blend expression for specific pixel component or all pixel components in case
3212 of @var{all_expr}. Note that related mode options will be ignored if those are set.
3213
3214 The expressions can use the following variables:
3215
3216 @table @option
3217 @item N
3218 The sequential number of the filtered frame, starting from @code{0}.
3219
3220 @item X
3221 @item Y
3222 the coordinates of the current sample
3223
3224 @item W
3225 @item H
3226 the width and height of currently filtered plane
3227
3228 @item SW
3229 @item SH
3230 Width and height scale depending on the currently filtered plane. It is the
3231 ratio between the corresponding luma plane number of pixels and the current
3232 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3233 @code{0.5,0.5} for chroma planes.
3234
3235 @item T
3236 Time of the current frame, expressed in seconds.
3237
3238 @item TOP, A
3239 Value of pixel component at current location for first video frame (top layer).
3240
3241 @item BOTTOM, B
3242 Value of pixel component at current location for second video frame (bottom layer).
3243 @end table
3244
3245 @item shortest
3246 Force termination when the shortest input terminates. Default is
3247 @code{0}. This option is only defined for the @code{blend} filter.
3248
3249 @item repeatlast
3250 Continue applying the last bottom frame after the end of the stream. A value of
3251 @code{0} disable the filter after the last frame of the bottom layer is reached.
3252 Default is @code{1}. This option is only defined for the @code{blend} filter.
3253 @end table
3254
3255 @subsection Examples
3256
3257 @itemize
3258 @item
3259 Apply transition from bottom layer to top layer in first 10 seconds:
3260 @example
3261 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
3262 @end example
3263
3264 @item
3265 Apply 1x1 checkerboard effect:
3266 @example
3267 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
3268 @end example
3269
3270 @item
3271 Apply uncover left effect:
3272 @example
3273 blend=all_expr='if(gte(N*SW+X,W),A,B)'
3274 @end example
3275
3276 @item
3277 Apply uncover down effect:
3278 @example
3279 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
3280 @end example
3281
3282 @item
3283 Apply uncover up-left effect:
3284 @example
3285 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
3286 @end example
3287
3288 @item
3289 Display differences between the current and the previous frame:
3290 @example
3291 tblend=all_mode=difference128
3292 @end example
3293 @end itemize
3294
3295 @section boxblur
3296
3297 Apply a boxblur algorithm to the input video.
3298
3299 It accepts the following parameters:
3300
3301 @table @option
3302
3303 @item luma_radius, lr
3304 @item luma_power, lp
3305 @item chroma_radius, cr
3306 @item chroma_power, cp
3307 @item alpha_radius, ar
3308 @item alpha_power, ap
3309
3310 @end table
3311
3312 A description of the accepted options follows.
3313
3314 @table @option
3315 @item luma_radius, lr
3316 @item chroma_radius, cr
3317 @item alpha_radius, ar
3318 Set an expression for the box radius in pixels used for blurring the
3319 corresponding input plane.
3320
3321 The radius value must be a non-negative number, and must not be
3322 greater than the value of the expression @code{min(w,h)/2} for the
3323 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
3324 planes.
3325
3326 Default value for @option{luma_radius} is "2". If not specified,
3327 @option{chroma_radius} and @option{alpha_radius} default to the
3328 corresponding value set for @option{luma_radius}.
3329
3330 The expressions can contain the following constants:
3331 @table @option
3332 @item w
3333 @item h
3334 The input width and height in pixels.
3335
3336 @item cw
3337 @item ch
3338 The input chroma image width and height in pixels.
3339
3340 @item hsub
3341 @item vsub
3342 The horizontal and vertical chroma subsample values. For example, for the
3343 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
3344 @end table
3345
3346 @item luma_power, lp
3347 @item chroma_power, cp
3348 @item alpha_power, ap
3349 Specify how many times the boxblur filter is applied to the
3350 corresponding plane.
3351
3352 Default value for @option{luma_power} is 2. If not specified,
3353 @option{chroma_power} and @option{alpha_power} default to the
3354 corresponding value set for @option{luma_power}.
3355
3356 A value of 0 will disable the effect.
3357 @end table
3358
3359 @subsection Examples
3360
3361 @itemize
3362 @item
3363 Apply a boxblur filter with the luma, chroma, and alpha radii
3364 set to 2:
3365 @example
3366 boxblur=luma_radius=2:luma_power=1
3367 boxblur=2:1
3368 @end example
3369
3370 @item
3371 Set the luma radius to 2, and alpha and chroma radius to 0:
3372 @example
3373 boxblur=2:1:cr=0:ar=0
3374 @end example
3375
3376 @item
3377 Set the luma and chroma radii to a fraction of the video dimension:
3378 @example
3379 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
3380 @end example
3381 @end itemize
3382
3383 @section codecview
3384
3385 Visualize information exported by some codecs.
3386
3387 Some codecs can export information through frames using side-data or other
3388 means. For example, some MPEG based codecs export motion vectors through the
3389 @var{export_mvs} flag in the codec @option{flags2} option.
3390
3391 The filter accepts the following option:
3392
3393 @table @option
3394 @item mv
3395 Set motion vectors to visualize.
3396
3397 Available flags for @var{mv} are:
3398
3399 @table @samp
3400 @item pf
3401 forward predicted MVs of P-frames
3402 @item bf
3403 forward predicted MVs of B-frames
3404 @item bb
3405 backward predicted MVs of B-frames
3406 @end table
3407 @end table
3408
3409 @subsection Examples
3410
3411 @itemize
3412 @item
3413 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
3414 @example
3415 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
3416 @end example
3417 @end itemize
3418
3419 @section colorbalance
3420 Modify intensity of primary colors (red, green and blue) of input frames.
3421
3422 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
3423 regions for the red-cyan, green-magenta or blue-yellow balance.
3424
3425 A positive adjustment value shifts the balance towards the primary color, a negative
3426 value towards the complementary color.
3427
3428 The filter accepts the following options:
3429
3430 @table @option
3431 @item rs
3432 @item gs
3433 @item bs
3434 Adjust red, green and blue shadows (darkest pixels).
3435
3436 @item rm
3437 @item gm
3438 @item bm
3439 Adjust red, green and blue midtones (medium pixels).
3440
3441 @item rh
3442 @item gh
3443 @item bh
3444 Adjust red, green and blue highlights (brightest pixels).
3445
3446 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3447 @end table
3448
3449 @subsection Examples
3450
3451 @itemize
3452 @item
3453 Add red color cast to shadows:
3454 @example
3455 colorbalance=rs=.3
3456 @end example
3457 @end itemize
3458
3459 @section colorkey
3460 RGB colorspace color keying.
3461
3462 The filter accepts the following options:
3463
3464 @table @option
3465 @item color
3466 The color which will be replaced with transparency.
3467
3468 @item similarity
3469 Similarity percentage with the key color.
3470
3471 0.01 matches only the exact key color, while 1.0 matches everything.
3472
3473 @item blend
3474 Blend percentage.
3475
3476 0.0 makes pixels either fully transparent, or not transparent at all.
3477
3478 Higher values result in semi-transparent pixels, with a higher transparency
3479 the more similar the pixels color is to the key color.
3480 @end table
3481
3482 @subsection Examples
3483
3484 @itemize
3485 @item
3486 Make every green pixel in the input image transparent:
3487 @example
3488 ffmpeg -i input.png -vf colorkey=green out.png
3489 @end example
3490
3491 @item
3492 Overlay a greenscreen-video on top of a static background image.
3493 @example
3494 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
3495 @end example
3496 @end itemize
3497
3498 @section colorlevels
3499
3500 Adjust video input frames using levels.
3501
3502 The filter accepts the following options:
3503
3504 @table @option
3505 @item rimin
3506 @item gimin
3507 @item bimin
3508 @item aimin
3509 Adjust red, green, blue and alpha input black point.
3510 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3511
3512 @item rimax
3513 @item gimax
3514 @item bimax
3515 @item aimax
3516 Adjust red, green, blue and alpha input white point.
3517 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
3518
3519 Input levels are used to lighten highlights (bright tones), darken shadows
3520 (dark tones), change the balance of bright and dark tones.
3521
3522 @item romin
3523 @item gomin
3524 @item bomin
3525 @item aomin
3526 Adjust red, green, blue and alpha output black point.
3527 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
3528
3529 @item romax
3530 @item gomax
3531 @item bomax
3532 @item aomax
3533 Adjust red, green, blue and alpha output white point.
3534 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
3535
3536 Output levels allows manual selection of a constrained output level range.
3537 @end table
3538
3539 @subsection Examples
3540
3541 @itemize
3542 @item
3543 Make video output darker:
3544 @example
3545 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
3546 @end example
3547
3548 @item
3549 Increase contrast:
3550 @example
3551 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
3552 @end example
3553
3554 @item
3555 Make video output lighter:
3556 @example
3557 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
3558 @end example
3559
3560 @item
3561 Increase brightness:
3562 @example
3563 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
3564 @end example
3565 @end itemize
3566
3567 @section colorchannelmixer
3568
3569 Adjust video input frames by re-mixing color channels.
3570
3571 This filter modifies a color channel by adding the values associated to
3572 the other channels of the same pixels. For example if the value to
3573 modify is red, the output value will be:
3574 @example
3575 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
3576 @end example
3577
3578 The filter accepts the following options:
3579
3580 @table @option
3581 @item rr
3582 @item rg
3583 @item rb
3584 @item ra
3585 Adjust contribution of input red, green, blue and alpha channels for output red channel.
3586 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
3587
3588 @item gr
3589 @item gg
3590 @item gb
3591 @item ga
3592 Adjust contribution of input red, green, blue and alpha channels for output green channel.
3593 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
3594
3595 @item br
3596 @item bg
3597 @item bb
3598 @item ba
3599 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
3600 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
3601
3602 @item ar
3603 @item ag
3604 @item ab
3605 @item aa
3606 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
3607 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
3608
3609 Allowed ranges for options are @code{[-2.0, 2.0]}.
3610 @end table
3611
3612 @subsection Examples
3613
3614 @itemize
3615 @item
3616 Convert source to grayscale:
3617 @example
3618 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
3619 @end example
3620 @item
3621 Simulate sepia tones:
3622 @example
3623 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
3624 @end example
3625 @end itemize
3626
3627 @section colormatrix
3628
3629 Convert color matrix.
3630
3631 The filter accepts the following options:
3632
3633 @table @option
3634 @item src
3635 @item dst
3636 Specify the source and destination color matrix. Both values must be
3637 specified.
3638
3639 The accepted values are:
3640 @table @samp
3641 @item bt709
3642 BT.709
3643
3644 @item bt601
3645 BT.601
3646
3647 @item smpte240m
3648 SMPTE-240M
3649
3650 @item fcc
3651 FCC
3652 @end table
3653 @end table
3654
3655 For example to convert from BT.601 to SMPTE-240M, use the command:
3656 @example
3657 colormatrix=bt601:smpte240m
3658 @end example
3659
3660 @section copy
3661
3662 Copy the input source unchanged to the output. This is mainly useful for
3663 testing purposes.
3664
3665 @section crop
3666
3667 Crop the input video to given dimensions.
3668
3669 It accepts the following parameters:
3670
3671 @table @option
3672 @item w, out_w
3673 The width of the output video. It defaults to @code{iw}.
3674 This expression is evaluated only once during the filter
3675 configuration, or when the @samp{w} or @samp{out_w} command is sent.
3676
3677 @item h, out_h
3678 The height of the output video. It defaults to @code{ih}.
3679 This expression is evaluated only once during the filter
3680 configuration, or when the @samp{h} or @samp{out_h} command is sent.
3681
3682 @item x
3683 The horizontal position, in the input video, of the left edge of the output
3684 video. It defaults to @code{(in_w-out_w)/2}.
3685 This expression is evaluated per-frame.
3686
3687 @item y
3688 The vertical position, in the input video, of the top edge of the output video.
3689 It defaults to @code{(in_h-out_h)/2}.
3690 This expression is evaluated per-frame.
3691
3692 @item keep_aspect
3693 If set to 1 will force the output display aspect ratio
3694 to be the same of the input, by changing the output sample aspect
3695 ratio. It defaults to 0.
3696 @end table
3697
3698 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
3699 expressions containing the following constants:
3700
3701 @table @option
3702 @item x
3703 @item y
3704 The computed values for @var{x} and @var{y}. They are evaluated for
3705 each new frame.
3706
3707 @item in_w
3708 @item in_h
3709 The input width and height.
3710
3711 @item iw
3712 @item ih
3713 These are the same as @var{in_w} and @var{in_h}.
3714
3715 @item out_w
3716 @item out_h
3717 The output (cropped) width and height.
3718
3719 @item ow
3720 @item oh
3721 These are the same as @var{out_w} and @var{out_h}.
3722
3723 @item a
3724 same as @var{iw} / @var{ih}
3725
3726 @item sar
3727 input sample aspect ratio
3728
3729 @item dar
3730 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
3731
3732 @item hsub
3733 @item vsub
3734 horizontal and vertical chroma subsample values. For example for the
3735 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3736
3737 @item n
3738 The number of the input frame, starting from 0.
3739
3740 @item pos
3741 the position in the file of the input frame, NAN if unknown
3742
3743 @item t
3744 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
3745
3746 @end table
3747
3748 The expression for @var{out_w} may depend on the value of @var{out_h},
3749 and the expression for @var{out_h} may depend on @var{out_w}, but they
3750 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
3751 evaluated after @var{out_w} and @var{out_h}.
3752
3753 The @var{x} and @var{y} parameters specify the expressions for the
3754 position of the top-left corner of the output (non-cropped) area. They
3755 are evaluated for each frame. If the evaluated value is not valid, it
3756 is approximated to the nearest valid value.
3757
3758 The expression for @var{x} may depend on @var{y}, and the expression
3759 for @var{y} may depend on @var{x}.
3760
3761 @subsection Examples
3762
3763 @itemize
3764 @item
3765 Crop area with size 100x100 at position (12,34).
3766 @example
3767 crop=100:100:12:34
3768 @end example
3769
3770 Using named options, the example above becomes:
3771 @example
3772 crop=w=100:h=100:x=12:y=34
3773 @end example
3774
3775 @item
3776 Crop the central input area with size 100x100:
3777 @example
3778 crop=100:100
3779 @end example
3780
3781 @item
3782 Crop the central input area with size 2/3 of the input video:
3783 @example
3784 crop=2/3*in_w:2/3*in_h
3785 @end example
3786
3787 @item
3788 Crop the input video central square:
3789 @example
3790 crop=out_w=in_h
3791 crop=in_h
3792 @end example
3793
3794 @item
3795 Delimit the rectangle with the top-left corner placed at position
3796 100:100 and the right-bottom corner corresponding to the right-bottom
3797 corner of the input image.
3798 @example
3799 crop=in_w-100:in_h-100:100:100
3800 @end example
3801
3802 @item
3803 Crop 10 pixels from the left and right borders, and 20 pixels from
3804 the top and bottom borders
3805 @example
3806 crop=in_w-2*10:in_h-2*20
3807 @end example
3808
3809 @item
3810 Keep only the bottom right quarter of the input image:
3811 @example
3812 crop=in_w/2:in_h/2:in_w/2:in_h/2
3813 @end example
3814
3815 @item
3816 Crop height for getting Greek harmony:
3817 @example
3818 crop=in_w:1/PHI*in_w
3819 @end example
3820
3821 @item
3822 Apply trembling effect:
3823 @example
3824 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)
3825 @end example
3826
3827 @item
3828 Apply erratic camera effect depending on timestamp:
3829 @example
3830 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)"
3831 @end example
3832
3833 @item
3834 Set x depending on the value of y:
3835 @example
3836 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
3837 @end example
3838 @end itemize
3839
3840 @subsection Commands
3841
3842 This filter supports the following commands:
3843 @table @option
3844 @item w, out_w
3845 @item h, out_h
3846 @item x
3847 @item y
3848 Set width/height of the output video and the horizontal/vertical position
3849 in the input video.
3850 The command accepts the same syntax of the corresponding option.
3851
3852 If the specified expression is not valid, it is kept at its current
3853 value.
3854 @end table
3855
3856 @section cropdetect
3857
3858 Auto-detect the crop size.
3859
3860 It calculates the necessary cropping parameters and prints the
3861 recommended parameters via the logging system. The detected dimensions
3862 correspond to the non-black area of the input video.
3863
3864 It accepts the following parameters:
3865
3866 @table @option
3867
3868 @item limit
3869 Set higher black value threshold, which can be optionally specified
3870 from nothing (0) to everything (255 for 8bit based formats). An intensity
3871 value greater to the set value is considered non-black. It defaults to 24.
3872 You can also specify a value between 0.0 and 1.0 which will be scaled depending
3873 on the bitdepth of the pixel format.
3874
3875 @item round
3876 The value which the width/height should be divisible by. It defaults to
3877 16. The offset is automatically adjusted to center the video. Use 2 to
3878 get only even dimensions (needed for 4:2:2 video). 16 is best when
3879 encoding to most video codecs.
3880
3881 @item reset_count, reset
3882 Set the counter that determines after how many frames cropdetect will
3883 reset the previously detected largest video area and start over to
3884 detect the current optimal crop area. Default value is 0.
3885
3886 This can be useful when channel logos distort the video area. 0
3887 indicates 'never reset', and returns the largest area encountered during
3888 playback.
3889 @end table
3890
3891 @anchor{curves}
3892 @section curves
3893
3894 Apply color adjustments using curves.
3895
3896 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
3897 component (red, green and blue) has its values defined by @var{N} key points
3898 tied from each other using a smooth curve. The x-axis represents the pixel
3899 values from the input frame, and the y-axis the new pixel values to be set for
3900 the output frame.
3901
3902 By default, a component curve is defined by the two points @var{(0;0)} and
3903 @var{(1;1)}. This creates a straight line where each original pixel value is
3904 "adjusted" to its own value, which means no change to the image.
3905
3906 The filter allows you to redefine these two points and add some more. A new
3907 curve (using a natural cubic spline interpolation) will be define to pass
3908 smoothly through all these new coordinates. The new defined points needs to be
3909 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
3910 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
3911 the vector spaces, the values will be clipped accordingly.
3912
3913 If there is no key point defined in @code{x=0}, the filter will automatically
3914 insert a @var{(0;0)} point. In the same way, if there is no key point defined
3915 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
3916
3917 The filter accepts the following options:
3918
3919 @table @option
3920 @item preset
3921 Select one of the available color presets. This option can be used in addition
3922 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
3923 options takes priority on the preset values.
3924 Available presets are:
3925 @table @samp
3926 @item none
3927 @item color_negative
3928 @item cross_process
3929 @item darker
3930 @item increase_contrast
3931 @item lighter
3932 @item linear_contrast
3933 @item medium_contrast
3934 @item negative
3935 @item strong_contrast
3936 @item vintage
3937 @end table
3938 Default is @code{none}.
3939 @item master, m
3940 Set the master key points. These points will define a second pass mapping. It
3941 is sometimes called a "luminance" or "value" mapping. It can be used with
3942 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
3943 post-processing LUT.
3944 @item red, r
3945 Set the key points for the red component.
3946 @item green, g
3947 Set the key points for the green component.
3948 @item blue, b
3949 Set the key points for the blue component.
3950 @item all
3951 Set the key points for all components (not including master).
3952 Can be used in addition to the other key points component
3953 options. In this case, the unset component(s) will fallback on this
3954 @option{all} setting.
3955 @item psfile
3956 Specify a Photoshop curves file (@code{.asv}) to import the settings from.
3957 @end table
3958
3959 To avoid some filtergraph syntax conflicts, each key points list need to be
3960 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
3961
3962 @subsection Examples
3963
3964 @itemize
3965 @item
3966 Increase slightly the middle level of blue:
3967 @example
3968 curves=blue='0.5/0.58'
3969 @end example
3970
3971 @item
3972 Vintage effect:
3973 @example
3974 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
3975 @end example
3976 Here we obtain the following coordinates for each components:
3977 @table @var
3978 @item red
3979 @code{(0;0.11) (0.42;0.51) (1;0.95)}
3980 @item green
3981 @code{(0;0) (0.50;0.48) (1;1)}
3982 @item blue
3983 @code{(0;0.22) (0.49;0.44) (1;0.80)}
3984 @end table
3985
3986 @item
3987 The previous example can also be achieved with the associated built-in preset:
3988 @example
3989 curves=preset=vintage
3990 @end example
3991
3992 @item
3993 Or simply:
3994 @example
3995 curves=vintage
3996 @end example
3997
3998 @item
3999 Use a Photoshop preset and redefine the points of the green component:
4000 @example
4001 curves=psfile='MyCurvesPresets/purple.asv':green='0.45/0.53'
4002 @end example
4003 @end itemize
4004
4005 @section dctdnoiz
4006
4007 Denoise frames using 2D DCT (frequency domain filtering).
4008
4009 This filter is not designed for real time.
4010
4011 The filter accepts the following options:
4012
4013 @table @option
4014 @item sigma, s
4015 Set the noise sigma constant.
4016
4017 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
4018 coefficient (absolute value) below this threshold with be dropped.
4019
4020 If you need a more advanced filtering, see @option{expr}.
4021
4022 Default is @code{0}.
4023
4024 @item overlap
4025 Set number overlapping pixels for each block. Since the filter can be slow, you
4026 may want to reduce this value, at the cost of a less effective filter and the
4027 risk of various artefacts.
4028
4029 If the overlapping value doesn't permit processing the whole input width or
4030 height, a warning will be displayed and according borders won't be denoised.
4031
4032 Default value is @var{blocksize}-1, which is the best possible setting.
4033
4034 @item expr, e
4035 Set the coefficient factor expression.
4036
4037 For each coefficient of a DCT block, this expression will be evaluated as a
4038 multiplier value for the coefficient.
4039
4040 If this is option is set, the @option{sigma} option will be ignored.
4041
4042 The absolute value of the coefficient can be accessed through the @var{c}
4043 variable.
4044
4045 @item n
4046 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
4047 @var{blocksize}, which is the width and height of the processed blocks.
4048
4049 The default value is @var{3} (8x8) and can be raised to @var{4} for a
4050 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
4051 on the speed processing. Also, a larger block size does not necessarily means a
4052 better de-noising.
4053 @end table
4054
4055 @subsection Examples
4056
4057 Apply a denoise with a @option{sigma} of @code{4.5}:
4058 @example
4059 dctdnoiz=4.5
4060 @end example
4061
4062 The same operation can be achieved using the expression system:
4063 @example
4064 dctdnoiz=e='gte(c, 4.5*3)'
4065 @end example
4066
4067 Violent denoise using a block size of @code{16x16}:
4068 @example
4069 dctdnoiz=15:n=4
4070 @end example
4071
4072 @section deband
4073
4074 Remove banding artifacts from input video.
4075 It works by replacing banded pixels with average value of referenced pixels.
4076
4077 The filter accepts the following options:
4078
4079 @table @option
4080 @item 1thr
4081 @item 2thr
4082 @item 3thr
4083 @item 4thr
4084 Set banding detection threshold for each plane. Default is 0.02.
4085 Valid range is 0.00003 to 0.5.
4086 If difference between current pixel and reference pixel is less than threshold,
4087 it will be considered as banded.
4088
4089 @item range, r
4090 Banding detection range in pixels. Default is 16. If positive, random number
4091 in range 0 to set value will be used. If negative, exact absolute value
4092 will be used.
4093 The range defines square of four pixels around current pixel.
4094
4095 @item direction, d
4096 Set direction in radians from which four pixel will be compared. If positive,
4097 random direction from 0 to set direction will be picked. If negative, exact of
4098 absolute value will be picked. For example direction 0, -PI or -2*PI radians
4099 will pick only pixels on same row and -PI/2 will pick only pixels on same
4100 column.
4101
4102 @item blur
4103 If enabled, current pixel is compared with average value of all four
4104 surrounding pixels. The default is enabled. If disabled current pixel is
4105 compared with all four surrounding pixels. The pixel is considered banded
4106 if only all four differences with surrounding pixels are less than threshold.
4107 @end table
4108
4109 @anchor{decimate}
4110 @section decimate
4111
4112 Drop duplicated frames at regular intervals.
4113
4114 The filter accepts the following options:
4115
4116 @table @option
4117 @item cycle
4118 Set the number of frames from which one will be dropped. Setting this to
4119 @var{N} means one frame in every batch of @var{N} frames will be dropped.
4120 Default is @code{5}.
4121
4122 @item dupthresh
4123 Set the threshold for duplicate detection. If the difference metric for a frame
4124 is less than or equal to this value, then it is declared as duplicate. Default
4125 is @code{1.1}
4126
4127 @item scthresh
4128 Set scene change threshold. Default is @code{15}.
4129
4130 @item blockx
4131 @item blocky
4132 Set the size of the x and y-axis blocks used during metric calculations.
4133 Larger blocks give better noise suppression, but also give worse detection of
4134 small movements. Must be a power of two. Default is @code{32}.
4135
4136 @item ppsrc
4137 Mark main input as a pre-processed input and activate clean source input
4138 stream. This allows the input to be pre-processed with various filters to help
4139 the metrics calculation while keeping the frame selection lossless. When set to
4140 @code{1}, the first stream is for the pre-processed input, and the second
4141 stream is the clean source from where the kept frames are chosen. Default is
4142 @code{0}.
4143
4144 @item chroma
4145 Set whether or not chroma is considered in the metric calculations. Default is
4146 @code{1}.
4147 @end table
4148
4149 @section deflate
4150
4151 Apply deflate effect to the video.
4152
4153 This filter replaces the pixel by the local(3x3) average by taking into account
4154 only values lower than the pixel.
4155
4156 It accepts the following options:
4157
4158 @table @option
4159 @item threshold0
4160 @item threshold1
4161 @item threshold2
4162 @item threshold3
4163 Allows to limit the maximum change for each plane, default is 65535.
4164 If 0, plane will remain unchanged.
4165 @end table
4166
4167 @section dejudder
4168
4169 Remove judder produced by partially interlaced telecined content.
4170
4171 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
4172 source was partially telecined content then the output of @code{pullup,dejudder}
4173 will have a variable frame rate. May change the recorded frame rate of the
4174 container. Aside from that change, this filter will not affect constant frame
4175 rate video.
4176
4177 The option available in this filter is:
4178 @table @option
4179
4180 @item cycle
4181 Specify the length of the window over which the judder repeats.
4182
4183 Accepts any integer greater than 1. Useful values are:
4184 @table @samp
4185
4186 @item 4
4187 If the original was telecined from 24 to 30 fps (Film to NTSC).
4188
4189 @item 5
4190 If the original was telecined from 25 to 30 fps (PAL to NTSC).
4191
4192 @item 20
4193 If a mixture of the two.
4194 @end table
4195
4196 The default is @samp{4}.
4197 @end table
4198
4199 @section delogo
4200
4201 Suppress a TV station logo by a simple interpolation of the surrounding
4202 pixels. Just set a rectangle covering the logo and watch it disappear
4203 (and sometimes something even uglier appear - your mileage may vary).
4204
4205 It accepts the following parameters:
4206 @table @option
4207
4208 @item x
4209 @item y
4210 Specify the top left corner coordinates of the logo. They must be
4211 specified.
4212
4213 @item w
4214 @item h
4215 Specify the width and height of the logo to clear. They must be
4216 specified.
4217
4218 @item band, t
4219 Specify the thickness of the fuzzy edge of the rectangle (added to
4220 @var{w} and @var{h}). The default value is 4.
4221
4222 @item show
4223 When set to 1, a green rectangle is drawn on the screen to simplify
4224 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
4225 The default value is 0.
4226
4227 The rectangle is drawn on the outermost pixels which will be (partly)
4228 replaced with interpolated values. The values of the next pixels
4229 immediately outside this rectangle in each direction will be used to
4230 compute the interpolated pixel values inside the rectangle.
4231
4232 @end table
4233
4234 @subsection Examples
4235
4236 @itemize
4237 @item
4238 Set a rectangle covering the area with top left corner coordinates 0,0
4239 and size 100x77, and a band of size 10:
4240 @example
4241 delogo=x=0:y=0:w=100:h=77:band=10
4242 @end example
4243
4244 @end itemize
4245
4246 @section deshake
4247
4248 Attempt to fix small changes in horizontal and/or vertical shift. This
4249 filter helps remove camera shake from hand-holding a camera, bumping a
4250 tripod, moving on a vehicle, etc.
4251
4252 The filter accepts the following options:
4253
4254 @table @option
4255
4256 @item x
4257 @item y
4258 @item w
4259 @item h
4260 Specify a rectangular area where to limit the search for motion
4261 vectors.
4262 If desired the search for motion vectors can be limited to a
4263 rectangular area of the frame defined by its top left corner, width
4264 and height. These parameters have the same meaning as the drawbox
4265 filter which can be used to visualise the position of the bounding
4266 box.
4267
4268 This is useful when simultaneous movement of subjects within the frame
4269 might be confused for camera motion by the motion vector search.
4270
4271 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
4272 then the full frame is used. This allows later options to be set
4273 without specifying the bounding box for the motion vector search.
4274
4275 Default - search the whole frame.
4276
4277 @item rx
4278 @item ry
4279 Specify the maximum extent of movement in x and y directions in the
4280 range 0-64 pixels. Default 16.
4281
4282 @item edge
4283 Specify how to generate pixels to fill blanks at the edge of the
4284 frame. Available values are:
4285 @table @samp
4286 @item blank, 0
4287 Fill zeroes at blank locations
4288 @item original, 1
4289 Original image at blank locations
4290 @item clamp, 2
4291 Extruded edge value at blank locations
4292 @item mirror, 3
4293 Mirrored edge at blank locations
4294 @end table
4295 Default value is @samp{mirror}.
4296
4297 @item blocksize
4298 Specify the blocksize to use for motion search. Range 4-128 pixels,
4299 default 8.
4300
4301 @item contrast
4302 Specify the contrast threshold for blocks. Only blocks with more than
4303 the specified contrast (difference between darkest and lightest
4304 pixels) will be considered. Range 1-255, default 125.
4305
4306 @item search
4307 Specify the search strategy. Available values are:
4308 @table @samp
4309 @item exhaustive, 0
4310 Set exhaustive search
4311 @item less, 1
4312 Set less exhaustive search.
4313 @end table
4314 Default value is @samp{exhaustive}.
4315
4316 @item filename
4317 If set then a detailed log of the motion search is written to the
4318 specified file.
4319
4320 @item opencl
4321 If set to 1, specify using OpenCL capabilities, only available if
4322 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
4323
4324 @end table
4325
4326 @section detelecine
4327
4328 Apply an exact inverse of the telecine operation. It requires a predefined
4329 pattern specified using the pattern option which must be the same as that passed
4330 to the telecine filter.
4331
4332 This filter accepts the following options:
4333
4334 @table @option
4335 @item first_field
4336 @table @samp
4337 @item top, t
4338 top field first
4339 @item bottom, b
4340 bottom field first
4341 The default value is @code{top}.
4342 @end table
4343
4344 @item pattern
4345 A string of numbers representing the pulldown pattern you wish to apply.
4346 The default value is @code{23}.
4347
4348 @item start_frame
4349 A number representing position of the first frame with respect to the telecine
4350 pattern. This is to be used if the stream is cut. The default value is @code{0}.
4351 @end table
4352
4353 @section dilation
4354
4355 Apply dilation effect to the video.
4356
4357 This filter replaces the pixel by the local(3x3) maximum.
4358
4359 It accepts the following options:
4360
4361 @table @option
4362 @item threshold0
4363 @item threshold1
4364 @item threshold2
4365 @item threshold3
4366 Allows to limit the maximum change for each plane, default is 65535.
4367 If 0, plane will remain unchanged.
4368
4369 @item coordinates
4370 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
4371 pixels are used.
4372
4373 Flags to local 3x3 coordinates maps like this:
4374
4375     1 2 3
4376     4   5
4377     6 7 8
4378 @end table
4379
4380 @section drawbox
4381
4382 Draw a colored box on the input image.
4383
4384 It accepts the following parameters:
4385
4386 @table @option
4387 @item x
4388 @item y
4389 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
4390
4391 @item width, w
4392 @item height, h
4393 The expressions which specify the width and height of the box; if 0 they are interpreted as
4394 the input width and height. It defaults to 0.
4395
4396 @item color, c
4397 Specify the color of the box to write. For the general syntax of this option,
4398 check the "Color" section in the ffmpeg-utils manual. If the special
4399 value @code{invert} is used, the box edge color is the same as the
4400 video with inverted luma.
4401
4402 @item thickness, t
4403 The expression which sets the thickness of the box edge. Default value is @code{3}.
4404
4405 See below for the list of accepted constants.
4406 @end table
4407
4408 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4409 following constants:
4410
4411 @table @option
4412 @item dar
4413 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4414
4415 @item hsub
4416 @item vsub
4417 horizontal and vertical chroma subsample values. For example for the
4418 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4419
4420 @item in_h, ih
4421 @item in_w, iw
4422 The input width and height.
4423
4424 @item sar
4425 The input sample aspect ratio.
4426
4427 @item x
4428 @item y
4429 The x and y offset coordinates where the box is drawn.
4430
4431 @item w
4432 @item h
4433 The width and height of the drawn box.
4434
4435 @item t
4436 The thickness of the drawn box.
4437
4438 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4439 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4440
4441 @end table
4442
4443 @subsection Examples
4444
4445 @itemize
4446 @item
4447 Draw a black box around the edge of the input image:
4448 @example
4449 drawbox
4450 @end example
4451
4452 @item
4453 Draw a box with color red and an opacity of 50%:
4454 @example
4455 drawbox=10:20:200:60:red@@0.5
4456 @end example
4457
4458 The previous example can be specified as:
4459 @example
4460 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
4461 @end example
4462
4463 @item
4464 Fill the box with pink color:
4465 @example
4466 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
4467 @end example
4468
4469 @item
4470 Draw a 2-pixel red 2.40:1 mask:
4471 @example
4472 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
4473 @end example
4474 @end itemize
4475
4476 @section drawgraph, adrawgraph
4477
4478 Draw a graph using input video or audio metadata.
4479
4480 It accepts the following parameters:
4481
4482 @table @option
4483 @item m1
4484 Set 1st frame metadata key from which metadata values will be used to draw a graph.
4485
4486 @item fg1
4487 Set 1st foreground color expression.
4488
4489 @item m2
4490 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
4491
4492 @item fg2
4493 Set 2nd foreground color expression.
4494
4495 @item m3
4496 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
4497
4498 @item fg3
4499 Set 3rd foreground color expression.
4500
4501 @item m4
4502 Set 4th frame metadata key from which metadata values will be used to draw a graph.
4503
4504 @item fg4
4505 Set 4th foreground color expression.
4506
4507 @item min
4508 Set minimal value of metadata value.
4509
4510 @item max
4511 Set maximal value of metadata value.
4512
4513 @item bg
4514 Set graph background color. Default is white.
4515
4516 @item mode
4517 Set graph mode.
4518
4519 Available values for mode is:
4520 @table @samp
4521 @item bar
4522 @item dot
4523 @item line
4524 @end table
4525
4526 Default is @code{line}.
4527
4528 @item slide
4529 Set slide mode.
4530
4531 Available values for slide is:
4532 @table @samp
4533 @item frame
4534 Draw new frame when right border is reached.
4535
4536 @item replace
4537 Replace old columns with new ones.
4538
4539 @item scroll
4540 Scroll from right to left.
4541
4542 @item rscroll
4543 Scroll from left to right.
4544 @end table
4545
4546 Default is @code{frame}.
4547
4548 @item size
4549 Set size of graph video. For the syntax of this option, check the
4550 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
4551 The default value is @code{900x256}.
4552
4553 The foreground color expressions can use the following variables:
4554 @table @option
4555 @item MIN
4556 Minimal value of metadata value.
4557
4558 @item MAX
4559 Maximal value of metadata value.
4560
4561 @item VAL
4562 Current metadata key value.
4563 @end table
4564
4565 The color is defined as 0xAABBGGRR.
4566 @end table
4567
4568 Example using metadata from @ref{signalstats} filter:
4569 @example
4570 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
4571 @end example
4572
4573 Example using metadata from @ref{ebur128} filter:
4574 @example
4575 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
4576 @end example
4577
4578 @section drawgrid
4579
4580 Draw a grid on the input image.
4581
4582 It accepts the following parameters:
4583
4584 @table @option
4585 @item x
4586 @item y
4587 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
4588
4589 @item width, w
4590 @item height, h
4591 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
4592 input width and height, respectively, minus @code{thickness}, so image gets
4593 framed. Default to 0.
4594
4595 @item color, c
4596 Specify the color of the grid. For the general syntax of this option,
4597 check the "Color" section in the ffmpeg-utils manual. If the special
4598 value @code{invert} is used, the grid color is the same as the
4599 video with inverted luma.
4600
4601 @item thickness, t
4602 The expression which sets the thickness of the grid line. Default value is @code{1}.
4603
4604 See below for the list of accepted constants.
4605 @end table
4606
4607 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4608 following constants:
4609
4610 @table @option
4611 @item dar
4612 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4613
4614 @item hsub
4615 @item vsub
4616 horizontal and vertical chroma subsample values. For example for the
4617 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4618
4619 @item in_h, ih
4620 @item in_w, iw
4621 The input grid cell width and height.
4622
4623 @item sar
4624 The input sample aspect ratio.
4625
4626 @item x
4627 @item y
4628 The x and y coordinates of some point of grid intersection (meant to configure offset).
4629
4630 @item w
4631 @item h
4632 The width and height of the drawn cell.
4633
4634 @item t
4635 The thickness of the drawn cell.
4636
4637 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4638 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4639
4640 @end table
4641
4642 @subsection Examples
4643
4644 @itemize
4645 @item
4646 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
4647 @example
4648 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
4649 @end example
4650
4651 @item
4652 Draw a white 3x3 grid with an opacity of 50%:
4653 @example
4654 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
4655 @end example
4656 @end itemize
4657
4658 @anchor{drawtext}
4659 @section drawtext
4660
4661 Draw a text string or text from a specified file on top of a video, using the
4662 libfreetype library.
4663
4664 To enable compilation of this filter, you need to configure FFmpeg with
4665 @code{--enable-libfreetype}.
4666 To enable default font fallback and the @var{font} option you need to
4667 configure FFmpeg with @code{--enable-libfontconfig}.
4668 To enable the @var{text_shaping} option, you need to configure FFmpeg with
4669 @code{--enable-libfribidi}.
4670
4671 @subsection Syntax
4672
4673 It accepts the following parameters:
4674
4675 @table @option
4676
4677 @item box
4678 Used to draw a box around text using the background color.
4679 The value must be either 1 (enable) or 0 (disable).
4680 The default value of @var{box} is 0.
4681
4682 @item boxborderw
4683 Set the width of the border to be drawn around the box using @var{boxcolor}.
4684 The default value of @var{boxborderw} is 0.
4685
4686 @item boxcolor
4687 The color to be used for drawing box around text. For the syntax of this
4688 option, check the "Color" section in the ffmpeg-utils manual.
4689
4690 The default value of @var{boxcolor} is "white".
4691
4692 @item borderw
4693 Set the width of the border to be drawn around the text using @var{bordercolor}.
4694 The default value of @var{borderw} is 0.
4695
4696 @item bordercolor
4697 Set the color to be used for drawing border around text. For the syntax of this
4698 option, check the "Color" section in the ffmpeg-utils manual.
4699
4700 The default value of @var{bordercolor} is "black".
4701
4702 @item expansion
4703 Select how the @var{text} is expanded. Can be either @code{none},
4704 @code{strftime} (deprecated) or
4705 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
4706 below for details.
4707
4708 @item fix_bounds
4709 If true, check and fix text coords to avoid clipping.
4710
4711 @item fontcolor
4712 The color to be used for drawing fonts. For the syntax of this option, check
4713 the "Color" section in the ffmpeg-utils manual.
4714
4715 The default value of @var{fontcolor} is "black".
4716
4717 @item fontcolor_expr
4718 String which is expanded the same way as @var{text} to obtain dynamic
4719 @var{fontcolor} value. By default this option has empty value and is not
4720 processed. When this option is set, it overrides @var{fontcolor} option.
4721
4722 @item font
4723 The font family to be used for drawing text. By default Sans.
4724
4725 @item fontfile
4726 The font file to be used for drawing text. The path must be included.
4727 This parameter is mandatory if the fontconfig support is disabled.
4728
4729 @item draw
4730 This option does not exist, please see the timeline system
4731
4732 @item alpha
4733 Draw the text applying alpha blending. The value can
4734 be either a number between 0.0 and 1.0
4735 The expression accepts the same variables @var{x, y} do.
4736 The default value is 1.
4737 Please see fontcolor_expr
4738
4739 @item fontsize
4740 The font size to be used for drawing text.
4741 The default value of @var{fontsize} is 16.
4742
4743 @item text_shaping
4744 If set to 1, attempt to shape the text (for example, reverse the order of
4745 right-to-left text and join Arabic characters) before drawing it.
4746 Otherwise, just draw the text exactly as given.
4747 By default 1 (if supported).
4748
4749 @item ft_load_flags
4750 The flags to be used for loading the fonts.
4751
4752 The flags map the corresponding flags supported by libfreetype, and are
4753 a combination of the following values:
4754 @table @var
4755 @item default
4756 @item no_scale
4757 @item no_hinting
4758 @item render
4759 @item no_bitmap
4760 @item vertical_layout
4761 @item force_autohint
4762 @item crop_bitmap
4763 @item pedantic
4764 @item ignore_global_advance_width
4765 @item no_recurse
4766 @item ignore_transform
4767 @item monochrome
4768 @item linear_design
4769 @item no_autohint
4770 @end table
4771
4772 Default value is "default".
4773
4774 For more information consult the documentation for the FT_LOAD_*
4775 libfreetype flags.
4776
4777 @item shadowcolor
4778 The color to be used for drawing a shadow behind the drawn text. For the
4779 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
4780
4781 The default value of @var{shadowcolor} is "black".
4782
4783 @item shadowx
4784 @item shadowy
4785 The x and y offsets for the text shadow position with respect to the
4786 position of the text. They can be either positive or negative
4787 values. The default value for both is "0".
4788
4789 @item start_number
4790 The starting frame number for the n/frame_num variable. The default value
4791 is "0".
4792
4793 @item tabsize
4794 The size in number of spaces to use for rendering the tab.
4795 Default value is 4.
4796
4797 @item timecode
4798 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
4799 format. It can be used with or without text parameter. @var{timecode_rate}
4800 option must be specified.
4801
4802 @item timecode_rate, rate, r
4803 Set the timecode frame rate (timecode only).
4804
4805 @item text
4806 The text string to be drawn. The text must be a sequence of UTF-8
4807 encoded characters.
4808 This parameter is mandatory if no file is specified with the parameter
4809 @var{textfile}.
4810
4811 @item textfile
4812 A text file containing text to be drawn. The text must be a sequence
4813 of UTF-8 encoded characters.
4814
4815 This parameter is mandatory if no text string is specified with the
4816 parameter @var{text}.
4817
4818 If both @var{text} and @var{textfile} are specified, an error is thrown.
4819
4820 @item reload
4821 If set to 1, the @var{textfile} will be reloaded before each frame.
4822 Be sure to update it atomically, or it may be read partially, or even fail.
4823
4824 @item x
4825 @item y
4826 The expressions which specify the offsets where text will be drawn
4827 within the video frame. They are relative to the top/left border of the
4828 output image.
4829
4830 The default value of @var{x} and @var{y} is "0".
4831
4832 See below for the list of accepted constants and functions.
4833 @end table
4834
4835 The parameters for @var{x} and @var{y} are expressions containing the
4836 following constants and functions:
4837
4838 @table @option
4839 @item dar
4840 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
4841
4842 @item hsub
4843 @item vsub
4844 horizontal and vertical chroma subsample values. For example for the
4845 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4846
4847 @item line_h, lh
4848 the height of each text line
4849
4850 @item main_h, h, H
4851 the input height
4852
4853 @item main_w, w, W
4854 the input width
4855
4856 @item max_glyph_a, ascent
4857 the maximum distance from the baseline to the highest/upper grid
4858 coordinate used to place a glyph outline point, for all the rendered
4859 glyphs.
4860 It is a positive value, due to the grid's orientation with the Y axis
4861 upwards.
4862
4863 @item max_glyph_d, descent
4864 the maximum distance from the baseline to the lowest grid coordinate
4865 used to place a glyph outline point, for all the rendered glyphs.
4866 This is a negative value, due to the grid's orientation, with the Y axis
4867 upwards.
4868
4869 @item max_glyph_h
4870 maximum glyph height, that is the maximum height for all the glyphs
4871 contained in the rendered text, it is equivalent to @var{ascent} -
4872 @var{descent}.
4873
4874 @item max_glyph_w
4875 maximum glyph width, that is the maximum width for all the glyphs
4876 contained in the rendered text
4877
4878 @item n
4879 the number of input frame, starting from 0
4880
4881 @item rand(min, max)
4882 return a random number included between @var{min} and @var{max}
4883
4884 @item sar
4885 The input sample aspect ratio.
4886
4887 @item t
4888 timestamp expressed in seconds, NAN if the input timestamp is unknown
4889
4890 @item text_h, th
4891 the height of the rendered text
4892
4893 @item text_w, tw
4894 the width of the rendered text
4895
4896 @item x
4897 @item y
4898 the x and y offset coordinates where the text is drawn.
4899
4900 These parameters allow the @var{x} and @var{y} expressions to refer
4901 each other, so you can for example specify @code{y=x/dar}.
4902 @end table
4903
4904 @anchor{drawtext_expansion}
4905 @subsection Text expansion
4906
4907 If @option{expansion} is set to @code{strftime},
4908 the filter recognizes strftime() sequences in the provided text and
4909 expands them accordingly. Check the documentation of strftime(). This
4910 feature is deprecated.
4911
4912 If @option{expansion} is set to @code{none}, the text is printed verbatim.
4913
4914 If @option{expansion} is set to @code{normal} (which is the default),
4915 the following expansion mechanism is used.
4916
4917 The backslash character @samp{\}, followed by any character, always expands to
4918 the second character.
4919
4920 Sequence of the form @code{%@{...@}} are expanded. The text between the
4921 braces is a function name, possibly followed by arguments separated by ':'.
4922 If the arguments contain special characters or delimiters (':' or '@}'),
4923 they should be escaped.
4924
4925 Note that they probably must also be escaped as the value for the
4926 @option{text} option in the filter argument string and as the filter
4927 argument in the filtergraph description, and possibly also for the shell,
4928 that makes up to four levels of escaping; using a text file avoids these
4929 problems.
4930
4931 The following functions are available:
4932
4933 @table @command
4934
4935 @item expr, e
4936 The expression evaluation result.
4937
4938 It must take one argument specifying the expression to be evaluated,
4939 which accepts the same constants and functions as the @var{x} and
4940 @var{y} values. Note that not all constants should be used, for
4941 example the text size is not known when evaluating the expression, so
4942 the constants @var{text_w} and @var{text_h} will have an undefined
4943 value.
4944
4945 @item expr_int_format, eif
4946 Evaluate the expression's value and output as formatted integer.
4947
4948 The first argument is the expression to be evaluated, just as for the @var{expr} function.
4949 The second argument specifies the output format. Allowed values are @samp{x},
4950 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
4951 @code{printf} function.
4952 The third parameter is optional and sets the number of positions taken by the output.
4953 It can be used to add padding with zeros from the left.
4954
4955 @item gmtime
4956 The time at which the filter is running, expressed in UTC.
4957 It can accept an argument: a strftime() format string.
4958
4959 @item localtime
4960 The time at which the filter is running, expressed in the local time zone.
4961 It can accept an argument: a strftime() format string.
4962
4963 @item metadata
4964 Frame metadata. It must take one argument specifying metadata key.
4965
4966 @item n, frame_num
4967 The frame number, starting from 0.
4968
4969 @item pict_type
4970 A 1 character description of the current picture type.
4971
4972 @item pts
4973 The timestamp of the current frame.
4974 It can take up to two arguments.
4975
4976 The first argument is the format of the timestamp; it defaults to @code{flt}
4977 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
4978 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
4979
4980 The second argument is an offset added to the timestamp.
4981
4982 @end table
4983
4984 @subsection Examples
4985
4986 @itemize
4987 @item
4988 Draw "Test Text" with font FreeSerif, using the default values for the
4989 optional parameters.
4990
4991 @example
4992 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
4993 @end example
4994
4995 @item
4996 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
4997 and y=50 (counting from the top-left corner of the screen), text is
4998 yellow with a red box around it. Both the text and the box have an
4999 opacity of 20%.
5000
5001 @example
5002 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
5003           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
5004 @end example
5005
5006 Note that the double quotes are not necessary if spaces are not used
5007 within the parameter list.
5008
5009 @item
5010 Show the text at the center of the video frame:
5011 @example
5012 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
5013 @end example
5014
5015 @item
5016 Show a text line sliding from right to left in the last row of the video
5017 frame. The file @file{LONG_LINE} is assumed to contain a single line
5018 with no newlines.
5019 @example
5020 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
5021 @end example
5022
5023 @item
5024 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
5025 @example
5026 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
5027 @end example
5028
5029 @item
5030 Draw a single green letter "g", at the center of the input video.
5031 The glyph baseline is placed at half screen height.
5032 @example
5033 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
5034 @end example
5035
5036 @item
5037 Show text for 1 second every 3 seconds:
5038 @example
5039 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
5040 @end example
5041
5042 @item
5043 Use fontconfig to set the font. Note that the colons need to be escaped.
5044 @example
5045 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
5046 @end example
5047
5048 @item
5049 Print the date of a real-time encoding (see strftime(3)):
5050 @example
5051 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
5052 @end example
5053
5054 @item
5055 Show text fading in and out (appearing/disappearing):
5056 @example
5057 #!/bin/sh
5058 DS=1.0 # display start
5059 DE=10.0 # display end
5060 FID=1.5 # fade in duration
5061 FOD=5 # fade out duration
5062 ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
5063 @end example
5064
5065 @end itemize
5066
5067 For more information about libfreetype, check:
5068 @url{http://www.freetype.org/}.
5069
5070 For more information about fontconfig, check:
5071 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
5072
5073 For more information about libfribidi, check:
5074 @url{http://fribidi.org/}.
5075
5076 @section edgedetect
5077
5078 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
5079
5080 The filter accepts the following options:
5081
5082 @table @option
5083 @item low
5084 @item high
5085 Set low and high threshold values used by the Canny thresholding
5086 algorithm.
5087
5088 The high threshold selects the "strong" edge pixels, which are then
5089 connected through 8-connectivity with the "weak" edge pixels selected
5090 by the low threshold.
5091
5092 @var{low} and @var{high} threshold values must be chosen in the range
5093 [0,1], and @var{low} should be lesser or equal to @var{high}.
5094
5095 Default value for @var{low} is @code{20/255}, and default value for @var{high}
5096 is @code{50/255}.
5097
5098 @item mode
5099 Define the drawing mode.
5100
5101 @table @samp
5102 @item wires
5103 Draw white/gray wires on black background.
5104
5105 @item colormix
5106 Mix the colors to create a paint/cartoon effect.
5107 @end table
5108
5109 Default value is @var{wires}.
5110 @end table
5111
5112 @subsection Examples
5113
5114 @itemize
5115 @item
5116 Standard edge detection with custom values for the hysteresis thresholding:
5117 @example
5118 edgedetect=low=0.1:high=0.4
5119 @end example
5120
5121 @item
5122 Painting effect without thresholding:
5123 @example
5124 edgedetect=mode=colormix:high=0
5125 @end example
5126 @end itemize
5127
5128 @section eq
5129 Set brightness, contrast, saturation and approximate gamma adjustment.
5130
5131 The filter accepts the following options:
5132
5133 @table @option
5134 @item contrast
5135 Set the contrast expression. The value must be a float value in range
5136 @code{-2.0} to @code{2.0}. The default value is "0".
5137
5138 @item brightness
5139 Set the brightness expression. The value must be a float value in
5140 range @code{-1.0} to @code{1.0}. The default value is "0".
5141
5142 @item saturation
5143 Set the saturation expression. The value must be a float in
5144 range @code{0.0} to @code{3.0}. The default value is "1".
5145
5146 @item gamma
5147 Set the gamma expression. The value must be a float in range
5148 @code{0.1} to @code{10.0}.  The default value is "1".
5149
5150 @item gamma_r
5151 Set the gamma expression for red. The value must be a float in
5152 range @code{0.1} to @code{10.0}. The default value is "1".
5153
5154 @item gamma_g
5155 Set the gamma expression for green. The value must be a float in range
5156 @code{0.1} to @code{10.0}. The default value is "1".
5157
5158 @item gamma_b
5159 Set the gamma expression for blue. The value must be a float in range
5160 @code{0.1} to @code{10.0}. The default value is "1".
5161
5162 @item gamma_weight
5163 Set the gamma weight expression. It can be used to reduce the effect
5164 of a high gamma value on bright image areas, e.g. keep them from
5165 getting overamplified and just plain white. The value must be a float
5166 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
5167 gamma correction all the way down while @code{1.0} leaves it at its
5168 full strength. Default is "1".
5169
5170 @item eval
5171 Set when the expressions for brightness, contrast, saturation and
5172 gamma expressions are evaluated.
5173
5174 It accepts the following values:
5175 @table @samp
5176 @item init
5177 only evaluate expressions once during the filter initialization or
5178 when a command is processed
5179
5180 @item frame
5181 evaluate expressions for each incoming frame
5182 @end table
5183
5184 Default value is @samp{init}.
5185 @end table
5186
5187 The expressions accept the following parameters:
5188 @table @option
5189 @item n
5190 frame count of the input frame starting from 0
5191
5192 @item pos
5193 byte position of the corresponding packet in the input file, NAN if
5194 unspecified
5195
5196 @item r
5197 frame rate of the input video, NAN if the input frame rate is unknown
5198
5199 @item t
5200 timestamp expressed in seconds, NAN if the input timestamp is unknown
5201 @end table
5202
5203 @subsection Commands
5204 The filter supports the following commands:
5205
5206 @table @option
5207 @item contrast
5208 Set the contrast expression.
5209
5210 @item brightness
5211 Set the brightness expression.
5212
5213 @item saturation
5214 Set the saturation expression.
5215
5216 @item gamma
5217 Set the gamma expression.
5218
5219 @item gamma_r
5220 Set the gamma_r expression.
5221
5222 @item gamma_g
5223 Set gamma_g expression.
5224
5225 @item gamma_b
5226 Set gamma_b expression.
5227
5228 @item gamma_weight
5229 Set gamma_weight expression.
5230
5231 The command accepts the same syntax of the corresponding option.
5232
5233 If the specified expression is not valid, it is kept at its current
5234 value.
5235
5236 @end table
5237
5238 @section erosion
5239
5240 Apply erosion effect to the video.
5241
5242 This filter replaces the pixel by the local(3x3) minimum.
5243
5244 It accepts the following options:
5245
5246 @table @option
5247 @item threshold0
5248 @item threshold1
5249 @item threshold2
5250 @item threshold3
5251 Allows to limit the maximum change for each plane, default is 65535.
5252 If 0, plane will remain unchanged.
5253
5254 @item coordinates
5255 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5256 pixels are used.
5257
5258 Flags to local 3x3 coordinates maps like this:
5259
5260     1 2 3
5261     4   5
5262     6 7 8
5263 @end table
5264
5265 @section extractplanes
5266
5267 Extract color channel components from input video stream into
5268 separate grayscale video streams.
5269
5270 The filter accepts the following option:
5271
5272 @table @option
5273 @item planes
5274 Set plane(s) to extract.
5275
5276 Available values for planes are:
5277 @table @samp
5278 @item y
5279 @item u
5280 @item v
5281 @item a
5282 @item r
5283 @item g
5284 @item b
5285 @end table
5286
5287 Choosing planes not available in the input will result in an error.
5288 That means you cannot select @code{r}, @code{g}, @code{b} planes
5289 with @code{y}, @code{u}, @code{v} planes at same time.
5290 @end table
5291
5292 @subsection Examples
5293
5294 @itemize
5295 @item
5296 Extract luma, u and v color channel component from input video frame
5297 into 3 grayscale outputs:
5298 @example
5299 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
5300 @end example
5301 @end itemize
5302
5303 @section elbg
5304
5305 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
5306
5307 For each input image, the filter will compute the optimal mapping from
5308 the input to the output given the codebook length, that is the number
5309 of distinct output colors.
5310
5311 This filter accepts the following options.
5312
5313 @table @option
5314 @item codebook_length, l
5315 Set codebook length. The value must be a positive integer, and
5316 represents the number of distinct output colors. Default value is 256.
5317
5318 @item nb_steps, n
5319 Set the maximum number of iterations to apply for computing the optimal
5320 mapping. The higher the value the better the result and the higher the
5321 computation time. Default value is 1.
5322
5323 @item seed, s
5324 Set a random seed, must be an integer included between 0 and
5325 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
5326 will try to use a good random seed on a best effort basis.
5327
5328 @item pal8
5329 Set pal8 output pixel format. This option does not work with codebook
5330 length greater than 256.
5331 @end table
5332
5333 @section fade
5334
5335 Apply a fade-in/out effect to the input video.
5336
5337 It accepts the following parameters:
5338
5339 @table @option
5340 @item type, t
5341 The effect type can be either "in" for a fade-in, or "out" for a fade-out
5342 effect.
5343 Default is @code{in}.
5344
5345 @item start_frame, s
5346 Specify the number of the frame to start applying the fade
5347 effect at. Default is 0.
5348
5349 @item nb_frames, n
5350 The number of frames that the fade effect lasts. At the end of the
5351 fade-in effect, the output video will have the same intensity as the input video.
5352 At the end of the fade-out transition, the output video will be filled with the
5353 selected @option{color}.
5354 Default is 25.
5355
5356 @item alpha
5357 If set to 1, fade only alpha channel, if one exists on the input.
5358 Default value is 0.
5359
5360 @item start_time, st
5361 Specify the timestamp (in seconds) of the frame to start to apply the fade
5362 effect. If both start_frame and start_time are specified, the fade will start at
5363 whichever comes last.  Default is 0.
5364
5365 @item duration, d
5366 The number of seconds for which the fade effect has to last. At the end of the
5367 fade-in effect the output video will have the same intensity as the input video,
5368 at the end of the fade-out transition the output video will be filled with the
5369 selected @option{color}.
5370 If both duration and nb_frames are specified, duration is used. Default is 0
5371 (nb_frames is used by default).
5372
5373 @item color, c
5374 Specify the color of the fade. Default is "black".
5375 @end table
5376
5377 @subsection Examples
5378
5379 @itemize
5380 @item
5381 Fade in the first 30 frames of video:
5382 @example
5383 fade=in:0:30
5384 @end example
5385
5386 The command above is equivalent to:
5387 @example
5388 fade=t=in:s=0:n=30
5389 @end example
5390
5391 @item
5392 Fade out the last 45 frames of a 200-frame video:
5393 @example
5394 fade=out:155:45
5395 fade=type=out:start_frame=155:nb_frames=45
5396 @end example
5397
5398 @item
5399 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
5400 @example
5401 fade=in:0:25, fade=out:975:25
5402 @end example
5403
5404 @item
5405 Make the first 5 frames yellow, then fade in from frame 5-24:
5406 @example
5407 fade=in:5:20:color=yellow
5408 @end example
5409
5410 @item
5411 Fade in alpha over first 25 frames of video:
5412 @example
5413 fade=in:0:25:alpha=1
5414 @end example
5415
5416 @item
5417 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
5418 @example
5419 fade=t=in:st=5.5:d=0.5
5420 @end example
5421
5422 @end itemize
5423
5424 @section fftfilt
5425 Apply arbitrary expressions to samples in frequency domain
5426
5427 @table @option
5428 @item dc_Y
5429 Adjust the dc value (gain) of the luma plane of the image. The filter
5430 accepts an integer value in range @code{0} to @code{1000}. The default
5431 value is set to @code{0}.
5432
5433 @item dc_U
5434 Adjust the dc value (gain) of the 1st chroma plane of the image. The
5435 filter accepts an integer value in range @code{0} to @code{1000}. The
5436 default value is set to @code{0}.
5437
5438 @item dc_V
5439 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
5440 filter accepts an integer value in range @code{0} to @code{1000}. The
5441 default value is set to @code{0}.
5442
5443 @item weight_Y
5444 Set the frequency domain weight expression for the luma plane.
5445
5446 @item weight_U
5447 Set the frequency domain weight expression for the 1st chroma plane.
5448
5449 @item weight_V
5450 Set the frequency domain weight expression for the 2nd chroma plane.
5451
5452 The filter accepts the following variables:
5453 @item X
5454 @item Y
5455 The coordinates of the current sample.
5456
5457 @item W
5458 @item H
5459 The width and height of the image.
5460 @end table
5461
5462 @subsection Examples
5463
5464 @itemize
5465 @item
5466 High-pass:
5467 @example
5468 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
5469 @end example
5470
5471 @item
5472 Low-pass:
5473 @example
5474 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
5475 @end example
5476
5477 @item
5478 Sharpen:
5479 @example
5480 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
5481 @end example
5482
5483 @end itemize
5484
5485 @section field
5486
5487 Extract a single field from an interlaced image using stride
5488 arithmetic to avoid wasting CPU time. The output frames are marked as
5489 non-interlaced.
5490
5491 The filter accepts the following options:
5492
5493 @table @option
5494 @item type
5495 Specify whether to extract the top (if the value is @code{0} or
5496 @code{top}) or the bottom field (if the value is @code{1} or
5497 @code{bottom}).
5498 @end table
5499
5500 @section fieldmatch
5501
5502 Field matching filter for inverse telecine. It is meant to reconstruct the
5503 progressive frames from a telecined stream. The filter does not drop duplicated
5504 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
5505 followed by a decimation filter such as @ref{decimate} in the filtergraph.
5506
5507 The separation of the field matching and the decimation is notably motivated by
5508 the possibility of inserting a de-interlacing filter fallback between the two.
5509 If the source has mixed telecined and real interlaced content,
5510 @code{fieldmatch} will not be able to match fields for the interlaced parts.
5511 But these remaining combed frames will be marked as interlaced, and thus can be
5512 de-interlaced by a later filter such as @ref{yadif} before decimation.
5513
5514 In addition to the various configuration options, @code{fieldmatch} can take an
5515 optional second stream, activated through the @option{ppsrc} option. If
5516 enabled, the frames reconstruction will be based on the fields and frames from
5517 this second stream. This allows the first input to be pre-processed in order to
5518 help the various algorithms of the filter, while keeping the output lossless
5519 (assuming the fields are matched properly). Typically, a field-aware denoiser,
5520 or brightness/contrast adjustments can help.
5521
5522 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
5523 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
5524 which @code{fieldmatch} is based on. While the semantic and usage are very
5525 close, some behaviour and options names can differ.
5526
5527 The @ref{decimate} filter currently only works for constant frame rate input.
5528 If your input has mixed telecined (30fps) and progressive content with a lower
5529 framerate like 24fps use the following filterchain to produce the necessary cfr
5530 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
5531
5532 The filter accepts the following options:
5533
5534 @table @option
5535 @item order
5536 Specify the assumed field order of the input stream. Available values are:
5537
5538 @table @samp
5539 @item auto
5540 Auto detect parity (use FFmpeg's internal parity value).
5541 @item bff
5542 Assume bottom field first.
5543 @item tff
5544 Assume top field first.
5545 @end table
5546
5547 Note that it is sometimes recommended not to trust the parity announced by the
5548 stream.
5549
5550 Default value is @var{auto}.
5551
5552 @item mode
5553 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
5554 sense that it won't risk creating jerkiness due to duplicate frames when
5555 possible, but if there are bad edits or blended fields it will end up
5556 outputting combed frames when a good match might actually exist. On the other
5557 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
5558 but will almost always find a good frame if there is one. The other values are
5559 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
5560 jerkiness and creating duplicate frames versus finding good matches in sections
5561 with bad edits, orphaned fields, blended fields, etc.
5562
5563 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
5564
5565 Available values are:
5566
5567 @table @samp
5568 @item pc
5569 2-way matching (p/c)
5570 @item pc_n
5571 2-way matching, and trying 3rd match if still combed (p/c + n)
5572 @item pc_u
5573 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
5574 @item pc_n_ub
5575 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
5576 still combed (p/c + n + u/b)
5577 @item pcn
5578 3-way matching (p/c/n)
5579 @item pcn_ub
5580 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
5581 detected as combed (p/c/n + u/b)
5582 @end table
5583
5584 The parenthesis at the end indicate the matches that would be used for that
5585 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
5586 @var{top}).
5587
5588 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
5589 the slowest.
5590
5591 Default value is @var{pc_n}.
5592
5593 @item ppsrc
5594 Mark the main input stream as a pre-processed input, and enable the secondary
5595 input stream as the clean source to pick the fields from. See the filter
5596 introduction for more details. It is similar to the @option{clip2} feature from
5597 VFM/TFM.
5598
5599 Default value is @code{0} (disabled).
5600
5601 @item field
5602 Set the field to match from. It is recommended to set this to the same value as
5603 @option{order} unless you experience matching failures with that setting. In
5604 certain circumstances changing the field that is used to match from can have a
5605 large impact on matching performance. Available values are:
5606
5607 @table @samp
5608 @item auto
5609 Automatic (same value as @option{order}).
5610 @item bottom
5611 Match from the bottom field.
5612 @item top
5613 Match from the top field.
5614 @end table
5615
5616 Default value is @var{auto}.
5617
5618 @item mchroma
5619 Set whether or not chroma is included during the match comparisons. In most
5620 cases it is recommended to leave this enabled. You should set this to @code{0}
5621 only if your clip has bad chroma problems such as heavy rainbowing or other
5622 artifacts. Setting this to @code{0} could also be used to speed things up at
5623 the cost of some accuracy.
5624
5625 Default value is @code{1}.
5626
5627 @item y0
5628 @item y1
5629 These define an exclusion band which excludes the lines between @option{y0} and
5630 @option{y1} from being included in the field matching decision. An exclusion
5631 band can be used to ignore subtitles, a logo, or other things that may
5632 interfere with the matching. @option{y0} sets the starting scan line and
5633 @option{y1} sets the ending line; all lines in between @option{y0} and
5634 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
5635 @option{y0} and @option{y1} to the same value will disable the feature.
5636 @option{y0} and @option{y1} defaults to @code{0}.
5637
5638 @item scthresh
5639 Set the scene change detection threshold as a percentage of maximum change on
5640 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
5641 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
5642 @option{scthresh} is @code{[0.0, 100.0]}.
5643
5644 Default value is @code{12.0}.
5645
5646 @item combmatch
5647 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
5648 account the combed scores of matches when deciding what match to use as the
5649 final match. Available values are:
5650
5651 @table @samp
5652 @item none
5653 No final matching based on combed scores.
5654 @item sc
5655 Combed scores are only used when a scene change is detected.
5656 @item full
5657 Use combed scores all the time.
5658 @end table
5659
5660 Default is @var{sc}.
5661
5662 @item combdbg
5663 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
5664 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
5665 Available values are:
5666
5667 @table @samp
5668 @item none
5669 No forced calculation.
5670 @item pcn
5671 Force p/c/n calculations.
5672 @item pcnub
5673 Force p/c/n/u/b calculations.
5674 @end table
5675
5676 Default value is @var{none}.
5677
5678 @item cthresh
5679 This is the area combing threshold used for combed frame detection. This
5680 essentially controls how "strong" or "visible" combing must be to be detected.
5681 Larger values mean combing must be more visible and smaller values mean combing
5682 can be less visible or strong and still be detected. Valid settings are from
5683 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
5684 be detected as combed). This is basically a pixel difference value. A good
5685 range is @code{[8, 12]}.
5686
5687 Default value is @code{9}.
5688
5689 @item chroma
5690 Sets whether or not chroma is considered in the combed frame decision.  Only
5691 disable this if your source has chroma problems (rainbowing, etc.) that are
5692 causing problems for the combed frame detection with chroma enabled. Actually,
5693 using @option{chroma}=@var{0} is usually more reliable, except for the case
5694 where there is chroma only combing in the source.
5695
5696 Default value is @code{0}.
5697
5698 @item blockx
5699 @item blocky
5700 Respectively set the x-axis and y-axis size of the window used during combed
5701 frame detection. This has to do with the size of the area in which
5702 @option{combpel} pixels are required to be detected as combed for a frame to be
5703 declared combed. See the @option{combpel} parameter description for more info.
5704 Possible values are any number that is a power of 2 starting at 4 and going up
5705 to 512.
5706
5707 Default value is @code{16}.
5708
5709 @item combpel
5710 The number of combed pixels inside any of the @option{blocky} by
5711 @option{blockx} size blocks on the frame for the frame to be detected as
5712 combed. While @option{cthresh} controls how "visible" the combing must be, this
5713 setting controls "how much" combing there must be in any localized area (a
5714 window defined by the @option{blockx} and @option{blocky} settings) on the
5715 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
5716 which point no frames will ever be detected as combed). This setting is known
5717 as @option{MI} in TFM/VFM vocabulary.
5718
5719 Default value is @code{80}.
5720 @end table
5721
5722 @anchor{p/c/n/u/b meaning}
5723 @subsection p/c/n/u/b meaning
5724
5725 @subsubsection p/c/n
5726
5727 We assume the following telecined stream:
5728
5729 @example
5730 Top fields:     1 2 2 3 4
5731 Bottom fields:  1 2 3 4 4
5732 @end example
5733
5734 The numbers correspond to the progressive frame the fields relate to. Here, the
5735 first two frames are progressive, the 3rd and 4th are combed, and so on.
5736
5737 When @code{fieldmatch} is configured to run a matching from bottom
5738 (@option{field}=@var{bottom}) this is how this input stream get transformed:
5739
5740 @example
5741 Input stream:
5742                 T     1 2 2 3 4
5743                 B     1 2 3 4 4   <-- matching reference
5744
5745 Matches:              c c n n c
5746
5747 Output stream:
5748                 T     1 2 3 4 4
5749                 B     1 2 3 4 4
5750 @end example
5751
5752 As a result of the field matching, we can see that some frames get duplicated.
5753 To perform a complete inverse telecine, you need to rely on a decimation filter
5754 after this operation. See for instance the @ref{decimate} filter.
5755
5756 The same operation now matching from top fields (@option{field}=@var{top})
5757 looks like this:
5758
5759 @example
5760 Input stream:
5761                 T     1 2 2 3 4   <-- matching reference
5762                 B     1 2 3 4 4
5763
5764 Matches:              c c p p c
5765
5766 Output stream:
5767                 T     1 2 2 3 4
5768                 B     1 2 2 3 4
5769 @end example
5770
5771 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
5772 basically, they refer to the frame and field of the opposite parity:
5773
5774 @itemize
5775 @item @var{p} matches the field of the opposite parity in the previous frame
5776 @item @var{c} matches the field of the opposite parity in the current frame
5777 @item @var{n} matches the field of the opposite parity in the next frame
5778 @end itemize
5779
5780 @subsubsection u/b
5781
5782 The @var{u} and @var{b} matching are a bit special in the sense that they match
5783 from the opposite parity flag. In the following examples, we assume that we are
5784 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
5785 'x' is placed above and below each matched fields.
5786
5787 With bottom matching (@option{field}=@var{bottom}):
5788 @example
5789 Match:           c         p           n          b          u
5790
5791                  x       x               x        x          x
5792   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
5793   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
5794                  x         x           x        x              x
5795
5796 Output frames:
5797                  2          1          2          2          2
5798                  2          2          2          1          3
5799 @end example
5800
5801 With top matching (@option{field}=@var{top}):
5802 @example
5803 Match:           c         p           n          b          u
5804
5805                  x         x           x        x              x
5806   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
5807   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
5808                  x       x               x        x          x
5809
5810 Output frames:
5811                  2          2          2          1          2
5812                  2          1          3          2          2
5813 @end example
5814
5815 @subsection Examples
5816
5817 Simple IVTC of a top field first telecined stream:
5818 @example
5819 fieldmatch=order=tff:combmatch=none, decimate
5820 @end example
5821
5822 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
5823 @example
5824 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
5825 @end example
5826
5827 @section fieldorder
5828
5829 Transform the field order of the input video.
5830
5831 It accepts the following parameters:
5832
5833 @table @option
5834
5835 @item order
5836 The output field order. Valid values are @var{tff} for top field first or @var{bff}
5837 for bottom field first.
5838 @end table
5839
5840 The default value is @samp{tff}.
5841
5842 The transformation is done by shifting the picture content up or down
5843 by one line, and filling the remaining line with appropriate picture content.
5844 This method is consistent with most broadcast field order converters.
5845
5846 If the input video is not flagged as being interlaced, or it is already
5847 flagged as being of the required output field order, then this filter does
5848 not alter the incoming video.
5849
5850 It is very useful when converting to or from PAL DV material,
5851 which is bottom field first.
5852
5853 For example:
5854 @example
5855 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
5856 @end example
5857
5858 @section fifo
5859
5860 Buffer input images and send them when they are requested.
5861
5862 It is mainly useful when auto-inserted by the libavfilter
5863 framework.
5864
5865 It does not take parameters.
5866
5867 @section find_rect
5868
5869 Find a rectangular object
5870
5871 It accepts the following options:
5872
5873 @table @option
5874 @item object
5875 Filepath of the object image, needs to be in gray8.
5876
5877 @item threshold
5878 Detection threshold, default is 0.5.
5879
5880 @item mipmaps
5881 Number of mipmaps, default is 3.
5882
5883 @item xmin, ymin, xmax, ymax
5884 Specifies the rectangle in which to search.
5885 @end table
5886
5887 @subsection Examples
5888
5889 @itemize
5890 @item
5891 Generate a representative palette of a given video using @command{ffmpeg}:
5892 @example
5893 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
5894 @end example
5895 @end itemize
5896
5897 @section cover_rect
5898
5899 Cover a rectangular object
5900
5901 It accepts the following options:
5902
5903 @table @option
5904 @item cover
5905 Filepath of the optional cover image, needs to be in yuv420.
5906
5907 @item mode
5908 Set covering mode.
5909
5910 It accepts the following values:
5911 @table @samp
5912 @item cover
5913 cover it by the supplied image
5914 @item blur
5915 cover it by interpolating the surrounding pixels
5916 @end table
5917
5918 Default value is @var{blur}.
5919 @end table
5920
5921 @subsection Examples
5922
5923 @itemize
5924 @item
5925 Generate a representative palette of a given video using @command{ffmpeg}:
5926 @example
5927 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
5928 @end example
5929 @end itemize
5930
5931 @anchor{format}
5932 @section format
5933
5934 Convert the input video to one of the specified pixel formats.
5935 Libavfilter will try to pick one that is suitable as input to
5936 the next filter.
5937
5938 It accepts the following parameters:
5939 @table @option
5940
5941 @item pix_fmts
5942 A '|'-separated list of pixel format names, such as
5943 "pix_fmts=yuv420p|monow|rgb24".
5944
5945 @end table
5946
5947 @subsection Examples
5948
5949 @itemize
5950 @item
5951 Convert the input video to the @var{yuv420p} format
5952 @example
5953 format=pix_fmts=yuv420p
5954 @end example
5955
5956 Convert the input video to any of the formats in the list
5957 @example
5958 format=pix_fmts=yuv420p|yuv444p|yuv410p
5959 @end example
5960 @end itemize
5961
5962 @anchor{fps}
5963 @section fps
5964
5965 Convert the video to specified constant frame rate by duplicating or dropping
5966 frames as necessary.
5967
5968 It accepts the following parameters:
5969 @table @option
5970
5971 @item fps
5972 The desired output frame rate. The default is @code{25}.
5973
5974 @item round
5975 Rounding method.
5976
5977 Possible values are:
5978 @table @option
5979 @item zero
5980 zero round towards 0
5981 @item inf
5982 round away from 0
5983 @item down
5984 round towards -infinity
5985 @item up
5986 round towards +infinity
5987 @item near
5988 round to nearest
5989 @end table
5990 The default is @code{near}.
5991
5992 @item start_time
5993 Assume the first PTS should be the given value, in seconds. This allows for
5994 padding/trimming at the start of stream. By default, no assumption is made
5995 about the first frame's expected PTS, so no padding or trimming is done.
5996 For example, this could be set to 0 to pad the beginning with duplicates of
5997 the first frame if a video stream starts after the audio stream or to trim any
5998 frames with a negative PTS.
5999
6000 @end table
6001
6002 Alternatively, the options can be specified as a flat string:
6003 @var{fps}[:@var{round}].
6004
6005 See also the @ref{setpts} filter.
6006
6007 @subsection Examples
6008
6009 @itemize
6010 @item
6011 A typical usage in order to set the fps to 25:
6012 @example
6013 fps=fps=25
6014 @end example
6015
6016 @item
6017 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
6018 @example
6019 fps=fps=film:round=near
6020 @end example
6021 @end itemize
6022
6023 @section framepack
6024
6025 Pack two different video streams into a stereoscopic video, setting proper
6026 metadata on supported codecs. The two views should have the same size and
6027 framerate and processing will stop when the shorter video ends. Please note
6028 that you may conveniently adjust view properties with the @ref{scale} and
6029 @ref{fps} filters.
6030
6031 It accepts the following parameters:
6032 @table @option
6033
6034 @item format
6035 The desired packing format. Supported values are:
6036
6037 @table @option
6038
6039 @item sbs
6040 The views are next to each other (default).
6041
6042 @item tab
6043 The views are on top of each other.
6044
6045 @item lines
6046 The views are packed by line.
6047
6048 @item columns
6049 The views are packed by column.
6050
6051 @item frameseq
6052 The views are temporally interleaved.
6053
6054 @end table
6055
6056 @end table
6057
6058 Some examples:
6059
6060 @example
6061 # Convert left and right views into a frame-sequential video
6062 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
6063
6064 # Convert views into a side-by-side video with the same output resolution as the input
6065 ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
6066 @end example
6067
6068 @section framerate
6069
6070 Change the frame rate by interpolating new video output frames from the source
6071 frames.
6072
6073 This filter is not designed to function correctly with interlaced media. If
6074 you wish to change the frame rate of interlaced media then you are required
6075 to deinterlace before this filter and re-interlace after this filter.
6076
6077 A description of the accepted options follows.
6078
6079 @table @option
6080 @item fps
6081 Specify the output frames per second. This option can also be specified
6082 as a value alone. The default is @code{50}.
6083
6084 @item interp_start
6085 Specify the start of a range where the output frame will be created as a
6086 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6087 the default is @code{15}.
6088
6089 @item interp_end
6090 Specify the end of a range where the output frame will be created as a
6091 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6092 the default is @code{240}.
6093
6094 @item scene
6095 Specify the level at which a scene change is detected as a value between
6096 0 and 100 to indicate a new scene; a low value reflects a low
6097 probability for the current frame to introduce a new scene, while a higher
6098 value means the current frame is more likely to be one.
6099 The default is @code{7}.
6100
6101 @item flags
6102 Specify flags influencing the filter process.
6103
6104 Available value for @var{flags} is:
6105
6106 @table @option
6107 @item scene_change_detect, scd
6108 Enable scene change detection using the value of the option @var{scene}.
6109 This flag is enabled by default.
6110 @end table
6111 @end table
6112
6113 @section framestep
6114
6115 Select one frame every N-th frame.
6116
6117 This filter accepts the following option:
6118 @table @option
6119 @item step
6120 Select frame after every @code{step} frames.
6121 Allowed values are positive integers higher than 0. Default value is @code{1}.
6122 @end table
6123
6124 @anchor{frei0r}
6125 @section frei0r
6126
6127 Apply a frei0r effect to the input video.
6128
6129 To enable the compilation of this filter, you need to install the frei0r
6130 header and configure FFmpeg with @code{--enable-frei0r}.
6131
6132 It accepts the following parameters:
6133
6134 @table @option
6135
6136 @item filter_name
6137 The name of the frei0r effect to load. If the environment variable
6138 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
6139 directories specified by the colon-separated list in @env{FREIOR_PATH}.
6140 Otherwise, the standard frei0r paths are searched, in this order:
6141 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
6142 @file{/usr/lib/frei0r-1/}.
6143
6144 @item filter_params
6145 A '|'-separated list of parameters to pass to the frei0r effect.
6146
6147 @end table
6148
6149 A frei0r effect parameter can be a boolean (its value is either
6150 "y" or "n"), a double, a color (specified as
6151 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
6152 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
6153 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
6154 @var{X} and @var{Y} are floating point numbers) and/or a string.
6155
6156 The number and types of parameters depend on the loaded effect. If an
6157 effect parameter is not specified, the default value is set.
6158
6159 @subsection Examples
6160
6161 @itemize
6162 @item
6163 Apply the distort0r effect, setting the first two double parameters:
6164 @example
6165 frei0r=filter_name=distort0r:filter_params=0.5|0.01
6166 @end example
6167
6168 @item
6169 Apply the colordistance effect, taking a color as the first parameter:
6170 @example
6171 frei0r=colordistance:0.2/0.3/0.4
6172 frei0r=colordistance:violet
6173 frei0r=colordistance:0x112233
6174 @end example
6175
6176 @item
6177 Apply the perspective effect, specifying the top left and top right image
6178 positions:
6179 @example
6180 frei0r=perspective:0.2/0.2|0.8/0.2
6181 @end example
6182 @end itemize
6183
6184 For more information, see
6185 @url{http://frei0r.dyne.org}
6186
6187 @section fspp
6188
6189 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
6190
6191 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
6192 processing filter, one of them is performed once per block, not per pixel.
6193 This allows for much higher speed.
6194
6195 The filter accepts the following options:
6196
6197 @table @option
6198 @item quality
6199 Set quality. This option defines the number of levels for averaging. It accepts
6200 an integer in the range 4-5. Default value is @code{4}.
6201
6202 @item qp
6203 Force a constant quantization parameter. It accepts an integer in range 0-63.
6204 If not set, the filter will use the QP from the video stream (if available).
6205
6206 @item strength
6207 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
6208 more details but also more artifacts, while higher values make the image smoother
6209 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
6210
6211 @item use_bframe_qp
6212 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
6213 option may cause flicker since the B-Frames have often larger QP. Default is
6214 @code{0} (not enabled).
6215
6216 @end table
6217
6218 @section geq
6219
6220 The filter accepts the following options:
6221
6222 @table @option
6223 @item lum_expr, lum
6224 Set the luminance expression.
6225 @item cb_expr, cb
6226 Set the chrominance blue expression.
6227 @item cr_expr, cr
6228 Set the chrominance red expression.
6229 @item alpha_expr, a
6230 Set the alpha expression.
6231 @item red_expr, r
6232 Set the red expression.
6233 @item green_expr, g
6234 Set the green expression.
6235 @item blue_expr, b
6236 Set the blue expression.
6237 @end table
6238
6239 The colorspace is selected according to the specified options. If one
6240 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
6241 options is specified, the filter will automatically select a YCbCr
6242 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
6243 @option{blue_expr} options is specified, it will select an RGB
6244 colorspace.
6245
6246 If one of the chrominance expression is not defined, it falls back on the other
6247 one. If no alpha expression is specified it will evaluate to opaque value.
6248 If none of chrominance expressions are specified, they will evaluate
6249 to the luminance expression.
6250
6251 The expressions can use the following variables and functions:
6252
6253 @table @option
6254 @item N
6255 The sequential number of the filtered frame, starting from @code{0}.
6256
6257 @item X
6258 @item Y
6259 The coordinates of the current sample.
6260
6261 @item W
6262 @item H
6263 The width and height of the image.
6264
6265 @item SW
6266 @item SH
6267 Width and height scale depending on the currently filtered plane. It is the
6268 ratio between the corresponding luma plane number of pixels and the current
6269 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
6270 @code{0.5,0.5} for chroma planes.
6271
6272 @item T
6273 Time of the current frame, expressed in seconds.
6274
6275 @item p(x, y)
6276 Return the value of the pixel at location (@var{x},@var{y}) of the current
6277 plane.
6278
6279 @item lum(x, y)
6280 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
6281 plane.
6282
6283 @item cb(x, y)
6284 Return the value of the pixel at location (@var{x},@var{y}) of the
6285 blue-difference chroma plane. Return 0 if there is no such plane.
6286
6287 @item cr(x, y)
6288 Return the value of the pixel at location (@var{x},@var{y}) of the
6289 red-difference chroma plane. Return 0 if there is no such plane.
6290
6291 @item r(x, y)
6292 @item g(x, y)
6293 @item b(x, y)
6294 Return the value of the pixel at location (@var{x},@var{y}) of the
6295 red/green/blue component. Return 0 if there is no such component.
6296
6297 @item alpha(x, y)
6298 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
6299 plane. Return 0 if there is no such plane.
6300 @end table
6301
6302 For functions, if @var{x} and @var{y} are outside the area, the value will be
6303 automatically clipped to the closer edge.
6304
6305 @subsection Examples
6306
6307 @itemize
6308 @item
6309 Flip the image horizontally:
6310 @example
6311 geq=p(W-X\,Y)
6312 @end example
6313
6314 @item
6315 Generate a bidimensional sine wave, with angle @code{PI/3} and a
6316 wavelength of 100 pixels:
6317 @example
6318 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
6319 @end example
6320
6321 @item
6322 Generate a fancy enigmatic moving light:
6323 @example
6324 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
6325 @end example
6326
6327 @item
6328 Generate a quick emboss effect:
6329 @example
6330 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
6331 @end example
6332
6333 @item
6334 Modify RGB components depending on pixel position:
6335 @example
6336 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
6337 @end example
6338
6339 @item
6340 Create a radial gradient that is the same size as the input (also see
6341 the @ref{vignette} filter):
6342 @example
6343 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
6344 @end example
6345
6346 @item
6347 Create a linear gradient to use as a mask for another filter, then
6348 compose with @ref{overlay}. In this example the video will gradually
6349 become more blurry from the top to the bottom of the y-axis as defined
6350 by the linear gradient:
6351 @example
6352 ffmpeg -i input.mp4 -filter_complex "geq=lum=255*(Y/H),format=gray[grad];[0:v]boxblur=4[blur];[blur][grad]alphamerge[alpha];[0:v][alpha]overlay" output.mp4
6353 @end example
6354 @end itemize
6355
6356 @section gradfun
6357
6358 Fix the banding artifacts that are sometimes introduced into nearly flat
6359 regions by truncation to 8bit color depth.
6360 Interpolate the gradients that should go where the bands are, and
6361 dither them.
6362
6363 It is designed for playback only.  Do not use it prior to
6364 lossy compression, because compression tends to lose the dither and
6365 bring back the bands.
6366
6367 It accepts the following parameters:
6368
6369 @table @option
6370
6371 @item strength
6372 The maximum amount by which the filter will change any one pixel. This is also
6373 the threshold for detecting nearly flat regions. Acceptable values range from
6374 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
6375 valid range.
6376
6377 @item radius
6378 The neighborhood to fit the gradient to. A larger radius makes for smoother
6379 gradients, but also prevents the filter from modifying the pixels near detailed
6380 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
6381 values will be clipped to the valid range.
6382
6383 @end table
6384
6385 Alternatively, the options can be specified as a flat string:
6386 @var{strength}[:@var{radius}]
6387
6388 @subsection Examples
6389
6390 @itemize
6391 @item
6392 Apply the filter with a @code{3.5} strength and radius of @code{8}:
6393 @example
6394 gradfun=3.5:8
6395 @end example
6396
6397 @item
6398 Specify radius, omitting the strength (which will fall-back to the default
6399 value):
6400 @example
6401 gradfun=radius=8
6402 @end example
6403
6404 @end itemize
6405
6406 @anchor{haldclut}
6407 @section haldclut
6408
6409 Apply a Hald CLUT to a video stream.
6410
6411 First input is the video stream to process, and second one is the Hald CLUT.
6412 The Hald CLUT input can be a simple picture or a complete video stream.
6413
6414 The filter accepts the following options:
6415
6416 @table @option
6417 @item shortest
6418 Force termination when the shortest input terminates. Default is @code{0}.
6419 @item repeatlast
6420 Continue applying the last CLUT after the end of the stream. A value of
6421 @code{0} disable the filter after the last frame of the CLUT is reached.
6422 Default is @code{1}.
6423 @end table
6424
6425 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
6426 filters share the same internals).
6427
6428 More information about the Hald CLUT can be found on Eskil Steenberg's website
6429 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
6430
6431 @subsection Workflow examples
6432
6433 @subsubsection Hald CLUT video stream
6434
6435 Generate an identity Hald CLUT stream altered with various effects:
6436 @example
6437 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
6438 @end example
6439
6440 Note: make sure you use a lossless codec.
6441
6442 Then use it with @code{haldclut} to apply it on some random stream:
6443 @example
6444 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
6445 @end example
6446
6447 The Hald CLUT will be applied to the 10 first seconds (duration of
6448 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
6449 to the remaining frames of the @code{mandelbrot} stream.
6450
6451 @subsubsection Hald CLUT with preview
6452
6453 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
6454 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
6455 biggest possible square starting at the top left of the picture. The remaining
6456 padding pixels (bottom or right) will be ignored. This area can be used to add
6457 a preview of the Hald CLUT.
6458
6459 Typically, the following generated Hald CLUT will be supported by the
6460 @code{haldclut} filter:
6461
6462 @example
6463 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
6464    pad=iw+320 [padded_clut];
6465    smptebars=s=320x256, split [a][b];
6466    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
6467    [main][b] overlay=W-320" -frames:v 1 clut.png
6468 @end example
6469
6470 It contains the original and a preview of the effect of the CLUT: SMPTE color
6471 bars are displayed on the right-top, and below the same color bars processed by
6472 the color changes.
6473
6474 Then, the effect of this Hald CLUT can be visualized with:
6475 @example
6476 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
6477 @end example
6478
6479 @section hflip
6480
6481 Flip the input video horizontally.
6482
6483 For example, to horizontally flip the input video with @command{ffmpeg}:
6484 @example
6485 ffmpeg -i in.avi -vf "hflip" out.avi
6486 @end example
6487
6488 @section histeq
6489 This filter applies a global color histogram equalization on a
6490 per-frame basis.
6491
6492 It can be used to correct video that has a compressed range of pixel
6493 intensities.  The filter redistributes the pixel intensities to
6494 equalize their distribution across the intensity range. It may be
6495 viewed as an "automatically adjusting contrast filter". This filter is
6496 useful only for correcting degraded or poorly captured source
6497 video.
6498
6499 The filter accepts the following options:
6500
6501 @table @option
6502 @item strength
6503 Determine the amount of equalization to be applied.  As the strength
6504 is reduced, the distribution of pixel intensities more-and-more
6505 approaches that of the input frame. The value must be a float number
6506 in the range [0,1] and defaults to 0.200.
6507
6508 @item intensity
6509 Set the maximum intensity that can generated and scale the output
6510 values appropriately.  The strength should be set as desired and then
6511 the intensity can be limited if needed to avoid washing-out. The value
6512 must be a float number in the range [0,1] and defaults to 0.210.
6513
6514 @item antibanding
6515 Set the antibanding level. If enabled the filter will randomly vary
6516 the luminance of output pixels by a small amount to avoid banding of
6517 the histogram. Possible values are @code{none}, @code{weak} or
6518 @code{strong}. It defaults to @code{none}.
6519 @end table
6520
6521 @section histogram
6522
6523 Compute and draw a color distribution histogram for the input video.
6524
6525 The computed histogram is a representation of the color component
6526 distribution in an image.
6527
6528 The filter accepts the following options:
6529
6530 @table @option
6531 @item mode
6532 Set histogram mode.
6533
6534 It accepts the following values:
6535 @table @samp
6536 @item levels
6537 Standard histogram that displays the color components distribution in an
6538 image. Displays color graph for each color component. Shows distribution of
6539 the Y, U, V, A or R, G, B components, depending on input format, in the
6540 current frame. Below each graph a color component scale meter is shown.
6541
6542 @item color
6543 Displays chroma values (U/V color placement) in a two dimensional
6544 graph (which is called a vectorscope). The brighter a pixel in the
6545 vectorscope, the more pixels of the input frame correspond to that pixel
6546 (i.e., more pixels have this chroma value). The V component is displayed on
6547 the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
6548 side being V = 255. The U component is displayed on the vertical (Y) axis,
6549 with the top representing U = 0 and the bottom representing U = 255.
6550
6551 The position of a white pixel in the graph corresponds to the chroma value of
6552 a pixel of the input clip. The graph can therefore be used to read the hue
6553 (color flavor) and the saturation (the dominance of the hue in the color). As
6554 the hue of a color changes, it moves around the square. At the center of the
6555 square the saturation is zero, which means that the corresponding pixel has no
6556 color. If the amount of a specific color is increased (while leaving the other
6557 colors unchanged) the saturation increases, and the indicator moves towards
6558 the edge of the square.
6559
6560 @item color2
6561 Chroma values in vectorscope, similar as @code{color} but actual chroma values
6562 are displayed.
6563
6564 @item waveform
6565 Per row/column color component graph. In row mode, the graph on the left side
6566 represents color component value 0 and the right side represents value = 255.
6567 In column mode, the top side represents color component value = 0 and bottom
6568 side represents value = 255.
6569 @end table
6570 Default value is @code{levels}.
6571
6572 @item level_height
6573 Set height of level in @code{levels}. Default value is @code{200}.
6574 Allowed range is [50, 2048].
6575
6576 @item scale_height
6577 Set height of color scale in @code{levels}. Default value is @code{12}.
6578 Allowed range is [0, 40].
6579
6580 @item step
6581 Set step for @code{waveform} mode. Smaller values are useful to find out how
6582 many values of the same luminance are distributed across input rows/columns.
6583 Default value is @code{10}. Allowed range is [1, 255].
6584
6585 @item waveform_mode
6586 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
6587 Default is @code{row}.
6588
6589 @item waveform_mirror
6590 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
6591 means mirrored. In mirrored mode, higher values will be represented on the left
6592 side for @code{row} mode and at the top for @code{column} mode. Default is
6593 @code{0} (unmirrored).
6594
6595 @item display_mode
6596 Set display mode for @code{waveform} and @code{levels}.
6597 It accepts the following values:
6598 @table @samp
6599 @item parade
6600 Display separate graph for the color components side by side in
6601 @code{row} waveform mode or one below the other in @code{column} waveform mode
6602 for @code{waveform} histogram mode. For @code{levels} histogram mode,
6603 per color component graphs are placed below each other.
6604
6605 Using this display mode in @code{waveform} histogram mode makes it easy to
6606 spot color casts in the highlights and shadows of an image, by comparing the
6607 contours of the top and the bottom graphs of each waveform. Since whites,
6608 grays, and blacks are characterized by exactly equal amounts of red, green,
6609 and blue, neutral areas of the picture should display three waveforms of
6610 roughly equal width/height. If not, the correction is easy to perform by
6611 making level adjustments the three waveforms.
6612
6613 @item overlay
6614 Presents information identical to that in the @code{parade}, except
6615 that the graphs representing color components are superimposed directly
6616 over one another.
6617
6618 This display mode in @code{waveform} histogram mode makes it easier to spot
6619 relative differences or similarities in overlapping areas of the color
6620 components that are supposed to be identical, such as neutral whites, grays,
6621 or blacks.
6622 @end table
6623 Default is @code{parade}.
6624
6625 @item levels_mode
6626 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
6627 Default is @code{linear}.
6628
6629 @item components
6630 Set what color components to display for mode @code{levels}.
6631 Default is @code{7}.
6632 @end table
6633
6634 @subsection Examples
6635
6636 @itemize
6637
6638 @item
6639 Calculate and draw histogram:
6640 @example
6641 ffplay -i input -vf histogram
6642 @end example
6643
6644 @end itemize
6645
6646 @anchor{hqdn3d}
6647 @section hqdn3d
6648
6649 This is a high precision/quality 3d denoise filter. It aims to reduce
6650 image noise, producing smooth images and making still images really
6651 still. It should enhance compressibility.
6652
6653 It accepts the following optional parameters:
6654
6655 @table @option
6656 @item luma_spatial
6657 A non-negative floating point number which specifies spatial luma strength.
6658 It defaults to 4.0.
6659
6660 @item chroma_spatial
6661 A non-negative floating point number which specifies spatial chroma strength.
6662 It defaults to 3.0*@var{luma_spatial}/4.0.
6663
6664 @item luma_tmp
6665 A floating point number which specifies luma temporal strength. It defaults to
6666 6.0*@var{luma_spatial}/4.0.
6667
6668 @item chroma_tmp
6669 A floating point number which specifies chroma temporal strength. It defaults to
6670 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
6671 @end table
6672
6673 @section hqx
6674
6675 Apply a high-quality magnification filter designed for pixel art. This filter
6676 was originally created by Maxim Stepin.
6677
6678 It accepts the following option:
6679
6680 @table @option
6681 @item n
6682 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
6683 @code{hq3x} and @code{4} for @code{hq4x}.
6684 Default is @code{3}.
6685 @end table
6686
6687 @section hstack
6688 Stack input videos horizontally.
6689
6690 All streams must be of same pixel format and of same height.
6691
6692 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
6693 to create same output.
6694
6695 The filter accept the following option:
6696
6697 @table @option
6698 @item nb_inputs
6699 Set number of input streams. Default is 2.
6700 @end table
6701
6702 @section hue
6703
6704 Modify the hue and/or the saturation of the input.
6705
6706 It accepts the following parameters:
6707
6708 @table @option
6709 @item h
6710 Specify the hue angle as a number of degrees. It accepts an expression,
6711 and defaults to "0".
6712
6713 @item s
6714 Specify the saturation in the [-10,10] range. It accepts an expression and
6715 defaults to "1".
6716
6717 @item H
6718 Specify the hue angle as a number of radians. It accepts an
6719 expression, and defaults to "0".
6720
6721 @item b
6722 Specify the brightness in the [-10,10] range. It accepts an expression and
6723 defaults to "0".
6724 @end table
6725
6726 @option{h} and @option{H} are mutually exclusive, and can't be
6727 specified at the same time.
6728
6729 The @option{b}, @option{h}, @option{H} and @option{s} option values are
6730 expressions containing the following constants:
6731
6732 @table @option
6733 @item n
6734 frame count of the input frame starting from 0
6735
6736 @item pts
6737 presentation timestamp of the input frame expressed in time base units
6738
6739 @item r
6740 frame rate of the input video, NAN if the input frame rate is unknown
6741
6742 @item t
6743 timestamp expressed in seconds, NAN if the input timestamp is unknown
6744
6745 @item tb
6746 time base of the input video
6747 @end table
6748
6749 @subsection Examples
6750
6751 @itemize
6752 @item
6753 Set the hue to 90 degrees and the saturation to 1.0:
6754 @example
6755 hue=h=90:s=1
6756 @end example
6757
6758 @item
6759 Same command but expressing the hue in radians:
6760 @example
6761 hue=H=PI/2:s=1
6762 @end example
6763
6764 @item
6765 Rotate hue and make the saturation swing between 0
6766 and 2 over a period of 1 second:
6767 @example
6768 hue="H=2*PI*t: s=sin(2*PI*t)+1"
6769 @end example
6770
6771 @item
6772 Apply a 3 seconds saturation fade-in effect starting at 0:
6773 @example
6774 hue="s=min(t/3\,1)"
6775 @end example
6776
6777 The general fade-in expression can be written as:
6778 @example
6779 hue="s=min(0\, max((t-START)/DURATION\, 1))"
6780 @end example
6781
6782 @item
6783 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
6784 @example
6785 hue="s=max(0\, min(1\, (8-t)/3))"
6786 @end example
6787
6788 The general fade-out expression can be written as:
6789 @example
6790 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
6791 @end example
6792
6793 @end itemize
6794
6795 @subsection Commands
6796
6797 This filter supports the following commands:
6798 @table @option
6799 @item b
6800 @item s
6801 @item h
6802 @item H
6803 Modify the hue and/or the saturation and/or brightness of the input video.
6804 The command accepts the same syntax of the corresponding option.
6805
6806 If the specified expression is not valid, it is kept at its current
6807 value.
6808 @end table
6809
6810 @section idet
6811
6812 Detect video interlacing type.
6813
6814 This filter tries to detect if the input frames as interlaced, progressive,
6815 top or bottom field first. It will also try and detect fields that are
6816 repeated between adjacent frames (a sign of telecine).
6817
6818 Single frame detection considers only immediately adjacent frames when classifying each frame.
6819 Multiple frame detection incorporates the classification history of previous frames.
6820
6821 The filter will log these metadata values:
6822
6823 @table @option
6824 @item single.current_frame
6825 Detected type of current frame using single-frame detection. One of:
6826 ``tff'' (top field first), ``bff'' (bottom field first),
6827 ``progressive'', or ``undetermined''
6828
6829 @item single.tff
6830 Cumulative number of frames detected as top field first using single-frame detection.
6831
6832 @item multiple.tff
6833 Cumulative number of frames detected as top field first using multiple-frame detection.
6834
6835 @item single.bff
6836 Cumulative number of frames detected as bottom field first using single-frame detection.
6837
6838 @item multiple.current_frame
6839 Detected type of current frame using multiple-frame detection. One of:
6840 ``tff'' (top field first), ``bff'' (bottom field first),
6841 ``progressive'', or ``undetermined''
6842
6843 @item multiple.bff
6844 Cumulative number of frames detected as bottom field first using multiple-frame detection.
6845
6846 @item single.progressive
6847 Cumulative number of frames detected as progressive using single-frame detection.
6848
6849 @item multiple.progressive
6850 Cumulative number of frames detected as progressive using multiple-frame detection.
6851
6852 @item single.undetermined
6853 Cumulative number of frames that could not be classified using single-frame detection.
6854
6855 @item multiple.undetermined
6856 Cumulative number of frames that could not be classified using multiple-frame detection.
6857
6858 @item repeated.current_frame
6859 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
6860
6861 @item repeated.neither
6862 Cumulative number of frames with no repeated field.
6863
6864 @item repeated.top
6865 Cumulative number of frames with the top field repeated from the previous frame's top field.
6866
6867 @item repeated.bottom
6868 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
6869 @end table
6870
6871 The filter accepts the following options:
6872
6873 @table @option
6874 @item intl_thres
6875 Set interlacing threshold.
6876 @item prog_thres
6877 Set progressive threshold.
6878 @item repeat_thres
6879 Threshold for repeated field detection.
6880 @item half_life
6881 Number of frames after which a given frame's contribution to the
6882 statistics is halved (i.e., it contributes only 0.5 to it's
6883 classification). The default of 0 means that all frames seen are given
6884 full weight of 1.0 forever.
6885 @item analyze_interlaced_flag
6886 When this is not 0 then idet will use the specified number of frames to determine
6887 if the interlaced flag is accurate, it will not count undetermined frames.
6888 If the flag is found to be accurate it will be used without any further
6889 computations, if it is found to be inaccurate it will be cleared without any
6890 further computations. This allows inserting the idet filter as a low computational
6891 method to clean up the interlaced flag
6892 @end table
6893
6894 @section il
6895
6896 Deinterleave or interleave fields.
6897
6898 This filter allows one to process interlaced images fields without
6899 deinterlacing them. Deinterleaving splits the input frame into 2
6900 fields (so called half pictures). Odd lines are moved to the top
6901 half of the output image, even lines to the bottom half.
6902 You can process (filter) them independently and then re-interleave them.
6903
6904 The filter accepts the following options:
6905
6906 @table @option
6907 @item luma_mode, l
6908 @item chroma_mode, c
6909 @item alpha_mode, a
6910 Available values for @var{luma_mode}, @var{chroma_mode} and
6911 @var{alpha_mode} are:
6912
6913 @table @samp
6914 @item none
6915 Do nothing.
6916
6917 @item deinterleave, d
6918 Deinterleave fields, placing one above the other.
6919
6920 @item interleave, i
6921 Interleave fields. Reverse the effect of deinterleaving.
6922 @end table
6923 Default value is @code{none}.
6924
6925 @item luma_swap, ls
6926 @item chroma_swap, cs
6927 @item alpha_swap, as
6928 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
6929 @end table
6930
6931 @section inflate
6932
6933 Apply inflate effect to the video.
6934
6935 This filter replaces the pixel by the local(3x3) average by taking into account
6936 only values higher than the pixel.
6937
6938 It accepts the following options:
6939
6940 @table @option
6941 @item threshold0
6942 @item threshold1
6943 @item threshold2
6944 @item threshold3
6945 Allows to limit the maximum change for each plane, default is 65535.
6946 If 0, plane will remain unchanged.
6947 @end table
6948
6949 @section interlace
6950
6951 Simple interlacing filter from progressive contents. This interleaves upper (or
6952 lower) lines from odd frames with lower (or upper) lines from even frames,
6953 halving the frame rate and preserving image height.
6954
6955 @example
6956    Original        Original             New Frame
6957    Frame 'j'      Frame 'j+1'             (tff)
6958   ==========      ===========       ==================
6959     Line 0  -------------------->    Frame 'j' Line 0
6960     Line 1          Line 1  ---->   Frame 'j+1' Line 1
6961     Line 2 --------------------->    Frame 'j' Line 2
6962     Line 3          Line 3  ---->   Frame 'j+1' Line 3
6963      ...             ...                   ...
6964 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
6965 @end example
6966
6967 It accepts the following optional parameters:
6968
6969 @table @option
6970 @item scan
6971 This determines whether the interlaced frame is taken from the even
6972 (tff - default) or odd (bff) lines of the progressive frame.
6973
6974 @item lowpass
6975 Enable (default) or disable the vertical lowpass filter to avoid twitter
6976 interlacing and reduce moire patterns.
6977 @end table
6978
6979 @section kerndeint
6980
6981 Deinterlace input video by applying Donald Graft's adaptive kernel
6982 deinterling. Work on interlaced parts of a video to produce
6983 progressive frames.
6984
6985 The description of the accepted parameters follows.
6986
6987 @table @option
6988 @item thresh
6989 Set the threshold which affects the filter's tolerance when
6990 determining if a pixel line must be processed. It must be an integer
6991 in the range [0,255] and defaults to 10. A value of 0 will result in
6992 applying the process on every pixels.
6993
6994 @item map
6995 Paint pixels exceeding the threshold value to white if set to 1.
6996 Default is 0.
6997
6998 @item order
6999 Set the fields order. Swap fields if set to 1, leave fields alone if
7000 0. Default is 0.
7001
7002 @item sharp
7003 Enable additional sharpening if set to 1. Default is 0.
7004
7005 @item twoway
7006 Enable twoway sharpening if set to 1. Default is 0.
7007 @end table
7008
7009 @subsection Examples
7010
7011 @itemize
7012 @item
7013 Apply default values:
7014 @example
7015 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7016 @end example
7017
7018 @item
7019 Enable additional sharpening:
7020 @example
7021 kerndeint=sharp=1
7022 @end example
7023
7024 @item
7025 Paint processed pixels in white:
7026 @example
7027 kerndeint=map=1
7028 @end example
7029 @end itemize
7030
7031 @section lenscorrection
7032
7033 Correct radial lens distortion
7034
7035 This filter can be used to correct for radial distortion as can result from the use
7036 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7037 one can use tools available for example as part of opencv or simply trial-and-error.
7038 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7039 and extract the k1 and k2 coefficients from the resulting matrix.
7040
7041 Note that effectively the same filter is available in the open-source tools Krita and
7042 Digikam from the KDE project.
7043
7044 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7045 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7046 brightness distribution, so you may want to use both filters together in certain
7047 cases, though you will have to take care of ordering, i.e. whether vignetting should
7048 be applied before or after lens correction.
7049
7050 @subsection Options
7051
7052 The filter accepts the following options:
7053
7054 @table @option
7055 @item cx
7056 Relative x-coordinate of the focal point of the image, and thereby the center of the
7057 distortion. This value has a range [0,1] and is expressed as fractions of the image
7058 width.
7059 @item cy
7060 Relative y-coordinate of the focal point of the image, and thereby the center of the
7061 distortion. This value has a range [0,1] and is expressed as fractions of the image
7062 height.
7063 @item k1
7064 Coefficient of the quadratic correction term. 0.5 means no correction.
7065 @item k2
7066 Coefficient of the double quadratic correction term. 0.5 means no correction.
7067 @end table
7068
7069 The formula that generates the correction is:
7070
7071 @var{r_src} = @var{r_tgt} * (1 + @var{k1} * (@var{r_tgt} / @var{r_0})^2 + @var{k2} * (@var{r_tgt} / @var{r_0})^4)
7072
7073 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
7074 distances from the focal point in the source and target images, respectively.
7075
7076 @anchor{lut3d}
7077 @section lut3d
7078
7079 Apply a 3D LUT to an input video.
7080
7081 The filter accepts the following options:
7082
7083 @table @option
7084 @item file
7085 Set the 3D LUT file name.
7086
7087 Currently supported formats:
7088 @table @samp
7089 @item 3dl
7090 AfterEffects
7091 @item cube
7092 Iridas
7093 @item dat
7094 DaVinci
7095 @item m3d
7096 Pandora
7097 @end table
7098 @item interp
7099 Select interpolation mode.
7100
7101 Available values are:
7102
7103 @table @samp
7104 @item nearest
7105 Use values from the nearest defined point.
7106 @item trilinear
7107 Interpolate values using the 8 points defining a cube.
7108 @item tetrahedral
7109 Interpolate values using a tetrahedron.
7110 @end table
7111 @end table
7112
7113 @section lut, lutrgb, lutyuv
7114
7115 Compute a look-up table for binding each pixel component input value
7116 to an output value, and apply it to the input video.
7117
7118 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
7119 to an RGB input video.
7120
7121 These filters accept the following parameters:
7122 @table @option
7123 @item c0
7124 set first pixel component expression
7125 @item c1
7126 set second pixel component expression
7127 @item c2
7128 set third pixel component expression
7129 @item c3
7130 set fourth pixel component expression, corresponds to the alpha component
7131
7132 @item r
7133 set red component expression
7134 @item g
7135 set green component expression
7136 @item b
7137 set blue component expression
7138 @item a
7139 alpha component expression
7140
7141 @item y
7142 set Y/luminance component expression
7143 @item u
7144 set U/Cb component expression
7145 @item v
7146 set V/Cr component expression
7147 @end table
7148
7149 Each of them specifies the expression to use for computing the lookup table for
7150 the corresponding pixel component values.
7151
7152 The exact component associated to each of the @var{c*} options depends on the
7153 format in input.
7154
7155 The @var{lut} filter requires either YUV or RGB pixel formats in input,
7156 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
7157
7158 The expressions can contain the following constants and functions:
7159
7160 @table @option
7161 @item w
7162 @item h
7163 The input width and height.
7164
7165 @item val
7166 The input value for the pixel component.
7167
7168 @item clipval
7169 The input value, clipped to the @var{minval}-@var{maxval} range.
7170
7171 @item maxval
7172 The maximum value for the pixel component.
7173
7174 @item minval
7175 The minimum value for the pixel component.
7176
7177 @item negval
7178 The negated value for the pixel component value, clipped to the
7179 @var{minval}-@var{maxval} range; it corresponds to the expression
7180 "maxval-clipval+minval".
7181
7182 @item clip(val)
7183 The computed value in @var{val}, clipped to the
7184 @var{minval}-@var{maxval} range.
7185
7186 @item gammaval(gamma)
7187 The computed gamma correction value of the pixel component value,
7188 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
7189 expression
7190 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
7191
7192 @end table
7193
7194 All expressions default to "val".
7195
7196 @subsection Examples
7197
7198 @itemize
7199 @item
7200 Negate input video:
7201 @example
7202 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
7203 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
7204 @end example
7205
7206 The above is the same as:
7207 @example
7208 lutrgb="r=negval:g=negval:b=negval"
7209 lutyuv="y=negval:u=negval:v=negval"
7210 @end example
7211
7212 @item
7213 Negate luminance:
7214 @example
7215 lutyuv=y=negval
7216 @end example
7217
7218 @item
7219 Remove chroma components, turning the video into a graytone image:
7220 @example
7221 lutyuv="u=128:v=128"
7222 @end example
7223
7224 @item
7225 Apply a luma burning effect:
7226 @example
7227 lutyuv="y=2*val"
7228 @end example
7229
7230 @item
7231 Remove green and blue components:
7232 @example
7233 lutrgb="g=0:b=0"
7234 @end example
7235
7236 @item
7237 Set a constant alpha channel value on input:
7238 @example
7239 format=rgba,lutrgb=a="maxval-minval/2"
7240 @end example
7241
7242 @item
7243 Correct luminance gamma by a factor of 0.5:
7244 @example
7245 lutyuv=y=gammaval(0.5)
7246 @end example
7247
7248 @item
7249 Discard least significant bits of luma:
7250 @example
7251 lutyuv=y='bitand(val, 128+64+32)'
7252 @end example
7253 @end itemize
7254
7255 @section mergeplanes
7256
7257 Merge color channel components from several video streams.
7258
7259 The filter accepts up to 4 input streams, and merge selected input
7260 planes to the output video.
7261
7262 This filter accepts the following options:
7263 @table @option
7264 @item mapping
7265 Set input to output plane mapping. Default is @code{0}.
7266
7267 The mappings is specified as a bitmap. It should be specified as a
7268 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
7269 mapping for the first plane of the output stream. 'A' sets the number of
7270 the input stream to use (from 0 to 3), and 'a' the plane number of the
7271 corresponding input to use (from 0 to 3). The rest of the mappings is
7272 similar, 'Bb' describes the mapping for the output stream second
7273 plane, 'Cc' describes the mapping for the output stream third plane and
7274 'Dd' describes the mapping for the output stream fourth plane.
7275
7276 @item format
7277 Set output pixel format. Default is @code{yuva444p}.
7278 @end table
7279
7280 @subsection Examples
7281
7282 @itemize
7283 @item
7284 Merge three gray video streams of same width and height into single video stream:
7285 @example
7286 [a0][a1][a2]mergeplanes=0x001020:yuv444p
7287 @end example
7288
7289 @item
7290 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
7291 @example
7292 [a0][a1]mergeplanes=0x00010210:yuva444p
7293 @end example
7294
7295 @item
7296 Swap Y and A plane in yuva444p stream:
7297 @example
7298 format=yuva444p,mergeplanes=0x03010200:yuva444p
7299 @end example
7300
7301 @item
7302 Swap U and V plane in yuv420p stream:
7303 @example
7304 format=yuv420p,mergeplanes=0x000201:yuv420p
7305 @end example
7306
7307 @item
7308 Cast a rgb24 clip to yuv444p:
7309 @example
7310 format=rgb24,mergeplanes=0x000102:yuv444p
7311 @end example
7312 @end itemize
7313
7314 @section mcdeint
7315
7316 Apply motion-compensation deinterlacing.
7317
7318 It needs one field per frame as input and must thus be used together
7319 with yadif=1/3 or equivalent.
7320
7321 This filter accepts the following options:
7322 @table @option
7323 @item mode
7324 Set the deinterlacing mode.
7325
7326 It accepts one of the following values:
7327 @table @samp
7328 @item fast
7329 @item medium
7330 @item slow
7331 use iterative motion estimation
7332 @item extra_slow
7333 like @samp{slow}, but use multiple reference frames.
7334 @end table
7335 Default value is @samp{fast}.
7336
7337 @item parity
7338 Set the picture field parity assumed for the input video. It must be
7339 one of the following values:
7340
7341 @table @samp
7342 @item 0, tff
7343 assume top field first
7344 @item 1, bff
7345 assume bottom field first
7346 @end table
7347
7348 Default value is @samp{bff}.
7349
7350 @item qp
7351 Set per-block quantization parameter (QP) used by the internal
7352 encoder.
7353
7354 Higher values should result in a smoother motion vector field but less
7355 optimal individual vectors. Default value is 1.
7356 @end table
7357
7358 @section mpdecimate
7359
7360 Drop frames that do not differ greatly from the previous frame in
7361 order to reduce frame rate.
7362
7363 The main use of this filter is for very-low-bitrate encoding
7364 (e.g. streaming over dialup modem), but it could in theory be used for
7365 fixing movies that were inverse-telecined incorrectly.
7366
7367 A description of the accepted options follows.
7368
7369 @table @option
7370 @item max
7371 Set the maximum number of consecutive frames which can be dropped (if
7372 positive), or the minimum interval between dropped frames (if
7373 negative). If the value is 0, the frame is dropped unregarding the
7374 number of previous sequentially dropped frames.
7375
7376 Default value is 0.
7377
7378 @item hi
7379 @item lo
7380 @item frac
7381 Set the dropping threshold values.
7382
7383 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
7384 represent actual pixel value differences, so a threshold of 64
7385 corresponds to 1 unit of difference for each pixel, or the same spread
7386 out differently over the block.
7387
7388 A frame is a candidate for dropping if no 8x8 blocks differ by more
7389 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
7390 meaning the whole image) differ by more than a threshold of @option{lo}.
7391
7392 Default value for @option{hi} is 64*12, default value for @option{lo} is
7393 64*5, and default value for @option{frac} is 0.33.
7394 @end table
7395
7396
7397 @section negate
7398
7399 Negate input video.
7400
7401 It accepts an integer in input; if non-zero it negates the
7402 alpha component (if available). The default value in input is 0.
7403
7404 @section noformat
7405
7406 Force libavfilter not to use any of the specified pixel formats for the
7407 input to the next filter.
7408
7409 It accepts the following parameters:
7410 @table @option
7411
7412 @item pix_fmts
7413 A '|'-separated list of pixel format names, such as
7414 apix_fmts=yuv420p|monow|rgb24".
7415
7416 @end table
7417
7418 @subsection Examples
7419
7420 @itemize
7421 @item
7422 Force libavfilter to use a format different from @var{yuv420p} for the
7423 input to the vflip filter:
7424 @example
7425 noformat=pix_fmts=yuv420p,vflip
7426 @end example
7427
7428 @item
7429 Convert the input video to any of the formats not contained in the list:
7430 @example
7431 noformat=yuv420p|yuv444p|yuv410p
7432 @end example
7433 @end itemize
7434
7435 @section noise
7436
7437 Add noise on video input frame.
7438
7439 The filter accepts the following options:
7440
7441 @table @option
7442 @item all_seed
7443 @item c0_seed
7444 @item c1_seed
7445 @item c2_seed
7446 @item c3_seed
7447 Set noise seed for specific pixel component or all pixel components in case
7448 of @var{all_seed}. Default value is @code{123457}.
7449
7450 @item all_strength, alls
7451 @item c0_strength, c0s
7452 @item c1_strength, c1s
7453 @item c2_strength, c2s
7454 @item c3_strength, c3s
7455 Set noise strength for specific pixel component or all pixel components in case
7456 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
7457
7458 @item all_flags, allf
7459 @item c0_flags, c0f
7460 @item c1_flags, c1f
7461 @item c2_flags, c2f
7462 @item c3_flags, c3f
7463 Set pixel component flags or set flags for all components if @var{all_flags}.
7464 Available values for component flags are:
7465 @table @samp
7466 @item a
7467 averaged temporal noise (smoother)
7468 @item p
7469 mix random noise with a (semi)regular pattern
7470 @item t
7471 temporal noise (noise pattern changes between frames)
7472 @item u
7473 uniform noise (gaussian otherwise)
7474 @end table
7475 @end table
7476
7477 @subsection Examples
7478
7479 Add temporal and uniform noise to input video:
7480 @example
7481 noise=alls=20:allf=t+u
7482 @end example
7483
7484 @section null
7485
7486 Pass the video source unchanged to the output.
7487
7488 @section ocv
7489
7490 Apply a video transform using libopencv.
7491
7492 To enable this filter, install the libopencv library and headers and
7493 configure FFmpeg with @code{--enable-libopencv}.
7494
7495 It accepts the following parameters:
7496
7497 @table @option
7498
7499 @item filter_name
7500 The name of the libopencv filter to apply.
7501
7502 @item filter_params
7503 The parameters to pass to the libopencv filter. If not specified, the default
7504 values are assumed.
7505
7506 @end table
7507
7508 Refer to the official libopencv documentation for more precise
7509 information:
7510 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
7511
7512 Several libopencv filters are supported; see the following subsections.
7513
7514 @anchor{dilate}
7515 @subsection dilate
7516
7517 Dilate an image by using a specific structuring element.
7518 It corresponds to the libopencv function @code{cvDilate}.
7519
7520 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
7521
7522 @var{struct_el} represents a structuring element, and has the syntax:
7523 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
7524
7525 @var{cols} and @var{rows} represent the number of columns and rows of
7526 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
7527 point, and @var{shape} the shape for the structuring element. @var{shape}
7528 must be "rect", "cross", "ellipse", or "custom".
7529
7530 If the value for @var{shape} is "custom", it must be followed by a
7531 string of the form "=@var{filename}". The file with name
7532 @var{filename} is assumed to represent a binary image, with each
7533 printable character corresponding to a bright pixel. When a custom
7534 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
7535 or columns and rows of the read file are assumed instead.
7536
7537 The default value for @var{struct_el} is "3x3+0x0/rect".
7538
7539 @var{nb_iterations} specifies the number of times the transform is
7540 applied to the image, and defaults to 1.
7541
7542 Some examples:
7543 @example
7544 # Use the default values
7545 ocv=dilate
7546
7547 # Dilate using a structuring element with a 5x5 cross, iterating two times
7548 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
7549
7550 # Read the shape from the file diamond.shape, iterating two times.
7551 # The file diamond.shape may contain a pattern of characters like this
7552 #   *
7553 #  ***
7554 # *****
7555 #  ***
7556 #   *
7557 # The specified columns and rows are ignored
7558 # but the anchor point coordinates are not
7559 ocv=dilate:0x0+2x2/custom=diamond.shape|2
7560 @end example
7561
7562 @subsection erode
7563
7564 Erode an image by using a specific structuring element.
7565 It corresponds to the libopencv function @code{cvErode}.
7566
7567 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
7568 with the same syntax and semantics as the @ref{dilate} filter.
7569
7570 @subsection smooth
7571
7572 Smooth the input video.
7573
7574 The filter takes the following parameters:
7575 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
7576
7577 @var{type} is the type of smooth filter to apply, and must be one of
7578 the following values: "blur", "blur_no_scale", "median", "gaussian",
7579 or "bilateral". The default value is "gaussian".
7580
7581 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
7582 depend on the smooth type. @var{param1} and
7583 @var{param2} accept integer positive values or 0. @var{param3} and
7584 @var{param4} accept floating point values.
7585
7586 The default value for @var{param1} is 3. The default value for the
7587 other parameters is 0.
7588
7589 These parameters correspond to the parameters assigned to the
7590 libopencv function @code{cvSmooth}.
7591
7592 @anchor{overlay}
7593 @section overlay
7594
7595 Overlay one video on top of another.
7596
7597 It takes two inputs and has one output. The first input is the "main"
7598 video on which the second input is overlaid.
7599
7600 It accepts the following parameters:
7601
7602 A description of the accepted options follows.
7603
7604 @table @option
7605 @item x
7606 @item y
7607 Set the expression for the x and y coordinates of the overlaid video
7608 on the main video. Default value is "0" for both expressions. In case
7609 the expression is invalid, it is set to a huge value (meaning that the
7610 overlay will not be displayed within the output visible area).
7611
7612 @item eof_action
7613 The action to take when EOF is encountered on the secondary input; it accepts
7614 one of the following values:
7615
7616 @table @option
7617 @item repeat
7618 Repeat the last frame (the default).
7619 @item endall
7620 End both streams.
7621 @item pass
7622 Pass the main input through.
7623 @end table
7624
7625 @item eval
7626 Set when the expressions for @option{x}, and @option{y} are evaluated.
7627
7628 It accepts the following values:
7629 @table @samp
7630 @item init
7631 only evaluate expressions once during the filter initialization or
7632 when a command is processed
7633
7634 @item frame
7635 evaluate expressions for each incoming frame
7636 @end table
7637
7638 Default value is @samp{frame}.
7639
7640 @item shortest
7641 If set to 1, force the output to terminate when the shortest input
7642 terminates. Default value is 0.
7643
7644 @item format
7645 Set the format for the output video.
7646
7647 It accepts the following values:
7648 @table @samp
7649 @item yuv420
7650 force YUV420 output
7651
7652 @item yuv422
7653 force YUV422 output
7654
7655 @item yuv444
7656 force YUV444 output
7657
7658 @item rgb
7659 force RGB output
7660 @end table
7661
7662 Default value is @samp{yuv420}.
7663
7664 @item rgb @emph{(deprecated)}
7665 If set to 1, force the filter to accept inputs in the RGB
7666 color space. Default value is 0. This option is deprecated, use
7667 @option{format} instead.
7668
7669 @item repeatlast
7670 If set to 1, force the filter to draw the last overlay frame over the
7671 main input until the end of the stream. A value of 0 disables this
7672 behavior. Default value is 1.
7673 @end table
7674
7675 The @option{x}, and @option{y} expressions can contain the following
7676 parameters.
7677
7678 @table @option
7679 @item main_w, W
7680 @item main_h, H
7681 The main input width and height.
7682
7683 @item overlay_w, w
7684 @item overlay_h, h
7685 The overlay input width and height.
7686
7687 @item x
7688 @item y
7689 The computed values for @var{x} and @var{y}. They are evaluated for
7690 each new frame.
7691
7692 @item hsub
7693 @item vsub
7694 horizontal and vertical chroma subsample values of the output
7695 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
7696 @var{vsub} is 1.
7697
7698 @item n
7699 the number of input frame, starting from 0
7700
7701 @item pos
7702 the position in the file of the input frame, NAN if unknown
7703
7704 @item t
7705 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
7706
7707 @end table
7708
7709 Note that the @var{n}, @var{pos}, @var{t} variables are available only
7710 when evaluation is done @emph{per frame}, and will evaluate to NAN
7711 when @option{eval} is set to @samp{init}.
7712
7713 Be aware that frames are taken from each input video in timestamp
7714 order, hence, if their initial timestamps differ, it is a good idea
7715 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
7716 have them begin in the same zero timestamp, as the example for
7717 the @var{movie} filter does.
7718
7719 You can chain together more overlays but you should test the
7720 efficiency of such approach.
7721
7722 @subsection Commands
7723
7724 This filter supports the following commands:
7725 @table @option
7726 @item x
7727 @item y
7728 Modify the x and y of the overlay input.
7729 The command accepts the same syntax of the corresponding option.
7730
7731 If the specified expression is not valid, it is kept at its current
7732 value.
7733 @end table
7734
7735 @subsection Examples
7736
7737 @itemize
7738 @item
7739 Draw the overlay at 10 pixels from the bottom right corner of the main
7740 video:
7741 @example
7742 overlay=main_w-overlay_w-10:main_h-overlay_h-10
7743 @end example
7744
7745 Using named options the example above becomes:
7746 @example
7747 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
7748 @end example
7749
7750 @item
7751 Insert a transparent PNG logo in the bottom left corner of the input,
7752 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
7753 @example
7754 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
7755 @end example
7756
7757 @item
7758 Insert 2 different transparent PNG logos (second logo on bottom
7759 right corner) using the @command{ffmpeg} tool:
7760 @example
7761 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
7762 @end example
7763
7764 @item
7765 Add a transparent color layer on top of the main video; @code{WxH}
7766 must specify the size of the main input to the overlay filter:
7767 @example
7768 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
7769 @end example
7770
7771 @item
7772 Play an original video and a filtered version (here with the deshake
7773 filter) side by side using the @command{ffplay} tool:
7774 @example
7775 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
7776 @end example
7777
7778 The above command is the same as:
7779 @example
7780 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
7781 @end example
7782
7783 @item
7784 Make a sliding overlay appearing from the left to the right top part of the
7785 screen starting since time 2:
7786 @example
7787 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
7788 @end example
7789
7790 @item
7791 Compose output by putting two input videos side to side:
7792 @example
7793 ffmpeg -i left.avi -i right.avi -filter_complex "
7794 nullsrc=size=200x100 [background];
7795 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
7796 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
7797 [background][left]       overlay=shortest=1       [background+left];
7798 [background+left][right] overlay=shortest=1:x=100 [left+right]
7799 "
7800 @end example
7801
7802 @item
7803 Mask 10-20 seconds of a video by applying the delogo filter to a section
7804 @example
7805 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
7806 -vf '[in]split[split_main][split_delogo];[split_delogo]trim=start=360:end=371,delogo=0:0:640:480[delogoed];[split_main][delogoed]overlay=eof_action=pass[out]'
7807 masked.avi
7808 @end example
7809
7810 @item
7811 Chain several overlays in cascade:
7812 @example
7813 nullsrc=s=200x200 [bg];
7814 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
7815 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
7816 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
7817 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
7818 [in3] null,       [mid2] overlay=100:100 [out0]
7819 @end example
7820
7821 @end itemize
7822
7823 @section owdenoise
7824
7825 Apply Overcomplete Wavelet denoiser.
7826
7827 The filter accepts the following options:
7828
7829 @table @option
7830 @item depth
7831 Set depth.
7832
7833 Larger depth values will denoise lower frequency components more, but
7834 slow down filtering.
7835
7836 Must be an int in the range 8-16, default is @code{8}.
7837
7838 @item luma_strength, ls
7839 Set luma strength.
7840
7841 Must be a double value in the range 0-1000, default is @code{1.0}.
7842
7843 @item chroma_strength, cs
7844 Set chroma strength.
7845
7846 Must be a double value in the range 0-1000, default is @code{1.0}.
7847 @end table
7848
7849 @anchor{pad}
7850 @section pad
7851
7852 Add paddings to the input image, and place the original input at the
7853 provided @var{x}, @var{y} coordinates.
7854
7855 It accepts the following parameters:
7856
7857 @table @option
7858 @item width, w
7859 @item height, h
7860 Specify an expression for the size of the output image with the
7861 paddings added. If the value for @var{width} or @var{height} is 0, the
7862 corresponding input size is used for the output.
7863
7864 The @var{width} expression can reference the value set by the
7865 @var{height} expression, and vice versa.
7866
7867 The default value of @var{width} and @var{height} is 0.
7868
7869 @item x
7870 @item y
7871 Specify the offsets to place the input image at within the padded area,
7872 with respect to the top/left border of the output image.
7873
7874 The @var{x} expression can reference the value set by the @var{y}
7875 expression, and vice versa.
7876
7877 The default value of @var{x} and @var{y} is 0.
7878
7879 @item color
7880 Specify the color of the padded area. For the syntax of this option,
7881 check the "Color" section in the ffmpeg-utils manual.
7882
7883 The default value of @var{color} is "black".
7884 @end table
7885
7886 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
7887 options are expressions containing the following constants:
7888
7889 @table @option
7890 @item in_w
7891 @item in_h
7892 The input video width and height.
7893
7894 @item iw
7895 @item ih
7896 These are the same as @var{in_w} and @var{in_h}.
7897
7898 @item out_w
7899 @item out_h
7900 The output width and height (the size of the padded area), as
7901 specified by the @var{width} and @var{height} expressions.
7902
7903 @item ow
7904 @item oh
7905 These are the same as @var{out_w} and @var{out_h}.
7906
7907 @item x
7908 @item y
7909 The x and y offsets as specified by the @var{x} and @var{y}
7910 expressions, or NAN if not yet specified.
7911
7912 @item a
7913 same as @var{iw} / @var{ih}
7914
7915 @item sar
7916 input sample aspect ratio
7917
7918 @item dar
7919 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7920
7921 @item hsub
7922 @item vsub
7923 The horizontal and vertical chroma subsample values. For example for the
7924 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7925 @end table
7926
7927 @subsection Examples
7928
7929 @itemize
7930 @item
7931 Add paddings with the color "violet" to the input video. The output video
7932 size is 640x480, and the top-left corner of the input video is placed at
7933 column 0, row 40
7934 @example
7935 pad=640:480:0:40:violet
7936 @end example
7937
7938 The example above is equivalent to the following command:
7939 @example
7940 pad=width=640:height=480:x=0:y=40:color=violet
7941 @end example
7942
7943 @item
7944 Pad the input to get an output with dimensions increased by 3/2,
7945 and put the input video at the center of the padded area:
7946 @example
7947 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
7948 @end example
7949
7950 @item
7951 Pad the input to get a squared output with size equal to the maximum
7952 value between the input width and height, and put the input video at
7953 the center of the padded area:
7954 @example
7955 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
7956 @end example
7957
7958 @item
7959 Pad the input to get a final w/h ratio of 16:9:
7960 @example
7961 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
7962 @end example
7963
7964 @item
7965 In case of anamorphic video, in order to set the output display aspect
7966 correctly, it is necessary to use @var{sar} in the expression,
7967 according to the relation:
7968 @example
7969 (ih * X / ih) * sar = output_dar
7970 X = output_dar / sar
7971 @end example
7972
7973 Thus the previous example needs to be modified to:
7974 @example
7975 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
7976 @end example
7977
7978 @item
7979 Double the output size and put the input video in the bottom-right
7980 corner of the output padded area:
7981 @example
7982 pad="2*iw:2*ih:ow-iw:oh-ih"
7983 @end example
7984 @end itemize
7985
7986 @anchor{palettegen}
7987 @section palettegen
7988
7989 Generate one palette for a whole video stream.
7990
7991 It accepts the following options:
7992
7993 @table @option
7994 @item max_colors
7995 Set the maximum number of colors to quantize in the palette.
7996 Note: the palette will still contain 256 colors; the unused palette entries
7997 will be black.
7998
7999 @item reserve_transparent
8000 Create a palette of 255 colors maximum and reserve the last one for
8001 transparency. Reserving the transparency color is useful for GIF optimization.
8002 If not set, the maximum of colors in the palette will be 256. You probably want
8003 to disable this option for a standalone image.
8004 Set by default.
8005
8006 @item stats_mode
8007 Set statistics mode.
8008
8009 It accepts the following values:
8010 @table @samp
8011 @item full
8012 Compute full frame histograms.
8013 @item diff
8014 Compute histograms only for the part that differs from previous frame. This
8015 might be relevant to give more importance to the moving part of your input if
8016 the background is static.
8017 @end table
8018
8019 Default value is @var{full}.
8020 @end table
8021
8022 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8023 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8024 color quantization of the palette. This information is also visible at
8025 @var{info} logging level.
8026
8027 @subsection Examples
8028
8029 @itemize
8030 @item
8031 Generate a representative palette of a given video using @command{ffmpeg}:
8032 @example
8033 ffmpeg -i input.mkv -vf palettegen palette.png
8034 @end example
8035 @end itemize
8036
8037 @section paletteuse
8038
8039 Use a palette to downsample an input video stream.
8040
8041 The filter takes two inputs: one video stream and a palette. The palette must
8042 be a 256 pixels image.
8043
8044 It accepts the following options:
8045
8046 @table @option
8047 @item dither
8048 Select dithering mode. Available algorithms are:
8049 @table @samp
8050 @item bayer
8051 Ordered 8x8 bayer dithering (deterministic)
8052 @item heckbert
8053 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
8054 Note: this dithering is sometimes considered "wrong" and is included as a
8055 reference.
8056 @item floyd_steinberg
8057 Floyd and Steingberg dithering (error diffusion)
8058 @item sierra2
8059 Frankie Sierra dithering v2 (error diffusion)
8060 @item sierra2_4a
8061 Frankie Sierra dithering v2 "Lite" (error diffusion)
8062 @end table
8063
8064 Default is @var{sierra2_4a}.
8065
8066 @item bayer_scale
8067 When @var{bayer} dithering is selected, this option defines the scale of the
8068 pattern (how much the crosshatch pattern is visible). A low value means more
8069 visible pattern for less banding, and higher value means less visible pattern
8070 at the cost of more banding.
8071
8072 The option must be an integer value in the range [0,5]. Default is @var{2}.
8073
8074 @item diff_mode
8075 If set, define the zone to process
8076
8077 @table @samp
8078 @item rectangle
8079 Only the changing rectangle will be reprocessed. This is similar to GIF
8080 cropping/offsetting compression mechanism. This option can be useful for speed
8081 if only a part of the image is changing, and has use cases such as limiting the
8082 scope of the error diffusal @option{dither} to the rectangle that bounds the
8083 moving scene (it leads to more deterministic output if the scene doesn't change
8084 much, and as a result less moving noise and better GIF compression).
8085 @end table
8086
8087 Default is @var{none}.
8088 @end table
8089
8090 @subsection Examples
8091
8092 @itemize
8093 @item
8094 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
8095 using @command{ffmpeg}:
8096 @example
8097 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
8098 @end example
8099 @end itemize
8100
8101 @section perspective
8102
8103 Correct perspective of video not recorded perpendicular to the screen.
8104
8105 A description of the accepted parameters follows.
8106
8107 @table @option
8108 @item x0
8109 @item y0
8110 @item x1
8111 @item y1
8112 @item x2
8113 @item y2
8114 @item x3
8115 @item y3
8116 Set coordinates expression for top left, top right, bottom left and bottom right corners.
8117 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
8118 If the @code{sense} option is set to @code{source}, then the specified points will be sent
8119 to the corners of the destination. If the @code{sense} option is set to @code{destination},
8120 then the corners of the source will be sent to the specified coordinates.
8121
8122 The expressions can use the following variables:
8123
8124 @table @option
8125 @item W
8126 @item H
8127 the width and height of video frame.
8128 @end table
8129
8130 @item interpolation
8131 Set interpolation for perspective correction.
8132
8133 It accepts the following values:
8134 @table @samp
8135 @item linear
8136 @item cubic
8137 @end table
8138
8139 Default value is @samp{linear}.
8140
8141 @item sense
8142 Set interpretation of coordinate options.
8143
8144 It accepts the following values:
8145 @table @samp
8146 @item 0, source
8147
8148 Send point in the source specified by the given coordinates to
8149 the corners of the destination.
8150
8151 @item 1, destination
8152
8153 Send the corners of the source to the point in the destination specified
8154 by the given coordinates.
8155
8156 Default value is @samp{source}.
8157 @end table
8158 @end table
8159
8160 @section phase
8161
8162 Delay interlaced video by one field time so that the field order changes.
8163
8164 The intended use is to fix PAL movies that have been captured with the
8165 opposite field order to the film-to-video transfer.
8166
8167 A description of the accepted parameters follows.
8168
8169 @table @option
8170 @item mode
8171 Set phase mode.
8172
8173 It accepts the following values:
8174 @table @samp
8175 @item t
8176 Capture field order top-first, transfer bottom-first.
8177 Filter will delay the bottom field.
8178
8179 @item b
8180 Capture field order bottom-first, transfer top-first.
8181 Filter will delay the top field.
8182
8183 @item p
8184 Capture and transfer with the same field order. This mode only exists
8185 for the documentation of the other options to refer to, but if you
8186 actually select it, the filter will faithfully do nothing.
8187
8188 @item a
8189 Capture field order determined automatically by field flags, transfer
8190 opposite.
8191 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
8192 basis using field flags. If no field information is available,
8193 then this works just like @samp{u}.
8194
8195 @item u
8196 Capture unknown or varying, transfer opposite.
8197 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
8198 analyzing the images and selecting the alternative that produces best
8199 match between the fields.
8200
8201 @item T
8202 Capture top-first, transfer unknown or varying.
8203 Filter selects among @samp{t} and @samp{p} using image analysis.
8204
8205 @item B
8206 Capture bottom-first, transfer unknown or varying.
8207 Filter selects among @samp{b} and @samp{p} using image analysis.
8208
8209 @item A
8210 Capture determined by field flags, transfer unknown or varying.
8211 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
8212 image analysis. If no field information is available, then this works just
8213 like @samp{U}. This is the default mode.
8214
8215 @item U
8216 Both capture and transfer unknown or varying.
8217 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
8218 @end table
8219 @end table
8220
8221 @section pixdesctest
8222
8223 Pixel format descriptor test filter, mainly useful for internal
8224 testing. The output video should be equal to the input video.
8225
8226 For example:
8227 @example
8228 format=monow, pixdesctest
8229 @end example
8230
8231 can be used to test the monowhite pixel format descriptor definition.
8232
8233 @section pp
8234
8235 Enable the specified chain of postprocessing subfilters using libpostproc. This
8236 library should be automatically selected with a GPL build (@code{--enable-gpl}).
8237 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
8238 Each subfilter and some options have a short and a long name that can be used
8239 interchangeably, i.e. dr/dering are the same.
8240
8241 The filters accept the following options:
8242
8243 @table @option
8244 @item subfilters
8245 Set postprocessing subfilters string.
8246 @end table
8247
8248 All subfilters share common options to determine their scope:
8249
8250 @table @option
8251 @item a/autoq
8252 Honor the quality commands for this subfilter.
8253
8254 @item c/chrom
8255 Do chrominance filtering, too (default).
8256
8257 @item y/nochrom
8258 Do luminance filtering only (no chrominance).
8259
8260 @item n/noluma
8261 Do chrominance filtering only (no luminance).
8262 @end table
8263
8264 These options can be appended after the subfilter name, separated by a '|'.
8265
8266 Available subfilters are:
8267
8268 @table @option
8269 @item hb/hdeblock[|difference[|flatness]]
8270 Horizontal deblocking filter
8271 @table @option
8272 @item difference
8273 Difference factor where higher values mean more deblocking (default: @code{32}).
8274 @item flatness
8275 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8276 @end table
8277
8278 @item vb/vdeblock[|difference[|flatness]]
8279 Vertical deblocking filter
8280 @table @option
8281 @item difference
8282 Difference factor where higher values mean more deblocking (default: @code{32}).
8283 @item flatness
8284 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8285 @end table
8286
8287 @item ha/hadeblock[|difference[|flatness]]
8288 Accurate horizontal deblocking filter
8289 @table @option
8290 @item difference
8291 Difference factor where higher values mean more deblocking (default: @code{32}).
8292 @item flatness
8293 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8294 @end table
8295
8296 @item va/vadeblock[|difference[|flatness]]
8297 Accurate vertical deblocking filter
8298 @table @option
8299 @item difference
8300 Difference factor where higher values mean more deblocking (default: @code{32}).
8301 @item flatness
8302 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8303 @end table
8304 @end table
8305
8306 The horizontal and vertical deblocking filters share the difference and
8307 flatness values so you cannot set different horizontal and vertical
8308 thresholds.
8309
8310 @table @option
8311 @item h1/x1hdeblock
8312 Experimental horizontal deblocking filter
8313
8314 @item v1/x1vdeblock
8315 Experimental vertical deblocking filter
8316
8317 @item dr/dering
8318 Deringing filter
8319
8320 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
8321 @table @option
8322 @item threshold1
8323 larger -> stronger filtering
8324 @item threshold2
8325 larger -> stronger filtering
8326 @item threshold3
8327 larger -> stronger filtering
8328 @end table
8329
8330 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
8331 @table @option
8332 @item f/fullyrange
8333 Stretch luminance to @code{0-255}.
8334 @end table
8335
8336 @item lb/linblenddeint
8337 Linear blend deinterlacing filter that deinterlaces the given block by
8338 filtering all lines with a @code{(1 2 1)} filter.
8339
8340 @item li/linipoldeint
8341 Linear interpolating deinterlacing filter that deinterlaces the given block by
8342 linearly interpolating every second line.
8343
8344 @item ci/cubicipoldeint
8345 Cubic interpolating deinterlacing filter deinterlaces the given block by
8346 cubically interpolating every second line.
8347
8348 @item md/mediandeint
8349 Median deinterlacing filter that deinterlaces the given block by applying a
8350 median filter to every second line.
8351
8352 @item fd/ffmpegdeint
8353 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
8354 second line with a @code{(-1 4 2 4 -1)} filter.
8355
8356 @item l5/lowpass5
8357 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
8358 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
8359
8360 @item fq/forceQuant[|quantizer]
8361 Overrides the quantizer table from the input with the constant quantizer you
8362 specify.
8363 @table @option
8364 @item quantizer
8365 Quantizer to use
8366 @end table
8367
8368 @item de/default
8369 Default pp filter combination (@code{hb|a,vb|a,dr|a})
8370
8371 @item fa/fast
8372 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
8373
8374 @item ac
8375 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
8376 @end table
8377
8378 @subsection Examples
8379
8380 @itemize
8381 @item
8382 Apply horizontal and vertical deblocking, deringing and automatic
8383 brightness/contrast:
8384 @example
8385 pp=hb/vb/dr/al
8386 @end example
8387
8388 @item
8389 Apply default filters without brightness/contrast correction:
8390 @example
8391 pp=de/-al
8392 @end example
8393
8394 @item
8395 Apply default filters and temporal denoiser:
8396 @example
8397 pp=default/tmpnoise|1|2|3
8398 @end example
8399
8400 @item
8401 Apply deblocking on luminance only, and switch vertical deblocking on or off
8402 automatically depending on available CPU time:
8403 @example
8404 pp=hb|y/vb|a
8405 @end example
8406 @end itemize
8407
8408 @section pp7
8409 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
8410 similar to spp = 6 with 7 point DCT, where only the center sample is
8411 used after IDCT.
8412
8413 The filter accepts the following options:
8414
8415 @table @option
8416 @item qp
8417 Force a constant quantization parameter. It accepts an integer in range
8418 0 to 63. If not set, the filter will use the QP from the video stream
8419 (if available).
8420
8421 @item mode
8422 Set thresholding mode. Available modes are:
8423
8424 @table @samp
8425 @item hard
8426 Set hard thresholding.
8427 @item soft
8428 Set soft thresholding (better de-ringing effect, but likely blurrier).
8429 @item medium
8430 Set medium thresholding (good results, default).
8431 @end table
8432 @end table
8433
8434 @section psnr
8435
8436 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
8437 Ratio) between two input videos.
8438
8439 This filter takes in input two input videos, the first input is
8440 considered the "main" source and is passed unchanged to the
8441 output. The second input is used as a "reference" video for computing
8442 the PSNR.
8443
8444 Both video inputs must have the same resolution and pixel format for
8445 this filter to work correctly. Also it assumes that both inputs
8446 have the same number of frames, which are compared one by one.
8447
8448 The obtained average PSNR is printed through the logging system.
8449
8450 The filter stores the accumulated MSE (mean squared error) of each
8451 frame, and at the end of the processing it is averaged across all frames
8452 equally, and the following formula is applied to obtain the PSNR:
8453
8454 @example
8455 PSNR = 10*log10(MAX^2/MSE)
8456 @end example
8457
8458 Where MAX is the average of the maximum values of each component of the
8459 image.
8460
8461 The description of the accepted parameters follows.
8462
8463 @table @option
8464 @item stats_file, f
8465 If specified the filter will use the named file to save the PSNR of
8466 each individual frame.
8467 @end table
8468
8469 The file printed if @var{stats_file} is selected, contains a sequence of
8470 key/value pairs of the form @var{key}:@var{value} for each compared
8471 couple of frames.
8472
8473 A description of each shown parameter follows:
8474
8475 @table @option
8476 @item n
8477 sequential number of the input frame, starting from 1
8478
8479 @item mse_avg
8480 Mean Square Error pixel-by-pixel average difference of the compared
8481 frames, averaged over all the image components.
8482
8483 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
8484 Mean Square Error pixel-by-pixel average difference of the compared
8485 frames for the component specified by the suffix.
8486
8487 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
8488 Peak Signal to Noise ratio of the compared frames for the component
8489 specified by the suffix.
8490 @end table
8491
8492 For example:
8493 @example
8494 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
8495 [main][ref] psnr="stats_file=stats.log" [out]
8496 @end example
8497
8498 On this example the input file being processed is compared with the
8499 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
8500 is stored in @file{stats.log}.
8501
8502 @anchor{pullup}
8503 @section pullup
8504
8505 Pulldown reversal (inverse telecine) filter, capable of handling mixed
8506 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
8507 content.
8508
8509 The pullup filter is designed to take advantage of future context in making
8510 its decisions. This filter is stateless in the sense that it does not lock
8511 onto a pattern to follow, but it instead looks forward to the following
8512 fields in order to identify matches and rebuild progressive frames.
8513
8514 To produce content with an even framerate, insert the fps filter after
8515 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
8516 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
8517
8518 The filter accepts the following options:
8519
8520 @table @option
8521 @item jl
8522 @item jr
8523 @item jt
8524 @item jb
8525 These options set the amount of "junk" to ignore at the left, right, top, and
8526 bottom of the image, respectively. Left and right are in units of 8 pixels,
8527 while top and bottom are in units of 2 lines.
8528 The default is 8 pixels on each side.
8529
8530 @item sb
8531 Set the strict breaks. Setting this option to 1 will reduce the chances of
8532 filter generating an occasional mismatched frame, but it may also cause an
8533 excessive number of frames to be dropped during high motion sequences.
8534 Conversely, setting it to -1 will make filter match fields more easily.
8535 This may help processing of video where there is slight blurring between
8536 the fields, but may also cause there to be interlaced frames in the output.
8537 Default value is @code{0}.
8538
8539 @item mp
8540 Set the metric plane to use. It accepts the following values:
8541 @table @samp
8542 @item l
8543 Use luma plane.
8544
8545 @item u
8546 Use chroma blue plane.
8547
8548 @item v
8549 Use chroma red plane.
8550 @end table
8551
8552 This option may be set to use chroma plane instead of the default luma plane
8553 for doing filter's computations. This may improve accuracy on very clean
8554 source material, but more likely will decrease accuracy, especially if there
8555 is chroma noise (rainbow effect) or any grayscale video.
8556 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
8557 load and make pullup usable in realtime on slow machines.
8558 @end table
8559
8560 For best results (without duplicated frames in the output file) it is
8561 necessary to change the output frame rate. For example, to inverse
8562 telecine NTSC input:
8563 @example
8564 ffmpeg -i input -vf pullup -r 24000/1001 ...
8565 @end example
8566
8567 @section qp
8568
8569 Change video quantization parameters (QP).
8570
8571 The filter accepts the following option:
8572
8573 @table @option
8574 @item qp
8575 Set expression for quantization parameter.
8576 @end table
8577
8578 The expression is evaluated through the eval API and can contain, among others,
8579 the following constants:
8580
8581 @table @var
8582 @item known
8583 1 if index is not 129, 0 otherwise.
8584
8585 @item qp
8586 Sequentional index starting from -129 to 128.
8587 @end table
8588
8589 @subsection Examples
8590
8591 @itemize
8592 @item
8593 Some equation like:
8594 @example
8595 qp=2+2*sin(PI*qp)
8596 @end example
8597 @end itemize
8598
8599 @section random
8600
8601 Flush video frames from internal cache of frames into a random order.
8602 No frame is discarded.
8603 Inspired by @ref{frei0r} nervous filter.
8604
8605 @table @option
8606 @item frames
8607 Set size in number of frames of internal cache, in range from @code{2} to
8608 @code{512}. Default is @code{30}.
8609
8610 @item seed
8611 Set seed for random number generator, must be an integer included between
8612 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
8613 less than @code{0}, the filter will try to use a good random seed on a
8614 best effort basis.
8615 @end table
8616
8617 @section removegrain
8618
8619 The removegrain filter is a spatial denoiser for progressive video.
8620
8621 @table @option
8622 @item m0
8623 Set mode for the first plane.
8624
8625 @item m1
8626 Set mode for the second plane.
8627
8628 @item m2
8629 Set mode for the third plane.
8630
8631 @item m3
8632 Set mode for the fourth plane.
8633 @end table
8634
8635 Range of mode is from 0 to 24. Description of each mode follows:
8636
8637 @table @var
8638 @item 0
8639 Leave input plane unchanged. Default.
8640
8641 @item 1
8642 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
8643
8644 @item 2
8645 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
8646
8647 @item 3
8648 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
8649
8650 @item 4
8651 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
8652 This is equivalent to a median filter.
8653
8654 @item 5
8655 Line-sensitive clipping giving the minimal change.
8656
8657 @item 6
8658 Line-sensitive clipping, intermediate.
8659
8660 @item 7
8661 Line-sensitive clipping, intermediate.
8662
8663 @item 8
8664 Line-sensitive clipping, intermediate.
8665
8666 @item 9
8667 Line-sensitive clipping on a line where the neighbours pixels are the closest.
8668
8669 @item 10
8670 Replaces the target pixel with the closest neighbour.
8671
8672 @item 11
8673 [1 2 1] horizontal and vertical kernel blur.
8674
8675 @item 12
8676 Same as mode 11.
8677
8678 @item 13
8679 Bob mode, interpolates top field from the line where the neighbours
8680 pixels are the closest.
8681
8682 @item 14
8683 Bob mode, interpolates bottom field from the line where the neighbours
8684 pixels are the closest.
8685
8686 @item 15
8687 Bob mode, interpolates top field. Same as 13 but with a more complicated
8688 interpolation formula.
8689
8690 @item 16
8691 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
8692 interpolation formula.
8693
8694 @item 17
8695 Clips the pixel with the minimum and maximum of respectively the maximum and
8696 minimum of each pair of opposite neighbour pixels.
8697
8698 @item 18
8699 Line-sensitive clipping using opposite neighbours whose greatest distance from
8700 the current pixel is minimal.
8701
8702 @item 19
8703 Replaces the pixel with the average of its 8 neighbours.
8704
8705 @item 20
8706 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
8707
8708 @item 21
8709 Clips pixels using the averages of opposite neighbour.
8710
8711 @item 22
8712 Same as mode 21 but simpler and faster.
8713
8714 @item 23
8715 Small edge and halo removal, but reputed useless.
8716
8717 @item 24
8718 Similar as 23.
8719 @end table
8720
8721 @section removelogo
8722
8723 Suppress a TV station logo, using an image file to determine which
8724 pixels comprise the logo. It works by filling in the pixels that
8725 comprise the logo with neighboring pixels.
8726
8727 The filter accepts the following options:
8728
8729 @table @option
8730 @item filename, f
8731 Set the filter bitmap file, which can be any image format supported by
8732 libavformat. The width and height of the image file must match those of the
8733 video stream being processed.
8734 @end table
8735
8736 Pixels in the provided bitmap image with a value of zero are not
8737 considered part of the logo, non-zero pixels are considered part of
8738 the logo. If you use white (255) for the logo and black (0) for the
8739 rest, you will be safe. For making the filter bitmap, it is
8740 recommended to take a screen capture of a black frame with the logo
8741 visible, and then using a threshold filter followed by the erode
8742 filter once or twice.
8743
8744 If needed, little splotches can be fixed manually. Remember that if
8745 logo pixels are not covered, the filter quality will be much
8746 reduced. Marking too many pixels as part of the logo does not hurt as
8747 much, but it will increase the amount of blurring needed to cover over
8748 the image and will destroy more information than necessary, and extra
8749 pixels will slow things down on a large logo.
8750
8751 @section repeatfields
8752
8753 This filter uses the repeat_field flag from the Video ES headers and hard repeats
8754 fields based on its value.
8755
8756 @section reverse, areverse
8757
8758 Reverse a clip.
8759
8760 Warning: This filter requires memory to buffer the entire clip, so trimming
8761 is suggested.
8762
8763 @subsection Examples
8764
8765 @itemize
8766 @item
8767 Take the first 5 seconds of a clip, and reverse it.
8768 @example
8769 trim=end=5,reverse
8770 @end example
8771 @end itemize
8772
8773 @section rotate
8774
8775 Rotate video by an arbitrary angle expressed in radians.
8776
8777 The filter accepts the following options:
8778
8779 A description of the optional parameters follows.
8780 @table @option
8781 @item angle, a
8782 Set an expression for the angle by which to rotate the input video
8783 clockwise, expressed as a number of radians. A negative value will
8784 result in a counter-clockwise rotation. By default it is set to "0".
8785
8786 This expression is evaluated for each frame.
8787
8788 @item out_w, ow
8789 Set the output width expression, default value is "iw".
8790 This expression is evaluated just once during configuration.
8791
8792 @item out_h, oh
8793 Set the output height expression, default value is "ih".
8794 This expression is evaluated just once during configuration.
8795
8796 @item bilinear
8797 Enable bilinear interpolation if set to 1, a value of 0 disables
8798 it. Default value is 1.
8799
8800 @item fillcolor, c
8801 Set the color used to fill the output area not covered by the rotated
8802 image. For the general syntax of this option, check the "Color" section in the
8803 ffmpeg-utils manual. If the special value "none" is selected then no
8804 background is printed (useful for example if the background is never shown).
8805
8806 Default value is "black".
8807 @end table
8808
8809 The expressions for the angle and the output size can contain the
8810 following constants and functions:
8811
8812 @table @option
8813 @item n
8814 sequential number of the input frame, starting from 0. It is always NAN
8815 before the first frame is filtered.
8816
8817 @item t
8818 time in seconds of the input frame, it is set to 0 when the filter is
8819 configured. It is always NAN before the first frame is filtered.
8820
8821 @item hsub
8822 @item vsub
8823 horizontal and vertical chroma subsample values. For example for the
8824 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8825
8826 @item in_w, iw
8827 @item in_h, ih
8828 the input video width and height
8829
8830 @item out_w, ow
8831 @item out_h, oh
8832 the output width and height, that is the size of the padded area as
8833 specified by the @var{width} and @var{height} expressions
8834
8835 @item rotw(a)
8836 @item roth(a)
8837 the minimal width/height required for completely containing the input
8838 video rotated by @var{a} radians.
8839
8840 These are only available when computing the @option{out_w} and
8841 @option{out_h} expressions.
8842 @end table
8843
8844 @subsection Examples
8845
8846 @itemize
8847 @item
8848 Rotate the input by PI/6 radians clockwise:
8849 @example
8850 rotate=PI/6
8851 @end example
8852
8853 @item
8854 Rotate the input by PI/6 radians counter-clockwise:
8855 @example
8856 rotate=-PI/6
8857 @end example
8858
8859 @item
8860 Rotate the input by 45 degrees clockwise:
8861 @example
8862 rotate=45*PI/180
8863 @end example
8864
8865 @item
8866 Apply a constant rotation with period T, starting from an angle of PI/3:
8867 @example
8868 rotate=PI/3+2*PI*t/T
8869 @end example
8870
8871 @item
8872 Make the input video rotation oscillating with a period of T
8873 seconds and an amplitude of A radians:
8874 @example
8875 rotate=A*sin(2*PI/T*t)
8876 @end example
8877
8878 @item
8879 Rotate the video, output size is chosen so that the whole rotating
8880 input video is always completely contained in the output:
8881 @example
8882 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
8883 @end example
8884
8885 @item
8886 Rotate the video, reduce the output size so that no background is ever
8887 shown:
8888 @example
8889 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
8890 @end example
8891 @end itemize
8892
8893 @subsection Commands
8894
8895 The filter supports the following commands:
8896
8897 @table @option
8898 @item a, angle
8899 Set the angle expression.
8900 The command accepts the same syntax of the corresponding option.
8901
8902 If the specified expression is not valid, it is kept at its current
8903 value.
8904 @end table
8905
8906 @section sab
8907
8908 Apply Shape Adaptive Blur.
8909
8910 The filter accepts the following options:
8911
8912 @table @option
8913 @item luma_radius, lr
8914 Set luma blur filter strength, must be a value in range 0.1-4.0, default
8915 value is 1.0. A greater value will result in a more blurred image, and
8916 in slower processing.
8917
8918 @item luma_pre_filter_radius, lpfr
8919 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
8920 value is 1.0.
8921
8922 @item luma_strength, ls
8923 Set luma maximum difference between pixels to still be considered, must
8924 be a value in the 0.1-100.0 range, default value is 1.0.
8925
8926 @item chroma_radius, cr
8927 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
8928 greater value will result in a more blurred image, and in slower
8929 processing.
8930
8931 @item chroma_pre_filter_radius, cpfr
8932 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
8933
8934 @item chroma_strength, cs
8935 Set chroma maximum difference between pixels to still be considered,
8936 must be a value in the 0.1-100.0 range.
8937 @end table
8938
8939 Each chroma option value, if not explicitly specified, is set to the
8940 corresponding luma option value.
8941
8942 @anchor{scale}
8943 @section scale
8944
8945 Scale (resize) the input video, using the libswscale library.
8946
8947 The scale filter forces the output display aspect ratio to be the same
8948 of the input, by changing the output sample aspect ratio.
8949
8950 If the input image format is different from the format requested by
8951 the next filter, the scale filter will convert the input to the
8952 requested format.
8953
8954 @subsection Options
8955 The filter accepts the following options, or any of the options
8956 supported by the libswscale scaler.
8957
8958 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
8959 the complete list of scaler options.
8960
8961 @table @option
8962 @item width, w
8963 @item height, h
8964 Set the output video dimension expression. Default value is the input
8965 dimension.
8966
8967 If the value is 0, the input width is used for the output.
8968
8969 If one of the values is -1, the scale filter will use a value that
8970 maintains the aspect ratio of the input image, calculated from the
8971 other specified dimension. If both of them are -1, the input size is
8972 used
8973
8974 If one of the values is -n with n > 1, the scale filter will also use a value
8975 that maintains the aspect ratio of the input image, calculated from the other
8976 specified dimension. After that it will, however, make sure that the calculated
8977 dimension is divisible by n and adjust the value if necessary.
8978
8979 See below for the list of accepted constants for use in the dimension
8980 expression.
8981
8982 @item interl
8983 Set the interlacing mode. It accepts the following values:
8984
8985 @table @samp
8986 @item 1
8987 Force interlaced aware scaling.
8988
8989 @item 0
8990 Do not apply interlaced scaling.
8991
8992 @item -1
8993 Select interlaced aware scaling depending on whether the source frames
8994 are flagged as interlaced or not.
8995 @end table
8996
8997 Default value is @samp{0}.
8998
8999 @item flags
9000 Set libswscale scaling flags. See
9001 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9002 complete list of values. If not explicitly specified the filter applies
9003 the default flags.
9004
9005 @item size, s
9006 Set the video size. For the syntax of this option, check the
9007 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9008
9009 @item in_color_matrix
9010 @item out_color_matrix
9011 Set in/output YCbCr color space type.
9012
9013 This allows the autodetected value to be overridden as well as allows forcing
9014 a specific value used for the output and encoder.
9015
9016 If not specified, the color space type depends on the pixel format.
9017
9018 Possible values:
9019
9020 @table @samp
9021 @item auto
9022 Choose automatically.
9023
9024 @item bt709
9025 Format conforming to International Telecommunication Union (ITU)
9026 Recommendation BT.709.
9027
9028 @item fcc
9029 Set color space conforming to the United States Federal Communications
9030 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
9031
9032 @item bt601
9033 Set color space conforming to:
9034
9035 @itemize
9036 @item
9037 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
9038
9039 @item
9040 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
9041
9042 @item
9043 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
9044
9045 @end itemize
9046
9047 @item smpte240m
9048 Set color space conforming to SMPTE ST 240:1999.
9049 @end table
9050
9051 @item in_range
9052 @item out_range
9053 Set in/output YCbCr sample range.
9054
9055 This allows the autodetected value to be overridden as well as allows forcing
9056 a specific value used for the output and encoder. If not specified, the
9057 range depends on the pixel format. Possible values:
9058
9059 @table @samp
9060 @item auto
9061 Choose automatically.
9062
9063 @item jpeg/full/pc
9064 Set full range (0-255 in case of 8-bit luma).
9065
9066 @item mpeg/tv
9067 Set "MPEG" range (16-235 in case of 8-bit luma).
9068 @end table
9069
9070 @item force_original_aspect_ratio
9071 Enable decreasing or increasing output video width or height if necessary to
9072 keep the original aspect ratio. Possible values:
9073
9074 @table @samp
9075 @item disable
9076 Scale the video as specified and disable this feature.
9077
9078 @item decrease
9079 The output video dimensions will automatically be decreased if needed.
9080
9081 @item increase
9082 The output video dimensions will automatically be increased if needed.
9083
9084 @end table
9085
9086 One useful instance of this option is that when you know a specific device's
9087 maximum allowed resolution, you can use this to limit the output video to
9088 that, while retaining the aspect ratio. For example, device A allows
9089 1280x720 playback, and your video is 1920x800. Using this option (set it to
9090 decrease) and specifying 1280x720 to the command line makes the output
9091 1280x533.
9092
9093 Please note that this is a different thing than specifying -1 for @option{w}
9094 or @option{h}, you still need to specify the output resolution for this option
9095 to work.
9096
9097 @end table
9098
9099 The values of the @option{w} and @option{h} options are expressions
9100 containing the following constants:
9101
9102 @table @var
9103 @item in_w
9104 @item in_h
9105 The input width and height
9106
9107 @item iw
9108 @item ih
9109 These are the same as @var{in_w} and @var{in_h}.
9110
9111 @item out_w
9112 @item out_h
9113 The output (scaled) width and height
9114
9115 @item ow
9116 @item oh
9117 These are the same as @var{out_w} and @var{out_h}
9118
9119 @item a
9120 The same as @var{iw} / @var{ih}
9121
9122 @item sar
9123 input sample aspect ratio
9124
9125 @item dar
9126 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
9127
9128 @item hsub
9129 @item vsub
9130 horizontal and vertical input chroma subsample values. For example for the
9131 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9132
9133 @item ohsub
9134 @item ovsub
9135 horizontal and vertical output chroma subsample values. For example for the
9136 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9137 @end table
9138
9139 @subsection Examples
9140
9141 @itemize
9142 @item
9143 Scale the input video to a size of 200x100
9144 @example
9145 scale=w=200:h=100
9146 @end example
9147
9148 This is equivalent to:
9149 @example
9150 scale=200:100
9151 @end example
9152
9153 or:
9154 @example
9155 scale=200x100
9156 @end example
9157
9158 @item
9159 Specify a size abbreviation for the output size:
9160 @example
9161 scale=qcif
9162 @end example
9163
9164 which can also be written as:
9165 @example
9166 scale=size=qcif
9167 @end example
9168
9169 @item
9170 Scale the input to 2x:
9171 @example
9172 scale=w=2*iw:h=2*ih
9173 @end example
9174
9175 @item
9176 The above is the same as:
9177 @example
9178 scale=2*in_w:2*in_h
9179 @end example
9180
9181 @item
9182 Scale the input to 2x with forced interlaced scaling:
9183 @example
9184 scale=2*iw:2*ih:interl=1
9185 @end example
9186
9187 @item
9188 Scale the input to half size:
9189 @example
9190 scale=w=iw/2:h=ih/2
9191 @end example
9192
9193 @item
9194 Increase the width, and set the height to the same size:
9195 @example
9196 scale=3/2*iw:ow
9197 @end example
9198
9199 @item
9200 Seek Greek harmony:
9201 @example
9202 scale=iw:1/PHI*iw
9203 scale=ih*PHI:ih
9204 @end example
9205
9206 @item
9207 Increase the height, and set the width to 3/2 of the height:
9208 @example
9209 scale=w=3/2*oh:h=3/5*ih
9210 @end example
9211
9212 @item
9213 Increase the size, making the size a multiple of the chroma
9214 subsample values:
9215 @example
9216 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
9217 @end example
9218
9219 @item
9220 Increase the width to a maximum of 500 pixels,
9221 keeping the same aspect ratio as the input:
9222 @example
9223 scale=w='min(500\, iw*3/2):h=-1'
9224 @end example
9225 @end itemize
9226
9227 @subsection Commands
9228
9229 This filter supports the following commands:
9230 @table @option
9231 @item width, w
9232 @item height, h
9233 Set the output video dimension expression.
9234 The command accepts the same syntax of the corresponding option.
9235
9236 If the specified expression is not valid, it is kept at its current
9237 value.
9238 @end table
9239
9240 @section scale2ref
9241
9242 Scale (resize) the input video, based on a reference video.
9243
9244 See the scale filter for available options, scale2ref supports the same but
9245 uses the reference video instead of the main input as basis.
9246
9247 @subsection Examples
9248
9249 @itemize
9250 @item
9251 Scale a subtitle stream to match the main video in size before overlaying
9252 @example
9253 'scale2ref[b][a];[a][b]overlay'
9254 @end example
9255 @end itemize
9256
9257 @section separatefields
9258
9259 The @code{separatefields} takes a frame-based video input and splits
9260 each frame into its components fields, producing a new half height clip
9261 with twice the frame rate and twice the frame count.
9262
9263 This filter use field-dominance information in frame to decide which
9264 of each pair of fields to place first in the output.
9265 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
9266
9267 @section setdar, setsar
9268
9269 The @code{setdar} filter sets the Display Aspect Ratio for the filter
9270 output video.
9271
9272 This is done by changing the specified Sample (aka Pixel) Aspect
9273 Ratio, according to the following equation:
9274 @example
9275 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
9276 @end example
9277
9278 Keep in mind that the @code{setdar} filter does not modify the pixel
9279 dimensions of the video frame. Also, the display aspect ratio set by
9280 this filter may be changed by later filters in the filterchain,
9281 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
9282 applied.
9283
9284 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
9285 the filter output video.
9286
9287 Note that as a consequence of the application of this filter, the
9288 output display aspect ratio will change according to the equation
9289 above.
9290
9291 Keep in mind that the sample aspect ratio set by the @code{setsar}
9292 filter may be changed by later filters in the filterchain, e.g. if
9293 another "setsar" or a "setdar" filter is applied.
9294
9295 It accepts the following parameters:
9296
9297 @table @option
9298 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
9299 Set the aspect ratio used by the filter.
9300
9301 The parameter can be a floating point number string, an expression, or
9302 a string of the form @var{num}:@var{den}, where @var{num} and
9303 @var{den} are the numerator and denominator of the aspect ratio. If
9304 the parameter is not specified, it is assumed the value "0".
9305 In case the form "@var{num}:@var{den}" is used, the @code{:} character
9306 should be escaped.
9307
9308 @item max
9309 Set the maximum integer value to use for expressing numerator and
9310 denominator when reducing the expressed aspect ratio to a rational.
9311 Default value is @code{100}.
9312
9313 @end table
9314
9315 The parameter @var{sar} is an expression containing
9316 the following constants:
9317
9318 @table @option
9319 @item E, PI, PHI
9320 These are approximated values for the mathematical constants e
9321 (Euler's number), pi (Greek pi), and phi (the golden ratio).
9322
9323 @item w, h
9324 The input width and height.
9325
9326 @item a
9327 These are the same as @var{w} / @var{h}.
9328
9329 @item sar
9330 The input sample aspect ratio.
9331
9332 @item dar
9333 The input display aspect ratio. It is the same as
9334 (@var{w} / @var{h}) * @var{sar}.
9335
9336 @item hsub, vsub
9337 Horizontal and vertical chroma subsample values. For example, for the
9338 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9339 @end table
9340
9341 @subsection Examples
9342
9343 @itemize
9344
9345 @item
9346 To change the display aspect ratio to 16:9, specify one of the following:
9347 @example
9348 setdar=dar=1.77777
9349 setdar=dar=16/9
9350 setdar=dar=1.77777
9351 @end example
9352
9353 @item
9354 To change the sample aspect ratio to 10:11, specify:
9355 @example
9356 setsar=sar=10/11
9357 @end example
9358
9359 @item
9360 To set a display aspect ratio of 16:9, and specify a maximum integer value of
9361 1000 in the aspect ratio reduction, use the command:
9362 @example
9363 setdar=ratio=16/9:max=1000
9364 @end example
9365
9366 @end itemize
9367
9368 @anchor{setfield}
9369 @section setfield
9370
9371 Force field for the output video frame.
9372
9373 The @code{setfield} filter marks the interlace type field for the
9374 output frames. It does not change the input frame, but only sets the
9375 corresponding property, which affects how the frame is treated by
9376 following filters (e.g. @code{fieldorder} or @code{yadif}).
9377
9378 The filter accepts the following options:
9379
9380 @table @option
9381
9382 @item mode
9383 Available values are:
9384
9385 @table @samp
9386 @item auto
9387 Keep the same field property.
9388
9389 @item bff
9390 Mark the frame as bottom-field-first.
9391
9392 @item tff
9393 Mark the frame as top-field-first.
9394
9395 @item prog
9396 Mark the frame as progressive.
9397 @end table
9398 @end table
9399
9400 @section showinfo
9401
9402 Show a line containing various information for each input video frame.
9403 The input video is not modified.
9404
9405 The shown line contains a sequence of key/value pairs of the form
9406 @var{key}:@var{value}.
9407
9408 The following values are shown in the output:
9409
9410 @table @option
9411 @item n
9412 The (sequential) number of the input frame, starting from 0.
9413
9414 @item pts
9415 The Presentation TimeStamp of the input frame, expressed as a number of
9416 time base units. The time base unit depends on the filter input pad.
9417
9418 @item pts_time
9419 The Presentation TimeStamp of the input frame, expressed as a number of
9420 seconds.
9421
9422 @item pos
9423 The position of the frame in the input stream, or -1 if this information is
9424 unavailable and/or meaningless (for example in case of synthetic video).
9425
9426 @item fmt
9427 The pixel format name.
9428
9429 @item sar
9430 The sample aspect ratio of the input frame, expressed in the form
9431 @var{num}/@var{den}.
9432
9433 @item s
9434 The size of the input frame. For the syntax of this option, check the
9435 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9436
9437 @item i
9438 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
9439 for bottom field first).
9440
9441 @item iskey
9442 This is 1 if the frame is a key frame, 0 otherwise.
9443
9444 @item type
9445 The picture type of the input frame ("I" for an I-frame, "P" for a
9446 P-frame, "B" for a B-frame, or "?" for an unknown type).
9447 Also refer to the documentation of the @code{AVPictureType} enum and of
9448 the @code{av_get_picture_type_char} function defined in
9449 @file{libavutil/avutil.h}.
9450
9451 @item checksum
9452 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
9453
9454 @item plane_checksum
9455 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
9456 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
9457 @end table
9458
9459 @section showpalette
9460
9461 Displays the 256 colors palette of each frame. This filter is only relevant for
9462 @var{pal8} pixel format frames.
9463
9464 It accepts the following option:
9465
9466 @table @option
9467 @item s
9468 Set the size of the box used to represent one palette color entry. Default is
9469 @code{30} (for a @code{30x30} pixel box).
9470 @end table
9471
9472 @section shuffleplanes
9473
9474 Reorder and/or duplicate video planes.
9475
9476 It accepts the following parameters:
9477
9478 @table @option
9479
9480 @item map0
9481 The index of the input plane to be used as the first output plane.
9482
9483 @item map1
9484 The index of the input plane to be used as the second output plane.
9485
9486 @item map2
9487 The index of the input plane to be used as the third output plane.
9488
9489 @item map3
9490 The index of the input plane to be used as the fourth output plane.
9491
9492 @end table
9493
9494 The first plane has the index 0. The default is to keep the input unchanged.
9495
9496 Swap the second and third planes of the input:
9497 @example
9498 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
9499 @end example
9500
9501 @anchor{signalstats}
9502 @section signalstats
9503 Evaluate various visual metrics that assist in determining issues associated
9504 with the digitization of analog video media.
9505
9506 By default the filter will log these metadata values:
9507
9508 @table @option
9509 @item YMIN
9510 Display the minimal Y value contained within the input frame. Expressed in
9511 range of [0-255].
9512
9513 @item YLOW
9514 Display the Y value at the 10% percentile within the input frame. Expressed in
9515 range of [0-255].
9516
9517 @item YAVG
9518 Display the average Y value within the input frame. Expressed in range of
9519 [0-255].
9520
9521 @item YHIGH
9522 Display the Y value at the 90% percentile within the input frame. Expressed in
9523 range of [0-255].
9524
9525 @item YMAX
9526 Display the maximum Y value contained within the input frame. Expressed in
9527 range of [0-255].
9528
9529 @item UMIN
9530 Display the minimal U value contained within the input frame. Expressed in
9531 range of [0-255].
9532
9533 @item ULOW
9534 Display the U value at the 10% percentile within the input frame. Expressed in
9535 range of [0-255].
9536
9537 @item UAVG
9538 Display the average U value within the input frame. Expressed in range of
9539 [0-255].
9540
9541 @item UHIGH
9542 Display the U value at the 90% percentile within the input frame. Expressed in
9543 range of [0-255].
9544
9545 @item UMAX
9546 Display the maximum U value contained within the input frame. Expressed in
9547 range of [0-255].
9548
9549 @item VMIN
9550 Display the minimal V value contained within the input frame. Expressed in
9551 range of [0-255].
9552
9553 @item VLOW
9554 Display the V value at the 10% percentile within the input frame. Expressed in
9555 range of [0-255].
9556
9557 @item VAVG
9558 Display the average V value within the input frame. Expressed in range of
9559 [0-255].
9560
9561 @item VHIGH
9562 Display the V value at the 90% percentile within the input frame. Expressed in
9563 range of [0-255].
9564
9565 @item VMAX
9566 Display the maximum V value contained within the input frame. Expressed in
9567 range of [0-255].
9568
9569 @item SATMIN
9570 Display the minimal saturation value contained within the input frame.
9571 Expressed in range of [0-~181.02].
9572
9573 @item SATLOW
9574 Display the saturation value at the 10% percentile within the input frame.
9575 Expressed in range of [0-~181.02].
9576
9577 @item SATAVG
9578 Display the average saturation value within the input frame. Expressed in range
9579 of [0-~181.02].
9580
9581 @item SATHIGH
9582 Display the saturation value at the 90% percentile within the input frame.
9583 Expressed in range of [0-~181.02].
9584
9585 @item SATMAX
9586 Display the maximum saturation value contained within the input frame.
9587 Expressed in range of [0-~181.02].
9588
9589 @item HUEMED
9590 Display the median value for hue within the input frame. Expressed in range of
9591 [0-360].
9592
9593 @item HUEAVG
9594 Display the average value for hue within the input frame. Expressed in range of
9595 [0-360].
9596
9597 @item YDIF
9598 Display the average of sample value difference between all values of the Y
9599 plane in the current frame and corresponding values of the previous input frame.
9600 Expressed in range of [0-255].
9601
9602 @item UDIF
9603 Display the average of sample value difference between all values of the U
9604 plane in the current frame and corresponding values of the previous input frame.
9605 Expressed in range of [0-255].
9606
9607 @item VDIF
9608 Display the average of sample value difference between all values of the V
9609 plane in the current frame and corresponding values of the previous input frame.
9610 Expressed in range of [0-255].
9611 @end table
9612
9613 The filter accepts the following options:
9614
9615 @table @option
9616 @item stat
9617 @item out
9618
9619 @option{stat} specify an additional form of image analysis.
9620 @option{out} output video with the specified type of pixel highlighted.
9621
9622 Both options accept the following values:
9623
9624 @table @samp
9625 @item tout
9626 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
9627 unlike the neighboring pixels of the same field. Examples of temporal outliers
9628 include the results of video dropouts, head clogs, or tape tracking issues.
9629
9630 @item vrep
9631 Identify @var{vertical line repetition}. Vertical line repetition includes
9632 similar rows of pixels within a frame. In born-digital video vertical line
9633 repetition is common, but this pattern is uncommon in video digitized from an
9634 analog source. When it occurs in video that results from the digitization of an
9635 analog source it can indicate concealment from a dropout compensator.
9636
9637 @item brng
9638 Identify pixels that fall outside of legal broadcast range.
9639 @end table
9640
9641 @item color, c
9642 Set the highlight color for the @option{out} option. The default color is
9643 yellow.
9644 @end table
9645
9646 @subsection Examples
9647
9648 @itemize
9649 @item
9650 Output data of various video metrics:
9651 @example
9652 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
9653 @end example
9654
9655 @item
9656 Output specific data about the minimum and maximum values of the Y plane per frame:
9657 @example
9658 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
9659 @end example
9660
9661 @item
9662 Playback video while highlighting pixels that are outside of broadcast range in red.
9663 @example
9664 ffplay example.mov -vf signalstats="out=brng:color=red"
9665 @end example
9666
9667 @item
9668 Playback video with signalstats metadata drawn over the frame.
9669 @example
9670 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
9671 @end example
9672
9673 The contents of signalstat_drawtext.txt used in the command are:
9674 @example
9675 time %@{pts:hms@}
9676 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
9677 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
9678 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
9679 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
9680
9681 @end example
9682 @end itemize
9683
9684 @anchor{smartblur}
9685 @section smartblur
9686
9687 Blur the input video without impacting the outlines.
9688
9689 It accepts the following options:
9690
9691 @table @option
9692 @item luma_radius, lr
9693 Set the luma radius. The option value must be a float number in
9694 the range [0.1,5.0] that specifies the variance of the gaussian filter
9695 used to blur the image (slower if larger). Default value is 1.0.
9696
9697 @item luma_strength, ls
9698 Set the luma strength. The option value must be a float number
9699 in the range [-1.0,1.0] that configures the blurring. A value included
9700 in [0.0,1.0] will blur the image whereas a value included in
9701 [-1.0,0.0] will sharpen the image. Default value is 1.0.
9702
9703 @item luma_threshold, lt
9704 Set the luma threshold used as a coefficient to determine
9705 whether a pixel should be blurred or not. The option value must be an
9706 integer in the range [-30,30]. A value of 0 will filter all the image,
9707 a value included in [0,30] will filter flat areas and a value included
9708 in [-30,0] will filter edges. Default value is 0.
9709
9710 @item chroma_radius, cr
9711 Set the chroma radius. The option value must be a float number in
9712 the range [0.1,5.0] that specifies the variance of the gaussian filter
9713 used to blur the image (slower if larger). Default value is 1.0.
9714
9715 @item chroma_strength, cs
9716 Set the chroma strength. The option value must be a float number
9717 in the range [-1.0,1.0] that configures the blurring. A value included
9718 in [0.0,1.0] will blur the image whereas a value included in
9719 [-1.0,0.0] will sharpen the image. Default value is 1.0.
9720
9721 @item chroma_threshold, ct
9722 Set the chroma threshold used as a coefficient to determine
9723 whether a pixel should be blurred or not. The option value must be an
9724 integer in the range [-30,30]. A value of 0 will filter all the image,
9725 a value included in [0,30] will filter flat areas and a value included
9726 in [-30,0] will filter edges. Default value is 0.
9727 @end table
9728
9729 If a chroma option is not explicitly set, the corresponding luma value
9730 is set.
9731
9732 @section ssim
9733
9734 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
9735
9736 This filter takes in input two input videos, the first input is
9737 considered the "main" source and is passed unchanged to the
9738 output. The second input is used as a "reference" video for computing
9739 the SSIM.
9740
9741 Both video inputs must have the same resolution and pixel format for
9742 this filter to work correctly. Also it assumes that both inputs
9743 have the same number of frames, which are compared one by one.
9744
9745 The filter stores the calculated SSIM of each frame.
9746
9747 The description of the accepted parameters follows.
9748
9749 @table @option
9750 @item stats_file, f
9751 If specified the filter will use the named file to save the SSIM of
9752 each individual frame.
9753 @end table
9754
9755 The file printed if @var{stats_file} is selected, contains a sequence of
9756 key/value pairs of the form @var{key}:@var{value} for each compared
9757 couple of frames.
9758
9759 A description of each shown parameter follows:
9760
9761 @table @option
9762 @item n
9763 sequential number of the input frame, starting from 1
9764
9765 @item Y, U, V, R, G, B
9766 SSIM of the compared frames for the component specified by the suffix.
9767
9768 @item All
9769 SSIM of the compared frames for the whole frame.
9770
9771 @item dB
9772 Same as above but in dB representation.
9773 @end table
9774
9775 For example:
9776 @example
9777 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
9778 [main][ref] ssim="stats_file=stats.log" [out]
9779 @end example
9780
9781 On this example the input file being processed is compared with the
9782 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
9783 is stored in @file{stats.log}.
9784
9785 Another example with both psnr and ssim at same time:
9786 @example
9787 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
9788 @end example
9789
9790 @section stereo3d
9791
9792 Convert between different stereoscopic image formats.
9793
9794 The filters accept the following options:
9795
9796 @table @option
9797 @item in
9798 Set stereoscopic image format of input.
9799
9800 Available values for input image formats are:
9801 @table @samp
9802 @item sbsl
9803 side by side parallel (left eye left, right eye right)
9804
9805 @item sbsr
9806 side by side crosseye (right eye left, left eye right)
9807
9808 @item sbs2l
9809 side by side parallel with half width resolution
9810 (left eye left, right eye right)
9811
9812 @item sbs2r
9813 side by side crosseye with half width resolution
9814 (right eye left, left eye right)
9815
9816 @item abl
9817 above-below (left eye above, right eye below)
9818
9819 @item abr
9820 above-below (right eye above, left eye below)
9821
9822 @item ab2l
9823 above-below with half height resolution
9824 (left eye above, right eye below)
9825
9826 @item ab2r
9827 above-below with half height resolution
9828 (right eye above, left eye below)
9829
9830 @item al
9831 alternating frames (left eye first, right eye second)
9832
9833 @item ar
9834 alternating frames (right eye first, left eye second)
9835
9836 @item irl
9837 interleaved rows (left eye has top row, right eye starts on next row)
9838
9839 @item irr
9840 interleaved rows (right eye has top row, left eye starts on next row)
9841
9842 Default value is @samp{sbsl}.
9843 @end table
9844
9845 @item out
9846 Set stereoscopic image format of output.
9847
9848 Available values for output image formats are all the input formats as well as:
9849 @table @samp
9850 @item arbg
9851 anaglyph red/blue gray
9852 (red filter on left eye, blue filter on right eye)
9853
9854 @item argg
9855 anaglyph red/green gray
9856 (red filter on left eye, green filter on right eye)
9857
9858 @item arcg
9859 anaglyph red/cyan gray
9860 (red filter on left eye, cyan filter on right eye)
9861
9862 @item arch
9863 anaglyph red/cyan half colored
9864 (red filter on left eye, cyan filter on right eye)
9865
9866 @item arcc
9867 anaglyph red/cyan color
9868 (red filter on left eye, cyan filter on right eye)
9869
9870 @item arcd
9871 anaglyph red/cyan color optimized with the least squares projection of dubois
9872 (red filter on left eye, cyan filter on right eye)
9873
9874 @item agmg
9875 anaglyph green/magenta gray
9876 (green filter on left eye, magenta filter on right eye)
9877
9878 @item agmh
9879 anaglyph green/magenta half colored
9880 (green filter on left eye, magenta filter on right eye)
9881
9882 @item agmc
9883 anaglyph green/magenta colored
9884 (green filter on left eye, magenta filter on right eye)
9885
9886 @item agmd
9887 anaglyph green/magenta color optimized with the least squares projection of dubois
9888 (green filter on left eye, magenta filter on right eye)
9889
9890 @item aybg
9891 anaglyph yellow/blue gray
9892 (yellow filter on left eye, blue filter on right eye)
9893
9894 @item aybh
9895 anaglyph yellow/blue half colored
9896 (yellow filter on left eye, blue filter on right eye)
9897
9898 @item aybc
9899 anaglyph yellow/blue colored
9900 (yellow filter on left eye, blue filter on right eye)
9901
9902 @item aybd
9903 anaglyph yellow/blue color optimized with the least squares projection of dubois
9904 (yellow filter on left eye, blue filter on right eye)
9905
9906 @item ml
9907 mono output (left eye only)
9908
9909 @item mr
9910 mono output (right eye only)
9911
9912 @item chl
9913 checkerboard, left eye first
9914
9915 @item chr
9916 checkerboard, right eye first
9917
9918 @item icl
9919 interleaved columns, left eye first
9920
9921 @item icr
9922 interleaved columns, right eye first
9923 @end table
9924
9925 Default value is @samp{arcd}.
9926 @end table
9927
9928 @subsection Examples
9929
9930 @itemize
9931 @item
9932 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
9933 @example
9934 stereo3d=sbsl:aybd
9935 @end example
9936
9937 @item
9938 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
9939 @example
9940 stereo3d=abl:sbsr
9941 @end example
9942 @end itemize
9943
9944 @anchor{spp}
9945 @section spp
9946
9947 Apply a simple postprocessing filter that compresses and decompresses the image
9948 at several (or - in the case of @option{quality} level @code{6} - all) shifts
9949 and average the results.
9950
9951 The filter accepts the following options:
9952
9953 @table @option
9954 @item quality
9955 Set quality. This option defines the number of levels for averaging. It accepts
9956 an integer in the range 0-6. If set to @code{0}, the filter will have no
9957 effect. A value of @code{6} means the higher quality. For each increment of
9958 that value the speed drops by a factor of approximately 2.  Default value is
9959 @code{3}.
9960
9961 @item qp
9962 Force a constant quantization parameter. If not set, the filter will use the QP
9963 from the video stream (if available).
9964
9965 @item mode
9966 Set thresholding mode. Available modes are:
9967
9968 @table @samp
9969 @item hard
9970 Set hard thresholding (default).
9971 @item soft
9972 Set soft thresholding (better de-ringing effect, but likely blurrier).
9973 @end table
9974
9975 @item use_bframe_qp
9976 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
9977 option may cause flicker since the B-Frames have often larger QP. Default is
9978 @code{0} (not enabled).
9979 @end table
9980
9981 @anchor{subtitles}
9982 @section subtitles
9983
9984 Draw subtitles on top of input video using the libass library.
9985
9986 To enable compilation of this filter you need to configure FFmpeg with
9987 @code{--enable-libass}. This filter also requires a build with libavcodec and
9988 libavformat to convert the passed subtitles file to ASS (Advanced Substation
9989 Alpha) subtitles format.
9990
9991 The filter accepts the following options:
9992
9993 @table @option
9994 @item filename, f
9995 Set the filename of the subtitle file to read. It must be specified.
9996
9997 @item original_size
9998 Specify the size of the original video, the video for which the ASS file
9999 was composed. For the syntax of this option, check the
10000 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10001 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
10002 correctly scale the fonts if the aspect ratio has been changed.
10003
10004 @item fontsdir
10005 Set a directory path containing fonts that can be used by the filter.
10006 These fonts will be used in addition to whatever the font provider uses.
10007
10008 @item charenc
10009 Set subtitles input character encoding. @code{subtitles} filter only. Only
10010 useful if not UTF-8.
10011
10012 @item stream_index, si
10013 Set subtitles stream index. @code{subtitles} filter only.
10014
10015 @item force_style
10016 Override default style or script info parameters of the subtitles. It accepts a
10017 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
10018 @end table
10019
10020 If the first key is not specified, it is assumed that the first value
10021 specifies the @option{filename}.
10022
10023 For example, to render the file @file{sub.srt} on top of the input
10024 video, use the command:
10025 @example
10026 subtitles=sub.srt
10027 @end example
10028
10029 which is equivalent to:
10030 @example
10031 subtitles=filename=sub.srt
10032 @end example
10033
10034 To render the default subtitles stream from file @file{video.mkv}, use:
10035 @example
10036 subtitles=video.mkv
10037 @end example
10038
10039 To render the second subtitles stream from that file, use:
10040 @example
10041 subtitles=video.mkv:si=1
10042 @end example
10043
10044 To make the subtitles stream from @file{sub.srt} appear in transparent green
10045 @code{DejaVu Serif}, use:
10046 @example
10047 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
10048 @end example
10049
10050 @section super2xsai
10051
10052 Scale the input by 2x and smooth using the Super2xSaI (Scale and
10053 Interpolate) pixel art scaling algorithm.
10054
10055 Useful for enlarging pixel art images without reducing sharpness.
10056
10057 @section swapuv
10058 Swap U & V plane.
10059
10060 @section telecine
10061
10062 Apply telecine process to the video.
10063
10064 This filter accepts the following options:
10065
10066 @table @option
10067 @item first_field
10068 @table @samp
10069 @item top, t
10070 top field first
10071 @item bottom, b
10072 bottom field first
10073 The default value is @code{top}.
10074 @end table
10075
10076 @item pattern
10077 A string of numbers representing the pulldown pattern you wish to apply.
10078 The default value is @code{23}.
10079 @end table
10080
10081 @example
10082 Some typical patterns:
10083
10084 NTSC output (30i):
10085 27.5p: 32222
10086 24p: 23 (classic)
10087 24p: 2332 (preferred)
10088 20p: 33
10089 18p: 334
10090 16p: 3444
10091
10092 PAL output (25i):
10093 27.5p: 12222
10094 24p: 222222222223 ("Euro pulldown")
10095 16.67p: 33
10096 16p: 33333334
10097 @end example
10098
10099 @section thumbnail
10100 Select the most representative frame in a given sequence of consecutive frames.
10101
10102 The filter accepts the following options:
10103
10104 @table @option
10105 @item n
10106 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
10107 will pick one of them, and then handle the next batch of @var{n} frames until
10108 the end. Default is @code{100}.
10109 @end table
10110
10111 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
10112 value will result in a higher memory usage, so a high value is not recommended.
10113
10114 @subsection Examples
10115
10116 @itemize
10117 @item
10118 Extract one picture each 50 frames:
10119 @example
10120 thumbnail=50
10121 @end example
10122
10123 @item
10124 Complete example of a thumbnail creation with @command{ffmpeg}:
10125 @example
10126 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
10127 @end example
10128 @end itemize
10129
10130 @section tile
10131
10132 Tile several successive frames together.
10133
10134 The filter accepts the following options:
10135
10136 @table @option
10137
10138 @item layout
10139 Set the grid size (i.e. the number of lines and columns). For the syntax of
10140 this option, check the
10141 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10142
10143 @item nb_frames
10144 Set the maximum number of frames to render in the given area. It must be less
10145 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
10146 the area will be used.
10147
10148 @item margin
10149 Set the outer border margin in pixels.
10150
10151 @item padding
10152 Set the inner border thickness (i.e. the number of pixels between frames). For
10153 more advanced padding options (such as having different values for the edges),
10154 refer to the pad video filter.
10155
10156 @item color
10157 Specify the color of the unused area. For the syntax of this option, check the
10158 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
10159 is "black".
10160 @end table
10161
10162 @subsection Examples
10163
10164 @itemize
10165 @item
10166 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
10167 @example
10168 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
10169 @end example
10170 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
10171 duplicating each output frame to accommodate the originally detected frame
10172 rate.
10173
10174 @item
10175 Display @code{5} pictures in an area of @code{3x2} frames,
10176 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
10177 mixed flat and named options:
10178 @example
10179 tile=3x2:nb_frames=5:padding=7:margin=2
10180 @end example
10181 @end itemize
10182
10183 @section tinterlace
10184
10185 Perform various types of temporal field interlacing.
10186
10187 Frames are counted starting from 1, so the first input frame is
10188 considered odd.
10189
10190 The filter accepts the following options:
10191
10192 @table @option
10193
10194 @item mode
10195 Specify the mode of the interlacing. This option can also be specified
10196 as a value alone. See below for a list of values for this option.
10197
10198 Available values are:
10199
10200 @table @samp
10201 @item merge, 0
10202 Move odd frames into the upper field, even into the lower field,
10203 generating a double height frame at half frame rate.
10204 @example
10205  ------> time
10206 Input:
10207 Frame 1         Frame 2         Frame 3         Frame 4
10208
10209 11111           22222           33333           44444
10210 11111           22222           33333           44444
10211 11111           22222           33333           44444
10212 11111           22222           33333           44444
10213
10214 Output:
10215 11111                           33333
10216 22222                           44444
10217 11111                           33333
10218 22222                           44444
10219 11111                           33333
10220 22222                           44444
10221 11111                           33333
10222 22222                           44444
10223 @end example
10224
10225 @item drop_odd, 1
10226 Only output even frames, odd frames are dropped, generating a frame with
10227 unchanged height at half frame rate.
10228
10229 @example
10230  ------> time
10231 Input:
10232 Frame 1         Frame 2         Frame 3         Frame 4
10233
10234 11111           22222           33333           44444
10235 11111           22222           33333           44444
10236 11111           22222           33333           44444
10237 11111           22222           33333           44444
10238
10239 Output:
10240                 22222                           44444
10241                 22222                           44444
10242                 22222                           44444
10243                 22222                           44444
10244 @end example
10245
10246 @item drop_even, 2
10247 Only output odd frames, even frames are dropped, generating a frame with
10248 unchanged height at half frame rate.
10249
10250 @example
10251  ------> time
10252 Input:
10253 Frame 1         Frame 2         Frame 3         Frame 4
10254
10255 11111           22222           33333           44444
10256 11111           22222           33333           44444
10257 11111           22222           33333           44444
10258 11111           22222           33333           44444
10259
10260 Output:
10261 11111                           33333
10262 11111                           33333
10263 11111                           33333
10264 11111                           33333
10265 @end example
10266
10267 @item pad, 3
10268 Expand each frame to full height, but pad alternate lines with black,
10269 generating a frame with double height at the same input frame rate.
10270
10271 @example
10272  ------> time
10273 Input:
10274 Frame 1         Frame 2         Frame 3         Frame 4
10275
10276 11111           22222           33333           44444
10277 11111           22222           33333           44444
10278 11111           22222           33333           44444
10279 11111           22222           33333           44444
10280
10281 Output:
10282 11111           .....           33333           .....
10283 .....           22222           .....           44444
10284 11111           .....           33333           .....
10285 .....           22222           .....           44444
10286 11111           .....           33333           .....
10287 .....           22222           .....           44444
10288 11111           .....           33333           .....
10289 .....           22222           .....           44444
10290 @end example
10291
10292
10293 @item interleave_top, 4
10294 Interleave the upper field from odd frames with the lower field from
10295 even frames, generating a frame with unchanged height at half frame rate.
10296
10297 @example
10298  ------> time
10299 Input:
10300 Frame 1         Frame 2         Frame 3         Frame 4
10301
10302 11111<-         22222           33333<-         44444
10303 11111           22222<-         33333           44444<-
10304 11111<-         22222           33333<-         44444
10305 11111           22222<-         33333           44444<-
10306
10307 Output:
10308 11111                           33333
10309 22222                           44444
10310 11111                           33333
10311 22222                           44444
10312 @end example
10313
10314
10315 @item interleave_bottom, 5
10316 Interleave the lower field from odd frames with the upper field from
10317 even frames, generating a frame with unchanged height at half frame rate.
10318
10319 @example
10320  ------> time
10321 Input:
10322 Frame 1         Frame 2         Frame 3         Frame 4
10323
10324 11111           22222<-         33333           44444<-
10325 11111<-         22222           33333<-         44444
10326 11111           22222<-         33333           44444<-
10327 11111<-         22222           33333<-         44444
10328
10329 Output:
10330 22222                           44444
10331 11111                           33333
10332 22222                           44444
10333 11111                           33333
10334 @end example
10335
10336
10337 @item interlacex2, 6
10338 Double frame rate with unchanged height. Frames are inserted each
10339 containing the second temporal field from the previous input frame and
10340 the first temporal field from the next input frame. This mode relies on
10341 the top_field_first flag. Useful for interlaced video displays with no
10342 field synchronisation.
10343
10344 @example
10345  ------> time
10346 Input:
10347 Frame 1         Frame 2         Frame 3         Frame 4
10348
10349 11111           22222           33333           44444
10350  11111           22222           33333           44444
10351 11111           22222           33333           44444
10352  11111           22222           33333           44444
10353
10354 Output:
10355 11111   22222   22222   33333   33333   44444   44444
10356  11111   11111   22222   22222   33333   33333   44444
10357 11111   22222   22222   33333   33333   44444   44444
10358  11111   11111   22222   22222   33333   33333   44444
10359 @end example
10360
10361
10362 @end table
10363
10364 Numeric values are deprecated but are accepted for backward
10365 compatibility reasons.
10366
10367 Default mode is @code{merge}.
10368
10369 @item flags
10370 Specify flags influencing the filter process.
10371
10372 Available value for @var{flags} is:
10373
10374 @table @option
10375 @item low_pass_filter, vlfp
10376 Enable vertical low-pass filtering in the filter.
10377 Vertical low-pass filtering is required when creating an interlaced
10378 destination from a progressive source which contains high-frequency
10379 vertical detail. Filtering will reduce interlace 'twitter' and Moire
10380 patterning.
10381
10382 Vertical low-pass filtering can only be enabled for @option{mode}
10383 @var{interleave_top} and @var{interleave_bottom}.
10384
10385 @end table
10386 @end table
10387
10388 @section transpose
10389
10390 Transpose rows with columns in the input video and optionally flip it.
10391
10392 It accepts the following parameters:
10393
10394 @table @option
10395
10396 @item dir
10397 Specify the transposition direction.
10398
10399 Can assume the following values:
10400 @table @samp
10401 @item 0, 4, cclock_flip
10402 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
10403 @example
10404 L.R     L.l
10405 . . ->  . .
10406 l.r     R.r
10407 @end example
10408
10409 @item 1, 5, clock
10410 Rotate by 90 degrees clockwise, that is:
10411 @example
10412 L.R     l.L
10413 . . ->  . .
10414 l.r     r.R
10415 @end example
10416
10417 @item 2, 6, cclock
10418 Rotate by 90 degrees counterclockwise, that is:
10419 @example
10420 L.R     R.r
10421 . . ->  . .
10422 l.r     L.l
10423 @end example
10424
10425 @item 3, 7, clock_flip
10426 Rotate by 90 degrees clockwise and vertically flip, that is:
10427 @example
10428 L.R     r.R
10429 . . ->  . .
10430 l.r     l.L
10431 @end example
10432 @end table
10433
10434 For values between 4-7, the transposition is only done if the input
10435 video geometry is portrait and not landscape. These values are
10436 deprecated, the @code{passthrough} option should be used instead.
10437
10438 Numerical values are deprecated, and should be dropped in favor of
10439 symbolic constants.
10440
10441 @item passthrough
10442 Do not apply the transposition if the input geometry matches the one
10443 specified by the specified value. It accepts the following values:
10444 @table @samp
10445 @item none
10446 Always apply transposition.
10447 @item portrait
10448 Preserve portrait geometry (when @var{height} >= @var{width}).
10449 @item landscape
10450 Preserve landscape geometry (when @var{width} >= @var{height}).
10451 @end table
10452
10453 Default value is @code{none}.
10454 @end table
10455
10456 For example to rotate by 90 degrees clockwise and preserve portrait
10457 layout:
10458 @example
10459 transpose=dir=1:passthrough=portrait
10460 @end example
10461
10462 The command above can also be specified as:
10463 @example
10464 transpose=1:portrait
10465 @end example
10466
10467 @section trim
10468 Trim the input so that the output contains one continuous subpart of the input.
10469
10470 It accepts the following parameters:
10471 @table @option
10472 @item start
10473 Specify the time of the start of the kept section, i.e. the frame with the
10474 timestamp @var{start} will be the first frame in the output.
10475
10476 @item end
10477 Specify the time of the first frame that will be dropped, i.e. the frame
10478 immediately preceding the one with the timestamp @var{end} will be the last
10479 frame in the output.
10480
10481 @item start_pts
10482 This is the same as @var{start}, except this option sets the start timestamp
10483 in timebase units instead of seconds.
10484
10485 @item end_pts
10486 This is the same as @var{end}, except this option sets the end timestamp
10487 in timebase units instead of seconds.
10488
10489 @item duration
10490 The maximum duration of the output in seconds.
10491
10492 @item start_frame
10493 The number of the first frame that should be passed to the output.
10494
10495 @item end_frame
10496 The number of the first frame that should be dropped.
10497 @end table
10498
10499 @option{start}, @option{end}, and @option{duration} are expressed as time
10500 duration specifications; see
10501 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
10502 for the accepted syntax.
10503
10504 Note that the first two sets of the start/end options and the @option{duration}
10505 option look at the frame timestamp, while the _frame variants simply count the
10506 frames that pass through the filter. Also note that this filter does not modify
10507 the timestamps. If you wish for the output timestamps to start at zero, insert a
10508 setpts filter after the trim filter.
10509
10510 If multiple start or end options are set, this filter tries to be greedy and
10511 keep all the frames that match at least one of the specified constraints. To keep
10512 only the part that matches all the constraints at once, chain multiple trim
10513 filters.
10514
10515 The defaults are such that all the input is kept. So it is possible to set e.g.
10516 just the end values to keep everything before the specified time.
10517
10518 Examples:
10519 @itemize
10520 @item
10521 Drop everything except the second minute of input:
10522 @example
10523 ffmpeg -i INPUT -vf trim=60:120
10524 @end example
10525
10526 @item
10527 Keep only the first second:
10528 @example
10529 ffmpeg -i INPUT -vf trim=duration=1
10530 @end example
10531
10532 @end itemize
10533
10534
10535 @anchor{unsharp}
10536 @section unsharp
10537
10538 Sharpen or blur the input video.
10539
10540 It accepts the following parameters:
10541
10542 @table @option
10543 @item luma_msize_x, lx
10544 Set the luma matrix horizontal size. It must be an odd integer between
10545 3 and 63. The default value is 5.
10546
10547 @item luma_msize_y, ly
10548 Set the luma matrix vertical size. It must be an odd integer between 3
10549 and 63. The default value is 5.
10550
10551 @item luma_amount, la
10552 Set the luma effect strength. It must be a floating point number, reasonable
10553 values lay between -1.5 and 1.5.
10554
10555 Negative values will blur the input video, while positive values will
10556 sharpen it, a value of zero will disable the effect.
10557
10558 Default value is 1.0.
10559
10560 @item chroma_msize_x, cx
10561 Set the chroma matrix horizontal size. It must be an odd integer
10562 between 3 and 63. The default value is 5.
10563
10564 @item chroma_msize_y, cy
10565 Set the chroma matrix vertical size. It must be an odd integer
10566 between 3 and 63. The default value is 5.
10567
10568 @item chroma_amount, ca
10569 Set the chroma effect strength. It must be a floating point number, reasonable
10570 values lay between -1.5 and 1.5.
10571
10572 Negative values will blur the input video, while positive values will
10573 sharpen it, a value of zero will disable the effect.
10574
10575 Default value is 0.0.
10576
10577 @item opencl
10578 If set to 1, specify using OpenCL capabilities, only available if
10579 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
10580
10581 @end table
10582
10583 All parameters are optional and default to the equivalent of the
10584 string '5:5:1.0:5:5:0.0'.
10585
10586 @subsection Examples
10587
10588 @itemize
10589 @item
10590 Apply strong luma sharpen effect:
10591 @example
10592 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
10593 @end example
10594
10595 @item
10596 Apply a strong blur of both luma and chroma parameters:
10597 @example
10598 unsharp=7:7:-2:7:7:-2
10599 @end example
10600 @end itemize
10601
10602 @section uspp
10603
10604 Apply ultra slow/simple postprocessing filter that compresses and decompresses
10605 the image at several (or - in the case of @option{quality} level @code{8} - all)
10606 shifts and average the results.
10607
10608 The way this differs from the behavior of spp is that uspp actually encodes &
10609 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
10610 DCT similar to MJPEG.
10611
10612 The filter accepts the following options:
10613
10614 @table @option
10615 @item quality
10616 Set quality. This option defines the number of levels for averaging. It accepts
10617 an integer in the range 0-8. If set to @code{0}, the filter will have no
10618 effect. A value of @code{8} means the higher quality. For each increment of
10619 that value the speed drops by a factor of approximately 2.  Default value is
10620 @code{3}.
10621
10622 @item qp
10623 Force a constant quantization parameter. If not set, the filter will use the QP
10624 from the video stream (if available).
10625 @end table
10626
10627 @section vectorscope
10628
10629 Display 2 color component values in the two dimensional graph (which is called
10630 a vectorscope).
10631
10632 This filter accepts the following options:
10633
10634 @table @option
10635 @item mode, m
10636 Set vectorscope mode.
10637
10638 It accepts the following values:
10639 @table @samp
10640 @item gray
10641 Gray values are displayed on graph, higher brightness means more pixels have
10642 same component color value on location in graph. This is the default mode.
10643
10644 @item color
10645 Gray values are displayed on graph. Surrounding pixels values which are not
10646 present in video frame are drawn in gradient of 2 color components which are
10647 set by option @code{x} and @code{y}.
10648
10649 @item color2
10650 Actual color components values present in video frame are displayed on graph.
10651
10652 @item color3
10653 Similar as color2 but higher frequency of same values @code{x} and @code{y}
10654 on graph increases value of another color component, which is luminance by
10655 default values of @code{x} and @code{y}.
10656
10657 @item color4
10658 Actual colors present in video frame are displayed on graph. If two different
10659 colors map to same position on graph then color with higher value of component
10660 not present in graph is picked.
10661 @end table
10662
10663 @item x
10664 Set which color component will be represented on X-axis. Default is @code{1}.
10665
10666 @item y
10667 Set which color component will be represented on Y-axis. Default is @code{2}.
10668
10669 @item intensity, i
10670 Set intensity, used by modes: gray, color and color3 for increasing brightness
10671 of color component which represents frequency of (X, Y) location in graph.
10672
10673 @item envelope, e
10674 @table @samp
10675 @item none
10676 No envelope, this is default.
10677
10678 @item instant
10679 Instant envelope, even darkest single pixel will be clearly highlighted.
10680
10681 @item peak
10682 Hold maximum and minimum values presented in graph over time. This way you
10683 can still spot out of range values without constantly looking at vectorscope.
10684
10685 @item peak+instant
10686 Peak and instant envelope combined together.
10687 @end table
10688 @end table
10689
10690 @anchor{vidstabdetect}
10691 @section vidstabdetect
10692
10693 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
10694 @ref{vidstabtransform} for pass 2.
10695
10696 This filter generates a file with relative translation and rotation
10697 transform information about subsequent frames, which is then used by
10698 the @ref{vidstabtransform} filter.
10699
10700 To enable compilation of this filter you need to configure FFmpeg with
10701 @code{--enable-libvidstab}.
10702
10703 This filter accepts the following options:
10704
10705 @table @option
10706 @item result
10707 Set the path to the file used to write the transforms information.
10708 Default value is @file{transforms.trf}.
10709
10710 @item shakiness
10711 Set how shaky the video is and how quick the camera is. It accepts an
10712 integer in the range 1-10, a value of 1 means little shakiness, a
10713 value of 10 means strong shakiness. Default value is 5.
10714
10715 @item accuracy
10716 Set the accuracy of the detection process. It must be a value in the
10717 range 1-15. A value of 1 means low accuracy, a value of 15 means high
10718 accuracy. Default value is 15.
10719
10720 @item stepsize
10721 Set stepsize of the search process. The region around minimum is
10722 scanned with 1 pixel resolution. Default value is 6.
10723
10724 @item mincontrast
10725 Set minimum contrast. Below this value a local measurement field is
10726 discarded. Must be a floating point value in the range 0-1. Default
10727 value is 0.3.
10728
10729 @item tripod
10730 Set reference frame number for tripod mode.
10731
10732 If enabled, the motion of the frames is compared to a reference frame
10733 in the filtered stream, identified by the specified number. The idea
10734 is to compensate all movements in a more-or-less static scene and keep
10735 the camera view absolutely still.
10736
10737 If set to 0, it is disabled. The frames are counted starting from 1.
10738
10739 @item show
10740 Show fields and transforms in the resulting frames. It accepts an
10741 integer in the range 0-2. Default value is 0, which disables any
10742 visualization.
10743 @end table
10744
10745 @subsection Examples
10746
10747 @itemize
10748 @item
10749 Use default values:
10750 @example
10751 vidstabdetect
10752 @end example
10753
10754 @item
10755 Analyze strongly shaky movie and put the results in file
10756 @file{mytransforms.trf}:
10757 @example
10758 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
10759 @end example
10760
10761 @item
10762 Visualize the result of internal transformations in the resulting
10763 video:
10764 @example
10765 vidstabdetect=show=1
10766 @end example
10767
10768 @item
10769 Analyze a video with medium shakiness using @command{ffmpeg}:
10770 @example
10771 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
10772 @end example
10773 @end itemize
10774
10775 @anchor{vidstabtransform}
10776 @section vidstabtransform
10777
10778 Video stabilization/deshaking: pass 2 of 2,
10779 see @ref{vidstabdetect} for pass 1.
10780
10781 Read a file with transform information for each frame and
10782 apply/compensate them. Together with the @ref{vidstabdetect}
10783 filter this can be used to deshake videos. See also
10784 @url{http://public.hronopik.de/vid.stab}. It is important to also use
10785 the @ref{unsharp} filter, see below.
10786
10787 To enable compilation of this filter you need to configure FFmpeg with
10788 @code{--enable-libvidstab}.
10789
10790 @subsection Options
10791
10792 @table @option
10793 @item input
10794 Set path to the file used to read the transforms. Default value is
10795 @file{transforms.trf}.
10796
10797 @item smoothing
10798 Set the number of frames (value*2 + 1) used for lowpass filtering the
10799 camera movements. Default value is 10.
10800
10801 For example a number of 10 means that 21 frames are used (10 in the
10802 past and 10 in the future) to smoothen the motion in the video. A
10803 larger value leads to a smoother video, but limits the acceleration of
10804 the camera (pan/tilt movements). 0 is a special case where a static
10805 camera is simulated.
10806
10807 @item optalgo
10808 Set the camera path optimization algorithm.
10809
10810 Accepted values are:
10811 @table @samp
10812 @item gauss
10813 gaussian kernel low-pass filter on camera motion (default)
10814 @item avg
10815 averaging on transformations
10816 @end table
10817
10818 @item maxshift
10819 Set maximal number of pixels to translate frames. Default value is -1,
10820 meaning no limit.
10821
10822 @item maxangle
10823 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
10824 value is -1, meaning no limit.
10825
10826 @item crop
10827 Specify how to deal with borders that may be visible due to movement
10828 compensation.
10829
10830 Available values are:
10831 @table @samp
10832 @item keep
10833 keep image information from previous frame (default)
10834 @item black
10835 fill the border black
10836 @end table
10837
10838 @item invert
10839 Invert transforms if set to 1. Default value is 0.
10840
10841 @item relative
10842 Consider transforms as relative to previous frame if set to 1,
10843 absolute if set to 0. Default value is 0.
10844
10845 @item zoom
10846 Set percentage to zoom. A positive value will result in a zoom-in
10847 effect, a negative value in a zoom-out effect. Default value is 0 (no
10848 zoom).
10849
10850 @item optzoom
10851 Set optimal zooming to avoid borders.
10852
10853 Accepted values are:
10854 @table @samp
10855 @item 0
10856 disabled
10857 @item 1
10858 optimal static zoom value is determined (only very strong movements
10859 will lead to visible borders) (default)
10860 @item 2
10861 optimal adaptive zoom value is determined (no borders will be
10862 visible), see @option{zoomspeed}
10863 @end table
10864
10865 Note that the value given at zoom is added to the one calculated here.
10866
10867 @item zoomspeed
10868 Set percent to zoom maximally each frame (enabled when
10869 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
10870 0.25.
10871
10872 @item interpol
10873 Specify type of interpolation.
10874
10875 Available values are:
10876 @table @samp
10877 @item no
10878 no interpolation
10879 @item linear
10880 linear only horizontal
10881 @item bilinear
10882 linear in both directions (default)
10883 @item bicubic
10884 cubic in both directions (slow)
10885 @end table
10886
10887 @item tripod
10888 Enable virtual tripod mode if set to 1, which is equivalent to
10889 @code{relative=0:smoothing=0}. Default value is 0.
10890
10891 Use also @code{tripod} option of @ref{vidstabdetect}.
10892
10893 @item debug
10894 Increase log verbosity if set to 1. Also the detected global motions
10895 are written to the temporary file @file{global_motions.trf}. Default
10896 value is 0.
10897 @end table
10898
10899 @subsection Examples
10900
10901 @itemize
10902 @item
10903 Use @command{ffmpeg} for a typical stabilization with default values:
10904 @example
10905 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
10906 @end example
10907
10908 Note the use of the @ref{unsharp} filter which is always recommended.
10909
10910 @item
10911 Zoom in a bit more and load transform data from a given file:
10912 @example
10913 vidstabtransform=zoom=5:input="mytransforms.trf"
10914 @end example
10915
10916 @item
10917 Smoothen the video even more:
10918 @example
10919 vidstabtransform=smoothing=30
10920 @end example
10921 @end itemize
10922
10923 @section vflip
10924
10925 Flip the input video vertically.
10926
10927 For example, to vertically flip a video with @command{ffmpeg}:
10928 @example
10929 ffmpeg -i in.avi -vf "vflip" out.avi
10930 @end example
10931
10932 @anchor{vignette}
10933 @section vignette
10934
10935 Make or reverse a natural vignetting effect.
10936
10937 The filter accepts the following options:
10938
10939 @table @option
10940 @item angle, a
10941 Set lens angle expression as a number of radians.
10942
10943 The value is clipped in the @code{[0,PI/2]} range.
10944
10945 Default value: @code{"PI/5"}
10946
10947 @item x0
10948 @item y0
10949 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
10950 by default.
10951
10952 @item mode
10953 Set forward/backward mode.
10954
10955 Available modes are:
10956 @table @samp
10957 @item forward
10958 The larger the distance from the central point, the darker the image becomes.
10959
10960 @item backward
10961 The larger the distance from the central point, the brighter the image becomes.
10962 This can be used to reverse a vignette effect, though there is no automatic
10963 detection to extract the lens @option{angle} and other settings (yet). It can
10964 also be used to create a burning effect.
10965 @end table
10966
10967 Default value is @samp{forward}.
10968
10969 @item eval
10970 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
10971
10972 It accepts the following values:
10973 @table @samp
10974 @item init
10975 Evaluate expressions only once during the filter initialization.
10976
10977 @item frame
10978 Evaluate expressions for each incoming frame. This is way slower than the
10979 @samp{init} mode since it requires all the scalers to be re-computed, but it
10980 allows advanced dynamic expressions.
10981 @end table
10982
10983 Default value is @samp{init}.
10984
10985 @item dither
10986 Set dithering to reduce the circular banding effects. Default is @code{1}
10987 (enabled).
10988
10989 @item aspect
10990 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
10991 Setting this value to the SAR of the input will make a rectangular vignetting
10992 following the dimensions of the video.
10993
10994 Default is @code{1/1}.
10995 @end table
10996
10997 @subsection Expressions
10998
10999 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
11000 following parameters.
11001
11002 @table @option
11003 @item w
11004 @item h
11005 input width and height
11006
11007 @item n
11008 the number of input frame, starting from 0
11009
11010 @item pts
11011 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
11012 @var{TB} units, NAN if undefined
11013
11014 @item r
11015 frame rate of the input video, NAN if the input frame rate is unknown
11016
11017 @item t
11018 the PTS (Presentation TimeStamp) of the filtered video frame,
11019 expressed in seconds, NAN if undefined
11020
11021 @item tb
11022 time base of the input video
11023 @end table
11024
11025
11026 @subsection Examples
11027
11028 @itemize
11029 @item
11030 Apply simple strong vignetting effect:
11031 @example
11032 vignette=PI/4
11033 @end example
11034
11035 @item
11036 Make a flickering vignetting:
11037 @example
11038 vignette='PI/4+random(1)*PI/50':eval=frame
11039 @end example
11040
11041 @end itemize
11042
11043 @section vstack
11044 Stack input videos vertically.
11045
11046 All streams must be of same pixel format and of same width.
11047
11048 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11049 to create same output.
11050
11051 The filter accept the following option:
11052
11053 @table @option
11054 @item nb_inputs
11055 Set number of input streams. Default is 2.
11056 @end table
11057
11058 @section w3fdif
11059
11060 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
11061 Deinterlacing Filter").
11062
11063 Based on the process described by Martin Weston for BBC R&D, and
11064 implemented based on the de-interlace algorithm written by Jim
11065 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
11066 uses filter coefficients calculated by BBC R&D.
11067
11068 There are two sets of filter coefficients, so called "simple":
11069 and "complex". Which set of filter coefficients is used can
11070 be set by passing an optional parameter:
11071
11072 @table @option
11073 @item filter
11074 Set the interlacing filter coefficients. Accepts one of the following values:
11075
11076 @table @samp
11077 @item simple
11078 Simple filter coefficient set.
11079 @item complex
11080 More-complex filter coefficient set.
11081 @end table
11082 Default value is @samp{complex}.
11083
11084 @item deint
11085 Specify which frames to deinterlace. Accept one of the following values:
11086
11087 @table @samp
11088 @item all
11089 Deinterlace all frames,
11090 @item interlaced
11091 Only deinterlace frames marked as interlaced.
11092 @end table
11093
11094 Default value is @samp{all}.
11095 @end table
11096
11097 @section waveform
11098 Video waveform monitor.
11099
11100 The waveform monitor plots color component intensity. By default luminance
11101 only. Each column of the waveform corresponds to a column of pixels in the
11102 source video.
11103
11104 It accepts the following options:
11105
11106 @table @option
11107 @item mode, m
11108 Can be either @code{row}, or @code{column}. Default is @code{column}.
11109 In row mode, the graph on the left side represents color component value 0 and
11110 the right side represents value = 255. In column mode, the top side represents
11111 color component value = 0 and bottom side represents value = 255.
11112
11113 @item intensity, i
11114 Set intensity. Smaller values are useful to find out how many values of the same
11115 luminance are distributed across input rows/columns.
11116 Default value is @code{0.04}. Allowed range is [0, 1].
11117
11118 @item mirror, r
11119 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
11120 In mirrored mode, higher values will be represented on the left
11121 side for @code{row} mode and at the top for @code{column} mode. Default is
11122 @code{1} (mirrored).
11123
11124 @item display, d
11125 Set display mode.
11126 It accepts the following values:
11127 @table @samp
11128 @item overlay
11129 Presents information identical to that in the @code{parade}, except
11130 that the graphs representing color components are superimposed directly
11131 over one another.
11132
11133 This display mode makes it easier to spot relative differences or similarities
11134 in overlapping areas of the color components that are supposed to be identical,
11135 such as neutral whites, grays, or blacks.
11136
11137 @item parade
11138 Display separate graph for the color components side by side in
11139 @code{row} mode or one below the other in @code{column} mode.
11140
11141 Using this display mode makes it easy to spot color casts in the highlights
11142 and shadows of an image, by comparing the contours of the top and the bottom
11143 graphs of each waveform. Since whites, grays, and blacks are characterized
11144 by exactly equal amounts of red, green, and blue, neutral areas of the picture
11145 should display three waveforms of roughly equal width/height. If not, the
11146 correction is easy to perform by making level adjustments the three waveforms.
11147 @end table
11148 Default is @code{parade}.
11149
11150 @item components, c
11151 Set which color components to display. Default is 1, which means only luminance
11152 or red color component if input is in RGB colorspace. If is set for example to
11153 7 it will display all 3 (if) available color components.
11154
11155 @item envelope, e
11156 @table @samp
11157 @item none
11158 No envelope, this is default.
11159
11160 @item instant
11161 Instant envelope, minimum and maximum values presented in graph will be easily
11162 visible even with small @code{step} value.
11163
11164 @item peak
11165 Hold minimum and maximum values presented in graph across time. This way you
11166 can still spot out of range values without constantly looking at waveforms.
11167
11168 @item peak+instant
11169 Peak and instant envelope combined together.
11170 @end table
11171
11172 @item filter, f
11173 @table @samp
11174 @item lowpass
11175 No filtering, this is default.
11176
11177 @item flat
11178 Luma and chroma combined together.
11179
11180 @item aflat
11181 Similar as above, but shows difference between blue and red chroma.
11182
11183 @item chroma
11184 Displays only chroma.
11185
11186 @item achroma
11187 Similar as above, but shows difference between blue and red chroma.
11188
11189 @item color
11190 Displays actual color value on waveform.
11191 @end table
11192 @end table
11193
11194 @section xbr
11195 Apply the xBR high-quality magnification filter which is designed for pixel
11196 art. It follows a set of edge-detection rules, see
11197 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
11198
11199 It accepts the following option:
11200
11201 @table @option
11202 @item n
11203 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
11204 @code{3xBR} and @code{4} for @code{4xBR}.
11205 Default is @code{3}.
11206 @end table
11207
11208 @anchor{yadif}
11209 @section yadif
11210
11211 Deinterlace the input video ("yadif" means "yet another deinterlacing
11212 filter").
11213
11214 It accepts the following parameters:
11215
11216
11217 @table @option
11218
11219 @item mode
11220 The interlacing mode to adopt. It accepts one of the following values:
11221
11222 @table @option
11223 @item 0, send_frame
11224 Output one frame for each frame.
11225 @item 1, send_field
11226 Output one frame for each field.
11227 @item 2, send_frame_nospatial
11228 Like @code{send_frame}, but it skips the spatial interlacing check.
11229 @item 3, send_field_nospatial
11230 Like @code{send_field}, but it skips the spatial interlacing check.
11231 @end table
11232
11233 The default value is @code{send_frame}.
11234
11235 @item parity
11236 The picture field parity assumed for the input interlaced video. It accepts one
11237 of the following values:
11238
11239 @table @option
11240 @item 0, tff
11241 Assume the top field is first.
11242 @item 1, bff
11243 Assume the bottom field is first.
11244 @item -1, auto
11245 Enable automatic detection of field parity.
11246 @end table
11247
11248 The default value is @code{auto}.
11249 If the interlacing is unknown or the decoder does not export this information,
11250 top field first will be assumed.
11251
11252 @item deint
11253 Specify which frames to deinterlace. Accept one of the following
11254 values:
11255
11256 @table @option
11257 @item 0, all
11258 Deinterlace all frames.
11259 @item 1, interlaced
11260 Only deinterlace frames marked as interlaced.
11261 @end table
11262
11263 The default value is @code{all}.
11264 @end table
11265
11266 @section zoompan
11267
11268 Apply Zoom & Pan effect.
11269
11270 This filter accepts the following options:
11271
11272 @table @option
11273 @item zoom, z
11274 Set the zoom expression. Default is 1.
11275
11276 @item x
11277 @item y
11278 Set the x and y expression. Default is 0.
11279
11280 @item d
11281 Set the duration expression in number of frames.
11282 This sets for how many number of frames effect will last for
11283 single input image.
11284
11285 @item s
11286 Set the output image size, default is 'hd720'.
11287 @end table
11288
11289 Each expression can contain the following constants:
11290
11291 @table @option
11292 @item in_w, iw
11293 Input width.
11294
11295 @item in_h, ih
11296 Input height.
11297
11298 @item out_w, ow
11299 Output width.
11300
11301 @item out_h, oh
11302 Output height.
11303
11304 @item in
11305 Input frame count.
11306
11307 @item on
11308 Output frame count.
11309
11310 @item x
11311 @item y
11312 Last calculated 'x' and 'y' position from 'x' and 'y' expression
11313 for current input frame.
11314
11315 @item px
11316 @item py
11317 'x' and 'y' of last output frame of previous input frame or 0 when there was
11318 not yet such frame (first input frame).
11319
11320 @item zoom
11321 Last calculated zoom from 'z' expression for current input frame.
11322
11323 @item pzoom
11324 Last calculated zoom of last output frame of previous input frame.
11325
11326 @item duration
11327 Number of output frames for current input frame. Calculated from 'd' expression
11328 for each input frame.
11329
11330 @item pduration
11331 number of output frames created for previous input frame
11332
11333 @item a
11334 Rational number: input width / input height
11335
11336 @item sar
11337 sample aspect ratio
11338
11339 @item dar
11340 display aspect ratio
11341
11342 @end table
11343
11344 @subsection Examples
11345
11346 @itemize
11347 @item
11348 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
11349 @example
11350 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='if(gte(zoom,1.5),x,x+1/a)':y='if(gte(zoom,1.5),y,y+1)':s=640x360
11351 @end example
11352
11353 @item
11354 Zoom-in up to 1.5 and pan always at center of picture:
11355 @example
11356 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
11357 @end example
11358 @end itemize
11359
11360 @c man end VIDEO FILTERS
11361
11362 @chapter Video Sources
11363 @c man begin VIDEO SOURCES
11364
11365 Below is a description of the currently available video sources.
11366
11367 @section buffer
11368
11369 Buffer video frames, and make them available to the filter chain.
11370
11371 This source is mainly intended for a programmatic use, in particular
11372 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
11373
11374 It accepts the following parameters:
11375
11376 @table @option
11377
11378 @item video_size
11379 Specify the size (width and height) of the buffered video frames. For the
11380 syntax of this option, check the
11381 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11382
11383 @item width
11384 The input video width.
11385
11386 @item height
11387 The input video height.
11388
11389 @item pix_fmt
11390 A string representing the pixel format of the buffered video frames.
11391 It may be a number corresponding to a pixel format, or a pixel format
11392 name.
11393
11394 @item time_base
11395 Specify the timebase assumed by the timestamps of the buffered frames.
11396
11397 @item frame_rate
11398 Specify the frame rate expected for the video stream.
11399
11400 @item pixel_aspect, sar
11401 The sample (pixel) aspect ratio of the input video.
11402
11403 @item sws_param
11404 Specify the optional parameters to be used for the scale filter which
11405 is automatically inserted when an input change is detected in the
11406 input size or format.
11407 @end table
11408
11409 For example:
11410 @example
11411 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
11412 @end example
11413
11414 will instruct the source to accept video frames with size 320x240 and
11415 with format "yuv410p", assuming 1/24 as the timestamps timebase and
11416 square pixels (1:1 sample aspect ratio).
11417 Since the pixel format with name "yuv410p" corresponds to the number 6
11418 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
11419 this example corresponds to:
11420 @example
11421 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
11422 @end example
11423
11424 Alternatively, the options can be specified as a flat string, but this
11425 syntax is deprecated:
11426
11427 @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}]
11428
11429 @section cellauto
11430
11431 Create a pattern generated by an elementary cellular automaton.
11432
11433 The initial state of the cellular automaton can be defined through the
11434 @option{filename}, and @option{pattern} options. If such options are
11435 not specified an initial state is created randomly.
11436
11437 At each new frame a new row in the video is filled with the result of
11438 the cellular automaton next generation. The behavior when the whole
11439 frame is filled is defined by the @option{scroll} option.
11440
11441 This source accepts the following options:
11442
11443 @table @option
11444 @item filename, f
11445 Read the initial cellular automaton state, i.e. the starting row, from
11446 the specified file.
11447 In the file, each non-whitespace character is considered an alive
11448 cell, a newline will terminate the row, and further characters in the
11449 file will be ignored.
11450
11451 @item pattern, p
11452 Read the initial cellular automaton state, i.e. the starting row, from
11453 the specified string.
11454
11455 Each non-whitespace character in the string is considered an alive
11456 cell, a newline will terminate the row, and further characters in the
11457 string will be ignored.
11458
11459 @item rate, r
11460 Set the video rate, that is the number of frames generated per second.
11461 Default is 25.
11462
11463 @item random_fill_ratio, ratio
11464 Set the random fill ratio for the initial cellular automaton row. It
11465 is a floating point number value ranging from 0 to 1, defaults to
11466 1/PHI.
11467
11468 This option is ignored when a file or a pattern is specified.
11469
11470 @item random_seed, seed
11471 Set the seed for filling randomly the initial row, must be an integer
11472 included between 0 and UINT32_MAX. If not specified, or if explicitly
11473 set to -1, the filter will try to use a good random seed on a best
11474 effort basis.
11475
11476 @item rule
11477 Set the cellular automaton rule, it is a number ranging from 0 to 255.
11478 Default value is 110.
11479
11480 @item size, s
11481 Set the size of the output video. For the syntax of this option, check the
11482 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11483
11484 If @option{filename} or @option{pattern} is specified, the size is set
11485 by default to the width of the specified initial state row, and the
11486 height is set to @var{width} * PHI.
11487
11488 If @option{size} is set, it must contain the width of the specified
11489 pattern string, and the specified pattern will be centered in the
11490 larger row.
11491
11492 If a filename or a pattern string is not specified, the size value
11493 defaults to "320x518" (used for a randomly generated initial state).
11494
11495 @item scroll
11496 If set to 1, scroll the output upward when all the rows in the output
11497 have been already filled. If set to 0, the new generated row will be
11498 written over the top row just after the bottom row is filled.
11499 Defaults to 1.
11500
11501 @item start_full, full
11502 If set to 1, completely fill the output with generated rows before
11503 outputting the first frame.
11504 This is the default behavior, for disabling set the value to 0.
11505
11506 @item stitch
11507 If set to 1, stitch the left and right row edges together.
11508 This is the default behavior, for disabling set the value to 0.
11509 @end table
11510
11511 @subsection Examples
11512
11513 @itemize
11514 @item
11515 Read the initial state from @file{pattern}, and specify an output of
11516 size 200x400.
11517 @example
11518 cellauto=f=pattern:s=200x400
11519 @end example
11520
11521 @item
11522 Generate a random initial row with a width of 200 cells, with a fill
11523 ratio of 2/3:
11524 @example
11525 cellauto=ratio=2/3:s=200x200
11526 @end example
11527
11528 @item
11529 Create a pattern generated by rule 18 starting by a single alive cell
11530 centered on an initial row with width 100:
11531 @example
11532 cellauto=p=@@:s=100x400:full=0:rule=18
11533 @end example
11534
11535 @item
11536 Specify a more elaborated initial pattern:
11537 @example
11538 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
11539 @end example
11540
11541 @end itemize
11542
11543 @section mandelbrot
11544
11545 Generate a Mandelbrot set fractal, and progressively zoom towards the
11546 point specified with @var{start_x} and @var{start_y}.
11547
11548 This source accepts the following options:
11549
11550 @table @option
11551
11552 @item end_pts
11553 Set the terminal pts value. Default value is 400.
11554
11555 @item end_scale
11556 Set the terminal scale value.
11557 Must be a floating point value. Default value is 0.3.
11558
11559 @item inner
11560 Set the inner coloring mode, that is the algorithm used to draw the
11561 Mandelbrot fractal internal region.
11562
11563 It shall assume one of the following values:
11564 @table @option
11565 @item black
11566 Set black mode.
11567 @item convergence
11568 Show time until convergence.
11569 @item mincol
11570 Set color based on point closest to the origin of the iterations.
11571 @item period
11572 Set period mode.
11573 @end table
11574
11575 Default value is @var{mincol}.
11576
11577 @item bailout
11578 Set the bailout value. Default value is 10.0.
11579
11580 @item maxiter
11581 Set the maximum of iterations performed by the rendering
11582 algorithm. Default value is 7189.
11583
11584 @item outer
11585 Set outer coloring mode.
11586 It shall assume one of following values:
11587 @table @option
11588 @item iteration_count
11589 Set iteration cound mode.
11590 @item normalized_iteration_count
11591 set normalized iteration count mode.
11592 @end table
11593 Default value is @var{normalized_iteration_count}.
11594
11595 @item rate, r
11596 Set frame rate, expressed as number of frames per second. Default
11597 value is "25".
11598
11599 @item size, s
11600 Set frame size. For the syntax of this option, check the "Video
11601 size" section in the ffmpeg-utils manual. Default value is "640x480".
11602
11603 @item start_scale
11604 Set the initial scale value. Default value is 3.0.
11605
11606 @item start_x
11607 Set the initial x position. Must be a floating point value between
11608 -100 and 100. Default value is -0.743643887037158704752191506114774.
11609
11610 @item start_y
11611 Set the initial y position. Must be a floating point value between
11612 -100 and 100. Default value is -0.131825904205311970493132056385139.
11613 @end table
11614
11615 @section mptestsrc
11616
11617 Generate various test patterns, as generated by the MPlayer test filter.
11618
11619 The size of the generated video is fixed, and is 256x256.
11620 This source is useful in particular for testing encoding features.
11621
11622 This source accepts the following options:
11623
11624 @table @option
11625
11626 @item rate, r
11627 Specify the frame rate of the sourced video, as the number of frames
11628 generated per second. It has to be a string in the format
11629 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
11630 number or a valid video frame rate abbreviation. The default value is
11631 "25".
11632
11633 @item duration, d
11634 Set the duration of the sourced video. See
11635 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11636 for the accepted syntax.
11637
11638 If not specified, or the expressed duration is negative, the video is
11639 supposed to be generated forever.
11640
11641 @item test, t
11642
11643 Set the number or the name of the test to perform. Supported tests are:
11644 @table @option
11645 @item dc_luma
11646 @item dc_chroma
11647 @item freq_luma
11648 @item freq_chroma
11649 @item amp_luma
11650 @item amp_chroma
11651 @item cbp
11652 @item mv
11653 @item ring1
11654 @item ring2
11655 @item all
11656
11657 @end table
11658
11659 Default value is "all", which will cycle through the list of all tests.
11660 @end table
11661
11662 Some examples:
11663 @example
11664 mptestsrc=t=dc_luma
11665 @end example
11666
11667 will generate a "dc_luma" test pattern.
11668
11669 @section frei0r_src
11670
11671 Provide a frei0r source.
11672
11673 To enable compilation of this filter you need to install the frei0r
11674 header and configure FFmpeg with @code{--enable-frei0r}.
11675
11676 This source accepts the following parameters:
11677
11678 @table @option
11679
11680 @item size
11681 The size of the video to generate. For the syntax of this option, check the
11682 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11683
11684 @item framerate
11685 The framerate of the generated video. It may be a string of the form
11686 @var{num}/@var{den} or a frame rate abbreviation.
11687
11688 @item filter_name
11689 The name to the frei0r source to load. For more information regarding frei0r and
11690 how to set the parameters, read the @ref{frei0r} section in the video filters
11691 documentation.
11692
11693 @item filter_params
11694 A '|'-separated list of parameters to pass to the frei0r source.
11695
11696 @end table
11697
11698 For example, to generate a frei0r partik0l source with size 200x200
11699 and frame rate 10 which is overlaid on the overlay filter main input:
11700 @example
11701 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
11702 @end example
11703
11704 @section life
11705
11706 Generate a life pattern.
11707
11708 This source is based on a generalization of John Conway's life game.
11709
11710 The sourced input represents a life grid, each pixel represents a cell
11711 which can be in one of two possible states, alive or dead. Every cell
11712 interacts with its eight neighbours, which are the cells that are
11713 horizontally, vertically, or diagonally adjacent.
11714
11715 At each interaction the grid evolves according to the adopted rule,
11716 which specifies the number of neighbor alive cells which will make a
11717 cell stay alive or born. The @option{rule} option allows one to specify
11718 the rule to adopt.
11719
11720 This source accepts the following options:
11721
11722 @table @option
11723 @item filename, f
11724 Set the file from which to read the initial grid state. In the file,
11725 each non-whitespace character is considered an alive cell, and newline
11726 is used to delimit the end of each row.
11727
11728 If this option is not specified, the initial grid is generated
11729 randomly.
11730
11731 @item rate, r
11732 Set the video rate, that is the number of frames generated per second.
11733 Default is 25.
11734
11735 @item random_fill_ratio, ratio
11736 Set the random fill ratio for the initial random grid. It is a
11737 floating point number value ranging from 0 to 1, defaults to 1/PHI.
11738 It is ignored when a file is specified.
11739
11740 @item random_seed, seed
11741 Set the seed for filling the initial random grid, must be an integer
11742 included between 0 and UINT32_MAX. If not specified, or if explicitly
11743 set to -1, the filter will try to use a good random seed on a best
11744 effort basis.
11745
11746 @item rule
11747 Set the life rule.
11748
11749 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
11750 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
11751 @var{NS} specifies the number of alive neighbor cells which make a
11752 live cell stay alive, and @var{NB} the number of alive neighbor cells
11753 which make a dead cell to become alive (i.e. to "born").
11754 "s" and "b" can be used in place of "S" and "B", respectively.
11755
11756 Alternatively a rule can be specified by an 18-bits integer. The 9
11757 high order bits are used to encode the next cell state if it is alive
11758 for each number of neighbor alive cells, the low order bits specify
11759 the rule for "borning" new cells. Higher order bits encode for an
11760 higher number of neighbor cells.
11761 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
11762 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
11763
11764 Default value is "S23/B3", which is the original Conway's game of life
11765 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
11766 cells, and will born a new cell if there are three alive cells around
11767 a dead cell.
11768
11769 @item size, s
11770 Set the size of the output video. For the syntax of this option, check the
11771 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11772
11773 If @option{filename} is specified, the size is set by default to the
11774 same size of the input file. If @option{size} is set, it must contain
11775 the size specified in the input file, and the initial grid defined in
11776 that file is centered in the larger resulting area.
11777
11778 If a filename is not specified, the size value defaults to "320x240"
11779 (used for a randomly generated initial grid).
11780
11781 @item stitch
11782 If set to 1, stitch the left and right grid edges together, and the
11783 top and bottom edges also. Defaults to 1.
11784
11785 @item mold
11786 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
11787 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
11788 value from 0 to 255.
11789
11790 @item life_color
11791 Set the color of living (or new born) cells.
11792
11793 @item death_color
11794 Set the color of dead cells. If @option{mold} is set, this is the first color
11795 used to represent a dead cell.
11796
11797 @item mold_color
11798 Set mold color, for definitely dead and moldy cells.
11799
11800 For the syntax of these 3 color options, check the "Color" section in the
11801 ffmpeg-utils manual.
11802 @end table
11803
11804 @subsection Examples
11805
11806 @itemize
11807 @item
11808 Read a grid from @file{pattern}, and center it on a grid of size
11809 300x300 pixels:
11810 @example
11811 life=f=pattern:s=300x300
11812 @end example
11813
11814 @item
11815 Generate a random grid of size 200x200, with a fill ratio of 2/3:
11816 @example
11817 life=ratio=2/3:s=200x200
11818 @end example
11819
11820 @item
11821 Specify a custom rule for evolving a randomly generated grid:
11822 @example
11823 life=rule=S14/B34
11824 @end example
11825
11826 @item
11827 Full example with slow death effect (mold) using @command{ffplay}:
11828 @example
11829 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
11830 @end example
11831 @end itemize
11832
11833 @anchor{allrgb}
11834 @anchor{allyuv}
11835 @anchor{color}
11836 @anchor{haldclutsrc}
11837 @anchor{nullsrc}
11838 @anchor{rgbtestsrc}
11839 @anchor{smptebars}
11840 @anchor{smptehdbars}
11841 @anchor{testsrc}
11842 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
11843
11844 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
11845
11846 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
11847
11848 The @code{color} source provides an uniformly colored input.
11849
11850 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
11851 @ref{haldclut} filter.
11852
11853 The @code{nullsrc} source returns unprocessed video frames. It is
11854 mainly useful to be employed in analysis / debugging tools, or as the
11855 source for filters which ignore the input data.
11856
11857 The @code{rgbtestsrc} source generates an RGB test pattern useful for
11858 detecting RGB vs BGR issues. You should see a red, green and blue
11859 stripe from top to bottom.
11860
11861 The @code{smptebars} source generates a color bars pattern, based on
11862 the SMPTE Engineering Guideline EG 1-1990.
11863
11864 The @code{smptehdbars} source generates a color bars pattern, based on
11865 the SMPTE RP 219-2002.
11866
11867 The @code{testsrc} source generates a test video pattern, showing a
11868 color pattern, a scrolling gradient and a timestamp. This is mainly
11869 intended for testing purposes.
11870
11871 The sources accept the following parameters:
11872
11873 @table @option
11874
11875 @item color, c
11876 Specify the color of the source, only available in the @code{color}
11877 source. For the syntax of this option, check the "Color" section in the
11878 ffmpeg-utils manual.
11879
11880 @item level
11881 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
11882 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
11883 pixels to be used as identity matrix for 3D lookup tables. Each component is
11884 coded on a @code{1/(N*N)} scale.
11885
11886 @item size, s
11887 Specify the size of the sourced video. For the syntax of this option, check the
11888 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11889 The default value is @code{320x240}.
11890
11891 This option is not available with the @code{haldclutsrc} filter.
11892
11893 @item rate, r
11894 Specify the frame rate of the sourced video, as the number of frames
11895 generated per second. It has to be a string in the format
11896 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
11897 number or a valid video frame rate abbreviation. The default value is
11898 "25".
11899
11900 @item sar
11901 Set the sample aspect ratio of the sourced video.
11902
11903 @item duration, d
11904 Set the duration of the sourced video. See
11905 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11906 for the accepted syntax.
11907
11908 If not specified, or the expressed duration is negative, the video is
11909 supposed to be generated forever.
11910
11911 @item decimals, n
11912 Set the number of decimals to show in the timestamp, only available in the
11913 @code{testsrc} source.
11914
11915 The displayed timestamp value will correspond to the original
11916 timestamp value multiplied by the power of 10 of the specified
11917 value. Default value is 0.
11918 @end table
11919
11920 For example the following:
11921 @example
11922 testsrc=duration=5.3:size=qcif:rate=10
11923 @end example
11924
11925 will generate a video with a duration of 5.3 seconds, with size
11926 176x144 and a frame rate of 10 frames per second.
11927
11928 The following graph description will generate a red source
11929 with an opacity of 0.2, with size "qcif" and a frame rate of 10
11930 frames per second.
11931 @example
11932 color=c=red@@0.2:s=qcif:r=10
11933 @end example
11934
11935 If the input content is to be ignored, @code{nullsrc} can be used. The
11936 following command generates noise in the luminance plane by employing
11937 the @code{geq} filter:
11938 @example
11939 nullsrc=s=256x256, geq=random(1)*255:128:128
11940 @end example
11941
11942 @subsection Commands
11943
11944 The @code{color} source supports the following commands:
11945
11946 @table @option
11947 @item c, color
11948 Set the color of the created image. Accepts the same syntax of the
11949 corresponding @option{color} option.
11950 @end table
11951
11952 @c man end VIDEO SOURCES
11953
11954 @chapter Video Sinks
11955 @c man begin VIDEO SINKS
11956
11957 Below is a description of the currently available video sinks.
11958
11959 @section buffersink
11960
11961 Buffer video frames, and make them available to the end of the filter
11962 graph.
11963
11964 This sink is mainly intended for programmatic use, in particular
11965 through the interface defined in @file{libavfilter/buffersink.h}
11966 or the options system.
11967
11968 It accepts a pointer to an AVBufferSinkContext structure, which
11969 defines the incoming buffers' formats, to be passed as the opaque
11970 parameter to @code{avfilter_init_filter} for initialization.
11971
11972 @section nullsink
11973
11974 Null video sink: do absolutely nothing with the input video. It is
11975 mainly useful as a template and for use in analysis / debugging
11976 tools.
11977
11978 @c man end VIDEO SINKS
11979
11980 @chapter Multimedia Filters
11981 @c man begin MULTIMEDIA FILTERS
11982
11983 Below is a description of the currently available multimedia filters.
11984
11985 @section aphasemeter
11986
11987 Convert input audio to a video output, displaying the audio phase.
11988
11989 The filter accepts the following options:
11990
11991 @table @option
11992 @item rate, r
11993 Set the output frame rate. Default value is @code{25}.
11994
11995 @item size, s
11996 Set the video size for the output. For the syntax of this option, check the
11997 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11998 Default value is @code{800x400}.
11999
12000 @item rc
12001 @item gc
12002 @item bc
12003 Specify the red, green, blue contrast. Default values are @code{2},
12004 @code{7} and @code{1}.
12005 Allowed range is @code{[0, 255]}.
12006
12007 @item mpc
12008 Set color which will be used for drawing median phase. If color is
12009 @code{none} which is default, no median phase value will be drawn.
12010 @end table
12011
12012 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
12013 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
12014 The @code{-1} means left and right channels are completely out of phase and
12015 @code{1} means channels are in phase.
12016
12017 @section avectorscope
12018
12019 Convert input audio to a video output, representing the audio vector
12020 scope.
12021
12022 The filter is used to measure the difference between channels of stereo
12023 audio stream. A monoaural signal, consisting of identical left and right
12024 signal, results in straight vertical line. Any stereo separation is visible
12025 as a deviation from this line, creating a Lissajous figure.
12026 If the straight (or deviation from it) but horizontal line appears this
12027 indicates that the left and right channels are out of phase.
12028
12029 The filter accepts the following options:
12030
12031 @table @option
12032 @item mode, m
12033 Set the vectorscope mode.
12034
12035 Available values are:
12036 @table @samp
12037 @item lissajous
12038 Lissajous rotated by 45 degrees.
12039
12040 @item lissajous_xy
12041 Same as above but not rotated.
12042
12043 @item polar
12044 Shape resembling half of circle.
12045 @end table
12046
12047 Default value is @samp{lissajous}.
12048
12049 @item size, s
12050 Set the video size for the output. For the syntax of this option, check the
12051 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12052 Default value is @code{400x400}.
12053
12054 @item rate, r
12055 Set the output frame rate. Default value is @code{25}.
12056
12057 @item rc
12058 @item gc
12059 @item bc
12060 @item ac
12061 Specify the red, green, blue and alpha contrast. Default values are @code{40},
12062 @code{160}, @code{80} and @code{255}.
12063 Allowed range is @code{[0, 255]}.
12064
12065 @item rf
12066 @item gf
12067 @item bf
12068 @item af
12069 Specify the red, green, blue and alpha fade. Default values are @code{15},
12070 @code{10}, @code{5} and @code{5}.
12071 Allowed range is @code{[0, 255]}.
12072
12073 @item zoom
12074 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
12075 @end table
12076
12077 @subsection Examples
12078
12079 @itemize
12080 @item
12081 Complete example using @command{ffplay}:
12082 @example
12083 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
12084              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
12085 @end example
12086 @end itemize
12087
12088 @section concat
12089
12090 Concatenate audio and video streams, joining them together one after the
12091 other.
12092
12093 The filter works on segments of synchronized video and audio streams. All
12094 segments must have the same number of streams of each type, and that will
12095 also be the number of streams at output.
12096
12097 The filter accepts the following options:
12098
12099 @table @option
12100
12101 @item n
12102 Set the number of segments. Default is 2.
12103
12104 @item v
12105 Set the number of output video streams, that is also the number of video
12106 streams in each segment. Default is 1.
12107
12108 @item a
12109 Set the number of output audio streams, that is also the number of audio
12110 streams in each segment. Default is 0.
12111
12112 @item unsafe
12113 Activate unsafe mode: do not fail if segments have a different format.
12114
12115 @end table
12116
12117 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
12118 @var{a} audio outputs.
12119
12120 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
12121 segment, in the same order as the outputs, then the inputs for the second
12122 segment, etc.
12123
12124 Related streams do not always have exactly the same duration, for various
12125 reasons including codec frame size or sloppy authoring. For that reason,
12126 related synchronized streams (e.g. a video and its audio track) should be
12127 concatenated at once. The concat filter will use the duration of the longest
12128 stream in each segment (except the last one), and if necessary pad shorter
12129 audio streams with silence.
12130
12131 For this filter to work correctly, all segments must start at timestamp 0.
12132
12133 All corresponding streams must have the same parameters in all segments; the
12134 filtering system will automatically select a common pixel format for video
12135 streams, and a common sample format, sample rate and channel layout for
12136 audio streams, but other settings, such as resolution, must be converted
12137 explicitly by the user.
12138
12139 Different frame rates are acceptable but will result in variable frame rate
12140 at output; be sure to configure the output file to handle it.
12141
12142 @subsection Examples
12143
12144 @itemize
12145 @item
12146 Concatenate an opening, an episode and an ending, all in bilingual version
12147 (video in stream 0, audio in streams 1 and 2):
12148 @example
12149 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
12150   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
12151    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
12152   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
12153 @end example
12154
12155 @item
12156 Concatenate two parts, handling audio and video separately, using the
12157 (a)movie sources, and adjusting the resolution:
12158 @example
12159 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
12160 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
12161 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
12162 @end example
12163 Note that a desync will happen at the stitch if the audio and video streams
12164 do not have exactly the same duration in the first file.
12165
12166 @end itemize
12167
12168 @anchor{ebur128}
12169 @section ebur128
12170
12171 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
12172 it unchanged. By default, it logs a message at a frequency of 10Hz with the
12173 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
12174 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
12175
12176 The filter also has a video output (see the @var{video} option) with a real
12177 time graph to observe the loudness evolution. The graphic contains the logged
12178 message mentioned above, so it is not printed anymore when this option is set,
12179 unless the verbose logging is set. The main graphing area contains the
12180 short-term loudness (3 seconds of analysis), and the gauge on the right is for
12181 the momentary loudness (400 milliseconds).
12182
12183 More information about the Loudness Recommendation EBU R128 on
12184 @url{http://tech.ebu.ch/loudness}.
12185
12186 The filter accepts the following options:
12187
12188 @table @option
12189
12190 @item video
12191 Activate the video output. The audio stream is passed unchanged whether this
12192 option is set or no. The video stream will be the first output stream if
12193 activated. Default is @code{0}.
12194
12195 @item size
12196 Set the video size. This option is for video only. For the syntax of this
12197 option, check the
12198 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12199 Default and minimum resolution is @code{640x480}.
12200
12201 @item meter
12202 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
12203 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
12204 other integer value between this range is allowed.
12205
12206 @item metadata
12207 Set metadata injection. If set to @code{1}, the audio input will be segmented
12208 into 100ms output frames, each of them containing various loudness information
12209 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
12210
12211 Default is @code{0}.
12212
12213 @item framelog
12214 Force the frame logging level.
12215
12216 Available values are:
12217 @table @samp
12218 @item info
12219 information logging level
12220 @item verbose
12221 verbose logging level
12222 @end table
12223
12224 By default, the logging level is set to @var{info}. If the @option{video} or
12225 the @option{metadata} options are set, it switches to @var{verbose}.
12226
12227 @item peak
12228 Set peak mode(s).
12229
12230 Available modes can be cumulated (the option is a @code{flag} type). Possible
12231 values are:
12232 @table @samp
12233 @item none
12234 Disable any peak mode (default).
12235 @item sample
12236 Enable sample-peak mode.
12237
12238 Simple peak mode looking for the higher sample value. It logs a message
12239 for sample-peak (identified by @code{SPK}).
12240 @item true
12241 Enable true-peak mode.
12242
12243 If enabled, the peak lookup is done on an over-sampled version of the input
12244 stream for better peak accuracy. It logs a message for true-peak.
12245 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
12246 This mode requires a build with @code{libswresample}.
12247 @end table
12248
12249 @end table
12250
12251 @subsection Examples
12252
12253 @itemize
12254 @item
12255 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
12256 @example
12257 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
12258 @end example
12259
12260 @item
12261 Run an analysis with @command{ffmpeg}:
12262 @example
12263 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
12264 @end example
12265 @end itemize
12266
12267 @section interleave, ainterleave
12268
12269 Temporally interleave frames from several inputs.
12270
12271 @code{interleave} works with video inputs, @code{ainterleave} with audio.
12272
12273 These filters read frames from several inputs and send the oldest
12274 queued frame to the output.
12275
12276 Input streams must have a well defined, monotonically increasing frame
12277 timestamp values.
12278
12279 In order to submit one frame to output, these filters need to enqueue
12280 at least one frame for each input, so they cannot work in case one
12281 input is not yet terminated and will not receive incoming frames.
12282
12283 For example consider the case when one input is a @code{select} filter
12284 which always drop input frames. The @code{interleave} filter will keep
12285 reading from that input, but it will never be able to send new frames
12286 to output until the input will send an end-of-stream signal.
12287
12288 Also, depending on inputs synchronization, the filters will drop
12289 frames in case one input receives more frames than the other ones, and
12290 the queue is already filled.
12291
12292 These filters accept the following options:
12293
12294 @table @option
12295 @item nb_inputs, n
12296 Set the number of different inputs, it is 2 by default.
12297 @end table
12298
12299 @subsection Examples
12300
12301 @itemize
12302 @item
12303 Interleave frames belonging to different streams using @command{ffmpeg}:
12304 @example
12305 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
12306 @end example
12307
12308 @item
12309 Add flickering blur effect:
12310 @example
12311 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
12312 @end example
12313 @end itemize
12314
12315 @section perms, aperms
12316
12317 Set read/write permissions for the output frames.
12318
12319 These filters are mainly aimed at developers to test direct path in the
12320 following filter in the filtergraph.
12321
12322 The filters accept the following options:
12323
12324 @table @option
12325 @item mode
12326 Select the permissions mode.
12327
12328 It accepts the following values:
12329 @table @samp
12330 @item none
12331 Do nothing. This is the default.
12332 @item ro
12333 Set all the output frames read-only.
12334 @item rw
12335 Set all the output frames directly writable.
12336 @item toggle
12337 Make the frame read-only if writable, and writable if read-only.
12338 @item random
12339 Set each output frame read-only or writable randomly.
12340 @end table
12341
12342 @item seed
12343 Set the seed for the @var{random} mode, must be an integer included between
12344 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12345 @code{-1}, the filter will try to use a good random seed on a best effort
12346 basis.
12347 @end table
12348
12349 Note: in case of auto-inserted filter between the permission filter and the
12350 following one, the permission might not be received as expected in that
12351 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
12352 perms/aperms filter can avoid this problem.
12353
12354 @section select, aselect
12355
12356 Select frames to pass in output.
12357
12358 This filter accepts the following options:
12359
12360 @table @option
12361
12362 @item expr, e
12363 Set expression, which is evaluated for each input frame.
12364
12365 If the expression is evaluated to zero, the frame is discarded.
12366
12367 If the evaluation result is negative or NaN, the frame is sent to the
12368 first output; otherwise it is sent to the output with index
12369 @code{ceil(val)-1}, assuming that the input index starts from 0.
12370
12371 For example a value of @code{1.2} corresponds to the output with index
12372 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
12373
12374 @item outputs, n
12375 Set the number of outputs. The output to which to send the selected
12376 frame is based on the result of the evaluation. Default value is 1.
12377 @end table
12378
12379 The expression can contain the following constants:
12380
12381 @table @option
12382 @item n
12383 The (sequential) number of the filtered frame, starting from 0.
12384
12385 @item selected_n
12386 The (sequential) number of the selected frame, starting from 0.
12387
12388 @item prev_selected_n
12389 The sequential number of the last selected frame. It's NAN if undefined.
12390
12391 @item TB
12392 The timebase of the input timestamps.
12393
12394 @item pts
12395 The PTS (Presentation TimeStamp) of the filtered video frame,
12396 expressed in @var{TB} units. It's NAN if undefined.
12397
12398 @item t
12399 The PTS of the filtered video frame,
12400 expressed in seconds. It's NAN if undefined.
12401
12402 @item prev_pts
12403 The PTS of the previously filtered video frame. It's NAN if undefined.
12404
12405 @item prev_selected_pts
12406 The PTS of the last previously filtered video frame. It's NAN if undefined.
12407
12408 @item prev_selected_t
12409 The PTS of the last previously selected video frame. It's NAN if undefined.
12410
12411 @item start_pts
12412 The PTS of the first video frame in the video. It's NAN if undefined.
12413
12414 @item start_t
12415 The time of the first video frame in the video. It's NAN if undefined.
12416
12417 @item pict_type @emph{(video only)}
12418 The type of the filtered frame. It can assume one of the following
12419 values:
12420 @table @option
12421 @item I
12422 @item P
12423 @item B
12424 @item S
12425 @item SI
12426 @item SP
12427 @item BI
12428 @end table
12429
12430 @item interlace_type @emph{(video only)}
12431 The frame interlace type. It can assume one of the following values:
12432 @table @option
12433 @item PROGRESSIVE
12434 The frame is progressive (not interlaced).
12435 @item TOPFIRST
12436 The frame is top-field-first.
12437 @item BOTTOMFIRST
12438 The frame is bottom-field-first.
12439 @end table
12440
12441 @item consumed_sample_n @emph{(audio only)}
12442 the number of selected samples before the current frame
12443
12444 @item samples_n @emph{(audio only)}
12445 the number of samples in the current frame
12446
12447 @item sample_rate @emph{(audio only)}
12448 the input sample rate
12449
12450 @item key
12451 This is 1 if the filtered frame is a key-frame, 0 otherwise.
12452
12453 @item pos
12454 the position in the file of the filtered frame, -1 if the information
12455 is not available (e.g. for synthetic video)
12456
12457 @item scene @emph{(video only)}
12458 value between 0 and 1 to indicate a new scene; a low value reflects a low
12459 probability for the current frame to introduce a new scene, while a higher
12460 value means the current frame is more likely to be one (see the example below)
12461
12462 @end table
12463
12464 The default value of the select expression is "1".
12465
12466 @subsection Examples
12467
12468 @itemize
12469 @item
12470 Select all frames in input:
12471 @example
12472 select
12473 @end example
12474
12475 The example above is the same as:
12476 @example
12477 select=1
12478 @end example
12479
12480 @item
12481 Skip all frames:
12482 @example
12483 select=0
12484 @end example
12485
12486 @item
12487 Select only I-frames:
12488 @example
12489 select='eq(pict_type\,I)'
12490 @end example
12491
12492 @item
12493 Select one frame every 100:
12494 @example
12495 select='not(mod(n\,100))'
12496 @end example
12497
12498 @item
12499 Select only frames contained in the 10-20 time interval:
12500 @example
12501 select=between(t\,10\,20)
12502 @end example
12503
12504 @item
12505 Select only I frames contained in the 10-20 time interval:
12506 @example
12507 select=between(t\,10\,20)*eq(pict_type\,I)
12508 @end example
12509
12510 @item
12511 Select frames with a minimum distance of 10 seconds:
12512 @example
12513 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
12514 @end example
12515
12516 @item
12517 Use aselect to select only audio frames with samples number > 100:
12518 @example
12519 aselect='gt(samples_n\,100)'
12520 @end example
12521
12522 @item
12523 Create a mosaic of the first scenes:
12524 @example
12525 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
12526 @end example
12527
12528 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
12529 choice.
12530
12531 @item
12532 Send even and odd frames to separate outputs, and compose them:
12533 @example
12534 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
12535 @end example
12536 @end itemize
12537
12538 @section sendcmd, asendcmd
12539
12540 Send commands to filters in the filtergraph.
12541
12542 These filters read commands to be sent to other filters in the
12543 filtergraph.
12544
12545 @code{sendcmd} must be inserted between two video filters,
12546 @code{asendcmd} must be inserted between two audio filters, but apart
12547 from that they act the same way.
12548
12549 The specification of commands can be provided in the filter arguments
12550 with the @var{commands} option, or in a file specified by the
12551 @var{filename} option.
12552
12553 These filters accept the following options:
12554 @table @option
12555 @item commands, c
12556 Set the commands to be read and sent to the other filters.
12557 @item filename, f
12558 Set the filename of the commands to be read and sent to the other
12559 filters.
12560 @end table
12561
12562 @subsection Commands syntax
12563
12564 A commands description consists of a sequence of interval
12565 specifications, comprising a list of commands to be executed when a
12566 particular event related to that interval occurs. The occurring event
12567 is typically the current frame time entering or leaving a given time
12568 interval.
12569
12570 An interval is specified by the following syntax:
12571 @example
12572 @var{START}[-@var{END}] @var{COMMANDS};
12573 @end example
12574
12575 The time interval is specified by the @var{START} and @var{END} times.
12576 @var{END} is optional and defaults to the maximum time.
12577
12578 The current frame time is considered within the specified interval if
12579 it is included in the interval [@var{START}, @var{END}), that is when
12580 the time is greater or equal to @var{START} and is lesser than
12581 @var{END}.
12582
12583 @var{COMMANDS} consists of a sequence of one or more command
12584 specifications, separated by ",", relating to that interval.  The
12585 syntax of a command specification is given by:
12586 @example
12587 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
12588 @end example
12589
12590 @var{FLAGS} is optional and specifies the type of events relating to
12591 the time interval which enable sending the specified command, and must
12592 be a non-null sequence of identifier flags separated by "+" or "|" and
12593 enclosed between "[" and "]".
12594
12595 The following flags are recognized:
12596 @table @option
12597 @item enter
12598 The command is sent when the current frame timestamp enters the
12599 specified interval. In other words, the command is sent when the
12600 previous frame timestamp was not in the given interval, and the
12601 current is.
12602
12603 @item leave
12604 The command is sent when the current frame timestamp leaves the
12605 specified interval. In other words, the command is sent when the
12606 previous frame timestamp was in the given interval, and the
12607 current is not.
12608 @end table
12609
12610 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
12611 assumed.
12612
12613 @var{TARGET} specifies the target of the command, usually the name of
12614 the filter class or a specific filter instance name.
12615
12616 @var{COMMAND} specifies the name of the command for the target filter.
12617
12618 @var{ARG} is optional and specifies the optional list of argument for
12619 the given @var{COMMAND}.
12620
12621 Between one interval specification and another, whitespaces, or
12622 sequences of characters starting with @code{#} until the end of line,
12623 are ignored and can be used to annotate comments.
12624
12625 A simplified BNF description of the commands specification syntax
12626 follows:
12627 @example
12628 @var{COMMAND_FLAG}  ::= "enter" | "leave"
12629 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
12630 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
12631 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
12632 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
12633 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
12634 @end example
12635
12636 @subsection Examples
12637
12638 @itemize
12639 @item
12640 Specify audio tempo change at second 4:
12641 @example
12642 asendcmd=c='4.0 atempo tempo 1.5',atempo
12643 @end example
12644
12645 @item
12646 Specify a list of drawtext and hue commands in a file.
12647 @example
12648 # show text in the interval 5-10
12649 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
12650          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
12651
12652 # desaturate the image in the interval 15-20
12653 15.0-20.0 [enter] hue s 0,
12654           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
12655           [leave] hue s 1,
12656           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
12657
12658 # apply an exponential saturation fade-out effect, starting from time 25
12659 25 [enter] hue s exp(25-t)
12660 @end example
12661
12662 A filtergraph allowing to read and process the above command list
12663 stored in a file @file{test.cmd}, can be specified with:
12664 @example
12665 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
12666 @end example
12667 @end itemize
12668
12669 @anchor{setpts}
12670 @section setpts, asetpts
12671
12672 Change the PTS (presentation timestamp) of the input frames.
12673
12674 @code{setpts} works on video frames, @code{asetpts} on audio frames.
12675
12676 This filter accepts the following options:
12677
12678 @table @option
12679
12680 @item expr
12681 The expression which is evaluated for each frame to construct its timestamp.
12682
12683 @end table
12684
12685 The expression is evaluated through the eval API and can contain the following
12686 constants:
12687
12688 @table @option
12689 @item FRAME_RATE
12690 frame rate, only defined for constant frame-rate video
12691
12692 @item PTS
12693 The presentation timestamp in input
12694
12695 @item N
12696 The count of the input frame for video or the number of consumed samples,
12697 not including the current frame for audio, starting from 0.
12698
12699 @item NB_CONSUMED_SAMPLES
12700 The number of consumed samples, not including the current frame (only
12701 audio)
12702
12703 @item NB_SAMPLES, S
12704 The number of samples in the current frame (only audio)
12705
12706 @item SAMPLE_RATE, SR
12707 The audio sample rate.
12708
12709 @item STARTPTS
12710 The PTS of the first frame.
12711
12712 @item STARTT
12713 the time in seconds of the first frame
12714
12715 @item INTERLACED
12716 State whether the current frame is interlaced.
12717
12718 @item T
12719 the time in seconds of the current frame
12720
12721 @item POS
12722 original position in the file of the frame, or undefined if undefined
12723 for the current frame
12724
12725 @item PREV_INPTS
12726 The previous input PTS.
12727
12728 @item PREV_INT
12729 previous input time in seconds
12730
12731 @item PREV_OUTPTS
12732 The previous output PTS.
12733
12734 @item PREV_OUTT
12735 previous output time in seconds
12736
12737 @item RTCTIME
12738 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
12739 instead.
12740
12741 @item RTCSTART
12742 The wallclock (RTC) time at the start of the movie in microseconds.
12743
12744 @item TB
12745 The timebase of the input timestamps.
12746
12747 @end table
12748
12749 @subsection Examples
12750
12751 @itemize
12752 @item
12753 Start counting PTS from zero
12754 @example
12755 setpts=PTS-STARTPTS
12756 @end example
12757
12758 @item
12759 Apply fast motion effect:
12760 @example
12761 setpts=0.5*PTS
12762 @end example
12763
12764 @item
12765 Apply slow motion effect:
12766 @example
12767 setpts=2.0*PTS
12768 @end example
12769
12770 @item
12771 Set fixed rate of 25 frames per second:
12772 @example
12773 setpts=N/(25*TB)
12774 @end example
12775
12776 @item
12777 Set fixed rate 25 fps with some jitter:
12778 @example
12779 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
12780 @end example
12781
12782 @item
12783 Apply an offset of 10 seconds to the input PTS:
12784 @example
12785 setpts=PTS+10/TB
12786 @end example
12787
12788 @item
12789 Generate timestamps from a "live source" and rebase onto the current timebase:
12790 @example
12791 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
12792 @end example
12793
12794 @item
12795 Generate timestamps by counting samples:
12796 @example
12797 asetpts=N/SR/TB
12798 @end example
12799
12800 @end itemize
12801
12802 @section settb, asettb
12803
12804 Set the timebase to use for the output frames timestamps.
12805 It is mainly useful for testing timebase configuration.
12806
12807 It accepts the following parameters:
12808
12809 @table @option
12810
12811 @item expr, tb
12812 The expression which is evaluated into the output timebase.
12813
12814 @end table
12815
12816 The value for @option{tb} is an arithmetic expression representing a
12817 rational. The expression can contain the constants "AVTB" (the default
12818 timebase), "intb" (the input timebase) and "sr" (the sample rate,
12819 audio only). Default value is "intb".
12820
12821 @subsection Examples
12822
12823 @itemize
12824 @item
12825 Set the timebase to 1/25:
12826 @example
12827 settb=expr=1/25
12828 @end example
12829
12830 @item
12831 Set the timebase to 1/10:
12832 @example
12833 settb=expr=0.1
12834 @end example
12835
12836 @item
12837 Set the timebase to 1001/1000:
12838 @example
12839 settb=1+0.001
12840 @end example
12841
12842 @item
12843 Set the timebase to 2*intb:
12844 @example
12845 settb=2*intb
12846 @end example
12847
12848 @item
12849 Set the default timebase value:
12850 @example
12851 settb=AVTB
12852 @end example
12853 @end itemize
12854
12855 @section showcqt
12856 Convert input audio to a video output representing
12857 frequency spectrum logarithmically (using constant Q transform with
12858 Brown-Puckette algorithm), with musical tone scale, from E0 to D#10 (10 octaves).
12859
12860 The filter accepts the following options:
12861
12862 @table @option
12863 @item volume
12864 Specify transform volume (multiplier) expression. The expression can contain
12865 variables:
12866 @table @option
12867 @item frequency, freq, f
12868 the frequency where transform is evaluated
12869 @item timeclamp, tc
12870 value of timeclamp option
12871 @end table
12872 and functions:
12873 @table @option
12874 @item a_weighting(f)
12875 A-weighting of equal loudness
12876 @item b_weighting(f)
12877 B-weighting of equal loudness
12878 @item c_weighting(f)
12879 C-weighting of equal loudness
12880 @end table
12881 Default value is @code{16}.
12882
12883 @item tlength
12884 Specify transform length expression. The expression can contain variables:
12885 @table @option
12886 @item frequency, freq, f
12887 the frequency where transform is evaluated
12888 @item timeclamp, tc
12889 value of timeclamp option
12890 @end table
12891 Default value is @code{384/f*tc/(384/f+tc)}.
12892
12893 @item timeclamp
12894 Specify the transform timeclamp. At low frequency, there is trade-off between
12895 accuracy in time domain and frequency domain. If timeclamp is lower,
12896 event in time domain is represented more accurately (such as fast bass drum),
12897 otherwise event in frequency domain is represented more accurately
12898 (such as bass guitar). Acceptable value is [0.1, 1.0]. Default value is @code{0.17}.
12899
12900 @item coeffclamp
12901 Specify the transform coeffclamp. If coeffclamp is lower, transform is
12902 more accurate, otherwise transform is faster. Acceptable value is [0.1, 10.0].
12903 Default value is @code{1.0}.
12904
12905 @item gamma
12906 Specify gamma. Lower gamma makes the spectrum more contrast, higher gamma
12907 makes the spectrum having more range. Acceptable value is [1.0, 7.0].
12908 Default value is @code{3.0}.
12909
12910 @item gamma2
12911 Specify gamma of bargraph. Acceptable value is [1.0, 7.0].
12912 Default value is @code{1.0}.
12913
12914 @item fontfile
12915 Specify font file for use with freetype. If not specified, use embedded font.
12916
12917 @item fontcolor
12918 Specify font color expression. This is arithmetic expression that should return
12919 integer value 0xRRGGBB. The expression can contain variables:
12920 @table @option
12921 @item frequency, freq, f
12922 the frequency where transform is evaluated
12923 @item timeclamp, tc
12924 value of timeclamp option
12925 @end table
12926 and functions:
12927 @table @option
12928 @item midi(f)
12929 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
12930 @item r(x), g(x), b(x)
12931 red, green, and blue value of intensity x
12932 @end table
12933 Default value is @code{st(0, (midi(f)-59.5)/12);
12934 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
12935 r(1-ld(1)) + b(ld(1))}
12936
12937 @item fullhd
12938 If set to 1 (the default), the video size is 1920x1080 (full HD),
12939 if set to 0, the video size is 960x540. Use this option to make CPU usage lower.
12940
12941 @item fps
12942 Specify video fps. Default value is @code{25}.
12943
12944 @item count
12945 Specify number of transform per frame, so there are fps*count transforms
12946 per second. Note that audio data rate must be divisible by fps*count.
12947 Default value is @code{6}.
12948
12949 @end table
12950
12951 @subsection Examples
12952
12953 @itemize
12954 @item
12955 Playing audio while showing the spectrum:
12956 @example
12957 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
12958 @end example
12959
12960 @item
12961 Same as above, but with frame rate 30 fps:
12962 @example
12963 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
12964 @end example
12965
12966 @item
12967 Playing at 960x540 and lower CPU usage:
12968 @example
12969 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fullhd=0:count=3 [out0]'
12970 @end example
12971
12972 @item
12973 A1 and its harmonics: A1, A2, (near)E3, A3:
12974 @example
12975 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
12976                  asplit[a][out1]; [a] showcqt [out0]'
12977 @end example
12978
12979 @item
12980 Same as above, but with more accuracy in frequency domain (and slower):
12981 @example
12982 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
12983                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
12984 @end example
12985
12986 @item
12987 B-weighting of equal loudness
12988 @example
12989 volume=16*b_weighting(f)
12990 @end example
12991
12992 @item
12993 Lower Q factor
12994 @example
12995 tlength=100/f*tc/(100/f+tc)
12996 @end example
12997
12998 @item
12999 Custom fontcolor, C-note is colored green, others are colored blue
13000 @example
13001 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))'
13002 @end example
13003
13004 @item
13005 Custom gamma, now spectrum is linear to the amplitude.
13006 @example
13007 gamma=2:gamma2=2
13008 @end example
13009
13010 @end itemize
13011
13012 @section showfreqs
13013
13014 Convert input audio to video output representing the audio power spectrum.
13015 Audio amplitude is on Y-axis while frequency is on X-axis.
13016
13017 The filter accepts the following options:
13018
13019 @table @option
13020 @item size, s
13021 Specify size of video. For the syntax of this option, check the
13022 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13023 Default is @code{1024x512}.
13024
13025 @item mode
13026 Set display mode.
13027 This set how each frequency bin will be represented.
13028
13029 It accepts the following values:
13030 @table @samp
13031 @item line
13032 @item bar
13033 @item dot
13034 @end table
13035 Default is @code{bar}.
13036
13037 @item ascale
13038 Set amplitude scale.
13039
13040 It accepts the following values:
13041 @table @samp
13042 @item lin
13043 Linear scale.
13044
13045 @item sqrt
13046 Square root scale.
13047
13048 @item cbrt
13049 Cubic root scale.
13050
13051 @item log
13052 Logarithmic scale.
13053 @end table
13054 Default is @code{log}.
13055
13056 @item fscale
13057 Set frequency scale.
13058
13059 It accepts the following values:
13060 @table @samp
13061 @item lin
13062 Linear scale.
13063
13064 @item log
13065 Logarithmic scale.
13066
13067 @item rlog
13068 Reverse logarithmic scale.
13069 @end table
13070 Default is @code{lin}.
13071
13072 @item win_size
13073 Set window size.
13074
13075 It accepts the following values:
13076 @table @samp
13077 @item w16
13078 @item w32
13079 @item w64
13080 @item w128
13081 @item w256
13082 @item w512
13083 @item w1024
13084 @item w2048
13085 @item w4096
13086 @item w8192
13087 @item w16384
13088 @item w32768
13089 @item w65536
13090 @end table
13091 Default is @code{w2048}
13092
13093 @item win_func
13094 Set windowing function.
13095
13096 It accepts the following values:
13097 @table @samp
13098 @item rect
13099 @item bartlett
13100 @item hanning
13101 @item hamming
13102 @item blackman
13103 @item welch
13104 @item flattop
13105 @item bharris
13106 @item bnuttall
13107 @item bhann
13108 @item sine
13109 @item nuttall
13110 @end table
13111 Default is @code{hanning}.
13112
13113 @item overlap
13114 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
13115 which means optimal overlap for selected window function will be picked.
13116
13117 @item averaging
13118 Set time averaging. Setting this to 0 will display current maximal peaks.
13119 Default is @code{1}, which means time averaging is disabled.
13120
13121 @item color
13122 Specify list of colors separated by space or by '|' which will be used to
13123 draw channel frequencies. Unrecognized or missing colors will be replaced
13124 by white color.
13125 @end table
13126
13127 @section showspectrum
13128
13129 Convert input audio to a video output, representing the audio frequency
13130 spectrum.
13131
13132 The filter accepts the following options:
13133
13134 @table @option
13135 @item size, s
13136 Specify the video size for the output. For the syntax of this option, check the
13137 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13138 Default value is @code{640x512}.
13139
13140 @item slide
13141 Specify how the spectrum should slide along the window.
13142
13143 It accepts the following values:
13144 @table @samp
13145 @item replace
13146 the samples start again on the left when they reach the right
13147 @item scroll
13148 the samples scroll from right to left
13149 @item fullframe
13150 frames are only produced when the samples reach the right
13151 @end table
13152
13153 Default value is @code{replace}.
13154
13155 @item mode
13156 Specify display mode.
13157
13158 It accepts the following values:
13159 @table @samp
13160 @item combined
13161 all channels are displayed in the same row
13162 @item separate
13163 all channels are displayed in separate rows
13164 @end table
13165
13166 Default value is @samp{combined}.
13167
13168 @item color
13169 Specify display color mode.
13170
13171 It accepts the following values:
13172 @table @samp
13173 @item channel
13174 each channel is displayed in a separate color
13175 @item intensity
13176 each channel is is displayed using the same color scheme
13177 @end table
13178
13179 Default value is @samp{channel}.
13180
13181 @item scale
13182 Specify scale used for calculating intensity color values.
13183
13184 It accepts the following values:
13185 @table @samp
13186 @item lin
13187 linear
13188 @item sqrt
13189 square root, default
13190 @item cbrt
13191 cubic root
13192 @item log
13193 logarithmic
13194 @end table
13195
13196 Default value is @samp{sqrt}.
13197
13198 @item saturation
13199 Set saturation modifier for displayed colors. Negative values provide
13200 alternative color scheme. @code{0} is no saturation at all.
13201 Saturation must be in [-10.0, 10.0] range.
13202 Default value is @code{1}.
13203
13204 @item win_func
13205 Set window function.
13206
13207 It accepts the following values:
13208 @table @samp
13209 @item none
13210 No samples pre-processing (do not expect this to be faster)
13211 @item hann
13212 Hann window
13213 @item hamming
13214 Hamming window
13215 @item blackman
13216 Blackman window
13217 @end table
13218
13219 Default value is @code{hann}.
13220 @end table
13221
13222 The usage is very similar to the showwaves filter; see the examples in that
13223 section.
13224
13225 @subsection Examples
13226
13227 @itemize
13228 @item
13229 Large window with logarithmic color scaling:
13230 @example
13231 showspectrum=s=1280x480:scale=log
13232 @end example
13233
13234 @item
13235 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
13236 @example
13237 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
13238              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
13239 @end example
13240 @end itemize
13241
13242 @section showvolume
13243
13244 Convert input audio volume to a video output.
13245
13246 The filter accepts the following options:
13247
13248 @table @option
13249 @item rate, r
13250 Set video rate.
13251
13252 @item b
13253 Set border width, allowed range is [0, 5]. Default is 1.
13254
13255 @item w
13256 Set channel width, allowed range is [40, 1080]. Default is 400.
13257
13258 @item h
13259 Set channel height, allowed range is [1, 100]. Default is 20.
13260
13261 @item f
13262 Set fade, allowed range is [1, 255]. Default is 20.
13263
13264 @item c
13265 Set volume color expression.
13266
13267 The expression can use the following variables:
13268
13269 @table @option
13270 @item VOLUME
13271 Current max volume of channel in dB.
13272
13273 @item CHANNEL
13274 Current channel number, starting from 0.
13275 @end table
13276
13277 @item t
13278 If set, displays channel names. Default is enabled.
13279 @end table
13280
13281 @section showwaves
13282
13283 Convert input audio to a video output, representing the samples waves.
13284
13285 The filter accepts the following options:
13286
13287 @table @option
13288 @item size, s
13289 Specify the video size for the output. For the syntax of this option, check the
13290 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13291 Default value is @code{600x240}.
13292
13293 @item mode
13294 Set display mode.
13295
13296 Available values are:
13297 @table @samp
13298 @item point
13299 Draw a point for each sample.
13300
13301 @item line
13302 Draw a vertical line for each sample.
13303
13304 @item p2p
13305 Draw a point for each sample and a line between them.
13306
13307 @item cline
13308 Draw a centered vertical line for each sample.
13309 @end table
13310
13311 Default value is @code{point}.
13312
13313 @item n
13314 Set the number of samples which are printed on the same column. A
13315 larger value will decrease the frame rate. Must be a positive
13316 integer. This option can be set only if the value for @var{rate}
13317 is not explicitly specified.
13318
13319 @item rate, r
13320 Set the (approximate) output frame rate. This is done by setting the
13321 option @var{n}. Default value is "25".
13322
13323 @item split_channels
13324 Set if channels should be drawn separately or overlap. Default value is 0.
13325
13326 @end table
13327
13328 @subsection Examples
13329
13330 @itemize
13331 @item
13332 Output the input file audio and the corresponding video representation
13333 at the same time:
13334 @example
13335 amovie=a.mp3,asplit[out0],showwaves[out1]
13336 @end example
13337
13338 @item
13339 Create a synthetic signal and show it with showwaves, forcing a
13340 frame rate of 30 frames per second:
13341 @example
13342 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
13343 @end example
13344 @end itemize
13345
13346 @section showwavespic
13347
13348 Convert input audio to a single video frame, representing the samples waves.
13349
13350 The filter accepts the following options:
13351
13352 @table @option
13353 @item size, s
13354 Specify the video size for the output. For the syntax of this option, check the
13355 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13356 Default value is @code{600x240}.
13357
13358 @item split_channels
13359 Set if channels should be drawn separately or overlap. Default value is 0.
13360 @end table
13361
13362 @subsection Examples
13363
13364 @itemize
13365 @item
13366 Extract a channel split representation of the wave form of a whole audio track
13367 in a 1024x800 picture using @command{ffmpeg}:
13368 @example
13369 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
13370 @end example
13371 @end itemize
13372
13373 @section split, asplit
13374
13375 Split input into several identical outputs.
13376
13377 @code{asplit} works with audio input, @code{split} with video.
13378
13379 The filter accepts a single parameter which specifies the number of outputs. If
13380 unspecified, it defaults to 2.
13381
13382 @subsection Examples
13383
13384 @itemize
13385 @item
13386 Create two separate outputs from the same input:
13387 @example
13388 [in] split [out0][out1]
13389 @end example
13390
13391 @item
13392 To create 3 or more outputs, you need to specify the number of
13393 outputs, like in:
13394 @example
13395 [in] asplit=3 [out0][out1][out2]
13396 @end example
13397
13398 @item
13399 Create two separate outputs from the same input, one cropped and
13400 one padded:
13401 @example
13402 [in] split [splitout1][splitout2];
13403 [splitout1] crop=100:100:0:0    [cropout];
13404 [splitout2] pad=200:200:100:100 [padout];
13405 @end example
13406
13407 @item
13408 Create 5 copies of the input audio with @command{ffmpeg}:
13409 @example
13410 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
13411 @end example
13412 @end itemize
13413
13414 @section zmq, azmq
13415
13416 Receive commands sent through a libzmq client, and forward them to
13417 filters in the filtergraph.
13418
13419 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
13420 must be inserted between two video filters, @code{azmq} between two
13421 audio filters.
13422
13423 To enable these filters you need to install the libzmq library and
13424 headers and configure FFmpeg with @code{--enable-libzmq}.
13425
13426 For more information about libzmq see:
13427 @url{http://www.zeromq.org/}
13428
13429 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
13430 receives messages sent through a network interface defined by the
13431 @option{bind_address} option.
13432
13433 The received message must be in the form:
13434 @example
13435 @var{TARGET} @var{COMMAND} [@var{ARG}]
13436 @end example
13437
13438 @var{TARGET} specifies the target of the command, usually the name of
13439 the filter class or a specific filter instance name.
13440
13441 @var{COMMAND} specifies the name of the command for the target filter.
13442
13443 @var{ARG} is optional and specifies the optional argument list for the
13444 given @var{COMMAND}.
13445
13446 Upon reception, the message is processed and the corresponding command
13447 is injected into the filtergraph. Depending on the result, the filter
13448 will send a reply to the client, adopting the format:
13449 @example
13450 @var{ERROR_CODE} @var{ERROR_REASON}
13451 @var{MESSAGE}
13452 @end example
13453
13454 @var{MESSAGE} is optional.
13455
13456 @subsection Examples
13457
13458 Look at @file{tools/zmqsend} for an example of a zmq client which can
13459 be used to send commands processed by these filters.
13460
13461 Consider the following filtergraph generated by @command{ffplay}
13462 @example
13463 ffplay -dumpgraph 1 -f lavfi "
13464 color=s=100x100:c=red  [l];
13465 color=s=100x100:c=blue [r];
13466 nullsrc=s=200x100, zmq [bg];
13467 [bg][l]   overlay      [bg+l];
13468 [bg+l][r] overlay=x=100 "
13469 @end example
13470
13471 To change the color of the left side of the video, the following
13472 command can be used:
13473 @example
13474 echo Parsed_color_0 c yellow | tools/zmqsend
13475 @end example
13476
13477 To change the right side:
13478 @example
13479 echo Parsed_color_1 c pink | tools/zmqsend
13480 @end example
13481
13482 @c man end MULTIMEDIA FILTERS
13483
13484 @chapter Multimedia Sources
13485 @c man begin MULTIMEDIA SOURCES
13486
13487 Below is a description of the currently available multimedia sources.
13488
13489 @section amovie
13490
13491 This is the same as @ref{movie} source, except it selects an audio
13492 stream by default.
13493
13494 @anchor{movie}
13495 @section movie
13496
13497 Read audio and/or video stream(s) from a movie container.
13498
13499 It accepts the following parameters:
13500
13501 @table @option
13502 @item filename
13503 The name of the resource to read (not necessarily a file; it can also be a
13504 device or a stream accessed through some protocol).
13505
13506 @item format_name, f
13507 Specifies the format assumed for the movie to read, and can be either
13508 the name of a container or an input device. If not specified, the
13509 format is guessed from @var{movie_name} or by probing.
13510
13511 @item seek_point, sp
13512 Specifies the seek point in seconds. The frames will be output
13513 starting from this seek point. The parameter is evaluated with
13514 @code{av_strtod}, so the numerical value may be suffixed by an IS
13515 postfix. The default value is "0".
13516
13517 @item streams, s
13518 Specifies the streams to read. Several streams can be specified,
13519 separated by "+". The source will then have as many outputs, in the
13520 same order. The syntax is explained in the ``Stream specifiers''
13521 section in the ffmpeg manual. Two special names, "dv" and "da" specify
13522 respectively the default (best suited) video and audio stream. Default
13523 is "dv", or "da" if the filter is called as "amovie".
13524
13525 @item stream_index, si
13526 Specifies the index of the video stream to read. If the value is -1,
13527 the most suitable video stream will be automatically selected. The default
13528 value is "-1". Deprecated. If the filter is called "amovie", it will select
13529 audio instead of video.
13530
13531 @item loop
13532 Specifies how many times to read the stream in sequence.
13533 If the value is less than 1, the stream will be read again and again.
13534 Default value is "1".
13535
13536 Note that when the movie is looped the source timestamps are not
13537 changed, so it will generate non monotonically increasing timestamps.
13538 @end table
13539
13540 It allows overlaying a second video on top of the main input of
13541 a filtergraph, as shown in this graph:
13542 @example
13543 input -----------> deltapts0 --> overlay --> output
13544                                     ^
13545                                     |
13546 movie --> scale--> deltapts1 -------+
13547 @end example
13548 @subsection Examples
13549
13550 @itemize
13551 @item
13552 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
13553 on top of the input labelled "in":
13554 @example
13555 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
13556 [in] setpts=PTS-STARTPTS [main];
13557 [main][over] overlay=16:16 [out]
13558 @end example
13559
13560 @item
13561 Read from a video4linux2 device, and overlay it on top of the input
13562 labelled "in":
13563 @example
13564 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
13565 [in] setpts=PTS-STARTPTS [main];
13566 [main][over] overlay=16:16 [out]
13567 @end example
13568
13569 @item
13570 Read the first video stream and the audio stream with id 0x81 from
13571 dvd.vob; the video is connected to the pad named "video" and the audio is
13572 connected to the pad named "audio":
13573 @example
13574 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
13575 @end example
13576 @end itemize
13577
13578 @c man end MULTIMEDIA SOURCES