]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit 'e80307140f736f593ee643affa015333d7c5e27f'
[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 acompressor
322
323 A compressor is mainly used to reduce the dynamic range of a signal.
324 Especially modern music is mostly compressed at a high ratio to
325 improve the overall loudness. It's done to get the highest attention
326 of a listener, "fatten" the sound and bring more "power" to the track.
327 If a signal is compressed too much it may sound dull or "dead"
328 afterwards or it may start to "pump" (which could be a powerful effect
329 but can also destroy a track completely).
330 The right compression is the key to reach a professional sound and is
331 the high art of mixing and mastering. Because of its complex settings
332 it may take a long time to get the right feeling for this kind of effect.
333
334 Compression is done by detecting the volume above a chosen level
335 @code{threshold} and dividing it by the factor set with @code{ratio}.
336 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
337 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
338 the signal would cause distortion of the waveform the reduction can be
339 levelled over the time. This is done by setting "Attack" and "Release".
340 @code{attack} determines how long the signal has to rise above the threshold
341 before any reduction will occur and @code{release} sets the time the signal
342 has to fall below the threshold to reduce the reduction again. Shorter signals
343 than the chosen attack time will be left untouched.
344 The overall reduction of the signal can be made up afterwards with the
345 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
346 raising the makeup to this level results in a signal twice as loud than the
347 source. To gain a softer entry in the compression the @code{knee} flattens the
348 hard edge at the threshold in the range of the chosen decibels.
349
350 The filter accepts the following options:
351
352 @table @option
353 @item level_in
354 Set input gain. Default is 1. Range is between 0.015625 and 64.
355
356 @item threshold
357 If a signal of second stream rises above this level it will affect the gain
358 reduction of the first stream.
359 By default it is 0.125. Range is between 0.00097563 and 1.
360
361 @item ratio
362 Set a ratio by which the signal is reduced. 1:2 means that if the level
363 rose 4dB above the threshold, it will be only 2dB above after the reduction.
364 Default is 2. Range is between 1 and 20.
365
366 @item attack
367 Amount of milliseconds the signal has to rise above the threshold before gain
368 reduction starts. Default is 20. Range is between 0.01 and 2000.
369
370 @item release
371 Amount of milliseconds the signal has to fall below the threshold before
372 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
373
374 @item makeup
375 Set the amount by how much signal will be amplified after processing.
376 Default is 2. Range is from 1 and 64.
377
378 @item knee
379 Curve the sharp knee around the threshold to enter gain reduction more softly.
380 Default is 2.82843. Range is between 1 and 8.
381
382 @item link
383 Choose if the @code{average} level between all channels of input stream
384 or the louder(@code{maximum}) channel of input stream affects the
385 reduction. Default is @code{average}.
386
387 @item detection
388 Should the exact signal be taken in case of @code{peak} or an RMS one in case
389 of @code{rms}. Default is @code{rms} which is mostly smoother.
390
391 @item mix
392 How much to use compressed signal in output. Default is 1.
393 Range is between 0 and 1.
394 @end table
395
396 @section acrossfade
397
398 Apply cross fade from one input audio stream to another input audio stream.
399 The cross fade is applied for specified duration near the end of first stream.
400
401 The filter accepts the following options:
402
403 @table @option
404 @item nb_samples, ns
405 Specify the number of samples for which the cross fade effect has to last.
406 At the end of the cross fade effect the first input audio will be completely
407 silent. Default is 44100.
408
409 @item duration, d
410 Specify the duration of the cross fade effect. See
411 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
412 for the accepted syntax.
413 By default the duration is determined by @var{nb_samples}.
414 If set this option is used instead of @var{nb_samples}.
415
416 @item overlap, o
417 Should first stream end overlap with second stream start. Default is enabled.
418
419 @item curve1
420 Set curve for cross fade transition for first stream.
421
422 @item curve2
423 Set curve for cross fade transition for second stream.
424
425 For description of available curve types see @ref{afade} filter description.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Cross fade from one input to another:
433 @example
434 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
435 @end example
436
437 @item
438 Cross fade from one input to another but without overlapping:
439 @example
440 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
441 @end example
442 @end itemize
443
444 @section adelay
445
446 Delay one or more audio channels.
447
448 Samples in delayed channel are filled with silence.
449
450 The filter accepts the following option:
451
452 @table @option
453 @item delays
454 Set list of delays in milliseconds for each channel separated by '|'.
455 At least one delay greater than 0 should be provided.
456 Unused delays will be silently ignored. If number of given delays is
457 smaller than number of channels all remaining channels will not be delayed.
458 @end table
459
460 @subsection Examples
461
462 @itemize
463 @item
464 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
465 the second channel (and any other channels that may be present) unchanged.
466 @example
467 adelay=1500|0|500
468 @end example
469 @end itemize
470
471 @section aecho
472
473 Apply echoing to the input audio.
474
475 Echoes are reflected sound and can occur naturally amongst mountains
476 (and sometimes large buildings) when talking or shouting; digital echo
477 effects emulate this behaviour and are often used to help fill out the
478 sound of a single instrument or vocal. The time difference between the
479 original signal and the reflection is the @code{delay}, and the
480 loudness of the reflected signal is the @code{decay}.
481 Multiple echoes can have different delays and decays.
482
483 A description of the accepted parameters follows.
484
485 @table @option
486 @item in_gain
487 Set input gain of reflected signal. Default is @code{0.6}.
488
489 @item out_gain
490 Set output gain of reflected signal. Default is @code{0.3}.
491
492 @item delays
493 Set list of time intervals in milliseconds between original signal and reflections
494 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
495 Default is @code{1000}.
496
497 @item decays
498 Set list of loudnesses of reflected signals separated by '|'.
499 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
500 Default is @code{0.5}.
501 @end table
502
503 @subsection Examples
504
505 @itemize
506 @item
507 Make it sound as if there are twice as many instruments as are actually playing:
508 @example
509 aecho=0.8:0.88:60:0.4
510 @end example
511
512 @item
513 If delay is very short, then it sound like a (metallic) robot playing music:
514 @example
515 aecho=0.8:0.88:6:0.4
516 @end example
517
518 @item
519 A longer delay will sound like an open air concert in the mountains:
520 @example
521 aecho=0.8:0.9:1000:0.3
522 @end example
523
524 @item
525 Same as above but with one more mountain:
526 @example
527 aecho=0.8:0.9:1000|1800:0.3|0.25
528 @end example
529 @end itemize
530
531 @section aemphasis
532 Audio emphasis filter creates or restores material directly taken from LPs or
533 emphased CDs with different filter curves. E.g. to store music on vinyl the
534 signal has to be altered by a filter first to even out the disadvantages of
535 this recording medium.
536 Once the material is played back the inverse filter has to be applied to
537 restore the distortion of the frequency response.
538
539 The filter accepts the following options:
540
541 @table @option
542 @item level_in
543 Set input gain.
544
545 @item level_out
546 Set output gain.
547
548 @item mode
549 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
550 use @code{production} mode. Default is @code{reproduction} mode.
551
552 @item type
553 Set filter type. Selects medium. Can be one of the following:
554
555 @table @option
556 @item col
557 select Columbia.
558 @item emi
559 select EMI.
560 @item bsi
561 select BSI (78RPM).
562 @item riaa
563 select RIAA.
564 @item cd
565 select Compact Disc (CD).
566 @item 50fm
567 select 50µs (FM).
568 @item 75fm
569 select 75µs (FM).
570 @item 50kf
571 select 50µs (FM-KF).
572 @item 75kf
573 select 75µs (FM-KF).
574 @end table
575 @end table
576
577 @section aeval
578
579 Modify an audio signal according to the specified expressions.
580
581 This filter accepts one or more expressions (one for each channel),
582 which are evaluated and used to modify a corresponding audio signal.
583
584 It accepts the following parameters:
585
586 @table @option
587 @item exprs
588 Set the '|'-separated expressions list for each separate channel. If
589 the number of input channels is greater than the number of
590 expressions, the last specified expression is used for the remaining
591 output channels.
592
593 @item channel_layout, c
594 Set output channel layout. If not specified, the channel layout is
595 specified by the number of expressions. If set to @samp{same}, it will
596 use by default the same input channel layout.
597 @end table
598
599 Each expression in @var{exprs} can contain the following constants and functions:
600
601 @table @option
602 @item ch
603 channel number of the current expression
604
605 @item n
606 number of the evaluated sample, starting from 0
607
608 @item s
609 sample rate
610
611 @item t
612 time of the evaluated sample expressed in seconds
613
614 @item nb_in_channels
615 @item nb_out_channels
616 input and output number of channels
617
618 @item val(CH)
619 the value of input channel with number @var{CH}
620 @end table
621
622 Note: this filter is slow. For faster processing you should use a
623 dedicated filter.
624
625 @subsection Examples
626
627 @itemize
628 @item
629 Half volume:
630 @example
631 aeval=val(ch)/2:c=same
632 @end example
633
634 @item
635 Invert phase of the second channel:
636 @example
637 aeval=val(0)|-val(1)
638 @end example
639 @end itemize
640
641 @anchor{afade}
642 @section afade
643
644 Apply fade-in/out effect to input audio.
645
646 A description of the accepted parameters follows.
647
648 @table @option
649 @item type, t
650 Specify the effect type, can be either @code{in} for fade-in, or
651 @code{out} for a fade-out effect. Default is @code{in}.
652
653 @item start_sample, ss
654 Specify the number of the start sample for starting to apply the fade
655 effect. Default is 0.
656
657 @item nb_samples, ns
658 Specify the number of samples for which the fade effect has to last. At
659 the end of the fade-in effect the output audio will have the same
660 volume as the input audio, at the end of the fade-out transition
661 the output audio will be silence. Default is 44100.
662
663 @item start_time, st
664 Specify the start time of the fade effect. Default is 0.
665 The value must be specified as a time duration; see
666 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
667 for the accepted syntax.
668 If set this option is used instead of @var{start_sample}.
669
670 @item duration, d
671 Specify the duration of the fade effect. See
672 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
673 for the accepted syntax.
674 At the end of the fade-in effect the output audio will have the same
675 volume as the input audio, at the end of the fade-out transition
676 the output audio will be silence.
677 By default the duration is determined by @var{nb_samples}.
678 If set this option is used instead of @var{nb_samples}.
679
680 @item curve
681 Set curve for fade transition.
682
683 It accepts the following values:
684 @table @option
685 @item tri
686 select triangular, linear slope (default)
687 @item qsin
688 select quarter of sine wave
689 @item hsin
690 select half of sine wave
691 @item esin
692 select exponential sine wave
693 @item log
694 select logarithmic
695 @item ipar
696 select inverted parabola
697 @item qua
698 select quadratic
699 @item cub
700 select cubic
701 @item squ
702 select square root
703 @item cbr
704 select cubic root
705 @item par
706 select parabola
707 @item exp
708 select exponential
709 @item iqsin
710 select inverted quarter of sine wave
711 @item ihsin
712 select inverted half of sine wave
713 @item dese
714 select double-exponential seat
715 @item desi
716 select double-exponential sigmoid
717 @end table
718 @end table
719
720 @subsection Examples
721
722 @itemize
723 @item
724 Fade in first 15 seconds of audio:
725 @example
726 afade=t=in:ss=0:d=15
727 @end example
728
729 @item
730 Fade out last 25 seconds of a 900 seconds audio:
731 @example
732 afade=t=out:st=875:d=25
733 @end example
734 @end itemize
735
736 @section afftfilt
737 Apply arbitrary expressions to samples in frequency domain.
738
739 @table @option
740 @item real
741 Set frequency domain real expression for each separate channel separated
742 by '|'. Default is "1".
743 If the number of input channels is greater than the number of
744 expressions, the last specified expression is used for the remaining
745 output channels.
746
747 @item imag
748 Set frequency domain imaginary expression for each separate channel
749 separated by '|'. If not set, @var{real} option is used.
750
751 Each expression in @var{real} and @var{imag} can contain the following
752 constants:
753
754 @table @option
755 @item sr
756 sample rate
757
758 @item b
759 current frequency bin number
760
761 @item nb
762 number of available bins
763
764 @item ch
765 channel number of the current expression
766
767 @item chs
768 number of channels
769
770 @item pts
771 current frame pts
772 @end table
773
774 @item win_size
775 Set window size.
776
777 It accepts the following values:
778 @table @samp
779 @item w16
780 @item w32
781 @item w64
782 @item w128
783 @item w256
784 @item w512
785 @item w1024
786 @item w2048
787 @item w4096
788 @item w8192
789 @item w16384
790 @item w32768
791 @item w65536
792 @end table
793 Default is @code{w4096}
794
795 @item win_func
796 Set window function. Default is @code{hann}.
797
798 @item overlap
799 Set window overlap. If set to 1, the recommended overlap for selected
800 window function will be picked. Default is @code{0.75}.
801 @end table
802
803 @subsection Examples
804
805 @itemize
806 @item
807 Leave almost only low frequencies in audio:
808 @example
809 afftfilt="1-clip((b/nb)*b,0,1)"
810 @end example
811 @end itemize
812
813 @anchor{aformat}
814 @section aformat
815
816 Set output format constraints for the input audio. The framework will
817 negotiate the most appropriate format to minimize conversions.
818
819 It accepts the following parameters:
820 @table @option
821
822 @item sample_fmts
823 A '|'-separated list of requested sample formats.
824
825 @item sample_rates
826 A '|'-separated list of requested sample rates.
827
828 @item channel_layouts
829 A '|'-separated list of requested channel layouts.
830
831 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
832 for the required syntax.
833 @end table
834
835 If a parameter is omitted, all values are allowed.
836
837 Force the output to either unsigned 8-bit or signed 16-bit stereo
838 @example
839 aformat=sample_fmts=u8|s16:channel_layouts=stereo
840 @end example
841
842 @section agate
843
844 A gate is mainly used to reduce lower parts of a signal. This kind of signal
845 processing reduces disturbing noise between useful signals.
846
847 Gating is done by detecting the volume below a chosen level @var{threshold}
848 and divide it by the factor set with @var{ratio}. The bottom of the noise
849 floor is set via @var{range}. Because an exact manipulation of the signal
850 would cause distortion of the waveform the reduction can be levelled over
851 time. This is done by setting @var{attack} and @var{release}.
852
853 @var{attack} determines how long the signal has to fall below the threshold
854 before any reduction will occur and @var{release} sets the time the signal
855 has to raise above the threshold to reduce the reduction again.
856 Shorter signals than the chosen attack time will be left untouched.
857
858 @table @option
859 @item level_in
860 Set input level before filtering.
861 Default is 1. Allowed range is from 0.015625 to 64.
862
863 @item range
864 Set the level of gain reduction when the signal is below the threshold.
865 Default is 0.06125. Allowed range is from 0 to 1.
866
867 @item threshold
868 If a signal rises above this level the gain reduction is released.
869 Default is 0.125. Allowed range is from 0 to 1.
870
871 @item ratio
872 Set a ratio about which the signal is reduced.
873 Default is 2. Allowed range is from 1 to 9000.
874
875 @item attack
876 Amount of milliseconds the signal has to rise above the threshold before gain
877 reduction stops.
878 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
879
880 @item release
881 Amount of milliseconds the signal has to fall below the threshold before the
882 reduction is increased again. Default is 250 milliseconds.
883 Allowed range is from 0.01 to 9000.
884
885 @item makeup
886 Set amount of amplification of signal after processing.
887 Default is 1. Allowed range is from 1 to 64.
888
889 @item knee
890 Curve the sharp knee around the threshold to enter gain reduction more softly.
891 Default is 2.828427125. Allowed range is from 1 to 8.
892
893 @item detection
894 Choose if exact signal should be taken for detection or an RMS like one.
895 Default is rms. Can be peak or rms.
896
897 @item link
898 Choose if the average level between all channels or the louder channel affects
899 the reduction.
900 Default is average. Can be average or maximum.
901 @end table
902
903 @section alimiter
904
905 The limiter prevents input signal from raising over a desired threshold.
906 This limiter uses lookahead technology to prevent your signal from distorting.
907 It means that there is a small delay after signal is processed. Keep in mind
908 that the delay it produces is the attack time you set.
909
910 The filter accepts the following options:
911
912 @table @option
913 @item level_in
914 Set input gain. Default is 1.
915
916 @item level_out
917 Set output gain. Default is 1.
918
919 @item limit
920 Don't let signals above this level pass the limiter. Default is 1.
921
922 @item attack
923 The limiter will reach its attenuation level in this amount of time in
924 milliseconds. Default is 5 milliseconds.
925
926 @item release
927 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
928 Default is 50 milliseconds.
929
930 @item asc
931 When gain reduction is always needed ASC takes care of releasing to an
932 average reduction level rather than reaching a reduction of 0 in the release
933 time.
934
935 @item asc_level
936 Select how much the release time is affected by ASC, 0 means nearly no changes
937 in release time while 1 produces higher release times.
938
939 @item level
940 Auto level output signal. Default is enabled.
941 This normalizes audio back to 0dB if enabled.
942 @end table
943
944 Depending on picked setting it is recommended to upsample input 2x or 4x times
945 with @ref{aresample} before applying this filter.
946
947 @section allpass
948
949 Apply a two-pole all-pass filter with central frequency (in Hz)
950 @var{frequency}, and filter-width @var{width}.
951 An all-pass filter changes the audio's frequency to phase relationship
952 without changing its frequency to amplitude relationship.
953
954 The filter accepts the following options:
955
956 @table @option
957 @item frequency, f
958 Set frequency in Hz.
959
960 @item width_type
961 Set method to specify band-width of filter.
962 @table @option
963 @item h
964 Hz
965 @item q
966 Q-Factor
967 @item o
968 octave
969 @item s
970 slope
971 @end table
972
973 @item width, w
974 Specify the band-width of a filter in width_type units.
975 @end table
976
977 @anchor{amerge}
978 @section amerge
979
980 Merge two or more audio streams into a single multi-channel stream.
981
982 The filter accepts the following options:
983
984 @table @option
985
986 @item inputs
987 Set the number of inputs. Default is 2.
988
989 @end table
990
991 If the channel layouts of the inputs are disjoint, and therefore compatible,
992 the channel layout of the output will be set accordingly and the channels
993 will be reordered as necessary. If the channel layouts of the inputs are not
994 disjoint, the output will have all the channels of the first input then all
995 the channels of the second input, in that order, and the channel layout of
996 the output will be the default value corresponding to the total number of
997 channels.
998
999 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1000 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1001 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1002 first input, b1 is the first channel of the second input).
1003
1004 On the other hand, if both input are in stereo, the output channels will be
1005 in the default order: a1, a2, b1, b2, and the channel layout will be
1006 arbitrarily set to 4.0, which may or may not be the expected value.
1007
1008 All inputs must have the same sample rate, and format.
1009
1010 If inputs do not have the same duration, the output will stop with the
1011 shortest.
1012
1013 @subsection Examples
1014
1015 @itemize
1016 @item
1017 Merge two mono files into a stereo stream:
1018 @example
1019 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1020 @end example
1021
1022 @item
1023 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1024 @example
1025 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
1026 @end example
1027 @end itemize
1028
1029 @section amix
1030
1031 Mixes multiple audio inputs into a single output.
1032
1033 Note that this filter only supports float samples (the @var{amerge}
1034 and @var{pan} audio filters support many formats). If the @var{amix}
1035 input has integer samples then @ref{aresample} will be automatically
1036 inserted to perform the conversion to float samples.
1037
1038 For example
1039 @example
1040 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1041 @end example
1042 will mix 3 input audio streams to a single output with the same duration as the
1043 first input and a dropout transition time of 3 seconds.
1044
1045 It accepts the following parameters:
1046 @table @option
1047
1048 @item inputs
1049 The number of inputs. If unspecified, it defaults to 2.
1050
1051 @item duration
1052 How to determine the end-of-stream.
1053 @table @option
1054
1055 @item longest
1056 The duration of the longest input. (default)
1057
1058 @item shortest
1059 The duration of the shortest input.
1060
1061 @item first
1062 The duration of the first input.
1063
1064 @end table
1065
1066 @item dropout_transition
1067 The transition time, in seconds, for volume renormalization when an input
1068 stream ends. The default value is 2 seconds.
1069
1070 @end table
1071
1072 @section anequalizer
1073
1074 High-order parametric multiband equalizer for each channel.
1075
1076 It accepts the following parameters:
1077 @table @option
1078 @item params
1079
1080 This option string is in format:
1081 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1082 Each equalizer band is separated by '|'.
1083
1084 @table @option
1085 @item chn
1086 Set channel number to which equalization will be applied.
1087 If input doesn't have that channel the entry is ignored.
1088
1089 @item cf
1090 Set central frequency for band.
1091 If input doesn't have that frequency the entry is ignored.
1092
1093 @item w
1094 Set band width in hertz.
1095
1096 @item g
1097 Set band gain in dB.
1098
1099 @item f
1100 Set filter type for band, optional, can be:
1101
1102 @table @samp
1103 @item 0
1104 Butterworth, this is default.
1105
1106 @item 1
1107 Chebyshev type 1.
1108
1109 @item 2
1110 Chebyshev type 2.
1111 @end table
1112 @end table
1113
1114 @item curves
1115 With this option activated frequency response of anequalizer is displayed
1116 in video stream.
1117
1118 @item size
1119 Set video stream size. Only useful if curves option is activated.
1120
1121 @item mgain
1122 Set max gain that will be displayed. Only useful if curves option is activated.
1123 Setting this to reasonable value allows to display gain which is derived from
1124 neighbour bands which are too close to each other and thus produce higher gain
1125 when both are activated.
1126
1127 @item fscale
1128 Set frequency scale used to draw frequency response in video output.
1129 Can be linear or logarithmic. Default is logarithmic.
1130
1131 @item colors
1132 Set color for each channel curve which is going to be displayed in video stream.
1133 This is list of color names separated by space or by '|'.
1134 Unrecognised or missing colors will be replaced by white color.
1135 @end table
1136
1137 @subsection Examples
1138
1139 @itemize
1140 @item
1141 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1142 for first 2 channels using Chebyshev type 1 filter:
1143 @example
1144 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1145 @end example
1146 @end itemize
1147
1148 @subsection Commands
1149
1150 This filter supports the following commands:
1151 @table @option
1152 @item change
1153 Alter existing filter parameters.
1154 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1155
1156 @var{fN} is existing filter number, starting from 0, if no such filter is available
1157 error is returned.
1158 @var{freq} set new frequency parameter.
1159 @var{width} set new width parameter in herz.
1160 @var{gain} set new gain parameter in dB.
1161
1162 Full filter invocation with asendcmd may look like this:
1163 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1164 @end table
1165
1166 @section anull
1167
1168 Pass the audio source unchanged to the output.
1169
1170 @section apad
1171
1172 Pad the end of an audio stream with silence.
1173
1174 This can be used together with @command{ffmpeg} @option{-shortest} to
1175 extend audio streams to the same length as the video stream.
1176
1177 A description of the accepted options follows.
1178
1179 @table @option
1180 @item packet_size
1181 Set silence packet size. Default value is 4096.
1182
1183 @item pad_len
1184 Set the number of samples of silence to add to the end. After the
1185 value is reached, the stream is terminated. This option is mutually
1186 exclusive with @option{whole_len}.
1187
1188 @item whole_len
1189 Set the minimum total number of samples in the output audio stream. If
1190 the value is longer than the input audio length, silence is added to
1191 the end, until the value is reached. This option is mutually exclusive
1192 with @option{pad_len}.
1193 @end table
1194
1195 If neither the @option{pad_len} nor the @option{whole_len} option is
1196 set, the filter will add silence to the end of the input stream
1197 indefinitely.
1198
1199 @subsection Examples
1200
1201 @itemize
1202 @item
1203 Add 1024 samples of silence to the end of the input:
1204 @example
1205 apad=pad_len=1024
1206 @end example
1207
1208 @item
1209 Make sure the audio output will contain at least 10000 samples, pad
1210 the input with silence if required:
1211 @example
1212 apad=whole_len=10000
1213 @end example
1214
1215 @item
1216 Use @command{ffmpeg} to pad the audio input with silence, so that the
1217 video stream will always result the shortest and will be converted
1218 until the end in the output file when using the @option{shortest}
1219 option:
1220 @example
1221 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1222 @end example
1223 @end itemize
1224
1225 @section aphaser
1226 Add a phasing effect to the input audio.
1227
1228 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1229 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1230
1231 A description of the accepted parameters follows.
1232
1233 @table @option
1234 @item in_gain
1235 Set input gain. Default is 0.4.
1236
1237 @item out_gain
1238 Set output gain. Default is 0.74
1239
1240 @item delay
1241 Set delay in milliseconds. Default is 3.0.
1242
1243 @item decay
1244 Set decay. Default is 0.4.
1245
1246 @item speed
1247 Set modulation speed in Hz. Default is 0.5.
1248
1249 @item type
1250 Set modulation type. Default is triangular.
1251
1252 It accepts the following values:
1253 @table @samp
1254 @item triangular, t
1255 @item sinusoidal, s
1256 @end table
1257 @end table
1258
1259 @section apulsator
1260
1261 Audio pulsator is something between an autopanner and a tremolo.
1262 But it can produce funny stereo effects as well. Pulsator changes the volume
1263 of the left and right channel based on a LFO (low frequency oscillator) with
1264 different waveforms and shifted phases.
1265 This filter have the ability to define an offset between left and right
1266 channel. An offset of 0 means that both LFO shapes match each other.
1267 The left and right channel are altered equally - a conventional tremolo.
1268 An offset of 50% means that the shape of the right channel is exactly shifted
1269 in phase (or moved backwards about half of the frequency) - pulsator acts as
1270 an autopanner. At 1 both curves match again. Every setting in between moves the
1271 phase shift gapless between all stages and produces some "bypassing" sounds with
1272 sine and triangle waveforms. The more you set the offset near 1 (starting from
1273 the 0.5) the faster the signal passes from the left to the right speaker.
1274
1275 The filter accepts the following options:
1276
1277 @table @option
1278 @item level_in
1279 Set input gain. By default it is 1. Range is [0.015625 - 64].
1280
1281 @item level_out
1282 Set output gain. By default it is 1. Range is [0.015625 - 64].
1283
1284 @item mode
1285 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1286 sawup or sawdown. Default is sine.
1287
1288 @item amount
1289 Set modulation. Define how much of original signal is affected by the LFO.
1290
1291 @item offset_l
1292 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1293
1294 @item offset_r
1295 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1296
1297 @item width
1298 Set pulse width. Default is 1. Allowed range is [0 - 2].
1299
1300 @item timing
1301 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1302
1303 @item bpm
1304 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1305 is set to bpm.
1306
1307 @item ms
1308 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1309 is set to ms.
1310
1311 @item hz
1312 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1313 if timing is set to hz.
1314 @end table
1315
1316 @anchor{aresample}
1317 @section aresample
1318
1319 Resample the input audio to the specified parameters, using the
1320 libswresample library. If none are specified then the filter will
1321 automatically convert between its input and output.
1322
1323 This filter is also able to stretch/squeeze the audio data to make it match
1324 the timestamps or to inject silence / cut out audio to make it match the
1325 timestamps, do a combination of both or do neither.
1326
1327 The filter accepts the syntax
1328 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1329 expresses a sample rate and @var{resampler_options} is a list of
1330 @var{key}=@var{value} pairs, separated by ":". See the
1331 ffmpeg-resampler manual for the complete list of supported options.
1332
1333 @subsection Examples
1334
1335 @itemize
1336 @item
1337 Resample the input audio to 44100Hz:
1338 @example
1339 aresample=44100
1340 @end example
1341
1342 @item
1343 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1344 samples per second compensation:
1345 @example
1346 aresample=async=1000
1347 @end example
1348 @end itemize
1349
1350 @section asetnsamples
1351
1352 Set the number of samples per each output audio frame.
1353
1354 The last output packet may contain a different number of samples, as
1355 the filter will flush all the remaining samples when the input audio
1356 signal its end.
1357
1358 The filter accepts the following options:
1359
1360 @table @option
1361
1362 @item nb_out_samples, n
1363 Set the number of frames per each output audio frame. The number is
1364 intended as the number of samples @emph{per each channel}.
1365 Default value is 1024.
1366
1367 @item pad, p
1368 If set to 1, the filter will pad the last audio frame with zeroes, so
1369 that the last frame will contain the same number of samples as the
1370 previous ones. Default value is 1.
1371 @end table
1372
1373 For example, to set the number of per-frame samples to 1234 and
1374 disable padding for the last frame, use:
1375 @example
1376 asetnsamples=n=1234:p=0
1377 @end example
1378
1379 @section asetrate
1380
1381 Set the sample rate without altering the PCM data.
1382 This will result in a change of speed and pitch.
1383
1384 The filter accepts the following options:
1385
1386 @table @option
1387 @item sample_rate, r
1388 Set the output sample rate. Default is 44100 Hz.
1389 @end table
1390
1391 @section ashowinfo
1392
1393 Show a line containing various information for each input audio frame.
1394 The input audio is not modified.
1395
1396 The shown line contains a sequence of key/value pairs of the form
1397 @var{key}:@var{value}.
1398
1399 The following values are shown in the output:
1400
1401 @table @option
1402 @item n
1403 The (sequential) number of the input frame, starting from 0.
1404
1405 @item pts
1406 The presentation timestamp of the input frame, in time base units; the time base
1407 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1408
1409 @item pts_time
1410 The presentation timestamp of the input frame in seconds.
1411
1412 @item pos
1413 position of the frame in the input stream, -1 if this information in
1414 unavailable and/or meaningless (for example in case of synthetic audio)
1415
1416 @item fmt
1417 The sample format.
1418
1419 @item chlayout
1420 The channel layout.
1421
1422 @item rate
1423 The sample rate for the audio frame.
1424
1425 @item nb_samples
1426 The number of samples (per channel) in the frame.
1427
1428 @item checksum
1429 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1430 audio, the data is treated as if all the planes were concatenated.
1431
1432 @item plane_checksums
1433 A list of Adler-32 checksums for each data plane.
1434 @end table
1435
1436 @anchor{astats}
1437 @section astats
1438
1439 Display time domain statistical information about the audio channels.
1440 Statistics are calculated and displayed for each audio channel and,
1441 where applicable, an overall figure is also given.
1442
1443 It accepts the following option:
1444 @table @option
1445 @item length
1446 Short window length in seconds, used for peak and trough RMS measurement.
1447 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1448
1449 @item metadata
1450
1451 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1452 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1453 disabled.
1454
1455 Available keys for each channel are:
1456 DC_offset
1457 Min_level
1458 Max_level
1459 Min_difference
1460 Max_difference
1461 Mean_difference
1462 Peak_level
1463 RMS_peak
1464 RMS_trough
1465 Crest_factor
1466 Flat_factor
1467 Peak_count
1468 Bit_depth
1469
1470 and for Overall:
1471 DC_offset
1472 Min_level
1473 Max_level
1474 Min_difference
1475 Max_difference
1476 Mean_difference
1477 Peak_level
1478 RMS_level
1479 RMS_peak
1480 RMS_trough
1481 Flat_factor
1482 Peak_count
1483 Bit_depth
1484 Number_of_samples
1485
1486 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1487 this @code{lavfi.astats.Overall.Peak_count}.
1488
1489 For description what each key means read below.
1490
1491 @item reset
1492 Set number of frame after which stats are going to be recalculated.
1493 Default is disabled.
1494 @end table
1495
1496 A description of each shown parameter follows:
1497
1498 @table @option
1499 @item DC offset
1500 Mean amplitude displacement from zero.
1501
1502 @item Min level
1503 Minimal sample level.
1504
1505 @item Max level
1506 Maximal sample level.
1507
1508 @item Min difference
1509 Minimal difference between two consecutive samples.
1510
1511 @item Max difference
1512 Maximal difference between two consecutive samples.
1513
1514 @item Mean difference
1515 Mean difference between two consecutive samples.
1516 The average of each difference between two consecutive samples.
1517
1518 @item Peak level dB
1519 @item RMS level dB
1520 Standard peak and RMS level measured in dBFS.
1521
1522 @item RMS peak dB
1523 @item RMS trough dB
1524 Peak and trough values for RMS level measured over a short window.
1525
1526 @item Crest factor
1527 Standard ratio of peak to RMS level (note: not in dB).
1528
1529 @item Flat factor
1530 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1531 (i.e. either @var{Min level} or @var{Max level}).
1532
1533 @item Peak count
1534 Number of occasions (not the number of samples) that the signal attained either
1535 @var{Min level} or @var{Max level}.
1536
1537 @item Bit depth
1538 Overall bit depth of audio. Number of bits used for each sample.
1539 @end table
1540
1541 @section asyncts
1542
1543 Synchronize audio data with timestamps by squeezing/stretching it and/or
1544 dropping samples/adding silence when needed.
1545
1546 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1547
1548 It accepts the following parameters:
1549 @table @option
1550
1551 @item compensate
1552 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1553 by default. When disabled, time gaps are covered with silence.
1554
1555 @item min_delta
1556 The minimum difference between timestamps and audio data (in seconds) to trigger
1557 adding/dropping samples. The default value is 0.1. If you get an imperfect
1558 sync with this filter, try setting this parameter to 0.
1559
1560 @item max_comp
1561 The maximum compensation in samples per second. Only relevant with compensate=1.
1562 The default value is 500.
1563
1564 @item first_pts
1565 Assume that the first PTS should be this value. The time base is 1 / sample
1566 rate. This allows for padding/trimming at the start of the stream. By default,
1567 no assumption is made about the first frame's expected PTS, so no padding or
1568 trimming is done. For example, this could be set to 0 to pad the beginning with
1569 silence if an audio stream starts after the video stream or to trim any samples
1570 with a negative PTS due to encoder delay.
1571
1572 @end table
1573
1574 @section atempo
1575
1576 Adjust audio tempo.
1577
1578 The filter accepts exactly one parameter, the audio tempo. If not
1579 specified then the filter will assume nominal 1.0 tempo. Tempo must
1580 be in the [0.5, 2.0] range.
1581
1582 @subsection Examples
1583
1584 @itemize
1585 @item
1586 Slow down audio to 80% tempo:
1587 @example
1588 atempo=0.8
1589 @end example
1590
1591 @item
1592 To speed up audio to 125% tempo:
1593 @example
1594 atempo=1.25
1595 @end example
1596 @end itemize
1597
1598 @section atrim
1599
1600 Trim the input so that the output contains one continuous subpart of the input.
1601
1602 It accepts the following parameters:
1603 @table @option
1604 @item start
1605 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1606 sample with the timestamp @var{start} will be the first sample in the output.
1607
1608 @item end
1609 Specify time of the first audio sample that will be dropped, i.e. the
1610 audio sample immediately preceding the one with the timestamp @var{end} will be
1611 the last sample in the output.
1612
1613 @item start_pts
1614 Same as @var{start}, except this option sets the start timestamp in samples
1615 instead of seconds.
1616
1617 @item end_pts
1618 Same as @var{end}, except this option sets the end timestamp in samples instead
1619 of seconds.
1620
1621 @item duration
1622 The maximum duration of the output in seconds.
1623
1624 @item start_sample
1625 The number of the first sample that should be output.
1626
1627 @item end_sample
1628 The number of the first sample that should be dropped.
1629 @end table
1630
1631 @option{start}, @option{end}, and @option{duration} are expressed as time
1632 duration specifications; see
1633 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1634
1635 Note that the first two sets of the start/end options and the @option{duration}
1636 option look at the frame timestamp, while the _sample options simply count the
1637 samples that pass through the filter. So start/end_pts and start/end_sample will
1638 give different results when the timestamps are wrong, inexact or do not start at
1639 zero. Also note that this filter does not modify the timestamps. If you wish
1640 to have the output timestamps start at zero, insert the asetpts filter after the
1641 atrim filter.
1642
1643 If multiple start or end options are set, this filter tries to be greedy and
1644 keep all samples that match at least one of the specified constraints. To keep
1645 only the part that matches all the constraints at once, chain multiple atrim
1646 filters.
1647
1648 The defaults are such that all the input is kept. So it is possible to set e.g.
1649 just the end values to keep everything before the specified time.
1650
1651 Examples:
1652 @itemize
1653 @item
1654 Drop everything except the second minute of input:
1655 @example
1656 ffmpeg -i INPUT -af atrim=60:120
1657 @end example
1658
1659 @item
1660 Keep only the first 1000 samples:
1661 @example
1662 ffmpeg -i INPUT -af atrim=end_sample=1000
1663 @end example
1664
1665 @end itemize
1666
1667 @section bandpass
1668
1669 Apply a two-pole Butterworth band-pass filter with central
1670 frequency @var{frequency}, and (3dB-point) band-width width.
1671 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1672 instead of the default: constant 0dB peak gain.
1673 The filter roll off at 6dB per octave (20dB per decade).
1674
1675 The filter accepts the following options:
1676
1677 @table @option
1678 @item frequency, f
1679 Set the filter's central frequency. Default is @code{3000}.
1680
1681 @item csg
1682 Constant skirt gain if set to 1. Defaults to 0.
1683
1684 @item width_type
1685 Set method to specify band-width of filter.
1686 @table @option
1687 @item h
1688 Hz
1689 @item q
1690 Q-Factor
1691 @item o
1692 octave
1693 @item s
1694 slope
1695 @end table
1696
1697 @item width, w
1698 Specify the band-width of a filter in width_type units.
1699 @end table
1700
1701 @section bandreject
1702
1703 Apply a two-pole Butterworth band-reject filter with central
1704 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1705 The filter roll off at 6dB per octave (20dB per decade).
1706
1707 The filter accepts the following options:
1708
1709 @table @option
1710 @item frequency, f
1711 Set the filter's central frequency. Default is @code{3000}.
1712
1713 @item width_type
1714 Set method to specify band-width of filter.
1715 @table @option
1716 @item h
1717 Hz
1718 @item q
1719 Q-Factor
1720 @item o
1721 octave
1722 @item s
1723 slope
1724 @end table
1725
1726 @item width, w
1727 Specify the band-width of a filter in width_type units.
1728 @end table
1729
1730 @section bass
1731
1732 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1733 shelving filter with a response similar to that of a standard
1734 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1735
1736 The filter accepts the following options:
1737
1738 @table @option
1739 @item gain, g
1740 Give the gain at 0 Hz. Its useful range is about -20
1741 (for a large cut) to +20 (for a large boost).
1742 Beware of clipping when using a positive gain.
1743
1744 @item frequency, f
1745 Set the filter's central frequency and so can be used
1746 to extend or reduce the frequency range to be boosted or cut.
1747 The default value is @code{100} Hz.
1748
1749 @item width_type
1750 Set method to specify band-width of filter.
1751 @table @option
1752 @item h
1753 Hz
1754 @item q
1755 Q-Factor
1756 @item o
1757 octave
1758 @item s
1759 slope
1760 @end table
1761
1762 @item width, w
1763 Determine how steep is the filter's shelf transition.
1764 @end table
1765
1766 @section biquad
1767
1768 Apply a biquad IIR filter with the given coefficients.
1769 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1770 are the numerator and denominator coefficients respectively.
1771
1772 @section bs2b
1773 Bauer stereo to binaural transformation, which improves headphone listening of
1774 stereo audio records.
1775
1776 It accepts the following parameters:
1777 @table @option
1778
1779 @item profile
1780 Pre-defined crossfeed level.
1781 @table @option
1782
1783 @item default
1784 Default level (fcut=700, feed=50).
1785
1786 @item cmoy
1787 Chu Moy circuit (fcut=700, feed=60).
1788
1789 @item jmeier
1790 Jan Meier circuit (fcut=650, feed=95).
1791
1792 @end table
1793
1794 @item fcut
1795 Cut frequency (in Hz).
1796
1797 @item feed
1798 Feed level (in Hz).
1799
1800 @end table
1801
1802 @section channelmap
1803
1804 Remap input channels to new locations.
1805
1806 It accepts the following parameters:
1807 @table @option
1808 @item channel_layout
1809 The channel layout of the output stream.
1810
1811 @item map
1812 Map channels from input to output. The argument is a '|'-separated list of
1813 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1814 @var{in_channel} form. @var{in_channel} can be either the name of the input
1815 channel (e.g. FL for front left) or its index in the input channel layout.
1816 @var{out_channel} is the name of the output channel or its index in the output
1817 channel layout. If @var{out_channel} is not given then it is implicitly an
1818 index, starting with zero and increasing by one for each mapping.
1819 @end table
1820
1821 If no mapping is present, the filter will implicitly map input channels to
1822 output channels, preserving indices.
1823
1824 For example, assuming a 5.1+downmix input MOV file,
1825 @example
1826 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1827 @end example
1828 will create an output WAV file tagged as stereo from the downmix channels of
1829 the input.
1830
1831 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1832 @example
1833 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1834 @end example
1835
1836 @section channelsplit
1837
1838 Split each channel from an input audio stream into a separate output stream.
1839
1840 It accepts the following parameters:
1841 @table @option
1842 @item channel_layout
1843 The channel layout of the input stream. The default is "stereo".
1844 @end table
1845
1846 For example, assuming a stereo input MP3 file,
1847 @example
1848 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1849 @end example
1850 will create an output Matroska file with two audio streams, one containing only
1851 the left channel and the other the right channel.
1852
1853 Split a 5.1 WAV file into per-channel files:
1854 @example
1855 ffmpeg -i in.wav -filter_complex
1856 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1857 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1858 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1859 side_right.wav
1860 @end example
1861
1862 @section chorus
1863 Add a chorus effect to the audio.
1864
1865 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1866
1867 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1868 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1869 The modulation depth defines the range the modulated delay is played before or after
1870 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1871 sound tuned around the original one, like in a chorus where some vocals are slightly
1872 off key.
1873
1874 It accepts the following parameters:
1875 @table @option
1876 @item in_gain
1877 Set input gain. Default is 0.4.
1878
1879 @item out_gain
1880 Set output gain. Default is 0.4.
1881
1882 @item delays
1883 Set delays. A typical delay is around 40ms to 60ms.
1884
1885 @item decays
1886 Set decays.
1887
1888 @item speeds
1889 Set speeds.
1890
1891 @item depths
1892 Set depths.
1893 @end table
1894
1895 @subsection Examples
1896
1897 @itemize
1898 @item
1899 A single delay:
1900 @example
1901 chorus=0.7:0.9:55:0.4:0.25:2
1902 @end example
1903
1904 @item
1905 Two delays:
1906 @example
1907 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1908 @end example
1909
1910 @item
1911 Fuller sounding chorus with three delays:
1912 @example
1913 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
1914 @end example
1915 @end itemize
1916
1917 @section compand
1918 Compress or expand the audio's dynamic range.
1919
1920 It accepts the following parameters:
1921
1922 @table @option
1923
1924 @item attacks
1925 @item decays
1926 A list of times in seconds for each channel over which the instantaneous level
1927 of the input signal is averaged to determine its volume. @var{attacks} refers to
1928 increase of volume and @var{decays} refers to decrease of volume. For most
1929 situations, the attack time (response to the audio getting louder) should be
1930 shorter than the decay time, because the human ear is more sensitive to sudden
1931 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1932 a typical value for decay is 0.8 seconds.
1933 If specified number of attacks & decays is lower than number of channels, the last
1934 set attack/decay will be used for all remaining channels.
1935
1936 @item points
1937 A list of points for the transfer function, specified in dB relative to the
1938 maximum possible signal amplitude. Each key points list must be defined using
1939 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1940 @code{x0/y0 x1/y1 x2/y2 ....}
1941
1942 The input values must be in strictly increasing order but the transfer function
1943 does not have to be monotonically rising. The point @code{0/0} is assumed but
1944 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1945 function are @code{-70/-70|-60/-20}.
1946
1947 @item soft-knee
1948 Set the curve radius in dB for all joints. It defaults to 0.01.
1949
1950 @item gain
1951 Set the additional gain in dB to be applied at all points on the transfer
1952 function. This allows for easy adjustment of the overall gain.
1953 It defaults to 0.
1954
1955 @item volume
1956 Set an initial volume, in dB, to be assumed for each channel when filtering
1957 starts. This permits the user to supply a nominal level initially, so that, for
1958 example, a very large gain is not applied to initial signal levels before the
1959 companding has begun to operate. A typical value for audio which is initially
1960 quiet is -90 dB. It defaults to 0.
1961
1962 @item delay
1963 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1964 delayed before being fed to the volume adjuster. Specifying a delay
1965 approximately equal to the attack/decay times allows the filter to effectively
1966 operate in predictive rather than reactive mode. It defaults to 0.
1967
1968 @end table
1969
1970 @subsection Examples
1971
1972 @itemize
1973 @item
1974 Make music with both quiet and loud passages suitable for listening to in a
1975 noisy environment:
1976 @example
1977 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1978 @end example
1979
1980 Another example for audio with whisper and explosion parts:
1981 @example
1982 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1983 @end example
1984
1985 @item
1986 A noise gate for when the noise is at a lower level than the signal:
1987 @example
1988 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1989 @end example
1990
1991 @item
1992 Here is another noise gate, this time for when the noise is at a higher level
1993 than the signal (making it, in some ways, similar to squelch):
1994 @example
1995 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1996 @end example
1997
1998 @item
1999 2:1 compression starting at -6dB:
2000 @example
2001 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2002 @end example
2003
2004 @item
2005 2:1 compression starting at -9dB:
2006 @example
2007 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2008 @end example
2009
2010 @item
2011 2:1 compression starting at -12dB:
2012 @example
2013 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2014 @end example
2015
2016 @item
2017 2:1 compression starting at -18dB:
2018 @example
2019 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2020 @end example
2021
2022 @item
2023 3:1 compression starting at -15dB:
2024 @example
2025 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2026 @end example
2027
2028 @item
2029 Compressor/Gate:
2030 @example
2031 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2032 @end example
2033
2034 @item
2035 Expander:
2036 @example
2037 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2038 @end example
2039
2040 @item
2041 Hard limiter at -6dB:
2042 @example
2043 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2044 @end example
2045
2046 @item
2047 Hard limiter at -12dB:
2048 @example
2049 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2050 @end example
2051
2052 @item
2053 Hard noise gate at -35 dB:
2054 @example
2055 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2056 @end example
2057
2058 @item
2059 Soft limiter:
2060 @example
2061 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2062 @end example
2063 @end itemize
2064
2065 @section compensationdelay
2066
2067 Compensation Delay Line is a metric based delay to compensate differing
2068 positions of microphones or speakers.
2069
2070 For example, you have recorded guitar with two microphones placed in
2071 different location. Because the front of sound wave has fixed speed in
2072 normal conditions, the phasing of microphones can vary and depends on
2073 their location and interposition. The best sound mix can be achieved when
2074 these microphones are in phase (synchronized). Note that distance of
2075 ~30 cm between microphones makes one microphone to capture signal in
2076 antiphase to another microphone. That makes the final mix sounding moody.
2077 This filter helps to solve phasing problems by adding different delays
2078 to each microphone track and make them synchronized.
2079
2080 The best result can be reached when you take one track as base and
2081 synchronize other tracks one by one with it.
2082 Remember that synchronization/delay tolerance depends on sample rate, too.
2083 Higher sample rates will give more tolerance.
2084
2085 It accepts the following parameters:
2086
2087 @table @option
2088 @item mm
2089 Set millimeters distance. This is compensation distance for fine tuning.
2090 Default is 0.
2091
2092 @item cm
2093 Set cm distance. This is compensation distance for tightening distance setup.
2094 Default is 0.
2095
2096 @item m
2097 Set meters distance. This is compensation distance for hard distance setup.
2098 Default is 0.
2099
2100 @item dry
2101 Set dry amount. Amount of unprocessed (dry) signal.
2102 Default is 0.
2103
2104 @item wet
2105 Set wet amount. Amount of processed (wet) signal.
2106 Default is 1.
2107
2108 @item temp
2109 Set temperature degree in Celsius. This is the temperature of the environment.
2110 Default is 20.
2111 @end table
2112
2113 @section dcshift
2114 Apply a DC shift to the audio.
2115
2116 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2117 in the recording chain) from the audio. The effect of a DC offset is reduced
2118 headroom and hence volume. The @ref{astats} filter can be used to determine if
2119 a signal has a DC offset.
2120
2121 @table @option
2122 @item shift
2123 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2124 the audio.
2125
2126 @item limitergain
2127 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2128 used to prevent clipping.
2129 @end table
2130
2131 @section dynaudnorm
2132 Dynamic Audio Normalizer.
2133
2134 This filter applies a certain amount of gain to the input audio in order
2135 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2136 contrast to more "simple" normalization algorithms, the Dynamic Audio
2137 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2138 This allows for applying extra gain to the "quiet" sections of the audio
2139 while avoiding distortions or clipping the "loud" sections. In other words:
2140 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2141 sections, in the sense that the volume of each section is brought to the
2142 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2143 this goal *without* applying "dynamic range compressing". It will retain 100%
2144 of the dynamic range *within* each section of the audio file.
2145
2146 @table @option
2147 @item f
2148 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2149 Default is 500 milliseconds.
2150 The Dynamic Audio Normalizer processes the input audio in small chunks,
2151 referred to as frames. This is required, because a peak magnitude has no
2152 meaning for just a single sample value. Instead, we need to determine the
2153 peak magnitude for a contiguous sequence of sample values. While a "standard"
2154 normalizer would simply use the peak magnitude of the complete file, the
2155 Dynamic Audio Normalizer determines the peak magnitude individually for each
2156 frame. The length of a frame is specified in milliseconds. By default, the
2157 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2158 been found to give good results with most files.
2159 Note that the exact frame length, in number of samples, will be determined
2160 automatically, based on the sampling rate of the individual input audio file.
2161
2162 @item g
2163 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2164 number. Default is 31.
2165 Probably the most important parameter of the Dynamic Audio Normalizer is the
2166 @code{window size} of the Gaussian smoothing filter. The filter's window size
2167 is specified in frames, centered around the current frame. For the sake of
2168 simplicity, this must be an odd number. Consequently, the default value of 31
2169 takes into account the current frame, as well as the 15 preceding frames and
2170 the 15 subsequent frames. Using a larger window results in a stronger
2171 smoothing effect and thus in less gain variation, i.e. slower gain
2172 adaptation. Conversely, using a smaller window results in a weaker smoothing
2173 effect and thus in more gain variation, i.e. faster gain adaptation.
2174 In other words, the more you increase this value, the more the Dynamic Audio
2175 Normalizer will behave like a "traditional" normalization filter. On the
2176 contrary, the more you decrease this value, the more the Dynamic Audio
2177 Normalizer will behave like a dynamic range compressor.
2178
2179 @item p
2180 Set the target peak value. This specifies the highest permissible magnitude
2181 level for the normalized audio input. This filter will try to approach the
2182 target peak magnitude as closely as possible, but at the same time it also
2183 makes sure that the normalized signal will never exceed the peak magnitude.
2184 A frame's maximum local gain factor is imposed directly by the target peak
2185 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2186 It is not recommended to go above this value.
2187
2188 @item m
2189 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2190 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2191 factor for each input frame, i.e. the maximum gain factor that does not
2192 result in clipping or distortion. The maximum gain factor is determined by
2193 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2194 additionally bounds the frame's maximum gain factor by a predetermined
2195 (global) maximum gain factor. This is done in order to avoid excessive gain
2196 factors in "silent" or almost silent frames. By default, the maximum gain
2197 factor is 10.0, For most inputs the default value should be sufficient and
2198 it usually is not recommended to increase this value. Though, for input
2199 with an extremely low overall volume level, it may be necessary to allow even
2200 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2201 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2202 Instead, a "sigmoid" threshold function will be applied. This way, the
2203 gain factors will smoothly approach the threshold value, but never exceed that
2204 value.
2205
2206 @item r
2207 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2208 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2209 This means that the maximum local gain factor for each frame is defined
2210 (only) by the frame's highest magnitude sample. This way, the samples can
2211 be amplified as much as possible without exceeding the maximum signal
2212 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2213 Normalizer can also take into account the frame's root mean square,
2214 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2215 determine the power of a time-varying signal. It is therefore considered
2216 that the RMS is a better approximation of the "perceived loudness" than
2217 just looking at the signal's peak magnitude. Consequently, by adjusting all
2218 frames to a constant RMS value, a uniform "perceived loudness" can be
2219 established. If a target RMS value has been specified, a frame's local gain
2220 factor is defined as the factor that would result in exactly that RMS value.
2221 Note, however, that the maximum local gain factor is still restricted by the
2222 frame's highest magnitude sample, in order to prevent clipping.
2223
2224 @item n
2225 Enable channels coupling. By default is enabled.
2226 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2227 amount. This means the same gain factor will be applied to all channels, i.e.
2228 the maximum possible gain factor is determined by the "loudest" channel.
2229 However, in some recordings, it may happen that the volume of the different
2230 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2231 In this case, this option can be used to disable the channel coupling. This way,
2232 the gain factor will be determined independently for each channel, depending
2233 only on the individual channel's highest magnitude sample. This allows for
2234 harmonizing the volume of the different channels.
2235
2236 @item c
2237 Enable DC bias correction. By default is disabled.
2238 An audio signal (in the time domain) is a sequence of sample values.
2239 In the Dynamic Audio Normalizer these sample values are represented in the
2240 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2241 audio signal, or "waveform", should be centered around the zero point.
2242 That means if we calculate the mean value of all samples in a file, or in a
2243 single frame, then the result should be 0.0 or at least very close to that
2244 value. If, however, there is a significant deviation of the mean value from
2245 0.0, in either positive or negative direction, this is referred to as a
2246 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2247 Audio Normalizer provides optional DC bias correction.
2248 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2249 the mean value, or "DC correction" offset, of each input frame and subtract
2250 that value from all of the frame's sample values which ensures those samples
2251 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2252 boundaries, the DC correction offset values will be interpolated smoothly
2253 between neighbouring frames.
2254
2255 @item b
2256 Enable alternative boundary mode. By default is disabled.
2257 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2258 around each frame. This includes the preceding frames as well as the
2259 subsequent frames. However, for the "boundary" frames, located at the very
2260 beginning and at the very end of the audio file, not all neighbouring
2261 frames are available. In particular, for the first few frames in the audio
2262 file, the preceding frames are not known. And, similarly, for the last few
2263 frames in the audio file, the subsequent frames are not known. Thus, the
2264 question arises which gain factors should be assumed for the missing frames
2265 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2266 to deal with this situation. The default boundary mode assumes a gain factor
2267 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2268 "fade out" at the beginning and at the end of the input, respectively.
2269
2270 @item s
2271 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2272 By default, the Dynamic Audio Normalizer does not apply "traditional"
2273 compression. This means that signal peaks will not be pruned and thus the
2274 full dynamic range will be retained within each local neighbourhood. However,
2275 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2276 normalization algorithm with a more "traditional" compression.
2277 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2278 (thresholding) function. If (and only if) the compression feature is enabled,
2279 all input frames will be processed by a soft knee thresholding function prior
2280 to the actual normalization process. Put simply, the thresholding function is
2281 going to prune all samples whose magnitude exceeds a certain threshold value.
2282 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2283 value. Instead, the threshold value will be adjusted for each individual
2284 frame.
2285 In general, smaller parameters result in stronger compression, and vice versa.
2286 Values below 3.0 are not recommended, because audible distortion may appear.
2287 @end table
2288
2289 @section earwax
2290
2291 Make audio easier to listen to on headphones.
2292
2293 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2294 so that when listened to on headphones the stereo image is moved from
2295 inside your head (standard for headphones) to outside and in front of
2296 the listener (standard for speakers).
2297
2298 Ported from SoX.
2299
2300 @section equalizer
2301
2302 Apply a two-pole peaking equalisation (EQ) filter. With this
2303 filter, the signal-level at and around a selected frequency can
2304 be increased or decreased, whilst (unlike bandpass and bandreject
2305 filters) that at all other frequencies is unchanged.
2306
2307 In order to produce complex equalisation curves, this filter can
2308 be given several times, each with a different central frequency.
2309
2310 The filter accepts the following options:
2311
2312 @table @option
2313 @item frequency, f
2314 Set the filter's central frequency in Hz.
2315
2316 @item width_type
2317 Set method to specify band-width of filter.
2318 @table @option
2319 @item h
2320 Hz
2321 @item q
2322 Q-Factor
2323 @item o
2324 octave
2325 @item s
2326 slope
2327 @end table
2328
2329 @item width, w
2330 Specify the band-width of a filter in width_type units.
2331
2332 @item gain, g
2333 Set the required gain or attenuation in dB.
2334 Beware of clipping when using a positive gain.
2335 @end table
2336
2337 @subsection Examples
2338 @itemize
2339 @item
2340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2341 @example
2342 equalizer=f=1000:width_type=h:width=200:g=-10
2343 @end example
2344
2345 @item
2346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2347 @example
2348 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2349 @end example
2350 @end itemize
2351
2352 @section extrastereo
2353
2354 Linearly increases the difference between left and right channels which
2355 adds some sort of "live" effect to playback.
2356
2357 The filter accepts the following option:
2358
2359 @table @option
2360 @item m
2361 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2362 (average of both channels), with 1.0 sound will be unchanged, with
2363 -1.0 left and right channels will be swapped.
2364
2365 @item c
2366 Enable clipping. By default is enabled.
2367 @end table
2368
2369 @section flanger
2370 Apply a flanging effect to the audio.
2371
2372 The filter accepts the following options:
2373
2374 @table @option
2375 @item delay
2376 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2377
2378 @item depth
2379 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2380
2381 @item regen
2382 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2383 Default value is 0.
2384
2385 @item width
2386 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2387 Default value is 71.
2388
2389 @item speed
2390 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2391
2392 @item shape
2393 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2394 Default value is @var{sinusoidal}.
2395
2396 @item phase
2397 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2398 Default value is 25.
2399
2400 @item interp
2401 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2402 Default is @var{linear}.
2403 @end table
2404
2405 @section highpass
2406
2407 Apply a high-pass filter with 3dB point frequency.
2408 The filter can be either single-pole, or double-pole (the default).
2409 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2410
2411 The filter accepts the following options:
2412
2413 @table @option
2414 @item frequency, f
2415 Set frequency in Hz. Default is 3000.
2416
2417 @item poles, p
2418 Set number of poles. Default is 2.
2419
2420 @item width_type
2421 Set method to specify band-width of filter.
2422 @table @option
2423 @item h
2424 Hz
2425 @item q
2426 Q-Factor
2427 @item o
2428 octave
2429 @item s
2430 slope
2431 @end table
2432
2433 @item width, w
2434 Specify the band-width of a filter in width_type units.
2435 Applies only to double-pole filter.
2436 The default is 0.707q and gives a Butterworth response.
2437 @end table
2438
2439 @section join
2440
2441 Join multiple input streams into one multi-channel stream.
2442
2443 It accepts the following parameters:
2444 @table @option
2445
2446 @item inputs
2447 The number of input streams. It defaults to 2.
2448
2449 @item channel_layout
2450 The desired output channel layout. It defaults to stereo.
2451
2452 @item map
2453 Map channels from inputs to output. The argument is a '|'-separated list of
2454 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2455 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2456 can be either the name of the input channel (e.g. FL for front left) or its
2457 index in the specified input stream. @var{out_channel} is the name of the output
2458 channel.
2459 @end table
2460
2461 The filter will attempt to guess the mappings when they are not specified
2462 explicitly. It does so by first trying to find an unused matching input channel
2463 and if that fails it picks the first unused input channel.
2464
2465 Join 3 inputs (with properly set channel layouts):
2466 @example
2467 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2468 @end example
2469
2470 Build a 5.1 output from 6 single-channel streams:
2471 @example
2472 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2473 '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'
2474 out
2475 @end example
2476
2477 @section ladspa
2478
2479 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2480
2481 To enable compilation of this filter you need to configure FFmpeg with
2482 @code{--enable-ladspa}.
2483
2484 @table @option
2485 @item file, f
2486 Specifies the name of LADSPA plugin library to load. If the environment
2487 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2488 each one of the directories specified by the colon separated list in
2489 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2490 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2491 @file{/usr/lib/ladspa/}.
2492
2493 @item plugin, p
2494 Specifies the plugin within the library. Some libraries contain only
2495 one plugin, but others contain many of them. If this is not set filter
2496 will list all available plugins within the specified library.
2497
2498 @item controls, c
2499 Set the '|' separated list of controls which are zero or more floating point
2500 values that determine the behavior of the loaded plugin (for example delay,
2501 threshold or gain).
2502 Controls need to be defined using the following syntax:
2503 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2504 @var{valuei} is the value set on the @var{i}-th control.
2505 Alternatively they can be also defined using the following syntax:
2506 @var{value0}|@var{value1}|@var{value2}|..., where
2507 @var{valuei} is the value set on the @var{i}-th control.
2508 If @option{controls} is set to @code{help}, all available controls and
2509 their valid ranges are printed.
2510
2511 @item sample_rate, s
2512 Specify the sample rate, default to 44100. Only used if plugin have
2513 zero inputs.
2514
2515 @item nb_samples, n
2516 Set the number of samples per channel per each output frame, default
2517 is 1024. Only used if plugin have zero inputs.
2518
2519 @item duration, d
2520 Set the minimum duration of the sourced audio. See
2521 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2522 for the accepted syntax.
2523 Note that the resulting duration may be greater than the specified duration,
2524 as the generated audio is always cut at the end of a complete frame.
2525 If not specified, or the expressed duration is negative, the audio is
2526 supposed to be generated forever.
2527 Only used if plugin have zero inputs.
2528
2529 @end table
2530
2531 @subsection Examples
2532
2533 @itemize
2534 @item
2535 List all available plugins within amp (LADSPA example plugin) library:
2536 @example
2537 ladspa=file=amp
2538 @end example
2539
2540 @item
2541 List all available controls and their valid ranges for @code{vcf_notch}
2542 plugin from @code{VCF} library:
2543 @example
2544 ladspa=f=vcf:p=vcf_notch:c=help
2545 @end example
2546
2547 @item
2548 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2549 plugin library:
2550 @example
2551 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2552 @end example
2553
2554 @item
2555 Add reverberation to the audio using TAP-plugins
2556 (Tom's Audio Processing plugins):
2557 @example
2558 ladspa=file=tap_reverb:tap_reverb
2559 @end example
2560
2561 @item
2562 Generate white noise, with 0.2 amplitude:
2563 @example
2564 ladspa=file=cmt:noise_source_white:c=c0=.2
2565 @end example
2566
2567 @item
2568 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2569 @code{C* Audio Plugin Suite} (CAPS) library:
2570 @example
2571 ladspa=file=caps:Click:c=c1=20'
2572 @end example
2573
2574 @item
2575 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2576 @example
2577 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2578 @end example
2579
2580 @item
2581 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2582 @code{SWH Plugins} collection:
2583 @example
2584 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2585 @end example
2586
2587 @item
2588 Attenuate low frequencies using Multiband EQ from Steve Harris
2589 @code{SWH Plugins} collection:
2590 @example
2591 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2592 @end example
2593 @end itemize
2594
2595 @subsection Commands
2596
2597 This filter supports the following commands:
2598 @table @option
2599 @item cN
2600 Modify the @var{N}-th control value.
2601
2602 If the specified value is not valid, it is ignored and prior one is kept.
2603 @end table
2604
2605 @section lowpass
2606
2607 Apply a low-pass filter with 3dB point frequency.
2608 The filter can be either single-pole or double-pole (the default).
2609 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2610
2611 The filter accepts the following options:
2612
2613 @table @option
2614 @item frequency, f
2615 Set frequency in Hz. Default is 500.
2616
2617 @item poles, p
2618 Set number of poles. Default is 2.
2619
2620 @item width_type
2621 Set method to specify band-width of filter.
2622 @table @option
2623 @item h
2624 Hz
2625 @item q
2626 Q-Factor
2627 @item o
2628 octave
2629 @item s
2630 slope
2631 @end table
2632
2633 @item width, w
2634 Specify the band-width of a filter in width_type units.
2635 Applies only to double-pole filter.
2636 The default is 0.707q and gives a Butterworth response.
2637 @end table
2638
2639 @anchor{pan}
2640 @section pan
2641
2642 Mix channels with specific gain levels. The filter accepts the output
2643 channel layout followed by a set of channels definitions.
2644
2645 This filter is also designed to efficiently remap the channels of an audio
2646 stream.
2647
2648 The filter accepts parameters of the form:
2649 "@var{l}|@var{outdef}|@var{outdef}|..."
2650
2651 @table @option
2652 @item l
2653 output channel layout or number of channels
2654
2655 @item outdef
2656 output channel specification, of the form:
2657 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2658
2659 @item out_name
2660 output channel to define, either a channel name (FL, FR, etc.) or a channel
2661 number (c0, c1, etc.)
2662
2663 @item gain
2664 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2665
2666 @item in_name
2667 input channel to use, see out_name for details; it is not possible to mix
2668 named and numbered input channels
2669 @end table
2670
2671 If the `=' in a channel specification is replaced by `<', then the gains for
2672 that specification will be renormalized so that the total is 1, thus
2673 avoiding clipping noise.
2674
2675 @subsection Mixing examples
2676
2677 For example, if you want to down-mix from stereo to mono, but with a bigger
2678 factor for the left channel:
2679 @example
2680 pan=1c|c0=0.9*c0+0.1*c1
2681 @end example
2682
2683 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2684 7-channels surround:
2685 @example
2686 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2687 @end example
2688
2689 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2690 that should be preferred (see "-ac" option) unless you have very specific
2691 needs.
2692
2693 @subsection Remapping examples
2694
2695 The channel remapping will be effective if, and only if:
2696
2697 @itemize
2698 @item gain coefficients are zeroes or ones,
2699 @item only one input per channel output,
2700 @end itemize
2701
2702 If all these conditions are satisfied, the filter will notify the user ("Pure
2703 channel mapping detected"), and use an optimized and lossless method to do the
2704 remapping.
2705
2706 For example, if you have a 5.1 source and want a stereo audio stream by
2707 dropping the extra channels:
2708 @example
2709 pan="stereo| c0=FL | c1=FR"
2710 @end example
2711
2712 Given the same source, you can also switch front left and front right channels
2713 and keep the input channel layout:
2714 @example
2715 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2716 @end example
2717
2718 If the input is a stereo audio stream, you can mute the front left channel (and
2719 still keep the stereo channel layout) with:
2720 @example
2721 pan="stereo|c1=c1"
2722 @end example
2723
2724 Still with a stereo audio stream input, you can copy the right channel in both
2725 front left and right:
2726 @example
2727 pan="stereo| c0=FR | c1=FR"
2728 @end example
2729
2730 @section replaygain
2731
2732 ReplayGain scanner filter. This filter takes an audio stream as an input and
2733 outputs it unchanged.
2734 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2735
2736 @section resample
2737
2738 Convert the audio sample format, sample rate and channel layout. It is
2739 not meant to be used directly.
2740
2741 @section rubberband
2742 Apply time-stretching and pitch-shifting with librubberband.
2743
2744 The filter accepts the following options:
2745
2746 @table @option
2747 @item tempo
2748 Set tempo scale factor.
2749
2750 @item pitch
2751 Set pitch scale factor.
2752
2753 @item transients
2754 Set transients detector.
2755 Possible values are:
2756 @table @var
2757 @item crisp
2758 @item mixed
2759 @item smooth
2760 @end table
2761
2762 @item detector
2763 Set detector.
2764 Possible values are:
2765 @table @var
2766 @item compound
2767 @item percussive
2768 @item soft
2769 @end table
2770
2771 @item phase
2772 Set phase.
2773 Possible values are:
2774 @table @var
2775 @item laminar
2776 @item independent
2777 @end table
2778
2779 @item window
2780 Set processing window size.
2781 Possible values are:
2782 @table @var
2783 @item standard
2784 @item short
2785 @item long
2786 @end table
2787
2788 @item smoothing
2789 Set smoothing.
2790 Possible values are:
2791 @table @var
2792 @item off
2793 @item on
2794 @end table
2795
2796 @item formant
2797 Enable formant preservation when shift pitching.
2798 Possible values are:
2799 @table @var
2800 @item shifted
2801 @item preserved
2802 @end table
2803
2804 @item pitchq
2805 Set pitch quality.
2806 Possible values are:
2807 @table @var
2808 @item quality
2809 @item speed
2810 @item consistency
2811 @end table
2812
2813 @item channels
2814 Set channels.
2815 Possible values are:
2816 @table @var
2817 @item apart
2818 @item together
2819 @end table
2820 @end table
2821
2822 @section sidechaincompress
2823
2824 This filter acts like normal compressor but has the ability to compress
2825 detected signal using second input signal.
2826 It needs two input streams and returns one output stream.
2827 First input stream will be processed depending on second stream signal.
2828 The filtered signal then can be filtered with other filters in later stages of
2829 processing. See @ref{pan} and @ref{amerge} filter.
2830
2831 The filter accepts the following options:
2832
2833 @table @option
2834 @item level_in
2835 Set input gain. Default is 1. Range is between 0.015625 and 64.
2836
2837 @item threshold
2838 If a signal of second stream raises above this level it will affect the gain
2839 reduction of first stream.
2840 By default is 0.125. Range is between 0.00097563 and 1.
2841
2842 @item ratio
2843 Set a ratio about which the signal is reduced. 1:2 means that if the level
2844 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2845 Default is 2. Range is between 1 and 20.
2846
2847 @item attack
2848 Amount of milliseconds the signal has to rise above the threshold before gain
2849 reduction starts. Default is 20. Range is between 0.01 and 2000.
2850
2851 @item release
2852 Amount of milliseconds the signal has to fall below the threshold before
2853 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2854
2855 @item makeup
2856 Set the amount by how much signal will be amplified after processing.
2857 Default is 2. Range is from 1 and 64.
2858
2859 @item knee
2860 Curve the sharp knee around the threshold to enter gain reduction more softly.
2861 Default is 2.82843. Range is between 1 and 8.
2862
2863 @item link
2864 Choose if the @code{average} level between all channels of side-chain stream
2865 or the louder(@code{maximum}) channel of side-chain stream affects the
2866 reduction. Default is @code{average}.
2867
2868 @item detection
2869 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2870 of @code{rms}. Default is @code{rms} which is mainly smoother.
2871
2872 @item level_sc
2873 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
2874
2875 @item mix
2876 How much to use compressed signal in output. Default is 1.
2877 Range is between 0 and 1.
2878 @end table
2879
2880 @subsection Examples
2881
2882 @itemize
2883 @item
2884 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2885 depending on the signal of 2nd input and later compressed signal to be
2886 merged with 2nd input:
2887 @example
2888 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2889 @end example
2890 @end itemize
2891
2892 @section sidechaingate
2893
2894 A sidechain gate acts like a normal (wideband) gate but has the ability to
2895 filter the detected signal before sending it to the gain reduction stage.
2896 Normally a gate uses the full range signal to detect a level above the
2897 threshold.
2898 For example: If you cut all lower frequencies from your sidechain signal
2899 the gate will decrease the volume of your track only if not enough highs
2900 appear. With this technique you are able to reduce the resonation of a
2901 natural drum or remove "rumbling" of muted strokes from a heavily distorted
2902 guitar.
2903 It needs two input streams and returns one output stream.
2904 First input stream will be processed depending on second stream signal.
2905
2906 The filter accepts the following options:
2907
2908 @table @option
2909 @item level_in
2910 Set input level before filtering.
2911 Default is 1. Allowed range is from 0.015625 to 64.
2912
2913 @item range
2914 Set the level of gain reduction when the signal is below the threshold.
2915 Default is 0.06125. Allowed range is from 0 to 1.
2916
2917 @item threshold
2918 If a signal rises above this level the gain reduction is released.
2919 Default is 0.125. Allowed range is from 0 to 1.
2920
2921 @item ratio
2922 Set a ratio about which the signal is reduced.
2923 Default is 2. Allowed range is from 1 to 9000.
2924
2925 @item attack
2926 Amount of milliseconds the signal has to rise above the threshold before gain
2927 reduction stops.
2928 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
2929
2930 @item release
2931 Amount of milliseconds the signal has to fall below the threshold before the
2932 reduction is increased again. Default is 250 milliseconds.
2933 Allowed range is from 0.01 to 9000.
2934
2935 @item makeup
2936 Set amount of amplification of signal after processing.
2937 Default is 1. Allowed range is from 1 to 64.
2938
2939 @item knee
2940 Curve the sharp knee around the threshold to enter gain reduction more softly.
2941 Default is 2.828427125. Allowed range is from 1 to 8.
2942
2943 @item detection
2944 Choose if exact signal should be taken for detection or an RMS like one.
2945 Default is rms. Can be peak or rms.
2946
2947 @item link
2948 Choose if the average level between all channels or the louder channel affects
2949 the reduction.
2950 Default is average. Can be average or maximum.
2951
2952 @item level_sc
2953 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
2954 @end table
2955
2956 @section silencedetect
2957
2958 Detect silence in an audio stream.
2959
2960 This filter logs a message when it detects that the input audio volume is less
2961 or equal to a noise tolerance value for a duration greater or equal to the
2962 minimum detected noise duration.
2963
2964 The printed times and duration are expressed in seconds.
2965
2966 The filter accepts the following options:
2967
2968 @table @option
2969 @item duration, d
2970 Set silence duration until notification (default is 2 seconds).
2971
2972 @item noise, n
2973 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2974 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2975 @end table
2976
2977 @subsection Examples
2978
2979 @itemize
2980 @item
2981 Detect 5 seconds of silence with -50dB noise tolerance:
2982 @example
2983 silencedetect=n=-50dB:d=5
2984 @end example
2985
2986 @item
2987 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2988 tolerance in @file{silence.mp3}:
2989 @example
2990 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2991 @end example
2992 @end itemize
2993
2994 @section silenceremove
2995
2996 Remove silence from the beginning, middle or end of the audio.
2997
2998 The filter accepts the following options:
2999
3000 @table @option
3001 @item start_periods
3002 This value is used to indicate if audio should be trimmed at beginning of
3003 the audio. A value of zero indicates no silence should be trimmed from the
3004 beginning. When specifying a non-zero value, it trims audio up until it
3005 finds non-silence. Normally, when trimming silence from beginning of audio
3006 the @var{start_periods} will be @code{1} but it can be increased to higher
3007 values to trim all audio up to specific count of non-silence periods.
3008 Default value is @code{0}.
3009
3010 @item start_duration
3011 Specify the amount of time that non-silence must be detected before it stops
3012 trimming audio. By increasing the duration, bursts of noises can be treated
3013 as silence and trimmed off. Default value is @code{0}.
3014
3015 @item start_threshold
3016 This indicates what sample value should be treated as silence. For digital
3017 audio, a value of @code{0} may be fine but for audio recorded from analog,
3018 you may wish to increase the value to account for background noise.
3019 Can be specified in dB (in case "dB" is appended to the specified value)
3020 or amplitude ratio. Default value is @code{0}.
3021
3022 @item stop_periods
3023 Set the count for trimming silence from the end of audio.
3024 To remove silence from the middle of a file, specify a @var{stop_periods}
3025 that is negative. This value is then treated as a positive value and is
3026 used to indicate the effect should restart processing as specified by
3027 @var{start_periods}, making it suitable for removing periods of silence
3028 in the middle of the audio.
3029 Default value is @code{0}.
3030
3031 @item stop_duration
3032 Specify a duration of silence that must exist before audio is not copied any
3033 more. By specifying a higher duration, silence that is wanted can be left in
3034 the audio.
3035 Default value is @code{0}.
3036
3037 @item stop_threshold
3038 This is the same as @option{start_threshold} but for trimming silence from
3039 the end of audio.
3040 Can be specified in dB (in case "dB" is appended to the specified value)
3041 or amplitude ratio. Default value is @code{0}.
3042
3043 @item leave_silence
3044 This indicate that @var{stop_duration} length of audio should be left intact
3045 at the beginning of each period of silence.
3046 For example, if you want to remove long pauses between words but do not want
3047 to remove the pauses completely. Default value is @code{0}.
3048
3049 @item detection
3050 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3051 and works better with digital silence which is exactly 0.
3052 Default value is @code{rms}.
3053
3054 @item window
3055 Set ratio used to calculate size of window for detecting silence.
3056 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3057 @end table
3058
3059 @subsection Examples
3060
3061 @itemize
3062 @item
3063 The following example shows how this filter can be used to start a recording
3064 that does not contain the delay at the start which usually occurs between
3065 pressing the record button and the start of the performance:
3066 @example
3067 silenceremove=1:5:0.02
3068 @end example
3069
3070 @item
3071 Trim all silence encountered from begining to end where there is more than 1
3072 second of silence in audio:
3073 @example
3074 silenceremove=0:0:0:-1:1:-90dB
3075 @end example
3076 @end itemize
3077
3078 @section sofalizer
3079
3080 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3081 loudspeakers around the user for binaural listening via headphones (audio
3082 formats up to 9 channels supported).
3083 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3084 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3085 Austrian Academy of Sciences.
3086
3087 To enable compilation of this filter you need to configure FFmpeg with
3088 @code{--enable-netcdf}.
3089
3090 The filter accepts the following options:
3091
3092 @table @option
3093 @item sofa
3094 Set the SOFA file used for rendering.
3095
3096 @item gain
3097 Set gain applied to audio. Value is in dB. Default is 0.
3098
3099 @item rotation
3100 Set rotation of virtual loudspeakers in deg. Default is 0.
3101
3102 @item elevation
3103 Set elevation of virtual speakers in deg. Default is 0.
3104
3105 @item radius
3106 Set distance in meters between loudspeakers and the listener with near-field
3107 HRTFs. Default is 1.
3108
3109 @item type
3110 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3111 processing audio in time domain which is slow but gives high quality output.
3112 @var{freq} is processing audio in frequency domain which is fast but gives
3113 mediocre output. Default is @var{freq}.
3114 @end table
3115
3116 @section stereotools
3117
3118 This filter has some handy utilities to manage stereo signals, for converting
3119 M/S stereo recordings to L/R signal while having control over the parameters
3120 or spreading the stereo image of master track.
3121
3122 The filter accepts the following options:
3123
3124 @table @option
3125 @item level_in
3126 Set input level before filtering for both channels. Defaults is 1.
3127 Allowed range is from 0.015625 to 64.
3128
3129 @item level_out
3130 Set output level after filtering for both channels. Defaults is 1.
3131 Allowed range is from 0.015625 to 64.
3132
3133 @item balance_in
3134 Set input balance between both channels. Default is 0.
3135 Allowed range is from -1 to 1.
3136
3137 @item balance_out
3138 Set output balance between both channels. Default is 0.
3139 Allowed range is from -1 to 1.
3140
3141 @item softclip
3142 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3143 clipping. Disabled by default.
3144
3145 @item mutel
3146 Mute the left channel. Disabled by default.
3147
3148 @item muter
3149 Mute the right channel. Disabled by default.
3150
3151 @item phasel
3152 Change the phase of the left channel. Disabled by default.
3153
3154 @item phaser
3155 Change the phase of the right channel. Disabled by default.
3156
3157 @item mode
3158 Set stereo mode. Available values are:
3159
3160 @table @samp
3161 @item lr>lr
3162 Left/Right to Left/Right, this is default.
3163
3164 @item lr>ms
3165 Left/Right to Mid/Side.
3166
3167 @item ms>lr
3168 Mid/Side to Left/Right.
3169
3170 @item lr>ll
3171 Left/Right to Left/Left.
3172
3173 @item lr>rr
3174 Left/Right to Right/Right.
3175
3176 @item lr>l+r
3177 Left/Right to Left + Right.
3178
3179 @item lr>rl
3180 Left/Right to Right/Left.
3181 @end table
3182
3183 @item slev
3184 Set level of side signal. Default is 1.
3185 Allowed range is from 0.015625 to 64.
3186
3187 @item sbal
3188 Set balance of side signal. Default is 0.
3189 Allowed range is from -1 to 1.
3190
3191 @item mlev
3192 Set level of the middle signal. Default is 1.
3193 Allowed range is from 0.015625 to 64.
3194
3195 @item mpan
3196 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3197
3198 @item base
3199 Set stereo base between mono and inversed channels. Default is 0.
3200 Allowed range is from -1 to 1.
3201
3202 @item delay
3203 Set delay in milliseconds how much to delay left from right channel and
3204 vice versa. Default is 0. Allowed range is from -20 to 20.
3205
3206 @item sclevel
3207 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3208
3209 @item phase
3210 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3211 @end table
3212
3213 @section stereowiden
3214
3215 This filter enhance the stereo effect by suppressing signal common to both
3216 channels and by delaying the signal of left into right and vice versa,
3217 thereby widening the stereo effect.
3218
3219 The filter accepts the following options:
3220
3221 @table @option
3222 @item delay
3223 Time in milliseconds of the delay of left signal into right and vice versa.
3224 Default is 20 milliseconds.
3225
3226 @item feedback
3227 Amount of gain in delayed signal into right and vice versa. Gives a delay
3228 effect of left signal in right output and vice versa which gives widening
3229 effect. Default is 0.3.
3230
3231 @item crossfeed
3232 Cross feed of left into right with inverted phase. This helps in suppressing
3233 the mono. If the value is 1 it will cancel all the signal common to both
3234 channels. Default is 0.3.
3235
3236 @item drymix
3237 Set level of input signal of original channel. Default is 0.8.
3238 @end table
3239
3240 @section treble
3241
3242 Boost or cut treble (upper) frequencies of the audio using a two-pole
3243 shelving filter with a response similar to that of a standard
3244 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3245
3246 The filter accepts the following options:
3247
3248 @table @option
3249 @item gain, g
3250 Give the gain at whichever is the lower of ~22 kHz and the
3251 Nyquist frequency. Its useful range is about -20 (for a large cut)
3252 to +20 (for a large boost). Beware of clipping when using a positive gain.
3253
3254 @item frequency, f
3255 Set the filter's central frequency and so can be used
3256 to extend or reduce the frequency range to be boosted or cut.
3257 The default value is @code{3000} Hz.
3258
3259 @item width_type
3260 Set method to specify band-width of filter.
3261 @table @option
3262 @item h
3263 Hz
3264 @item q
3265 Q-Factor
3266 @item o
3267 octave
3268 @item s
3269 slope
3270 @end table
3271
3272 @item width, w
3273 Determine how steep is the filter's shelf transition.
3274 @end table
3275
3276 @section tremolo
3277
3278 Sinusoidal amplitude modulation.
3279
3280 The filter accepts the following options:
3281
3282 @table @option
3283 @item f
3284 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3285 (20 Hz or lower) will result in a tremolo effect.
3286 This filter may also be used as a ring modulator by specifying
3287 a modulation frequency higher than 20 Hz.
3288 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3289
3290 @item d
3291 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3292 Default value is 0.5.
3293 @end table
3294
3295 @section vibrato
3296
3297 Sinusoidal phase modulation.
3298
3299 The filter accepts the following options:
3300
3301 @table @option
3302 @item f
3303 Modulation frequency in Hertz.
3304 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3305
3306 @item d
3307 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3308 Default value is 0.5.
3309 @end table
3310
3311 @section volume
3312
3313 Adjust the input audio volume.
3314
3315 It accepts the following parameters:
3316 @table @option
3317
3318 @item volume
3319 Set audio volume expression.
3320
3321 Output values are clipped to the maximum value.
3322
3323 The output audio volume is given by the relation:
3324 @example
3325 @var{output_volume} = @var{volume} * @var{input_volume}
3326 @end example
3327
3328 The default value for @var{volume} is "1.0".
3329
3330 @item precision
3331 This parameter represents the mathematical precision.
3332
3333 It determines which input sample formats will be allowed, which affects the
3334 precision of the volume scaling.
3335
3336 @table @option
3337 @item fixed
3338 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3339 @item float
3340 32-bit floating-point; this limits input sample format to FLT. (default)
3341 @item double
3342 64-bit floating-point; this limits input sample format to DBL.
3343 @end table
3344
3345 @item replaygain
3346 Choose the behaviour on encountering ReplayGain side data in input frames.
3347
3348 @table @option
3349 @item drop
3350 Remove ReplayGain side data, ignoring its contents (the default).
3351
3352 @item ignore
3353 Ignore ReplayGain side data, but leave it in the frame.
3354
3355 @item track
3356 Prefer the track gain, if present.
3357
3358 @item album
3359 Prefer the album gain, if present.
3360 @end table
3361
3362 @item replaygain_preamp
3363 Pre-amplification gain in dB to apply to the selected replaygain gain.
3364
3365 Default value for @var{replaygain_preamp} is 0.0.
3366
3367 @item eval
3368 Set when the volume expression is evaluated.
3369
3370 It accepts the following values:
3371 @table @samp
3372 @item once
3373 only evaluate expression once during the filter initialization, or
3374 when the @samp{volume} command is sent
3375
3376 @item frame
3377 evaluate expression for each incoming frame
3378 @end table
3379
3380 Default value is @samp{once}.
3381 @end table
3382
3383 The volume expression can contain the following parameters.
3384
3385 @table @option
3386 @item n
3387 frame number (starting at zero)
3388 @item nb_channels
3389 number of channels
3390 @item nb_consumed_samples
3391 number of samples consumed by the filter
3392 @item nb_samples
3393 number of samples in the current frame
3394 @item pos
3395 original frame position in the file
3396 @item pts
3397 frame PTS
3398 @item sample_rate
3399 sample rate
3400 @item startpts
3401 PTS at start of stream
3402 @item startt
3403 time at start of stream
3404 @item t
3405 frame time
3406 @item tb
3407 timestamp timebase
3408 @item volume
3409 last set volume value
3410 @end table
3411
3412 Note that when @option{eval} is set to @samp{once} only the
3413 @var{sample_rate} and @var{tb} variables are available, all other
3414 variables will evaluate to NAN.
3415
3416 @subsection Commands
3417
3418 This filter supports the following commands:
3419 @table @option
3420 @item volume
3421 Modify the volume expression.
3422 The command accepts the same syntax of the corresponding option.
3423
3424 If the specified expression is not valid, it is kept at its current
3425 value.
3426 @item replaygain_noclip
3427 Prevent clipping by limiting the gain applied.
3428
3429 Default value for @var{replaygain_noclip} is 1.
3430
3431 @end table
3432
3433 @subsection Examples
3434
3435 @itemize
3436 @item
3437 Halve the input audio volume:
3438 @example
3439 volume=volume=0.5
3440 volume=volume=1/2
3441 volume=volume=-6.0206dB
3442 @end example
3443
3444 In all the above example the named key for @option{volume} can be
3445 omitted, for example like in:
3446 @example
3447 volume=0.5
3448 @end example
3449
3450 @item
3451 Increase input audio power by 6 decibels using fixed-point precision:
3452 @example
3453 volume=volume=6dB:precision=fixed
3454 @end example
3455
3456 @item
3457 Fade volume after time 10 with an annihilation period of 5 seconds:
3458 @example
3459 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3460 @end example
3461 @end itemize
3462
3463 @section volumedetect
3464
3465 Detect the volume of the input video.
3466
3467 The filter has no parameters. The input is not modified. Statistics about
3468 the volume will be printed in the log when the input stream end is reached.
3469
3470 In particular it will show the mean volume (root mean square), maximum
3471 volume (on a per-sample basis), and the beginning of a histogram of the
3472 registered volume values (from the maximum value to a cumulated 1/1000 of
3473 the samples).
3474
3475 All volumes are in decibels relative to the maximum PCM value.
3476
3477 @subsection Examples
3478
3479 Here is an excerpt of the output:
3480 @example
3481 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3482 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3483 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3484 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3485 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3486 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3487 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3488 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3489 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3490 @end example
3491
3492 It means that:
3493 @itemize
3494 @item
3495 The mean square energy is approximately -27 dB, or 10^-2.7.
3496 @item
3497 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3498 @item
3499 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3500 @end itemize
3501
3502 In other words, raising the volume by +4 dB does not cause any clipping,
3503 raising it by +5 dB causes clipping for 6 samples, etc.
3504
3505 @c man end AUDIO FILTERS
3506
3507 @chapter Audio Sources
3508 @c man begin AUDIO SOURCES
3509
3510 Below is a description of the currently available audio sources.
3511
3512 @section abuffer
3513
3514 Buffer audio frames, and make them available to the filter chain.
3515
3516 This source is mainly intended for a programmatic use, in particular
3517 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3518
3519 It accepts the following parameters:
3520 @table @option
3521
3522 @item time_base
3523 The timebase which will be used for timestamps of submitted frames. It must be
3524 either a floating-point number or in @var{numerator}/@var{denominator} form.
3525
3526 @item sample_rate
3527 The sample rate of the incoming audio buffers.
3528
3529 @item sample_fmt
3530 The sample format of the incoming audio buffers.
3531 Either a sample format name or its corresponding integer representation from
3532 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3533
3534 @item channel_layout
3535 The channel layout of the incoming audio buffers.
3536 Either a channel layout name from channel_layout_map in
3537 @file{libavutil/channel_layout.c} or its corresponding integer representation
3538 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3539
3540 @item channels
3541 The number of channels of the incoming audio buffers.
3542 If both @var{channels} and @var{channel_layout} are specified, then they
3543 must be consistent.
3544
3545 @end table
3546
3547 @subsection Examples
3548
3549 @example
3550 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3551 @end example
3552
3553 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3554 Since the sample format with name "s16p" corresponds to the number
3555 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3556 equivalent to:
3557 @example
3558 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3559 @end example
3560
3561 @section aevalsrc
3562
3563 Generate an audio signal specified by an expression.
3564
3565 This source accepts in input one or more expressions (one for each
3566 channel), which are evaluated and used to generate a corresponding
3567 audio signal.
3568
3569 This source accepts the following options:
3570
3571 @table @option
3572 @item exprs
3573 Set the '|'-separated expressions list for each separate channel. In case the
3574 @option{channel_layout} option is not specified, the selected channel layout
3575 depends on the number of provided expressions. Otherwise the last
3576 specified expression is applied to the remaining output channels.
3577
3578 @item channel_layout, c
3579 Set the channel layout. The number of channels in the specified layout
3580 must be equal to the number of specified expressions.
3581
3582 @item duration, d
3583 Set the minimum duration of the sourced audio. See
3584 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3585 for the accepted syntax.
3586 Note that the resulting duration may be greater than the specified
3587 duration, as the generated audio is always cut at the end of a
3588 complete frame.
3589
3590 If not specified, or the expressed duration is negative, the audio is
3591 supposed to be generated forever.
3592
3593 @item nb_samples, n
3594 Set the number of samples per channel per each output frame,
3595 default to 1024.
3596
3597 @item sample_rate, s
3598 Specify the sample rate, default to 44100.
3599 @end table
3600
3601 Each expression in @var{exprs} can contain the following constants:
3602
3603 @table @option
3604 @item n
3605 number of the evaluated sample, starting from 0
3606
3607 @item t
3608 time of the evaluated sample expressed in seconds, starting from 0
3609
3610 @item s
3611 sample rate
3612
3613 @end table
3614
3615 @subsection Examples
3616
3617 @itemize
3618 @item
3619 Generate silence:
3620 @example
3621 aevalsrc=0
3622 @end example
3623
3624 @item
3625 Generate a sin signal with frequency of 440 Hz, set sample rate to
3626 8000 Hz:
3627 @example
3628 aevalsrc="sin(440*2*PI*t):s=8000"
3629 @end example
3630
3631 @item
3632 Generate a two channels signal, specify the channel layout (Front
3633 Center + Back Center) explicitly:
3634 @example
3635 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3636 @end example
3637
3638 @item
3639 Generate white noise:
3640 @example
3641 aevalsrc="-2+random(0)"
3642 @end example
3643
3644 @item
3645 Generate an amplitude modulated signal:
3646 @example
3647 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3648 @end example
3649
3650 @item
3651 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3652 @example
3653 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3654 @end example
3655
3656 @end itemize
3657
3658 @section anullsrc
3659
3660 The null audio source, return unprocessed audio frames. It is mainly useful
3661 as a template and to be employed in analysis / debugging tools, or as
3662 the source for filters which ignore the input data (for example the sox
3663 synth filter).
3664
3665 This source accepts the following options:
3666
3667 @table @option
3668
3669 @item channel_layout, cl
3670
3671 Specifies the channel layout, and can be either an integer or a string
3672 representing a channel layout. The default value of @var{channel_layout}
3673 is "stereo".
3674
3675 Check the channel_layout_map definition in
3676 @file{libavutil/channel_layout.c} for the mapping between strings and
3677 channel layout values.
3678
3679 @item sample_rate, r
3680 Specifies the sample rate, and defaults to 44100.
3681
3682 @item nb_samples, n
3683 Set the number of samples per requested frames.
3684
3685 @end table
3686
3687 @subsection Examples
3688
3689 @itemize
3690 @item
3691 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3692 @example
3693 anullsrc=r=48000:cl=4
3694 @end example
3695
3696 @item
3697 Do the same operation with a more obvious syntax:
3698 @example
3699 anullsrc=r=48000:cl=mono
3700 @end example
3701 @end itemize
3702
3703 All the parameters need to be explicitly defined.
3704
3705 @section flite
3706
3707 Synthesize a voice utterance using the libflite library.
3708
3709 To enable compilation of this filter you need to configure FFmpeg with
3710 @code{--enable-libflite}.
3711
3712 Note that the flite library is not thread-safe.
3713
3714 The filter accepts the following options:
3715
3716 @table @option
3717
3718 @item list_voices
3719 If set to 1, list the names of the available voices and exit
3720 immediately. Default value is 0.
3721
3722 @item nb_samples, n
3723 Set the maximum number of samples per frame. Default value is 512.
3724
3725 @item textfile
3726 Set the filename containing the text to speak.
3727
3728 @item text
3729 Set the text to speak.
3730
3731 @item voice, v
3732 Set the voice to use for the speech synthesis. Default value is
3733 @code{kal}. See also the @var{list_voices} option.
3734 @end table
3735
3736 @subsection Examples
3737
3738 @itemize
3739 @item
3740 Read from file @file{speech.txt}, and synthesize the text using the
3741 standard flite voice:
3742 @example
3743 flite=textfile=speech.txt
3744 @end example
3745
3746 @item
3747 Read the specified text selecting the @code{slt} voice:
3748 @example
3749 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3750 @end example
3751
3752 @item
3753 Input text to ffmpeg:
3754 @example
3755 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3756 @end example
3757
3758 @item
3759 Make @file{ffplay} speak the specified text, using @code{flite} and
3760 the @code{lavfi} device:
3761 @example
3762 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3763 @end example
3764 @end itemize
3765
3766 For more information about libflite, check:
3767 @url{http://www.speech.cs.cmu.edu/flite/}
3768
3769 @section anoisesrc
3770
3771 Generate a noise audio signal.
3772
3773 The filter accepts the following options:
3774
3775 @table @option
3776 @item sample_rate, r
3777 Specify the sample rate. Default value is 48000 Hz.
3778
3779 @item amplitude, a
3780 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3781 is 1.0.
3782
3783 @item duration, d
3784 Specify the duration of the generated audio stream. Not specifying this option
3785 results in noise with an infinite length.
3786
3787 @item color, colour, c
3788 Specify the color of noise. Available noise colors are white, pink, and brown.
3789 Default color is white.
3790
3791 @item seed, s
3792 Specify a value used to seed the PRNG.
3793
3794 @item nb_samples, n
3795 Set the number of samples per each output frame, default is 1024.
3796 @end table
3797
3798 @subsection Examples
3799
3800 @itemize
3801
3802 @item
3803 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
3804 @example
3805 anoisesrc=d=60:c=pink:r=44100:a=0.5
3806 @end example
3807 @end itemize
3808
3809 @section sine
3810
3811 Generate an audio signal made of a sine wave with amplitude 1/8.
3812
3813 The audio signal is bit-exact.
3814
3815 The filter accepts the following options:
3816
3817 @table @option
3818
3819 @item frequency, f
3820 Set the carrier frequency. Default is 440 Hz.
3821
3822 @item beep_factor, b
3823 Enable a periodic beep every second with frequency @var{beep_factor} times
3824 the carrier frequency. Default is 0, meaning the beep is disabled.
3825
3826 @item sample_rate, r
3827 Specify the sample rate, default is 44100.
3828
3829 @item duration, d
3830 Specify the duration of the generated audio stream.
3831
3832 @item samples_per_frame
3833 Set the number of samples per output frame.
3834
3835 The expression can contain the following constants:
3836
3837 @table @option
3838 @item n
3839 The (sequential) number of the output audio frame, starting from 0.
3840
3841 @item pts
3842 The PTS (Presentation TimeStamp) of the output audio frame,
3843 expressed in @var{TB} units.
3844
3845 @item t
3846 The PTS of the output audio frame, expressed in seconds.
3847
3848 @item TB
3849 The timebase of the output audio frames.
3850 @end table
3851
3852 Default is @code{1024}.
3853 @end table
3854
3855 @subsection Examples
3856
3857 @itemize
3858
3859 @item
3860 Generate a simple 440 Hz sine wave:
3861 @example
3862 sine
3863 @end example
3864
3865 @item
3866 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
3867 @example
3868 sine=220:4:d=5
3869 sine=f=220:b=4:d=5
3870 sine=frequency=220:beep_factor=4:duration=5
3871 @end example
3872
3873 @item
3874 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
3875 pattern:
3876 @example
3877 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
3878 @end example
3879 @end itemize
3880
3881 @c man end AUDIO SOURCES
3882
3883 @chapter Audio Sinks
3884 @c man begin AUDIO SINKS
3885
3886 Below is a description of the currently available audio sinks.
3887
3888 @section abuffersink
3889
3890 Buffer audio frames, and make them available to the end of filter chain.
3891
3892 This sink is mainly intended for programmatic use, in particular
3893 through the interface defined in @file{libavfilter/buffersink.h}
3894 or the options system.
3895
3896 It accepts a pointer to an AVABufferSinkContext structure, which
3897 defines the incoming buffers' formats, to be passed as the opaque
3898 parameter to @code{avfilter_init_filter} for initialization.
3899 @section anullsink
3900
3901 Null audio sink; do absolutely nothing with the input audio. It is
3902 mainly useful as a template and for use in analysis / debugging
3903 tools.
3904
3905 @c man end AUDIO SINKS
3906
3907 @chapter Video Filters
3908 @c man begin VIDEO FILTERS
3909
3910 When you configure your FFmpeg build, you can disable any of the
3911 existing filters using @code{--disable-filters}.
3912 The configure output will show the video filters included in your
3913 build.
3914
3915 Below is a description of the currently available video filters.
3916
3917 @section alphaextract
3918
3919 Extract the alpha component from the input as a grayscale video. This
3920 is especially useful with the @var{alphamerge} filter.
3921
3922 @section alphamerge
3923
3924 Add or replace the alpha component of the primary input with the
3925 grayscale value of a second input. This is intended for use with
3926 @var{alphaextract} to allow the transmission or storage of frame
3927 sequences that have alpha in a format that doesn't support an alpha
3928 channel.
3929
3930 For example, to reconstruct full frames from a normal YUV-encoded video
3931 and a separate video created with @var{alphaextract}, you might use:
3932 @example
3933 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
3934 @end example
3935
3936 Since this filter is designed for reconstruction, it operates on frame
3937 sequences without considering timestamps, and terminates when either
3938 input reaches end of stream. This will cause problems if your encoding
3939 pipeline drops frames. If you're trying to apply an image as an
3940 overlay to a video stream, consider the @var{overlay} filter instead.
3941
3942 @section ass
3943
3944 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
3945 and libavformat to work. On the other hand, it is limited to ASS (Advanced
3946 Substation Alpha) subtitles files.
3947
3948 This filter accepts the following option in addition to the common options from
3949 the @ref{subtitles} filter:
3950
3951 @table @option
3952 @item shaping
3953 Set the shaping engine
3954
3955 Available values are:
3956 @table @samp
3957 @item auto
3958 The default libass shaping engine, which is the best available.
3959 @item simple
3960 Fast, font-agnostic shaper that can do only substitutions
3961 @item complex
3962 Slower shaper using OpenType for substitutions and positioning
3963 @end table
3964
3965 The default is @code{auto}.
3966 @end table
3967
3968 @section atadenoise
3969 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3970
3971 The filter accepts the following options:
3972
3973 @table @option
3974 @item 0a
3975 Set threshold A for 1st plane. Default is 0.02.
3976 Valid range is 0 to 0.3.
3977
3978 @item 0b
3979 Set threshold B for 1st plane. Default is 0.04.
3980 Valid range is 0 to 5.
3981
3982 @item 1a
3983 Set threshold A for 2nd plane. Default is 0.02.
3984 Valid range is 0 to 0.3.
3985
3986 @item 1b
3987 Set threshold B for 2nd plane. Default is 0.04.
3988 Valid range is 0 to 5.
3989
3990 @item 2a
3991 Set threshold A for 3rd plane. Default is 0.02.
3992 Valid range is 0 to 0.3.
3993
3994 @item 2b
3995 Set threshold B for 3rd plane. Default is 0.04.
3996 Valid range is 0 to 5.
3997
3998 Threshold A is designed to react on abrupt changes in the input signal and
3999 threshold B is designed to react on continuous changes in the input signal.
4000
4001 @item s
4002 Set number of frames filter will use for averaging. Default is 33. Must be odd
4003 number in range [5, 129].
4004 @end table
4005
4006 @section bbox
4007
4008 Compute the bounding box for the non-black pixels in the input frame
4009 luminance plane.
4010
4011 This filter computes the bounding box containing all the pixels with a
4012 luminance value greater than the minimum allowed value.
4013 The parameters describing the bounding box are printed on the filter
4014 log.
4015
4016 The filter accepts the following option:
4017
4018 @table @option
4019 @item min_val
4020 Set the minimal luminance value. Default is @code{16}.
4021 @end table
4022
4023 @section blackdetect
4024
4025 Detect video intervals that are (almost) completely black. Can be
4026 useful to detect chapter transitions, commercials, or invalid
4027 recordings. Output lines contains the time for the start, end and
4028 duration of the detected black interval expressed in seconds.
4029
4030 In order to display the output lines, you need to set the loglevel at
4031 least to the AV_LOG_INFO value.
4032
4033 The filter accepts the following options:
4034
4035 @table @option
4036 @item black_min_duration, d
4037 Set the minimum detected black duration expressed in seconds. It must
4038 be a non-negative floating point number.
4039
4040 Default value is 2.0.
4041
4042 @item picture_black_ratio_th, pic_th
4043 Set the threshold for considering a picture "black".
4044 Express the minimum value for the ratio:
4045 @example
4046 @var{nb_black_pixels} / @var{nb_pixels}
4047 @end example
4048
4049 for which a picture is considered black.
4050 Default value is 0.98.
4051
4052 @item pixel_black_th, pix_th
4053 Set the threshold for considering a pixel "black".
4054
4055 The threshold expresses the maximum pixel luminance value for which a
4056 pixel is considered "black". The provided value is scaled according to
4057 the following equation:
4058 @example
4059 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4060 @end example
4061
4062 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4063 the input video format, the range is [0-255] for YUV full-range
4064 formats and [16-235] for YUV non full-range formats.
4065
4066 Default value is 0.10.
4067 @end table
4068
4069 The following example sets the maximum pixel threshold to the minimum
4070 value, and detects only black intervals of 2 or more seconds:
4071 @example
4072 blackdetect=d=2:pix_th=0.00
4073 @end example
4074
4075 @section blackframe
4076
4077 Detect frames that are (almost) completely black. Can be useful to
4078 detect chapter transitions or commercials. Output lines consist of
4079 the frame number of the detected frame, the percentage of blackness,
4080 the position in the file if known or -1 and the timestamp in seconds.
4081
4082 In order to display the output lines, you need to set the loglevel at
4083 least to the AV_LOG_INFO value.
4084
4085 It accepts the following parameters:
4086
4087 @table @option
4088
4089 @item amount
4090 The percentage of the pixels that have to be below the threshold; it defaults to
4091 @code{98}.
4092
4093 @item threshold, thresh
4094 The threshold below which a pixel value is considered black; it defaults to
4095 @code{32}.
4096
4097 @end table
4098
4099 @section blend, tblend
4100
4101 Blend two video frames into each other.
4102
4103 The @code{blend} filter takes two input streams and outputs one
4104 stream, the first input is the "top" layer and second input is
4105 "bottom" layer.  Output terminates when shortest input terminates.
4106
4107 The @code{tblend} (time blend) filter takes two consecutive frames
4108 from one single stream, and outputs the result obtained by blending
4109 the new frame on top of the old frame.
4110
4111 A description of the accepted options follows.
4112
4113 @table @option
4114 @item c0_mode
4115 @item c1_mode
4116 @item c2_mode
4117 @item c3_mode
4118 @item all_mode
4119 Set blend mode for specific pixel component or all pixel components in case
4120 of @var{all_mode}. Default value is @code{normal}.
4121
4122 Available values for component modes are:
4123 @table @samp
4124 @item addition
4125 @item addition128
4126 @item and
4127 @item average
4128 @item burn
4129 @item darken
4130 @item difference
4131 @item difference128
4132 @item divide
4133 @item dodge
4134 @item exclusion
4135 @item glow
4136 @item hardlight
4137 @item hardmix
4138 @item lighten
4139 @item linearlight
4140 @item multiply
4141 @item multiply128
4142 @item negation
4143 @item normal
4144 @item or
4145 @item overlay
4146 @item phoenix
4147 @item pinlight
4148 @item reflect
4149 @item screen
4150 @item softlight
4151 @item subtract
4152 @item vividlight
4153 @item xor
4154 @end table
4155
4156 @item c0_opacity
4157 @item c1_opacity
4158 @item c2_opacity
4159 @item c3_opacity
4160 @item all_opacity
4161 Set blend opacity for specific pixel component or all pixel components in case
4162 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4163
4164 @item c0_expr
4165 @item c1_expr
4166 @item c2_expr
4167 @item c3_expr
4168 @item all_expr
4169 Set blend expression for specific pixel component or all pixel components in case
4170 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4171
4172 The expressions can use the following variables:
4173
4174 @table @option
4175 @item N
4176 The sequential number of the filtered frame, starting from @code{0}.
4177
4178 @item X
4179 @item Y
4180 the coordinates of the current sample
4181
4182 @item W
4183 @item H
4184 the width and height of currently filtered plane
4185
4186 @item SW
4187 @item SH
4188 Width and height scale depending on the currently filtered plane. It is the
4189 ratio between the corresponding luma plane number of pixels and the current
4190 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4191 @code{0.5,0.5} for chroma planes.
4192
4193 @item T
4194 Time of the current frame, expressed in seconds.
4195
4196 @item TOP, A
4197 Value of pixel component at current location for first video frame (top layer).
4198
4199 @item BOTTOM, B
4200 Value of pixel component at current location for second video frame (bottom layer).
4201 @end table
4202
4203 @item shortest
4204 Force termination when the shortest input terminates. Default is
4205 @code{0}. This option is only defined for the @code{blend} filter.
4206
4207 @item repeatlast
4208 Continue applying the last bottom frame after the end of the stream. A value of
4209 @code{0} disable the filter after the last frame of the bottom layer is reached.
4210 Default is @code{1}. This option is only defined for the @code{blend} filter.
4211 @end table
4212
4213 @subsection Examples
4214
4215 @itemize
4216 @item
4217 Apply transition from bottom layer to top layer in first 10 seconds:
4218 @example
4219 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4220 @end example
4221
4222 @item
4223 Apply 1x1 checkerboard effect:
4224 @example
4225 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4226 @end example
4227
4228 @item
4229 Apply uncover left effect:
4230 @example
4231 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4232 @end example
4233
4234 @item
4235 Apply uncover down effect:
4236 @example
4237 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4238 @end example
4239
4240 @item
4241 Apply uncover up-left effect:
4242 @example
4243 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4244 @end example
4245
4246 @item
4247 Split diagonally video and shows top and bottom layer on each side:
4248 @example
4249 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4250 @end example
4251
4252 @item
4253 Display differences between the current and the previous frame:
4254 @example
4255 tblend=all_mode=difference128
4256 @end example
4257 @end itemize
4258
4259 @section boxblur
4260
4261 Apply a boxblur algorithm to the input video.
4262
4263 It accepts the following parameters:
4264
4265 @table @option
4266
4267 @item luma_radius, lr
4268 @item luma_power, lp
4269 @item chroma_radius, cr
4270 @item chroma_power, cp
4271 @item alpha_radius, ar
4272 @item alpha_power, ap
4273
4274 @end table
4275
4276 A description of the accepted options follows.
4277
4278 @table @option
4279 @item luma_radius, lr
4280 @item chroma_radius, cr
4281 @item alpha_radius, ar
4282 Set an expression for the box radius in pixels used for blurring the
4283 corresponding input plane.
4284
4285 The radius value must be a non-negative number, and must not be
4286 greater than the value of the expression @code{min(w,h)/2} for the
4287 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4288 planes.
4289
4290 Default value for @option{luma_radius} is "2". If not specified,
4291 @option{chroma_radius} and @option{alpha_radius} default to the
4292 corresponding value set for @option{luma_radius}.
4293
4294 The expressions can contain the following constants:
4295 @table @option
4296 @item w
4297 @item h
4298 The input width and height in pixels.
4299
4300 @item cw
4301 @item ch
4302 The input chroma image width and height in pixels.
4303
4304 @item hsub
4305 @item vsub
4306 The horizontal and vertical chroma subsample values. For example, for the
4307 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4308 @end table
4309
4310 @item luma_power, lp
4311 @item chroma_power, cp
4312 @item alpha_power, ap
4313 Specify how many times the boxblur filter is applied to the
4314 corresponding plane.
4315
4316 Default value for @option{luma_power} is 2. If not specified,
4317 @option{chroma_power} and @option{alpha_power} default to the
4318 corresponding value set for @option{luma_power}.
4319
4320 A value of 0 will disable the effect.
4321 @end table
4322
4323 @subsection Examples
4324
4325 @itemize
4326 @item
4327 Apply a boxblur filter with the luma, chroma, and alpha radii
4328 set to 2:
4329 @example
4330 boxblur=luma_radius=2:luma_power=1
4331 boxblur=2:1
4332 @end example
4333
4334 @item
4335 Set the luma radius to 2, and alpha and chroma radius to 0:
4336 @example
4337 boxblur=2:1:cr=0:ar=0
4338 @end example
4339
4340 @item
4341 Set the luma and chroma radii to a fraction of the video dimension:
4342 @example
4343 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4344 @end example
4345 @end itemize
4346
4347 @section chromakey
4348 YUV colorspace color/chroma keying.
4349
4350 The filter accepts the following options:
4351
4352 @table @option
4353 @item color
4354 The color which will be replaced with transparency.
4355
4356 @item similarity
4357 Similarity percentage with the key color.
4358
4359 0.01 matches only the exact key color, while 1.0 matches everything.
4360
4361 @item blend
4362 Blend percentage.
4363
4364 0.0 makes pixels either fully transparent, or not transparent at all.
4365
4366 Higher values result in semi-transparent pixels, with a higher transparency
4367 the more similar the pixels color is to the key color.
4368
4369 @item yuv
4370 Signals that the color passed is already in YUV instead of RGB.
4371
4372 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4373 This can be used to pass exact YUV values as hexadecimal numbers.
4374 @end table
4375
4376 @subsection Examples
4377
4378 @itemize
4379 @item
4380 Make every green pixel in the input image transparent:
4381 @example
4382 ffmpeg -i input.png -vf chromakey=green out.png
4383 @end example
4384
4385 @item
4386 Overlay a greenscreen-video on top of a static black background.
4387 @example
4388 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
4389 @end example
4390 @end itemize
4391
4392 @section codecview
4393
4394 Visualize information exported by some codecs.
4395
4396 Some codecs can export information through frames using side-data or other
4397 means. For example, some MPEG based codecs export motion vectors through the
4398 @var{export_mvs} flag in the codec @option{flags2} option.
4399
4400 The filter accepts the following option:
4401
4402 @table @option
4403 @item mv
4404 Set motion vectors to visualize.
4405
4406 Available flags for @var{mv} are:
4407
4408 @table @samp
4409 @item pf
4410 forward predicted MVs of P-frames
4411 @item bf
4412 forward predicted MVs of B-frames
4413 @item bb
4414 backward predicted MVs of B-frames
4415 @end table
4416
4417 @item qp
4418 Display quantization parameters using the chroma planes
4419 @end table
4420
4421 @subsection Examples
4422
4423 @itemize
4424 @item
4425 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4426 @example
4427 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4428 @end example
4429 @end itemize
4430
4431 @section colorbalance
4432 Modify intensity of primary colors (red, green and blue) of input frames.
4433
4434 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4435 regions for the red-cyan, green-magenta or blue-yellow balance.
4436
4437 A positive adjustment value shifts the balance towards the primary color, a negative
4438 value towards the complementary color.
4439
4440 The filter accepts the following options:
4441
4442 @table @option
4443 @item rs
4444 @item gs
4445 @item bs
4446 Adjust red, green and blue shadows (darkest pixels).
4447
4448 @item rm
4449 @item gm
4450 @item bm
4451 Adjust red, green and blue midtones (medium pixels).
4452
4453 @item rh
4454 @item gh
4455 @item bh
4456 Adjust red, green and blue highlights (brightest pixels).
4457
4458 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4459 @end table
4460
4461 @subsection Examples
4462
4463 @itemize
4464 @item
4465 Add red color cast to shadows:
4466 @example
4467 colorbalance=rs=.3
4468 @end example
4469 @end itemize
4470
4471 @section colorkey
4472 RGB colorspace color keying.
4473
4474 The filter accepts the following options:
4475
4476 @table @option
4477 @item color
4478 The color which will be replaced with transparency.
4479
4480 @item similarity
4481 Similarity percentage with the key color.
4482
4483 0.01 matches only the exact key color, while 1.0 matches everything.
4484
4485 @item blend
4486 Blend percentage.
4487
4488 0.0 makes pixels either fully transparent, or not transparent at all.
4489
4490 Higher values result in semi-transparent pixels, with a higher transparency
4491 the more similar the pixels color is to the key color.
4492 @end table
4493
4494 @subsection Examples
4495
4496 @itemize
4497 @item
4498 Make every green pixel in the input image transparent:
4499 @example
4500 ffmpeg -i input.png -vf colorkey=green out.png
4501 @end example
4502
4503 @item
4504 Overlay a greenscreen-video on top of a static background image.
4505 @example
4506 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
4507 @end example
4508 @end itemize
4509
4510 @section colorlevels
4511
4512 Adjust video input frames using levels.
4513
4514 The filter accepts the following options:
4515
4516 @table @option
4517 @item rimin
4518 @item gimin
4519 @item bimin
4520 @item aimin
4521 Adjust red, green, blue and alpha input black point.
4522 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4523
4524 @item rimax
4525 @item gimax
4526 @item bimax
4527 @item aimax
4528 Adjust red, green, blue and alpha input white point.
4529 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4530
4531 Input levels are used to lighten highlights (bright tones), darken shadows
4532 (dark tones), change the balance of bright and dark tones.
4533
4534 @item romin
4535 @item gomin
4536 @item bomin
4537 @item aomin
4538 Adjust red, green, blue and alpha output black point.
4539 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4540
4541 @item romax
4542 @item gomax
4543 @item bomax
4544 @item aomax
4545 Adjust red, green, blue and alpha output white point.
4546 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4547
4548 Output levels allows manual selection of a constrained output level range.
4549 @end table
4550
4551 @subsection Examples
4552
4553 @itemize
4554 @item
4555 Make video output darker:
4556 @example
4557 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4558 @end example
4559
4560 @item
4561 Increase contrast:
4562 @example
4563 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4564 @end example
4565
4566 @item
4567 Make video output lighter:
4568 @example
4569 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4570 @end example
4571
4572 @item
4573 Increase brightness:
4574 @example
4575 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4576 @end example
4577 @end itemize
4578
4579 @section colorchannelmixer
4580
4581 Adjust video input frames by re-mixing color channels.
4582
4583 This filter modifies a color channel by adding the values associated to
4584 the other channels of the same pixels. For example if the value to
4585 modify is red, the output value will be:
4586 @example
4587 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4588 @end example
4589
4590 The filter accepts the following options:
4591
4592 @table @option
4593 @item rr
4594 @item rg
4595 @item rb
4596 @item ra
4597 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4598 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4599
4600 @item gr
4601 @item gg
4602 @item gb
4603 @item ga
4604 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4605 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4606
4607 @item br
4608 @item bg
4609 @item bb
4610 @item ba
4611 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4612 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4613
4614 @item ar
4615 @item ag
4616 @item ab
4617 @item aa
4618 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4619 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4620
4621 Allowed ranges for options are @code{[-2.0, 2.0]}.
4622 @end table
4623
4624 @subsection Examples
4625
4626 @itemize
4627 @item
4628 Convert source to grayscale:
4629 @example
4630 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4631 @end example
4632 @item
4633 Simulate sepia tones:
4634 @example
4635 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4636 @end example
4637 @end itemize
4638
4639 @section colormatrix
4640
4641 Convert color matrix.
4642
4643 The filter accepts the following options:
4644
4645 @table @option
4646 @item src
4647 @item dst
4648 Specify the source and destination color matrix. Both values must be
4649 specified.
4650
4651 The accepted values are:
4652 @table @samp
4653 @item bt709
4654 BT.709
4655
4656 @item bt601
4657 BT.601
4658
4659 @item smpte240m
4660 SMPTE-240M
4661
4662 @item fcc
4663 FCC
4664 @end table
4665 @end table
4666
4667 For example to convert from BT.601 to SMPTE-240M, use the command:
4668 @example
4669 colormatrix=bt601:smpte240m
4670 @end example
4671
4672 @section convolution
4673
4674 Apply convolution 3x3 or 5x5 filter.
4675
4676 The filter accepts the following options:
4677
4678 @table @option
4679 @item 0m
4680 @item 1m
4681 @item 2m
4682 @item 3m
4683 Set matrix for each plane.
4684 Matrix is sequence of 9 or 25 signed integers.
4685
4686 @item 0rdiv
4687 @item 1rdiv
4688 @item 2rdiv
4689 @item 3rdiv
4690 Set multiplier for calculated value for each plane.
4691
4692 @item 0bias
4693 @item 1bias
4694 @item 2bias
4695 @item 3bias
4696 Set bias for each plane. This value is added to the result of the multiplication.
4697 Useful for making the overall image brighter or darker. Default is 0.0.
4698 @end table
4699
4700 @subsection Examples
4701
4702 @itemize
4703 @item
4704 Apply sharpen:
4705 @example
4706 convolution="0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0"
4707 @end example
4708
4709 @item
4710 Apply blur:
4711 @example
4712 convolution="1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1/9:1/9:1/9:1/9"
4713 @end example
4714
4715 @item
4716 Apply edge enhance:
4717 @example
4718 convolution="0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:5:1:1:1:0:128:128:128"
4719 @end example
4720
4721 @item
4722 Apply edge detect:
4723 @example
4724 convolution="0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:5:5:5:1:0:128:128:128"
4725 @end example
4726
4727 @item
4728 Apply emboss:
4729 @example
4730 convolution="-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2"
4731 @end example
4732 @end itemize
4733
4734 @section copy
4735
4736 Copy the input source unchanged to the output. This is mainly useful for
4737 testing purposes.
4738
4739 @section crop
4740
4741 Crop the input video to given dimensions.
4742
4743 It accepts the following parameters:
4744
4745 @table @option
4746 @item w, out_w
4747 The width of the output video. It defaults to @code{iw}.
4748 This expression is evaluated only once during the filter
4749 configuration, or when the @samp{w} or @samp{out_w} command is sent.
4750
4751 @item h, out_h
4752 The height of the output video. It defaults to @code{ih}.
4753 This expression is evaluated only once during the filter
4754 configuration, or when the @samp{h} or @samp{out_h} command is sent.
4755
4756 @item x
4757 The horizontal position, in the input video, of the left edge of the output
4758 video. It defaults to @code{(in_w-out_w)/2}.
4759 This expression is evaluated per-frame.
4760
4761 @item y
4762 The vertical position, in the input video, of the top edge of the output video.
4763 It defaults to @code{(in_h-out_h)/2}.
4764 This expression is evaluated per-frame.
4765
4766 @item keep_aspect
4767 If set to 1 will force the output display aspect ratio
4768 to be the same of the input, by changing the output sample aspect
4769 ratio. It defaults to 0.
4770 @end table
4771
4772 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
4773 expressions containing the following constants:
4774
4775 @table @option
4776 @item x
4777 @item y
4778 The computed values for @var{x} and @var{y}. They are evaluated for
4779 each new frame.
4780
4781 @item in_w
4782 @item in_h
4783 The input width and height.
4784
4785 @item iw
4786 @item ih
4787 These are the same as @var{in_w} and @var{in_h}.
4788
4789 @item out_w
4790 @item out_h
4791 The output (cropped) width and height.
4792
4793 @item ow
4794 @item oh
4795 These are the same as @var{out_w} and @var{out_h}.
4796
4797 @item a
4798 same as @var{iw} / @var{ih}
4799
4800 @item sar
4801 input sample aspect ratio
4802
4803 @item dar
4804 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4805
4806 @item hsub
4807 @item vsub
4808 horizontal and vertical chroma subsample values. For example for the
4809 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4810
4811 @item n
4812 The number of the input frame, starting from 0.
4813
4814 @item pos
4815 the position in the file of the input frame, NAN if unknown
4816
4817 @item t
4818 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
4819
4820 @end table
4821
4822 The expression for @var{out_w} may depend on the value of @var{out_h},
4823 and the expression for @var{out_h} may depend on @var{out_w}, but they
4824 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
4825 evaluated after @var{out_w} and @var{out_h}.
4826
4827 The @var{x} and @var{y} parameters specify the expressions for the
4828 position of the top-left corner of the output (non-cropped) area. They
4829 are evaluated for each frame. If the evaluated value is not valid, it
4830 is approximated to the nearest valid value.
4831
4832 The expression for @var{x} may depend on @var{y}, and the expression
4833 for @var{y} may depend on @var{x}.
4834
4835 @subsection Examples
4836
4837 @itemize
4838 @item
4839 Crop area with size 100x100 at position (12,34).
4840 @example
4841 crop=100:100:12:34
4842 @end example
4843
4844 Using named options, the example above becomes:
4845 @example
4846 crop=w=100:h=100:x=12:y=34
4847 @end example
4848
4849 @item
4850 Crop the central input area with size 100x100:
4851 @example
4852 crop=100:100
4853 @end example
4854
4855 @item
4856 Crop the central input area with size 2/3 of the input video:
4857 @example
4858 crop=2/3*in_w:2/3*in_h
4859 @end example
4860
4861 @item
4862 Crop the input video central square:
4863 @example
4864 crop=out_w=in_h
4865 crop=in_h
4866 @end example
4867
4868 @item
4869 Delimit the rectangle with the top-left corner placed at position
4870 100:100 and the right-bottom corner corresponding to the right-bottom
4871 corner of the input image.
4872 @example
4873 crop=in_w-100:in_h-100:100:100
4874 @end example
4875
4876 @item
4877 Crop 10 pixels from the left and right borders, and 20 pixels from
4878 the top and bottom borders
4879 @example
4880 crop=in_w-2*10:in_h-2*20
4881 @end example
4882
4883 @item
4884 Keep only the bottom right quarter of the input image:
4885 @example
4886 crop=in_w/2:in_h/2:in_w/2:in_h/2
4887 @end example
4888
4889 @item
4890 Crop height for getting Greek harmony:
4891 @example
4892 crop=in_w:1/PHI*in_w
4893 @end example
4894
4895 @item
4896 Apply trembling effect:
4897 @example
4898 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)
4899 @end example
4900
4901 @item
4902 Apply erratic camera effect depending on timestamp:
4903 @example
4904 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)"
4905 @end example
4906
4907 @item
4908 Set x depending on the value of y:
4909 @example
4910 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
4911 @end example
4912 @end itemize
4913
4914 @subsection Commands
4915
4916 This filter supports the following commands:
4917 @table @option
4918 @item w, out_w
4919 @item h, out_h
4920 @item x
4921 @item y
4922 Set width/height of the output video and the horizontal/vertical position
4923 in the input video.
4924 The command accepts the same syntax of the corresponding option.
4925
4926 If the specified expression is not valid, it is kept at its current
4927 value.
4928 @end table
4929
4930 @section cropdetect
4931
4932 Auto-detect the crop size.
4933
4934 It calculates the necessary cropping parameters and prints the
4935 recommended parameters via the logging system. The detected dimensions
4936 correspond to the non-black area of the input video.
4937
4938 It accepts the following parameters:
4939
4940 @table @option
4941
4942 @item limit
4943 Set higher black value threshold, which can be optionally specified
4944 from nothing (0) to everything (255 for 8bit based formats). An intensity
4945 value greater to the set value is considered non-black. It defaults to 24.
4946 You can also specify a value between 0.0 and 1.0 which will be scaled depending
4947 on the bitdepth of the pixel format.
4948
4949 @item round
4950 The value which the width/height should be divisible by. It defaults to
4951 16. The offset is automatically adjusted to center the video. Use 2 to
4952 get only even dimensions (needed for 4:2:2 video). 16 is best when
4953 encoding to most video codecs.
4954
4955 @item reset_count, reset
4956 Set the counter that determines after how many frames cropdetect will
4957 reset the previously detected largest video area and start over to
4958 detect the current optimal crop area. Default value is 0.
4959
4960 This can be useful when channel logos distort the video area. 0
4961 indicates 'never reset', and returns the largest area encountered during
4962 playback.
4963 @end table
4964
4965 @anchor{curves}
4966 @section curves
4967
4968 Apply color adjustments using curves.
4969
4970 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
4971 component (red, green and blue) has its values defined by @var{N} key points
4972 tied from each other using a smooth curve. The x-axis represents the pixel
4973 values from the input frame, and the y-axis the new pixel values to be set for
4974 the output frame.
4975
4976 By default, a component curve is defined by the two points @var{(0;0)} and
4977 @var{(1;1)}. This creates a straight line where each original pixel value is
4978 "adjusted" to its own value, which means no change to the image.
4979
4980 The filter allows you to redefine these two points and add some more. A new
4981 curve (using a natural cubic spline interpolation) will be define to pass
4982 smoothly through all these new coordinates. The new defined points needs to be
4983 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
4984 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
4985 the vector spaces, the values will be clipped accordingly.
4986
4987 If there is no key point defined in @code{x=0}, the filter will automatically
4988 insert a @var{(0;0)} point. In the same way, if there is no key point defined
4989 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
4990
4991 The filter accepts the following options:
4992
4993 @table @option
4994 @item preset
4995 Select one of the available color presets. This option can be used in addition
4996 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
4997 options takes priority on the preset values.
4998 Available presets are:
4999 @table @samp
5000 @item none
5001 @item color_negative
5002 @item cross_process
5003 @item darker
5004 @item increase_contrast
5005 @item lighter
5006 @item linear_contrast
5007 @item medium_contrast
5008 @item negative
5009 @item strong_contrast
5010 @item vintage
5011 @end table
5012 Default is @code{none}.
5013 @item master, m
5014 Set the master key points. These points will define a second pass mapping. It
5015 is sometimes called a "luminance" or "value" mapping. It can be used with
5016 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5017 post-processing LUT.
5018 @item red, r
5019 Set the key points for the red component.
5020 @item green, g
5021 Set the key points for the green component.
5022 @item blue, b
5023 Set the key points for the blue component.
5024 @item all
5025 Set the key points for all components (not including master).
5026 Can be used in addition to the other key points component
5027 options. In this case, the unset component(s) will fallback on this
5028 @option{all} setting.
5029 @item psfile
5030 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5031 @end table
5032
5033 To avoid some filtergraph syntax conflicts, each key points list need to be
5034 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5035
5036 @subsection Examples
5037
5038 @itemize
5039 @item
5040 Increase slightly the middle level of blue:
5041 @example
5042 curves=blue='0.5/0.58'
5043 @end example
5044
5045 @item
5046 Vintage effect:
5047 @example
5048 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
5049 @end example
5050 Here we obtain the following coordinates for each components:
5051 @table @var
5052 @item red
5053 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5054 @item green
5055 @code{(0;0) (0.50;0.48) (1;1)}
5056 @item blue
5057 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5058 @end table
5059
5060 @item
5061 The previous example can also be achieved with the associated built-in preset:
5062 @example
5063 curves=preset=vintage
5064 @end example
5065
5066 @item
5067 Or simply:
5068 @example
5069 curves=vintage
5070 @end example
5071
5072 @item
5073 Use a Photoshop preset and redefine the points of the green component:
5074 @example
5075 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
5076 @end example
5077 @end itemize
5078
5079 @section dctdnoiz
5080
5081 Denoise frames using 2D DCT (frequency domain filtering).
5082
5083 This filter is not designed for real time.
5084
5085 The filter accepts the following options:
5086
5087 @table @option
5088 @item sigma, s
5089 Set the noise sigma constant.
5090
5091 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5092 coefficient (absolute value) below this threshold with be dropped.
5093
5094 If you need a more advanced filtering, see @option{expr}.
5095
5096 Default is @code{0}.
5097
5098 @item overlap
5099 Set number overlapping pixels for each block. Since the filter can be slow, you
5100 may want to reduce this value, at the cost of a less effective filter and the
5101 risk of various artefacts.
5102
5103 If the overlapping value doesn't permit processing the whole input width or
5104 height, a warning will be displayed and according borders won't be denoised.
5105
5106 Default value is @var{blocksize}-1, which is the best possible setting.
5107
5108 @item expr, e
5109 Set the coefficient factor expression.
5110
5111 For each coefficient of a DCT block, this expression will be evaluated as a
5112 multiplier value for the coefficient.
5113
5114 If this is option is set, the @option{sigma} option will be ignored.
5115
5116 The absolute value of the coefficient can be accessed through the @var{c}
5117 variable.
5118
5119 @item n
5120 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5121 @var{blocksize}, which is the width and height of the processed blocks.
5122
5123 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5124 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5125 on the speed processing. Also, a larger block size does not necessarily means a
5126 better de-noising.
5127 @end table
5128
5129 @subsection Examples
5130
5131 Apply a denoise with a @option{sigma} of @code{4.5}:
5132 @example
5133 dctdnoiz=4.5
5134 @end example
5135
5136 The same operation can be achieved using the expression system:
5137 @example
5138 dctdnoiz=e='gte(c, 4.5*3)'
5139 @end example
5140
5141 Violent denoise using a block size of @code{16x16}:
5142 @example
5143 dctdnoiz=15:n=4
5144 @end example
5145
5146 @section deband
5147
5148 Remove banding artifacts from input video.
5149 It works by replacing banded pixels with average value of referenced pixels.
5150
5151 The filter accepts the following options:
5152
5153 @table @option
5154 @item 1thr
5155 @item 2thr
5156 @item 3thr
5157 @item 4thr
5158 Set banding detection threshold for each plane. Default is 0.02.
5159 Valid range is 0.00003 to 0.5.
5160 If difference between current pixel and reference pixel is less than threshold,
5161 it will be considered as banded.
5162
5163 @item range, r
5164 Banding detection range in pixels. Default is 16. If positive, random number
5165 in range 0 to set value will be used. If negative, exact absolute value
5166 will be used.
5167 The range defines square of four pixels around current pixel.
5168
5169 @item direction, d
5170 Set direction in radians from which four pixel will be compared. If positive,
5171 random direction from 0 to set direction will be picked. If negative, exact of
5172 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5173 will pick only pixels on same row and -PI/2 will pick only pixels on same
5174 column.
5175
5176 @item blur
5177 If enabled, current pixel is compared with average value of all four
5178 surrounding pixels. The default is enabled. If disabled current pixel is
5179 compared with all four surrounding pixels. The pixel is considered banded
5180 if only all four differences with surrounding pixels are less than threshold.
5181 @end table
5182
5183 @anchor{decimate}
5184 @section decimate
5185
5186 Drop duplicated frames at regular intervals.
5187
5188 The filter accepts the following options:
5189
5190 @table @option
5191 @item cycle
5192 Set the number of frames from which one will be dropped. Setting this to
5193 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5194 Default is @code{5}.
5195
5196 @item dupthresh
5197 Set the threshold for duplicate detection. If the difference metric for a frame
5198 is less than or equal to this value, then it is declared as duplicate. Default
5199 is @code{1.1}
5200
5201 @item scthresh
5202 Set scene change threshold. Default is @code{15}.
5203
5204 @item blockx
5205 @item blocky
5206 Set the size of the x and y-axis blocks used during metric calculations.
5207 Larger blocks give better noise suppression, but also give worse detection of
5208 small movements. Must be a power of two. Default is @code{32}.
5209
5210 @item ppsrc
5211 Mark main input as a pre-processed input and activate clean source input
5212 stream. This allows the input to be pre-processed with various filters to help
5213 the metrics calculation while keeping the frame selection lossless. When set to
5214 @code{1}, the first stream is for the pre-processed input, and the second
5215 stream is the clean source from where the kept frames are chosen. Default is
5216 @code{0}.
5217
5218 @item chroma
5219 Set whether or not chroma is considered in the metric calculations. Default is
5220 @code{1}.
5221 @end table
5222
5223 @section deflate
5224
5225 Apply deflate effect to the video.
5226
5227 This filter replaces the pixel by the local(3x3) average by taking into account
5228 only values lower than the pixel.
5229
5230 It accepts the following options:
5231
5232 @table @option
5233 @item threshold0
5234 @item threshold1
5235 @item threshold2
5236 @item threshold3
5237 Limit the maximum change for each plane, default is 65535.
5238 If 0, plane will remain unchanged.
5239 @end table
5240
5241 @section dejudder
5242
5243 Remove judder produced by partially interlaced telecined content.
5244
5245 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5246 source was partially telecined content then the output of @code{pullup,dejudder}
5247 will have a variable frame rate. May change the recorded frame rate of the
5248 container. Aside from that change, this filter will not affect constant frame
5249 rate video.
5250
5251 The option available in this filter is:
5252 @table @option
5253
5254 @item cycle
5255 Specify the length of the window over which the judder repeats.
5256
5257 Accepts any integer greater than 1. Useful values are:
5258 @table @samp
5259
5260 @item 4
5261 If the original was telecined from 24 to 30 fps (Film to NTSC).
5262
5263 @item 5
5264 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5265
5266 @item 20
5267 If a mixture of the two.
5268 @end table
5269
5270 The default is @samp{4}.
5271 @end table
5272
5273 @section delogo
5274
5275 Suppress a TV station logo by a simple interpolation of the surrounding
5276 pixels. Just set a rectangle covering the logo and watch it disappear
5277 (and sometimes something even uglier appear - your mileage may vary).
5278
5279 It accepts the following parameters:
5280 @table @option
5281
5282 @item x
5283 @item y
5284 Specify the top left corner coordinates of the logo. They must be
5285 specified.
5286
5287 @item w
5288 @item h
5289 Specify the width and height of the logo to clear. They must be
5290 specified.
5291
5292 @item band, t
5293 Specify the thickness of the fuzzy edge of the rectangle (added to
5294 @var{w} and @var{h}). The default value is 1. This option is
5295 deprecated, setting higher values should no longer be necessary and
5296 is not recommended.
5297
5298 @item show
5299 When set to 1, a green rectangle is drawn on the screen to simplify
5300 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
5301 The default value is 0.
5302
5303 The rectangle is drawn on the outermost pixels which will be (partly)
5304 replaced with interpolated values. The values of the next pixels
5305 immediately outside this rectangle in each direction will be used to
5306 compute the interpolated pixel values inside the rectangle.
5307
5308 @end table
5309
5310 @subsection Examples
5311
5312 @itemize
5313 @item
5314 Set a rectangle covering the area with top left corner coordinates 0,0
5315 and size 100x77, and a band of size 10:
5316 @example
5317 delogo=x=0:y=0:w=100:h=77:band=10
5318 @end example
5319
5320 @end itemize
5321
5322 @section deshake
5323
5324 Attempt to fix small changes in horizontal and/or vertical shift. This
5325 filter helps remove camera shake from hand-holding a camera, bumping a
5326 tripod, moving on a vehicle, etc.
5327
5328 The filter accepts the following options:
5329
5330 @table @option
5331
5332 @item x
5333 @item y
5334 @item w
5335 @item h
5336 Specify a rectangular area where to limit the search for motion
5337 vectors.
5338 If desired the search for motion vectors can be limited to a
5339 rectangular area of the frame defined by its top left corner, width
5340 and height. These parameters have the same meaning as the drawbox
5341 filter which can be used to visualise the position of the bounding
5342 box.
5343
5344 This is useful when simultaneous movement of subjects within the frame
5345 might be confused for camera motion by the motion vector search.
5346
5347 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
5348 then the full frame is used. This allows later options to be set
5349 without specifying the bounding box for the motion vector search.
5350
5351 Default - search the whole frame.
5352
5353 @item rx
5354 @item ry
5355 Specify the maximum extent of movement in x and y directions in the
5356 range 0-64 pixels. Default 16.
5357
5358 @item edge
5359 Specify how to generate pixels to fill blanks at the edge of the
5360 frame. Available values are:
5361 @table @samp
5362 @item blank, 0
5363 Fill zeroes at blank locations
5364 @item original, 1
5365 Original image at blank locations
5366 @item clamp, 2
5367 Extruded edge value at blank locations
5368 @item mirror, 3
5369 Mirrored edge at blank locations
5370 @end table
5371 Default value is @samp{mirror}.
5372
5373 @item blocksize
5374 Specify the blocksize to use for motion search. Range 4-128 pixels,
5375 default 8.
5376
5377 @item contrast
5378 Specify the contrast threshold for blocks. Only blocks with more than
5379 the specified contrast (difference between darkest and lightest
5380 pixels) will be considered. Range 1-255, default 125.
5381
5382 @item search
5383 Specify the search strategy. Available values are:
5384 @table @samp
5385 @item exhaustive, 0
5386 Set exhaustive search
5387 @item less, 1
5388 Set less exhaustive search.
5389 @end table
5390 Default value is @samp{exhaustive}.
5391
5392 @item filename
5393 If set then a detailed log of the motion search is written to the
5394 specified file.
5395
5396 @item opencl
5397 If set to 1, specify using OpenCL capabilities, only available if
5398 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
5399
5400 @end table
5401
5402 @section detelecine
5403
5404 Apply an exact inverse of the telecine operation. It requires a predefined
5405 pattern specified using the pattern option which must be the same as that passed
5406 to the telecine filter.
5407
5408 This filter accepts the following options:
5409
5410 @table @option
5411 @item first_field
5412 @table @samp
5413 @item top, t
5414 top field first
5415 @item bottom, b
5416 bottom field first
5417 The default value is @code{top}.
5418 @end table
5419
5420 @item pattern
5421 A string of numbers representing the pulldown pattern you wish to apply.
5422 The default value is @code{23}.
5423
5424 @item start_frame
5425 A number representing position of the first frame with respect to the telecine
5426 pattern. This is to be used if the stream is cut. The default value is @code{0}.
5427 @end table
5428
5429 @section dilation
5430
5431 Apply dilation effect to the video.
5432
5433 This filter replaces the pixel by the local(3x3) maximum.
5434
5435 It accepts the following options:
5436
5437 @table @option
5438 @item threshold0
5439 @item threshold1
5440 @item threshold2
5441 @item threshold3
5442 Limit the maximum change for each plane, default is 65535.
5443 If 0, plane will remain unchanged.
5444
5445 @item coordinates
5446 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5447 pixels are used.
5448
5449 Flags to local 3x3 coordinates maps like this:
5450
5451     1 2 3
5452     4   5
5453     6 7 8
5454 @end table
5455
5456 @section displace
5457
5458 Displace pixels as indicated by second and third input stream.
5459
5460 It takes three input streams and outputs one stream, the first input is the
5461 source, and second and third input are displacement maps.
5462
5463 The second input specifies how much to displace pixels along the
5464 x-axis, while the third input specifies how much to displace pixels
5465 along the y-axis.
5466 If one of displacement map streams terminates, last frame from that
5467 displacement map will be used.
5468
5469 Note that once generated, displacements maps can be reused over and over again.
5470
5471 A description of the accepted options follows.
5472
5473 @table @option
5474 @item edge
5475 Set displace behavior for pixels that are out of range.
5476
5477 Available values are:
5478 @table @samp
5479 @item blank
5480 Missing pixels are replaced by black pixels.
5481
5482 @item smear
5483 Adjacent pixels will spread out to replace missing pixels.
5484
5485 @item wrap
5486 Out of range pixels are wrapped so they point to pixels of other side.
5487 @end table
5488 Default is @samp{smear}.
5489
5490 @end table
5491
5492 @subsection Examples
5493
5494 @itemize
5495 @item
5496 Add ripple effect to rgb input of video size hd720:
5497 @example
5498 ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
5499 @end example
5500
5501 @item
5502 Add wave effect to rgb input of video size hd720:
5503 @example
5504 ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
5505 @end example
5506 @end itemize
5507
5508 @section drawbox
5509
5510 Draw a colored box on the input image.
5511
5512 It accepts the following parameters:
5513
5514 @table @option
5515 @item x
5516 @item y
5517 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
5518
5519 @item width, w
5520 @item height, h
5521 The expressions which specify the width and height of the box; if 0 they are interpreted as
5522 the input width and height. It defaults to 0.
5523
5524 @item color, c
5525 Specify the color of the box to write. For the general syntax of this option,
5526 check the "Color" section in the ffmpeg-utils manual. If the special
5527 value @code{invert} is used, the box edge color is the same as the
5528 video with inverted luma.
5529
5530 @item thickness, t
5531 The expression which sets the thickness of the box edge. Default value is @code{3}.
5532
5533 See below for the list of accepted constants.
5534 @end table
5535
5536 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5537 following constants:
5538
5539 @table @option
5540 @item dar
5541 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5542
5543 @item hsub
5544 @item vsub
5545 horizontal and vertical chroma subsample values. For example for the
5546 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5547
5548 @item in_h, ih
5549 @item in_w, iw
5550 The input width and height.
5551
5552 @item sar
5553 The input sample aspect ratio.
5554
5555 @item x
5556 @item y
5557 The x and y offset coordinates where the box is drawn.
5558
5559 @item w
5560 @item h
5561 The width and height of the drawn box.
5562
5563 @item t
5564 The thickness of the drawn box.
5565
5566 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5567 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5568
5569 @end table
5570
5571 @subsection Examples
5572
5573 @itemize
5574 @item
5575 Draw a black box around the edge of the input image:
5576 @example
5577 drawbox
5578 @end example
5579
5580 @item
5581 Draw a box with color red and an opacity of 50%:
5582 @example
5583 drawbox=10:20:200:60:red@@0.5
5584 @end example
5585
5586 The previous example can be specified as:
5587 @example
5588 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
5589 @end example
5590
5591 @item
5592 Fill the box with pink color:
5593 @example
5594 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
5595 @end example
5596
5597 @item
5598 Draw a 2-pixel red 2.40:1 mask:
5599 @example
5600 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
5601 @end example
5602 @end itemize
5603
5604 @section drawgraph, adrawgraph
5605
5606 Draw a graph using input video or audio metadata.
5607
5608 It accepts the following parameters:
5609
5610 @table @option
5611 @item m1
5612 Set 1st frame metadata key from which metadata values will be used to draw a graph.
5613
5614 @item fg1
5615 Set 1st foreground color expression.
5616
5617 @item m2
5618 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
5619
5620 @item fg2
5621 Set 2nd foreground color expression.
5622
5623 @item m3
5624 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
5625
5626 @item fg3
5627 Set 3rd foreground color expression.
5628
5629 @item m4
5630 Set 4th frame metadata key from which metadata values will be used to draw a graph.
5631
5632 @item fg4
5633 Set 4th foreground color expression.
5634
5635 @item min
5636 Set minimal value of metadata value.
5637
5638 @item max
5639 Set maximal value of metadata value.
5640
5641 @item bg
5642 Set graph background color. Default is white.
5643
5644 @item mode
5645 Set graph mode.
5646
5647 Available values for mode is:
5648 @table @samp
5649 @item bar
5650 @item dot
5651 @item line
5652 @end table
5653
5654 Default is @code{line}.
5655
5656 @item slide
5657 Set slide mode.
5658
5659 Available values for slide is:
5660 @table @samp
5661 @item frame
5662 Draw new frame when right border is reached.
5663
5664 @item replace
5665 Replace old columns with new ones.
5666
5667 @item scroll
5668 Scroll from right to left.
5669
5670 @item rscroll
5671 Scroll from left to right.
5672 @end table
5673
5674 Default is @code{frame}.
5675
5676 @item size
5677 Set size of graph video. For the syntax of this option, check the
5678 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
5679 The default value is @code{900x256}.
5680
5681 The foreground color expressions can use the following variables:
5682 @table @option
5683 @item MIN
5684 Minimal value of metadata value.
5685
5686 @item MAX
5687 Maximal value of metadata value.
5688
5689 @item VAL
5690 Current metadata key value.
5691 @end table
5692
5693 The color is defined as 0xAABBGGRR.
5694 @end table
5695
5696 Example using metadata from @ref{signalstats} filter:
5697 @example
5698 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
5699 @end example
5700
5701 Example using metadata from @ref{ebur128} filter:
5702 @example
5703 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
5704 @end example
5705
5706 @section drawgrid
5707
5708 Draw a grid on the input image.
5709
5710 It accepts the following parameters:
5711
5712 @table @option
5713 @item x
5714 @item y
5715 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
5716
5717 @item width, w
5718 @item height, h
5719 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
5720 input width and height, respectively, minus @code{thickness}, so image gets
5721 framed. Default to 0.
5722
5723 @item color, c
5724 Specify the color of the grid. For the general syntax of this option,
5725 check the "Color" section in the ffmpeg-utils manual. If the special
5726 value @code{invert} is used, the grid color is the same as the
5727 video with inverted luma.
5728
5729 @item thickness, t
5730 The expression which sets the thickness of the grid line. Default value is @code{1}.
5731
5732 See below for the list of accepted constants.
5733 @end table
5734
5735 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5736 following constants:
5737
5738 @table @option
5739 @item dar
5740 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5741
5742 @item hsub
5743 @item vsub
5744 horizontal and vertical chroma subsample values. For example for the
5745 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5746
5747 @item in_h, ih
5748 @item in_w, iw
5749 The input grid cell width and height.
5750
5751 @item sar
5752 The input sample aspect ratio.
5753
5754 @item x
5755 @item y
5756 The x and y coordinates of some point of grid intersection (meant to configure offset).
5757
5758 @item w
5759 @item h
5760 The width and height of the drawn cell.
5761
5762 @item t
5763 The thickness of the drawn cell.
5764
5765 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5766 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5767
5768 @end table
5769
5770 @subsection Examples
5771
5772 @itemize
5773 @item
5774 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
5775 @example
5776 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
5777 @end example
5778
5779 @item
5780 Draw a white 3x3 grid with an opacity of 50%:
5781 @example
5782 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
5783 @end example
5784 @end itemize
5785
5786 @anchor{drawtext}
5787 @section drawtext
5788
5789 Draw a text string or text from a specified file on top of a video, using the
5790 libfreetype library.
5791
5792 To enable compilation of this filter, you need to configure FFmpeg with
5793 @code{--enable-libfreetype}.
5794 To enable default font fallback and the @var{font} option you need to
5795 configure FFmpeg with @code{--enable-libfontconfig}.
5796 To enable the @var{text_shaping} option, you need to configure FFmpeg with
5797 @code{--enable-libfribidi}.
5798
5799 @subsection Syntax
5800
5801 It accepts the following parameters:
5802
5803 @table @option
5804
5805 @item box
5806 Used to draw a box around text using the background color.
5807 The value must be either 1 (enable) or 0 (disable).
5808 The default value of @var{box} is 0.
5809
5810 @item boxborderw
5811 Set the width of the border to be drawn around the box using @var{boxcolor}.
5812 The default value of @var{boxborderw} is 0.
5813
5814 @item boxcolor
5815 The color to be used for drawing box around text. For the syntax of this
5816 option, check the "Color" section in the ffmpeg-utils manual.
5817
5818 The default value of @var{boxcolor} is "white".
5819
5820 @item borderw
5821 Set the width of the border to be drawn around the text using @var{bordercolor}.
5822 The default value of @var{borderw} is 0.
5823
5824 @item bordercolor
5825 Set the color to be used for drawing border around text. For the syntax of this
5826 option, check the "Color" section in the ffmpeg-utils manual.
5827
5828 The default value of @var{bordercolor} is "black".
5829
5830 @item expansion
5831 Select how the @var{text} is expanded. Can be either @code{none},
5832 @code{strftime} (deprecated) or
5833 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
5834 below for details.
5835
5836 @item fix_bounds
5837 If true, check and fix text coords to avoid clipping.
5838
5839 @item fontcolor
5840 The color to be used for drawing fonts. For the syntax of this option, check
5841 the "Color" section in the ffmpeg-utils manual.
5842
5843 The default value of @var{fontcolor} is "black".
5844
5845 @item fontcolor_expr
5846 String which is expanded the same way as @var{text} to obtain dynamic
5847 @var{fontcolor} value. By default this option has empty value and is not
5848 processed. When this option is set, it overrides @var{fontcolor} option.
5849
5850 @item font
5851 The font family to be used for drawing text. By default Sans.
5852
5853 @item fontfile
5854 The font file to be used for drawing text. The path must be included.
5855 This parameter is mandatory if the fontconfig support is disabled.
5856
5857 @item draw
5858 This option does not exist, please see the timeline system
5859
5860 @item alpha
5861 Draw the text applying alpha blending. The value can
5862 be either a number between 0.0 and 1.0
5863 The expression accepts the same variables @var{x, y} do.
5864 The default value is 1.
5865 Please see fontcolor_expr
5866
5867 @item fontsize
5868 The font size to be used for drawing text.
5869 The default value of @var{fontsize} is 16.
5870
5871 @item text_shaping
5872 If set to 1, attempt to shape the text (for example, reverse the order of
5873 right-to-left text and join Arabic characters) before drawing it.
5874 Otherwise, just draw the text exactly as given.
5875 By default 1 (if supported).
5876
5877 @item ft_load_flags
5878 The flags to be used for loading the fonts.
5879
5880 The flags map the corresponding flags supported by libfreetype, and are
5881 a combination of the following values:
5882 @table @var
5883 @item default
5884 @item no_scale
5885 @item no_hinting
5886 @item render
5887 @item no_bitmap
5888 @item vertical_layout
5889 @item force_autohint
5890 @item crop_bitmap
5891 @item pedantic
5892 @item ignore_global_advance_width
5893 @item no_recurse
5894 @item ignore_transform
5895 @item monochrome
5896 @item linear_design
5897 @item no_autohint
5898 @end table
5899
5900 Default value is "default".
5901
5902 For more information consult the documentation for the FT_LOAD_*
5903 libfreetype flags.
5904
5905 @item shadowcolor
5906 The color to be used for drawing a shadow behind the drawn text. For the
5907 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
5908
5909 The default value of @var{shadowcolor} is "black".
5910
5911 @item shadowx
5912 @item shadowy
5913 The x and y offsets for the text shadow position with respect to the
5914 position of the text. They can be either positive or negative
5915 values. The default value for both is "0".
5916
5917 @item start_number
5918 The starting frame number for the n/frame_num variable. The default value
5919 is "0".
5920
5921 @item tabsize
5922 The size in number of spaces to use for rendering the tab.
5923 Default value is 4.
5924
5925 @item timecode
5926 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
5927 format. It can be used with or without text parameter. @var{timecode_rate}
5928 option must be specified.
5929
5930 @item timecode_rate, rate, r
5931 Set the timecode frame rate (timecode only).
5932
5933 @item text
5934 The text string to be drawn. The text must be a sequence of UTF-8
5935 encoded characters.
5936 This parameter is mandatory if no file is specified with the parameter
5937 @var{textfile}.
5938
5939 @item textfile
5940 A text file containing text to be drawn. The text must be a sequence
5941 of UTF-8 encoded characters.
5942
5943 This parameter is mandatory if no text string is specified with the
5944 parameter @var{text}.
5945
5946 If both @var{text} and @var{textfile} are specified, an error is thrown.
5947
5948 @item reload
5949 If set to 1, the @var{textfile} will be reloaded before each frame.
5950 Be sure to update it atomically, or it may be read partially, or even fail.
5951
5952 @item x
5953 @item y
5954 The expressions which specify the offsets where text will be drawn
5955 within the video frame. They are relative to the top/left border of the
5956 output image.
5957
5958 The default value of @var{x} and @var{y} is "0".
5959
5960 See below for the list of accepted constants and functions.
5961 @end table
5962
5963 The parameters for @var{x} and @var{y} are expressions containing the
5964 following constants and functions:
5965
5966 @table @option
5967 @item dar
5968 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
5969
5970 @item hsub
5971 @item vsub
5972 horizontal and vertical chroma subsample values. For example for the
5973 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5974
5975 @item line_h, lh
5976 the height of each text line
5977
5978 @item main_h, h, H
5979 the input height
5980
5981 @item main_w, w, W
5982 the input width
5983
5984 @item max_glyph_a, ascent
5985 the maximum distance from the baseline to the highest/upper grid
5986 coordinate used to place a glyph outline point, for all the rendered
5987 glyphs.
5988 It is a positive value, due to the grid's orientation with the Y axis
5989 upwards.
5990
5991 @item max_glyph_d, descent
5992 the maximum distance from the baseline to the lowest grid coordinate
5993 used to place a glyph outline point, for all the rendered glyphs.
5994 This is a negative value, due to the grid's orientation, with the Y axis
5995 upwards.
5996
5997 @item max_glyph_h
5998 maximum glyph height, that is the maximum height for all the glyphs
5999 contained in the rendered text, it is equivalent to @var{ascent} -
6000 @var{descent}.
6001
6002 @item max_glyph_w
6003 maximum glyph width, that is the maximum width for all the glyphs
6004 contained in the rendered text
6005
6006 @item n
6007 the number of input frame, starting from 0
6008
6009 @item rand(min, max)
6010 return a random number included between @var{min} and @var{max}
6011
6012 @item sar
6013 The input sample aspect ratio.
6014
6015 @item t
6016 timestamp expressed in seconds, NAN if the input timestamp is unknown
6017
6018 @item text_h, th
6019 the height of the rendered text
6020
6021 @item text_w, tw
6022 the width of the rendered text
6023
6024 @item x
6025 @item y
6026 the x and y offset coordinates where the text is drawn.
6027
6028 These parameters allow the @var{x} and @var{y} expressions to refer
6029 each other, so you can for example specify @code{y=x/dar}.
6030 @end table
6031
6032 @anchor{drawtext_expansion}
6033 @subsection Text expansion
6034
6035 If @option{expansion} is set to @code{strftime},
6036 the filter recognizes strftime() sequences in the provided text and
6037 expands them accordingly. Check the documentation of strftime(). This
6038 feature is deprecated.
6039
6040 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6041
6042 If @option{expansion} is set to @code{normal} (which is the default),
6043 the following expansion mechanism is used.
6044
6045 The backslash character @samp{\}, followed by any character, always expands to
6046 the second character.
6047
6048 Sequence of the form @code{%@{...@}} are expanded. The text between the
6049 braces is a function name, possibly followed by arguments separated by ':'.
6050 If the arguments contain special characters or delimiters (':' or '@}'),
6051 they should be escaped.
6052
6053 Note that they probably must also be escaped as the value for the
6054 @option{text} option in the filter argument string and as the filter
6055 argument in the filtergraph description, and possibly also for the shell,
6056 that makes up to four levels of escaping; using a text file avoids these
6057 problems.
6058
6059 The following functions are available:
6060
6061 @table @command
6062
6063 @item expr, e
6064 The expression evaluation result.
6065
6066 It must take one argument specifying the expression to be evaluated,
6067 which accepts the same constants and functions as the @var{x} and
6068 @var{y} values. Note that not all constants should be used, for
6069 example the text size is not known when evaluating the expression, so
6070 the constants @var{text_w} and @var{text_h} will have an undefined
6071 value.
6072
6073 @item expr_int_format, eif
6074 Evaluate the expression's value and output as formatted integer.
6075
6076 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6077 The second argument specifies the output format. Allowed values are @samp{x},
6078 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6079 @code{printf} function.
6080 The third parameter is optional and sets the number of positions taken by the output.
6081 It can be used to add padding with zeros from the left.
6082
6083 @item gmtime
6084 The time at which the filter is running, expressed in UTC.
6085 It can accept an argument: a strftime() format string.
6086
6087 @item localtime
6088 The time at which the filter is running, expressed in the local time zone.
6089 It can accept an argument: a strftime() format string.
6090
6091 @item metadata
6092 Frame metadata. It must take one argument specifying metadata key.
6093
6094 @item n, frame_num
6095 The frame number, starting from 0.
6096
6097 @item pict_type
6098 A 1 character description of the current picture type.
6099
6100 @item pts
6101 The timestamp of the current frame.
6102 It can take up to three arguments.
6103
6104 The first argument is the format of the timestamp; it defaults to @code{flt}
6105 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6106 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6107 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6108 @code{localtime} stands for the timestamp of the frame formatted as
6109 local time zone time.
6110
6111 The second argument is an offset added to the timestamp.
6112
6113 If the format is set to @code{localtime} or @code{gmtime},
6114 a third argument may be supplied: a strftime() format string.
6115 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6116 @end table
6117
6118 @subsection Examples
6119
6120 @itemize
6121 @item
6122 Draw "Test Text" with font FreeSerif, using the default values for the
6123 optional parameters.
6124
6125 @example
6126 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6127 @end example
6128
6129 @item
6130 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6131 and y=50 (counting from the top-left corner of the screen), text is
6132 yellow with a red box around it. Both the text and the box have an
6133 opacity of 20%.
6134
6135 @example
6136 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6137           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6138 @end example
6139
6140 Note that the double quotes are not necessary if spaces are not used
6141 within the parameter list.
6142
6143 @item
6144 Show the text at the center of the video frame:
6145 @example
6146 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6147 @end example
6148
6149 @item
6150 Show a text line sliding from right to left in the last row of the video
6151 frame. The file @file{LONG_LINE} is assumed to contain a single line
6152 with no newlines.
6153 @example
6154 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6155 @end example
6156
6157 @item
6158 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6159 @example
6160 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6161 @end example
6162
6163 @item
6164 Draw a single green letter "g", at the center of the input video.
6165 The glyph baseline is placed at half screen height.
6166 @example
6167 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6168 @end example
6169
6170 @item
6171 Show text for 1 second every 3 seconds:
6172 @example
6173 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6174 @end example
6175
6176 @item
6177 Use fontconfig to set the font. Note that the colons need to be escaped.
6178 @example
6179 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6180 @end example
6181
6182 @item
6183 Print the date of a real-time encoding (see strftime(3)):
6184 @example
6185 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6186 @end example
6187
6188 @item
6189 Show text fading in and out (appearing/disappearing):
6190 @example
6191 #!/bin/sh
6192 DS=1.0 # display start
6193 DE=10.0 # display end
6194 FID=1.5 # fade in duration
6195 FOD=5 # fade out duration
6196 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 @}"
6197 @end example
6198
6199 @end itemize
6200
6201 For more information about libfreetype, check:
6202 @url{http://www.freetype.org/}.
6203
6204 For more information about fontconfig, check:
6205 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6206
6207 For more information about libfribidi, check:
6208 @url{http://fribidi.org/}.
6209
6210 @section edgedetect
6211
6212 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6213
6214 The filter accepts the following options:
6215
6216 @table @option
6217 @item low
6218 @item high
6219 Set low and high threshold values used by the Canny thresholding
6220 algorithm.
6221
6222 The high threshold selects the "strong" edge pixels, which are then
6223 connected through 8-connectivity with the "weak" edge pixels selected
6224 by the low threshold.
6225
6226 @var{low} and @var{high} threshold values must be chosen in the range
6227 [0,1], and @var{low} should be lesser or equal to @var{high}.
6228
6229 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6230 is @code{50/255}.
6231
6232 @item mode
6233 Define the drawing mode.
6234
6235 @table @samp
6236 @item wires
6237 Draw white/gray wires on black background.
6238
6239 @item colormix
6240 Mix the colors to create a paint/cartoon effect.
6241 @end table
6242
6243 Default value is @var{wires}.
6244 @end table
6245
6246 @subsection Examples
6247
6248 @itemize
6249 @item
6250 Standard edge detection with custom values for the hysteresis thresholding:
6251 @example
6252 edgedetect=low=0.1:high=0.4
6253 @end example
6254
6255 @item
6256 Painting effect without thresholding:
6257 @example
6258 edgedetect=mode=colormix:high=0
6259 @end example
6260 @end itemize
6261
6262 @section eq
6263 Set brightness, contrast, saturation and approximate gamma adjustment.
6264
6265 The filter accepts the following options:
6266
6267 @table @option
6268 @item contrast
6269 Set the contrast expression. The value must be a float value in range
6270 @code{-2.0} to @code{2.0}. The default value is "1".
6271
6272 @item brightness
6273 Set the brightness expression. The value must be a float value in
6274 range @code{-1.0} to @code{1.0}. The default value is "0".
6275
6276 @item saturation
6277 Set the saturation expression. The value must be a float in
6278 range @code{0.0} to @code{3.0}. The default value is "1".
6279
6280 @item gamma
6281 Set the gamma expression. The value must be a float in range
6282 @code{0.1} to @code{10.0}.  The default value is "1".
6283
6284 @item gamma_r
6285 Set the gamma expression for red. The value must be a float in
6286 range @code{0.1} to @code{10.0}. The default value is "1".
6287
6288 @item gamma_g
6289 Set the gamma expression for green. The value must be a float in range
6290 @code{0.1} to @code{10.0}. The default value is "1".
6291
6292 @item gamma_b
6293 Set the gamma expression for blue. The value must be a float in range
6294 @code{0.1} to @code{10.0}. The default value is "1".
6295
6296 @item gamma_weight
6297 Set the gamma weight expression. It can be used to reduce the effect
6298 of a high gamma value on bright image areas, e.g. keep them from
6299 getting overamplified and just plain white. The value must be a float
6300 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
6301 gamma correction all the way down while @code{1.0} leaves it at its
6302 full strength. Default is "1".
6303
6304 @item eval
6305 Set when the expressions for brightness, contrast, saturation and
6306 gamma expressions are evaluated.
6307
6308 It accepts the following values:
6309 @table @samp
6310 @item init
6311 only evaluate expressions once during the filter initialization or
6312 when a command is processed
6313
6314 @item frame
6315 evaluate expressions for each incoming frame
6316 @end table
6317
6318 Default value is @samp{init}.
6319 @end table
6320
6321 The expressions accept the following parameters:
6322 @table @option
6323 @item n
6324 frame count of the input frame starting from 0
6325
6326 @item pos
6327 byte position of the corresponding packet in the input file, NAN if
6328 unspecified
6329
6330 @item r
6331 frame rate of the input video, NAN if the input frame rate is unknown
6332
6333 @item t
6334 timestamp expressed in seconds, NAN if the input timestamp is unknown
6335 @end table
6336
6337 @subsection Commands
6338 The filter supports the following commands:
6339
6340 @table @option
6341 @item contrast
6342 Set the contrast expression.
6343
6344 @item brightness
6345 Set the brightness expression.
6346
6347 @item saturation
6348 Set the saturation expression.
6349
6350 @item gamma
6351 Set the gamma expression.
6352
6353 @item gamma_r
6354 Set the gamma_r expression.
6355
6356 @item gamma_g
6357 Set gamma_g expression.
6358
6359 @item gamma_b
6360 Set gamma_b expression.
6361
6362 @item gamma_weight
6363 Set gamma_weight expression.
6364
6365 The command accepts the same syntax of the corresponding option.
6366
6367 If the specified expression is not valid, it is kept at its current
6368 value.
6369
6370 @end table
6371
6372 @section erosion
6373
6374 Apply erosion effect to the video.
6375
6376 This filter replaces the pixel by the local(3x3) minimum.
6377
6378 It accepts the following options:
6379
6380 @table @option
6381 @item threshold0
6382 @item threshold1
6383 @item threshold2
6384 @item threshold3
6385 Limit the maximum change for each plane, default is 65535.
6386 If 0, plane will remain unchanged.
6387
6388 @item coordinates
6389 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6390 pixels are used.
6391
6392 Flags to local 3x3 coordinates maps like this:
6393
6394     1 2 3
6395     4   5
6396     6 7 8
6397 @end table
6398
6399 @section extractplanes
6400
6401 Extract color channel components from input video stream into
6402 separate grayscale video streams.
6403
6404 The filter accepts the following option:
6405
6406 @table @option
6407 @item planes
6408 Set plane(s) to extract.
6409
6410 Available values for planes are:
6411 @table @samp
6412 @item y
6413 @item u
6414 @item v
6415 @item a
6416 @item r
6417 @item g
6418 @item b
6419 @end table
6420
6421 Choosing planes not available in the input will result in an error.
6422 That means you cannot select @code{r}, @code{g}, @code{b} planes
6423 with @code{y}, @code{u}, @code{v} planes at same time.
6424 @end table
6425
6426 @subsection Examples
6427
6428 @itemize
6429 @item
6430 Extract luma, u and v color channel component from input video frame
6431 into 3 grayscale outputs:
6432 @example
6433 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
6434 @end example
6435 @end itemize
6436
6437 @section elbg
6438
6439 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
6440
6441 For each input image, the filter will compute the optimal mapping from
6442 the input to the output given the codebook length, that is the number
6443 of distinct output colors.
6444
6445 This filter accepts the following options.
6446
6447 @table @option
6448 @item codebook_length, l
6449 Set codebook length. The value must be a positive integer, and
6450 represents the number of distinct output colors. Default value is 256.
6451
6452 @item nb_steps, n
6453 Set the maximum number of iterations to apply for computing the optimal
6454 mapping. The higher the value the better the result and the higher the
6455 computation time. Default value is 1.
6456
6457 @item seed, s
6458 Set a random seed, must be an integer included between 0 and
6459 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
6460 will try to use a good random seed on a best effort basis.
6461
6462 @item pal8
6463 Set pal8 output pixel format. This option does not work with codebook
6464 length greater than 256.
6465 @end table
6466
6467 @section fade
6468
6469 Apply a fade-in/out effect to the input video.
6470
6471 It accepts the following parameters:
6472
6473 @table @option
6474 @item type, t
6475 The effect type can be either "in" for a fade-in, or "out" for a fade-out
6476 effect.
6477 Default is @code{in}.
6478
6479 @item start_frame, s
6480 Specify the number of the frame to start applying the fade
6481 effect at. Default is 0.
6482
6483 @item nb_frames, n
6484 The number of frames that the fade effect lasts. At the end of the
6485 fade-in effect, the output video will have the same intensity as the input video.
6486 At the end of the fade-out transition, the output video will be filled with the
6487 selected @option{color}.
6488 Default is 25.
6489
6490 @item alpha
6491 If set to 1, fade only alpha channel, if one exists on the input.
6492 Default value is 0.
6493
6494 @item start_time, st
6495 Specify the timestamp (in seconds) of the frame to start to apply the fade
6496 effect. If both start_frame and start_time are specified, the fade will start at
6497 whichever comes last.  Default is 0.
6498
6499 @item duration, d
6500 The number of seconds for which the fade effect has to last. At the end of the
6501 fade-in effect the output video will have the same intensity as the input video,
6502 at the end of the fade-out transition the output video will be filled with the
6503 selected @option{color}.
6504 If both duration and nb_frames are specified, duration is used. Default is 0
6505 (nb_frames is used by default).
6506
6507 @item color, c
6508 Specify the color of the fade. Default is "black".
6509 @end table
6510
6511 @subsection Examples
6512
6513 @itemize
6514 @item
6515 Fade in the first 30 frames of video:
6516 @example
6517 fade=in:0:30
6518 @end example
6519
6520 The command above is equivalent to:
6521 @example
6522 fade=t=in:s=0:n=30
6523 @end example
6524
6525 @item
6526 Fade out the last 45 frames of a 200-frame video:
6527 @example
6528 fade=out:155:45
6529 fade=type=out:start_frame=155:nb_frames=45
6530 @end example
6531
6532 @item
6533 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
6534 @example
6535 fade=in:0:25, fade=out:975:25
6536 @end example
6537
6538 @item
6539 Make the first 5 frames yellow, then fade in from frame 5-24:
6540 @example
6541 fade=in:5:20:color=yellow
6542 @end example
6543
6544 @item
6545 Fade in alpha over first 25 frames of video:
6546 @example
6547 fade=in:0:25:alpha=1
6548 @end example
6549
6550 @item
6551 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
6552 @example
6553 fade=t=in:st=5.5:d=0.5
6554 @end example
6555
6556 @end itemize
6557
6558 @section fftfilt
6559 Apply arbitrary expressions to samples in frequency domain
6560
6561 @table @option
6562 @item dc_Y
6563 Adjust the dc value (gain) of the luma plane of the image. The filter
6564 accepts an integer value in range @code{0} to @code{1000}. The default
6565 value is set to @code{0}.
6566
6567 @item dc_U
6568 Adjust the dc value (gain) of the 1st chroma plane of the image. The
6569 filter accepts an integer value in range @code{0} to @code{1000}. The
6570 default value is set to @code{0}.
6571
6572 @item dc_V
6573 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
6574 filter accepts an integer value in range @code{0} to @code{1000}. The
6575 default value is set to @code{0}.
6576
6577 @item weight_Y
6578 Set the frequency domain weight expression for the luma plane.
6579
6580 @item weight_U
6581 Set the frequency domain weight expression for the 1st chroma plane.
6582
6583 @item weight_V
6584 Set the frequency domain weight expression for the 2nd chroma plane.
6585
6586 The filter accepts the following variables:
6587 @item X
6588 @item Y
6589 The coordinates of the current sample.
6590
6591 @item W
6592 @item H
6593 The width and height of the image.
6594 @end table
6595
6596 @subsection Examples
6597
6598 @itemize
6599 @item
6600 High-pass:
6601 @example
6602 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
6603 @end example
6604
6605 @item
6606 Low-pass:
6607 @example
6608 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
6609 @end example
6610
6611 @item
6612 Sharpen:
6613 @example
6614 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
6615 @end example
6616
6617 @item
6618 Blur:
6619 @example
6620 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
6621 @end example
6622
6623 @end itemize
6624
6625 @section field
6626
6627 Extract a single field from an interlaced image using stride
6628 arithmetic to avoid wasting CPU time. The output frames are marked as
6629 non-interlaced.
6630
6631 The filter accepts the following options:
6632
6633 @table @option
6634 @item type
6635 Specify whether to extract the top (if the value is @code{0} or
6636 @code{top}) or the bottom field (if the value is @code{1} or
6637 @code{bottom}).
6638 @end table
6639
6640 @section fieldhint
6641
6642 Create new frames by copying the top and bottom fields from surrounding frames
6643 supplied as numbers by the hint file.
6644
6645 @table @option
6646 @item hint
6647 Set file containing hints: absolute/relative frame numbers.
6648
6649 There must be one line for each frame in a clip. Each line must contain two
6650 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
6651 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
6652 is current frame number for @code{absolute} mode or out of [-1, 1] range
6653 for @code{relative} mode. First number tells from which frame to pick up top
6654 field and second number tells from which frame to pick up bottom field.
6655
6656 If optionally followed by @code{+} output frame will be marked as interlaced,
6657 else if followed by @code{-} output frame will be marked as progressive, else
6658 it will be marked same as input frame.
6659 If line starts with @code{#} or @code{;} that line is skipped.
6660
6661 @item mode
6662 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
6663 @end table
6664
6665 Example of first several lines of @code{hint} file for @code{relative} mode:
6666 @example
6667 0,0 - # first frame
6668 1,0 - # second frame, use third's frame top field and second's frame bottom field
6669 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
6670 1,0 -
6671 0,0 -
6672 0,0 -
6673 1,0 -
6674 1,0 -
6675 1,0 -
6676 0,0 -
6677 0,0 -
6678 1,0 -
6679 1,0 -
6680 1,0 -
6681 0,0 -
6682 @end example
6683
6684 @section fieldmatch
6685
6686 Field matching filter for inverse telecine. It is meant to reconstruct the
6687 progressive frames from a telecined stream. The filter does not drop duplicated
6688 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
6689 followed by a decimation filter such as @ref{decimate} in the filtergraph.
6690
6691 The separation of the field matching and the decimation is notably motivated by
6692 the possibility of inserting a de-interlacing filter fallback between the two.
6693 If the source has mixed telecined and real interlaced content,
6694 @code{fieldmatch} will not be able to match fields for the interlaced parts.
6695 But these remaining combed frames will be marked as interlaced, and thus can be
6696 de-interlaced by a later filter such as @ref{yadif} before decimation.
6697
6698 In addition to the various configuration options, @code{fieldmatch} can take an
6699 optional second stream, activated through the @option{ppsrc} option. If
6700 enabled, the frames reconstruction will be based on the fields and frames from
6701 this second stream. This allows the first input to be pre-processed in order to
6702 help the various algorithms of the filter, while keeping the output lossless
6703 (assuming the fields are matched properly). Typically, a field-aware denoiser,
6704 or brightness/contrast adjustments can help.
6705
6706 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
6707 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
6708 which @code{fieldmatch} is based on. While the semantic and usage are very
6709 close, some behaviour and options names can differ.
6710
6711 The @ref{decimate} filter currently only works for constant frame rate input.
6712 If your input has mixed telecined (30fps) and progressive content with a lower
6713 framerate like 24fps use the following filterchain to produce the necessary cfr
6714 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
6715
6716 The filter accepts the following options:
6717
6718 @table @option
6719 @item order
6720 Specify the assumed field order of the input stream. Available values are:
6721
6722 @table @samp
6723 @item auto
6724 Auto detect parity (use FFmpeg's internal parity value).
6725 @item bff
6726 Assume bottom field first.
6727 @item tff
6728 Assume top field first.
6729 @end table
6730
6731 Note that it is sometimes recommended not to trust the parity announced by the
6732 stream.
6733
6734 Default value is @var{auto}.
6735
6736 @item mode
6737 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
6738 sense that it won't risk creating jerkiness due to duplicate frames when
6739 possible, but if there are bad edits or blended fields it will end up
6740 outputting combed frames when a good match might actually exist. On the other
6741 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
6742 but will almost always find a good frame if there is one. The other values are
6743 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
6744 jerkiness and creating duplicate frames versus finding good matches in sections
6745 with bad edits, orphaned fields, blended fields, etc.
6746
6747 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
6748
6749 Available values are:
6750
6751 @table @samp
6752 @item pc
6753 2-way matching (p/c)
6754 @item pc_n
6755 2-way matching, and trying 3rd match if still combed (p/c + n)
6756 @item pc_u
6757 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
6758 @item pc_n_ub
6759 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
6760 still combed (p/c + n + u/b)
6761 @item pcn
6762 3-way matching (p/c/n)
6763 @item pcn_ub
6764 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
6765 detected as combed (p/c/n + u/b)
6766 @end table
6767
6768 The parenthesis at the end indicate the matches that would be used for that
6769 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
6770 @var{top}).
6771
6772 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
6773 the slowest.
6774
6775 Default value is @var{pc_n}.
6776
6777 @item ppsrc
6778 Mark the main input stream as a pre-processed input, and enable the secondary
6779 input stream as the clean source to pick the fields from. See the filter
6780 introduction for more details. It is similar to the @option{clip2} feature from
6781 VFM/TFM.
6782
6783 Default value is @code{0} (disabled).
6784
6785 @item field
6786 Set the field to match from. It is recommended to set this to the same value as
6787 @option{order} unless you experience matching failures with that setting. In
6788 certain circumstances changing the field that is used to match from can have a
6789 large impact on matching performance. Available values are:
6790
6791 @table @samp
6792 @item auto
6793 Automatic (same value as @option{order}).
6794 @item bottom
6795 Match from the bottom field.
6796 @item top
6797 Match from the top field.
6798 @end table
6799
6800 Default value is @var{auto}.
6801
6802 @item mchroma
6803 Set whether or not chroma is included during the match comparisons. In most
6804 cases it is recommended to leave this enabled. You should set this to @code{0}
6805 only if your clip has bad chroma problems such as heavy rainbowing or other
6806 artifacts. Setting this to @code{0} could also be used to speed things up at
6807 the cost of some accuracy.
6808
6809 Default value is @code{1}.
6810
6811 @item y0
6812 @item y1
6813 These define an exclusion band which excludes the lines between @option{y0} and
6814 @option{y1} from being included in the field matching decision. An exclusion
6815 band can be used to ignore subtitles, a logo, or other things that may
6816 interfere with the matching. @option{y0} sets the starting scan line and
6817 @option{y1} sets the ending line; all lines in between @option{y0} and
6818 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
6819 @option{y0} and @option{y1} to the same value will disable the feature.
6820 @option{y0} and @option{y1} defaults to @code{0}.
6821
6822 @item scthresh
6823 Set the scene change detection threshold as a percentage of maximum change on
6824 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
6825 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
6826 @option{scthresh} is @code{[0.0, 100.0]}.
6827
6828 Default value is @code{12.0}.
6829
6830 @item combmatch
6831 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
6832 account the combed scores of matches when deciding what match to use as the
6833 final match. Available values are:
6834
6835 @table @samp
6836 @item none
6837 No final matching based on combed scores.
6838 @item sc
6839 Combed scores are only used when a scene change is detected.
6840 @item full
6841 Use combed scores all the time.
6842 @end table
6843
6844 Default is @var{sc}.
6845
6846 @item combdbg
6847 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
6848 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
6849 Available values are:
6850
6851 @table @samp
6852 @item none
6853 No forced calculation.
6854 @item pcn
6855 Force p/c/n calculations.
6856 @item pcnub
6857 Force p/c/n/u/b calculations.
6858 @end table
6859
6860 Default value is @var{none}.
6861
6862 @item cthresh
6863 This is the area combing threshold used for combed frame detection. This
6864 essentially controls how "strong" or "visible" combing must be to be detected.
6865 Larger values mean combing must be more visible and smaller values mean combing
6866 can be less visible or strong and still be detected. Valid settings are from
6867 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
6868 be detected as combed). This is basically a pixel difference value. A good
6869 range is @code{[8, 12]}.
6870
6871 Default value is @code{9}.
6872
6873 @item chroma
6874 Sets whether or not chroma is considered in the combed frame decision.  Only
6875 disable this if your source has chroma problems (rainbowing, etc.) that are
6876 causing problems for the combed frame detection with chroma enabled. Actually,
6877 using @option{chroma}=@var{0} is usually more reliable, except for the case
6878 where there is chroma only combing in the source.
6879
6880 Default value is @code{0}.
6881
6882 @item blockx
6883 @item blocky
6884 Respectively set the x-axis and y-axis size of the window used during combed
6885 frame detection. This has to do with the size of the area in which
6886 @option{combpel} pixels are required to be detected as combed for a frame to be
6887 declared combed. See the @option{combpel} parameter description for more info.
6888 Possible values are any number that is a power of 2 starting at 4 and going up
6889 to 512.
6890
6891 Default value is @code{16}.
6892
6893 @item combpel
6894 The number of combed pixels inside any of the @option{blocky} by
6895 @option{blockx} size blocks on the frame for the frame to be detected as
6896 combed. While @option{cthresh} controls how "visible" the combing must be, this
6897 setting controls "how much" combing there must be in any localized area (a
6898 window defined by the @option{blockx} and @option{blocky} settings) on the
6899 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
6900 which point no frames will ever be detected as combed). This setting is known
6901 as @option{MI} in TFM/VFM vocabulary.
6902
6903 Default value is @code{80}.
6904 @end table
6905
6906 @anchor{p/c/n/u/b meaning}
6907 @subsection p/c/n/u/b meaning
6908
6909 @subsubsection p/c/n
6910
6911 We assume the following telecined stream:
6912
6913 @example
6914 Top fields:     1 2 2 3 4
6915 Bottom fields:  1 2 3 4 4
6916 @end example
6917
6918 The numbers correspond to the progressive frame the fields relate to. Here, the
6919 first two frames are progressive, the 3rd and 4th are combed, and so on.
6920
6921 When @code{fieldmatch} is configured to run a matching from bottom
6922 (@option{field}=@var{bottom}) this is how this input stream get transformed:
6923
6924 @example
6925 Input stream:
6926                 T     1 2 2 3 4
6927                 B     1 2 3 4 4   <-- matching reference
6928
6929 Matches:              c c n n c
6930
6931 Output stream:
6932                 T     1 2 3 4 4
6933                 B     1 2 3 4 4
6934 @end example
6935
6936 As a result of the field matching, we can see that some frames get duplicated.
6937 To perform a complete inverse telecine, you need to rely on a decimation filter
6938 after this operation. See for instance the @ref{decimate} filter.
6939
6940 The same operation now matching from top fields (@option{field}=@var{top})
6941 looks like this:
6942
6943 @example
6944 Input stream:
6945                 T     1 2 2 3 4   <-- matching reference
6946                 B     1 2 3 4 4
6947
6948 Matches:              c c p p c
6949
6950 Output stream:
6951                 T     1 2 2 3 4
6952                 B     1 2 2 3 4
6953 @end example
6954
6955 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6956 basically, they refer to the frame and field of the opposite parity:
6957
6958 @itemize
6959 @item @var{p} matches the field of the opposite parity in the previous frame
6960 @item @var{c} matches the field of the opposite parity in the current frame
6961 @item @var{n} matches the field of the opposite parity in the next frame
6962 @end itemize
6963
6964 @subsubsection u/b
6965
6966 The @var{u} and @var{b} matching are a bit special in the sense that they match
6967 from the opposite parity flag. In the following examples, we assume that we are
6968 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6969 'x' is placed above and below each matched fields.
6970
6971 With bottom matching (@option{field}=@var{bottom}):
6972 @example
6973 Match:           c         p           n          b          u
6974
6975                  x       x               x        x          x
6976   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6977   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6978                  x         x           x        x              x
6979
6980 Output frames:
6981                  2          1          2          2          2
6982                  2          2          2          1          3
6983 @end example
6984
6985 With top matching (@option{field}=@var{top}):
6986 @example
6987 Match:           c         p           n          b          u
6988
6989                  x         x           x        x              x
6990   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6991   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6992                  x       x               x        x          x
6993
6994 Output frames:
6995                  2          2          2          1          2
6996                  2          1          3          2          2
6997 @end example
6998
6999 @subsection Examples
7000
7001 Simple IVTC of a top field first telecined stream:
7002 @example
7003 fieldmatch=order=tff:combmatch=none, decimate
7004 @end example
7005
7006 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7007 @example
7008 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7009 @end example
7010
7011 @section fieldorder
7012
7013 Transform the field order of the input video.
7014
7015 It accepts the following parameters:
7016
7017 @table @option
7018
7019 @item order
7020 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7021 for bottom field first.
7022 @end table
7023
7024 The default value is @samp{tff}.
7025
7026 The transformation is done by shifting the picture content up or down
7027 by one line, and filling the remaining line with appropriate picture content.
7028 This method is consistent with most broadcast field order converters.
7029
7030 If the input video is not flagged as being interlaced, or it is already
7031 flagged as being of the required output field order, then this filter does
7032 not alter the incoming video.
7033
7034 It is very useful when converting to or from PAL DV material,
7035 which is bottom field first.
7036
7037 For example:
7038 @example
7039 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7040 @end example
7041
7042 @section fifo, afifo
7043
7044 Buffer input images and send them when they are requested.
7045
7046 It is mainly useful when auto-inserted by the libavfilter
7047 framework.
7048
7049 It does not take parameters.
7050
7051 @section find_rect
7052
7053 Find a rectangular object
7054
7055 It accepts the following options:
7056
7057 @table @option
7058 @item object
7059 Filepath of the object image, needs to be in gray8.
7060
7061 @item threshold
7062 Detection threshold, default is 0.5.
7063
7064 @item mipmaps
7065 Number of mipmaps, default is 3.
7066
7067 @item xmin, ymin, xmax, ymax
7068 Specifies the rectangle in which to search.
7069 @end table
7070
7071 @subsection Examples
7072
7073 @itemize
7074 @item
7075 Generate a representative palette of a given video using @command{ffmpeg}:
7076 @example
7077 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7078 @end example
7079 @end itemize
7080
7081 @section cover_rect
7082
7083 Cover a rectangular object
7084
7085 It accepts the following options:
7086
7087 @table @option
7088 @item cover
7089 Filepath of the optional cover image, needs to be in yuv420.
7090
7091 @item mode
7092 Set covering mode.
7093
7094 It accepts the following values:
7095 @table @samp
7096 @item cover
7097 cover it by the supplied image
7098 @item blur
7099 cover it by interpolating the surrounding pixels
7100 @end table
7101
7102 Default value is @var{blur}.
7103 @end table
7104
7105 @subsection Examples
7106
7107 @itemize
7108 @item
7109 Generate a representative palette of a given video using @command{ffmpeg}:
7110 @example
7111 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7112 @end example
7113 @end itemize
7114
7115 @anchor{format}
7116 @section format
7117
7118 Convert the input video to one of the specified pixel formats.
7119 Libavfilter will try to pick one that is suitable as input to
7120 the next filter.
7121
7122 It accepts the following parameters:
7123 @table @option
7124
7125 @item pix_fmts
7126 A '|'-separated list of pixel format names, such as
7127 "pix_fmts=yuv420p|monow|rgb24".
7128
7129 @end table
7130
7131 @subsection Examples
7132
7133 @itemize
7134 @item
7135 Convert the input video to the @var{yuv420p} format
7136 @example
7137 format=pix_fmts=yuv420p
7138 @end example
7139
7140 Convert the input video to any of the formats in the list
7141 @example
7142 format=pix_fmts=yuv420p|yuv444p|yuv410p
7143 @end example
7144 @end itemize
7145
7146 @anchor{fps}
7147 @section fps
7148
7149 Convert the video to specified constant frame rate by duplicating or dropping
7150 frames as necessary.
7151
7152 It accepts the following parameters:
7153 @table @option
7154
7155 @item fps
7156 The desired output frame rate. The default is @code{25}.
7157
7158 @item round
7159 Rounding method.
7160
7161 Possible values are:
7162 @table @option
7163 @item zero
7164 zero round towards 0
7165 @item inf
7166 round away from 0
7167 @item down
7168 round towards -infinity
7169 @item up
7170 round towards +infinity
7171 @item near
7172 round to nearest
7173 @end table
7174 The default is @code{near}.
7175
7176 @item start_time
7177 Assume the first PTS should be the given value, in seconds. This allows for
7178 padding/trimming at the start of stream. By default, no assumption is made
7179 about the first frame's expected PTS, so no padding or trimming is done.
7180 For example, this could be set to 0 to pad the beginning with duplicates of
7181 the first frame if a video stream starts after the audio stream or to trim any
7182 frames with a negative PTS.
7183
7184 @end table
7185
7186 Alternatively, the options can be specified as a flat string:
7187 @var{fps}[:@var{round}].
7188
7189 See also the @ref{setpts} filter.
7190
7191 @subsection Examples
7192
7193 @itemize
7194 @item
7195 A typical usage in order to set the fps to 25:
7196 @example
7197 fps=fps=25
7198 @end example
7199
7200 @item
7201 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7202 @example
7203 fps=fps=film:round=near
7204 @end example
7205 @end itemize
7206
7207 @section framepack
7208
7209 Pack two different video streams into a stereoscopic video, setting proper
7210 metadata on supported codecs. The two views should have the same size and
7211 framerate and processing will stop when the shorter video ends. Please note
7212 that you may conveniently adjust view properties with the @ref{scale} and
7213 @ref{fps} filters.
7214
7215 It accepts the following parameters:
7216 @table @option
7217
7218 @item format
7219 The desired packing format. Supported values are:
7220
7221 @table @option
7222
7223 @item sbs
7224 The views are next to each other (default).
7225
7226 @item tab
7227 The views are on top of each other.
7228
7229 @item lines
7230 The views are packed by line.
7231
7232 @item columns
7233 The views are packed by column.
7234
7235 @item frameseq
7236 The views are temporally interleaved.
7237
7238 @end table
7239
7240 @end table
7241
7242 Some examples:
7243
7244 @example
7245 # Convert left and right views into a frame-sequential video
7246 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7247
7248 # Convert views into a side-by-side video with the same output resolution as the input
7249 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
7250 @end example
7251
7252 @section framerate
7253
7254 Change the frame rate by interpolating new video output frames from the source
7255 frames.
7256
7257 This filter is not designed to function correctly with interlaced media. If
7258 you wish to change the frame rate of interlaced media then you are required
7259 to deinterlace before this filter and re-interlace after this filter.
7260
7261 A description of the accepted options follows.
7262
7263 @table @option
7264 @item fps
7265 Specify the output frames per second. This option can also be specified
7266 as a value alone. The default is @code{50}.
7267
7268 @item interp_start
7269 Specify the start of a range where the output frame will be created as a
7270 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7271 the default is @code{15}.
7272
7273 @item interp_end
7274 Specify the end of a range where the output frame will be created as a
7275 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7276 the default is @code{240}.
7277
7278 @item scene
7279 Specify the level at which a scene change is detected as a value between
7280 0 and 100 to indicate a new scene; a low value reflects a low
7281 probability for the current frame to introduce a new scene, while a higher
7282 value means the current frame is more likely to be one.
7283 The default is @code{7}.
7284
7285 @item flags
7286 Specify flags influencing the filter process.
7287
7288 Available value for @var{flags} is:
7289
7290 @table @option
7291 @item scene_change_detect, scd
7292 Enable scene change detection using the value of the option @var{scene}.
7293 This flag is enabled by default.
7294 @end table
7295 @end table
7296
7297 @section framestep
7298
7299 Select one frame every N-th frame.
7300
7301 This filter accepts the following option:
7302 @table @option
7303 @item step
7304 Select frame after every @code{step} frames.
7305 Allowed values are positive integers higher than 0. Default value is @code{1}.
7306 @end table
7307
7308 @anchor{frei0r}
7309 @section frei0r
7310
7311 Apply a frei0r effect to the input video.
7312
7313 To enable the compilation of this filter, you need to install the frei0r
7314 header and configure FFmpeg with @code{--enable-frei0r}.
7315
7316 It accepts the following parameters:
7317
7318 @table @option
7319
7320 @item filter_name
7321 The name of the frei0r effect to load. If the environment variable
7322 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7323 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7324 Otherwise, the standard frei0r paths are searched, in this order:
7325 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7326 @file{/usr/lib/frei0r-1/}.
7327
7328 @item filter_params
7329 A '|'-separated list of parameters to pass to the frei0r effect.
7330
7331 @end table
7332
7333 A frei0r effect parameter can be a boolean (its value is either
7334 "y" or "n"), a double, a color (specified as
7335 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
7336 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
7337 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
7338 @var{X} and @var{Y} are floating point numbers) and/or a string.
7339
7340 The number and types of parameters depend on the loaded effect. If an
7341 effect parameter is not specified, the default value is set.
7342
7343 @subsection Examples
7344
7345 @itemize
7346 @item
7347 Apply the distort0r effect, setting the first two double parameters:
7348 @example
7349 frei0r=filter_name=distort0r:filter_params=0.5|0.01
7350 @end example
7351
7352 @item
7353 Apply the colordistance effect, taking a color as the first parameter:
7354 @example
7355 frei0r=colordistance:0.2/0.3/0.4
7356 frei0r=colordistance:violet
7357 frei0r=colordistance:0x112233
7358 @end example
7359
7360 @item
7361 Apply the perspective effect, specifying the top left and top right image
7362 positions:
7363 @example
7364 frei0r=perspective:0.2/0.2|0.8/0.2
7365 @end example
7366 @end itemize
7367
7368 For more information, see
7369 @url{http://frei0r.dyne.org}
7370
7371 @section fspp
7372
7373 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
7374
7375 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
7376 processing filter, one of them is performed once per block, not per pixel.
7377 This allows for much higher speed.
7378
7379 The filter accepts the following options:
7380
7381 @table @option
7382 @item quality
7383 Set quality. This option defines the number of levels for averaging. It accepts
7384 an integer in the range 4-5. Default value is @code{4}.
7385
7386 @item qp
7387 Force a constant quantization parameter. It accepts an integer in range 0-63.
7388 If not set, the filter will use the QP from the video stream (if available).
7389
7390 @item strength
7391 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
7392 more details but also more artifacts, while higher values make the image smoother
7393 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
7394
7395 @item use_bframe_qp
7396 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7397 option may cause flicker since the B-Frames have often larger QP. Default is
7398 @code{0} (not enabled).
7399
7400 @end table
7401
7402 @section geq
7403
7404 The filter accepts the following options:
7405
7406 @table @option
7407 @item lum_expr, lum
7408 Set the luminance expression.
7409 @item cb_expr, cb
7410 Set the chrominance blue expression.
7411 @item cr_expr, cr
7412 Set the chrominance red expression.
7413 @item alpha_expr, a
7414 Set the alpha expression.
7415 @item red_expr, r
7416 Set the red expression.
7417 @item green_expr, g
7418 Set the green expression.
7419 @item blue_expr, b
7420 Set the blue expression.
7421 @end table
7422
7423 The colorspace is selected according to the specified options. If one
7424 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
7425 options is specified, the filter will automatically select a YCbCr
7426 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
7427 @option{blue_expr} options is specified, it will select an RGB
7428 colorspace.
7429
7430 If one of the chrominance expression is not defined, it falls back on the other
7431 one. If no alpha expression is specified it will evaluate to opaque value.
7432 If none of chrominance expressions are specified, they will evaluate
7433 to the luminance expression.
7434
7435 The expressions can use the following variables and functions:
7436
7437 @table @option
7438 @item N
7439 The sequential number of the filtered frame, starting from @code{0}.
7440
7441 @item X
7442 @item Y
7443 The coordinates of the current sample.
7444
7445 @item W
7446 @item H
7447 The width and height of the image.
7448
7449 @item SW
7450 @item SH
7451 Width and height scale depending on the currently filtered plane. It is the
7452 ratio between the corresponding luma plane number of pixels and the current
7453 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
7454 @code{0.5,0.5} for chroma planes.
7455
7456 @item T
7457 Time of the current frame, expressed in seconds.
7458
7459 @item p(x, y)
7460 Return the value of the pixel at location (@var{x},@var{y}) of the current
7461 plane.
7462
7463 @item lum(x, y)
7464 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
7465 plane.
7466
7467 @item cb(x, y)
7468 Return the value of the pixel at location (@var{x},@var{y}) of the
7469 blue-difference chroma plane. Return 0 if there is no such plane.
7470
7471 @item cr(x, y)
7472 Return the value of the pixel at location (@var{x},@var{y}) of the
7473 red-difference chroma plane. Return 0 if there is no such plane.
7474
7475 @item r(x, y)
7476 @item g(x, y)
7477 @item b(x, y)
7478 Return the value of the pixel at location (@var{x},@var{y}) of the
7479 red/green/blue component. Return 0 if there is no such component.
7480
7481 @item alpha(x, y)
7482 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
7483 plane. Return 0 if there is no such plane.
7484 @end table
7485
7486 For functions, if @var{x} and @var{y} are outside the area, the value will be
7487 automatically clipped to the closer edge.
7488
7489 @subsection Examples
7490
7491 @itemize
7492 @item
7493 Flip the image horizontally:
7494 @example
7495 geq=p(W-X\,Y)
7496 @end example
7497
7498 @item
7499 Generate a bidimensional sine wave, with angle @code{PI/3} and a
7500 wavelength of 100 pixels:
7501 @example
7502 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
7503 @end example
7504
7505 @item
7506 Generate a fancy enigmatic moving light:
7507 @example
7508 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
7509 @end example
7510
7511 @item
7512 Generate a quick emboss effect:
7513 @example
7514 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
7515 @end example
7516
7517 @item
7518 Modify RGB components depending on pixel position:
7519 @example
7520 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
7521 @end example
7522
7523 @item
7524 Create a radial gradient that is the same size as the input (also see
7525 the @ref{vignette} filter):
7526 @example
7527 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
7528 @end example
7529
7530 @item
7531 Diagonal split screen to compare filter effect:
7532 @example
7533 ffmpeg -i input -filter_complex "[0:v]geq=lum=if(gt(X\,Y*(W/H))\,255),format=gray[alpha];[0:v][alpha]alphamerge,curves=preset=color_negative[filtered];[0:v][filtered]overlay" output
7534 @end example
7535 @end itemize
7536
7537 @section gradfun
7538
7539 Fix the banding artifacts that are sometimes introduced into nearly flat
7540 regions by truncation to 8bit color depth.
7541 Interpolate the gradients that should go where the bands are, and
7542 dither them.
7543
7544 It is designed for playback only.  Do not use it prior to
7545 lossy compression, because compression tends to lose the dither and
7546 bring back the bands.
7547
7548 It accepts the following parameters:
7549
7550 @table @option
7551
7552 @item strength
7553 The maximum amount by which the filter will change any one pixel. This is also
7554 the threshold for detecting nearly flat regions. Acceptable values range from
7555 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
7556 valid range.
7557
7558 @item radius
7559 The neighborhood to fit the gradient to. A larger radius makes for smoother
7560 gradients, but also prevents the filter from modifying the pixels near detailed
7561 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
7562 values will be clipped to the valid range.
7563
7564 @end table
7565
7566 Alternatively, the options can be specified as a flat string:
7567 @var{strength}[:@var{radius}]
7568
7569 @subsection Examples
7570
7571 @itemize
7572 @item
7573 Apply the filter with a @code{3.5} strength and radius of @code{8}:
7574 @example
7575 gradfun=3.5:8
7576 @end example
7577
7578 @item
7579 Specify radius, omitting the strength (which will fall-back to the default
7580 value):
7581 @example
7582 gradfun=radius=8
7583 @end example
7584
7585 @end itemize
7586
7587 @anchor{haldclut}
7588 @section haldclut
7589
7590 Apply a Hald CLUT to a video stream.
7591
7592 First input is the video stream to process, and second one is the Hald CLUT.
7593 The Hald CLUT input can be a simple picture or a complete video stream.
7594
7595 The filter accepts the following options:
7596
7597 @table @option
7598 @item shortest
7599 Force termination when the shortest input terminates. Default is @code{0}.
7600 @item repeatlast
7601 Continue applying the last CLUT after the end of the stream. A value of
7602 @code{0} disable the filter after the last frame of the CLUT is reached.
7603 Default is @code{1}.
7604 @end table
7605
7606 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
7607 filters share the same internals).
7608
7609 More information about the Hald CLUT can be found on Eskil Steenberg's website
7610 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
7611
7612 @subsection Workflow examples
7613
7614 @subsubsection Hald CLUT video stream
7615
7616 Generate an identity Hald CLUT stream altered with various effects:
7617 @example
7618 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
7619 @end example
7620
7621 Note: make sure you use a lossless codec.
7622
7623 Then use it with @code{haldclut} to apply it on some random stream:
7624 @example
7625 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
7626 @end example
7627
7628 The Hald CLUT will be applied to the 10 first seconds (duration of
7629 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
7630 to the remaining frames of the @code{mandelbrot} stream.
7631
7632 @subsubsection Hald CLUT with preview
7633
7634 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
7635 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
7636 biggest possible square starting at the top left of the picture. The remaining
7637 padding pixels (bottom or right) will be ignored. This area can be used to add
7638 a preview of the Hald CLUT.
7639
7640 Typically, the following generated Hald CLUT will be supported by the
7641 @code{haldclut} filter:
7642
7643 @example
7644 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
7645    pad=iw+320 [padded_clut];
7646    smptebars=s=320x256, split [a][b];
7647    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
7648    [main][b] overlay=W-320" -frames:v 1 clut.png
7649 @end example
7650
7651 It contains the original and a preview of the effect of the CLUT: SMPTE color
7652 bars are displayed on the right-top, and below the same color bars processed by
7653 the color changes.
7654
7655 Then, the effect of this Hald CLUT can be visualized with:
7656 @example
7657 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
7658 @end example
7659
7660 @section hflip
7661
7662 Flip the input video horizontally.
7663
7664 For example, to horizontally flip the input video with @command{ffmpeg}:
7665 @example
7666 ffmpeg -i in.avi -vf "hflip" out.avi
7667 @end example
7668
7669 @section histeq
7670 This filter applies a global color histogram equalization on a
7671 per-frame basis.
7672
7673 It can be used to correct video that has a compressed range of pixel
7674 intensities.  The filter redistributes the pixel intensities to
7675 equalize their distribution across the intensity range. It may be
7676 viewed as an "automatically adjusting contrast filter". This filter is
7677 useful only for correcting degraded or poorly captured source
7678 video.
7679
7680 The filter accepts the following options:
7681
7682 @table @option
7683 @item strength
7684 Determine the amount of equalization to be applied.  As the strength
7685 is reduced, the distribution of pixel intensities more-and-more
7686 approaches that of the input frame. The value must be a float number
7687 in the range [0,1] and defaults to 0.200.
7688
7689 @item intensity
7690 Set the maximum intensity that can generated and scale the output
7691 values appropriately.  The strength should be set as desired and then
7692 the intensity can be limited if needed to avoid washing-out. The value
7693 must be a float number in the range [0,1] and defaults to 0.210.
7694
7695 @item antibanding
7696 Set the antibanding level. If enabled the filter will randomly vary
7697 the luminance of output pixels by a small amount to avoid banding of
7698 the histogram. Possible values are @code{none}, @code{weak} or
7699 @code{strong}. It defaults to @code{none}.
7700 @end table
7701
7702 @section histogram
7703
7704 Compute and draw a color distribution histogram for the input video.
7705
7706 The computed histogram is a representation of the color component
7707 distribution in an image.
7708
7709 Standard histogram displays the color components distribution in an image.
7710 Displays color graph for each color component. Shows distribution of
7711 the Y, U, V, A or R, G, B components, depending on input format, in the
7712 current frame. Below each graph a color component scale meter is shown.
7713
7714 The filter accepts the following options:
7715
7716 @table @option
7717 @item level_height
7718 Set height of level. Default value is @code{200}.
7719 Allowed range is [50, 2048].
7720
7721 @item scale_height
7722 Set height of color scale. Default value is @code{12}.
7723 Allowed range is [0, 40].
7724
7725 @item display_mode
7726 Set display mode.
7727 It accepts the following values:
7728 @table @samp
7729 @item parade
7730 Per color component graphs are placed below each other.
7731
7732 @item overlay
7733 Presents information identical to that in the @code{parade}, except
7734 that the graphs representing color components are superimposed directly
7735 over one another.
7736 @end table
7737 Default is @code{parade}.
7738
7739 @item levels_mode
7740 Set mode. Can be either @code{linear}, or @code{logarithmic}.
7741 Default is @code{linear}.
7742
7743 @item components
7744 Set what color components to display.
7745 Default is @code{7}.
7746 @end table
7747
7748 @subsection Examples
7749
7750 @itemize
7751
7752 @item
7753 Calculate and draw histogram:
7754 @example
7755 ffplay -i input -vf histogram
7756 @end example
7757
7758 @end itemize
7759
7760 @anchor{hqdn3d}
7761 @section hqdn3d
7762
7763 This is a high precision/quality 3d denoise filter. It aims to reduce
7764 image noise, producing smooth images and making still images really
7765 still. It should enhance compressibility.
7766
7767 It accepts the following optional parameters:
7768
7769 @table @option
7770 @item luma_spatial
7771 A non-negative floating point number which specifies spatial luma strength.
7772 It defaults to 4.0.
7773
7774 @item chroma_spatial
7775 A non-negative floating point number which specifies spatial chroma strength.
7776 It defaults to 3.0*@var{luma_spatial}/4.0.
7777
7778 @item luma_tmp
7779 A floating point number which specifies luma temporal strength. It defaults to
7780 6.0*@var{luma_spatial}/4.0.
7781
7782 @item chroma_tmp
7783 A floating point number which specifies chroma temporal strength. It defaults to
7784 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
7785 @end table
7786
7787 @section hqx
7788
7789 Apply a high-quality magnification filter designed for pixel art. This filter
7790 was originally created by Maxim Stepin.
7791
7792 It accepts the following option:
7793
7794 @table @option
7795 @item n
7796 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
7797 @code{hq3x} and @code{4} for @code{hq4x}.
7798 Default is @code{3}.
7799 @end table
7800
7801 @section hstack
7802 Stack input videos horizontally.
7803
7804 All streams must be of same pixel format and of same height.
7805
7806 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
7807 to create same output.
7808
7809 The filter accept the following option:
7810
7811 @table @option
7812 @item inputs
7813 Set number of input streams. Default is 2.
7814
7815 @item shortest
7816 If set to 1, force the output to terminate when the shortest input
7817 terminates. Default value is 0.
7818 @end table
7819
7820 @section hue
7821
7822 Modify the hue and/or the saturation of the input.
7823
7824 It accepts the following parameters:
7825
7826 @table @option
7827 @item h
7828 Specify the hue angle as a number of degrees. It accepts an expression,
7829 and defaults to "0".
7830
7831 @item s
7832 Specify the saturation in the [-10,10] range. It accepts an expression and
7833 defaults to "1".
7834
7835 @item H
7836 Specify the hue angle as a number of radians. It accepts an
7837 expression, and defaults to "0".
7838
7839 @item b
7840 Specify the brightness in the [-10,10] range. It accepts an expression and
7841 defaults to "0".
7842 @end table
7843
7844 @option{h} and @option{H} are mutually exclusive, and can't be
7845 specified at the same time.
7846
7847 The @option{b}, @option{h}, @option{H} and @option{s} option values are
7848 expressions containing the following constants:
7849
7850 @table @option
7851 @item n
7852 frame count of the input frame starting from 0
7853
7854 @item pts
7855 presentation timestamp of the input frame expressed in time base units
7856
7857 @item r
7858 frame rate of the input video, NAN if the input frame rate is unknown
7859
7860 @item t
7861 timestamp expressed in seconds, NAN if the input timestamp is unknown
7862
7863 @item tb
7864 time base of the input video
7865 @end table
7866
7867 @subsection Examples
7868
7869 @itemize
7870 @item
7871 Set the hue to 90 degrees and the saturation to 1.0:
7872 @example
7873 hue=h=90:s=1
7874 @end example
7875
7876 @item
7877 Same command but expressing the hue in radians:
7878 @example
7879 hue=H=PI/2:s=1
7880 @end example
7881
7882 @item
7883 Rotate hue and make the saturation swing between 0
7884 and 2 over a period of 1 second:
7885 @example
7886 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7887 @end example
7888
7889 @item
7890 Apply a 3 seconds saturation fade-in effect starting at 0:
7891 @example
7892 hue="s=min(t/3\,1)"
7893 @end example
7894
7895 The general fade-in expression can be written as:
7896 @example
7897 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7898 @end example
7899
7900 @item
7901 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7902 @example
7903 hue="s=max(0\, min(1\, (8-t)/3))"
7904 @end example
7905
7906 The general fade-out expression can be written as:
7907 @example
7908 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7909 @end example
7910
7911 @end itemize
7912
7913 @subsection Commands
7914
7915 This filter supports the following commands:
7916 @table @option
7917 @item b
7918 @item s
7919 @item h
7920 @item H
7921 Modify the hue and/or the saturation and/or brightness of the input video.
7922 The command accepts the same syntax of the corresponding option.
7923
7924 If the specified expression is not valid, it is kept at its current
7925 value.
7926 @end table
7927
7928 @section idet
7929
7930 Detect video interlacing type.
7931
7932 This filter tries to detect if the input frames as interlaced, progressive,
7933 top or bottom field first. It will also try and detect fields that are
7934 repeated between adjacent frames (a sign of telecine).
7935
7936 Single frame detection considers only immediately adjacent frames when classifying each frame.
7937 Multiple frame detection incorporates the classification history of previous frames.
7938
7939 The filter will log these metadata values:
7940
7941 @table @option
7942 @item single.current_frame
7943 Detected type of current frame using single-frame detection. One of:
7944 ``tff'' (top field first), ``bff'' (bottom field first),
7945 ``progressive'', or ``undetermined''
7946
7947 @item single.tff
7948 Cumulative number of frames detected as top field first using single-frame detection.
7949
7950 @item multiple.tff
7951 Cumulative number of frames detected as top field first using multiple-frame detection.
7952
7953 @item single.bff
7954 Cumulative number of frames detected as bottom field first using single-frame detection.
7955
7956 @item multiple.current_frame
7957 Detected type of current frame using multiple-frame detection. One of:
7958 ``tff'' (top field first), ``bff'' (bottom field first),
7959 ``progressive'', or ``undetermined''
7960
7961 @item multiple.bff
7962 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7963
7964 @item single.progressive
7965 Cumulative number of frames detected as progressive using single-frame detection.
7966
7967 @item multiple.progressive
7968 Cumulative number of frames detected as progressive using multiple-frame detection.
7969
7970 @item single.undetermined
7971 Cumulative number of frames that could not be classified using single-frame detection.
7972
7973 @item multiple.undetermined
7974 Cumulative number of frames that could not be classified using multiple-frame detection.
7975
7976 @item repeated.current_frame
7977 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7978
7979 @item repeated.neither
7980 Cumulative number of frames with no repeated field.
7981
7982 @item repeated.top
7983 Cumulative number of frames with the top field repeated from the previous frame's top field.
7984
7985 @item repeated.bottom
7986 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7987 @end table
7988
7989 The filter accepts the following options:
7990
7991 @table @option
7992 @item intl_thres
7993 Set interlacing threshold.
7994 @item prog_thres
7995 Set progressive threshold.
7996 @item repeat_thres
7997 Threshold for repeated field detection.
7998 @item half_life
7999 Number of frames after which a given frame's contribution to the
8000 statistics is halved (i.e., it contributes only 0.5 to it's
8001 classification). The default of 0 means that all frames seen are given
8002 full weight of 1.0 forever.
8003 @item analyze_interlaced_flag
8004 When this is not 0 then idet will use the specified number of frames to determine
8005 if the interlaced flag is accurate, it will not count undetermined frames.
8006 If the flag is found to be accurate it will be used without any further
8007 computations, if it is found to be inaccurate it will be cleared without any
8008 further computations. This allows inserting the idet filter as a low computational
8009 method to clean up the interlaced flag
8010 @end table
8011
8012 @section il
8013
8014 Deinterleave or interleave fields.
8015
8016 This filter allows one to process interlaced images fields without
8017 deinterlacing them. Deinterleaving splits the input frame into 2
8018 fields (so called half pictures). Odd lines are moved to the top
8019 half of the output image, even lines to the bottom half.
8020 You can process (filter) them independently and then re-interleave them.
8021
8022 The filter accepts the following options:
8023
8024 @table @option
8025 @item luma_mode, l
8026 @item chroma_mode, c
8027 @item alpha_mode, a
8028 Available values for @var{luma_mode}, @var{chroma_mode} and
8029 @var{alpha_mode} are:
8030
8031 @table @samp
8032 @item none
8033 Do nothing.
8034
8035 @item deinterleave, d
8036 Deinterleave fields, placing one above the other.
8037
8038 @item interleave, i
8039 Interleave fields. Reverse the effect of deinterleaving.
8040 @end table
8041 Default value is @code{none}.
8042
8043 @item luma_swap, ls
8044 @item chroma_swap, cs
8045 @item alpha_swap, as
8046 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8047 @end table
8048
8049 @section inflate
8050
8051 Apply inflate effect to the video.
8052
8053 This filter replaces the pixel by the local(3x3) average by taking into account
8054 only values higher than the pixel.
8055
8056 It accepts the following options:
8057
8058 @table @option
8059 @item threshold0
8060 @item threshold1
8061 @item threshold2
8062 @item threshold3
8063 Limit the maximum change for each plane, default is 65535.
8064 If 0, plane will remain unchanged.
8065 @end table
8066
8067 @section interlace
8068
8069 Simple interlacing filter from progressive contents. This interleaves upper (or
8070 lower) lines from odd frames with lower (or upper) lines from even frames,
8071 halving the frame rate and preserving image height.
8072
8073 @example
8074    Original        Original             New Frame
8075    Frame 'j'      Frame 'j+1'             (tff)
8076   ==========      ===========       ==================
8077     Line 0  -------------------->    Frame 'j' Line 0
8078     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8079     Line 2 --------------------->    Frame 'j' Line 2
8080     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8081      ...             ...                   ...
8082 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8083 @end example
8084
8085 It accepts the following optional parameters:
8086
8087 @table @option
8088 @item scan
8089 This determines whether the interlaced frame is taken from the even
8090 (tff - default) or odd (bff) lines of the progressive frame.
8091
8092 @item lowpass
8093 Enable (default) or disable the vertical lowpass filter to avoid twitter
8094 interlacing and reduce moire patterns.
8095 @end table
8096
8097 @section kerndeint
8098
8099 Deinterlace input video by applying Donald Graft's adaptive kernel
8100 deinterling. Work on interlaced parts of a video to produce
8101 progressive frames.
8102
8103 The description of the accepted parameters follows.
8104
8105 @table @option
8106 @item thresh
8107 Set the threshold which affects the filter's tolerance when
8108 determining if a pixel line must be processed. It must be an integer
8109 in the range [0,255] and defaults to 10. A value of 0 will result in
8110 applying the process on every pixels.
8111
8112 @item map
8113 Paint pixels exceeding the threshold value to white if set to 1.
8114 Default is 0.
8115
8116 @item order
8117 Set the fields order. Swap fields if set to 1, leave fields alone if
8118 0. Default is 0.
8119
8120 @item sharp
8121 Enable additional sharpening if set to 1. Default is 0.
8122
8123 @item twoway
8124 Enable twoway sharpening if set to 1. Default is 0.
8125 @end table
8126
8127 @subsection Examples
8128
8129 @itemize
8130 @item
8131 Apply default values:
8132 @example
8133 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8134 @end example
8135
8136 @item
8137 Enable additional sharpening:
8138 @example
8139 kerndeint=sharp=1
8140 @end example
8141
8142 @item
8143 Paint processed pixels in white:
8144 @example
8145 kerndeint=map=1
8146 @end example
8147 @end itemize
8148
8149 @section lenscorrection
8150
8151 Correct radial lens distortion
8152
8153 This filter can be used to correct for radial distortion as can result from the use
8154 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8155 one can use tools available for example as part of opencv or simply trial-and-error.
8156 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8157 and extract the k1 and k2 coefficients from the resulting matrix.
8158
8159 Note that effectively the same filter is available in the open-source tools Krita and
8160 Digikam from the KDE project.
8161
8162 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8163 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8164 brightness distribution, so you may want to use both filters together in certain
8165 cases, though you will have to take care of ordering, i.e. whether vignetting should
8166 be applied before or after lens correction.
8167
8168 @subsection Options
8169
8170 The filter accepts the following options:
8171
8172 @table @option
8173 @item cx
8174 Relative x-coordinate of the focal point of the image, and thereby the center of the
8175 distortion. This value has a range [0,1] and is expressed as fractions of the image
8176 width.
8177 @item cy
8178 Relative y-coordinate of the focal point of the image, and thereby the center of the
8179 distortion. This value has a range [0,1] and is expressed as fractions of the image
8180 height.
8181 @item k1
8182 Coefficient of the quadratic correction term. 0.5 means no correction.
8183 @item k2
8184 Coefficient of the double quadratic correction term. 0.5 means no correction.
8185 @end table
8186
8187 The formula that generates the correction is:
8188
8189 @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)
8190
8191 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8192 distances from the focal point in the source and target images, respectively.
8193
8194 @anchor{lut3d}
8195 @section lut3d
8196
8197 Apply a 3D LUT to an input video.
8198
8199 The filter accepts the following options:
8200
8201 @table @option
8202 @item file
8203 Set the 3D LUT file name.
8204
8205 Currently supported formats:
8206 @table @samp
8207 @item 3dl
8208 AfterEffects
8209 @item cube
8210 Iridas
8211 @item dat
8212 DaVinci
8213 @item m3d
8214 Pandora
8215 @end table
8216 @item interp
8217 Select interpolation mode.
8218
8219 Available values are:
8220
8221 @table @samp
8222 @item nearest
8223 Use values from the nearest defined point.
8224 @item trilinear
8225 Interpolate values using the 8 points defining a cube.
8226 @item tetrahedral
8227 Interpolate values using a tetrahedron.
8228 @end table
8229 @end table
8230
8231 @section lut, lutrgb, lutyuv
8232
8233 Compute a look-up table for binding each pixel component input value
8234 to an output value, and apply it to the input video.
8235
8236 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8237 to an RGB input video.
8238
8239 These filters accept the following parameters:
8240 @table @option
8241 @item c0
8242 set first pixel component expression
8243 @item c1
8244 set second pixel component expression
8245 @item c2
8246 set third pixel component expression
8247 @item c3
8248 set fourth pixel component expression, corresponds to the alpha component
8249
8250 @item r
8251 set red component expression
8252 @item g
8253 set green component expression
8254 @item b
8255 set blue component expression
8256 @item a
8257 alpha component expression
8258
8259 @item y
8260 set Y/luminance component expression
8261 @item u
8262 set U/Cb component expression
8263 @item v
8264 set V/Cr component expression
8265 @end table
8266
8267 Each of them specifies the expression to use for computing the lookup table for
8268 the corresponding pixel component values.
8269
8270 The exact component associated to each of the @var{c*} options depends on the
8271 format in input.
8272
8273 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8274 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8275
8276 The expressions can contain the following constants and functions:
8277
8278 @table @option
8279 @item w
8280 @item h
8281 The input width and height.
8282
8283 @item val
8284 The input value for the pixel component.
8285
8286 @item clipval
8287 The input value, clipped to the @var{minval}-@var{maxval} range.
8288
8289 @item maxval
8290 The maximum value for the pixel component.
8291
8292 @item minval
8293 The minimum value for the pixel component.
8294
8295 @item negval
8296 The negated value for the pixel component value, clipped to the
8297 @var{minval}-@var{maxval} range; it corresponds to the expression
8298 "maxval-clipval+minval".
8299
8300 @item clip(val)
8301 The computed value in @var{val}, clipped to the
8302 @var{minval}-@var{maxval} range.
8303
8304 @item gammaval(gamma)
8305 The computed gamma correction value of the pixel component value,
8306 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
8307 expression
8308 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
8309
8310 @end table
8311
8312 All expressions default to "val".
8313
8314 @subsection Examples
8315
8316 @itemize
8317 @item
8318 Negate input video:
8319 @example
8320 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
8321 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
8322 @end example
8323
8324 The above is the same as:
8325 @example
8326 lutrgb="r=negval:g=negval:b=negval"
8327 lutyuv="y=negval:u=negval:v=negval"
8328 @end example
8329
8330 @item
8331 Negate luminance:
8332 @example
8333 lutyuv=y=negval
8334 @end example
8335
8336 @item
8337 Remove chroma components, turning the video into a graytone image:
8338 @example
8339 lutyuv="u=128:v=128"
8340 @end example
8341
8342 @item
8343 Apply a luma burning effect:
8344 @example
8345 lutyuv="y=2*val"
8346 @end example
8347
8348 @item
8349 Remove green and blue components:
8350 @example
8351 lutrgb="g=0:b=0"
8352 @end example
8353
8354 @item
8355 Set a constant alpha channel value on input:
8356 @example
8357 format=rgba,lutrgb=a="maxval-minval/2"
8358 @end example
8359
8360 @item
8361 Correct luminance gamma by a factor of 0.5:
8362 @example
8363 lutyuv=y=gammaval(0.5)
8364 @end example
8365
8366 @item
8367 Discard least significant bits of luma:
8368 @example
8369 lutyuv=y='bitand(val, 128+64+32)'
8370 @end example
8371 @end itemize
8372
8373 @section maskedmerge
8374
8375 Merge the first input stream with the second input stream using per pixel
8376 weights in the third input stream.
8377
8378 A value of 0 in the third stream pixel component means that pixel component
8379 from first stream is returned unchanged, while maximum value (eg. 255 for
8380 8-bit videos) means that pixel component from second stream is returned
8381 unchanged. Intermediate values define the amount of merging between both
8382 input stream's pixel components.
8383
8384 This filter accepts the following options:
8385 @table @option
8386 @item planes
8387 Set which planes will be processed as bitmap, unprocessed planes will be
8388 copied from first stream.
8389 By default value 0xf, all planes will be processed.
8390 @end table
8391
8392 @section mcdeint
8393
8394 Apply motion-compensation deinterlacing.
8395
8396 It needs one field per frame as input and must thus be used together
8397 with yadif=1/3 or equivalent.
8398
8399 This filter accepts the following options:
8400 @table @option
8401 @item mode
8402 Set the deinterlacing mode.
8403
8404 It accepts one of the following values:
8405 @table @samp
8406 @item fast
8407 @item medium
8408 @item slow
8409 use iterative motion estimation
8410 @item extra_slow
8411 like @samp{slow}, but use multiple reference frames.
8412 @end table
8413 Default value is @samp{fast}.
8414
8415 @item parity
8416 Set the picture field parity assumed for the input video. It must be
8417 one of the following values:
8418
8419 @table @samp
8420 @item 0, tff
8421 assume top field first
8422 @item 1, bff
8423 assume bottom field first
8424 @end table
8425
8426 Default value is @samp{bff}.
8427
8428 @item qp
8429 Set per-block quantization parameter (QP) used by the internal
8430 encoder.
8431
8432 Higher values should result in a smoother motion vector field but less
8433 optimal individual vectors. Default value is 1.
8434 @end table
8435
8436 @section mergeplanes
8437
8438 Merge color channel components from several video streams.
8439
8440 The filter accepts up to 4 input streams, and merge selected input
8441 planes to the output video.
8442
8443 This filter accepts the following options:
8444 @table @option
8445 @item mapping
8446 Set input to output plane mapping. Default is @code{0}.
8447
8448 The mappings is specified as a bitmap. It should be specified as a
8449 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
8450 mapping for the first plane of the output stream. 'A' sets the number of
8451 the input stream to use (from 0 to 3), and 'a' the plane number of the
8452 corresponding input to use (from 0 to 3). The rest of the mappings is
8453 similar, 'Bb' describes the mapping for the output stream second
8454 plane, 'Cc' describes the mapping for the output stream third plane and
8455 'Dd' describes the mapping for the output stream fourth plane.
8456
8457 @item format
8458 Set output pixel format. Default is @code{yuva444p}.
8459 @end table
8460
8461 @subsection Examples
8462
8463 @itemize
8464 @item
8465 Merge three gray video streams of same width and height into single video stream:
8466 @example
8467 [a0][a1][a2]mergeplanes=0x001020:yuv444p
8468 @end example
8469
8470 @item
8471 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
8472 @example
8473 [a0][a1]mergeplanes=0x00010210:yuva444p
8474 @end example
8475
8476 @item
8477 Swap Y and A plane in yuva444p stream:
8478 @example
8479 format=yuva444p,mergeplanes=0x03010200:yuva444p
8480 @end example
8481
8482 @item
8483 Swap U and V plane in yuv420p stream:
8484 @example
8485 format=yuv420p,mergeplanes=0x000201:yuv420p
8486 @end example
8487
8488 @item
8489 Cast a rgb24 clip to yuv444p:
8490 @example
8491 format=rgb24,mergeplanes=0x000102:yuv444p
8492 @end example
8493 @end itemize
8494
8495 @section metadata, ametadata
8496
8497 Manipulate frame metadata.
8498
8499 This filter accepts the following options:
8500
8501 @table @option
8502 @item mode
8503 Set mode of operation of the filter.
8504
8505 Can be one of the following:
8506
8507 @table @samp
8508 @item select
8509 If both @code{value} and @code{key} is set, select frames
8510 which have such metadata. If only @code{key} is set, select
8511 every frame that has such key in metadata.
8512
8513 @item add
8514 Add new metadata @code{key} and @code{value}. If key is already available
8515 do nothing.
8516
8517 @item modify
8518 Modify value of already present key.
8519
8520 @item delete
8521 If @code{value} is set, delete only keys that have such value.
8522 Otherwise, delete key.
8523
8524 @item print
8525 Print key and its value if metadata was found. If @code{key} is not set print all
8526 metadata values available in frame.
8527 @end table
8528
8529 @item key
8530 Set key used with all modes. Must be set for all modes except @code{print}.
8531
8532 @item value
8533 Set metadata value which will be used. This option is mandatory for
8534 @code{modify} and @code{add} mode.
8535
8536 @item function
8537 Which function to use when comparing metadata value and @code{value}.
8538
8539 Can be one of following:
8540
8541 @table @samp
8542 @item same_str
8543 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
8544
8545 @item starts_with
8546 Values are interpreted as strings, returns true if metadata value starts with
8547 the @code{value} option string.
8548
8549 @item less
8550 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
8551
8552 @item equal
8553 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
8554
8555 @item greater
8556 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
8557
8558 @item expr
8559 Values are interpreted as floats, returns true if expression from option @code{expr}
8560 evaluates to true.
8561 @end table
8562
8563 @item expr
8564 Set expression which is used when @code{function} is set to @code{expr}.
8565 The expression is evaluated through the eval API and can contain the following
8566 constants:
8567
8568 @table @option
8569 @item VALUE1
8570 Float representation of @code{value} from metadata key.
8571
8572 @item VALUE2
8573 Float representation of @code{value} as supplied by user in @code{value} option.
8574 @end table
8575
8576 @item file
8577 If specified in @code{print} mode, output is written to the named file. When
8578 filename equals "-" data is written to standard output.
8579 If @code{file} option is not set, output is written to the log with AV_LOG_INFO
8580 loglevel.
8581 @end table
8582
8583 @subsection Examples
8584
8585 @itemize
8586 @item
8587 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
8588 between 0 and 1.
8589 @example
8590 @end example
8591 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
8592 @end itemize
8593
8594 @section mpdecimate
8595
8596 Drop frames that do not differ greatly from the previous frame in
8597 order to reduce frame rate.
8598
8599 The main use of this filter is for very-low-bitrate encoding
8600 (e.g. streaming over dialup modem), but it could in theory be used for
8601 fixing movies that were inverse-telecined incorrectly.
8602
8603 A description of the accepted options follows.
8604
8605 @table @option
8606 @item max
8607 Set the maximum number of consecutive frames which can be dropped (if
8608 positive), or the minimum interval between dropped frames (if
8609 negative). If the value is 0, the frame is dropped unregarding the
8610 number of previous sequentially dropped frames.
8611
8612 Default value is 0.
8613
8614 @item hi
8615 @item lo
8616 @item frac
8617 Set the dropping threshold values.
8618
8619 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
8620 represent actual pixel value differences, so a threshold of 64
8621 corresponds to 1 unit of difference for each pixel, or the same spread
8622 out differently over the block.
8623
8624 A frame is a candidate for dropping if no 8x8 blocks differ by more
8625 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
8626 meaning the whole image) differ by more than a threshold of @option{lo}.
8627
8628 Default value for @option{hi} is 64*12, default value for @option{lo} is
8629 64*5, and default value for @option{frac} is 0.33.
8630 @end table
8631
8632
8633 @section negate
8634
8635 Negate input video.
8636
8637 It accepts an integer in input; if non-zero it negates the
8638 alpha component (if available). The default value in input is 0.
8639
8640 @section nnedi
8641
8642 Deinterlace video using neural network edge directed interpolation.
8643
8644 This filter accepts the following options:
8645
8646 @table @option
8647 @item weights
8648 Mandatory option, without binary file filter can not work.
8649 Currently file can be found here:
8650 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
8651
8652 @item deint
8653 Set which frames to deinterlace, by default it is @code{all}.
8654 Can be @code{all} or @code{interlaced}.
8655
8656 @item field
8657 Set mode of operation.
8658
8659 Can be one of the following:
8660
8661 @table @samp
8662 @item af
8663 Use frame flags, both fields.
8664 @item a
8665 Use frame flags, single field.
8666 @item t
8667 Use top field only.
8668 @item b
8669 Use bottom field only.
8670 @item ft
8671 Use both fields, top first.
8672 @item fb
8673 Use both fields, bottom first.
8674 @end table
8675
8676 @item planes
8677 Set which planes to process, by default filter process all frames.
8678
8679 @item nsize
8680 Set size of local neighborhood around each pixel, used by the predictor neural
8681 network.
8682
8683 Can be one of the following:
8684
8685 @table @samp
8686 @item s8x6
8687 @item s16x6
8688 @item s32x6
8689 @item s48x6
8690 @item s8x4
8691 @item s16x4
8692 @item s32x4
8693 @end table
8694
8695 @item nns
8696 Set the number of neurons in predicctor neural network.
8697 Can be one of the following:
8698
8699 @table @samp
8700 @item n16
8701 @item n32
8702 @item n64
8703 @item n128
8704 @item n256
8705 @end table
8706
8707 @item qual
8708 Controls the number of different neural network predictions that are blended
8709 together to compute the final output value. Can be @code{fast}, default or
8710 @code{slow}.
8711
8712 @item etype
8713 Set which set of weights to use in the predictor.
8714 Can be one of the following:
8715
8716 @table @samp
8717 @item a
8718 weights trained to minimize absolute error
8719 @item s
8720 weights trained to minimize squared error
8721 @end table
8722
8723 @item pscrn
8724 Controls whether or not the prescreener neural network is used to decide
8725 which pixels should be processed by the predictor neural network and which
8726 can be handled by simple cubic interpolation.
8727 The prescreener is trained to know whether cubic interpolation will be
8728 sufficient for a pixel or whether it should be predicted by the predictor nn.
8729 The computational complexity of the prescreener nn is much less than that of
8730 the predictor nn. Since most pixels can be handled by cubic interpolation,
8731 using the prescreener generally results in much faster processing.
8732 The prescreener is pretty accurate, so the difference between using it and not
8733 using it is almost always unnoticeable.
8734
8735 Can be one of the following:
8736
8737 @table @samp
8738 @item none
8739 @item original
8740 @item new
8741 @end table
8742
8743 Default is @code{new}.
8744
8745 @item fapprox
8746 Set various debugging flags.
8747 @end table
8748
8749 @section noformat
8750
8751 Force libavfilter not to use any of the specified pixel formats for the
8752 input to the next filter.
8753
8754 It accepts the following parameters:
8755 @table @option
8756
8757 @item pix_fmts
8758 A '|'-separated list of pixel format names, such as
8759 apix_fmts=yuv420p|monow|rgb24".
8760
8761 @end table
8762
8763 @subsection Examples
8764
8765 @itemize
8766 @item
8767 Force libavfilter to use a format different from @var{yuv420p} for the
8768 input to the vflip filter:
8769 @example
8770 noformat=pix_fmts=yuv420p,vflip
8771 @end example
8772
8773 @item
8774 Convert the input video to any of the formats not contained in the list:
8775 @example
8776 noformat=yuv420p|yuv444p|yuv410p
8777 @end example
8778 @end itemize
8779
8780 @section noise
8781
8782 Add noise on video input frame.
8783
8784 The filter accepts the following options:
8785
8786 @table @option
8787 @item all_seed
8788 @item c0_seed
8789 @item c1_seed
8790 @item c2_seed
8791 @item c3_seed
8792 Set noise seed for specific pixel component or all pixel components in case
8793 of @var{all_seed}. Default value is @code{123457}.
8794
8795 @item all_strength, alls
8796 @item c0_strength, c0s
8797 @item c1_strength, c1s
8798 @item c2_strength, c2s
8799 @item c3_strength, c3s
8800 Set noise strength for specific pixel component or all pixel components in case
8801 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
8802
8803 @item all_flags, allf
8804 @item c0_flags, c0f
8805 @item c1_flags, c1f
8806 @item c2_flags, c2f
8807 @item c3_flags, c3f
8808 Set pixel component flags or set flags for all components if @var{all_flags}.
8809 Available values for component flags are:
8810 @table @samp
8811 @item a
8812 averaged temporal noise (smoother)
8813 @item p
8814 mix random noise with a (semi)regular pattern
8815 @item t
8816 temporal noise (noise pattern changes between frames)
8817 @item u
8818 uniform noise (gaussian otherwise)
8819 @end table
8820 @end table
8821
8822 @subsection Examples
8823
8824 Add temporal and uniform noise to input video:
8825 @example
8826 noise=alls=20:allf=t+u
8827 @end example
8828
8829 @section null
8830
8831 Pass the video source unchanged to the output.
8832
8833 @section ocr
8834 Optical Character Recognition
8835
8836 This filter uses Tesseract for optical character recognition.
8837
8838 It accepts the following options:
8839
8840 @table @option
8841 @item datapath
8842 Set datapath to tesseract data. Default is to use whatever was
8843 set at installation.
8844
8845 @item language
8846 Set language, default is "eng".
8847
8848 @item whitelist
8849 Set character whitelist.
8850
8851 @item blacklist
8852 Set character blacklist.
8853 @end table
8854
8855 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
8856
8857 @section ocv
8858
8859 Apply a video transform using libopencv.
8860
8861 To enable this filter, install the libopencv library and headers and
8862 configure FFmpeg with @code{--enable-libopencv}.
8863
8864 It accepts the following parameters:
8865
8866 @table @option
8867
8868 @item filter_name
8869 The name of the libopencv filter to apply.
8870
8871 @item filter_params
8872 The parameters to pass to the libopencv filter. If not specified, the default
8873 values are assumed.
8874
8875 @end table
8876
8877 Refer to the official libopencv documentation for more precise
8878 information:
8879 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
8880
8881 Several libopencv filters are supported; see the following subsections.
8882
8883 @anchor{dilate}
8884 @subsection dilate
8885
8886 Dilate an image by using a specific structuring element.
8887 It corresponds to the libopencv function @code{cvDilate}.
8888
8889 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
8890
8891 @var{struct_el} represents a structuring element, and has the syntax:
8892 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
8893
8894 @var{cols} and @var{rows} represent the number of columns and rows of
8895 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
8896 point, and @var{shape} the shape for the structuring element. @var{shape}
8897 must be "rect", "cross", "ellipse", or "custom".
8898
8899 If the value for @var{shape} is "custom", it must be followed by a
8900 string of the form "=@var{filename}". The file with name
8901 @var{filename} is assumed to represent a binary image, with each
8902 printable character corresponding to a bright pixel. When a custom
8903 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
8904 or columns and rows of the read file are assumed instead.
8905
8906 The default value for @var{struct_el} is "3x3+0x0/rect".
8907
8908 @var{nb_iterations} specifies the number of times the transform is
8909 applied to the image, and defaults to 1.
8910
8911 Some examples:
8912 @example
8913 # Use the default values
8914 ocv=dilate
8915
8916 # Dilate using a structuring element with a 5x5 cross, iterating two times
8917 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
8918
8919 # Read the shape from the file diamond.shape, iterating two times.
8920 # The file diamond.shape may contain a pattern of characters like this
8921 #   *
8922 #  ***
8923 # *****
8924 #  ***
8925 #   *
8926 # The specified columns and rows are ignored
8927 # but the anchor point coordinates are not
8928 ocv=dilate:0x0+2x2/custom=diamond.shape|2
8929 @end example
8930
8931 @subsection erode
8932
8933 Erode an image by using a specific structuring element.
8934 It corresponds to the libopencv function @code{cvErode}.
8935
8936 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
8937 with the same syntax and semantics as the @ref{dilate} filter.
8938
8939 @subsection smooth
8940
8941 Smooth the input video.
8942
8943 The filter takes the following parameters:
8944 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
8945
8946 @var{type} is the type of smooth filter to apply, and must be one of
8947 the following values: "blur", "blur_no_scale", "median", "gaussian",
8948 or "bilateral". The default value is "gaussian".
8949
8950 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
8951 depend on the smooth type. @var{param1} and
8952 @var{param2} accept integer positive values or 0. @var{param3} and
8953 @var{param4} accept floating point values.
8954
8955 The default value for @var{param1} is 3. The default value for the
8956 other parameters is 0.
8957
8958 These parameters correspond to the parameters assigned to the
8959 libopencv function @code{cvSmooth}.
8960
8961 @anchor{overlay}
8962 @section overlay
8963
8964 Overlay one video on top of another.
8965
8966 It takes two inputs and has one output. The first input is the "main"
8967 video on which the second input is overlaid.
8968
8969 It accepts the following parameters:
8970
8971 A description of the accepted options follows.
8972
8973 @table @option
8974 @item x
8975 @item y
8976 Set the expression for the x and y coordinates of the overlaid video
8977 on the main video. Default value is "0" for both expressions. In case
8978 the expression is invalid, it is set to a huge value (meaning that the
8979 overlay will not be displayed within the output visible area).
8980
8981 @item eof_action
8982 The action to take when EOF is encountered on the secondary input; it accepts
8983 one of the following values:
8984
8985 @table @option
8986 @item repeat
8987 Repeat the last frame (the default).
8988 @item endall
8989 End both streams.
8990 @item pass
8991 Pass the main input through.
8992 @end table
8993
8994 @item eval
8995 Set when the expressions for @option{x}, and @option{y} are evaluated.
8996
8997 It accepts the following values:
8998 @table @samp
8999 @item init
9000 only evaluate expressions once during the filter initialization or
9001 when a command is processed
9002
9003 @item frame
9004 evaluate expressions for each incoming frame
9005 @end table
9006
9007 Default value is @samp{frame}.
9008
9009 @item shortest
9010 If set to 1, force the output to terminate when the shortest input
9011 terminates. Default value is 0.
9012
9013 @item format
9014 Set the format for the output video.
9015
9016 It accepts the following values:
9017 @table @samp
9018 @item yuv420
9019 force YUV420 output
9020
9021 @item yuv422
9022 force YUV422 output
9023
9024 @item yuv444
9025 force YUV444 output
9026
9027 @item rgb
9028 force RGB output
9029 @end table
9030
9031 Default value is @samp{yuv420}.
9032
9033 @item rgb @emph{(deprecated)}
9034 If set to 1, force the filter to accept inputs in the RGB
9035 color space. Default value is 0. This option is deprecated, use
9036 @option{format} instead.
9037
9038 @item repeatlast
9039 If set to 1, force the filter to draw the last overlay frame over the
9040 main input until the end of the stream. A value of 0 disables this
9041 behavior. Default value is 1.
9042 @end table
9043
9044 The @option{x}, and @option{y} expressions can contain the following
9045 parameters.
9046
9047 @table @option
9048 @item main_w, W
9049 @item main_h, H
9050 The main input width and height.
9051
9052 @item overlay_w, w
9053 @item overlay_h, h
9054 The overlay input width and height.
9055
9056 @item x
9057 @item y
9058 The computed values for @var{x} and @var{y}. They are evaluated for
9059 each new frame.
9060
9061 @item hsub
9062 @item vsub
9063 horizontal and vertical chroma subsample values of the output
9064 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9065 @var{vsub} is 1.
9066
9067 @item n
9068 the number of input frame, starting from 0
9069
9070 @item pos
9071 the position in the file of the input frame, NAN if unknown
9072
9073 @item t
9074 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9075
9076 @end table
9077
9078 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9079 when evaluation is done @emph{per frame}, and will evaluate to NAN
9080 when @option{eval} is set to @samp{init}.
9081
9082 Be aware that frames are taken from each input video in timestamp
9083 order, hence, if their initial timestamps differ, it is a good idea
9084 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9085 have them begin in the same zero timestamp, as the example for
9086 the @var{movie} filter does.
9087
9088 You can chain together more overlays but you should test the
9089 efficiency of such approach.
9090
9091 @subsection Commands
9092
9093 This filter supports the following commands:
9094 @table @option
9095 @item x
9096 @item y
9097 Modify the x and y of the overlay input.
9098 The command accepts the same syntax of the corresponding option.
9099
9100 If the specified expression is not valid, it is kept at its current
9101 value.
9102 @end table
9103
9104 @subsection Examples
9105
9106 @itemize
9107 @item
9108 Draw the overlay at 10 pixels from the bottom right corner of the main
9109 video:
9110 @example
9111 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9112 @end example
9113
9114 Using named options the example above becomes:
9115 @example
9116 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9117 @end example
9118
9119 @item
9120 Insert a transparent PNG logo in the bottom left corner of the input,
9121 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9122 @example
9123 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9124 @end example
9125
9126 @item
9127 Insert 2 different transparent PNG logos (second logo on bottom
9128 right corner) using the @command{ffmpeg} tool:
9129 @example
9130 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
9131 @end example
9132
9133 @item
9134 Add a transparent color layer on top of the main video; @code{WxH}
9135 must specify the size of the main input to the overlay filter:
9136 @example
9137 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9138 @end example
9139
9140 @item
9141 Play an original video and a filtered version (here with the deshake
9142 filter) side by side using the @command{ffplay} tool:
9143 @example
9144 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9145 @end example
9146
9147 The above command is the same as:
9148 @example
9149 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9150 @end example
9151
9152 @item
9153 Make a sliding overlay appearing from the left to the right top part of the
9154 screen starting since time 2:
9155 @example
9156 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9157 @end example
9158
9159 @item
9160 Compose output by putting two input videos side to side:
9161 @example
9162 ffmpeg -i left.avi -i right.avi -filter_complex "
9163 nullsrc=size=200x100 [background];
9164 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9165 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9166 [background][left]       overlay=shortest=1       [background+left];
9167 [background+left][right] overlay=shortest=1:x=100 [left+right]
9168 "
9169 @end example
9170
9171 @item
9172 Mask 10-20 seconds of a video by applying the delogo filter to a section
9173 @example
9174 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9175 -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]'
9176 masked.avi
9177 @end example
9178
9179 @item
9180 Chain several overlays in cascade:
9181 @example
9182 nullsrc=s=200x200 [bg];
9183 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9184 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9185 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9186 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9187 [in3] null,       [mid2] overlay=100:100 [out0]
9188 @end example
9189
9190 @end itemize
9191
9192 @section owdenoise
9193
9194 Apply Overcomplete Wavelet denoiser.
9195
9196 The filter accepts the following options:
9197
9198 @table @option
9199 @item depth
9200 Set depth.
9201
9202 Larger depth values will denoise lower frequency components more, but
9203 slow down filtering.
9204
9205 Must be an int in the range 8-16, default is @code{8}.
9206
9207 @item luma_strength, ls
9208 Set luma strength.
9209
9210 Must be a double value in the range 0-1000, default is @code{1.0}.
9211
9212 @item chroma_strength, cs
9213 Set chroma strength.
9214
9215 Must be a double value in the range 0-1000, default is @code{1.0}.
9216 @end table
9217
9218 @anchor{pad}
9219 @section pad
9220
9221 Add paddings to the input image, and place the original input at the
9222 provided @var{x}, @var{y} coordinates.
9223
9224 It accepts the following parameters:
9225
9226 @table @option
9227 @item width, w
9228 @item height, h
9229 Specify an expression for the size of the output image with the
9230 paddings added. If the value for @var{width} or @var{height} is 0, the
9231 corresponding input size is used for the output.
9232
9233 The @var{width} expression can reference the value set by the
9234 @var{height} expression, and vice versa.
9235
9236 The default value of @var{width} and @var{height} is 0.
9237
9238 @item x
9239 @item y
9240 Specify the offsets to place the input image at within the padded area,
9241 with respect to the top/left border of the output image.
9242
9243 The @var{x} expression can reference the value set by the @var{y}
9244 expression, and vice versa.
9245
9246 The default value of @var{x} and @var{y} is 0.
9247
9248 @item color
9249 Specify the color of the padded area. For the syntax of this option,
9250 check the "Color" section in the ffmpeg-utils manual.
9251
9252 The default value of @var{color} is "black".
9253 @end table
9254
9255 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
9256 options are expressions containing the following constants:
9257
9258 @table @option
9259 @item in_w
9260 @item in_h
9261 The input video width and height.
9262
9263 @item iw
9264 @item ih
9265 These are the same as @var{in_w} and @var{in_h}.
9266
9267 @item out_w
9268 @item out_h
9269 The output width and height (the size of the padded area), as
9270 specified by the @var{width} and @var{height} expressions.
9271
9272 @item ow
9273 @item oh
9274 These are the same as @var{out_w} and @var{out_h}.
9275
9276 @item x
9277 @item y
9278 The x and y offsets as specified by the @var{x} and @var{y}
9279 expressions, or NAN if not yet specified.
9280
9281 @item a
9282 same as @var{iw} / @var{ih}
9283
9284 @item sar
9285 input sample aspect ratio
9286
9287 @item dar
9288 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
9289
9290 @item hsub
9291 @item vsub
9292 The horizontal and vertical chroma subsample values. For example for the
9293 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9294 @end table
9295
9296 @subsection Examples
9297
9298 @itemize
9299 @item
9300 Add paddings with the color "violet" to the input video. The output video
9301 size is 640x480, and the top-left corner of the input video is placed at
9302 column 0, row 40
9303 @example
9304 pad=640:480:0:40:violet
9305 @end example
9306
9307 The example above is equivalent to the following command:
9308 @example
9309 pad=width=640:height=480:x=0:y=40:color=violet
9310 @end example
9311
9312 @item
9313 Pad the input to get an output with dimensions increased by 3/2,
9314 and put the input video at the center of the padded area:
9315 @example
9316 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
9317 @end example
9318
9319 @item
9320 Pad the input to get a squared output with size equal to the maximum
9321 value between the input width and height, and put the input video at
9322 the center of the padded area:
9323 @example
9324 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
9325 @end example
9326
9327 @item
9328 Pad the input to get a final w/h ratio of 16:9:
9329 @example
9330 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
9331 @end example
9332
9333 @item
9334 In case of anamorphic video, in order to set the output display aspect
9335 correctly, it is necessary to use @var{sar} in the expression,
9336 according to the relation:
9337 @example
9338 (ih * X / ih) * sar = output_dar
9339 X = output_dar / sar
9340 @end example
9341
9342 Thus the previous example needs to be modified to:
9343 @example
9344 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
9345 @end example
9346
9347 @item
9348 Double the output size and put the input video in the bottom-right
9349 corner of the output padded area:
9350 @example
9351 pad="2*iw:2*ih:ow-iw:oh-ih"
9352 @end example
9353 @end itemize
9354
9355 @anchor{palettegen}
9356 @section palettegen
9357
9358 Generate one palette for a whole video stream.
9359
9360 It accepts the following options:
9361
9362 @table @option
9363 @item max_colors
9364 Set the maximum number of colors to quantize in the palette.
9365 Note: the palette will still contain 256 colors; the unused palette entries
9366 will be black.
9367
9368 @item reserve_transparent
9369 Create a palette of 255 colors maximum and reserve the last one for
9370 transparency. Reserving the transparency color is useful for GIF optimization.
9371 If not set, the maximum of colors in the palette will be 256. You probably want
9372 to disable this option for a standalone image.
9373 Set by default.
9374
9375 @item stats_mode
9376 Set statistics mode.
9377
9378 It accepts the following values:
9379 @table @samp
9380 @item full
9381 Compute full frame histograms.
9382 @item diff
9383 Compute histograms only for the part that differs from previous frame. This
9384 might be relevant to give more importance to the moving part of your input if
9385 the background is static.
9386 @end table
9387
9388 Default value is @var{full}.
9389 @end table
9390
9391 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
9392 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
9393 color quantization of the palette. This information is also visible at
9394 @var{info} logging level.
9395
9396 @subsection Examples
9397
9398 @itemize
9399 @item
9400 Generate a representative palette of a given video using @command{ffmpeg}:
9401 @example
9402 ffmpeg -i input.mkv -vf palettegen palette.png
9403 @end example
9404 @end itemize
9405
9406 @section paletteuse
9407
9408 Use a palette to downsample an input video stream.
9409
9410 The filter takes two inputs: one video stream and a palette. The palette must
9411 be a 256 pixels image.
9412
9413 It accepts the following options:
9414
9415 @table @option
9416 @item dither
9417 Select dithering mode. Available algorithms are:
9418 @table @samp
9419 @item bayer
9420 Ordered 8x8 bayer dithering (deterministic)
9421 @item heckbert
9422 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
9423 Note: this dithering is sometimes considered "wrong" and is included as a
9424 reference.
9425 @item floyd_steinberg
9426 Floyd and Steingberg dithering (error diffusion)
9427 @item sierra2
9428 Frankie Sierra dithering v2 (error diffusion)
9429 @item sierra2_4a
9430 Frankie Sierra dithering v2 "Lite" (error diffusion)
9431 @end table
9432
9433 Default is @var{sierra2_4a}.
9434
9435 @item bayer_scale
9436 When @var{bayer} dithering is selected, this option defines the scale of the
9437 pattern (how much the crosshatch pattern is visible). A low value means more
9438 visible pattern for less banding, and higher value means less visible pattern
9439 at the cost of more banding.
9440
9441 The option must be an integer value in the range [0,5]. Default is @var{2}.
9442
9443 @item diff_mode
9444 If set, define the zone to process
9445
9446 @table @samp
9447 @item rectangle
9448 Only the changing rectangle will be reprocessed. This is similar to GIF
9449 cropping/offsetting compression mechanism. This option can be useful for speed
9450 if only a part of the image is changing, and has use cases such as limiting the
9451 scope of the error diffusal @option{dither} to the rectangle that bounds the
9452 moving scene (it leads to more deterministic output if the scene doesn't change
9453 much, and as a result less moving noise and better GIF compression).
9454 @end table
9455
9456 Default is @var{none}.
9457 @end table
9458
9459 @subsection Examples
9460
9461 @itemize
9462 @item
9463 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
9464 using @command{ffmpeg}:
9465 @example
9466 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
9467 @end example
9468 @end itemize
9469
9470 @section perspective
9471
9472 Correct perspective of video not recorded perpendicular to the screen.
9473
9474 A description of the accepted parameters follows.
9475
9476 @table @option
9477 @item x0
9478 @item y0
9479 @item x1
9480 @item y1
9481 @item x2
9482 @item y2
9483 @item x3
9484 @item y3
9485 Set coordinates expression for top left, top right, bottom left and bottom right corners.
9486 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
9487 If the @code{sense} option is set to @code{source}, then the specified points will be sent
9488 to the corners of the destination. If the @code{sense} option is set to @code{destination},
9489 then the corners of the source will be sent to the specified coordinates.
9490
9491 The expressions can use the following variables:
9492
9493 @table @option
9494 @item W
9495 @item H
9496 the width and height of video frame.
9497 @end table
9498
9499 @item interpolation
9500 Set interpolation for perspective correction.
9501
9502 It accepts the following values:
9503 @table @samp
9504 @item linear
9505 @item cubic
9506 @end table
9507
9508 Default value is @samp{linear}.
9509
9510 @item sense
9511 Set interpretation of coordinate options.
9512
9513 It accepts the following values:
9514 @table @samp
9515 @item 0, source
9516
9517 Send point in the source specified by the given coordinates to
9518 the corners of the destination.
9519
9520 @item 1, destination
9521
9522 Send the corners of the source to the point in the destination specified
9523 by the given coordinates.
9524
9525 Default value is @samp{source}.
9526 @end table
9527 @end table
9528
9529 @section phase
9530
9531 Delay interlaced video by one field time so that the field order changes.
9532
9533 The intended use is to fix PAL movies that have been captured with the
9534 opposite field order to the film-to-video transfer.
9535
9536 A description of the accepted parameters follows.
9537
9538 @table @option
9539 @item mode
9540 Set phase mode.
9541
9542 It accepts the following values:
9543 @table @samp
9544 @item t
9545 Capture field order top-first, transfer bottom-first.
9546 Filter will delay the bottom field.
9547
9548 @item b
9549 Capture field order bottom-first, transfer top-first.
9550 Filter will delay the top field.
9551
9552 @item p
9553 Capture and transfer with the same field order. This mode only exists
9554 for the documentation of the other options to refer to, but if you
9555 actually select it, the filter will faithfully do nothing.
9556
9557 @item a
9558 Capture field order determined automatically by field flags, transfer
9559 opposite.
9560 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
9561 basis using field flags. If no field information is available,
9562 then this works just like @samp{u}.
9563
9564 @item u
9565 Capture unknown or varying, transfer opposite.
9566 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
9567 analyzing the images and selecting the alternative that produces best
9568 match between the fields.
9569
9570 @item T
9571 Capture top-first, transfer unknown or varying.
9572 Filter selects among @samp{t} and @samp{p} using image analysis.
9573
9574 @item B
9575 Capture bottom-first, transfer unknown or varying.
9576 Filter selects among @samp{b} and @samp{p} using image analysis.
9577
9578 @item A
9579 Capture determined by field flags, transfer unknown or varying.
9580 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
9581 image analysis. If no field information is available, then this works just
9582 like @samp{U}. This is the default mode.
9583
9584 @item U
9585 Both capture and transfer unknown or varying.
9586 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
9587 @end table
9588 @end table
9589
9590 @section pixdesctest
9591
9592 Pixel format descriptor test filter, mainly useful for internal
9593 testing. The output video should be equal to the input video.
9594
9595 For example:
9596 @example
9597 format=monow, pixdesctest
9598 @end example
9599
9600 can be used to test the monowhite pixel format descriptor definition.
9601
9602 @section pp
9603
9604 Enable the specified chain of postprocessing subfilters using libpostproc. This
9605 library should be automatically selected with a GPL build (@code{--enable-gpl}).
9606 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
9607 Each subfilter and some options have a short and a long name that can be used
9608 interchangeably, i.e. dr/dering are the same.
9609
9610 The filters accept the following options:
9611
9612 @table @option
9613 @item subfilters
9614 Set postprocessing subfilters string.
9615 @end table
9616
9617 All subfilters share common options to determine their scope:
9618
9619 @table @option
9620 @item a/autoq
9621 Honor the quality commands for this subfilter.
9622
9623 @item c/chrom
9624 Do chrominance filtering, too (default).
9625
9626 @item y/nochrom
9627 Do luminance filtering only (no chrominance).
9628
9629 @item n/noluma
9630 Do chrominance filtering only (no luminance).
9631 @end table
9632
9633 These options can be appended after the subfilter name, separated by a '|'.
9634
9635 Available subfilters are:
9636
9637 @table @option
9638 @item hb/hdeblock[|difference[|flatness]]
9639 Horizontal deblocking filter
9640 @table @option
9641 @item difference
9642 Difference factor where higher values mean more deblocking (default: @code{32}).
9643 @item flatness
9644 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9645 @end table
9646
9647 @item vb/vdeblock[|difference[|flatness]]
9648 Vertical deblocking filter
9649 @table @option
9650 @item difference
9651 Difference factor where higher values mean more deblocking (default: @code{32}).
9652 @item flatness
9653 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9654 @end table
9655
9656 @item ha/hadeblock[|difference[|flatness]]
9657 Accurate horizontal deblocking filter
9658 @table @option
9659 @item difference
9660 Difference factor where higher values mean more deblocking (default: @code{32}).
9661 @item flatness
9662 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9663 @end table
9664
9665 @item va/vadeblock[|difference[|flatness]]
9666 Accurate vertical deblocking filter
9667 @table @option
9668 @item difference
9669 Difference factor where higher values mean more deblocking (default: @code{32}).
9670 @item flatness
9671 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9672 @end table
9673 @end table
9674
9675 The horizontal and vertical deblocking filters share the difference and
9676 flatness values so you cannot set different horizontal and vertical
9677 thresholds.
9678
9679 @table @option
9680 @item h1/x1hdeblock
9681 Experimental horizontal deblocking filter
9682
9683 @item v1/x1vdeblock
9684 Experimental vertical deblocking filter
9685
9686 @item dr/dering
9687 Deringing filter
9688
9689 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
9690 @table @option
9691 @item threshold1
9692 larger -> stronger filtering
9693 @item threshold2
9694 larger -> stronger filtering
9695 @item threshold3
9696 larger -> stronger filtering
9697 @end table
9698
9699 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
9700 @table @option
9701 @item f/fullyrange
9702 Stretch luminance to @code{0-255}.
9703 @end table
9704
9705 @item lb/linblenddeint
9706 Linear blend deinterlacing filter that deinterlaces the given block by
9707 filtering all lines with a @code{(1 2 1)} filter.
9708
9709 @item li/linipoldeint
9710 Linear interpolating deinterlacing filter that deinterlaces the given block by
9711 linearly interpolating every second line.
9712
9713 @item ci/cubicipoldeint
9714 Cubic interpolating deinterlacing filter deinterlaces the given block by
9715 cubically interpolating every second line.
9716
9717 @item md/mediandeint
9718 Median deinterlacing filter that deinterlaces the given block by applying a
9719 median filter to every second line.
9720
9721 @item fd/ffmpegdeint
9722 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
9723 second line with a @code{(-1 4 2 4 -1)} filter.
9724
9725 @item l5/lowpass5
9726 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
9727 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
9728
9729 @item fq/forceQuant[|quantizer]
9730 Overrides the quantizer table from the input with the constant quantizer you
9731 specify.
9732 @table @option
9733 @item quantizer
9734 Quantizer to use
9735 @end table
9736
9737 @item de/default
9738 Default pp filter combination (@code{hb|a,vb|a,dr|a})
9739
9740 @item fa/fast
9741 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
9742
9743 @item ac
9744 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
9745 @end table
9746
9747 @subsection Examples
9748
9749 @itemize
9750 @item
9751 Apply horizontal and vertical deblocking, deringing and automatic
9752 brightness/contrast:
9753 @example
9754 pp=hb/vb/dr/al
9755 @end example
9756
9757 @item
9758 Apply default filters without brightness/contrast correction:
9759 @example
9760 pp=de/-al
9761 @end example
9762
9763 @item
9764 Apply default filters and temporal denoiser:
9765 @example
9766 pp=default/tmpnoise|1|2|3
9767 @end example
9768
9769 @item
9770 Apply deblocking on luminance only, and switch vertical deblocking on or off
9771 automatically depending on available CPU time:
9772 @example
9773 pp=hb|y/vb|a
9774 @end example
9775 @end itemize
9776
9777 @section pp7
9778 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
9779 similar to spp = 6 with 7 point DCT, where only the center sample is
9780 used after IDCT.
9781
9782 The filter accepts the following options:
9783
9784 @table @option
9785 @item qp
9786 Force a constant quantization parameter. It accepts an integer in range
9787 0 to 63. If not set, the filter will use the QP from the video stream
9788 (if available).
9789
9790 @item mode
9791 Set thresholding mode. Available modes are:
9792
9793 @table @samp
9794 @item hard
9795 Set hard thresholding.
9796 @item soft
9797 Set soft thresholding (better de-ringing effect, but likely blurrier).
9798 @item medium
9799 Set medium thresholding (good results, default).
9800 @end table
9801 @end table
9802
9803 @section psnr
9804
9805 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
9806 Ratio) between two input videos.
9807
9808 This filter takes in input two input videos, the first input is
9809 considered the "main" source and is passed unchanged to the
9810 output. The second input is used as a "reference" video for computing
9811 the PSNR.
9812
9813 Both video inputs must have the same resolution and pixel format for
9814 this filter to work correctly. Also it assumes that both inputs
9815 have the same number of frames, which are compared one by one.
9816
9817 The obtained average PSNR is printed through the logging system.
9818
9819 The filter stores the accumulated MSE (mean squared error) of each
9820 frame, and at the end of the processing it is averaged across all frames
9821 equally, and the following formula is applied to obtain the PSNR:
9822
9823 @example
9824 PSNR = 10*log10(MAX^2/MSE)
9825 @end example
9826
9827 Where MAX is the average of the maximum values of each component of the
9828 image.
9829
9830 The description of the accepted parameters follows.
9831
9832 @table @option
9833 @item stats_file, f
9834 If specified the filter will use the named file to save the PSNR of
9835 each individual frame. When filename equals "-" the data is sent to
9836 standard output.
9837 @end table
9838
9839 The file printed if @var{stats_file} is selected, contains a sequence of
9840 key/value pairs of the form @var{key}:@var{value} for each compared
9841 couple of frames.
9842
9843 A description of each shown parameter follows:
9844
9845 @table @option
9846 @item n
9847 sequential number of the input frame, starting from 1
9848
9849 @item mse_avg
9850 Mean Square Error pixel-by-pixel average difference of the compared
9851 frames, averaged over all the image components.
9852
9853 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
9854 Mean Square Error pixel-by-pixel average difference of the compared
9855 frames for the component specified by the suffix.
9856
9857 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
9858 Peak Signal to Noise ratio of the compared frames for the component
9859 specified by the suffix.
9860 @end table
9861
9862 For example:
9863 @example
9864 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
9865 [main][ref] psnr="stats_file=stats.log" [out]
9866 @end example
9867
9868 On this example the input file being processed is compared with the
9869 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
9870 is stored in @file{stats.log}.
9871
9872 @anchor{pullup}
9873 @section pullup
9874
9875 Pulldown reversal (inverse telecine) filter, capable of handling mixed
9876 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
9877 content.
9878
9879 The pullup filter is designed to take advantage of future context in making
9880 its decisions. This filter is stateless in the sense that it does not lock
9881 onto a pattern to follow, but it instead looks forward to the following
9882 fields in order to identify matches and rebuild progressive frames.
9883
9884 To produce content with an even framerate, insert the fps filter after
9885 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
9886 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
9887
9888 The filter accepts the following options:
9889
9890 @table @option
9891 @item jl
9892 @item jr
9893 @item jt
9894 @item jb
9895 These options set the amount of "junk" to ignore at the left, right, top, and
9896 bottom of the image, respectively. Left and right are in units of 8 pixels,
9897 while top and bottom are in units of 2 lines.
9898 The default is 8 pixels on each side.
9899
9900 @item sb
9901 Set the strict breaks. Setting this option to 1 will reduce the chances of
9902 filter generating an occasional mismatched frame, but it may also cause an
9903 excessive number of frames to be dropped during high motion sequences.
9904 Conversely, setting it to -1 will make filter match fields more easily.
9905 This may help processing of video where there is slight blurring between
9906 the fields, but may also cause there to be interlaced frames in the output.
9907 Default value is @code{0}.
9908
9909 @item mp
9910 Set the metric plane to use. It accepts the following values:
9911 @table @samp
9912 @item l
9913 Use luma plane.
9914
9915 @item u
9916 Use chroma blue plane.
9917
9918 @item v
9919 Use chroma red plane.
9920 @end table
9921
9922 This option may be set to use chroma plane instead of the default luma plane
9923 for doing filter's computations. This may improve accuracy on very clean
9924 source material, but more likely will decrease accuracy, especially if there
9925 is chroma noise (rainbow effect) or any grayscale video.
9926 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
9927 load and make pullup usable in realtime on slow machines.
9928 @end table
9929
9930 For best results (without duplicated frames in the output file) it is
9931 necessary to change the output frame rate. For example, to inverse
9932 telecine NTSC input:
9933 @example
9934 ffmpeg -i input -vf pullup -r 24000/1001 ...
9935 @end example
9936
9937 @section qp
9938
9939 Change video quantization parameters (QP).
9940
9941 The filter accepts the following option:
9942
9943 @table @option
9944 @item qp
9945 Set expression for quantization parameter.
9946 @end table
9947
9948 The expression is evaluated through the eval API and can contain, among others,
9949 the following constants:
9950
9951 @table @var
9952 @item known
9953 1 if index is not 129, 0 otherwise.
9954
9955 @item qp
9956 Sequentional index starting from -129 to 128.
9957 @end table
9958
9959 @subsection Examples
9960
9961 @itemize
9962 @item
9963 Some equation like:
9964 @example
9965 qp=2+2*sin(PI*qp)
9966 @end example
9967 @end itemize
9968
9969 @section random
9970
9971 Flush video frames from internal cache of frames into a random order.
9972 No frame is discarded.
9973 Inspired by @ref{frei0r} nervous filter.
9974
9975 @table @option
9976 @item frames
9977 Set size in number of frames of internal cache, in range from @code{2} to
9978 @code{512}. Default is @code{30}.
9979
9980 @item seed
9981 Set seed for random number generator, must be an integer included between
9982 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9983 less than @code{0}, the filter will try to use a good random seed on a
9984 best effort basis.
9985 @end table
9986
9987 @section removegrain
9988
9989 The removegrain filter is a spatial denoiser for progressive video.
9990
9991 @table @option
9992 @item m0
9993 Set mode for the first plane.
9994
9995 @item m1
9996 Set mode for the second plane.
9997
9998 @item m2
9999 Set mode for the third plane.
10000
10001 @item m3
10002 Set mode for the fourth plane.
10003 @end table
10004
10005 Range of mode is from 0 to 24. Description of each mode follows:
10006
10007 @table @var
10008 @item 0
10009 Leave input plane unchanged. Default.
10010
10011 @item 1
10012 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10013
10014 @item 2
10015 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10016
10017 @item 3
10018 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10019
10020 @item 4
10021 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10022 This is equivalent to a median filter.
10023
10024 @item 5
10025 Line-sensitive clipping giving the minimal change.
10026
10027 @item 6
10028 Line-sensitive clipping, intermediate.
10029
10030 @item 7
10031 Line-sensitive clipping, intermediate.
10032
10033 @item 8
10034 Line-sensitive clipping, intermediate.
10035
10036 @item 9
10037 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10038
10039 @item 10
10040 Replaces the target pixel with the closest neighbour.
10041
10042 @item 11
10043 [1 2 1] horizontal and vertical kernel blur.
10044
10045 @item 12
10046 Same as mode 11.
10047
10048 @item 13
10049 Bob mode, interpolates top field from the line where the neighbours
10050 pixels are the closest.
10051
10052 @item 14
10053 Bob mode, interpolates bottom field from the line where the neighbours
10054 pixels are the closest.
10055
10056 @item 15
10057 Bob mode, interpolates top field. Same as 13 but with a more complicated
10058 interpolation formula.
10059
10060 @item 16
10061 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10062 interpolation formula.
10063
10064 @item 17
10065 Clips the pixel with the minimum and maximum of respectively the maximum and
10066 minimum of each pair of opposite neighbour pixels.
10067
10068 @item 18
10069 Line-sensitive clipping using opposite neighbours whose greatest distance from
10070 the current pixel is minimal.
10071
10072 @item 19
10073 Replaces the pixel with the average of its 8 neighbours.
10074
10075 @item 20
10076 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10077
10078 @item 21
10079 Clips pixels using the averages of opposite neighbour.
10080
10081 @item 22
10082 Same as mode 21 but simpler and faster.
10083
10084 @item 23
10085 Small edge and halo removal, but reputed useless.
10086
10087 @item 24
10088 Similar as 23.
10089 @end table
10090
10091 @section removelogo
10092
10093 Suppress a TV station logo, using an image file to determine which
10094 pixels comprise the logo. It works by filling in the pixels that
10095 comprise the logo with neighboring pixels.
10096
10097 The filter accepts the following options:
10098
10099 @table @option
10100 @item filename, f
10101 Set the filter bitmap file, which can be any image format supported by
10102 libavformat. The width and height of the image file must match those of the
10103 video stream being processed.
10104 @end table
10105
10106 Pixels in the provided bitmap image with a value of zero are not
10107 considered part of the logo, non-zero pixels are considered part of
10108 the logo. If you use white (255) for the logo and black (0) for the
10109 rest, you will be safe. For making the filter bitmap, it is
10110 recommended to take a screen capture of a black frame with the logo
10111 visible, and then using a threshold filter followed by the erode
10112 filter once or twice.
10113
10114 If needed, little splotches can be fixed manually. Remember that if
10115 logo pixels are not covered, the filter quality will be much
10116 reduced. Marking too many pixels as part of the logo does not hurt as
10117 much, but it will increase the amount of blurring needed to cover over
10118 the image and will destroy more information than necessary, and extra
10119 pixels will slow things down on a large logo.
10120
10121 @section repeatfields
10122
10123 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10124 fields based on its value.
10125
10126 @section reverse, areverse
10127
10128 Reverse a clip.
10129
10130 Warning: This filter requires memory to buffer the entire clip, so trimming
10131 is suggested.
10132
10133 @subsection Examples
10134
10135 @itemize
10136 @item
10137 Take the first 5 seconds of a clip, and reverse it.
10138 @example
10139 trim=end=5,reverse
10140 @end example
10141 @end itemize
10142
10143 @section rotate
10144
10145 Rotate video by an arbitrary angle expressed in radians.
10146
10147 The filter accepts the following options:
10148
10149 A description of the optional parameters follows.
10150 @table @option
10151 @item angle, a
10152 Set an expression for the angle by which to rotate the input video
10153 clockwise, expressed as a number of radians. A negative value will
10154 result in a counter-clockwise rotation. By default it is set to "0".
10155
10156 This expression is evaluated for each frame.
10157
10158 @item out_w, ow
10159 Set the output width expression, default value is "iw".
10160 This expression is evaluated just once during configuration.
10161
10162 @item out_h, oh
10163 Set the output height expression, default value is "ih".
10164 This expression is evaluated just once during configuration.
10165
10166 @item bilinear
10167 Enable bilinear interpolation if set to 1, a value of 0 disables
10168 it. Default value is 1.
10169
10170 @item fillcolor, c
10171 Set the color used to fill the output area not covered by the rotated
10172 image. For the general syntax of this option, check the "Color" section in the
10173 ffmpeg-utils manual. If the special value "none" is selected then no
10174 background is printed (useful for example if the background is never shown).
10175
10176 Default value is "black".
10177 @end table
10178
10179 The expressions for the angle and the output size can contain the
10180 following constants and functions:
10181
10182 @table @option
10183 @item n
10184 sequential number of the input frame, starting from 0. It is always NAN
10185 before the first frame is filtered.
10186
10187 @item t
10188 time in seconds of the input frame, it is set to 0 when the filter is
10189 configured. It is always NAN before the first frame is filtered.
10190
10191 @item hsub
10192 @item vsub
10193 horizontal and vertical chroma subsample values. For example for the
10194 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10195
10196 @item in_w, iw
10197 @item in_h, ih
10198 the input video width and height
10199
10200 @item out_w, ow
10201 @item out_h, oh
10202 the output width and height, that is the size of the padded area as
10203 specified by the @var{width} and @var{height} expressions
10204
10205 @item rotw(a)
10206 @item roth(a)
10207 the minimal width/height required for completely containing the input
10208 video rotated by @var{a} radians.
10209
10210 These are only available when computing the @option{out_w} and
10211 @option{out_h} expressions.
10212 @end table
10213
10214 @subsection Examples
10215
10216 @itemize
10217 @item
10218 Rotate the input by PI/6 radians clockwise:
10219 @example
10220 rotate=PI/6
10221 @end example
10222
10223 @item
10224 Rotate the input by PI/6 radians counter-clockwise:
10225 @example
10226 rotate=-PI/6
10227 @end example
10228
10229 @item
10230 Rotate the input by 45 degrees clockwise:
10231 @example
10232 rotate=45*PI/180
10233 @end example
10234
10235 @item
10236 Apply a constant rotation with period T, starting from an angle of PI/3:
10237 @example
10238 rotate=PI/3+2*PI*t/T
10239 @end example
10240
10241 @item
10242 Make the input video rotation oscillating with a period of T
10243 seconds and an amplitude of A radians:
10244 @example
10245 rotate=A*sin(2*PI/T*t)
10246 @end example
10247
10248 @item
10249 Rotate the video, output size is chosen so that the whole rotating
10250 input video is always completely contained in the output:
10251 @example
10252 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
10253 @end example
10254
10255 @item
10256 Rotate the video, reduce the output size so that no background is ever
10257 shown:
10258 @example
10259 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
10260 @end example
10261 @end itemize
10262
10263 @subsection Commands
10264
10265 The filter supports the following commands:
10266
10267 @table @option
10268 @item a, angle
10269 Set the angle expression.
10270 The command accepts the same syntax of the corresponding option.
10271
10272 If the specified expression is not valid, it is kept at its current
10273 value.
10274 @end table
10275
10276 @section sab
10277
10278 Apply Shape Adaptive Blur.
10279
10280 The filter accepts the following options:
10281
10282 @table @option
10283 @item luma_radius, lr
10284 Set luma blur filter strength, must be a value in range 0.1-4.0, default
10285 value is 1.0. A greater value will result in a more blurred image, and
10286 in slower processing.
10287
10288 @item luma_pre_filter_radius, lpfr
10289 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
10290 value is 1.0.
10291
10292 @item luma_strength, ls
10293 Set luma maximum difference between pixels to still be considered, must
10294 be a value in the 0.1-100.0 range, default value is 1.0.
10295
10296 @item chroma_radius, cr
10297 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
10298 greater value will result in a more blurred image, and in slower
10299 processing.
10300
10301 @item chroma_pre_filter_radius, cpfr
10302 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
10303
10304 @item chroma_strength, cs
10305 Set chroma maximum difference between pixels to still be considered,
10306 must be a value in the 0.1-100.0 range.
10307 @end table
10308
10309 Each chroma option value, if not explicitly specified, is set to the
10310 corresponding luma option value.
10311
10312 @anchor{scale}
10313 @section scale
10314
10315 Scale (resize) the input video, using the libswscale library.
10316
10317 The scale filter forces the output display aspect ratio to be the same
10318 of the input, by changing the output sample aspect ratio.
10319
10320 If the input image format is different from the format requested by
10321 the next filter, the scale filter will convert the input to the
10322 requested format.
10323
10324 @subsection Options
10325 The filter accepts the following options, or any of the options
10326 supported by the libswscale scaler.
10327
10328 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
10329 the complete list of scaler options.
10330
10331 @table @option
10332 @item width, w
10333 @item height, h
10334 Set the output video dimension expression. Default value is the input
10335 dimension.
10336
10337 If the value is 0, the input width is used for the output.
10338
10339 If one of the values is -1, the scale filter will use a value that
10340 maintains the aspect ratio of the input image, calculated from the
10341 other specified dimension. If both of them are -1, the input size is
10342 used
10343
10344 If one of the values is -n with n > 1, the scale filter will also use a value
10345 that maintains the aspect ratio of the input image, calculated from the other
10346 specified dimension. After that it will, however, make sure that the calculated
10347 dimension is divisible by n and adjust the value if necessary.
10348
10349 See below for the list of accepted constants for use in the dimension
10350 expression.
10351
10352 @item eval
10353 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
10354
10355 @table @samp
10356 @item init
10357 Only evaluate expressions once during the filter initialization or when a command is processed.
10358
10359 @item frame
10360 Evaluate expressions for each incoming frame.
10361
10362 @end table
10363
10364 Default value is @samp{init}.
10365
10366
10367 @item interl
10368 Set the interlacing mode. It accepts the following values:
10369
10370 @table @samp
10371 @item 1
10372 Force interlaced aware scaling.
10373
10374 @item 0
10375 Do not apply interlaced scaling.
10376
10377 @item -1
10378 Select interlaced aware scaling depending on whether the source frames
10379 are flagged as interlaced or not.
10380 @end table
10381
10382 Default value is @samp{0}.
10383
10384 @item flags
10385 Set libswscale scaling flags. See
10386 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
10387 complete list of values. If not explicitly specified the filter applies
10388 the default flags.
10389
10390
10391 @item param0, param1
10392 Set libswscale input parameters for scaling algorithms that need them. See
10393 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
10394 complete documentation. If not explicitly specified the filter applies
10395 empty parameters.
10396
10397
10398
10399 @item size, s
10400 Set the video size. For the syntax of this option, check the
10401 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10402
10403 @item in_color_matrix
10404 @item out_color_matrix
10405 Set in/output YCbCr color space type.
10406
10407 This allows the autodetected value to be overridden as well as allows forcing
10408 a specific value used for the output and encoder.
10409
10410 If not specified, the color space type depends on the pixel format.
10411
10412 Possible values:
10413
10414 @table @samp
10415 @item auto
10416 Choose automatically.
10417
10418 @item bt709
10419 Format conforming to International Telecommunication Union (ITU)
10420 Recommendation BT.709.
10421
10422 @item fcc
10423 Set color space conforming to the United States Federal Communications
10424 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
10425
10426 @item bt601
10427 Set color space conforming to:
10428
10429 @itemize
10430 @item
10431 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
10432
10433 @item
10434 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
10435
10436 @item
10437 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
10438
10439 @end itemize
10440
10441 @item smpte240m
10442 Set color space conforming to SMPTE ST 240:1999.
10443 @end table
10444
10445 @item in_range
10446 @item out_range
10447 Set in/output YCbCr sample range.
10448
10449 This allows the autodetected value to be overridden as well as allows forcing
10450 a specific value used for the output and encoder. If not specified, the
10451 range depends on the pixel format. Possible values:
10452
10453 @table @samp
10454 @item auto
10455 Choose automatically.
10456
10457 @item jpeg/full/pc
10458 Set full range (0-255 in case of 8-bit luma).
10459
10460 @item mpeg/tv
10461 Set "MPEG" range (16-235 in case of 8-bit luma).
10462 @end table
10463
10464 @item force_original_aspect_ratio
10465 Enable decreasing or increasing output video width or height if necessary to
10466 keep the original aspect ratio. Possible values:
10467
10468 @table @samp
10469 @item disable
10470 Scale the video as specified and disable this feature.
10471
10472 @item decrease
10473 The output video dimensions will automatically be decreased if needed.
10474
10475 @item increase
10476 The output video dimensions will automatically be increased if needed.
10477
10478 @end table
10479
10480 One useful instance of this option is that when you know a specific device's
10481 maximum allowed resolution, you can use this to limit the output video to
10482 that, while retaining the aspect ratio. For example, device A allows
10483 1280x720 playback, and your video is 1920x800. Using this option (set it to
10484 decrease) and specifying 1280x720 to the command line makes the output
10485 1280x533.
10486
10487 Please note that this is a different thing than specifying -1 for @option{w}
10488 or @option{h}, you still need to specify the output resolution for this option
10489 to work.
10490
10491 @end table
10492
10493 The values of the @option{w} and @option{h} options are expressions
10494 containing the following constants:
10495
10496 @table @var
10497 @item in_w
10498 @item in_h
10499 The input width and height
10500
10501 @item iw
10502 @item ih
10503 These are the same as @var{in_w} and @var{in_h}.
10504
10505 @item out_w
10506 @item out_h
10507 The output (scaled) width and height
10508
10509 @item ow
10510 @item oh
10511 These are the same as @var{out_w} and @var{out_h}
10512
10513 @item a
10514 The same as @var{iw} / @var{ih}
10515
10516 @item sar
10517 input sample aspect ratio
10518
10519 @item dar
10520 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
10521
10522 @item hsub
10523 @item vsub
10524 horizontal and vertical input chroma subsample values. For example for the
10525 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10526
10527 @item ohsub
10528 @item ovsub
10529 horizontal and vertical output chroma subsample values. For example for the
10530 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10531 @end table
10532
10533 @subsection Examples
10534
10535 @itemize
10536 @item
10537 Scale the input video to a size of 200x100
10538 @example
10539 scale=w=200:h=100
10540 @end example
10541
10542 This is equivalent to:
10543 @example
10544 scale=200:100
10545 @end example
10546
10547 or:
10548 @example
10549 scale=200x100
10550 @end example
10551
10552 @item
10553 Specify a size abbreviation for the output size:
10554 @example
10555 scale=qcif
10556 @end example
10557
10558 which can also be written as:
10559 @example
10560 scale=size=qcif
10561 @end example
10562
10563 @item
10564 Scale the input to 2x:
10565 @example
10566 scale=w=2*iw:h=2*ih
10567 @end example
10568
10569 @item
10570 The above is the same as:
10571 @example
10572 scale=2*in_w:2*in_h
10573 @end example
10574
10575 @item
10576 Scale the input to 2x with forced interlaced scaling:
10577 @example
10578 scale=2*iw:2*ih:interl=1
10579 @end example
10580
10581 @item
10582 Scale the input to half size:
10583 @example
10584 scale=w=iw/2:h=ih/2
10585 @end example
10586
10587 @item
10588 Increase the width, and set the height to the same size:
10589 @example
10590 scale=3/2*iw:ow
10591 @end example
10592
10593 @item
10594 Seek Greek harmony:
10595 @example
10596 scale=iw:1/PHI*iw
10597 scale=ih*PHI:ih
10598 @end example
10599
10600 @item
10601 Increase the height, and set the width to 3/2 of the height:
10602 @example
10603 scale=w=3/2*oh:h=3/5*ih
10604 @end example
10605
10606 @item
10607 Increase the size, making the size a multiple of the chroma
10608 subsample values:
10609 @example
10610 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
10611 @end example
10612
10613 @item
10614 Increase the width to a maximum of 500 pixels,
10615 keeping the same aspect ratio as the input:
10616 @example
10617 scale=w='min(500\, iw*3/2):h=-1'
10618 @end example
10619 @end itemize
10620
10621 @subsection Commands
10622
10623 This filter supports the following commands:
10624 @table @option
10625 @item width, w
10626 @item height, h
10627 Set the output video dimension expression.
10628 The command accepts the same syntax of the corresponding option.
10629
10630 If the specified expression is not valid, it is kept at its current
10631 value.
10632 @end table
10633
10634 @section scale2ref
10635
10636 Scale (resize) the input video, based on a reference video.
10637
10638 See the scale filter for available options, scale2ref supports the same but
10639 uses the reference video instead of the main input as basis.
10640
10641 @subsection Examples
10642
10643 @itemize
10644 @item
10645 Scale a subtitle stream to match the main video in size before overlaying
10646 @example
10647 'scale2ref[b][a];[a][b]overlay'
10648 @end example
10649 @end itemize
10650
10651 @section selectivecolor
10652
10653 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
10654 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
10655 by the "purity" of the color (that is, how saturated it already is).
10656
10657 This filter is similar to the Adobe Photoshop Selective Color tool.
10658
10659 The filter accepts the following options:
10660
10661 @table @option
10662 @item correction_method
10663 Select color correction method.
10664
10665 Available values are:
10666 @table @samp
10667 @item absolute
10668 Specified adjustments are applied "as-is" (added/subtracted to original pixel
10669 component value).
10670 @item relative
10671 Specified adjustments are relative to the original component value.
10672 @end table
10673 Default is @code{absolute}.
10674 @item reds
10675 Adjustments for red pixels (pixels where the red component is the maximum)
10676 @item yellows
10677 Adjustments for yellow pixels (pixels where the blue component is the minimum)
10678 @item greens
10679 Adjustments for green pixels (pixels where the green component is the maximum)
10680 @item cyans
10681 Adjustments for cyan pixels (pixels where the red component is the minimum)
10682 @item blues
10683 Adjustments for blue pixels (pixels where the blue component is the maximum)
10684 @item magentas
10685 Adjustments for magenta pixels (pixels where the green component is the minimum)
10686 @item whites
10687 Adjustments for white pixels (pixels where all components are greater than 128)
10688 @item neutrals
10689 Adjustments for all pixels except pure black and pure white
10690 @item blacks
10691 Adjustments for black pixels (pixels where all components are lesser than 128)
10692 @item psfile
10693 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
10694 @end table
10695
10696 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
10697 4 space separated floating point adjustment values in the [-1,1] range,
10698 respectively to adjust the amount of cyan, magenta, yellow and black for the
10699 pixels of its range.
10700
10701 @subsection Examples
10702
10703 @itemize
10704 @item
10705 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
10706 increase magenta by 27% in blue areas:
10707 @example
10708 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
10709 @end example
10710
10711 @item
10712 Use a Photoshop selective color preset:
10713 @example
10714 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
10715 @end example
10716 @end itemize
10717
10718 @section separatefields
10719
10720 The @code{separatefields} takes a frame-based video input and splits
10721 each frame into its components fields, producing a new half height clip
10722 with twice the frame rate and twice the frame count.
10723
10724 This filter use field-dominance information in frame to decide which
10725 of each pair of fields to place first in the output.
10726 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
10727
10728 @section setdar, setsar
10729
10730 The @code{setdar} filter sets the Display Aspect Ratio for the filter
10731 output video.
10732
10733 This is done by changing the specified Sample (aka Pixel) Aspect
10734 Ratio, according to the following equation:
10735 @example
10736 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
10737 @end example
10738
10739 Keep in mind that the @code{setdar} filter does not modify the pixel
10740 dimensions of the video frame. Also, the display aspect ratio set by
10741 this filter may be changed by later filters in the filterchain,
10742 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
10743 applied.
10744
10745 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
10746 the filter output video.
10747
10748 Note that as a consequence of the application of this filter, the
10749 output display aspect ratio will change according to the equation
10750 above.
10751
10752 Keep in mind that the sample aspect ratio set by the @code{setsar}
10753 filter may be changed by later filters in the filterchain, e.g. if
10754 another "setsar" or a "setdar" filter is applied.
10755
10756 It accepts the following parameters:
10757
10758 @table @option
10759 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
10760 Set the aspect ratio used by the filter.
10761
10762 The parameter can be a floating point number string, an expression, or
10763 a string of the form @var{num}:@var{den}, where @var{num} and
10764 @var{den} are the numerator and denominator of the aspect ratio. If
10765 the parameter is not specified, it is assumed the value "0".
10766 In case the form "@var{num}:@var{den}" is used, the @code{:} character
10767 should be escaped.
10768
10769 @item max
10770 Set the maximum integer value to use for expressing numerator and
10771 denominator when reducing the expressed aspect ratio to a rational.
10772 Default value is @code{100}.
10773
10774 @end table
10775
10776 The parameter @var{sar} is an expression containing
10777 the following constants:
10778
10779 @table @option
10780 @item E, PI, PHI
10781 These are approximated values for the mathematical constants e
10782 (Euler's number), pi (Greek pi), and phi (the golden ratio).
10783
10784 @item w, h
10785 The input width and height.
10786
10787 @item a
10788 These are the same as @var{w} / @var{h}.
10789
10790 @item sar
10791 The input sample aspect ratio.
10792
10793 @item dar
10794 The input display aspect ratio. It is the same as
10795 (@var{w} / @var{h}) * @var{sar}.
10796
10797 @item hsub, vsub
10798 Horizontal and vertical chroma subsample values. For example, for the
10799 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10800 @end table
10801
10802 @subsection Examples
10803
10804 @itemize
10805
10806 @item
10807 To change the display aspect ratio to 16:9, specify one of the following:
10808 @example
10809 setdar=dar=1.77777
10810 setdar=dar=16/9
10811 setdar=dar=1.77777
10812 @end example
10813
10814 @item
10815 To change the sample aspect ratio to 10:11, specify:
10816 @example
10817 setsar=sar=10/11
10818 @end example
10819
10820 @item
10821 To set a display aspect ratio of 16:9, and specify a maximum integer value of
10822 1000 in the aspect ratio reduction, use the command:
10823 @example
10824 setdar=ratio=16/9:max=1000
10825 @end example
10826
10827 @end itemize
10828
10829 @anchor{setfield}
10830 @section setfield
10831
10832 Force field for the output video frame.
10833
10834 The @code{setfield} filter marks the interlace type field for the
10835 output frames. It does not change the input frame, but only sets the
10836 corresponding property, which affects how the frame is treated by
10837 following filters (e.g. @code{fieldorder} or @code{yadif}).
10838
10839 The filter accepts the following options:
10840
10841 @table @option
10842
10843 @item mode
10844 Available values are:
10845
10846 @table @samp
10847 @item auto
10848 Keep the same field property.
10849
10850 @item bff
10851 Mark the frame as bottom-field-first.
10852
10853 @item tff
10854 Mark the frame as top-field-first.
10855
10856 @item prog
10857 Mark the frame as progressive.
10858 @end table
10859 @end table
10860
10861 @section showinfo
10862
10863 Show a line containing various information for each input video frame.
10864 The input video is not modified.
10865
10866 The shown line contains a sequence of key/value pairs of the form
10867 @var{key}:@var{value}.
10868
10869 The following values are shown in the output:
10870
10871 @table @option
10872 @item n
10873 The (sequential) number of the input frame, starting from 0.
10874
10875 @item pts
10876 The Presentation TimeStamp of the input frame, expressed as a number of
10877 time base units. The time base unit depends on the filter input pad.
10878
10879 @item pts_time
10880 The Presentation TimeStamp of the input frame, expressed as a number of
10881 seconds.
10882
10883 @item pos
10884 The position of the frame in the input stream, or -1 if this information is
10885 unavailable and/or meaningless (for example in case of synthetic video).
10886
10887 @item fmt
10888 The pixel format name.
10889
10890 @item sar
10891 The sample aspect ratio of the input frame, expressed in the form
10892 @var{num}/@var{den}.
10893
10894 @item s
10895 The size of the input frame. For the syntax of this option, check the
10896 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10897
10898 @item i
10899 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
10900 for bottom field first).
10901
10902 @item iskey
10903 This is 1 if the frame is a key frame, 0 otherwise.
10904
10905 @item type
10906 The picture type of the input frame ("I" for an I-frame, "P" for a
10907 P-frame, "B" for a B-frame, or "?" for an unknown type).
10908 Also refer to the documentation of the @code{AVPictureType} enum and of
10909 the @code{av_get_picture_type_char} function defined in
10910 @file{libavutil/avutil.h}.
10911
10912 @item checksum
10913 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
10914
10915 @item plane_checksum
10916 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
10917 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
10918 @end table
10919
10920 @section showpalette
10921
10922 Displays the 256 colors palette of each frame. This filter is only relevant for
10923 @var{pal8} pixel format frames.
10924
10925 It accepts the following option:
10926
10927 @table @option
10928 @item s
10929 Set the size of the box used to represent one palette color entry. Default is
10930 @code{30} (for a @code{30x30} pixel box).
10931 @end table
10932
10933 @section shuffleframes
10934
10935 Reorder and/or duplicate video frames.
10936
10937 It accepts the following parameters:
10938
10939 @table @option
10940 @item mapping
10941 Set the destination indexes of input frames.
10942 This is space or '|' separated list of indexes that maps input frames to output
10943 frames. Number of indexes also sets maximal value that each index may have.
10944 @end table
10945
10946 The first frame has the index 0. The default is to keep the input unchanged.
10947
10948 Swap second and third frame of every three frames of the input:
10949 @example
10950 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
10951 @end example
10952
10953 @section shuffleplanes
10954
10955 Reorder and/or duplicate video planes.
10956
10957 It accepts the following parameters:
10958
10959 @table @option
10960
10961 @item map0
10962 The index of the input plane to be used as the first output plane.
10963
10964 @item map1
10965 The index of the input plane to be used as the second output plane.
10966
10967 @item map2
10968 The index of the input plane to be used as the third output plane.
10969
10970 @item map3
10971 The index of the input plane to be used as the fourth output plane.
10972
10973 @end table
10974
10975 The first plane has the index 0. The default is to keep the input unchanged.
10976
10977 Swap the second and third planes of the input:
10978 @example
10979 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
10980 @end example
10981
10982 @anchor{signalstats}
10983 @section signalstats
10984 Evaluate various visual metrics that assist in determining issues associated
10985 with the digitization of analog video media.
10986
10987 By default the filter will log these metadata values:
10988
10989 @table @option
10990 @item YMIN
10991 Display the minimal Y value contained within the input frame. Expressed in
10992 range of [0-255].
10993
10994 @item YLOW
10995 Display the Y value at the 10% percentile within the input frame. Expressed in
10996 range of [0-255].
10997
10998 @item YAVG
10999 Display the average Y value within the input frame. Expressed in range of
11000 [0-255].
11001
11002 @item YHIGH
11003 Display the Y value at the 90% percentile within the input frame. Expressed in
11004 range of [0-255].
11005
11006 @item YMAX
11007 Display the maximum Y value contained within the input frame. Expressed in
11008 range of [0-255].
11009
11010 @item UMIN
11011 Display the minimal U value contained within the input frame. Expressed in
11012 range of [0-255].
11013
11014 @item ULOW
11015 Display the U value at the 10% percentile within the input frame. Expressed in
11016 range of [0-255].
11017
11018 @item UAVG
11019 Display the average U value within the input frame. Expressed in range of
11020 [0-255].
11021
11022 @item UHIGH
11023 Display the U value at the 90% percentile within the input frame. Expressed in
11024 range of [0-255].
11025
11026 @item UMAX
11027 Display the maximum U value contained within the input frame. Expressed in
11028 range of [0-255].
11029
11030 @item VMIN
11031 Display the minimal V value contained within the input frame. Expressed in
11032 range of [0-255].
11033
11034 @item VLOW
11035 Display the V value at the 10% percentile within the input frame. Expressed in
11036 range of [0-255].
11037
11038 @item VAVG
11039 Display the average V value within the input frame. Expressed in range of
11040 [0-255].
11041
11042 @item VHIGH
11043 Display the V value at the 90% percentile within the input frame. Expressed in
11044 range of [0-255].
11045
11046 @item VMAX
11047 Display the maximum V value contained within the input frame. Expressed in
11048 range of [0-255].
11049
11050 @item SATMIN
11051 Display the minimal saturation value contained within the input frame.
11052 Expressed in range of [0-~181.02].
11053
11054 @item SATLOW
11055 Display the saturation value at the 10% percentile within the input frame.
11056 Expressed in range of [0-~181.02].
11057
11058 @item SATAVG
11059 Display the average saturation value within the input frame. Expressed in range
11060 of [0-~181.02].
11061
11062 @item SATHIGH
11063 Display the saturation value at the 90% percentile within the input frame.
11064 Expressed in range of [0-~181.02].
11065
11066 @item SATMAX
11067 Display the maximum saturation value contained within the input frame.
11068 Expressed in range of [0-~181.02].
11069
11070 @item HUEMED
11071 Display the median value for hue within the input frame. Expressed in range of
11072 [0-360].
11073
11074 @item HUEAVG
11075 Display the average value for hue within the input frame. Expressed in range of
11076 [0-360].
11077
11078 @item YDIF
11079 Display the average of sample value difference between all values of the Y
11080 plane in the current frame and corresponding values of the previous input frame.
11081 Expressed in range of [0-255].
11082
11083 @item UDIF
11084 Display the average of sample value difference between all values of the U
11085 plane in the current frame and corresponding values of the previous input frame.
11086 Expressed in range of [0-255].
11087
11088 @item VDIF
11089 Display the average of sample value difference between all values of the V
11090 plane in the current frame and corresponding values of the previous input frame.
11091 Expressed in range of [0-255].
11092 @end table
11093
11094 The filter accepts the following options:
11095
11096 @table @option
11097 @item stat
11098 @item out
11099
11100 @option{stat} specify an additional form of image analysis.
11101 @option{out} output video with the specified type of pixel highlighted.
11102
11103 Both options accept the following values:
11104
11105 @table @samp
11106 @item tout
11107 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11108 unlike the neighboring pixels of the same field. Examples of temporal outliers
11109 include the results of video dropouts, head clogs, or tape tracking issues.
11110
11111 @item vrep
11112 Identify @var{vertical line repetition}. Vertical line repetition includes
11113 similar rows of pixels within a frame. In born-digital video vertical line
11114 repetition is common, but this pattern is uncommon in video digitized from an
11115 analog source. When it occurs in video that results from the digitization of an
11116 analog source it can indicate concealment from a dropout compensator.
11117
11118 @item brng
11119 Identify pixels that fall outside of legal broadcast range.
11120 @end table
11121
11122 @item color, c
11123 Set the highlight color for the @option{out} option. The default color is
11124 yellow.
11125 @end table
11126
11127 @subsection Examples
11128
11129 @itemize
11130 @item
11131 Output data of various video metrics:
11132 @example
11133 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11134 @end example
11135
11136 @item
11137 Output specific data about the minimum and maximum values of the Y plane per frame:
11138 @example
11139 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11140 @end example
11141
11142 @item
11143 Playback video while highlighting pixels that are outside of broadcast range in red.
11144 @example
11145 ffplay example.mov -vf signalstats="out=brng:color=red"
11146 @end example
11147
11148 @item
11149 Playback video with signalstats metadata drawn over the frame.
11150 @example
11151 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
11152 @end example
11153
11154 The contents of signalstat_drawtext.txt used in the command are:
11155 @example
11156 time %@{pts:hms@}
11157 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
11158 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
11159 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
11160 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
11161
11162 @end example
11163 @end itemize
11164
11165 @anchor{smartblur}
11166 @section smartblur
11167
11168 Blur the input video without impacting the outlines.
11169
11170 It accepts the following options:
11171
11172 @table @option
11173 @item luma_radius, lr
11174 Set the luma radius. The option value must be a float number in
11175 the range [0.1,5.0] that specifies the variance of the gaussian filter
11176 used to blur the image (slower if larger). Default value is 1.0.
11177
11178 @item luma_strength, ls
11179 Set the luma strength. The option value must be a float number
11180 in the range [-1.0,1.0] that configures the blurring. A value included
11181 in [0.0,1.0] will blur the image whereas a value included in
11182 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11183
11184 @item luma_threshold, lt
11185 Set the luma threshold used as a coefficient to determine
11186 whether a pixel should be blurred or not. The option value must be an
11187 integer in the range [-30,30]. A value of 0 will filter all the image,
11188 a value included in [0,30] will filter flat areas and a value included
11189 in [-30,0] will filter edges. Default value is 0.
11190
11191 @item chroma_radius, cr
11192 Set the chroma radius. The option value must be a float number in
11193 the range [0.1,5.0] that specifies the variance of the gaussian filter
11194 used to blur the image (slower if larger). Default value is 1.0.
11195
11196 @item chroma_strength, cs
11197 Set the chroma strength. The option value must be a float number
11198 in the range [-1.0,1.0] that configures the blurring. A value included
11199 in [0.0,1.0] will blur the image whereas a value included in
11200 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11201
11202 @item chroma_threshold, ct
11203 Set the chroma threshold used as a coefficient to determine
11204 whether a pixel should be blurred or not. The option value must be an
11205 integer in the range [-30,30]. A value of 0 will filter all the image,
11206 a value included in [0,30] will filter flat areas and a value included
11207 in [-30,0] will filter edges. Default value is 0.
11208 @end table
11209
11210 If a chroma option is not explicitly set, the corresponding luma value
11211 is set.
11212
11213 @section ssim
11214
11215 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
11216
11217 This filter takes in input two input videos, the first input is
11218 considered the "main" source and is passed unchanged to the
11219 output. The second input is used as a "reference" video for computing
11220 the SSIM.
11221
11222 Both video inputs must have the same resolution and pixel format for
11223 this filter to work correctly. Also it assumes that both inputs
11224 have the same number of frames, which are compared one by one.
11225
11226 The filter stores the calculated SSIM of each frame.
11227
11228 The description of the accepted parameters follows.
11229
11230 @table @option
11231 @item stats_file, f
11232 If specified the filter will use the named file to save the SSIM of
11233 each individual frame. When filename equals "-" the data is sent to
11234 standard output.
11235 @end table
11236
11237 The file printed if @var{stats_file} is selected, contains a sequence of
11238 key/value pairs of the form @var{key}:@var{value} for each compared
11239 couple of frames.
11240
11241 A description of each shown parameter follows:
11242
11243 @table @option
11244 @item n
11245 sequential number of the input frame, starting from 1
11246
11247 @item Y, U, V, R, G, B
11248 SSIM of the compared frames for the component specified by the suffix.
11249
11250 @item All
11251 SSIM of the compared frames for the whole frame.
11252
11253 @item dB
11254 Same as above but in dB representation.
11255 @end table
11256
11257 For example:
11258 @example
11259 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11260 [main][ref] ssim="stats_file=stats.log" [out]
11261 @end example
11262
11263 On this example the input file being processed is compared with the
11264 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
11265 is stored in @file{stats.log}.
11266
11267 Another example with both psnr and ssim at same time:
11268 @example
11269 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
11270 @end example
11271
11272 @section stereo3d
11273
11274 Convert between different stereoscopic image formats.
11275
11276 The filters accept the following options:
11277
11278 @table @option
11279 @item in
11280 Set stereoscopic image format of input.
11281
11282 Available values for input image formats are:
11283 @table @samp
11284 @item sbsl
11285 side by side parallel (left eye left, right eye right)
11286
11287 @item sbsr
11288 side by side crosseye (right eye left, left eye right)
11289
11290 @item sbs2l
11291 side by side parallel with half width resolution
11292 (left eye left, right eye right)
11293
11294 @item sbs2r
11295 side by side crosseye with half width resolution
11296 (right eye left, left eye right)
11297
11298 @item abl
11299 above-below (left eye above, right eye below)
11300
11301 @item abr
11302 above-below (right eye above, left eye below)
11303
11304 @item ab2l
11305 above-below with half height resolution
11306 (left eye above, right eye below)
11307
11308 @item ab2r
11309 above-below with half height resolution
11310 (right eye above, left eye below)
11311
11312 @item al
11313 alternating frames (left eye first, right eye second)
11314
11315 @item ar
11316 alternating frames (right eye first, left eye second)
11317
11318 @item irl
11319 interleaved rows (left eye has top row, right eye starts on next row)
11320
11321 @item irr
11322 interleaved rows (right eye has top row, left eye starts on next row)
11323
11324 @item icl
11325 interleaved columns, left eye first
11326
11327 @item icr
11328 interleaved columns, right eye first
11329
11330 Default value is @samp{sbsl}.
11331 @end table
11332
11333 @item out
11334 Set stereoscopic image format of output.
11335
11336 @table @samp
11337 @item sbsl
11338 side by side parallel (left eye left, right eye right)
11339
11340 @item sbsr
11341 side by side crosseye (right eye left, left eye right)
11342
11343 @item sbs2l
11344 side by side parallel with half width resolution
11345 (left eye left, right eye right)
11346
11347 @item sbs2r
11348 side by side crosseye with half width resolution
11349 (right eye left, left eye right)
11350
11351 @item abl
11352 above-below (left eye above, right eye below)
11353
11354 @item abr
11355 above-below (right eye above, left eye below)
11356
11357 @item ab2l
11358 above-below with half height resolution
11359 (left eye above, right eye below)
11360
11361 @item ab2r
11362 above-below with half height resolution
11363 (right eye above, left eye below)
11364
11365 @item al
11366 alternating frames (left eye first, right eye second)
11367
11368 @item ar
11369 alternating frames (right eye first, left eye second)
11370
11371 @item irl
11372 interleaved rows (left eye has top row, right eye starts on next row)
11373
11374 @item irr
11375 interleaved rows (right eye has top row, left eye starts on next row)
11376
11377 @item arbg
11378 anaglyph red/blue gray
11379 (red filter on left eye, blue filter on right eye)
11380
11381 @item argg
11382 anaglyph red/green gray
11383 (red filter on left eye, green filter on right eye)
11384
11385 @item arcg
11386 anaglyph red/cyan gray
11387 (red filter on left eye, cyan filter on right eye)
11388
11389 @item arch
11390 anaglyph red/cyan half colored
11391 (red filter on left eye, cyan filter on right eye)
11392
11393 @item arcc
11394 anaglyph red/cyan color
11395 (red filter on left eye, cyan filter on right eye)
11396
11397 @item arcd
11398 anaglyph red/cyan color optimized with the least squares projection of dubois
11399 (red filter on left eye, cyan filter on right eye)
11400
11401 @item agmg
11402 anaglyph green/magenta gray
11403 (green filter on left eye, magenta filter on right eye)
11404
11405 @item agmh
11406 anaglyph green/magenta half colored
11407 (green filter on left eye, magenta filter on right eye)
11408
11409 @item agmc
11410 anaglyph green/magenta colored
11411 (green filter on left eye, magenta filter on right eye)
11412
11413 @item agmd
11414 anaglyph green/magenta color optimized with the least squares projection of dubois
11415 (green filter on left eye, magenta filter on right eye)
11416
11417 @item aybg
11418 anaglyph yellow/blue gray
11419 (yellow filter on left eye, blue filter on right eye)
11420
11421 @item aybh
11422 anaglyph yellow/blue half colored
11423 (yellow filter on left eye, blue filter on right eye)
11424
11425 @item aybc
11426 anaglyph yellow/blue colored
11427 (yellow filter on left eye, blue filter on right eye)
11428
11429 @item aybd
11430 anaglyph yellow/blue color optimized with the least squares projection of dubois
11431 (yellow filter on left eye, blue filter on right eye)
11432
11433 @item ml
11434 mono output (left eye only)
11435
11436 @item mr
11437 mono output (right eye only)
11438
11439 @item chl
11440 checkerboard, left eye first
11441
11442 @item chr
11443 checkerboard, right eye first
11444
11445 @item icl
11446 interleaved columns, left eye first
11447
11448 @item icr
11449 interleaved columns, right eye first
11450 @end table
11451
11452 Default value is @samp{arcd}.
11453 @end table
11454
11455 @subsection Examples
11456
11457 @itemize
11458 @item
11459 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
11460 @example
11461 stereo3d=sbsl:aybd
11462 @end example
11463
11464 @item
11465 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
11466 @example
11467 stereo3d=abl:sbsr
11468 @end example
11469 @end itemize
11470
11471 @section streamselect, astreamselect
11472 Select video or audio streams.
11473
11474 The filter accepts the following options:
11475
11476 @table @option
11477 @item inputs
11478 Set number of inputs. Default is 2.
11479
11480 @item map
11481 Set input indexes to remap to outputs.
11482 @end table
11483
11484 @subsection Commands
11485
11486 The @code{streamselect} and @code{astreamselect} filter supports the following
11487 commands:
11488
11489 @table @option
11490 @item map
11491 Set input indexes to remap to outputs.
11492 @end table
11493
11494 @subsection Examples
11495
11496 @itemize
11497 @item
11498 Select first 5 seconds 1st stream and rest of time 2nd stream:
11499 @example
11500 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
11501 @end example
11502
11503 @item
11504 Same as above, but for audio:
11505 @example
11506 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
11507 @end example
11508 @end itemize
11509
11510 @anchor{spp}
11511 @section spp
11512
11513 Apply a simple postprocessing filter that compresses and decompresses the image
11514 at several (or - in the case of @option{quality} level @code{6} - all) shifts
11515 and average the results.
11516
11517 The filter accepts the following options:
11518
11519 @table @option
11520 @item quality
11521 Set quality. This option defines the number of levels for averaging. It accepts
11522 an integer in the range 0-6. If set to @code{0}, the filter will have no
11523 effect. A value of @code{6} means the higher quality. For each increment of
11524 that value the speed drops by a factor of approximately 2.  Default value is
11525 @code{3}.
11526
11527 @item qp
11528 Force a constant quantization parameter. If not set, the filter will use the QP
11529 from the video stream (if available).
11530
11531 @item mode
11532 Set thresholding mode. Available modes are:
11533
11534 @table @samp
11535 @item hard
11536 Set hard thresholding (default).
11537 @item soft
11538 Set soft thresholding (better de-ringing effect, but likely blurrier).
11539 @end table
11540
11541 @item use_bframe_qp
11542 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11543 option may cause flicker since the B-Frames have often larger QP. Default is
11544 @code{0} (not enabled).
11545 @end table
11546
11547 @anchor{subtitles}
11548 @section subtitles
11549
11550 Draw subtitles on top of input video using the libass library.
11551
11552 To enable compilation of this filter you need to configure FFmpeg with
11553 @code{--enable-libass}. This filter also requires a build with libavcodec and
11554 libavformat to convert the passed subtitles file to ASS (Advanced Substation
11555 Alpha) subtitles format.
11556
11557 The filter accepts the following options:
11558
11559 @table @option
11560 @item filename, f
11561 Set the filename of the subtitle file to read. It must be specified.
11562
11563 @item original_size
11564 Specify the size of the original video, the video for which the ASS file
11565 was composed. For the syntax of this option, check the
11566 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11567 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
11568 correctly scale the fonts if the aspect ratio has been changed.
11569
11570 @item fontsdir
11571 Set a directory path containing fonts that can be used by the filter.
11572 These fonts will be used in addition to whatever the font provider uses.
11573
11574 @item charenc
11575 Set subtitles input character encoding. @code{subtitles} filter only. Only
11576 useful if not UTF-8.
11577
11578 @item stream_index, si
11579 Set subtitles stream index. @code{subtitles} filter only.
11580
11581 @item force_style
11582 Override default style or script info parameters of the subtitles. It accepts a
11583 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
11584 @end table
11585
11586 If the first key is not specified, it is assumed that the first value
11587 specifies the @option{filename}.
11588
11589 For example, to render the file @file{sub.srt} on top of the input
11590 video, use the command:
11591 @example
11592 subtitles=sub.srt
11593 @end example
11594
11595 which is equivalent to:
11596 @example
11597 subtitles=filename=sub.srt
11598 @end example
11599
11600 To render the default subtitles stream from file @file{video.mkv}, use:
11601 @example
11602 subtitles=video.mkv
11603 @end example
11604
11605 To render the second subtitles stream from that file, use:
11606 @example
11607 subtitles=video.mkv:si=1
11608 @end example
11609
11610 To make the subtitles stream from @file{sub.srt} appear in transparent green
11611 @code{DejaVu Serif}, use:
11612 @example
11613 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
11614 @end example
11615
11616 @section super2xsai
11617
11618 Scale the input by 2x and smooth using the Super2xSaI (Scale and
11619 Interpolate) pixel art scaling algorithm.
11620
11621 Useful for enlarging pixel art images without reducing sharpness.
11622
11623 @section swaprect
11624
11625 Swap two rectangular objects in video.
11626
11627 This filter accepts the following options:
11628
11629 @table @option
11630 @item w
11631 Set object width.
11632
11633 @item h
11634 Set object height.
11635
11636 @item x1
11637 Set 1st rect x coordinate.
11638
11639 @item y1
11640 Set 1st rect y coordinate.
11641
11642 @item x2
11643 Set 2nd rect x coordinate.
11644
11645 @item y2
11646 Set 2nd rect y coordinate.
11647
11648 All expressions are evaluated once for each frame.
11649 @end table
11650
11651 The all options are expressions containing the following constants:
11652
11653 @table @option
11654 @item w
11655 @item h
11656 The input width and height.
11657
11658 @item a
11659 same as @var{w} / @var{h}
11660
11661 @item sar
11662 input sample aspect ratio
11663
11664 @item dar
11665 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
11666
11667 @item n
11668 The number of the input frame, starting from 0.
11669
11670 @item t
11671 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
11672
11673 @item pos
11674 the position in the file of the input frame, NAN if unknown
11675 @end table
11676
11677 @section swapuv
11678 Swap U & V plane.
11679
11680 @section telecine
11681
11682 Apply telecine process to the video.
11683
11684 This filter accepts the following options:
11685
11686 @table @option
11687 @item first_field
11688 @table @samp
11689 @item top, t
11690 top field first
11691 @item bottom, b
11692 bottom field first
11693 The default value is @code{top}.
11694 @end table
11695
11696 @item pattern
11697 A string of numbers representing the pulldown pattern you wish to apply.
11698 The default value is @code{23}.
11699 @end table
11700
11701 @example
11702 Some typical patterns:
11703
11704 NTSC output (30i):
11705 27.5p: 32222
11706 24p: 23 (classic)
11707 24p: 2332 (preferred)
11708 20p: 33
11709 18p: 334
11710 16p: 3444
11711
11712 PAL output (25i):
11713 27.5p: 12222
11714 24p: 222222222223 ("Euro pulldown")
11715 16.67p: 33
11716 16p: 33333334
11717 @end example
11718
11719 @section thumbnail
11720 Select the most representative frame in a given sequence of consecutive frames.
11721
11722 The filter accepts the following options:
11723
11724 @table @option
11725 @item n
11726 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
11727 will pick one of them, and then handle the next batch of @var{n} frames until
11728 the end. Default is @code{100}.
11729 @end table
11730
11731 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
11732 value will result in a higher memory usage, so a high value is not recommended.
11733
11734 @subsection Examples
11735
11736 @itemize
11737 @item
11738 Extract one picture each 50 frames:
11739 @example
11740 thumbnail=50
11741 @end example
11742
11743 @item
11744 Complete example of a thumbnail creation with @command{ffmpeg}:
11745 @example
11746 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
11747 @end example
11748 @end itemize
11749
11750 @section tile
11751
11752 Tile several successive frames together.
11753
11754 The filter accepts the following options:
11755
11756 @table @option
11757
11758 @item layout
11759 Set the grid size (i.e. the number of lines and columns). For the syntax of
11760 this option, check the
11761 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11762
11763 @item nb_frames
11764 Set the maximum number of frames to render in the given area. It must be less
11765 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
11766 the area will be used.
11767
11768 @item margin
11769 Set the outer border margin in pixels.
11770
11771 @item padding
11772 Set the inner border thickness (i.e. the number of pixels between frames). For
11773 more advanced padding options (such as having different values for the edges),
11774 refer to the pad video filter.
11775
11776 @item color
11777 Specify the color of the unused area. For the syntax of this option, check the
11778 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
11779 is "black".
11780 @end table
11781
11782 @subsection Examples
11783
11784 @itemize
11785 @item
11786 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
11787 @example
11788 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
11789 @end example
11790 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
11791 duplicating each output frame to accommodate the originally detected frame
11792 rate.
11793
11794 @item
11795 Display @code{5} pictures in an area of @code{3x2} frames,
11796 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
11797 mixed flat and named options:
11798 @example
11799 tile=3x2:nb_frames=5:padding=7:margin=2
11800 @end example
11801 @end itemize
11802
11803 @section tinterlace
11804
11805 Perform various types of temporal field interlacing.
11806
11807 Frames are counted starting from 1, so the first input frame is
11808 considered odd.
11809
11810 The filter accepts the following options:
11811
11812 @table @option
11813
11814 @item mode
11815 Specify the mode of the interlacing. This option can also be specified
11816 as a value alone. See below for a list of values for this option.
11817
11818 Available values are:
11819
11820 @table @samp
11821 @item merge, 0
11822 Move odd frames into the upper field, even into the lower field,
11823 generating a double height frame at half frame rate.
11824 @example
11825  ------> time
11826 Input:
11827 Frame 1         Frame 2         Frame 3         Frame 4
11828
11829 11111           22222           33333           44444
11830 11111           22222           33333           44444
11831 11111           22222           33333           44444
11832 11111           22222           33333           44444
11833
11834 Output:
11835 11111                           33333
11836 22222                           44444
11837 11111                           33333
11838 22222                           44444
11839 11111                           33333
11840 22222                           44444
11841 11111                           33333
11842 22222                           44444
11843 @end example
11844
11845 @item drop_odd, 1
11846 Only output even frames, odd frames are dropped, generating a frame with
11847 unchanged height at half frame rate.
11848
11849 @example
11850  ------> time
11851 Input:
11852 Frame 1         Frame 2         Frame 3         Frame 4
11853
11854 11111           22222           33333           44444
11855 11111           22222           33333           44444
11856 11111           22222           33333           44444
11857 11111           22222           33333           44444
11858
11859 Output:
11860                 22222                           44444
11861                 22222                           44444
11862                 22222                           44444
11863                 22222                           44444
11864 @end example
11865
11866 @item drop_even, 2
11867 Only output odd frames, even frames are dropped, generating a frame with
11868 unchanged height at half frame rate.
11869
11870 @example
11871  ------> time
11872 Input:
11873 Frame 1         Frame 2         Frame 3         Frame 4
11874
11875 11111           22222           33333           44444
11876 11111           22222           33333           44444
11877 11111           22222           33333           44444
11878 11111           22222           33333           44444
11879
11880 Output:
11881 11111                           33333
11882 11111                           33333
11883 11111                           33333
11884 11111                           33333
11885 @end example
11886
11887 @item pad, 3
11888 Expand each frame to full height, but pad alternate lines with black,
11889 generating a frame with double height at the same input frame rate.
11890
11891 @example
11892  ------> time
11893 Input:
11894 Frame 1         Frame 2         Frame 3         Frame 4
11895
11896 11111           22222           33333           44444
11897 11111           22222           33333           44444
11898 11111           22222           33333           44444
11899 11111           22222           33333           44444
11900
11901 Output:
11902 11111           .....           33333           .....
11903 .....           22222           .....           44444
11904 11111           .....           33333           .....
11905 .....           22222           .....           44444
11906 11111           .....           33333           .....
11907 .....           22222           .....           44444
11908 11111           .....           33333           .....
11909 .....           22222           .....           44444
11910 @end example
11911
11912
11913 @item interleave_top, 4
11914 Interleave the upper field from odd frames with the lower field from
11915 even frames, generating a frame with unchanged height at half frame rate.
11916
11917 @example
11918  ------> time
11919 Input:
11920 Frame 1         Frame 2         Frame 3         Frame 4
11921
11922 11111<-         22222           33333<-         44444
11923 11111           22222<-         33333           44444<-
11924 11111<-         22222           33333<-         44444
11925 11111           22222<-         33333           44444<-
11926
11927 Output:
11928 11111                           33333
11929 22222                           44444
11930 11111                           33333
11931 22222                           44444
11932 @end example
11933
11934
11935 @item interleave_bottom, 5
11936 Interleave the lower field from odd frames with the upper field from
11937 even frames, generating a frame with unchanged height at half frame rate.
11938
11939 @example
11940  ------> time
11941 Input:
11942 Frame 1         Frame 2         Frame 3         Frame 4
11943
11944 11111           22222<-         33333           44444<-
11945 11111<-         22222           33333<-         44444
11946 11111           22222<-         33333           44444<-
11947 11111<-         22222           33333<-         44444
11948
11949 Output:
11950 22222                           44444
11951 11111                           33333
11952 22222                           44444
11953 11111                           33333
11954 @end example
11955
11956
11957 @item interlacex2, 6
11958 Double frame rate with unchanged height. Frames are inserted each
11959 containing the second temporal field from the previous input frame and
11960 the first temporal field from the next input frame. This mode relies on
11961 the top_field_first flag. Useful for interlaced video displays with no
11962 field synchronisation.
11963
11964 @example
11965  ------> time
11966 Input:
11967 Frame 1         Frame 2         Frame 3         Frame 4
11968
11969 11111           22222           33333           44444
11970  11111           22222           33333           44444
11971 11111           22222           33333           44444
11972  11111           22222           33333           44444
11973
11974 Output:
11975 11111   22222   22222   33333   33333   44444   44444
11976  11111   11111   22222   22222   33333   33333   44444
11977 11111   22222   22222   33333   33333   44444   44444
11978  11111   11111   22222   22222   33333   33333   44444
11979 @end example
11980
11981 @item mergex2, 7
11982 Move odd frames into the upper field, even into the lower field,
11983 generating a double height frame at same frame rate.
11984 @example
11985  ------> time
11986 Input:
11987 Frame 1         Frame 2         Frame 3         Frame 4
11988
11989 11111           22222           33333           44444
11990 11111           22222           33333           44444
11991 11111           22222           33333           44444
11992 11111           22222           33333           44444
11993
11994 Output:
11995 11111           33333           33333           55555
11996 22222           22222           44444           44444
11997 11111           33333           33333           55555
11998 22222           22222           44444           44444
11999 11111           33333           33333           55555
12000 22222           22222           44444           44444
12001 11111           33333           33333           55555
12002 22222           22222           44444           44444
12003 @end example
12004
12005 @end table
12006
12007 Numeric values are deprecated but are accepted for backward
12008 compatibility reasons.
12009
12010 Default mode is @code{merge}.
12011
12012 @item flags
12013 Specify flags influencing the filter process.
12014
12015 Available value for @var{flags} is:
12016
12017 @table @option
12018 @item low_pass_filter, vlfp
12019 Enable vertical low-pass filtering in the filter.
12020 Vertical low-pass filtering is required when creating an interlaced
12021 destination from a progressive source which contains high-frequency
12022 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12023 patterning.
12024
12025 Vertical low-pass filtering can only be enabled for @option{mode}
12026 @var{interleave_top} and @var{interleave_bottom}.
12027
12028 @end table
12029 @end table
12030
12031 @section transpose
12032
12033 Transpose rows with columns in the input video and optionally flip it.
12034
12035 It accepts the following parameters:
12036
12037 @table @option
12038
12039 @item dir
12040 Specify the transposition direction.
12041
12042 Can assume the following values:
12043 @table @samp
12044 @item 0, 4, cclock_flip
12045 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12046 @example
12047 L.R     L.l
12048 . . ->  . .
12049 l.r     R.r
12050 @end example
12051
12052 @item 1, 5, clock
12053 Rotate by 90 degrees clockwise, that is:
12054 @example
12055 L.R     l.L
12056 . . ->  . .
12057 l.r     r.R
12058 @end example
12059
12060 @item 2, 6, cclock
12061 Rotate by 90 degrees counterclockwise, that is:
12062 @example
12063 L.R     R.r
12064 . . ->  . .
12065 l.r     L.l
12066 @end example
12067
12068 @item 3, 7, clock_flip
12069 Rotate by 90 degrees clockwise and vertically flip, that is:
12070 @example
12071 L.R     r.R
12072 . . ->  . .
12073 l.r     l.L
12074 @end example
12075 @end table
12076
12077 For values between 4-7, the transposition is only done if the input
12078 video geometry is portrait and not landscape. These values are
12079 deprecated, the @code{passthrough} option should be used instead.
12080
12081 Numerical values are deprecated, and should be dropped in favor of
12082 symbolic constants.
12083
12084 @item passthrough
12085 Do not apply the transposition if the input geometry matches the one
12086 specified by the specified value. It accepts the following values:
12087 @table @samp
12088 @item none
12089 Always apply transposition.
12090 @item portrait
12091 Preserve portrait geometry (when @var{height} >= @var{width}).
12092 @item landscape
12093 Preserve landscape geometry (when @var{width} >= @var{height}).
12094 @end table
12095
12096 Default value is @code{none}.
12097 @end table
12098
12099 For example to rotate by 90 degrees clockwise and preserve portrait
12100 layout:
12101 @example
12102 transpose=dir=1:passthrough=portrait
12103 @end example
12104
12105 The command above can also be specified as:
12106 @example
12107 transpose=1:portrait
12108 @end example
12109
12110 @section trim
12111 Trim the input so that the output contains one continuous subpart of the input.
12112
12113 It accepts the following parameters:
12114 @table @option
12115 @item start
12116 Specify the time of the start of the kept section, i.e. the frame with the
12117 timestamp @var{start} will be the first frame in the output.
12118
12119 @item end
12120 Specify the time of the first frame that will be dropped, i.e. the frame
12121 immediately preceding the one with the timestamp @var{end} will be the last
12122 frame in the output.
12123
12124 @item start_pts
12125 This is the same as @var{start}, except this option sets the start timestamp
12126 in timebase units instead of seconds.
12127
12128 @item end_pts
12129 This is the same as @var{end}, except this option sets the end timestamp
12130 in timebase units instead of seconds.
12131
12132 @item duration
12133 The maximum duration of the output in seconds.
12134
12135 @item start_frame
12136 The number of the first frame that should be passed to the output.
12137
12138 @item end_frame
12139 The number of the first frame that should be dropped.
12140 @end table
12141
12142 @option{start}, @option{end}, and @option{duration} are expressed as time
12143 duration specifications; see
12144 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12145 for the accepted syntax.
12146
12147 Note that the first two sets of the start/end options and the @option{duration}
12148 option look at the frame timestamp, while the _frame variants simply count the
12149 frames that pass through the filter. Also note that this filter does not modify
12150 the timestamps. If you wish for the output timestamps to start at zero, insert a
12151 setpts filter after the trim filter.
12152
12153 If multiple start or end options are set, this filter tries to be greedy and
12154 keep all the frames that match at least one of the specified constraints. To keep
12155 only the part that matches all the constraints at once, chain multiple trim
12156 filters.
12157
12158 The defaults are such that all the input is kept. So it is possible to set e.g.
12159 just the end values to keep everything before the specified time.
12160
12161 Examples:
12162 @itemize
12163 @item
12164 Drop everything except the second minute of input:
12165 @example
12166 ffmpeg -i INPUT -vf trim=60:120
12167 @end example
12168
12169 @item
12170 Keep only the first second:
12171 @example
12172 ffmpeg -i INPUT -vf trim=duration=1
12173 @end example
12174
12175 @end itemize
12176
12177
12178 @anchor{unsharp}
12179 @section unsharp
12180
12181 Sharpen or blur the input video.
12182
12183 It accepts the following parameters:
12184
12185 @table @option
12186 @item luma_msize_x, lx
12187 Set the luma matrix horizontal size. It must be an odd integer between
12188 3 and 63. The default value is 5.
12189
12190 @item luma_msize_y, ly
12191 Set the luma matrix vertical size. It must be an odd integer between 3
12192 and 63. The default value is 5.
12193
12194 @item luma_amount, la
12195 Set the luma effect strength. It must be a floating point number, reasonable
12196 values lay between -1.5 and 1.5.
12197
12198 Negative values will blur the input video, while positive values will
12199 sharpen it, a value of zero will disable the effect.
12200
12201 Default value is 1.0.
12202
12203 @item chroma_msize_x, cx
12204 Set the chroma matrix horizontal size. It must be an odd integer
12205 between 3 and 63. The default value is 5.
12206
12207 @item chroma_msize_y, cy
12208 Set the chroma matrix vertical size. It must be an odd integer
12209 between 3 and 63. The default value is 5.
12210
12211 @item chroma_amount, ca
12212 Set the chroma effect strength. It must be a floating point number, reasonable
12213 values lay between -1.5 and 1.5.
12214
12215 Negative values will blur the input video, while positive values will
12216 sharpen it, a value of zero will disable the effect.
12217
12218 Default value is 0.0.
12219
12220 @item opencl
12221 If set to 1, specify using OpenCL capabilities, only available if
12222 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
12223
12224 @end table
12225
12226 All parameters are optional and default to the equivalent of the
12227 string '5:5:1.0:5:5:0.0'.
12228
12229 @subsection Examples
12230
12231 @itemize
12232 @item
12233 Apply strong luma sharpen effect:
12234 @example
12235 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
12236 @end example
12237
12238 @item
12239 Apply a strong blur of both luma and chroma parameters:
12240 @example
12241 unsharp=7:7:-2:7:7:-2
12242 @end example
12243 @end itemize
12244
12245 @section uspp
12246
12247 Apply ultra slow/simple postprocessing filter that compresses and decompresses
12248 the image at several (or - in the case of @option{quality} level @code{8} - all)
12249 shifts and average the results.
12250
12251 The way this differs from the behavior of spp is that uspp actually encodes &
12252 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
12253 DCT similar to MJPEG.
12254
12255 The filter accepts the following options:
12256
12257 @table @option
12258 @item quality
12259 Set quality. This option defines the number of levels for averaging. It accepts
12260 an integer in the range 0-8. If set to @code{0}, the filter will have no
12261 effect. A value of @code{8} means the higher quality. For each increment of
12262 that value the speed drops by a factor of approximately 2.  Default value is
12263 @code{3}.
12264
12265 @item qp
12266 Force a constant quantization parameter. If not set, the filter will use the QP
12267 from the video stream (if available).
12268 @end table
12269
12270 @section vectorscope
12271
12272 Display 2 color component values in the two dimensional graph (which is called
12273 a vectorscope).
12274
12275 This filter accepts the following options:
12276
12277 @table @option
12278 @item mode, m
12279 Set vectorscope mode.
12280
12281 It accepts the following values:
12282 @table @samp
12283 @item gray
12284 Gray values are displayed on graph, higher brightness means more pixels have
12285 same component color value on location in graph. This is the default mode.
12286
12287 @item color
12288 Gray values are displayed on graph. Surrounding pixels values which are not
12289 present in video frame are drawn in gradient of 2 color components which are
12290 set by option @code{x} and @code{y}.
12291
12292 @item color2
12293 Actual color components values present in video frame are displayed on graph.
12294
12295 @item color3
12296 Similar as color2 but higher frequency of same values @code{x} and @code{y}
12297 on graph increases value of another color component, which is luminance by
12298 default values of @code{x} and @code{y}.
12299
12300 @item color4
12301 Actual colors present in video frame are displayed on graph. If two different
12302 colors map to same position on graph then color with higher value of component
12303 not present in graph is picked.
12304 @end table
12305
12306 @item x
12307 Set which color component will be represented on X-axis. Default is @code{1}.
12308
12309 @item y
12310 Set which color component will be represented on Y-axis. Default is @code{2}.
12311
12312 @item intensity, i
12313 Set intensity, used by modes: gray, color and color3 for increasing brightness
12314 of color component which represents frequency of (X, Y) location in graph.
12315
12316 @item envelope, e
12317 @table @samp
12318 @item none
12319 No envelope, this is default.
12320
12321 @item instant
12322 Instant envelope, even darkest single pixel will be clearly highlighted.
12323
12324 @item peak
12325 Hold maximum and minimum values presented in graph over time. This way you
12326 can still spot out of range values without constantly looking at vectorscope.
12327
12328 @item peak+instant
12329 Peak and instant envelope combined together.
12330 @end table
12331 @end table
12332
12333 @anchor{vidstabdetect}
12334 @section vidstabdetect
12335
12336 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
12337 @ref{vidstabtransform} for pass 2.
12338
12339 This filter generates a file with relative translation and rotation
12340 transform information about subsequent frames, which is then used by
12341 the @ref{vidstabtransform} filter.
12342
12343 To enable compilation of this filter you need to configure FFmpeg with
12344 @code{--enable-libvidstab}.
12345
12346 This filter accepts the following options:
12347
12348 @table @option
12349 @item result
12350 Set the path to the file used to write the transforms information.
12351 Default value is @file{transforms.trf}.
12352
12353 @item shakiness
12354 Set how shaky the video is and how quick the camera is. It accepts an
12355 integer in the range 1-10, a value of 1 means little shakiness, a
12356 value of 10 means strong shakiness. Default value is 5.
12357
12358 @item accuracy
12359 Set the accuracy of the detection process. It must be a value in the
12360 range 1-15. A value of 1 means low accuracy, a value of 15 means high
12361 accuracy. Default value is 15.
12362
12363 @item stepsize
12364 Set stepsize of the search process. The region around minimum is
12365 scanned with 1 pixel resolution. Default value is 6.
12366
12367 @item mincontrast
12368 Set minimum contrast. Below this value a local measurement field is
12369 discarded. Must be a floating point value in the range 0-1. Default
12370 value is 0.3.
12371
12372 @item tripod
12373 Set reference frame number for tripod mode.
12374
12375 If enabled, the motion of the frames is compared to a reference frame
12376 in the filtered stream, identified by the specified number. The idea
12377 is to compensate all movements in a more-or-less static scene and keep
12378 the camera view absolutely still.
12379
12380 If set to 0, it is disabled. The frames are counted starting from 1.
12381
12382 @item show
12383 Show fields and transforms in the resulting frames. It accepts an
12384 integer in the range 0-2. Default value is 0, which disables any
12385 visualization.
12386 @end table
12387
12388 @subsection Examples
12389
12390 @itemize
12391 @item
12392 Use default values:
12393 @example
12394 vidstabdetect
12395 @end example
12396
12397 @item
12398 Analyze strongly shaky movie and put the results in file
12399 @file{mytransforms.trf}:
12400 @example
12401 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
12402 @end example
12403
12404 @item
12405 Visualize the result of internal transformations in the resulting
12406 video:
12407 @example
12408 vidstabdetect=show=1
12409 @end example
12410
12411 @item
12412 Analyze a video with medium shakiness using @command{ffmpeg}:
12413 @example
12414 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
12415 @end example
12416 @end itemize
12417
12418 @anchor{vidstabtransform}
12419 @section vidstabtransform
12420
12421 Video stabilization/deshaking: pass 2 of 2,
12422 see @ref{vidstabdetect} for pass 1.
12423
12424 Read a file with transform information for each frame and
12425 apply/compensate them. Together with the @ref{vidstabdetect}
12426 filter this can be used to deshake videos. See also
12427 @url{http://public.hronopik.de/vid.stab}. It is important to also use
12428 the @ref{unsharp} filter, see below.
12429
12430 To enable compilation of this filter you need to configure FFmpeg with
12431 @code{--enable-libvidstab}.
12432
12433 @subsection Options
12434
12435 @table @option
12436 @item input
12437 Set path to the file used to read the transforms. Default value is
12438 @file{transforms.trf}.
12439
12440 @item smoothing
12441 Set the number of frames (value*2 + 1) used for lowpass filtering the
12442 camera movements. Default value is 10.
12443
12444 For example a number of 10 means that 21 frames are used (10 in the
12445 past and 10 in the future) to smoothen the motion in the video. A
12446 larger value leads to a smoother video, but limits the acceleration of
12447 the camera (pan/tilt movements). 0 is a special case where a static
12448 camera is simulated.
12449
12450 @item optalgo
12451 Set the camera path optimization algorithm.
12452
12453 Accepted values are:
12454 @table @samp
12455 @item gauss
12456 gaussian kernel low-pass filter on camera motion (default)
12457 @item avg
12458 averaging on transformations
12459 @end table
12460
12461 @item maxshift
12462 Set maximal number of pixels to translate frames. Default value is -1,
12463 meaning no limit.
12464
12465 @item maxangle
12466 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
12467 value is -1, meaning no limit.
12468
12469 @item crop
12470 Specify how to deal with borders that may be visible due to movement
12471 compensation.
12472
12473 Available values are:
12474 @table @samp
12475 @item keep
12476 keep image information from previous frame (default)
12477 @item black
12478 fill the border black
12479 @end table
12480
12481 @item invert
12482 Invert transforms if set to 1. Default value is 0.
12483
12484 @item relative
12485 Consider transforms as relative to previous frame if set to 1,
12486 absolute if set to 0. Default value is 0.
12487
12488 @item zoom
12489 Set percentage to zoom. A positive value will result in a zoom-in
12490 effect, a negative value in a zoom-out effect. Default value is 0 (no
12491 zoom).
12492
12493 @item optzoom
12494 Set optimal zooming to avoid borders.
12495
12496 Accepted values are:
12497 @table @samp
12498 @item 0
12499 disabled
12500 @item 1
12501 optimal static zoom value is determined (only very strong movements
12502 will lead to visible borders) (default)
12503 @item 2
12504 optimal adaptive zoom value is determined (no borders will be
12505 visible), see @option{zoomspeed}
12506 @end table
12507
12508 Note that the value given at zoom is added to the one calculated here.
12509
12510 @item zoomspeed
12511 Set percent to zoom maximally each frame (enabled when
12512 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
12513 0.25.
12514
12515 @item interpol
12516 Specify type of interpolation.
12517
12518 Available values are:
12519 @table @samp
12520 @item no
12521 no interpolation
12522 @item linear
12523 linear only horizontal
12524 @item bilinear
12525 linear in both directions (default)
12526 @item bicubic
12527 cubic in both directions (slow)
12528 @end table
12529
12530 @item tripod
12531 Enable virtual tripod mode if set to 1, which is equivalent to
12532 @code{relative=0:smoothing=0}. Default value is 0.
12533
12534 Use also @code{tripod} option of @ref{vidstabdetect}.
12535
12536 @item debug
12537 Increase log verbosity if set to 1. Also the detected global motions
12538 are written to the temporary file @file{global_motions.trf}. Default
12539 value is 0.
12540 @end table
12541
12542 @subsection Examples
12543
12544 @itemize
12545 @item
12546 Use @command{ffmpeg} for a typical stabilization with default values:
12547 @example
12548 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
12549 @end example
12550
12551 Note the use of the @ref{unsharp} filter which is always recommended.
12552
12553 @item
12554 Zoom in a bit more and load transform data from a given file:
12555 @example
12556 vidstabtransform=zoom=5:input="mytransforms.trf"
12557 @end example
12558
12559 @item
12560 Smoothen the video even more:
12561 @example
12562 vidstabtransform=smoothing=30
12563 @end example
12564 @end itemize
12565
12566 @section vflip
12567
12568 Flip the input video vertically.
12569
12570 For example, to vertically flip a video with @command{ffmpeg}:
12571 @example
12572 ffmpeg -i in.avi -vf "vflip" out.avi
12573 @end example
12574
12575 @anchor{vignette}
12576 @section vignette
12577
12578 Make or reverse a natural vignetting effect.
12579
12580 The filter accepts the following options:
12581
12582 @table @option
12583 @item angle, a
12584 Set lens angle expression as a number of radians.
12585
12586 The value is clipped in the @code{[0,PI/2]} range.
12587
12588 Default value: @code{"PI/5"}
12589
12590 @item x0
12591 @item y0
12592 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
12593 by default.
12594
12595 @item mode
12596 Set forward/backward mode.
12597
12598 Available modes are:
12599 @table @samp
12600 @item forward
12601 The larger the distance from the central point, the darker the image becomes.
12602
12603 @item backward
12604 The larger the distance from the central point, the brighter the image becomes.
12605 This can be used to reverse a vignette effect, though there is no automatic
12606 detection to extract the lens @option{angle} and other settings (yet). It can
12607 also be used to create a burning effect.
12608 @end table
12609
12610 Default value is @samp{forward}.
12611
12612 @item eval
12613 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
12614
12615 It accepts the following values:
12616 @table @samp
12617 @item init
12618 Evaluate expressions only once during the filter initialization.
12619
12620 @item frame
12621 Evaluate expressions for each incoming frame. This is way slower than the
12622 @samp{init} mode since it requires all the scalers to be re-computed, but it
12623 allows advanced dynamic expressions.
12624 @end table
12625
12626 Default value is @samp{init}.
12627
12628 @item dither
12629 Set dithering to reduce the circular banding effects. Default is @code{1}
12630 (enabled).
12631
12632 @item aspect
12633 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
12634 Setting this value to the SAR of the input will make a rectangular vignetting
12635 following the dimensions of the video.
12636
12637 Default is @code{1/1}.
12638 @end table
12639
12640 @subsection Expressions
12641
12642 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
12643 following parameters.
12644
12645 @table @option
12646 @item w
12647 @item h
12648 input width and height
12649
12650 @item n
12651 the number of input frame, starting from 0
12652
12653 @item pts
12654 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
12655 @var{TB} units, NAN if undefined
12656
12657 @item r
12658 frame rate of the input video, NAN if the input frame rate is unknown
12659
12660 @item t
12661 the PTS (Presentation TimeStamp) of the filtered video frame,
12662 expressed in seconds, NAN if undefined
12663
12664 @item tb
12665 time base of the input video
12666 @end table
12667
12668
12669 @subsection Examples
12670
12671 @itemize
12672 @item
12673 Apply simple strong vignetting effect:
12674 @example
12675 vignette=PI/4
12676 @end example
12677
12678 @item
12679 Make a flickering vignetting:
12680 @example
12681 vignette='PI/4+random(1)*PI/50':eval=frame
12682 @end example
12683
12684 @end itemize
12685
12686 @section vstack
12687 Stack input videos vertically.
12688
12689 All streams must be of same pixel format and of same width.
12690
12691 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12692 to create same output.
12693
12694 The filter accept the following option:
12695
12696 @table @option
12697 @item inputs
12698 Set number of input streams. Default is 2.
12699
12700 @item shortest
12701 If set to 1, force the output to terminate when the shortest input
12702 terminates. Default value is 0.
12703 @end table
12704
12705 @section w3fdif
12706
12707 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
12708 Deinterlacing Filter").
12709
12710 Based on the process described by Martin Weston for BBC R&D, and
12711 implemented based on the de-interlace algorithm written by Jim
12712 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
12713 uses filter coefficients calculated by BBC R&D.
12714
12715 There are two sets of filter coefficients, so called "simple":
12716 and "complex". Which set of filter coefficients is used can
12717 be set by passing an optional parameter:
12718
12719 @table @option
12720 @item filter
12721 Set the interlacing filter coefficients. Accepts one of the following values:
12722
12723 @table @samp
12724 @item simple
12725 Simple filter coefficient set.
12726 @item complex
12727 More-complex filter coefficient set.
12728 @end table
12729 Default value is @samp{complex}.
12730
12731 @item deint
12732 Specify which frames to deinterlace. Accept one of the following values:
12733
12734 @table @samp
12735 @item all
12736 Deinterlace all frames,
12737 @item interlaced
12738 Only deinterlace frames marked as interlaced.
12739 @end table
12740
12741 Default value is @samp{all}.
12742 @end table
12743
12744 @section waveform
12745 Video waveform monitor.
12746
12747 The waveform monitor plots color component intensity. By default luminance
12748 only. Each column of the waveform corresponds to a column of pixels in the
12749 source video.
12750
12751 It accepts the following options:
12752
12753 @table @option
12754 @item mode, m
12755 Can be either @code{row}, or @code{column}. Default is @code{column}.
12756 In row mode, the graph on the left side represents color component value 0 and
12757 the right side represents value = 255. In column mode, the top side represents
12758 color component value = 0 and bottom side represents value = 255.
12759
12760 @item intensity, i
12761 Set intensity. Smaller values are useful to find out how many values of the same
12762 luminance are distributed across input rows/columns.
12763 Default value is @code{0.04}. Allowed range is [0, 1].
12764
12765 @item mirror, r
12766 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
12767 In mirrored mode, higher values will be represented on the left
12768 side for @code{row} mode and at the top for @code{column} mode. Default is
12769 @code{1} (mirrored).
12770
12771 @item display, d
12772 Set display mode.
12773 It accepts the following values:
12774 @table @samp
12775 @item overlay
12776 Presents information identical to that in the @code{parade}, except
12777 that the graphs representing color components are superimposed directly
12778 over one another.
12779
12780 This display mode makes it easier to spot relative differences or similarities
12781 in overlapping areas of the color components that are supposed to be identical,
12782 such as neutral whites, grays, or blacks.
12783
12784 @item parade
12785 Display separate graph for the color components side by side in
12786 @code{row} mode or one below the other in @code{column} mode.
12787
12788 Using this display mode makes it easy to spot color casts in the highlights
12789 and shadows of an image, by comparing the contours of the top and the bottom
12790 graphs of each waveform. Since whites, grays, and blacks are characterized
12791 by exactly equal amounts of red, green, and blue, neutral areas of the picture
12792 should display three waveforms of roughly equal width/height. If not, the
12793 correction is easy to perform by making level adjustments the three waveforms.
12794 @end table
12795 Default is @code{parade}.
12796
12797 @item components, c
12798 Set which color components to display. Default is 1, which means only luminance
12799 or red color component if input is in RGB colorspace. If is set for example to
12800 7 it will display all 3 (if) available color components.
12801
12802 @item envelope, e
12803 @table @samp
12804 @item none
12805 No envelope, this is default.
12806
12807 @item instant
12808 Instant envelope, minimum and maximum values presented in graph will be easily
12809 visible even with small @code{step} value.
12810
12811 @item peak
12812 Hold minimum and maximum values presented in graph across time. This way you
12813 can still spot out of range values without constantly looking at waveforms.
12814
12815 @item peak+instant
12816 Peak and instant envelope combined together.
12817 @end table
12818
12819 @item filter, f
12820 @table @samp
12821 @item lowpass
12822 No filtering, this is default.
12823
12824 @item flat
12825 Luma and chroma combined together.
12826
12827 @item aflat
12828 Similar as above, but shows difference between blue and red chroma.
12829
12830 @item chroma
12831 Displays only chroma.
12832
12833 @item achroma
12834 Similar as above, but shows difference between blue and red chroma.
12835
12836 @item color
12837 Displays actual color value on waveform.
12838 @end table
12839 @end table
12840
12841 @section xbr
12842 Apply the xBR high-quality magnification filter which is designed for pixel
12843 art. It follows a set of edge-detection rules, see
12844 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
12845
12846 It accepts the following option:
12847
12848 @table @option
12849 @item n
12850 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
12851 @code{3xBR} and @code{4} for @code{4xBR}.
12852 Default is @code{3}.
12853 @end table
12854
12855 @anchor{yadif}
12856 @section yadif
12857
12858 Deinterlace the input video ("yadif" means "yet another deinterlacing
12859 filter").
12860
12861 It accepts the following parameters:
12862
12863
12864 @table @option
12865
12866 @item mode
12867 The interlacing mode to adopt. It accepts one of the following values:
12868
12869 @table @option
12870 @item 0, send_frame
12871 Output one frame for each frame.
12872 @item 1, send_field
12873 Output one frame for each field.
12874 @item 2, send_frame_nospatial
12875 Like @code{send_frame}, but it skips the spatial interlacing check.
12876 @item 3, send_field_nospatial
12877 Like @code{send_field}, but it skips the spatial interlacing check.
12878 @end table
12879
12880 The default value is @code{send_frame}.
12881
12882 @item parity
12883 The picture field parity assumed for the input interlaced video. It accepts one
12884 of the following values:
12885
12886 @table @option
12887 @item 0, tff
12888 Assume the top field is first.
12889 @item 1, bff
12890 Assume the bottom field is first.
12891 @item -1, auto
12892 Enable automatic detection of field parity.
12893 @end table
12894
12895 The default value is @code{auto}.
12896 If the interlacing is unknown or the decoder does not export this information,
12897 top field first will be assumed.
12898
12899 @item deint
12900 Specify which frames to deinterlace. Accept one of the following
12901 values:
12902
12903 @table @option
12904 @item 0, all
12905 Deinterlace all frames.
12906 @item 1, interlaced
12907 Only deinterlace frames marked as interlaced.
12908 @end table
12909
12910 The default value is @code{all}.
12911 @end table
12912
12913 @section zoompan
12914
12915 Apply Zoom & Pan effect.
12916
12917 This filter accepts the following options:
12918
12919 @table @option
12920 @item zoom, z
12921 Set the zoom expression. Default is 1.
12922
12923 @item x
12924 @item y
12925 Set the x and y expression. Default is 0.
12926
12927 @item d
12928 Set the duration expression in number of frames.
12929 This sets for how many number of frames effect will last for
12930 single input image.
12931
12932 @item s
12933 Set the output image size, default is 'hd720'.
12934
12935 @item fps
12936 Set the output frame rate, default is '25'.
12937 @end table
12938
12939 Each expression can contain the following constants:
12940
12941 @table @option
12942 @item in_w, iw
12943 Input width.
12944
12945 @item in_h, ih
12946 Input height.
12947
12948 @item out_w, ow
12949 Output width.
12950
12951 @item out_h, oh
12952 Output height.
12953
12954 @item in
12955 Input frame count.
12956
12957 @item on
12958 Output frame count.
12959
12960 @item x
12961 @item y
12962 Last calculated 'x' and 'y' position from 'x' and 'y' expression
12963 for current input frame.
12964
12965 @item px
12966 @item py
12967 'x' and 'y' of last output frame of previous input frame or 0 when there was
12968 not yet such frame (first input frame).
12969
12970 @item zoom
12971 Last calculated zoom from 'z' expression for current input frame.
12972
12973 @item pzoom
12974 Last calculated zoom of last output frame of previous input frame.
12975
12976 @item duration
12977 Number of output frames for current input frame. Calculated from 'd' expression
12978 for each input frame.
12979
12980 @item pduration
12981 number of output frames created for previous input frame
12982
12983 @item a
12984 Rational number: input width / input height
12985
12986 @item sar
12987 sample aspect ratio
12988
12989 @item dar
12990 display aspect ratio
12991
12992 @end table
12993
12994 @subsection Examples
12995
12996 @itemize
12997 @item
12998 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
12999 @example
13000 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
13001 @end example
13002
13003 @item
13004 Zoom-in up to 1.5 and pan always at center of picture:
13005 @example
13006 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13007 @end example
13008 @end itemize
13009
13010 @section zscale
13011 Scale (resize) the input video, using the z.lib library:
13012 https://github.com/sekrit-twc/zimg.
13013
13014 The zscale filter forces the output display aspect ratio to be the same
13015 as the input, by changing the output sample aspect ratio.
13016
13017 If the input image format is different from the format requested by
13018 the next filter, the zscale filter will convert the input to the
13019 requested format.
13020
13021 @subsection Options
13022 The filter accepts the following options.
13023
13024 @table @option
13025 @item width, w
13026 @item height, h
13027 Set the output video dimension expression. Default value is the input
13028 dimension.
13029
13030 If the @var{width} or @var{w} is 0, the input width is used for the output.
13031 If the @var{height} or @var{h} is 0, the input height is used for the output.
13032
13033 If one of the values is -1, the zscale filter will use a value that
13034 maintains the aspect ratio of the input image, calculated from the
13035 other specified dimension. If both of them are -1, the input size is
13036 used
13037
13038 If one of the values is -n with n > 1, the zscale filter will also use a value
13039 that maintains the aspect ratio of the input image, calculated from the other
13040 specified dimension. After that it will, however, make sure that the calculated
13041 dimension is divisible by n and adjust the value if necessary.
13042
13043 See below for the list of accepted constants for use in the dimension
13044 expression.
13045
13046 @item size, s
13047 Set the video size. For the syntax of this option, check the
13048 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13049
13050 @item dither, d
13051 Set the dither type.
13052
13053 Possible values are:
13054 @table @var
13055 @item none
13056 @item ordered
13057 @item random
13058 @item error_diffusion
13059 @end table
13060
13061 Default is none.
13062
13063 @item filter, f
13064 Set the resize filter type.
13065
13066 Possible values are:
13067 @table @var
13068 @item point
13069 @item bilinear
13070 @item bicubic
13071 @item spline16
13072 @item spline36
13073 @item lanczos
13074 @end table
13075
13076 Default is bilinear.
13077
13078 @item range, r
13079 Set the color range.
13080
13081 Possible values are:
13082 @table @var
13083 @item input
13084 @item limited
13085 @item full
13086 @end table
13087
13088 Default is same as input.
13089
13090 @item primaries, p
13091 Set the color primaries.
13092
13093 Possible values are:
13094 @table @var
13095 @item input
13096 @item 709
13097 @item unspecified
13098 @item 170m
13099 @item 240m
13100 @item 2020
13101 @end table
13102
13103 Default is same as input.
13104
13105 @item transfer, t
13106 Set the transfer characteristics.
13107
13108 Possible values are:
13109 @table @var
13110 @item input
13111 @item 709
13112 @item unspecified
13113 @item 601
13114 @item linear
13115 @item 2020_10
13116 @item 2020_12
13117 @end table
13118
13119 Default is same as input.
13120
13121 @item matrix, m
13122 Set the colorspace matrix.
13123
13124 Possible value are:
13125 @table @var
13126 @item input
13127 @item 709
13128 @item unspecified
13129 @item 470bg
13130 @item 170m
13131 @item 2020_ncl
13132 @item 2020_cl
13133 @end table
13134
13135 Default is same as input.
13136
13137 @item rangein, rin
13138 Set the input color range.
13139
13140 Possible values are:
13141 @table @var
13142 @item input
13143 @item limited
13144 @item full
13145 @end table
13146
13147 Default is same as input.
13148
13149 @item primariesin, pin
13150 Set the input color primaries.
13151
13152 Possible values are:
13153 @table @var
13154 @item input
13155 @item 709
13156 @item unspecified
13157 @item 170m
13158 @item 240m
13159 @item 2020
13160 @end table
13161
13162 Default is same as input.
13163
13164 @item transferin, tin
13165 Set the input transfer characteristics.
13166
13167 Possible values are:
13168 @table @var
13169 @item input
13170 @item 709
13171 @item unspecified
13172 @item 601
13173 @item linear
13174 @item 2020_10
13175 @item 2020_12
13176 @end table
13177
13178 Default is same as input.
13179
13180 @item matrixin, min
13181 Set the input colorspace matrix.
13182
13183 Possible value are:
13184 @table @var
13185 @item input
13186 @item 709
13187 @item unspecified
13188 @item 470bg
13189 @item 170m
13190 @item 2020_ncl
13191 @item 2020_cl
13192 @end table
13193 @end table
13194
13195 The values of the @option{w} and @option{h} options are expressions
13196 containing the following constants:
13197
13198 @table @var
13199 @item in_w
13200 @item in_h
13201 The input width and height
13202
13203 @item iw
13204 @item ih
13205 These are the same as @var{in_w} and @var{in_h}.
13206
13207 @item out_w
13208 @item out_h
13209 The output (scaled) width and height
13210
13211 @item ow
13212 @item oh
13213 These are the same as @var{out_w} and @var{out_h}
13214
13215 @item a
13216 The same as @var{iw} / @var{ih}
13217
13218 @item sar
13219 input sample aspect ratio
13220
13221 @item dar
13222 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
13223
13224 @item hsub
13225 @item vsub
13226 horizontal and vertical input chroma subsample values. For example for the
13227 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13228
13229 @item ohsub
13230 @item ovsub
13231 horizontal and vertical output chroma subsample values. For example for the
13232 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13233 @end table
13234
13235 @table @option
13236 @end table
13237
13238 @c man end VIDEO FILTERS
13239
13240 @chapter Video Sources
13241 @c man begin VIDEO SOURCES
13242
13243 Below is a description of the currently available video sources.
13244
13245 @section buffer
13246
13247 Buffer video frames, and make them available to the filter chain.
13248
13249 This source is mainly intended for a programmatic use, in particular
13250 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
13251
13252 It accepts the following parameters:
13253
13254 @table @option
13255
13256 @item video_size
13257 Specify the size (width and height) of the buffered video frames. For the
13258 syntax of this option, check the
13259 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13260
13261 @item width
13262 The input video width.
13263
13264 @item height
13265 The input video height.
13266
13267 @item pix_fmt
13268 A string representing the pixel format of the buffered video frames.
13269 It may be a number corresponding to a pixel format, or a pixel format
13270 name.
13271
13272 @item time_base
13273 Specify the timebase assumed by the timestamps of the buffered frames.
13274
13275 @item frame_rate
13276 Specify the frame rate expected for the video stream.
13277
13278 @item pixel_aspect, sar
13279 The sample (pixel) aspect ratio of the input video.
13280
13281 @item sws_param
13282 Specify the optional parameters to be used for the scale filter which
13283 is automatically inserted when an input change is detected in the
13284 input size or format.
13285 @end table
13286
13287 For example:
13288 @example
13289 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
13290 @end example
13291
13292 will instruct the source to accept video frames with size 320x240 and
13293 with format "yuv410p", assuming 1/24 as the timestamps timebase and
13294 square pixels (1:1 sample aspect ratio).
13295 Since the pixel format with name "yuv410p" corresponds to the number 6
13296 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
13297 this example corresponds to:
13298 @example
13299 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
13300 @end example
13301
13302 Alternatively, the options can be specified as a flat string, but this
13303 syntax is deprecated:
13304
13305 @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}]
13306
13307 @section cellauto
13308
13309 Create a pattern generated by an elementary cellular automaton.
13310
13311 The initial state of the cellular automaton can be defined through the
13312 @option{filename}, and @option{pattern} options. If such options are
13313 not specified an initial state is created randomly.
13314
13315 At each new frame a new row in the video is filled with the result of
13316 the cellular automaton next generation. The behavior when the whole
13317 frame is filled is defined by the @option{scroll} option.
13318
13319 This source accepts the following options:
13320
13321 @table @option
13322 @item filename, f
13323 Read the initial cellular automaton state, i.e. the starting row, from
13324 the specified file.
13325 In the file, each non-whitespace character is considered an alive
13326 cell, a newline will terminate the row, and further characters in the
13327 file will be ignored.
13328
13329 @item pattern, p
13330 Read the initial cellular automaton state, i.e. the starting row, from
13331 the specified string.
13332
13333 Each non-whitespace character in the string is considered an alive
13334 cell, a newline will terminate the row, and further characters in the
13335 string will be ignored.
13336
13337 @item rate, r
13338 Set the video rate, that is the number of frames generated per second.
13339 Default is 25.
13340
13341 @item random_fill_ratio, ratio
13342 Set the random fill ratio for the initial cellular automaton row. It
13343 is a floating point number value ranging from 0 to 1, defaults to
13344 1/PHI.
13345
13346 This option is ignored when a file or a pattern is specified.
13347
13348 @item random_seed, seed
13349 Set the seed for filling randomly the initial row, must be an integer
13350 included between 0 and UINT32_MAX. If not specified, or if explicitly
13351 set to -1, the filter will try to use a good random seed on a best
13352 effort basis.
13353
13354 @item rule
13355 Set the cellular automaton rule, it is a number ranging from 0 to 255.
13356 Default value is 110.
13357
13358 @item size, s
13359 Set the size of the output video. For the syntax of this option, check the
13360 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13361
13362 If @option{filename} or @option{pattern} is specified, the size is set
13363 by default to the width of the specified initial state row, and the
13364 height is set to @var{width} * PHI.
13365
13366 If @option{size} is set, it must contain the width of the specified
13367 pattern string, and the specified pattern will be centered in the
13368 larger row.
13369
13370 If a filename or a pattern string is not specified, the size value
13371 defaults to "320x518" (used for a randomly generated initial state).
13372
13373 @item scroll
13374 If set to 1, scroll the output upward when all the rows in the output
13375 have been already filled. If set to 0, the new generated row will be
13376 written over the top row just after the bottom row is filled.
13377 Defaults to 1.
13378
13379 @item start_full, full
13380 If set to 1, completely fill the output with generated rows before
13381 outputting the first frame.
13382 This is the default behavior, for disabling set the value to 0.
13383
13384 @item stitch
13385 If set to 1, stitch the left and right row edges together.
13386 This is the default behavior, for disabling set the value to 0.
13387 @end table
13388
13389 @subsection Examples
13390
13391 @itemize
13392 @item
13393 Read the initial state from @file{pattern}, and specify an output of
13394 size 200x400.
13395 @example
13396 cellauto=f=pattern:s=200x400
13397 @end example
13398
13399 @item
13400 Generate a random initial row with a width of 200 cells, with a fill
13401 ratio of 2/3:
13402 @example
13403 cellauto=ratio=2/3:s=200x200
13404 @end example
13405
13406 @item
13407 Create a pattern generated by rule 18 starting by a single alive cell
13408 centered on an initial row with width 100:
13409 @example
13410 cellauto=p=@@:s=100x400:full=0:rule=18
13411 @end example
13412
13413 @item
13414 Specify a more elaborated initial pattern:
13415 @example
13416 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
13417 @end example
13418
13419 @end itemize
13420
13421 @section mandelbrot
13422
13423 Generate a Mandelbrot set fractal, and progressively zoom towards the
13424 point specified with @var{start_x} and @var{start_y}.
13425
13426 This source accepts the following options:
13427
13428 @table @option
13429
13430 @item end_pts
13431 Set the terminal pts value. Default value is 400.
13432
13433 @item end_scale
13434 Set the terminal scale value.
13435 Must be a floating point value. Default value is 0.3.
13436
13437 @item inner
13438 Set the inner coloring mode, that is the algorithm used to draw the
13439 Mandelbrot fractal internal region.
13440
13441 It shall assume one of the following values:
13442 @table @option
13443 @item black
13444 Set black mode.
13445 @item convergence
13446 Show time until convergence.
13447 @item mincol
13448 Set color based on point closest to the origin of the iterations.
13449 @item period
13450 Set period mode.
13451 @end table
13452
13453 Default value is @var{mincol}.
13454
13455 @item bailout
13456 Set the bailout value. Default value is 10.0.
13457
13458 @item maxiter
13459 Set the maximum of iterations performed by the rendering
13460 algorithm. Default value is 7189.
13461
13462 @item outer
13463 Set outer coloring mode.
13464 It shall assume one of following values:
13465 @table @option
13466 @item iteration_count
13467 Set iteration cound mode.
13468 @item normalized_iteration_count
13469 set normalized iteration count mode.
13470 @end table
13471 Default value is @var{normalized_iteration_count}.
13472
13473 @item rate, r
13474 Set frame rate, expressed as number of frames per second. Default
13475 value is "25".
13476
13477 @item size, s
13478 Set frame size. For the syntax of this option, check the "Video
13479 size" section in the ffmpeg-utils manual. Default value is "640x480".
13480
13481 @item start_scale
13482 Set the initial scale value. Default value is 3.0.
13483
13484 @item start_x
13485 Set the initial x position. Must be a floating point value between
13486 -100 and 100. Default value is -0.743643887037158704752191506114774.
13487
13488 @item start_y
13489 Set the initial y position. Must be a floating point value between
13490 -100 and 100. Default value is -0.131825904205311970493132056385139.
13491 @end table
13492
13493 @section mptestsrc
13494
13495 Generate various test patterns, as generated by the MPlayer test filter.
13496
13497 The size of the generated video is fixed, and is 256x256.
13498 This source is useful in particular for testing encoding features.
13499
13500 This source accepts the following options:
13501
13502 @table @option
13503
13504 @item rate, r
13505 Specify the frame rate of the sourced video, as the number of frames
13506 generated per second. It has to be a string in the format
13507 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
13508 number or a valid video frame rate abbreviation. The default value is
13509 "25".
13510
13511 @item duration, d
13512 Set the duration of the sourced video. See
13513 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13514 for the accepted syntax.
13515
13516 If not specified, or the expressed duration is negative, the video is
13517 supposed to be generated forever.
13518
13519 @item test, t
13520
13521 Set the number or the name of the test to perform. Supported tests are:
13522 @table @option
13523 @item dc_luma
13524 @item dc_chroma
13525 @item freq_luma
13526 @item freq_chroma
13527 @item amp_luma
13528 @item amp_chroma
13529 @item cbp
13530 @item mv
13531 @item ring1
13532 @item ring2
13533 @item all
13534
13535 @end table
13536
13537 Default value is "all", which will cycle through the list of all tests.
13538 @end table
13539
13540 Some examples:
13541 @example
13542 mptestsrc=t=dc_luma
13543 @end example
13544
13545 will generate a "dc_luma" test pattern.
13546
13547 @section frei0r_src
13548
13549 Provide a frei0r source.
13550
13551 To enable compilation of this filter you need to install the frei0r
13552 header and configure FFmpeg with @code{--enable-frei0r}.
13553
13554 This source accepts the following parameters:
13555
13556 @table @option
13557
13558 @item size
13559 The size of the video to generate. For the syntax of this option, check the
13560 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13561
13562 @item framerate
13563 The framerate of the generated video. It may be a string of the form
13564 @var{num}/@var{den} or a frame rate abbreviation.
13565
13566 @item filter_name
13567 The name to the frei0r source to load. For more information regarding frei0r and
13568 how to set the parameters, read the @ref{frei0r} section in the video filters
13569 documentation.
13570
13571 @item filter_params
13572 A '|'-separated list of parameters to pass to the frei0r source.
13573
13574 @end table
13575
13576 For example, to generate a frei0r partik0l source with size 200x200
13577 and frame rate 10 which is overlaid on the overlay filter main input:
13578 @example
13579 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
13580 @end example
13581
13582 @section life
13583
13584 Generate a life pattern.
13585
13586 This source is based on a generalization of John Conway's life game.
13587
13588 The sourced input represents a life grid, each pixel represents a cell
13589 which can be in one of two possible states, alive or dead. Every cell
13590 interacts with its eight neighbours, which are the cells that are
13591 horizontally, vertically, or diagonally adjacent.
13592
13593 At each interaction the grid evolves according to the adopted rule,
13594 which specifies the number of neighbor alive cells which will make a
13595 cell stay alive or born. The @option{rule} option allows one to specify
13596 the rule to adopt.
13597
13598 This source accepts the following options:
13599
13600 @table @option
13601 @item filename, f
13602 Set the file from which to read the initial grid state. In the file,
13603 each non-whitespace character is considered an alive cell, and newline
13604 is used to delimit the end of each row.
13605
13606 If this option is not specified, the initial grid is generated
13607 randomly.
13608
13609 @item rate, r
13610 Set the video rate, that is the number of frames generated per second.
13611 Default is 25.
13612
13613 @item random_fill_ratio, ratio
13614 Set the random fill ratio for the initial random grid. It is a
13615 floating point number value ranging from 0 to 1, defaults to 1/PHI.
13616 It is ignored when a file is specified.
13617
13618 @item random_seed, seed
13619 Set the seed for filling the initial random grid, must be an integer
13620 included between 0 and UINT32_MAX. If not specified, or if explicitly
13621 set to -1, the filter will try to use a good random seed on a best
13622 effort basis.
13623
13624 @item rule
13625 Set the life rule.
13626
13627 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
13628 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
13629 @var{NS} specifies the number of alive neighbor cells which make a
13630 live cell stay alive, and @var{NB} the number of alive neighbor cells
13631 which make a dead cell to become alive (i.e. to "born").
13632 "s" and "b" can be used in place of "S" and "B", respectively.
13633
13634 Alternatively a rule can be specified by an 18-bits integer. The 9
13635 high order bits are used to encode the next cell state if it is alive
13636 for each number of neighbor alive cells, the low order bits specify
13637 the rule for "borning" new cells. Higher order bits encode for an
13638 higher number of neighbor cells.
13639 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
13640 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
13641
13642 Default value is "S23/B3", which is the original Conway's game of life
13643 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
13644 cells, and will born a new cell if there are three alive cells around
13645 a dead cell.
13646
13647 @item size, s
13648 Set the size of the output video. For the syntax of this option, check the
13649 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13650
13651 If @option{filename} is specified, the size is set by default to the
13652 same size of the input file. If @option{size} is set, it must contain
13653 the size specified in the input file, and the initial grid defined in
13654 that file is centered in the larger resulting area.
13655
13656 If a filename is not specified, the size value defaults to "320x240"
13657 (used for a randomly generated initial grid).
13658
13659 @item stitch
13660 If set to 1, stitch the left and right grid edges together, and the
13661 top and bottom edges also. Defaults to 1.
13662
13663 @item mold
13664 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
13665 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
13666 value from 0 to 255.
13667
13668 @item life_color
13669 Set the color of living (or new born) cells.
13670
13671 @item death_color
13672 Set the color of dead cells. If @option{mold} is set, this is the first color
13673 used to represent a dead cell.
13674
13675 @item mold_color
13676 Set mold color, for definitely dead and moldy cells.
13677
13678 For the syntax of these 3 color options, check the "Color" section in the
13679 ffmpeg-utils manual.
13680 @end table
13681
13682 @subsection Examples
13683
13684 @itemize
13685 @item
13686 Read a grid from @file{pattern}, and center it on a grid of size
13687 300x300 pixels:
13688 @example
13689 life=f=pattern:s=300x300
13690 @end example
13691
13692 @item
13693 Generate a random grid of size 200x200, with a fill ratio of 2/3:
13694 @example
13695 life=ratio=2/3:s=200x200
13696 @end example
13697
13698 @item
13699 Specify a custom rule for evolving a randomly generated grid:
13700 @example
13701 life=rule=S14/B34
13702 @end example
13703
13704 @item
13705 Full example with slow death effect (mold) using @command{ffplay}:
13706 @example
13707 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
13708 @end example
13709 @end itemize
13710
13711 @anchor{allrgb}
13712 @anchor{allyuv}
13713 @anchor{color}
13714 @anchor{haldclutsrc}
13715 @anchor{nullsrc}
13716 @anchor{rgbtestsrc}
13717 @anchor{smptebars}
13718 @anchor{smptehdbars}
13719 @anchor{testsrc}
13720 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
13721
13722 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
13723
13724 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
13725
13726 The @code{color} source provides an uniformly colored input.
13727
13728 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
13729 @ref{haldclut} filter.
13730
13731 The @code{nullsrc} source returns unprocessed video frames. It is
13732 mainly useful to be employed in analysis / debugging tools, or as the
13733 source for filters which ignore the input data.
13734
13735 The @code{rgbtestsrc} source generates an RGB test pattern useful for
13736 detecting RGB vs BGR issues. You should see a red, green and blue
13737 stripe from top to bottom.
13738
13739 The @code{smptebars} source generates a color bars pattern, based on
13740 the SMPTE Engineering Guideline EG 1-1990.
13741
13742 The @code{smptehdbars} source generates a color bars pattern, based on
13743 the SMPTE RP 219-2002.
13744
13745 The @code{testsrc} source generates a test video pattern, showing a
13746 color pattern, a scrolling gradient and a timestamp. This is mainly
13747 intended for testing purposes.
13748
13749 The sources accept the following parameters:
13750
13751 @table @option
13752
13753 @item color, c
13754 Specify the color of the source, only available in the @code{color}
13755 source. For the syntax of this option, check the "Color" section in the
13756 ffmpeg-utils manual.
13757
13758 @item level
13759 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
13760 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
13761 pixels to be used as identity matrix for 3D lookup tables. Each component is
13762 coded on a @code{1/(N*N)} scale.
13763
13764 @item size, s
13765 Specify the size of the sourced video. For the syntax of this option, check the
13766 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13767 The default value is @code{320x240}.
13768
13769 This option is not available with the @code{haldclutsrc} filter.
13770
13771 @item rate, r
13772 Specify the frame rate of the sourced video, as the number of frames
13773 generated per second. It has to be a string in the format
13774 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
13775 number or a valid video frame rate abbreviation. The default value is
13776 "25".
13777
13778 @item sar
13779 Set the sample aspect ratio of the sourced video.
13780
13781 @item duration, d
13782 Set the duration of the sourced video. See
13783 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13784 for the accepted syntax.
13785
13786 If not specified, or the expressed duration is negative, the video is
13787 supposed to be generated forever.
13788
13789 @item decimals, n
13790 Set the number of decimals to show in the timestamp, only available in the
13791 @code{testsrc} source.
13792
13793 The displayed timestamp value will correspond to the original
13794 timestamp value multiplied by the power of 10 of the specified
13795 value. Default value is 0.
13796 @end table
13797
13798 For example the following:
13799 @example
13800 testsrc=duration=5.3:size=qcif:rate=10
13801 @end example
13802
13803 will generate a video with a duration of 5.3 seconds, with size
13804 176x144 and a frame rate of 10 frames per second.
13805
13806 The following graph description will generate a red source
13807 with an opacity of 0.2, with size "qcif" and a frame rate of 10
13808 frames per second.
13809 @example
13810 color=c=red@@0.2:s=qcif:r=10
13811 @end example
13812
13813 If the input content is to be ignored, @code{nullsrc} can be used. The
13814 following command generates noise in the luminance plane by employing
13815 the @code{geq} filter:
13816 @example
13817 nullsrc=s=256x256, geq=random(1)*255:128:128
13818 @end example
13819
13820 @subsection Commands
13821
13822 The @code{color} source supports the following commands:
13823
13824 @table @option
13825 @item c, color
13826 Set the color of the created image. Accepts the same syntax of the
13827 corresponding @option{color} option.
13828 @end table
13829
13830 @c man end VIDEO SOURCES
13831
13832 @chapter Video Sinks
13833 @c man begin VIDEO SINKS
13834
13835 Below is a description of the currently available video sinks.
13836
13837 @section buffersink
13838
13839 Buffer video frames, and make them available to the end of the filter
13840 graph.
13841
13842 This sink is mainly intended for programmatic use, in particular
13843 through the interface defined in @file{libavfilter/buffersink.h}
13844 or the options system.
13845
13846 It accepts a pointer to an AVBufferSinkContext structure, which
13847 defines the incoming buffers' formats, to be passed as the opaque
13848 parameter to @code{avfilter_init_filter} for initialization.
13849
13850 @section nullsink
13851
13852 Null video sink: do absolutely nothing with the input video. It is
13853 mainly useful as a template and for use in analysis / debugging
13854 tools.
13855
13856 @c man end VIDEO SINKS
13857
13858 @chapter Multimedia Filters
13859 @c man begin MULTIMEDIA FILTERS
13860
13861 Below is a description of the currently available multimedia filters.
13862
13863 @section ahistogram
13864
13865 Convert input audio to a video output, displaying the volume histogram.
13866
13867 The filter accepts the following options:
13868
13869 @table @option
13870 @item dmode
13871 Specify how histogram is calculated.
13872
13873 It accepts the following values:
13874 @table @samp
13875 @item single
13876 Use single histogram for all channels.
13877 @item separate
13878 Use separate histogram for each channel.
13879 @end table
13880 Default is @code{single}.
13881
13882 @item rate, r
13883 Set frame rate, expressed as number of frames per second. Default
13884 value is "25".
13885
13886 @item size, s
13887 Specify the video size for the output. For the syntax of this option, check the
13888 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13889 Default value is @code{hd720}.
13890
13891 @item scale
13892 Set display scale.
13893
13894 It accepts the following values:
13895 @table @samp
13896 @item log
13897 logarithmic
13898 @item sqrt
13899 square root
13900 @item cbrt
13901 cubic root
13902 @item lin
13903 linear
13904 @item rlog
13905 reverse logarithmic
13906 @end table
13907 Default is @code{log}.
13908
13909 @item ascale
13910 Set amplitude scale.
13911
13912 It accepts the following values:
13913 @table @samp
13914 @item log
13915 logarithmic
13916 @item lin
13917 linear
13918 @end table
13919 Default is @code{log}.
13920
13921 @item acount
13922 Set how much frames to accumulate in histogram.
13923 Defauls is 1. Setting this to -1 accumulates all frames.
13924
13925 @item rheight
13926 Set histogram ratio of window height.
13927
13928 @item slide
13929 Set sonogram sliding.
13930
13931 It accepts the following values:
13932 @table @samp
13933 @item replace
13934 replace old rows with new ones.
13935 @item scroll
13936 scroll from top to bottom.
13937 @end table
13938 Default is @code{replace}.
13939 @end table
13940
13941 @section aphasemeter
13942
13943 Convert input audio to a video output, displaying the audio phase.
13944
13945 The filter accepts the following options:
13946
13947 @table @option
13948 @item rate, r
13949 Set the output frame rate. Default value is @code{25}.
13950
13951 @item size, s
13952 Set the video size for the output. For the syntax of this option, check the
13953 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13954 Default value is @code{800x400}.
13955
13956 @item rc
13957 @item gc
13958 @item bc
13959 Specify the red, green, blue contrast. Default values are @code{2},
13960 @code{7} and @code{1}.
13961 Allowed range is @code{[0, 255]}.
13962
13963 @item mpc
13964 Set color which will be used for drawing median phase. If color is
13965 @code{none} which is default, no median phase value will be drawn.
13966 @end table
13967
13968 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
13969 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
13970 The @code{-1} means left and right channels are completely out of phase and
13971 @code{1} means channels are in phase.
13972
13973 @section avectorscope
13974
13975 Convert input audio to a video output, representing the audio vector
13976 scope.
13977
13978 The filter is used to measure the difference between channels of stereo
13979 audio stream. A monoaural signal, consisting of identical left and right
13980 signal, results in straight vertical line. Any stereo separation is visible
13981 as a deviation from this line, creating a Lissajous figure.
13982 If the straight (or deviation from it) but horizontal line appears this
13983 indicates that the left and right channels are out of phase.
13984
13985 The filter accepts the following options:
13986
13987 @table @option
13988 @item mode, m
13989 Set the vectorscope mode.
13990
13991 Available values are:
13992 @table @samp
13993 @item lissajous
13994 Lissajous rotated by 45 degrees.
13995
13996 @item lissajous_xy
13997 Same as above but not rotated.
13998
13999 @item polar
14000 Shape resembling half of circle.
14001 @end table
14002
14003 Default value is @samp{lissajous}.
14004
14005 @item size, s
14006 Set the video size for the output. For the syntax of this option, check the
14007 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14008 Default value is @code{400x400}.
14009
14010 @item rate, r
14011 Set the output frame rate. Default value is @code{25}.
14012
14013 @item rc
14014 @item gc
14015 @item bc
14016 @item ac
14017 Specify the red, green, blue and alpha contrast. Default values are @code{40},
14018 @code{160}, @code{80} and @code{255}.
14019 Allowed range is @code{[0, 255]}.
14020
14021 @item rf
14022 @item gf
14023 @item bf
14024 @item af
14025 Specify the red, green, blue and alpha fade. Default values are @code{15},
14026 @code{10}, @code{5} and @code{5}.
14027 Allowed range is @code{[0, 255]}.
14028
14029 @item zoom
14030 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
14031
14032 @item draw
14033 Set the vectorscope drawing mode.
14034
14035 Available values are:
14036 @table @samp
14037 @item dot
14038 Draw dot for each sample.
14039
14040 @item line
14041 Draw line between previous and current sample.
14042 @end table
14043
14044 Default value is @samp{dot}.
14045 @end table
14046
14047 @subsection Examples
14048
14049 @itemize
14050 @item
14051 Complete example using @command{ffplay}:
14052 @example
14053 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14054              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
14055 @end example
14056 @end itemize
14057
14058 @section concat
14059
14060 Concatenate audio and video streams, joining them together one after the
14061 other.
14062
14063 The filter works on segments of synchronized video and audio streams. All
14064 segments must have the same number of streams of each type, and that will
14065 also be the number of streams at output.
14066
14067 The filter accepts the following options:
14068
14069 @table @option
14070
14071 @item n
14072 Set the number of segments. Default is 2.
14073
14074 @item v
14075 Set the number of output video streams, that is also the number of video
14076 streams in each segment. Default is 1.
14077
14078 @item a
14079 Set the number of output audio streams, that is also the number of audio
14080 streams in each segment. Default is 0.
14081
14082 @item unsafe
14083 Activate unsafe mode: do not fail if segments have a different format.
14084
14085 @end table
14086
14087 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
14088 @var{a} audio outputs.
14089
14090 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
14091 segment, in the same order as the outputs, then the inputs for the second
14092 segment, etc.
14093
14094 Related streams do not always have exactly the same duration, for various
14095 reasons including codec frame size or sloppy authoring. For that reason,
14096 related synchronized streams (e.g. a video and its audio track) should be
14097 concatenated at once. The concat filter will use the duration of the longest
14098 stream in each segment (except the last one), and if necessary pad shorter
14099 audio streams with silence.
14100
14101 For this filter to work correctly, all segments must start at timestamp 0.
14102
14103 All corresponding streams must have the same parameters in all segments; the
14104 filtering system will automatically select a common pixel format for video
14105 streams, and a common sample format, sample rate and channel layout for
14106 audio streams, but other settings, such as resolution, must be converted
14107 explicitly by the user.
14108
14109 Different frame rates are acceptable but will result in variable frame rate
14110 at output; be sure to configure the output file to handle it.
14111
14112 @subsection Examples
14113
14114 @itemize
14115 @item
14116 Concatenate an opening, an episode and an ending, all in bilingual version
14117 (video in stream 0, audio in streams 1 and 2):
14118 @example
14119 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
14120   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
14121    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
14122   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
14123 @end example
14124
14125 @item
14126 Concatenate two parts, handling audio and video separately, using the
14127 (a)movie sources, and adjusting the resolution:
14128 @example
14129 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
14130 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
14131 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
14132 @end example
14133 Note that a desync will happen at the stitch if the audio and video streams
14134 do not have exactly the same duration in the first file.
14135
14136 @end itemize
14137
14138 @anchor{ebur128}
14139 @section ebur128
14140
14141 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
14142 it unchanged. By default, it logs a message at a frequency of 10Hz with the
14143 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
14144 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
14145
14146 The filter also has a video output (see the @var{video} option) with a real
14147 time graph to observe the loudness evolution. The graphic contains the logged
14148 message mentioned above, so it is not printed anymore when this option is set,
14149 unless the verbose logging is set. The main graphing area contains the
14150 short-term loudness (3 seconds of analysis), and the gauge on the right is for
14151 the momentary loudness (400 milliseconds).
14152
14153 More information about the Loudness Recommendation EBU R128 on
14154 @url{http://tech.ebu.ch/loudness}.
14155
14156 The filter accepts the following options:
14157
14158 @table @option
14159
14160 @item video
14161 Activate the video output. The audio stream is passed unchanged whether this
14162 option is set or no. The video stream will be the first output stream if
14163 activated. Default is @code{0}.
14164
14165 @item size
14166 Set the video size. This option is for video only. For the syntax of this
14167 option, check the
14168 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14169 Default and minimum resolution is @code{640x480}.
14170
14171 @item meter
14172 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
14173 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
14174 other integer value between this range is allowed.
14175
14176 @item metadata
14177 Set metadata injection. If set to @code{1}, the audio input will be segmented
14178 into 100ms output frames, each of them containing various loudness information
14179 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
14180
14181 Default is @code{0}.
14182
14183 @item framelog
14184 Force the frame logging level.
14185
14186 Available values are:
14187 @table @samp
14188 @item info
14189 information logging level
14190 @item verbose
14191 verbose logging level
14192 @end table
14193
14194 By default, the logging level is set to @var{info}. If the @option{video} or
14195 the @option{metadata} options are set, it switches to @var{verbose}.
14196
14197 @item peak
14198 Set peak mode(s).
14199
14200 Available modes can be cumulated (the option is a @code{flag} type). Possible
14201 values are:
14202 @table @samp
14203 @item none
14204 Disable any peak mode (default).
14205 @item sample
14206 Enable sample-peak mode.
14207
14208 Simple peak mode looking for the higher sample value. It logs a message
14209 for sample-peak (identified by @code{SPK}).
14210 @item true
14211 Enable true-peak mode.
14212
14213 If enabled, the peak lookup is done on an over-sampled version of the input
14214 stream for better peak accuracy. It logs a message for true-peak.
14215 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
14216 This mode requires a build with @code{libswresample}.
14217 @end table
14218
14219 @item dualmono
14220 Treat mono input files as "dual mono". If a mono file is intended for playback
14221 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
14222 If set to @code{true}, this option will compensate for this effect.
14223 Multi-channel input files are not affected by this option.
14224
14225 @item panlaw
14226 Set a specific pan law to be used for the measurement of dual mono files.
14227 This parameter is optional, and has a default value of -3.01dB.
14228 @end table
14229
14230 @subsection Examples
14231
14232 @itemize
14233 @item
14234 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
14235 @example
14236 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
14237 @end example
14238
14239 @item
14240 Run an analysis with @command{ffmpeg}:
14241 @example
14242 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
14243 @end example
14244 @end itemize
14245
14246 @section interleave, ainterleave
14247
14248 Temporally interleave frames from several inputs.
14249
14250 @code{interleave} works with video inputs, @code{ainterleave} with audio.
14251
14252 These filters read frames from several inputs and send the oldest
14253 queued frame to the output.
14254
14255 Input streams must have a well defined, monotonically increasing frame
14256 timestamp values.
14257
14258 In order to submit one frame to output, these filters need to enqueue
14259 at least one frame for each input, so they cannot work in case one
14260 input is not yet terminated and will not receive incoming frames.
14261
14262 For example consider the case when one input is a @code{select} filter
14263 which always drop input frames. The @code{interleave} filter will keep
14264 reading from that input, but it will never be able to send new frames
14265 to output until the input will send an end-of-stream signal.
14266
14267 Also, depending on inputs synchronization, the filters will drop
14268 frames in case one input receives more frames than the other ones, and
14269 the queue is already filled.
14270
14271 These filters accept the following options:
14272
14273 @table @option
14274 @item nb_inputs, n
14275 Set the number of different inputs, it is 2 by default.
14276 @end table
14277
14278 @subsection Examples
14279
14280 @itemize
14281 @item
14282 Interleave frames belonging to different streams using @command{ffmpeg}:
14283 @example
14284 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
14285 @end example
14286
14287 @item
14288 Add flickering blur effect:
14289 @example
14290 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
14291 @end example
14292 @end itemize
14293
14294 @section perms, aperms
14295
14296 Set read/write permissions for the output frames.
14297
14298 These filters are mainly aimed at developers to test direct path in the
14299 following filter in the filtergraph.
14300
14301 The filters accept the following options:
14302
14303 @table @option
14304 @item mode
14305 Select the permissions mode.
14306
14307 It accepts the following values:
14308 @table @samp
14309 @item none
14310 Do nothing. This is the default.
14311 @item ro
14312 Set all the output frames read-only.
14313 @item rw
14314 Set all the output frames directly writable.
14315 @item toggle
14316 Make the frame read-only if writable, and writable if read-only.
14317 @item random
14318 Set each output frame read-only or writable randomly.
14319 @end table
14320
14321 @item seed
14322 Set the seed for the @var{random} mode, must be an integer included between
14323 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14324 @code{-1}, the filter will try to use a good random seed on a best effort
14325 basis.
14326 @end table
14327
14328 Note: in case of auto-inserted filter between the permission filter and the
14329 following one, the permission might not be received as expected in that
14330 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
14331 perms/aperms filter can avoid this problem.
14332
14333 @section realtime, arealtime
14334
14335 Slow down filtering to match real time approximatively.
14336
14337 These filters will pause the filtering for a variable amount of time to
14338 match the output rate with the input timestamps.
14339 They are similar to the @option{re} option to @code{ffmpeg}.
14340
14341 They accept the following options:
14342
14343 @table @option
14344 @item limit
14345 Time limit for the pauses. Any pause longer than that will be considered
14346 a timestamp discontinuity and reset the timer. Default is 2 seconds.
14347 @end table
14348
14349 @section select, aselect
14350
14351 Select frames to pass in output.
14352
14353 This filter accepts the following options:
14354
14355 @table @option
14356
14357 @item expr, e
14358 Set expression, which is evaluated for each input frame.
14359
14360 If the expression is evaluated to zero, the frame is discarded.
14361
14362 If the evaluation result is negative or NaN, the frame is sent to the
14363 first output; otherwise it is sent to the output with index
14364 @code{ceil(val)-1}, assuming that the input index starts from 0.
14365
14366 For example a value of @code{1.2} corresponds to the output with index
14367 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
14368
14369 @item outputs, n
14370 Set the number of outputs. The output to which to send the selected
14371 frame is based on the result of the evaluation. Default value is 1.
14372 @end table
14373
14374 The expression can contain the following constants:
14375
14376 @table @option
14377 @item n
14378 The (sequential) number of the filtered frame, starting from 0.
14379
14380 @item selected_n
14381 The (sequential) number of the selected frame, starting from 0.
14382
14383 @item prev_selected_n
14384 The sequential number of the last selected frame. It's NAN if undefined.
14385
14386 @item TB
14387 The timebase of the input timestamps.
14388
14389 @item pts
14390 The PTS (Presentation TimeStamp) of the filtered video frame,
14391 expressed in @var{TB} units. It's NAN if undefined.
14392
14393 @item t
14394 The PTS of the filtered video frame,
14395 expressed in seconds. It's NAN if undefined.
14396
14397 @item prev_pts
14398 The PTS of the previously filtered video frame. It's NAN if undefined.
14399
14400 @item prev_selected_pts
14401 The PTS of the last previously filtered video frame. It's NAN if undefined.
14402
14403 @item prev_selected_t
14404 The PTS of the last previously selected video frame. It's NAN if undefined.
14405
14406 @item start_pts
14407 The PTS of the first video frame in the video. It's NAN if undefined.
14408
14409 @item start_t
14410 The time of the first video frame in the video. It's NAN if undefined.
14411
14412 @item pict_type @emph{(video only)}
14413 The type of the filtered frame. It can assume one of the following
14414 values:
14415 @table @option
14416 @item I
14417 @item P
14418 @item B
14419 @item S
14420 @item SI
14421 @item SP
14422 @item BI
14423 @end table
14424
14425 @item interlace_type @emph{(video only)}
14426 The frame interlace type. It can assume one of the following values:
14427 @table @option
14428 @item PROGRESSIVE
14429 The frame is progressive (not interlaced).
14430 @item TOPFIRST
14431 The frame is top-field-first.
14432 @item BOTTOMFIRST
14433 The frame is bottom-field-first.
14434 @end table
14435
14436 @item consumed_sample_n @emph{(audio only)}
14437 the number of selected samples before the current frame
14438
14439 @item samples_n @emph{(audio only)}
14440 the number of samples in the current frame
14441
14442 @item sample_rate @emph{(audio only)}
14443 the input sample rate
14444
14445 @item key
14446 This is 1 if the filtered frame is a key-frame, 0 otherwise.
14447
14448 @item pos
14449 the position in the file of the filtered frame, -1 if the information
14450 is not available (e.g. for synthetic video)
14451
14452 @item scene @emph{(video only)}
14453 value between 0 and 1 to indicate a new scene; a low value reflects a low
14454 probability for the current frame to introduce a new scene, while a higher
14455 value means the current frame is more likely to be one (see the example below)
14456
14457 @item concatdec_select
14458 The concat demuxer can select only part of a concat input file by setting an
14459 inpoint and an outpoint, but the output packets may not be entirely contained
14460 in the selected interval. By using this variable, it is possible to skip frames
14461 generated by the concat demuxer which are not exactly contained in the selected
14462 interval.
14463
14464 This works by comparing the frame pts against the @var{lavf.concat.start_time}
14465 and the @var{lavf.concat.duration} packet metadata values which are also
14466 present in the decoded frames.
14467
14468 The @var{concatdec_select} variable is -1 if the frame pts is at least
14469 start_time and either the duration metadata is missing or the frame pts is less
14470 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
14471 missing.
14472
14473 That basically means that an input frame is selected if its pts is within the
14474 interval set by the concat demuxer.
14475
14476 @end table
14477
14478 The default value of the select expression is "1".
14479
14480 @subsection Examples
14481
14482 @itemize
14483 @item
14484 Select all frames in input:
14485 @example
14486 select
14487 @end example
14488
14489 The example above is the same as:
14490 @example
14491 select=1
14492 @end example
14493
14494 @item
14495 Skip all frames:
14496 @example
14497 select=0
14498 @end example
14499
14500 @item
14501 Select only I-frames:
14502 @example
14503 select='eq(pict_type\,I)'
14504 @end example
14505
14506 @item
14507 Select one frame every 100:
14508 @example
14509 select='not(mod(n\,100))'
14510 @end example
14511
14512 @item
14513 Select only frames contained in the 10-20 time interval:
14514 @example
14515 select=between(t\,10\,20)
14516 @end example
14517
14518 @item
14519 Select only I frames contained in the 10-20 time interval:
14520 @example
14521 select=between(t\,10\,20)*eq(pict_type\,I)
14522 @end example
14523
14524 @item
14525 Select frames with a minimum distance of 10 seconds:
14526 @example
14527 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
14528 @end example
14529
14530 @item
14531 Use aselect to select only audio frames with samples number > 100:
14532 @example
14533 aselect='gt(samples_n\,100)'
14534 @end example
14535
14536 @item
14537 Create a mosaic of the first scenes:
14538 @example
14539 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
14540 @end example
14541
14542 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
14543 choice.
14544
14545 @item
14546 Send even and odd frames to separate outputs, and compose them:
14547 @example
14548 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
14549 @end example
14550
14551 @item
14552 Select useful frames from an ffconcat file which is using inpoints and
14553 outpoints but where the source files are not intra frame only.
14554 @example
14555 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
14556 @end example
14557 @end itemize
14558
14559 @section sendcmd, asendcmd
14560
14561 Send commands to filters in the filtergraph.
14562
14563 These filters read commands to be sent to other filters in the
14564 filtergraph.
14565
14566 @code{sendcmd} must be inserted between two video filters,
14567 @code{asendcmd} must be inserted between two audio filters, but apart
14568 from that they act the same way.
14569
14570 The specification of commands can be provided in the filter arguments
14571 with the @var{commands} option, or in a file specified by the
14572 @var{filename} option.
14573
14574 These filters accept the following options:
14575 @table @option
14576 @item commands, c
14577 Set the commands to be read and sent to the other filters.
14578 @item filename, f
14579 Set the filename of the commands to be read and sent to the other
14580 filters.
14581 @end table
14582
14583 @subsection Commands syntax
14584
14585 A commands description consists of a sequence of interval
14586 specifications, comprising a list of commands to be executed when a
14587 particular event related to that interval occurs. The occurring event
14588 is typically the current frame time entering or leaving a given time
14589 interval.
14590
14591 An interval is specified by the following syntax:
14592 @example
14593 @var{START}[-@var{END}] @var{COMMANDS};
14594 @end example
14595
14596 The time interval is specified by the @var{START} and @var{END} times.
14597 @var{END} is optional and defaults to the maximum time.
14598
14599 The current frame time is considered within the specified interval if
14600 it is included in the interval [@var{START}, @var{END}), that is when
14601 the time is greater or equal to @var{START} and is lesser than
14602 @var{END}.
14603
14604 @var{COMMANDS} consists of a sequence of one or more command
14605 specifications, separated by ",", relating to that interval.  The
14606 syntax of a command specification is given by:
14607 @example
14608 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
14609 @end example
14610
14611 @var{FLAGS} is optional and specifies the type of events relating to
14612 the time interval which enable sending the specified command, and must
14613 be a non-null sequence of identifier flags separated by "+" or "|" and
14614 enclosed between "[" and "]".
14615
14616 The following flags are recognized:
14617 @table @option
14618 @item enter
14619 The command is sent when the current frame timestamp enters the
14620 specified interval. In other words, the command is sent when the
14621 previous frame timestamp was not in the given interval, and the
14622 current is.
14623
14624 @item leave
14625 The command is sent when the current frame timestamp leaves the
14626 specified interval. In other words, the command is sent when the
14627 previous frame timestamp was in the given interval, and the
14628 current is not.
14629 @end table
14630
14631 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
14632 assumed.
14633
14634 @var{TARGET} specifies the target of the command, usually the name of
14635 the filter class or a specific filter instance name.
14636
14637 @var{COMMAND} specifies the name of the command for the target filter.
14638
14639 @var{ARG} is optional and specifies the optional list of argument for
14640 the given @var{COMMAND}.
14641
14642 Between one interval specification and another, whitespaces, or
14643 sequences of characters starting with @code{#} until the end of line,
14644 are ignored and can be used to annotate comments.
14645
14646 A simplified BNF description of the commands specification syntax
14647 follows:
14648 @example
14649 @var{COMMAND_FLAG}  ::= "enter" | "leave"
14650 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
14651 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
14652 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
14653 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
14654 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
14655 @end example
14656
14657 @subsection Examples
14658
14659 @itemize
14660 @item
14661 Specify audio tempo change at second 4:
14662 @example
14663 asendcmd=c='4.0 atempo tempo 1.5',atempo
14664 @end example
14665
14666 @item
14667 Specify a list of drawtext and hue commands in a file.
14668 @example
14669 # show text in the interval 5-10
14670 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
14671          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
14672
14673 # desaturate the image in the interval 15-20
14674 15.0-20.0 [enter] hue s 0,
14675           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
14676           [leave] hue s 1,
14677           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
14678
14679 # apply an exponential saturation fade-out effect, starting from time 25
14680 25 [enter] hue s exp(25-t)
14681 @end example
14682
14683 A filtergraph allowing to read and process the above command list
14684 stored in a file @file{test.cmd}, can be specified with:
14685 @example
14686 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
14687 @end example
14688 @end itemize
14689
14690 @anchor{setpts}
14691 @section setpts, asetpts
14692
14693 Change the PTS (presentation timestamp) of the input frames.
14694
14695 @code{setpts} works on video frames, @code{asetpts} on audio frames.
14696
14697 This filter accepts the following options:
14698
14699 @table @option
14700
14701 @item expr
14702 The expression which is evaluated for each frame to construct its timestamp.
14703
14704 @end table
14705
14706 The expression is evaluated through the eval API and can contain the following
14707 constants:
14708
14709 @table @option
14710 @item FRAME_RATE
14711 frame rate, only defined for constant frame-rate video
14712
14713 @item PTS
14714 The presentation timestamp in input
14715
14716 @item N
14717 The count of the input frame for video or the number of consumed samples,
14718 not including the current frame for audio, starting from 0.
14719
14720 @item NB_CONSUMED_SAMPLES
14721 The number of consumed samples, not including the current frame (only
14722 audio)
14723
14724 @item NB_SAMPLES, S
14725 The number of samples in the current frame (only audio)
14726
14727 @item SAMPLE_RATE, SR
14728 The audio sample rate.
14729
14730 @item STARTPTS
14731 The PTS of the first frame.
14732
14733 @item STARTT
14734 the time in seconds of the first frame
14735
14736 @item INTERLACED
14737 State whether the current frame is interlaced.
14738
14739 @item T
14740 the time in seconds of the current frame
14741
14742 @item POS
14743 original position in the file of the frame, or undefined if undefined
14744 for the current frame
14745
14746 @item PREV_INPTS
14747 The previous input PTS.
14748
14749 @item PREV_INT
14750 previous input time in seconds
14751
14752 @item PREV_OUTPTS
14753 The previous output PTS.
14754
14755 @item PREV_OUTT
14756 previous output time in seconds
14757
14758 @item RTCTIME
14759 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
14760 instead.
14761
14762 @item RTCSTART
14763 The wallclock (RTC) time at the start of the movie in microseconds.
14764
14765 @item TB
14766 The timebase of the input timestamps.
14767
14768 @end table
14769
14770 @subsection Examples
14771
14772 @itemize
14773 @item
14774 Start counting PTS from zero
14775 @example
14776 setpts=PTS-STARTPTS
14777 @end example
14778
14779 @item
14780 Apply fast motion effect:
14781 @example
14782 setpts=0.5*PTS
14783 @end example
14784
14785 @item
14786 Apply slow motion effect:
14787 @example
14788 setpts=2.0*PTS
14789 @end example
14790
14791 @item
14792 Set fixed rate of 25 frames per second:
14793 @example
14794 setpts=N/(25*TB)
14795 @end example
14796
14797 @item
14798 Set fixed rate 25 fps with some jitter:
14799 @example
14800 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
14801 @end example
14802
14803 @item
14804 Apply an offset of 10 seconds to the input PTS:
14805 @example
14806 setpts=PTS+10/TB
14807 @end example
14808
14809 @item
14810 Generate timestamps from a "live source" and rebase onto the current timebase:
14811 @example
14812 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
14813 @end example
14814
14815 @item
14816 Generate timestamps by counting samples:
14817 @example
14818 asetpts=N/SR/TB
14819 @end example
14820
14821 @end itemize
14822
14823 @section settb, asettb
14824
14825 Set the timebase to use for the output frames timestamps.
14826 It is mainly useful for testing timebase configuration.
14827
14828 It accepts the following parameters:
14829
14830 @table @option
14831
14832 @item expr, tb
14833 The expression which is evaluated into the output timebase.
14834
14835 @end table
14836
14837 The value for @option{tb} is an arithmetic expression representing a
14838 rational. The expression can contain the constants "AVTB" (the default
14839 timebase), "intb" (the input timebase) and "sr" (the sample rate,
14840 audio only). Default value is "intb".
14841
14842 @subsection Examples
14843
14844 @itemize
14845 @item
14846 Set the timebase to 1/25:
14847 @example
14848 settb=expr=1/25
14849 @end example
14850
14851 @item
14852 Set the timebase to 1/10:
14853 @example
14854 settb=expr=0.1
14855 @end example
14856
14857 @item
14858 Set the timebase to 1001/1000:
14859 @example
14860 settb=1+0.001
14861 @end example
14862
14863 @item
14864 Set the timebase to 2*intb:
14865 @example
14866 settb=2*intb
14867 @end example
14868
14869 @item
14870 Set the default timebase value:
14871 @example
14872 settb=AVTB
14873 @end example
14874 @end itemize
14875
14876 @section showcqt
14877 Convert input audio to a video output representing frequency spectrum
14878 logarithmically using Brown-Puckette constant Q transform algorithm with
14879 direct frequency domain coefficient calculation (but the transform itself
14880 is not really constant Q, instead the Q factor is actually variable/clamped),
14881 with musical tone scale, from E0 to D#10.
14882
14883 The filter accepts the following options:
14884
14885 @table @option
14886 @item size, s
14887 Specify the video size for the output. It must be even. For the syntax of this option,
14888 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14889 Default value is @code{1920x1080}.
14890
14891 @item fps, rate, r
14892 Set the output frame rate. Default value is @code{25}.
14893
14894 @item bar_h
14895 Set the bargraph height. It must be even. Default value is @code{-1} which
14896 computes the bargraph height automatically.
14897
14898 @item axis_h
14899 Set the axis height. It must be even. Default value is @code{-1} which computes
14900 the axis height automatically.
14901
14902 @item sono_h
14903 Set the sonogram height. It must be even. Default value is @code{-1} which
14904 computes the sonogram height automatically.
14905
14906 @item fullhd
14907 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
14908 instead. Default value is @code{1}.
14909
14910 @item sono_v, volume
14911 Specify the sonogram volume expression. It can contain variables:
14912 @table @option
14913 @item bar_v
14914 the @var{bar_v} evaluated expression
14915 @item frequency, freq, f
14916 the frequency where it is evaluated
14917 @item timeclamp, tc
14918 the value of @var{timeclamp} option
14919 @end table
14920 and functions:
14921 @table @option
14922 @item a_weighting(f)
14923 A-weighting of equal loudness
14924 @item b_weighting(f)
14925 B-weighting of equal loudness
14926 @item c_weighting(f)
14927 C-weighting of equal loudness.
14928 @end table
14929 Default value is @code{16}.
14930
14931 @item bar_v, volume2
14932 Specify the bargraph volume expression. It can contain variables:
14933 @table @option
14934 @item sono_v
14935 the @var{sono_v} evaluated expression
14936 @item frequency, freq, f
14937 the frequency where it is evaluated
14938 @item timeclamp, tc
14939 the value of @var{timeclamp} option
14940 @end table
14941 and functions:
14942 @table @option
14943 @item a_weighting(f)
14944 A-weighting of equal loudness
14945 @item b_weighting(f)
14946 B-weighting of equal loudness
14947 @item c_weighting(f)
14948 C-weighting of equal loudness.
14949 @end table
14950 Default value is @code{sono_v}.
14951
14952 @item sono_g, gamma
14953 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
14954 higher gamma makes the spectrum having more range. Default value is @code{3}.
14955 Acceptable range is @code{[1, 7]}.
14956
14957 @item bar_g, gamma2
14958 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
14959 @code{[1, 7]}.
14960
14961 @item timeclamp, tc
14962 Specify the transform timeclamp. At low frequency, there is trade-off between
14963 accuracy in time domain and frequency domain. If timeclamp is lower,
14964 event in time domain is represented more accurately (such as fast bass drum),
14965 otherwise event in frequency domain is represented more accurately
14966 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
14967
14968 @item basefreq
14969 Specify the transform base frequency. Default value is @code{20.01523126408007475},
14970 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
14971
14972 @item endfreq
14973 Specify the transform end frequency. Default value is @code{20495.59681441799654},
14974 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
14975
14976 @item coeffclamp
14977 This option is deprecated and ignored.
14978
14979 @item tlength
14980 Specify the transform length in time domain. Use this option to control accuracy
14981 trade-off between time domain and frequency domain at every frequency sample.
14982 It can contain variables:
14983 @table @option
14984 @item frequency, freq, f
14985 the frequency where it is evaluated
14986 @item timeclamp, tc
14987 the value of @var{timeclamp} option.
14988 @end table
14989 Default value is @code{384*tc/(384+tc*f)}.
14990
14991 @item count
14992 Specify the transform count for every video frame. Default value is @code{6}.
14993 Acceptable range is @code{[1, 30]}.
14994
14995 @item fcount
14996 Specify the transform count for every single pixel. Default value is @code{0},
14997 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
14998
14999 @item fontfile
15000 Specify font file for use with freetype to draw the axis. If not specified,
15001 use embedded font. Note that drawing with font file or embedded font is not
15002 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
15003 option instead.
15004
15005 @item fontcolor
15006 Specify font color expression. This is arithmetic expression that should return
15007 integer value 0xRRGGBB. It can contain variables:
15008 @table @option
15009 @item frequency, freq, f
15010 the frequency where it is evaluated
15011 @item timeclamp, tc
15012 the value of @var{timeclamp} option
15013 @end table
15014 and functions:
15015 @table @option
15016 @item midi(f)
15017 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
15018 @item r(x), g(x), b(x)
15019 red, green, and blue value of intensity x.
15020 @end table
15021 Default value is @code{st(0, (midi(f)-59.5)/12);
15022 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
15023 r(1-ld(1)) + b(ld(1))}.
15024
15025 @item axisfile
15026 Specify image file to draw the axis. This option override @var{fontfile} and
15027 @var{fontcolor} option.
15028
15029 @item axis, text
15030 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
15031 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
15032 Default value is @code{1}.
15033
15034 @end table
15035
15036 @subsection Examples
15037
15038 @itemize
15039 @item
15040 Playing audio while showing the spectrum:
15041 @example
15042 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
15043 @end example
15044
15045 @item
15046 Same as above, but with frame rate 30 fps:
15047 @example
15048 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
15049 @end example
15050
15051 @item
15052 Playing at 1280x720:
15053 @example
15054 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
15055 @end example
15056
15057 @item
15058 Disable sonogram display:
15059 @example
15060 sono_h=0
15061 @end example
15062
15063 @item
15064 A1 and its harmonics: A1, A2, (near)E3, A3:
15065 @example
15066 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),
15067                  asplit[a][out1]; [a] showcqt [out0]'
15068 @end example
15069
15070 @item
15071 Same as above, but with more accuracy in frequency domain:
15072 @example
15073 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),
15074                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
15075 @end example
15076
15077 @item
15078 Custom volume:
15079 @example
15080 bar_v=10:sono_v=bar_v*a_weighting(f)
15081 @end example
15082
15083 @item
15084 Custom gamma, now spectrum is linear to the amplitude.
15085 @example
15086 bar_g=2:sono_g=2
15087 @end example
15088
15089 @item
15090 Custom tlength equation:
15091 @example
15092 tc=0.33:tlength='st(0,0.17); 384*tc / (384 / ld(0) + tc*f /(1-ld(0))) + 384*tc / (tc*f / ld(0) + 384 /(1-ld(0)))'
15093 @end example
15094
15095 @item
15096 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
15097 @example
15098 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
15099 @end example
15100
15101 @item
15102 Custom frequency range with custom axis using image file:
15103 @example
15104 axisfile=myaxis.png:basefreq=40:endfreq=10000
15105 @end example
15106 @end itemize
15107
15108 @section showfreqs
15109
15110 Convert input audio to video output representing the audio power spectrum.
15111 Audio amplitude is on Y-axis while frequency is on X-axis.
15112
15113 The filter accepts the following options:
15114
15115 @table @option
15116 @item size, s
15117 Specify size of video. For the syntax of this option, check the
15118 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15119 Default is @code{1024x512}.
15120
15121 @item mode
15122 Set display mode.
15123 This set how each frequency bin will be represented.
15124
15125 It accepts the following values:
15126 @table @samp
15127 @item line
15128 @item bar
15129 @item dot
15130 @end table
15131 Default is @code{bar}.
15132
15133 @item ascale
15134 Set amplitude scale.
15135
15136 It accepts the following values:
15137 @table @samp
15138 @item lin
15139 Linear scale.
15140
15141 @item sqrt
15142 Square root scale.
15143
15144 @item cbrt
15145 Cubic root scale.
15146
15147 @item log
15148 Logarithmic scale.
15149 @end table
15150 Default is @code{log}.
15151
15152 @item fscale
15153 Set frequency scale.
15154
15155 It accepts the following values:
15156 @table @samp
15157 @item lin
15158 Linear scale.
15159
15160 @item log
15161 Logarithmic scale.
15162
15163 @item rlog
15164 Reverse logarithmic scale.
15165 @end table
15166 Default is @code{lin}.
15167
15168 @item win_size
15169 Set window size.
15170
15171 It accepts the following values:
15172 @table @samp
15173 @item w16
15174 @item w32
15175 @item w64
15176 @item w128
15177 @item w256
15178 @item w512
15179 @item w1024
15180 @item w2048
15181 @item w4096
15182 @item w8192
15183 @item w16384
15184 @item w32768
15185 @item w65536
15186 @end table
15187 Default is @code{w2048}
15188
15189 @item win_func
15190 Set windowing function.
15191
15192 It accepts the following values:
15193 @table @samp
15194 @item rect
15195 @item bartlett
15196 @item hanning
15197 @item hamming
15198 @item blackman
15199 @item welch
15200 @item flattop
15201 @item bharris
15202 @item bnuttall
15203 @item bhann
15204 @item sine
15205 @item nuttall
15206 @item lanczos
15207 @item gauss
15208 @item tukey
15209 @end table
15210 Default is @code{hanning}.
15211
15212 @item overlap
15213 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
15214 which means optimal overlap for selected window function will be picked.
15215
15216 @item averaging
15217 Set time averaging. Setting this to 0 will display current maximal peaks.
15218 Default is @code{1}, which means time averaging is disabled.
15219
15220 @item colors
15221 Specify list of colors separated by space or by '|' which will be used to
15222 draw channel frequencies. Unrecognized or missing colors will be replaced
15223 by white color.
15224
15225 @item cmode
15226 Set channel display mode.
15227
15228 It accepts the following values:
15229 @table @samp
15230 @item combined
15231 @item separate
15232 @end table
15233 Default is @code{combined}.
15234
15235 @end table
15236
15237 @anchor{showspectrum}
15238 @section showspectrum
15239
15240 Convert input audio to a video output, representing the audio frequency
15241 spectrum.
15242
15243 The filter accepts the following options:
15244
15245 @table @option
15246 @item size, s
15247 Specify the video size for the output. For the syntax of this option, check the
15248 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15249 Default value is @code{640x512}.
15250
15251 @item slide
15252 Specify how the spectrum should slide along the window.
15253
15254 It accepts the following values:
15255 @table @samp
15256 @item replace
15257 the samples start again on the left when they reach the right
15258 @item scroll
15259 the samples scroll from right to left
15260 @item rscroll
15261 the samples scroll from left to right
15262 @item fullframe
15263 frames are only produced when the samples reach the right
15264 @end table
15265
15266 Default value is @code{replace}.
15267
15268 @item mode
15269 Specify display mode.
15270
15271 It accepts the following values:
15272 @table @samp
15273 @item combined
15274 all channels are displayed in the same row
15275 @item separate
15276 all channels are displayed in separate rows
15277 @end table
15278
15279 Default value is @samp{combined}.
15280
15281 @item color
15282 Specify display color mode.
15283
15284 It accepts the following values:
15285 @table @samp
15286 @item channel
15287 each channel is displayed in a separate color
15288 @item intensity
15289 each channel is displayed using the same color scheme
15290 @item rainbow
15291 each channel is displayed using the rainbow color scheme
15292 @item moreland
15293 each channel is displayed using the moreland color scheme
15294 @item nebulae
15295 each channel is displayed using the nebulae color scheme
15296 @item fire
15297 each channel is displayed using the fire color scheme
15298 @item fiery
15299 each channel is displayed using the fiery color scheme
15300 @item fruit
15301 each channel is displayed using the fruit color scheme
15302 @item cool
15303 each channel is displayed using the cool color scheme
15304 @end table
15305
15306 Default value is @samp{channel}.
15307
15308 @item scale
15309 Specify scale used for calculating intensity color values.
15310
15311 It accepts the following values:
15312 @table @samp
15313 @item lin
15314 linear
15315 @item sqrt
15316 square root, default
15317 @item cbrt
15318 cubic root
15319 @item 4thrt
15320 4th root
15321 @item 5thrt
15322 5th root
15323 @item log
15324 logarithmic
15325 @end table
15326
15327 Default value is @samp{sqrt}.
15328
15329 @item saturation
15330 Set saturation modifier for displayed colors. Negative values provide
15331 alternative color scheme. @code{0} is no saturation at all.
15332 Saturation must be in [-10.0, 10.0] range.
15333 Default value is @code{1}.
15334
15335 @item win_func
15336 Set window function.
15337
15338 It accepts the following values:
15339 @table @samp
15340 @item rect
15341 @item bartlett
15342 @item hann
15343 @item hanning
15344 @item hamming
15345 @item blackman
15346 @item welch
15347 @item flattop
15348 @item bharris
15349 @item bnuttall
15350 @item bhann
15351 @item sine
15352 @item nuttall
15353 @item lanczos
15354 @item gauss
15355 @item tukey
15356 @end table
15357
15358 Default value is @code{hann}.
15359
15360 @item orientation
15361 Set orientation of time vs frequency axis. Can be @code{vertical} or
15362 @code{horizontal}. Default is @code{vertical}.
15363
15364 @item overlap
15365 Set ratio of overlap window. Default value is @code{0}.
15366 When value is @code{1} overlap is set to recommended size for specific
15367 window function currently used.
15368
15369 @item gain
15370 Set scale gain for calculating intensity color values.
15371 Default value is @code{1}.
15372
15373 @item data
15374 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
15375 @end table
15376
15377 The usage is very similar to the showwaves filter; see the examples in that
15378 section.
15379
15380 @subsection Examples
15381
15382 @itemize
15383 @item
15384 Large window with logarithmic color scaling:
15385 @example
15386 showspectrum=s=1280x480:scale=log
15387 @end example
15388
15389 @item
15390 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
15391 @example
15392 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15393              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
15394 @end example
15395 @end itemize
15396
15397 @section showspectrumpic
15398
15399 Convert input audio to a single video frame, representing the audio frequency
15400 spectrum.
15401
15402 The filter accepts the following options:
15403
15404 @table @option
15405 @item size, s
15406 Specify the video size for the output. For the syntax of this option, check the
15407 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15408 Default value is @code{4096x2048}.
15409
15410 @item mode
15411 Specify display mode.
15412
15413 It accepts the following values:
15414 @table @samp
15415 @item combined
15416 all channels are displayed in the same row
15417 @item separate
15418 all channels are displayed in separate rows
15419 @end table
15420 Default value is @samp{combined}.
15421
15422 @item color
15423 Specify display color mode.
15424
15425 It accepts the following values:
15426 @table @samp
15427 @item channel
15428 each channel is displayed in a separate color
15429 @item intensity
15430 each channel is displayed using the same color scheme
15431 @item rainbow
15432 each channel is displayed using the rainbow color scheme
15433 @item moreland
15434 each channel is displayed using the moreland color scheme
15435 @item nebulae
15436 each channel is displayed using the nebulae color scheme
15437 @item fire
15438 each channel is displayed using the fire color scheme
15439 @item fiery
15440 each channel is displayed using the fiery color scheme
15441 @item fruit
15442 each channel is displayed using the fruit color scheme
15443 @item cool
15444 each channel is displayed using the cool color scheme
15445 @end table
15446 Default value is @samp{intensity}.
15447
15448 @item scale
15449 Specify scale used for calculating intensity color values.
15450
15451 It accepts the following values:
15452 @table @samp
15453 @item lin
15454 linear
15455 @item sqrt
15456 square root, default
15457 @item cbrt
15458 cubic root
15459 @item 4thrt
15460 4th root
15461 @item 5thrt
15462 5th root
15463 @item log
15464 logarithmic
15465 @end table
15466 Default value is @samp{log}.
15467
15468 @item saturation
15469 Set saturation modifier for displayed colors. Negative values provide
15470 alternative color scheme. @code{0} is no saturation at all.
15471 Saturation must be in [-10.0, 10.0] range.
15472 Default value is @code{1}.
15473
15474 @item win_func
15475 Set window function.
15476
15477 It accepts the following values:
15478 @table @samp
15479 @item rect
15480 @item bartlett
15481 @item hann
15482 @item hanning
15483 @item hamming
15484 @item blackman
15485 @item welch
15486 @item flattop
15487 @item bharris
15488 @item bnuttall
15489 @item bhann
15490 @item sine
15491 @item nuttall
15492 @item lanczos
15493 @item gauss
15494 @item tukey
15495 @end table
15496 Default value is @code{hann}.
15497
15498 @item orientation
15499 Set orientation of time vs frequency axis. Can be @code{vertical} or
15500 @code{horizontal}. Default is @code{vertical}.
15501
15502 @item gain
15503 Set scale gain for calculating intensity color values.
15504 Default value is @code{1}.
15505
15506 @item legend
15507 Draw time and frequency axes and legends. Default is enabled.
15508 @end table
15509
15510 @subsection Examples
15511
15512 @itemize
15513 @item
15514 Extract an audio spectrogram of a whole audio track
15515 in a 1024x1024 picture using @command{ffmpeg}:
15516 @example
15517 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
15518 @end example
15519 @end itemize
15520
15521 @section showvolume
15522
15523 Convert input audio volume to a video output.
15524
15525 The filter accepts the following options:
15526
15527 @table @option
15528 @item rate, r
15529 Set video rate.
15530
15531 @item b
15532 Set border width, allowed range is [0, 5]. Default is 1.
15533
15534 @item w
15535 Set channel width, allowed range is [80, 1080]. Default is 400.
15536
15537 @item h
15538 Set channel height, allowed range is [1, 100]. Default is 20.
15539
15540 @item f
15541 Set fade, allowed range is [0.001, 1]. Default is 0.95.
15542
15543 @item c
15544 Set volume color expression.
15545
15546 The expression can use the following variables:
15547
15548 @table @option
15549 @item VOLUME
15550 Current max volume of channel in dB.
15551
15552 @item CHANNEL
15553 Current channel number, starting from 0.
15554 @end table
15555
15556 @item t
15557 If set, displays channel names. Default is enabled.
15558
15559 @item v
15560 If set, displays volume values. Default is enabled.
15561 @end table
15562
15563 @section showwaves
15564
15565 Convert input audio to a video output, representing the samples waves.
15566
15567 The filter accepts the following options:
15568
15569 @table @option
15570 @item size, s
15571 Specify the video size for the output. For the syntax of this option, check the
15572 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15573 Default value is @code{600x240}.
15574
15575 @item mode
15576 Set display mode.
15577
15578 Available values are:
15579 @table @samp
15580 @item point
15581 Draw a point for each sample.
15582
15583 @item line
15584 Draw a vertical line for each sample.
15585
15586 @item p2p
15587 Draw a point for each sample and a line between them.
15588
15589 @item cline
15590 Draw a centered vertical line for each sample.
15591 @end table
15592
15593 Default value is @code{point}.
15594
15595 @item n
15596 Set the number of samples which are printed on the same column. A
15597 larger value will decrease the frame rate. Must be a positive
15598 integer. This option can be set only if the value for @var{rate}
15599 is not explicitly specified.
15600
15601 @item rate, r
15602 Set the (approximate) output frame rate. This is done by setting the
15603 option @var{n}. Default value is "25".
15604
15605 @item split_channels
15606 Set if channels should be drawn separately or overlap. Default value is 0.
15607
15608 @item colors
15609 Set colors separated by '|' which are going to be used for drawing of each channel.
15610
15611 @item scale
15612 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
15613 Default is linear.
15614
15615 @end table
15616
15617 @subsection Examples
15618
15619 @itemize
15620 @item
15621 Output the input file audio and the corresponding video representation
15622 at the same time:
15623 @example
15624 amovie=a.mp3,asplit[out0],showwaves[out1]
15625 @end example
15626
15627 @item
15628 Create a synthetic signal and show it with showwaves, forcing a
15629 frame rate of 30 frames per second:
15630 @example
15631 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
15632 @end example
15633 @end itemize
15634
15635 @section showwavespic
15636
15637 Convert input audio to a single video frame, representing the samples waves.
15638
15639 The filter accepts the following options:
15640
15641 @table @option
15642 @item size, s
15643 Specify the video size for the output. For the syntax of this option, check the
15644 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15645 Default value is @code{600x240}.
15646
15647 @item split_channels
15648 Set if channels should be drawn separately or overlap. Default value is 0.
15649
15650 @item colors
15651 Set colors separated by '|' which are going to be used for drawing of each channel.
15652
15653 @item scale
15654 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
15655 Default is linear.
15656 @end table
15657
15658 @subsection Examples
15659
15660 @itemize
15661 @item
15662 Extract a channel split representation of the wave form of a whole audio track
15663 in a 1024x800 picture using @command{ffmpeg}:
15664 @example
15665 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
15666 @end example
15667
15668 @item
15669 Colorize the waveform with colorchannelmixer. This example will make
15670 the waveform a green color approximately RGB(66,217,150). Additional
15671 channels will be shades of this color.
15672 @example
15673 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
15674 @end example
15675 @end itemize
15676
15677 @section spectrumsynth
15678
15679 Sythesize audio from 2 input video spectrums, first input stream represents
15680 magnitude across time and second represents phase across time.
15681 The filter will transform from frequency domain as displayed in videos back
15682 to time domain as presented in audio output.
15683
15684 This filter is primarly created for reversing processed @ref{showspectrum}
15685 filter outputs, but can synthesize sound from other spectrograms too.
15686 But in such case results are going to be poor if the phase data is not
15687 available, because in such cases phase data need to be recreated, usually
15688 its just recreated from random noise.
15689 For best results use gray only output (@code{channel} color mode in
15690 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
15691 @code{lin} scale for phase video. To produce phase, for 2nd video, use
15692 @code{data} option. Inputs videos should generally use @code{fullframe}
15693 slide mode as that saves resources needed for decoding video.
15694
15695 The filter accepts the following options:
15696
15697 @table @option
15698 @item sample_rate
15699 Specify sample rate of output audio, the sample rate of audio from which
15700 spectrum was generated may differ.
15701
15702 @item channels
15703 Set number of channels represented in input video spectrums.
15704
15705 @item scale
15706 Set scale which was used when generating magnitude input spectrum.
15707 Can be @code{lin} or @code{log}. Default is @code{log}.
15708
15709 @item slide
15710 Set slide which was used when generating inputs spectrums.
15711 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
15712 Default is @code{fullframe}.
15713
15714 @item win_func
15715 Set window function used for resynthesis.
15716
15717 @item overlap
15718 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
15719 which means optimal overlap for selected window function will be picked.
15720
15721 @item orientation
15722 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
15723 Default is @code{vertical}.
15724 @end table
15725
15726 @subsection Examples
15727
15728 @itemize
15729 @item
15730 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
15731 then resynthesize videos back to audio with spectrumsynth:
15732 @example
15733 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=log:overlap=0.875:color=channel:slide=fullframe:data=magnitude -an -c:v rawvideo magnitude.nut
15734 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=lin:overlap=0.875:color=channel:slide=fullframe:data=phase -an -c:v rawvideo phase.nut
15735 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
15736 @end example
15737 @end itemize
15738
15739 @section split, asplit
15740
15741 Split input into several identical outputs.
15742
15743 @code{asplit} works with audio input, @code{split} with video.
15744
15745 The filter accepts a single parameter which specifies the number of outputs. If
15746 unspecified, it defaults to 2.
15747
15748 @subsection Examples
15749
15750 @itemize
15751 @item
15752 Create two separate outputs from the same input:
15753 @example
15754 [in] split [out0][out1]
15755 @end example
15756
15757 @item
15758 To create 3 or more outputs, you need to specify the number of
15759 outputs, like in:
15760 @example
15761 [in] asplit=3 [out0][out1][out2]
15762 @end example
15763
15764 @item
15765 Create two separate outputs from the same input, one cropped and
15766 one padded:
15767 @example
15768 [in] split [splitout1][splitout2];
15769 [splitout1] crop=100:100:0:0    [cropout];
15770 [splitout2] pad=200:200:100:100 [padout];
15771 @end example
15772
15773 @item
15774 Create 5 copies of the input audio with @command{ffmpeg}:
15775 @example
15776 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
15777 @end example
15778 @end itemize
15779
15780 @section zmq, azmq
15781
15782 Receive commands sent through a libzmq client, and forward them to
15783 filters in the filtergraph.
15784
15785 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
15786 must be inserted between two video filters, @code{azmq} between two
15787 audio filters.
15788
15789 To enable these filters you need to install the libzmq library and
15790 headers and configure FFmpeg with @code{--enable-libzmq}.
15791
15792 For more information about libzmq see:
15793 @url{http://www.zeromq.org/}
15794
15795 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
15796 receives messages sent through a network interface defined by the
15797 @option{bind_address} option.
15798
15799 The received message must be in the form:
15800 @example
15801 @var{TARGET} @var{COMMAND} [@var{ARG}]
15802 @end example
15803
15804 @var{TARGET} specifies the target of the command, usually the name of
15805 the filter class or a specific filter instance name.
15806
15807 @var{COMMAND} specifies the name of the command for the target filter.
15808
15809 @var{ARG} is optional and specifies the optional argument list for the
15810 given @var{COMMAND}.
15811
15812 Upon reception, the message is processed and the corresponding command
15813 is injected into the filtergraph. Depending on the result, the filter
15814 will send a reply to the client, adopting the format:
15815 @example
15816 @var{ERROR_CODE} @var{ERROR_REASON}
15817 @var{MESSAGE}
15818 @end example
15819
15820 @var{MESSAGE} is optional.
15821
15822 @subsection Examples
15823
15824 Look at @file{tools/zmqsend} for an example of a zmq client which can
15825 be used to send commands processed by these filters.
15826
15827 Consider the following filtergraph generated by @command{ffplay}
15828 @example
15829 ffplay -dumpgraph 1 -f lavfi "
15830 color=s=100x100:c=red  [l];
15831 color=s=100x100:c=blue [r];
15832 nullsrc=s=200x100, zmq [bg];
15833 [bg][l]   overlay      [bg+l];
15834 [bg+l][r] overlay=x=100 "
15835 @end example
15836
15837 To change the color of the left side of the video, the following
15838 command can be used:
15839 @example
15840 echo Parsed_color_0 c yellow | tools/zmqsend
15841 @end example
15842
15843 To change the right side:
15844 @example
15845 echo Parsed_color_1 c pink | tools/zmqsend
15846 @end example
15847
15848 @c man end MULTIMEDIA FILTERS
15849
15850 @chapter Multimedia Sources
15851 @c man begin MULTIMEDIA SOURCES
15852
15853 Below is a description of the currently available multimedia sources.
15854
15855 @section amovie
15856
15857 This is the same as @ref{movie} source, except it selects an audio
15858 stream by default.
15859
15860 @anchor{movie}
15861 @section movie
15862
15863 Read audio and/or video stream(s) from a movie container.
15864
15865 It accepts the following parameters:
15866
15867 @table @option
15868 @item filename
15869 The name of the resource to read (not necessarily a file; it can also be a
15870 device or a stream accessed through some protocol).
15871
15872 @item format_name, f
15873 Specifies the format assumed for the movie to read, and can be either
15874 the name of a container or an input device. If not specified, the
15875 format is guessed from @var{movie_name} or by probing.
15876
15877 @item seek_point, sp
15878 Specifies the seek point in seconds. The frames will be output
15879 starting from this seek point. The parameter is evaluated with
15880 @code{av_strtod}, so the numerical value may be suffixed by an IS
15881 postfix. The default value is "0".
15882
15883 @item streams, s
15884 Specifies the streams to read. Several streams can be specified,
15885 separated by "+". The source will then have as many outputs, in the
15886 same order. The syntax is explained in the ``Stream specifiers''
15887 section in the ffmpeg manual. Two special names, "dv" and "da" specify
15888 respectively the default (best suited) video and audio stream. Default
15889 is "dv", or "da" if the filter is called as "amovie".
15890
15891 @item stream_index, si
15892 Specifies the index of the video stream to read. If the value is -1,
15893 the most suitable video stream will be automatically selected. The default
15894 value is "-1". Deprecated. If the filter is called "amovie", it will select
15895 audio instead of video.
15896
15897 @item loop
15898 Specifies how many times to read the stream in sequence.
15899 If the value is less than 1, the stream will be read again and again.
15900 Default value is "1".
15901
15902 Note that when the movie is looped the source timestamps are not
15903 changed, so it will generate non monotonically increasing timestamps.
15904 @end table
15905
15906 It allows overlaying a second video on top of the main input of
15907 a filtergraph, as shown in this graph:
15908 @example
15909 input -----------> deltapts0 --> overlay --> output
15910                                     ^
15911                                     |
15912 movie --> scale--> deltapts1 -------+
15913 @end example
15914 @subsection Examples
15915
15916 @itemize
15917 @item
15918 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
15919 on top of the input labelled "in":
15920 @example
15921 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
15922 [in] setpts=PTS-STARTPTS [main];
15923 [main][over] overlay=16:16 [out]
15924 @end example
15925
15926 @item
15927 Read from a video4linux2 device, and overlay it on top of the input
15928 labelled "in":
15929 @example
15930 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
15931 [in] setpts=PTS-STARTPTS [main];
15932 [main][over] overlay=16:16 [out]
15933 @end example
15934
15935 @item
15936 Read the first video stream and the audio stream with id 0x81 from
15937 dvd.vob; the video is connected to the pad named "video" and the audio is
15938 connected to the pad named "audio":
15939 @example
15940 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
15941 @end example
15942 @end itemize
15943
15944 @c man end MULTIMEDIA SOURCES