]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter: add readvitc filter
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section 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 firequalizer
2370 Apply FIR Equalization using arbitrary frequency response.
2371
2372 The filter accepts the following option:
2373
2374 @table @option
2375 @item gain
2376 Set gain curve equation (in dB). The expression can contain variables:
2377 @table @option
2378 @item f
2379 the evaluated frequency
2380 @item sr
2381 sample rate
2382 @item ch
2383 channel number, set to 0 when multichannels evaluation is disabled
2384 @item chid
2385 channel id, see libavutil/channel_layout.h, set to the first channel id when
2386 multichannels evaluation is disabled
2387 @item chs
2388 number of channels
2389 @item chlayout
2390 channel_layout, see libavutil/channel_layout.h
2391
2392 @end table
2393 and functions:
2394 @table @option
2395 @item gain_interpolate(f)
2396 interpolate gain on frequency f based on gain_entry
2397 @end table
2398 This option is also available as command. Default is @code{gain_interpolate(f)}.
2399
2400 @item gain_entry
2401 Set gain entry for gain_interpolate function. The expression can
2402 contain functions:
2403 @table @option
2404 @item entry(f, g)
2405 store gain entry at frequency f with value g
2406 @end table
2407 This option is also available as command.
2408
2409 @item delay
2410 Set filter delay in seconds. Higher value means more accurate.
2411 Default is @code{0.01}.
2412
2413 @item accuracy
2414 Set filter accuracy in Hz. Lower value means more accurate.
2415 Default is @code{5}.
2416
2417 @item wfunc
2418 Set window function. Acceptable values are:
2419 @table @option
2420 @item rectangular
2421 rectangular window, useful when gain curve is already smooth
2422 @item hann
2423 hann window (default)
2424 @item hamming
2425 hamming window
2426 @item blackman
2427 blackman window
2428 @item nuttall3
2429 3-terms continuous 1st derivative nuttall window
2430 @item mnuttall3
2431 minimum 3-terms discontinuous nuttall window
2432 @item nuttall
2433 4-terms continuous 1st derivative nuttall window
2434 @item bnuttall
2435 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2436 @item bharris
2437 blackman-harris window
2438 @end table
2439
2440 @item fixed
2441 If enabled, use fixed number of audio samples. This improves speed when
2442 filtering with large delay. Default is disabled.
2443
2444 @item multi
2445 Enable multichannels evaluation on gain. Default is disabled.
2446 @end table
2447
2448 @subsection Examples
2449 @itemize
2450 @item
2451 lowpass at 1000 Hz:
2452 @example
2453 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2454 @end example
2455 @item
2456 lowpass at 1000 Hz with gain_entry:
2457 @example
2458 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2459 @end example
2460 @item
2461 custom equalization:
2462 @example
2463 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2464 @end example
2465 @item
2466 higher delay:
2467 @example
2468 firequalizer=delay=0.1:fixed=on
2469 @end example
2470 @item
2471 lowpass on left channel, highpass on right channel:
2472 @example
2473 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2474 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2475 @end example
2476 @end itemize
2477
2478 @section flanger
2479 Apply a flanging effect to the audio.
2480
2481 The filter accepts the following options:
2482
2483 @table @option
2484 @item delay
2485 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2486
2487 @item depth
2488 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2489
2490 @item regen
2491 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2492 Default value is 0.
2493
2494 @item width
2495 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2496 Default value is 71.
2497
2498 @item speed
2499 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2500
2501 @item shape
2502 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2503 Default value is @var{sinusoidal}.
2504
2505 @item phase
2506 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2507 Default value is 25.
2508
2509 @item interp
2510 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2511 Default is @var{linear}.
2512 @end table
2513
2514 @section highpass
2515
2516 Apply a high-pass filter with 3dB point frequency.
2517 The filter can be either single-pole, or double-pole (the default).
2518 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2519
2520 The filter accepts the following options:
2521
2522 @table @option
2523 @item frequency, f
2524 Set frequency in Hz. Default is 3000.
2525
2526 @item poles, p
2527 Set number of poles. Default is 2.
2528
2529 @item width_type
2530 Set method to specify band-width of filter.
2531 @table @option
2532 @item h
2533 Hz
2534 @item q
2535 Q-Factor
2536 @item o
2537 octave
2538 @item s
2539 slope
2540 @end table
2541
2542 @item width, w
2543 Specify the band-width of a filter in width_type units.
2544 Applies only to double-pole filter.
2545 The default is 0.707q and gives a Butterworth response.
2546 @end table
2547
2548 @section join
2549
2550 Join multiple input streams into one multi-channel stream.
2551
2552 It accepts the following parameters:
2553 @table @option
2554
2555 @item inputs
2556 The number of input streams. It defaults to 2.
2557
2558 @item channel_layout
2559 The desired output channel layout. It defaults to stereo.
2560
2561 @item map
2562 Map channels from inputs to output. The argument is a '|'-separated list of
2563 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2564 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2565 can be either the name of the input channel (e.g. FL for front left) or its
2566 index in the specified input stream. @var{out_channel} is the name of the output
2567 channel.
2568 @end table
2569
2570 The filter will attempt to guess the mappings when they are not specified
2571 explicitly. It does so by first trying to find an unused matching input channel
2572 and if that fails it picks the first unused input channel.
2573
2574 Join 3 inputs (with properly set channel layouts):
2575 @example
2576 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2577 @end example
2578
2579 Build a 5.1 output from 6 single-channel streams:
2580 @example
2581 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2582 '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'
2583 out
2584 @end example
2585
2586 @section ladspa
2587
2588 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2589
2590 To enable compilation of this filter you need to configure FFmpeg with
2591 @code{--enable-ladspa}.
2592
2593 @table @option
2594 @item file, f
2595 Specifies the name of LADSPA plugin library to load. If the environment
2596 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2597 each one of the directories specified by the colon separated list in
2598 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2599 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2600 @file{/usr/lib/ladspa/}.
2601
2602 @item plugin, p
2603 Specifies the plugin within the library. Some libraries contain only
2604 one plugin, but others contain many of them. If this is not set filter
2605 will list all available plugins within the specified library.
2606
2607 @item controls, c
2608 Set the '|' separated list of controls which are zero or more floating point
2609 values that determine the behavior of the loaded plugin (for example delay,
2610 threshold or gain).
2611 Controls need to be defined using the following syntax:
2612 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2613 @var{valuei} is the value set on the @var{i}-th control.
2614 Alternatively they can be also defined using the following syntax:
2615 @var{value0}|@var{value1}|@var{value2}|..., where
2616 @var{valuei} is the value set on the @var{i}-th control.
2617 If @option{controls} is set to @code{help}, all available controls and
2618 their valid ranges are printed.
2619
2620 @item sample_rate, s
2621 Specify the sample rate, default to 44100. Only used if plugin have
2622 zero inputs.
2623
2624 @item nb_samples, n
2625 Set the number of samples per channel per each output frame, default
2626 is 1024. Only used if plugin have zero inputs.
2627
2628 @item duration, d
2629 Set the minimum duration of the sourced audio. See
2630 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2631 for the accepted syntax.
2632 Note that the resulting duration may be greater than the specified duration,
2633 as the generated audio is always cut at the end of a complete frame.
2634 If not specified, or the expressed duration is negative, the audio is
2635 supposed to be generated forever.
2636 Only used if plugin have zero inputs.
2637
2638 @end table
2639
2640 @subsection Examples
2641
2642 @itemize
2643 @item
2644 List all available plugins within amp (LADSPA example plugin) library:
2645 @example
2646 ladspa=file=amp
2647 @end example
2648
2649 @item
2650 List all available controls and their valid ranges for @code{vcf_notch}
2651 plugin from @code{VCF} library:
2652 @example
2653 ladspa=f=vcf:p=vcf_notch:c=help
2654 @end example
2655
2656 @item
2657 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2658 plugin library:
2659 @example
2660 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2661 @end example
2662
2663 @item
2664 Add reverberation to the audio using TAP-plugins
2665 (Tom's Audio Processing plugins):
2666 @example
2667 ladspa=file=tap_reverb:tap_reverb
2668 @end example
2669
2670 @item
2671 Generate white noise, with 0.2 amplitude:
2672 @example
2673 ladspa=file=cmt:noise_source_white:c=c0=.2
2674 @end example
2675
2676 @item
2677 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2678 @code{C* Audio Plugin Suite} (CAPS) library:
2679 @example
2680 ladspa=file=caps:Click:c=c1=20'
2681 @end example
2682
2683 @item
2684 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2685 @example
2686 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2687 @end example
2688
2689 @item
2690 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2691 @code{SWH Plugins} collection:
2692 @example
2693 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2694 @end example
2695
2696 @item
2697 Attenuate low frequencies using Multiband EQ from Steve Harris
2698 @code{SWH Plugins} collection:
2699 @example
2700 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2701 @end example
2702 @end itemize
2703
2704 @subsection Commands
2705
2706 This filter supports the following commands:
2707 @table @option
2708 @item cN
2709 Modify the @var{N}-th control value.
2710
2711 If the specified value is not valid, it is ignored and prior one is kept.
2712 @end table
2713
2714 @section lowpass
2715
2716 Apply a low-pass filter with 3dB point frequency.
2717 The filter can be either single-pole or double-pole (the default).
2718 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2719
2720 The filter accepts the following options:
2721
2722 @table @option
2723 @item frequency, f
2724 Set frequency in Hz. Default is 500.
2725
2726 @item poles, p
2727 Set number of poles. Default is 2.
2728
2729 @item width_type
2730 Set method to specify band-width of filter.
2731 @table @option
2732 @item h
2733 Hz
2734 @item q
2735 Q-Factor
2736 @item o
2737 octave
2738 @item s
2739 slope
2740 @end table
2741
2742 @item width, w
2743 Specify the band-width of a filter in width_type units.
2744 Applies only to double-pole filter.
2745 The default is 0.707q and gives a Butterworth response.
2746 @end table
2747
2748 @anchor{pan}
2749 @section pan
2750
2751 Mix channels with specific gain levels. The filter accepts the output
2752 channel layout followed by a set of channels definitions.
2753
2754 This filter is also designed to efficiently remap the channels of an audio
2755 stream.
2756
2757 The filter accepts parameters of the form:
2758 "@var{l}|@var{outdef}|@var{outdef}|..."
2759
2760 @table @option
2761 @item l
2762 output channel layout or number of channels
2763
2764 @item outdef
2765 output channel specification, of the form:
2766 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2767
2768 @item out_name
2769 output channel to define, either a channel name (FL, FR, etc.) or a channel
2770 number (c0, c1, etc.)
2771
2772 @item gain
2773 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2774
2775 @item in_name
2776 input channel to use, see out_name for details; it is not possible to mix
2777 named and numbered input channels
2778 @end table
2779
2780 If the `=' in a channel specification is replaced by `<', then the gains for
2781 that specification will be renormalized so that the total is 1, thus
2782 avoiding clipping noise.
2783
2784 @subsection Mixing examples
2785
2786 For example, if you want to down-mix from stereo to mono, but with a bigger
2787 factor for the left channel:
2788 @example
2789 pan=1c|c0=0.9*c0+0.1*c1
2790 @end example
2791
2792 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2793 7-channels surround:
2794 @example
2795 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2796 @end example
2797
2798 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2799 that should be preferred (see "-ac" option) unless you have very specific
2800 needs.
2801
2802 @subsection Remapping examples
2803
2804 The channel remapping will be effective if, and only if:
2805
2806 @itemize
2807 @item gain coefficients are zeroes or ones,
2808 @item only one input per channel output,
2809 @end itemize
2810
2811 If all these conditions are satisfied, the filter will notify the user ("Pure
2812 channel mapping detected"), and use an optimized and lossless method to do the
2813 remapping.
2814
2815 For example, if you have a 5.1 source and want a stereo audio stream by
2816 dropping the extra channels:
2817 @example
2818 pan="stereo| c0=FL | c1=FR"
2819 @end example
2820
2821 Given the same source, you can also switch front left and front right channels
2822 and keep the input channel layout:
2823 @example
2824 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2825 @end example
2826
2827 If the input is a stereo audio stream, you can mute the front left channel (and
2828 still keep the stereo channel layout) with:
2829 @example
2830 pan="stereo|c1=c1"
2831 @end example
2832
2833 Still with a stereo audio stream input, you can copy the right channel in both
2834 front left and right:
2835 @example
2836 pan="stereo| c0=FR | c1=FR"
2837 @end example
2838
2839 @section replaygain
2840
2841 ReplayGain scanner filter. This filter takes an audio stream as an input and
2842 outputs it unchanged.
2843 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2844
2845 @section resample
2846
2847 Convert the audio sample format, sample rate and channel layout. It is
2848 not meant to be used directly.
2849
2850 @section rubberband
2851 Apply time-stretching and pitch-shifting with librubberband.
2852
2853 The filter accepts the following options:
2854
2855 @table @option
2856 @item tempo
2857 Set tempo scale factor.
2858
2859 @item pitch
2860 Set pitch scale factor.
2861
2862 @item transients
2863 Set transients detector.
2864 Possible values are:
2865 @table @var
2866 @item crisp
2867 @item mixed
2868 @item smooth
2869 @end table
2870
2871 @item detector
2872 Set detector.
2873 Possible values are:
2874 @table @var
2875 @item compound
2876 @item percussive
2877 @item soft
2878 @end table
2879
2880 @item phase
2881 Set phase.
2882 Possible values are:
2883 @table @var
2884 @item laminar
2885 @item independent
2886 @end table
2887
2888 @item window
2889 Set processing window size.
2890 Possible values are:
2891 @table @var
2892 @item standard
2893 @item short
2894 @item long
2895 @end table
2896
2897 @item smoothing
2898 Set smoothing.
2899 Possible values are:
2900 @table @var
2901 @item off
2902 @item on
2903 @end table
2904
2905 @item formant
2906 Enable formant preservation when shift pitching.
2907 Possible values are:
2908 @table @var
2909 @item shifted
2910 @item preserved
2911 @end table
2912
2913 @item pitchq
2914 Set pitch quality.
2915 Possible values are:
2916 @table @var
2917 @item quality
2918 @item speed
2919 @item consistency
2920 @end table
2921
2922 @item channels
2923 Set channels.
2924 Possible values are:
2925 @table @var
2926 @item apart
2927 @item together
2928 @end table
2929 @end table
2930
2931 @section sidechaincompress
2932
2933 This filter acts like normal compressor but has the ability to compress
2934 detected signal using second input signal.
2935 It needs two input streams and returns one output stream.
2936 First input stream will be processed depending on second stream signal.
2937 The filtered signal then can be filtered with other filters in later stages of
2938 processing. See @ref{pan} and @ref{amerge} filter.
2939
2940 The filter accepts the following options:
2941
2942 @table @option
2943 @item level_in
2944 Set input gain. Default is 1. Range is between 0.015625 and 64.
2945
2946 @item threshold
2947 If a signal of second stream raises above this level it will affect the gain
2948 reduction of first stream.
2949 By default is 0.125. Range is between 0.00097563 and 1.
2950
2951 @item ratio
2952 Set a ratio about which the signal is reduced. 1:2 means that if the level
2953 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2954 Default is 2. Range is between 1 and 20.
2955
2956 @item attack
2957 Amount of milliseconds the signal has to rise above the threshold before gain
2958 reduction starts. Default is 20. Range is between 0.01 and 2000.
2959
2960 @item release
2961 Amount of milliseconds the signal has to fall below the threshold before
2962 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2963
2964 @item makeup
2965 Set the amount by how much signal will be amplified after processing.
2966 Default is 2. Range is from 1 and 64.
2967
2968 @item knee
2969 Curve the sharp knee around the threshold to enter gain reduction more softly.
2970 Default is 2.82843. Range is between 1 and 8.
2971
2972 @item link
2973 Choose if the @code{average} level between all channels of side-chain stream
2974 or the louder(@code{maximum}) channel of side-chain stream affects the
2975 reduction. Default is @code{average}.
2976
2977 @item detection
2978 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2979 of @code{rms}. Default is @code{rms} which is mainly smoother.
2980
2981 @item level_sc
2982 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
2983
2984 @item mix
2985 How much to use compressed signal in output. Default is 1.
2986 Range is between 0 and 1.
2987 @end table
2988
2989 @subsection Examples
2990
2991 @itemize
2992 @item
2993 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2994 depending on the signal of 2nd input and later compressed signal to be
2995 merged with 2nd input:
2996 @example
2997 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2998 @end example
2999 @end itemize
3000
3001 @section sidechaingate
3002
3003 A sidechain gate acts like a normal (wideband) gate but has the ability to
3004 filter the detected signal before sending it to the gain reduction stage.
3005 Normally a gate uses the full range signal to detect a level above the
3006 threshold.
3007 For example: If you cut all lower frequencies from your sidechain signal
3008 the gate will decrease the volume of your track only if not enough highs
3009 appear. With this technique you are able to reduce the resonation of a
3010 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3011 guitar.
3012 It needs two input streams and returns one output stream.
3013 First input stream will be processed depending on second stream signal.
3014
3015 The filter accepts the following options:
3016
3017 @table @option
3018 @item level_in
3019 Set input level before filtering.
3020 Default is 1. Allowed range is from 0.015625 to 64.
3021
3022 @item range
3023 Set the level of gain reduction when the signal is below the threshold.
3024 Default is 0.06125. Allowed range is from 0 to 1.
3025
3026 @item threshold
3027 If a signal rises above this level the gain reduction is released.
3028 Default is 0.125. Allowed range is from 0 to 1.
3029
3030 @item ratio
3031 Set a ratio about which the signal is reduced.
3032 Default is 2. Allowed range is from 1 to 9000.
3033
3034 @item attack
3035 Amount of milliseconds the signal has to rise above the threshold before gain
3036 reduction stops.
3037 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3038
3039 @item release
3040 Amount of milliseconds the signal has to fall below the threshold before the
3041 reduction is increased again. Default is 250 milliseconds.
3042 Allowed range is from 0.01 to 9000.
3043
3044 @item makeup
3045 Set amount of amplification of signal after processing.
3046 Default is 1. Allowed range is from 1 to 64.
3047
3048 @item knee
3049 Curve the sharp knee around the threshold to enter gain reduction more softly.
3050 Default is 2.828427125. Allowed range is from 1 to 8.
3051
3052 @item detection
3053 Choose if exact signal should be taken for detection or an RMS like one.
3054 Default is rms. Can be peak or rms.
3055
3056 @item link
3057 Choose if the average level between all channels or the louder channel affects
3058 the reduction.
3059 Default is average. Can be average or maximum.
3060
3061 @item level_sc
3062 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3063 @end table
3064
3065 @section silencedetect
3066
3067 Detect silence in an audio stream.
3068
3069 This filter logs a message when it detects that the input audio volume is less
3070 or equal to a noise tolerance value for a duration greater or equal to the
3071 minimum detected noise duration.
3072
3073 The printed times and duration are expressed in seconds.
3074
3075 The filter accepts the following options:
3076
3077 @table @option
3078 @item duration, d
3079 Set silence duration until notification (default is 2 seconds).
3080
3081 @item noise, n
3082 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3083 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3084 @end table
3085
3086 @subsection Examples
3087
3088 @itemize
3089 @item
3090 Detect 5 seconds of silence with -50dB noise tolerance:
3091 @example
3092 silencedetect=n=-50dB:d=5
3093 @end example
3094
3095 @item
3096 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3097 tolerance in @file{silence.mp3}:
3098 @example
3099 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3100 @end example
3101 @end itemize
3102
3103 @section silenceremove
3104
3105 Remove silence from the beginning, middle or end of the audio.
3106
3107 The filter accepts the following options:
3108
3109 @table @option
3110 @item start_periods
3111 This value is used to indicate if audio should be trimmed at beginning of
3112 the audio. A value of zero indicates no silence should be trimmed from the
3113 beginning. When specifying a non-zero value, it trims audio up until it
3114 finds non-silence. Normally, when trimming silence from beginning of audio
3115 the @var{start_periods} will be @code{1} but it can be increased to higher
3116 values to trim all audio up to specific count of non-silence periods.
3117 Default value is @code{0}.
3118
3119 @item start_duration
3120 Specify the amount of time that non-silence must be detected before it stops
3121 trimming audio. By increasing the duration, bursts of noises can be treated
3122 as silence and trimmed off. Default value is @code{0}.
3123
3124 @item start_threshold
3125 This indicates what sample value should be treated as silence. For digital
3126 audio, a value of @code{0} may be fine but for audio recorded from analog,
3127 you may wish to increase the value to account for background noise.
3128 Can be specified in dB (in case "dB" is appended to the specified value)
3129 or amplitude ratio. Default value is @code{0}.
3130
3131 @item stop_periods
3132 Set the count for trimming silence from the end of audio.
3133 To remove silence from the middle of a file, specify a @var{stop_periods}
3134 that is negative. This value is then treated as a positive value and is
3135 used to indicate the effect should restart processing as specified by
3136 @var{start_periods}, making it suitable for removing periods of silence
3137 in the middle of the audio.
3138 Default value is @code{0}.
3139
3140 @item stop_duration
3141 Specify a duration of silence that must exist before audio is not copied any
3142 more. By specifying a higher duration, silence that is wanted can be left in
3143 the audio.
3144 Default value is @code{0}.
3145
3146 @item stop_threshold
3147 This is the same as @option{start_threshold} but for trimming silence from
3148 the end of audio.
3149 Can be specified in dB (in case "dB" is appended to the specified value)
3150 or amplitude ratio. Default value is @code{0}.
3151
3152 @item leave_silence
3153 This indicate that @var{stop_duration} length of audio should be left intact
3154 at the beginning of each period of silence.
3155 For example, if you want to remove long pauses between words but do not want
3156 to remove the pauses completely. Default value is @code{0}.
3157
3158 @item detection
3159 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3160 and works better with digital silence which is exactly 0.
3161 Default value is @code{rms}.
3162
3163 @item window
3164 Set ratio used to calculate size of window for detecting silence.
3165 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3166 @end table
3167
3168 @subsection Examples
3169
3170 @itemize
3171 @item
3172 The following example shows how this filter can be used to start a recording
3173 that does not contain the delay at the start which usually occurs between
3174 pressing the record button and the start of the performance:
3175 @example
3176 silenceremove=1:5:0.02
3177 @end example
3178
3179 @item
3180 Trim all silence encountered from begining to end where there is more than 1
3181 second of silence in audio:
3182 @example
3183 silenceremove=0:0:0:-1:1:-90dB
3184 @end example
3185 @end itemize
3186
3187 @section sofalizer
3188
3189 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3190 loudspeakers around the user for binaural listening via headphones (audio
3191 formats up to 9 channels supported).
3192 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3193 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3194 Austrian Academy of Sciences.
3195
3196 To enable compilation of this filter you need to configure FFmpeg with
3197 @code{--enable-netcdf}.
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item sofa
3203 Set the SOFA file used for rendering.
3204
3205 @item gain
3206 Set gain applied to audio. Value is in dB. Default is 0.
3207
3208 @item rotation
3209 Set rotation of virtual loudspeakers in deg. Default is 0.
3210
3211 @item elevation
3212 Set elevation of virtual speakers in deg. Default is 0.
3213
3214 @item radius
3215 Set distance in meters between loudspeakers and the listener with near-field
3216 HRTFs. Default is 1.
3217
3218 @item type
3219 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3220 processing audio in time domain which is slow.
3221 @var{freq} is processing audio in frequency domain which is fast.
3222 Default is @var{freq}.
3223
3224 @item speakers
3225 Set custom positions of virtual loudspeakers. Syntax for this option is:
3226 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3227 Each virtual loudspeaker is described with short channel name following with
3228 azimuth and elevation in degreees.
3229 Each virtual loudspeaker description is separated by '|'.
3230 For example to override front left and front right channel positions use:
3231 'speakers=FL 45 15|FR 345 15'.
3232 Descriptions with unrecognised channel names are ignored.
3233 @end table
3234
3235 @subsection Examples
3236
3237 @itemize
3238 @item
3239 Using ClubFritz6 sofa file:
3240 @example
3241 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3242 @end example
3243
3244 @item
3245 Using ClubFritz12 sofa file and bigger radius with small rotation:
3246 @example
3247 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3248 @end example
3249
3250 @item
3251 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3252 and also with custom gain:
3253 @example
3254 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3255 @end example
3256 @end itemize
3257
3258 @section stereotools
3259
3260 This filter has some handy utilities to manage stereo signals, for converting
3261 M/S stereo recordings to L/R signal while having control over the parameters
3262 or spreading the stereo image of master track.
3263
3264 The filter accepts the following options:
3265
3266 @table @option
3267 @item level_in
3268 Set input level before filtering for both channels. Defaults is 1.
3269 Allowed range is from 0.015625 to 64.
3270
3271 @item level_out
3272 Set output level after filtering for both channels. Defaults is 1.
3273 Allowed range is from 0.015625 to 64.
3274
3275 @item balance_in
3276 Set input balance between both channels. Default is 0.
3277 Allowed range is from -1 to 1.
3278
3279 @item balance_out
3280 Set output balance between both channels. Default is 0.
3281 Allowed range is from -1 to 1.
3282
3283 @item softclip
3284 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3285 clipping. Disabled by default.
3286
3287 @item mutel
3288 Mute the left channel. Disabled by default.
3289
3290 @item muter
3291 Mute the right channel. Disabled by default.
3292
3293 @item phasel
3294 Change the phase of the left channel. Disabled by default.
3295
3296 @item phaser
3297 Change the phase of the right channel. Disabled by default.
3298
3299 @item mode
3300 Set stereo mode. Available values are:
3301
3302 @table @samp
3303 @item lr>lr
3304 Left/Right to Left/Right, this is default.
3305
3306 @item lr>ms
3307 Left/Right to Mid/Side.
3308
3309 @item ms>lr
3310 Mid/Side to Left/Right.
3311
3312 @item lr>ll
3313 Left/Right to Left/Left.
3314
3315 @item lr>rr
3316 Left/Right to Right/Right.
3317
3318 @item lr>l+r
3319 Left/Right to Left + Right.
3320
3321 @item lr>rl
3322 Left/Right to Right/Left.
3323 @end table
3324
3325 @item slev
3326 Set level of side signal. Default is 1.
3327 Allowed range is from 0.015625 to 64.
3328
3329 @item sbal
3330 Set balance of side signal. Default is 0.
3331 Allowed range is from -1 to 1.
3332
3333 @item mlev
3334 Set level of the middle signal. Default is 1.
3335 Allowed range is from 0.015625 to 64.
3336
3337 @item mpan
3338 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3339
3340 @item base
3341 Set stereo base between mono and inversed channels. Default is 0.
3342 Allowed range is from -1 to 1.
3343
3344 @item delay
3345 Set delay in milliseconds how much to delay left from right channel and
3346 vice versa. Default is 0. Allowed range is from -20 to 20.
3347
3348 @item sclevel
3349 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3350
3351 @item phase
3352 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3353 @end table
3354
3355 @subsection Examples
3356
3357 @itemize
3358 @item
3359 Apply karaoke like effect:
3360 @example
3361 stereotools=mlev=0.015625
3362 @end example
3363
3364 @item
3365 Convert M/S signal to L/R:
3366 @example
3367 "stereotools=mode=ms>lr"
3368 @end example
3369 @end itemize
3370
3371 @section stereowiden
3372
3373 This filter enhance the stereo effect by suppressing signal common to both
3374 channels and by delaying the signal of left into right and vice versa,
3375 thereby widening the stereo effect.
3376
3377 The filter accepts the following options:
3378
3379 @table @option
3380 @item delay
3381 Time in milliseconds of the delay of left signal into right and vice versa.
3382 Default is 20 milliseconds.
3383
3384 @item feedback
3385 Amount of gain in delayed signal into right and vice versa. Gives a delay
3386 effect of left signal in right output and vice versa which gives widening
3387 effect. Default is 0.3.
3388
3389 @item crossfeed
3390 Cross feed of left into right with inverted phase. This helps in suppressing
3391 the mono. If the value is 1 it will cancel all the signal common to both
3392 channels. Default is 0.3.
3393
3394 @item drymix
3395 Set level of input signal of original channel. Default is 0.8.
3396 @end table
3397
3398 @section treble
3399
3400 Boost or cut treble (upper) frequencies of the audio using a two-pole
3401 shelving filter with a response similar to that of a standard
3402 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3403
3404 The filter accepts the following options:
3405
3406 @table @option
3407 @item gain, g
3408 Give the gain at whichever is the lower of ~22 kHz and the
3409 Nyquist frequency. Its useful range is about -20 (for a large cut)
3410 to +20 (for a large boost). Beware of clipping when using a positive gain.
3411
3412 @item frequency, f
3413 Set the filter's central frequency and so can be used
3414 to extend or reduce the frequency range to be boosted or cut.
3415 The default value is @code{3000} Hz.
3416
3417 @item width_type
3418 Set method to specify band-width of filter.
3419 @table @option
3420 @item h
3421 Hz
3422 @item q
3423 Q-Factor
3424 @item o
3425 octave
3426 @item s
3427 slope
3428 @end table
3429
3430 @item width, w
3431 Determine how steep is the filter's shelf transition.
3432 @end table
3433
3434 @section tremolo
3435
3436 Sinusoidal amplitude modulation.
3437
3438 The filter accepts the following options:
3439
3440 @table @option
3441 @item f
3442 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3443 (20 Hz or lower) will result in a tremolo effect.
3444 This filter may also be used as a ring modulator by specifying
3445 a modulation frequency higher than 20 Hz.
3446 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3447
3448 @item d
3449 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3450 Default value is 0.5.
3451 @end table
3452
3453 @section vibrato
3454
3455 Sinusoidal phase modulation.
3456
3457 The filter accepts the following options:
3458
3459 @table @option
3460 @item f
3461 Modulation frequency in Hertz.
3462 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3463
3464 @item d
3465 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3466 Default value is 0.5.
3467 @end table
3468
3469 @section volume
3470
3471 Adjust the input audio volume.
3472
3473 It accepts the following parameters:
3474 @table @option
3475
3476 @item volume
3477 Set audio volume expression.
3478
3479 Output values are clipped to the maximum value.
3480
3481 The output audio volume is given by the relation:
3482 @example
3483 @var{output_volume} = @var{volume} * @var{input_volume}
3484 @end example
3485
3486 The default value for @var{volume} is "1.0".
3487
3488 @item precision
3489 This parameter represents the mathematical precision.
3490
3491 It determines which input sample formats will be allowed, which affects the
3492 precision of the volume scaling.
3493
3494 @table @option
3495 @item fixed
3496 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3497 @item float
3498 32-bit floating-point; this limits input sample format to FLT. (default)
3499 @item double
3500 64-bit floating-point; this limits input sample format to DBL.
3501 @end table
3502
3503 @item replaygain
3504 Choose the behaviour on encountering ReplayGain side data in input frames.
3505
3506 @table @option
3507 @item drop
3508 Remove ReplayGain side data, ignoring its contents (the default).
3509
3510 @item ignore
3511 Ignore ReplayGain side data, but leave it in the frame.
3512
3513 @item track
3514 Prefer the track gain, if present.
3515
3516 @item album
3517 Prefer the album gain, if present.
3518 @end table
3519
3520 @item replaygain_preamp
3521 Pre-amplification gain in dB to apply to the selected replaygain gain.
3522
3523 Default value for @var{replaygain_preamp} is 0.0.
3524
3525 @item eval
3526 Set when the volume expression is evaluated.
3527
3528 It accepts the following values:
3529 @table @samp
3530 @item once
3531 only evaluate expression once during the filter initialization, or
3532 when the @samp{volume} command is sent
3533
3534 @item frame
3535 evaluate expression for each incoming frame
3536 @end table
3537
3538 Default value is @samp{once}.
3539 @end table
3540
3541 The volume expression can contain the following parameters.
3542
3543 @table @option
3544 @item n
3545 frame number (starting at zero)
3546 @item nb_channels
3547 number of channels
3548 @item nb_consumed_samples
3549 number of samples consumed by the filter
3550 @item nb_samples
3551 number of samples in the current frame
3552 @item pos
3553 original frame position in the file
3554 @item pts
3555 frame PTS
3556 @item sample_rate
3557 sample rate
3558 @item startpts
3559 PTS at start of stream
3560 @item startt
3561 time at start of stream
3562 @item t
3563 frame time
3564 @item tb
3565 timestamp timebase
3566 @item volume
3567 last set volume value
3568 @end table
3569
3570 Note that when @option{eval} is set to @samp{once} only the
3571 @var{sample_rate} and @var{tb} variables are available, all other
3572 variables will evaluate to NAN.
3573
3574 @subsection Commands
3575
3576 This filter supports the following commands:
3577 @table @option
3578 @item volume
3579 Modify the volume expression.
3580 The command accepts the same syntax of the corresponding option.
3581
3582 If the specified expression is not valid, it is kept at its current
3583 value.
3584 @item replaygain_noclip
3585 Prevent clipping by limiting the gain applied.
3586
3587 Default value for @var{replaygain_noclip} is 1.
3588
3589 @end table
3590
3591 @subsection Examples
3592
3593 @itemize
3594 @item
3595 Halve the input audio volume:
3596 @example
3597 volume=volume=0.5
3598 volume=volume=1/2
3599 volume=volume=-6.0206dB
3600 @end example
3601
3602 In all the above example the named key for @option{volume} can be
3603 omitted, for example like in:
3604 @example
3605 volume=0.5
3606 @end example
3607
3608 @item
3609 Increase input audio power by 6 decibels using fixed-point precision:
3610 @example
3611 volume=volume=6dB:precision=fixed
3612 @end example
3613
3614 @item
3615 Fade volume after time 10 with an annihilation period of 5 seconds:
3616 @example
3617 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3618 @end example
3619 @end itemize
3620
3621 @section volumedetect
3622
3623 Detect the volume of the input video.
3624
3625 The filter has no parameters. The input is not modified. Statistics about
3626 the volume will be printed in the log when the input stream end is reached.
3627
3628 In particular it will show the mean volume (root mean square), maximum
3629 volume (on a per-sample basis), and the beginning of a histogram of the
3630 registered volume values (from the maximum value to a cumulated 1/1000 of
3631 the samples).
3632
3633 All volumes are in decibels relative to the maximum PCM value.
3634
3635 @subsection Examples
3636
3637 Here is an excerpt of the output:
3638 @example
3639 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3640 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3641 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3642 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3643 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3644 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3645 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3646 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3647 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3648 @end example
3649
3650 It means that:
3651 @itemize
3652 @item
3653 The mean square energy is approximately -27 dB, or 10^-2.7.
3654 @item
3655 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3656 @item
3657 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3658 @end itemize
3659
3660 In other words, raising the volume by +4 dB does not cause any clipping,
3661 raising it by +5 dB causes clipping for 6 samples, etc.
3662
3663 @c man end AUDIO FILTERS
3664
3665 @chapter Audio Sources
3666 @c man begin AUDIO SOURCES
3667
3668 Below is a description of the currently available audio sources.
3669
3670 @section abuffer
3671
3672 Buffer audio frames, and make them available to the filter chain.
3673
3674 This source is mainly intended for a programmatic use, in particular
3675 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3676
3677 It accepts the following parameters:
3678 @table @option
3679
3680 @item time_base
3681 The timebase which will be used for timestamps of submitted frames. It must be
3682 either a floating-point number or in @var{numerator}/@var{denominator} form.
3683
3684 @item sample_rate
3685 The sample rate of the incoming audio buffers.
3686
3687 @item sample_fmt
3688 The sample format of the incoming audio buffers.
3689 Either a sample format name or its corresponding integer representation from
3690 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3691
3692 @item channel_layout
3693 The channel layout of the incoming audio buffers.
3694 Either a channel layout name from channel_layout_map in
3695 @file{libavutil/channel_layout.c} or its corresponding integer representation
3696 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3697
3698 @item channels
3699 The number of channels of the incoming audio buffers.
3700 If both @var{channels} and @var{channel_layout} are specified, then they
3701 must be consistent.
3702
3703 @end table
3704
3705 @subsection Examples
3706
3707 @example
3708 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3709 @end example
3710
3711 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3712 Since the sample format with name "s16p" corresponds to the number
3713 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3714 equivalent to:
3715 @example
3716 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3717 @end example
3718
3719 @section aevalsrc
3720
3721 Generate an audio signal specified by an expression.
3722
3723 This source accepts in input one or more expressions (one for each
3724 channel), which are evaluated and used to generate a corresponding
3725 audio signal.
3726
3727 This source accepts the following options:
3728
3729 @table @option
3730 @item exprs
3731 Set the '|'-separated expressions list for each separate channel. In case the
3732 @option{channel_layout} option is not specified, the selected channel layout
3733 depends on the number of provided expressions. Otherwise the last
3734 specified expression is applied to the remaining output channels.
3735
3736 @item channel_layout, c
3737 Set the channel layout. The number of channels in the specified layout
3738 must be equal to the number of specified expressions.
3739
3740 @item duration, d
3741 Set the minimum duration of the sourced audio. See
3742 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3743 for the accepted syntax.
3744 Note that the resulting duration may be greater than the specified
3745 duration, as the generated audio is always cut at the end of a
3746 complete frame.
3747
3748 If not specified, or the expressed duration is negative, the audio is
3749 supposed to be generated forever.
3750
3751 @item nb_samples, n
3752 Set the number of samples per channel per each output frame,
3753 default to 1024.
3754
3755 @item sample_rate, s
3756 Specify the sample rate, default to 44100.
3757 @end table
3758
3759 Each expression in @var{exprs} can contain the following constants:
3760
3761 @table @option
3762 @item n
3763 number of the evaluated sample, starting from 0
3764
3765 @item t
3766 time of the evaluated sample expressed in seconds, starting from 0
3767
3768 @item s
3769 sample rate
3770
3771 @end table
3772
3773 @subsection Examples
3774
3775 @itemize
3776 @item
3777 Generate silence:
3778 @example
3779 aevalsrc=0
3780 @end example
3781
3782 @item
3783 Generate a sin signal with frequency of 440 Hz, set sample rate to
3784 8000 Hz:
3785 @example
3786 aevalsrc="sin(440*2*PI*t):s=8000"
3787 @end example
3788
3789 @item
3790 Generate a two channels signal, specify the channel layout (Front
3791 Center + Back Center) explicitly:
3792 @example
3793 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3794 @end example
3795
3796 @item
3797 Generate white noise:
3798 @example
3799 aevalsrc="-2+random(0)"
3800 @end example
3801
3802 @item
3803 Generate an amplitude modulated signal:
3804 @example
3805 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3806 @end example
3807
3808 @item
3809 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3810 @example
3811 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3812 @end example
3813
3814 @end itemize
3815
3816 @section anullsrc
3817
3818 The null audio source, return unprocessed audio frames. It is mainly useful
3819 as a template and to be employed in analysis / debugging tools, or as
3820 the source for filters which ignore the input data (for example the sox
3821 synth filter).
3822
3823 This source accepts the following options:
3824
3825 @table @option
3826
3827 @item channel_layout, cl
3828
3829 Specifies the channel layout, and can be either an integer or a string
3830 representing a channel layout. The default value of @var{channel_layout}
3831 is "stereo".
3832
3833 Check the channel_layout_map definition in
3834 @file{libavutil/channel_layout.c} for the mapping between strings and
3835 channel layout values.
3836
3837 @item sample_rate, r
3838 Specifies the sample rate, and defaults to 44100.
3839
3840 @item nb_samples, n
3841 Set the number of samples per requested frames.
3842
3843 @end table
3844
3845 @subsection Examples
3846
3847 @itemize
3848 @item
3849 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3850 @example
3851 anullsrc=r=48000:cl=4
3852 @end example
3853
3854 @item
3855 Do the same operation with a more obvious syntax:
3856 @example
3857 anullsrc=r=48000:cl=mono
3858 @end example
3859 @end itemize
3860
3861 All the parameters need to be explicitly defined.
3862
3863 @section flite
3864
3865 Synthesize a voice utterance using the libflite library.
3866
3867 To enable compilation of this filter you need to configure FFmpeg with
3868 @code{--enable-libflite}.
3869
3870 Note that the flite library is not thread-safe.
3871
3872 The filter accepts the following options:
3873
3874 @table @option
3875
3876 @item list_voices
3877 If set to 1, list the names of the available voices and exit
3878 immediately. Default value is 0.
3879
3880 @item nb_samples, n
3881 Set the maximum number of samples per frame. Default value is 512.
3882
3883 @item textfile
3884 Set the filename containing the text to speak.
3885
3886 @item text
3887 Set the text to speak.
3888
3889 @item voice, v
3890 Set the voice to use for the speech synthesis. Default value is
3891 @code{kal}. See also the @var{list_voices} option.
3892 @end table
3893
3894 @subsection Examples
3895
3896 @itemize
3897 @item
3898 Read from file @file{speech.txt}, and synthesize the text using the
3899 standard flite voice:
3900 @example
3901 flite=textfile=speech.txt
3902 @end example
3903
3904 @item
3905 Read the specified text selecting the @code{slt} voice:
3906 @example
3907 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3908 @end example
3909
3910 @item
3911 Input text to ffmpeg:
3912 @example
3913 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3914 @end example
3915
3916 @item
3917 Make @file{ffplay} speak the specified text, using @code{flite} and
3918 the @code{lavfi} device:
3919 @example
3920 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3921 @end example
3922 @end itemize
3923
3924 For more information about libflite, check:
3925 @url{http://www.speech.cs.cmu.edu/flite/}
3926
3927 @section anoisesrc
3928
3929 Generate a noise audio signal.
3930
3931 The filter accepts the following options:
3932
3933 @table @option
3934 @item sample_rate, r
3935 Specify the sample rate. Default value is 48000 Hz.
3936
3937 @item amplitude, a
3938 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3939 is 1.0.
3940
3941 @item duration, d
3942 Specify the duration of the generated audio stream. Not specifying this option
3943 results in noise with an infinite length.
3944
3945 @item color, colour, c
3946 Specify the color of noise. Available noise colors are white, pink, and brown.
3947 Default color is white.
3948
3949 @item seed, s
3950 Specify a value used to seed the PRNG.
3951
3952 @item nb_samples, n
3953 Set the number of samples per each output frame, default is 1024.
3954 @end table
3955
3956 @subsection Examples
3957
3958 @itemize
3959
3960 @item
3961 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
3962 @example
3963 anoisesrc=d=60:c=pink:r=44100:a=0.5
3964 @end example
3965 @end itemize
3966
3967 @section sine
3968
3969 Generate an audio signal made of a sine wave with amplitude 1/8.
3970
3971 The audio signal is bit-exact.
3972
3973 The filter accepts the following options:
3974
3975 @table @option
3976
3977 @item frequency, f
3978 Set the carrier frequency. Default is 440 Hz.
3979
3980 @item beep_factor, b
3981 Enable a periodic beep every second with frequency @var{beep_factor} times
3982 the carrier frequency. Default is 0, meaning the beep is disabled.
3983
3984 @item sample_rate, r
3985 Specify the sample rate, default is 44100.
3986
3987 @item duration, d
3988 Specify the duration of the generated audio stream.
3989
3990 @item samples_per_frame
3991 Set the number of samples per output frame.
3992
3993 The expression can contain the following constants:
3994
3995 @table @option
3996 @item n
3997 The (sequential) number of the output audio frame, starting from 0.
3998
3999 @item pts
4000 The PTS (Presentation TimeStamp) of the output audio frame,
4001 expressed in @var{TB} units.
4002
4003 @item t
4004 The PTS of the output audio frame, expressed in seconds.
4005
4006 @item TB
4007 The timebase of the output audio frames.
4008 @end table
4009
4010 Default is @code{1024}.
4011 @end table
4012
4013 @subsection Examples
4014
4015 @itemize
4016
4017 @item
4018 Generate a simple 440 Hz sine wave:
4019 @example
4020 sine
4021 @end example
4022
4023 @item
4024 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4025 @example
4026 sine=220:4:d=5
4027 sine=f=220:b=4:d=5
4028 sine=frequency=220:beep_factor=4:duration=5
4029 @end example
4030
4031 @item
4032 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4033 pattern:
4034 @example
4035 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4036 @end example
4037 @end itemize
4038
4039 @c man end AUDIO SOURCES
4040
4041 @chapter Audio Sinks
4042 @c man begin AUDIO SINKS
4043
4044 Below is a description of the currently available audio sinks.
4045
4046 @section abuffersink
4047
4048 Buffer audio frames, and make them available to the end of filter chain.
4049
4050 This sink is mainly intended for programmatic use, in particular
4051 through the interface defined in @file{libavfilter/buffersink.h}
4052 or the options system.
4053
4054 It accepts a pointer to an AVABufferSinkContext structure, which
4055 defines the incoming buffers' formats, to be passed as the opaque
4056 parameter to @code{avfilter_init_filter} for initialization.
4057 @section anullsink
4058
4059 Null audio sink; do absolutely nothing with the input audio. It is
4060 mainly useful as a template and for use in analysis / debugging
4061 tools.
4062
4063 @c man end AUDIO SINKS
4064
4065 @chapter Video Filters
4066 @c man begin VIDEO FILTERS
4067
4068 When you configure your FFmpeg build, you can disable any of the
4069 existing filters using @code{--disable-filters}.
4070 The configure output will show the video filters included in your
4071 build.
4072
4073 Below is a description of the currently available video filters.
4074
4075 @section alphaextract
4076
4077 Extract the alpha component from the input as a grayscale video. This
4078 is especially useful with the @var{alphamerge} filter.
4079
4080 @section alphamerge
4081
4082 Add or replace the alpha component of the primary input with the
4083 grayscale value of a second input. This is intended for use with
4084 @var{alphaextract} to allow the transmission or storage of frame
4085 sequences that have alpha in a format that doesn't support an alpha
4086 channel.
4087
4088 For example, to reconstruct full frames from a normal YUV-encoded video
4089 and a separate video created with @var{alphaextract}, you might use:
4090 @example
4091 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4092 @end example
4093
4094 Since this filter is designed for reconstruction, it operates on frame
4095 sequences without considering timestamps, and terminates when either
4096 input reaches end of stream. This will cause problems if your encoding
4097 pipeline drops frames. If you're trying to apply an image as an
4098 overlay to a video stream, consider the @var{overlay} filter instead.
4099
4100 @section ass
4101
4102 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4103 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4104 Substation Alpha) subtitles files.
4105
4106 This filter accepts the following option in addition to the common options from
4107 the @ref{subtitles} filter:
4108
4109 @table @option
4110 @item shaping
4111 Set the shaping engine
4112
4113 Available values are:
4114 @table @samp
4115 @item auto
4116 The default libass shaping engine, which is the best available.
4117 @item simple
4118 Fast, font-agnostic shaper that can do only substitutions
4119 @item complex
4120 Slower shaper using OpenType for substitutions and positioning
4121 @end table
4122
4123 The default is @code{auto}.
4124 @end table
4125
4126 @section atadenoise
4127 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4128
4129 The filter accepts the following options:
4130
4131 @table @option
4132 @item 0a
4133 Set threshold A for 1st plane. Default is 0.02.
4134 Valid range is 0 to 0.3.
4135
4136 @item 0b
4137 Set threshold B for 1st plane. Default is 0.04.
4138 Valid range is 0 to 5.
4139
4140 @item 1a
4141 Set threshold A for 2nd plane. Default is 0.02.
4142 Valid range is 0 to 0.3.
4143
4144 @item 1b
4145 Set threshold B for 2nd plane. Default is 0.04.
4146 Valid range is 0 to 5.
4147
4148 @item 2a
4149 Set threshold A for 3rd plane. Default is 0.02.
4150 Valid range is 0 to 0.3.
4151
4152 @item 2b
4153 Set threshold B for 3rd plane. Default is 0.04.
4154 Valid range is 0 to 5.
4155
4156 Threshold A is designed to react on abrupt changes in the input signal and
4157 threshold B is designed to react on continuous changes in the input signal.
4158
4159 @item s
4160 Set number of frames filter will use for averaging. Default is 33. Must be odd
4161 number in range [5, 129].
4162 @end table
4163
4164 @section bbox
4165
4166 Compute the bounding box for the non-black pixels in the input frame
4167 luminance plane.
4168
4169 This filter computes the bounding box containing all the pixels with a
4170 luminance value greater than the minimum allowed value.
4171 The parameters describing the bounding box are printed on the filter
4172 log.
4173
4174 The filter accepts the following option:
4175
4176 @table @option
4177 @item min_val
4178 Set the minimal luminance value. Default is @code{16}.
4179 @end table
4180
4181 @section blackdetect
4182
4183 Detect video intervals that are (almost) completely black. Can be
4184 useful to detect chapter transitions, commercials, or invalid
4185 recordings. Output lines contains the time for the start, end and
4186 duration of the detected black interval expressed in seconds.
4187
4188 In order to display the output lines, you need to set the loglevel at
4189 least to the AV_LOG_INFO value.
4190
4191 The filter accepts the following options:
4192
4193 @table @option
4194 @item black_min_duration, d
4195 Set the minimum detected black duration expressed in seconds. It must
4196 be a non-negative floating point number.
4197
4198 Default value is 2.0.
4199
4200 @item picture_black_ratio_th, pic_th
4201 Set the threshold for considering a picture "black".
4202 Express the minimum value for the ratio:
4203 @example
4204 @var{nb_black_pixels} / @var{nb_pixels}
4205 @end example
4206
4207 for which a picture is considered black.
4208 Default value is 0.98.
4209
4210 @item pixel_black_th, pix_th
4211 Set the threshold for considering a pixel "black".
4212
4213 The threshold expresses the maximum pixel luminance value for which a
4214 pixel is considered "black". The provided value is scaled according to
4215 the following equation:
4216 @example
4217 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4218 @end example
4219
4220 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4221 the input video format, the range is [0-255] for YUV full-range
4222 formats and [16-235] for YUV non full-range formats.
4223
4224 Default value is 0.10.
4225 @end table
4226
4227 The following example sets the maximum pixel threshold to the minimum
4228 value, and detects only black intervals of 2 or more seconds:
4229 @example
4230 blackdetect=d=2:pix_th=0.00
4231 @end example
4232
4233 @section blackframe
4234
4235 Detect frames that are (almost) completely black. Can be useful to
4236 detect chapter transitions or commercials. Output lines consist of
4237 the frame number of the detected frame, the percentage of blackness,
4238 the position in the file if known or -1 and the timestamp in seconds.
4239
4240 In order to display the output lines, you need to set the loglevel at
4241 least to the AV_LOG_INFO value.
4242
4243 It accepts the following parameters:
4244
4245 @table @option
4246
4247 @item amount
4248 The percentage of the pixels that have to be below the threshold; it defaults to
4249 @code{98}.
4250
4251 @item threshold, thresh
4252 The threshold below which a pixel value is considered black; it defaults to
4253 @code{32}.
4254
4255 @end table
4256
4257 @section blend, tblend
4258
4259 Blend two video frames into each other.
4260
4261 The @code{blend} filter takes two input streams and outputs one
4262 stream, the first input is the "top" layer and second input is
4263 "bottom" layer.  Output terminates when shortest input terminates.
4264
4265 The @code{tblend} (time blend) filter takes two consecutive frames
4266 from one single stream, and outputs the result obtained by blending
4267 the new frame on top of the old frame.
4268
4269 A description of the accepted options follows.
4270
4271 @table @option
4272 @item c0_mode
4273 @item c1_mode
4274 @item c2_mode
4275 @item c3_mode
4276 @item all_mode
4277 Set blend mode for specific pixel component or all pixel components in case
4278 of @var{all_mode}. Default value is @code{normal}.
4279
4280 Available values for component modes are:
4281 @table @samp
4282 @item addition
4283 @item addition128
4284 @item and
4285 @item average
4286 @item burn
4287 @item darken
4288 @item difference
4289 @item difference128
4290 @item divide
4291 @item dodge
4292 @item freeze
4293 @item exclusion
4294 @item glow
4295 @item hardlight
4296 @item hardmix
4297 @item heat
4298 @item lighten
4299 @item linearlight
4300 @item multiply
4301 @item multiply128
4302 @item negation
4303 @item normal
4304 @item or
4305 @item overlay
4306 @item phoenix
4307 @item pinlight
4308 @item reflect
4309 @item screen
4310 @item softlight
4311 @item subtract
4312 @item vividlight
4313 @item xor
4314 @end table
4315
4316 @item c0_opacity
4317 @item c1_opacity
4318 @item c2_opacity
4319 @item c3_opacity
4320 @item all_opacity
4321 Set blend opacity for specific pixel component or all pixel components in case
4322 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4323
4324 @item c0_expr
4325 @item c1_expr
4326 @item c2_expr
4327 @item c3_expr
4328 @item all_expr
4329 Set blend expression for specific pixel component or all pixel components in case
4330 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4331
4332 The expressions can use the following variables:
4333
4334 @table @option
4335 @item N
4336 The sequential number of the filtered frame, starting from @code{0}.
4337
4338 @item X
4339 @item Y
4340 the coordinates of the current sample
4341
4342 @item W
4343 @item H
4344 the width and height of currently filtered plane
4345
4346 @item SW
4347 @item SH
4348 Width and height scale depending on the currently filtered plane. It is the
4349 ratio between the corresponding luma plane number of pixels and the current
4350 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4351 @code{0.5,0.5} for chroma planes.
4352
4353 @item T
4354 Time of the current frame, expressed in seconds.
4355
4356 @item TOP, A
4357 Value of pixel component at current location for first video frame (top layer).
4358
4359 @item BOTTOM, B
4360 Value of pixel component at current location for second video frame (bottom layer).
4361 @end table
4362
4363 @item shortest
4364 Force termination when the shortest input terminates. Default is
4365 @code{0}. This option is only defined for the @code{blend} filter.
4366
4367 @item repeatlast
4368 Continue applying the last bottom frame after the end of the stream. A value of
4369 @code{0} disable the filter after the last frame of the bottom layer is reached.
4370 Default is @code{1}. This option is only defined for the @code{blend} filter.
4371 @end table
4372
4373 @subsection Examples
4374
4375 @itemize
4376 @item
4377 Apply transition from bottom layer to top layer in first 10 seconds:
4378 @example
4379 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4380 @end example
4381
4382 @item
4383 Apply 1x1 checkerboard effect:
4384 @example
4385 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4386 @end example
4387
4388 @item
4389 Apply uncover left effect:
4390 @example
4391 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4392 @end example
4393
4394 @item
4395 Apply uncover down effect:
4396 @example
4397 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4398 @end example
4399
4400 @item
4401 Apply uncover up-left effect:
4402 @example
4403 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4404 @end example
4405
4406 @item
4407 Split diagonally video and shows top and bottom layer on each side:
4408 @example
4409 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4410 @end example
4411
4412 @item
4413 Display differences between the current and the previous frame:
4414 @example
4415 tblend=all_mode=difference128
4416 @end example
4417 @end itemize
4418
4419 @section bwdif
4420
4421 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4422 Deinterlacing Filter").
4423
4424 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4425 interpolation algorithms.
4426 It accepts the following parameters:
4427
4428 @table @option
4429 @item mode
4430 The interlacing mode to adopt. It accepts one of the following values:
4431
4432 @table @option
4433 @item 0, send_frame
4434 Output one frame for each frame.
4435 @item 1, send_field
4436 Output one frame for each field.
4437 @end table
4438
4439 The default value is @code{send_field}.
4440
4441 @item parity
4442 The picture field parity assumed for the input interlaced video. It accepts one
4443 of the following values:
4444
4445 @table @option
4446 @item 0, tff
4447 Assume the top field is first.
4448 @item 1, bff
4449 Assume the bottom field is first.
4450 @item -1, auto
4451 Enable automatic detection of field parity.
4452 @end table
4453
4454 The default value is @code{auto}.
4455 If the interlacing is unknown or the decoder does not export this information,
4456 top field first will be assumed.
4457
4458 @item deint
4459 Specify which frames to deinterlace. Accept one of the following
4460 values:
4461
4462 @table @option
4463 @item 0, all
4464 Deinterlace all frames.
4465 @item 1, interlaced
4466 Only deinterlace frames marked as interlaced.
4467 @end table
4468
4469 The default value is @code{all}.
4470 @end table
4471
4472 @section boxblur
4473
4474 Apply a boxblur algorithm to the input video.
4475
4476 It accepts the following parameters:
4477
4478 @table @option
4479
4480 @item luma_radius, lr
4481 @item luma_power, lp
4482 @item chroma_radius, cr
4483 @item chroma_power, cp
4484 @item alpha_radius, ar
4485 @item alpha_power, ap
4486
4487 @end table
4488
4489 A description of the accepted options follows.
4490
4491 @table @option
4492 @item luma_radius, lr
4493 @item chroma_radius, cr
4494 @item alpha_radius, ar
4495 Set an expression for the box radius in pixels used for blurring the
4496 corresponding input plane.
4497
4498 The radius value must be a non-negative number, and must not be
4499 greater than the value of the expression @code{min(w,h)/2} for the
4500 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4501 planes.
4502
4503 Default value for @option{luma_radius} is "2". If not specified,
4504 @option{chroma_radius} and @option{alpha_radius} default to the
4505 corresponding value set for @option{luma_radius}.
4506
4507 The expressions can contain the following constants:
4508 @table @option
4509 @item w
4510 @item h
4511 The input width and height in pixels.
4512
4513 @item cw
4514 @item ch
4515 The input chroma image width and height in pixels.
4516
4517 @item hsub
4518 @item vsub
4519 The horizontal and vertical chroma subsample values. For example, for the
4520 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4521 @end table
4522
4523 @item luma_power, lp
4524 @item chroma_power, cp
4525 @item alpha_power, ap
4526 Specify how many times the boxblur filter is applied to the
4527 corresponding plane.
4528
4529 Default value for @option{luma_power} is 2. If not specified,
4530 @option{chroma_power} and @option{alpha_power} default to the
4531 corresponding value set for @option{luma_power}.
4532
4533 A value of 0 will disable the effect.
4534 @end table
4535
4536 @subsection Examples
4537
4538 @itemize
4539 @item
4540 Apply a boxblur filter with the luma, chroma, and alpha radii
4541 set to 2:
4542 @example
4543 boxblur=luma_radius=2:luma_power=1
4544 boxblur=2:1
4545 @end example
4546
4547 @item
4548 Set the luma radius to 2, and alpha and chroma radius to 0:
4549 @example
4550 boxblur=2:1:cr=0:ar=0
4551 @end example
4552
4553 @item
4554 Set the luma and chroma radii to a fraction of the video dimension:
4555 @example
4556 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4557 @end example
4558 @end itemize
4559
4560 @section chromakey
4561 YUV colorspace color/chroma keying.
4562
4563 The filter accepts the following options:
4564
4565 @table @option
4566 @item color
4567 The color which will be replaced with transparency.
4568
4569 @item similarity
4570 Similarity percentage with the key color.
4571
4572 0.01 matches only the exact key color, while 1.0 matches everything.
4573
4574 @item blend
4575 Blend percentage.
4576
4577 0.0 makes pixels either fully transparent, or not transparent at all.
4578
4579 Higher values result in semi-transparent pixels, with a higher transparency
4580 the more similar the pixels color is to the key color.
4581
4582 @item yuv
4583 Signals that the color passed is already in YUV instead of RGB.
4584
4585 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4586 This can be used to pass exact YUV values as hexadecimal numbers.
4587 @end table
4588
4589 @subsection Examples
4590
4591 @itemize
4592 @item
4593 Make every green pixel in the input image transparent:
4594 @example
4595 ffmpeg -i input.png -vf chromakey=green out.png
4596 @end example
4597
4598 @item
4599 Overlay a greenscreen-video on top of a static black background.
4600 @example
4601 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
4602 @end example
4603 @end itemize
4604
4605 @section ciescope
4606
4607 Display CIE color diagram with pixels overlaid onto it.
4608
4609 The filter acccepts the following options:
4610
4611 @table @option
4612 @item system
4613 Set color system.
4614
4615 @table @samp
4616 @item ntsc, 470m
4617 @item ebu, 470bg
4618 @item smpte
4619 @item 240m
4620 @item apple
4621 @item widergb
4622 @item cie1931
4623 @item rec709, hdtv
4624 @item uhdtv, rec2020
4625 @end table
4626
4627 @item cie
4628 Set CIE system.
4629
4630 @table @samp
4631 @item xyy
4632 @item ucs
4633 @item luv
4634 @end table
4635
4636 @item gamuts
4637 Set what gamuts to draw.
4638
4639 See @code{system} option for avaiable values.
4640
4641 @item size, s
4642 Set ciescope size, by default set to 512.
4643
4644 @item intensity, i
4645 Set intensity used to map input pixel values to CIE diagram.
4646
4647 @item contrast
4648 Set contrast used to draw tongue colors that are out of active color system gamut.
4649
4650 @item corrgamma
4651 Correct gamma displayed on scope, by default enabled.
4652
4653 @item showwhite
4654 Show white point on CIE diagram, by default disabled.
4655
4656 @item gamma
4657 Set input gamma. Used only with XYZ input color space.
4658 @end table
4659
4660 @section codecview
4661
4662 Visualize information exported by some codecs.
4663
4664 Some codecs can export information through frames using side-data or other
4665 means. For example, some MPEG based codecs export motion vectors through the
4666 @var{export_mvs} flag in the codec @option{flags2} option.
4667
4668 The filter accepts the following option:
4669
4670 @table @option
4671 @item mv
4672 Set motion vectors to visualize.
4673
4674 Available flags for @var{mv} are:
4675
4676 @table @samp
4677 @item pf
4678 forward predicted MVs of P-frames
4679 @item bf
4680 forward predicted MVs of B-frames
4681 @item bb
4682 backward predicted MVs of B-frames
4683 @end table
4684
4685 @item qp
4686 Display quantization parameters using the chroma planes
4687 @end table
4688
4689 @subsection Examples
4690
4691 @itemize
4692 @item
4693 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4694 @example
4695 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4696 @end example
4697 @end itemize
4698
4699 @section colorbalance
4700 Modify intensity of primary colors (red, green and blue) of input frames.
4701
4702 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4703 regions for the red-cyan, green-magenta or blue-yellow balance.
4704
4705 A positive adjustment value shifts the balance towards the primary color, a negative
4706 value towards the complementary color.
4707
4708 The filter accepts the following options:
4709
4710 @table @option
4711 @item rs
4712 @item gs
4713 @item bs
4714 Adjust red, green and blue shadows (darkest pixels).
4715
4716 @item rm
4717 @item gm
4718 @item bm
4719 Adjust red, green and blue midtones (medium pixels).
4720
4721 @item rh
4722 @item gh
4723 @item bh
4724 Adjust red, green and blue highlights (brightest pixels).
4725
4726 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4727 @end table
4728
4729 @subsection Examples
4730
4731 @itemize
4732 @item
4733 Add red color cast to shadows:
4734 @example
4735 colorbalance=rs=.3
4736 @end example
4737 @end itemize
4738
4739 @section colorkey
4740 RGB colorspace color keying.
4741
4742 The filter accepts the following options:
4743
4744 @table @option
4745 @item color
4746 The color which will be replaced with transparency.
4747
4748 @item similarity
4749 Similarity percentage with the key color.
4750
4751 0.01 matches only the exact key color, while 1.0 matches everything.
4752
4753 @item blend
4754 Blend percentage.
4755
4756 0.0 makes pixels either fully transparent, or not transparent at all.
4757
4758 Higher values result in semi-transparent pixels, with a higher transparency
4759 the more similar the pixels color is to the key color.
4760 @end table
4761
4762 @subsection Examples
4763
4764 @itemize
4765 @item
4766 Make every green pixel in the input image transparent:
4767 @example
4768 ffmpeg -i input.png -vf colorkey=green out.png
4769 @end example
4770
4771 @item
4772 Overlay a greenscreen-video on top of a static background image.
4773 @example
4774 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
4775 @end example
4776 @end itemize
4777
4778 @section colorlevels
4779
4780 Adjust video input frames using levels.
4781
4782 The filter accepts the following options:
4783
4784 @table @option
4785 @item rimin
4786 @item gimin
4787 @item bimin
4788 @item aimin
4789 Adjust red, green, blue and alpha input black point.
4790 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4791
4792 @item rimax
4793 @item gimax
4794 @item bimax
4795 @item aimax
4796 Adjust red, green, blue and alpha input white point.
4797 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4798
4799 Input levels are used to lighten highlights (bright tones), darken shadows
4800 (dark tones), change the balance of bright and dark tones.
4801
4802 @item romin
4803 @item gomin
4804 @item bomin
4805 @item aomin
4806 Adjust red, green, blue and alpha output black point.
4807 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4808
4809 @item romax
4810 @item gomax
4811 @item bomax
4812 @item aomax
4813 Adjust red, green, blue and alpha output white point.
4814 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4815
4816 Output levels allows manual selection of a constrained output level range.
4817 @end table
4818
4819 @subsection Examples
4820
4821 @itemize
4822 @item
4823 Make video output darker:
4824 @example
4825 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4826 @end example
4827
4828 @item
4829 Increase contrast:
4830 @example
4831 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4832 @end example
4833
4834 @item
4835 Make video output lighter:
4836 @example
4837 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4838 @end example
4839
4840 @item
4841 Increase brightness:
4842 @example
4843 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4844 @end example
4845 @end itemize
4846
4847 @section colorchannelmixer
4848
4849 Adjust video input frames by re-mixing color channels.
4850
4851 This filter modifies a color channel by adding the values associated to
4852 the other channels of the same pixels. For example if the value to
4853 modify is red, the output value will be:
4854 @example
4855 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4856 @end example
4857
4858 The filter accepts the following options:
4859
4860 @table @option
4861 @item rr
4862 @item rg
4863 @item rb
4864 @item ra
4865 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4866 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4867
4868 @item gr
4869 @item gg
4870 @item gb
4871 @item ga
4872 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4873 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4874
4875 @item br
4876 @item bg
4877 @item bb
4878 @item ba
4879 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4880 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4881
4882 @item ar
4883 @item ag
4884 @item ab
4885 @item aa
4886 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4887 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4888
4889 Allowed ranges for options are @code{[-2.0, 2.0]}.
4890 @end table
4891
4892 @subsection Examples
4893
4894 @itemize
4895 @item
4896 Convert source to grayscale:
4897 @example
4898 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4899 @end example
4900 @item
4901 Simulate sepia tones:
4902 @example
4903 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4904 @end example
4905 @end itemize
4906
4907 @section colormatrix
4908
4909 Convert color matrix.
4910
4911 The filter accepts the following options:
4912
4913 @table @option
4914 @item src
4915 @item dst
4916 Specify the source and destination color matrix. Both values must be
4917 specified.
4918
4919 The accepted values are:
4920 @table @samp
4921 @item bt709
4922 BT.709
4923
4924 @item bt601
4925 BT.601
4926
4927 @item smpte240m
4928 SMPTE-240M
4929
4930 @item fcc
4931 FCC
4932 @end table
4933 @end table
4934
4935 For example to convert from BT.601 to SMPTE-240M, use the command:
4936 @example
4937 colormatrix=bt601:smpte240m
4938 @end example
4939
4940 @section colorspace
4941
4942 Convert colorspace, transfer characteristics or color primaries.
4943
4944 The filter accepts the following options:
4945
4946 @table @option
4947 @item all
4948 Specify all color properties at once.
4949
4950 The accepted values are:
4951 @table @samp
4952 @item bt470m
4953 BT.470M
4954
4955 @item bt470bg
4956 BT.470BG
4957
4958 @item bt601-6-525
4959 BT.601-6 525
4960
4961 @item bt601-6-625
4962 BT.601-6 625
4963
4964 @item bt709
4965 BT.709
4966
4967 @item smpte170m
4968 SMPTE-170M
4969
4970 @item smpte240m
4971 SMPTE-240M
4972
4973 @item bt2020
4974 BT.2020
4975
4976 @end table
4977
4978 @item space
4979 Specify output colorspace.
4980
4981 The accepted values are:
4982 @table @samp
4983 @item bt709
4984 BT.709
4985
4986 @item fcc
4987 FCC
4988
4989 @item bt470bg
4990 BT.470BG or BT.601-6 625
4991
4992 @item smpte170m
4993 SMPTE-170M or BT.601-6 525
4994
4995 @item smpte240m
4996 SMPTE-240M
4997
4998 @item bt2020ncl
4999 BT.2020 with non-constant luminance
5000
5001 @end table
5002
5003 @item trc
5004 Specify output transfer characteristics.
5005
5006 The accepted values are:
5007 @table @samp
5008 @item bt709
5009 BT.709
5010
5011 @item gamma22
5012 Constant gamma of 2.2
5013
5014 @item gamma28
5015 Constant gamma of 2.8
5016
5017 @item smpte170m
5018 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5019
5020 @item smpte240m
5021 SMPTE-240M
5022
5023 @item bt2020-10
5024 BT.2020 for 10-bits content
5025
5026 @item bt2020-12
5027 BT.2020 for 12-bits content
5028
5029 @end table
5030
5031 @item prm
5032 Specify output color primaries.
5033
5034 The accepted values are:
5035 @table @samp
5036 @item bt709
5037 BT.709
5038
5039 @item bt470m
5040 BT.470M
5041
5042 @item bt470bg
5043 BT.470BG or BT.601-6 625
5044
5045 @item smpte170m
5046 SMPTE-170M or BT.601-6 525
5047
5048 @item smpte240m
5049 SMPTE-240M
5050
5051 @item bt2020
5052 BT.2020
5053
5054 @end table
5055
5056 @item rng
5057 Specify output color range.
5058
5059 The accepted values are:
5060 @table @samp
5061 @item mpeg
5062 MPEG (restricted) range
5063
5064 @item jpeg
5065 JPEG (full) range
5066
5067 @end table
5068
5069 @item format
5070 Specify output color format.
5071
5072 The accepted values are:
5073 @table @samp
5074 @item yuv420p
5075 YUV 4:2:0 planar 8-bits
5076
5077 @item yuv420p10
5078 YUV 4:2:0 planar 10-bits
5079
5080 @item yuv420p12
5081 YUV 4:2:0 planar 12-bits
5082
5083 @item yuv422p
5084 YUV 4:2:2 planar 8-bits
5085
5086 @item yuv422p10
5087 YUV 4:2:2 planar 10-bits
5088
5089 @item yuv422p12
5090 YUV 4:2:2 planar 12-bits
5091
5092 @item yuv444p
5093 YUV 4:4:4 planar 8-bits
5094
5095 @item yuv444p10
5096 YUV 4:4:4 planar 10-bits
5097
5098 @item yuv444p12
5099 YUV 4:4:4 planar 12-bits
5100
5101 @end table
5102
5103 @item fast
5104 Do a fast conversion, which skips gamma/primary correction. This will take
5105 significantly less CPU, but will be mathematically incorrect. To get output
5106 compatible with that produced by the colormatrix filter, use fast=1.
5107 @end table
5108
5109 The filter converts the transfer characteristics, color space and color
5110 primaries to the specified user values. The output value, if not specified,
5111 is set to a default value based on the "all" property. If that property is
5112 also not specified, the filter will log an error. The output color range and
5113 format default to the same value as the input color range and format. The
5114 input transfer characteristics, color space, color primaries and color range
5115 should be set on the input data. If any of these are missing, the filter will
5116 log an error and no conversion will take place.
5117
5118 For example to convert the input to SMPTE-240M, use the command:
5119 @example
5120 colorspace=smpte240m
5121 @end example
5122
5123 @section convolution
5124
5125 Apply convolution 3x3 or 5x5 filter.
5126
5127 The filter accepts the following options:
5128
5129 @table @option
5130 @item 0m
5131 @item 1m
5132 @item 2m
5133 @item 3m
5134 Set matrix for each plane.
5135 Matrix is sequence of 9 or 25 signed integers.
5136
5137 @item 0rdiv
5138 @item 1rdiv
5139 @item 2rdiv
5140 @item 3rdiv
5141 Set multiplier for calculated value for each plane.
5142
5143 @item 0bias
5144 @item 1bias
5145 @item 2bias
5146 @item 3bias
5147 Set bias for each plane. This value is added to the result of the multiplication.
5148 Useful for making the overall image brighter or darker. Default is 0.0.
5149 @end table
5150
5151 @subsection Examples
5152
5153 @itemize
5154 @item
5155 Apply sharpen:
5156 @example
5157 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"
5158 @end example
5159
5160 @item
5161 Apply blur:
5162 @example
5163 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"
5164 @end example
5165
5166 @item
5167 Apply edge enhance:
5168 @example
5169 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"
5170 @end example
5171
5172 @item
5173 Apply edge detect:
5174 @example
5175 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"
5176 @end example
5177
5178 @item
5179 Apply emboss:
5180 @example
5181 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"
5182 @end example
5183 @end itemize
5184
5185 @section copy
5186
5187 Copy the input source unchanged to the output. This is mainly useful for
5188 testing purposes.
5189
5190 @anchor{coreimage}
5191 @section coreimage
5192 Video filtering on GPU using Apple's CoreImage API on OSX.
5193
5194 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5195 processed by video hardware. However, software-based OpenGL implementations
5196 exist which means there is no guarantee for hardware processing. It depends on
5197 the respective OSX.
5198
5199 There are many filters and image generators provided by Apple that come with a
5200 large variety of options. The filter has to be referenced by its name along
5201 with its options.
5202
5203 The coreimage filter accepts the following options:
5204 @table @option
5205 @item list_filters
5206 List all available filters and generators along with all their respective
5207 options as well as possible minimum and maximum values along with the default
5208 values.
5209 @example
5210 list_filters=true
5211 @end example
5212
5213 @item filter
5214 Specify all filters by their respective name and options.
5215 Use @var{list_filters} to determine all valid filter names and options.
5216 Numerical options are specified by a float value and are automatically clamped
5217 to their respective value range.  Vector and color options have to be specified
5218 by a list of space separated float values. Character escaping has to be done.
5219 A special option name @code{default} is available to use default options for a
5220 filter.
5221
5222 It is required to specify either @code{default} or at least one of the filter options.
5223 All omitted options are used with their default values.
5224 The syntax of the filter string is as follows:
5225 @example
5226 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5227 @end example
5228
5229 @item output_rect
5230 Specify a rectangle where the output of the filter chain is copied into the
5231 input image. It is given by a list of space separated float values:
5232 @example
5233 output_rect=x\ y\ width\ height
5234 @end example
5235 If not given, the output rectangle equals the dimensions of the input image.
5236 The output rectangle is automatically cropped at the borders of the input
5237 image. Negative values are valid for each component.
5238 @example
5239 output_rect=25\ 25\ 100\ 100
5240 @end example
5241 @end table
5242
5243 Several filters can be chained for successive processing without GPU-HOST
5244 transfers allowing for fast processing of complex filter chains.
5245 Currently, only filters with zero (generators) or exactly one (filters) input
5246 image and one output image are supported. Also, transition filters are not yet
5247 usable as intended.
5248
5249 Some filters generate output images with additional padding depending on the
5250 respective filter kernel. The padding is automatically removed to ensure the
5251 filter output has the same size as the input image.
5252
5253 For image generators, the size of the output image is determined by the
5254 previous output image of the filter chain or the input image of the whole
5255 filterchain, respectively. The generators do not use the pixel information of
5256 this image to generate their output. However, the generated output is
5257 blended onto this image, resulting in partial or complete coverage of the
5258 output image.
5259
5260 The @ref{coreimagesrc} video source can be used for generating input images
5261 which are directly fed into the filter chain. By using it, providing input
5262 images by another video source or an input video is not required.
5263
5264 @subsection Examples
5265
5266 @itemize
5267
5268 @item
5269 List all filters available:
5270 @example
5271 coreimage=list_filters=true
5272 @end example
5273
5274 @item
5275 Use the CIBoxBlur filter with default options to blur an image:
5276 @example
5277 coreimage=filter=CIBoxBlur@@default
5278 @end example
5279
5280 @item
5281 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5282 its center at 100x100 and a radius of 50 pixels:
5283 @example
5284 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5285 @end example
5286
5287 @item
5288 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5289 given as complete and escaped command-line for Apple's standard bash shell:
5290 @example
5291 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5292 @end example
5293 @end itemize
5294
5295 @section crop
5296
5297 Crop the input video to given dimensions.
5298
5299 It accepts the following parameters:
5300
5301 @table @option
5302 @item w, out_w
5303 The width of the output video. It defaults to @code{iw}.
5304 This expression is evaluated only once during the filter
5305 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5306
5307 @item h, out_h
5308 The height of the output video. It defaults to @code{ih}.
5309 This expression is evaluated only once during the filter
5310 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5311
5312 @item x
5313 The horizontal position, in the input video, of the left edge of the output
5314 video. It defaults to @code{(in_w-out_w)/2}.
5315 This expression is evaluated per-frame.
5316
5317 @item y
5318 The vertical position, in the input video, of the top edge of the output video.
5319 It defaults to @code{(in_h-out_h)/2}.
5320 This expression is evaluated per-frame.
5321
5322 @item keep_aspect
5323 If set to 1 will force the output display aspect ratio
5324 to be the same of the input, by changing the output sample aspect
5325 ratio. It defaults to 0.
5326 @end table
5327
5328 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5329 expressions containing the following constants:
5330
5331 @table @option
5332 @item x
5333 @item y
5334 The computed values for @var{x} and @var{y}. They are evaluated for
5335 each new frame.
5336
5337 @item in_w
5338 @item in_h
5339 The input width and height.
5340
5341 @item iw
5342 @item ih
5343 These are the same as @var{in_w} and @var{in_h}.
5344
5345 @item out_w
5346 @item out_h
5347 The output (cropped) width and height.
5348
5349 @item ow
5350 @item oh
5351 These are the same as @var{out_w} and @var{out_h}.
5352
5353 @item a
5354 same as @var{iw} / @var{ih}
5355
5356 @item sar
5357 input sample aspect ratio
5358
5359 @item dar
5360 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5361
5362 @item hsub
5363 @item vsub
5364 horizontal and vertical chroma subsample values. For example for the
5365 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5366
5367 @item n
5368 The number of the input frame, starting from 0.
5369
5370 @item pos
5371 the position in the file of the input frame, NAN if unknown
5372
5373 @item t
5374 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5375
5376 @end table
5377
5378 The expression for @var{out_w} may depend on the value of @var{out_h},
5379 and the expression for @var{out_h} may depend on @var{out_w}, but they
5380 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5381 evaluated after @var{out_w} and @var{out_h}.
5382
5383 The @var{x} and @var{y} parameters specify the expressions for the
5384 position of the top-left corner of the output (non-cropped) area. They
5385 are evaluated for each frame. If the evaluated value is not valid, it
5386 is approximated to the nearest valid value.
5387
5388 The expression for @var{x} may depend on @var{y}, and the expression
5389 for @var{y} may depend on @var{x}.
5390
5391 @subsection Examples
5392
5393 @itemize
5394 @item
5395 Crop area with size 100x100 at position (12,34).
5396 @example
5397 crop=100:100:12:34
5398 @end example
5399
5400 Using named options, the example above becomes:
5401 @example
5402 crop=w=100:h=100:x=12:y=34
5403 @end example
5404
5405 @item
5406 Crop the central input area with size 100x100:
5407 @example
5408 crop=100:100
5409 @end example
5410
5411 @item
5412 Crop the central input area with size 2/3 of the input video:
5413 @example
5414 crop=2/3*in_w:2/3*in_h
5415 @end example
5416
5417 @item
5418 Crop the input video central square:
5419 @example
5420 crop=out_w=in_h
5421 crop=in_h
5422 @end example
5423
5424 @item
5425 Delimit the rectangle with the top-left corner placed at position
5426 100:100 and the right-bottom corner corresponding to the right-bottom
5427 corner of the input image.
5428 @example
5429 crop=in_w-100:in_h-100:100:100
5430 @end example
5431
5432 @item
5433 Crop 10 pixels from the left and right borders, and 20 pixels from
5434 the top and bottom borders
5435 @example
5436 crop=in_w-2*10:in_h-2*20
5437 @end example
5438
5439 @item
5440 Keep only the bottom right quarter of the input image:
5441 @example
5442 crop=in_w/2:in_h/2:in_w/2:in_h/2
5443 @end example
5444
5445 @item
5446 Crop height for getting Greek harmony:
5447 @example
5448 crop=in_w:1/PHI*in_w
5449 @end example
5450
5451 @item
5452 Apply trembling effect:
5453 @example
5454 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)
5455 @end example
5456
5457 @item
5458 Apply erratic camera effect depending on timestamp:
5459 @example
5460 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)"
5461 @end example
5462
5463 @item
5464 Set x depending on the value of y:
5465 @example
5466 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5467 @end example
5468 @end itemize
5469
5470 @subsection Commands
5471
5472 This filter supports the following commands:
5473 @table @option
5474 @item w, out_w
5475 @item h, out_h
5476 @item x
5477 @item y
5478 Set width/height of the output video and the horizontal/vertical position
5479 in the input video.
5480 The command accepts the same syntax of the corresponding option.
5481
5482 If the specified expression is not valid, it is kept at its current
5483 value.
5484 @end table
5485
5486 @section cropdetect
5487
5488 Auto-detect the crop size.
5489
5490 It calculates the necessary cropping parameters and prints the
5491 recommended parameters via the logging system. The detected dimensions
5492 correspond to the non-black area of the input video.
5493
5494 It accepts the following parameters:
5495
5496 @table @option
5497
5498 @item limit
5499 Set higher black value threshold, which can be optionally specified
5500 from nothing (0) to everything (255 for 8bit based formats). An intensity
5501 value greater to the set value is considered non-black. It defaults to 24.
5502 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5503 on the bitdepth of the pixel format.
5504
5505 @item round
5506 The value which the width/height should be divisible by. It defaults to
5507 16. The offset is automatically adjusted to center the video. Use 2 to
5508 get only even dimensions (needed for 4:2:2 video). 16 is best when
5509 encoding to most video codecs.
5510
5511 @item reset_count, reset
5512 Set the counter that determines after how many frames cropdetect will
5513 reset the previously detected largest video area and start over to
5514 detect the current optimal crop area. Default value is 0.
5515
5516 This can be useful when channel logos distort the video area. 0
5517 indicates 'never reset', and returns the largest area encountered during
5518 playback.
5519 @end table
5520
5521 @anchor{curves}
5522 @section curves
5523
5524 Apply color adjustments using curves.
5525
5526 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5527 component (red, green and blue) has its values defined by @var{N} key points
5528 tied from each other using a smooth curve. The x-axis represents the pixel
5529 values from the input frame, and the y-axis the new pixel values to be set for
5530 the output frame.
5531
5532 By default, a component curve is defined by the two points @var{(0;0)} and
5533 @var{(1;1)}. This creates a straight line where each original pixel value is
5534 "adjusted" to its own value, which means no change to the image.
5535
5536 The filter allows you to redefine these two points and add some more. A new
5537 curve (using a natural cubic spline interpolation) will be define to pass
5538 smoothly through all these new coordinates. The new defined points needs to be
5539 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5540 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5541 the vector spaces, the values will be clipped accordingly.
5542
5543 If there is no key point defined in @code{x=0}, the filter will automatically
5544 insert a @var{(0;0)} point. In the same way, if there is no key point defined
5545 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
5546
5547 The filter accepts the following options:
5548
5549 @table @option
5550 @item preset
5551 Select one of the available color presets. This option can be used in addition
5552 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5553 options takes priority on the preset values.
5554 Available presets are:
5555 @table @samp
5556 @item none
5557 @item color_negative
5558 @item cross_process
5559 @item darker
5560 @item increase_contrast
5561 @item lighter
5562 @item linear_contrast
5563 @item medium_contrast
5564 @item negative
5565 @item strong_contrast
5566 @item vintage
5567 @end table
5568 Default is @code{none}.
5569 @item master, m
5570 Set the master key points. These points will define a second pass mapping. It
5571 is sometimes called a "luminance" or "value" mapping. It can be used with
5572 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5573 post-processing LUT.
5574 @item red, r
5575 Set the key points for the red component.
5576 @item green, g
5577 Set the key points for the green component.
5578 @item blue, b
5579 Set the key points for the blue component.
5580 @item all
5581 Set the key points for all components (not including master).
5582 Can be used in addition to the other key points component
5583 options. In this case, the unset component(s) will fallback on this
5584 @option{all} setting.
5585 @item psfile
5586 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5587 @end table
5588
5589 To avoid some filtergraph syntax conflicts, each key points list need to be
5590 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5591
5592 @subsection Examples
5593
5594 @itemize
5595 @item
5596 Increase slightly the middle level of blue:
5597 @example
5598 curves=blue='0.5/0.58'
5599 @end example
5600
5601 @item
5602 Vintage effect:
5603 @example
5604 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
5605 @end example
5606 Here we obtain the following coordinates for each components:
5607 @table @var
5608 @item red
5609 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5610 @item green
5611 @code{(0;0) (0.50;0.48) (1;1)}
5612 @item blue
5613 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5614 @end table
5615
5616 @item
5617 The previous example can also be achieved with the associated built-in preset:
5618 @example
5619 curves=preset=vintage
5620 @end example
5621
5622 @item
5623 Or simply:
5624 @example
5625 curves=vintage
5626 @end example
5627
5628 @item
5629 Use a Photoshop preset and redefine the points of the green component:
5630 @example
5631 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
5632 @end example
5633 @end itemize
5634
5635 @section datascope
5636
5637 Video data analysis filter.
5638
5639 This filter shows hexadecimal pixel values of part of video.
5640
5641 The filter accepts the following options:
5642
5643 @table @option
5644 @item size, s
5645 Set output video size.
5646
5647 @item x
5648 Set x offset from where to pick pixels.
5649
5650 @item y
5651 Set y offset from where to pick pixels.
5652
5653 @item mode
5654 Set scope mode, can be one of the following:
5655 @table @samp
5656 @item mono
5657 Draw hexadecimal pixel values with white color on black background.
5658
5659 @item color
5660 Draw hexadecimal pixel values with input video pixel color on black
5661 background.
5662
5663 @item color2
5664 Draw hexadecimal pixel values on color background picked from input video,
5665 the text color is picked in such way so its always visible.
5666 @end table
5667
5668 @item axis
5669 Draw rows and columns numbers on left and top of video.
5670 @end table
5671
5672 @section dctdnoiz
5673
5674 Denoise frames using 2D DCT (frequency domain filtering).
5675
5676 This filter is not designed for real time.
5677
5678 The filter accepts the following options:
5679
5680 @table @option
5681 @item sigma, s
5682 Set the noise sigma constant.
5683
5684 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5685 coefficient (absolute value) below this threshold with be dropped.
5686
5687 If you need a more advanced filtering, see @option{expr}.
5688
5689 Default is @code{0}.
5690
5691 @item overlap
5692 Set number overlapping pixels for each block. Since the filter can be slow, you
5693 may want to reduce this value, at the cost of a less effective filter and the
5694 risk of various artefacts.
5695
5696 If the overlapping value doesn't permit processing the whole input width or
5697 height, a warning will be displayed and according borders won't be denoised.
5698
5699 Default value is @var{blocksize}-1, which is the best possible setting.
5700
5701 @item expr, e
5702 Set the coefficient factor expression.
5703
5704 For each coefficient of a DCT block, this expression will be evaluated as a
5705 multiplier value for the coefficient.
5706
5707 If this is option is set, the @option{sigma} option will be ignored.
5708
5709 The absolute value of the coefficient can be accessed through the @var{c}
5710 variable.
5711
5712 @item n
5713 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5714 @var{blocksize}, which is the width and height of the processed blocks.
5715
5716 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5717 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5718 on the speed processing. Also, a larger block size does not necessarily means a
5719 better de-noising.
5720 @end table
5721
5722 @subsection Examples
5723
5724 Apply a denoise with a @option{sigma} of @code{4.5}:
5725 @example
5726 dctdnoiz=4.5
5727 @end example
5728
5729 The same operation can be achieved using the expression system:
5730 @example
5731 dctdnoiz=e='gte(c, 4.5*3)'
5732 @end example
5733
5734 Violent denoise using a block size of @code{16x16}:
5735 @example
5736 dctdnoiz=15:n=4
5737 @end example
5738
5739 @section deband
5740
5741 Remove banding artifacts from input video.
5742 It works by replacing banded pixels with average value of referenced pixels.
5743
5744 The filter accepts the following options:
5745
5746 @table @option
5747 @item 1thr
5748 @item 2thr
5749 @item 3thr
5750 @item 4thr
5751 Set banding detection threshold for each plane. Default is 0.02.
5752 Valid range is 0.00003 to 0.5.
5753 If difference between current pixel and reference pixel is less than threshold,
5754 it will be considered as banded.
5755
5756 @item range, r
5757 Banding detection range in pixels. Default is 16. If positive, random number
5758 in range 0 to set value will be used. If negative, exact absolute value
5759 will be used.
5760 The range defines square of four pixels around current pixel.
5761
5762 @item direction, d
5763 Set direction in radians from which four pixel will be compared. If positive,
5764 random direction from 0 to set direction will be picked. If negative, exact of
5765 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5766 will pick only pixels on same row and -PI/2 will pick only pixels on same
5767 column.
5768
5769 @item blur
5770 If enabled, current pixel is compared with average value of all four
5771 surrounding pixels. The default is enabled. If disabled current pixel is
5772 compared with all four surrounding pixels. The pixel is considered banded
5773 if only all four differences with surrounding pixels are less than threshold.
5774 @end table
5775
5776 @anchor{decimate}
5777 @section decimate
5778
5779 Drop duplicated frames at regular intervals.
5780
5781 The filter accepts the following options:
5782
5783 @table @option
5784 @item cycle
5785 Set the number of frames from which one will be dropped. Setting this to
5786 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5787 Default is @code{5}.
5788
5789 @item dupthresh
5790 Set the threshold for duplicate detection. If the difference metric for a frame
5791 is less than or equal to this value, then it is declared as duplicate. Default
5792 is @code{1.1}
5793
5794 @item scthresh
5795 Set scene change threshold. Default is @code{15}.
5796
5797 @item blockx
5798 @item blocky
5799 Set the size of the x and y-axis blocks used during metric calculations.
5800 Larger blocks give better noise suppression, but also give worse detection of
5801 small movements. Must be a power of two. Default is @code{32}.
5802
5803 @item ppsrc
5804 Mark main input as a pre-processed input and activate clean source input
5805 stream. This allows the input to be pre-processed with various filters to help
5806 the metrics calculation while keeping the frame selection lossless. When set to
5807 @code{1}, the first stream is for the pre-processed input, and the second
5808 stream is the clean source from where the kept frames are chosen. Default is
5809 @code{0}.
5810
5811 @item chroma
5812 Set whether or not chroma is considered in the metric calculations. Default is
5813 @code{1}.
5814 @end table
5815
5816 @section deflate
5817
5818 Apply deflate effect to the video.
5819
5820 This filter replaces the pixel by the local(3x3) average by taking into account
5821 only values lower than the pixel.
5822
5823 It accepts the following options:
5824
5825 @table @option
5826 @item threshold0
5827 @item threshold1
5828 @item threshold2
5829 @item threshold3
5830 Limit the maximum change for each plane, default is 65535.
5831 If 0, plane will remain unchanged.
5832 @end table
5833
5834 @section dejudder
5835
5836 Remove judder produced by partially interlaced telecined content.
5837
5838 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5839 source was partially telecined content then the output of @code{pullup,dejudder}
5840 will have a variable frame rate. May change the recorded frame rate of the
5841 container. Aside from that change, this filter will not affect constant frame
5842 rate video.
5843
5844 The option available in this filter is:
5845 @table @option
5846
5847 @item cycle
5848 Specify the length of the window over which the judder repeats.
5849
5850 Accepts any integer greater than 1. Useful values are:
5851 @table @samp
5852
5853 @item 4
5854 If the original was telecined from 24 to 30 fps (Film to NTSC).
5855
5856 @item 5
5857 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5858
5859 @item 20
5860 If a mixture of the two.
5861 @end table
5862
5863 The default is @samp{4}.
5864 @end table
5865
5866 @section delogo
5867
5868 Suppress a TV station logo by a simple interpolation of the surrounding
5869 pixels. Just set a rectangle covering the logo and watch it disappear
5870 (and sometimes something even uglier appear - your mileage may vary).
5871
5872 It accepts the following parameters:
5873 @table @option
5874
5875 @item x
5876 @item y
5877 Specify the top left corner coordinates of the logo. They must be
5878 specified.
5879
5880 @item w
5881 @item h
5882 Specify the width and height of the logo to clear. They must be
5883 specified.
5884
5885 @item band, t
5886 Specify the thickness of the fuzzy edge of the rectangle (added to
5887 @var{w} and @var{h}). The default value is 1. This option is
5888 deprecated, setting higher values should no longer be necessary and
5889 is not recommended.
5890
5891 @item show
5892 When set to 1, a green rectangle is drawn on the screen to simplify
5893 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
5894 The default value is 0.
5895
5896 The rectangle is drawn on the outermost pixels which will be (partly)
5897 replaced with interpolated values. The values of the next pixels
5898 immediately outside this rectangle in each direction will be used to
5899 compute the interpolated pixel values inside the rectangle.
5900
5901 @end table
5902
5903 @subsection Examples
5904
5905 @itemize
5906 @item
5907 Set a rectangle covering the area with top left corner coordinates 0,0
5908 and size 100x77, and a band of size 10:
5909 @example
5910 delogo=x=0:y=0:w=100:h=77:band=10
5911 @end example
5912
5913 @end itemize
5914
5915 @section deshake
5916
5917 Attempt to fix small changes in horizontal and/or vertical shift. This
5918 filter helps remove camera shake from hand-holding a camera, bumping a
5919 tripod, moving on a vehicle, etc.
5920
5921 The filter accepts the following options:
5922
5923 @table @option
5924
5925 @item x
5926 @item y
5927 @item w
5928 @item h
5929 Specify a rectangular area where to limit the search for motion
5930 vectors.
5931 If desired the search for motion vectors can be limited to a
5932 rectangular area of the frame defined by its top left corner, width
5933 and height. These parameters have the same meaning as the drawbox
5934 filter which can be used to visualise the position of the bounding
5935 box.
5936
5937 This is useful when simultaneous movement of subjects within the frame
5938 might be confused for camera motion by the motion vector search.
5939
5940 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
5941 then the full frame is used. This allows later options to be set
5942 without specifying the bounding box for the motion vector search.
5943
5944 Default - search the whole frame.
5945
5946 @item rx
5947 @item ry
5948 Specify the maximum extent of movement in x and y directions in the
5949 range 0-64 pixels. Default 16.
5950
5951 @item edge
5952 Specify how to generate pixels to fill blanks at the edge of the
5953 frame. Available values are:
5954 @table @samp
5955 @item blank, 0
5956 Fill zeroes at blank locations
5957 @item original, 1
5958 Original image at blank locations
5959 @item clamp, 2
5960 Extruded edge value at blank locations
5961 @item mirror, 3
5962 Mirrored edge at blank locations
5963 @end table
5964 Default value is @samp{mirror}.
5965
5966 @item blocksize
5967 Specify the blocksize to use for motion search. Range 4-128 pixels,
5968 default 8.
5969
5970 @item contrast
5971 Specify the contrast threshold for blocks. Only blocks with more than
5972 the specified contrast (difference between darkest and lightest
5973 pixels) will be considered. Range 1-255, default 125.
5974
5975 @item search
5976 Specify the search strategy. Available values are:
5977 @table @samp
5978 @item exhaustive, 0
5979 Set exhaustive search
5980 @item less, 1
5981 Set less exhaustive search.
5982 @end table
5983 Default value is @samp{exhaustive}.
5984
5985 @item filename
5986 If set then a detailed log of the motion search is written to the
5987 specified file.
5988
5989 @item opencl
5990 If set to 1, specify using OpenCL capabilities, only available if
5991 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
5992
5993 @end table
5994
5995 @section detelecine
5996
5997 Apply an exact inverse of the telecine operation. It requires a predefined
5998 pattern specified using the pattern option which must be the same as that passed
5999 to the telecine filter.
6000
6001 This filter accepts the following options:
6002
6003 @table @option
6004 @item first_field
6005 @table @samp
6006 @item top, t
6007 top field first
6008 @item bottom, b
6009 bottom field first
6010 The default value is @code{top}.
6011 @end table
6012
6013 @item pattern
6014 A string of numbers representing the pulldown pattern you wish to apply.
6015 The default value is @code{23}.
6016
6017 @item start_frame
6018 A number representing position of the first frame with respect to the telecine
6019 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6020 @end table
6021
6022 @section dilation
6023
6024 Apply dilation effect to the video.
6025
6026 This filter replaces the pixel by the local(3x3) maximum.
6027
6028 It accepts the following options:
6029
6030 @table @option
6031 @item threshold0
6032 @item threshold1
6033 @item threshold2
6034 @item threshold3
6035 Limit the maximum change for each plane, default is 65535.
6036 If 0, plane will remain unchanged.
6037
6038 @item coordinates
6039 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6040 pixels are used.
6041
6042 Flags to local 3x3 coordinates maps like this:
6043
6044     1 2 3
6045     4   5
6046     6 7 8
6047 @end table
6048
6049 @section displace
6050
6051 Displace pixels as indicated by second and third input stream.
6052
6053 It takes three input streams and outputs one stream, the first input is the
6054 source, and second and third input are displacement maps.
6055
6056 The second input specifies how much to displace pixels along the
6057 x-axis, while the third input specifies how much to displace pixels
6058 along the y-axis.
6059 If one of displacement map streams terminates, last frame from that
6060 displacement map will be used.
6061
6062 Note that once generated, displacements maps can be reused over and over again.
6063
6064 A description of the accepted options follows.
6065
6066 @table @option
6067 @item edge
6068 Set displace behavior for pixels that are out of range.
6069
6070 Available values are:
6071 @table @samp
6072 @item blank
6073 Missing pixels are replaced by black pixels.
6074
6075 @item smear
6076 Adjacent pixels will spread out to replace missing pixels.
6077
6078 @item wrap
6079 Out of range pixels are wrapped so they point to pixels of other side.
6080 @end table
6081 Default is @samp{smear}.
6082
6083 @end table
6084
6085 @subsection Examples
6086
6087 @itemize
6088 @item
6089 Add ripple effect to rgb input of video size hd720:
6090 @example
6091 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
6092 @end example
6093
6094 @item
6095 Add wave effect to rgb input of video size hd720:
6096 @example
6097 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
6098 @end example
6099 @end itemize
6100
6101 @section drawbox
6102
6103 Draw a colored box on the input image.
6104
6105 It accepts the following parameters:
6106
6107 @table @option
6108 @item x
6109 @item y
6110 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6111
6112 @item width, w
6113 @item height, h
6114 The expressions which specify the width and height of the box; if 0 they are interpreted as
6115 the input width and height. It defaults to 0.
6116
6117 @item color, c
6118 Specify the color of the box to write. For the general syntax of this option,
6119 check the "Color" section in the ffmpeg-utils manual. If the special
6120 value @code{invert} is used, the box edge color is the same as the
6121 video with inverted luma.
6122
6123 @item thickness, t
6124 The expression which sets the thickness of the box edge. Default value is @code{3}.
6125
6126 See below for the list of accepted constants.
6127 @end table
6128
6129 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6130 following constants:
6131
6132 @table @option
6133 @item dar
6134 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6135
6136 @item hsub
6137 @item vsub
6138 horizontal and vertical chroma subsample values. For example for the
6139 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6140
6141 @item in_h, ih
6142 @item in_w, iw
6143 The input width and height.
6144
6145 @item sar
6146 The input sample aspect ratio.
6147
6148 @item x
6149 @item y
6150 The x and y offset coordinates where the box is drawn.
6151
6152 @item w
6153 @item h
6154 The width and height of the drawn box.
6155
6156 @item t
6157 The thickness of the drawn box.
6158
6159 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6160 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6161
6162 @end table
6163
6164 @subsection Examples
6165
6166 @itemize
6167 @item
6168 Draw a black box around the edge of the input image:
6169 @example
6170 drawbox
6171 @end example
6172
6173 @item
6174 Draw a box with color red and an opacity of 50%:
6175 @example
6176 drawbox=10:20:200:60:red@@0.5
6177 @end example
6178
6179 The previous example can be specified as:
6180 @example
6181 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6182 @end example
6183
6184 @item
6185 Fill the box with pink color:
6186 @example
6187 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6188 @end example
6189
6190 @item
6191 Draw a 2-pixel red 2.40:1 mask:
6192 @example
6193 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
6194 @end example
6195 @end itemize
6196
6197 @section drawgraph, adrawgraph
6198
6199 Draw a graph using input video or audio metadata.
6200
6201 It accepts the following parameters:
6202
6203 @table @option
6204 @item m1
6205 Set 1st frame metadata key from which metadata values will be used to draw a graph.
6206
6207 @item fg1
6208 Set 1st foreground color expression.
6209
6210 @item m2
6211 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
6212
6213 @item fg2
6214 Set 2nd foreground color expression.
6215
6216 @item m3
6217 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
6218
6219 @item fg3
6220 Set 3rd foreground color expression.
6221
6222 @item m4
6223 Set 4th frame metadata key from which metadata values will be used to draw a graph.
6224
6225 @item fg4
6226 Set 4th foreground color expression.
6227
6228 @item min
6229 Set minimal value of metadata value.
6230
6231 @item max
6232 Set maximal value of metadata value.
6233
6234 @item bg
6235 Set graph background color. Default is white.
6236
6237 @item mode
6238 Set graph mode.
6239
6240 Available values for mode is:
6241 @table @samp
6242 @item bar
6243 @item dot
6244 @item line
6245 @end table
6246
6247 Default is @code{line}.
6248
6249 @item slide
6250 Set slide mode.
6251
6252 Available values for slide is:
6253 @table @samp
6254 @item frame
6255 Draw new frame when right border is reached.
6256
6257 @item replace
6258 Replace old columns with new ones.
6259
6260 @item scroll
6261 Scroll from right to left.
6262
6263 @item rscroll
6264 Scroll from left to right.
6265 @end table
6266
6267 Default is @code{frame}.
6268
6269 @item size
6270 Set size of graph video. For the syntax of this option, check the
6271 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
6272 The default value is @code{900x256}.
6273
6274 The foreground color expressions can use the following variables:
6275 @table @option
6276 @item MIN
6277 Minimal value of metadata value.
6278
6279 @item MAX
6280 Maximal value of metadata value.
6281
6282 @item VAL
6283 Current metadata key value.
6284 @end table
6285
6286 The color is defined as 0xAABBGGRR.
6287 @end table
6288
6289 Example using metadata from @ref{signalstats} filter:
6290 @example
6291 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
6292 @end example
6293
6294 Example using metadata from @ref{ebur128} filter:
6295 @example
6296 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
6297 @end example
6298
6299 @section drawgrid
6300
6301 Draw a grid on the input image.
6302
6303 It accepts the following parameters:
6304
6305 @table @option
6306 @item x
6307 @item y
6308 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6309
6310 @item width, w
6311 @item height, h
6312 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6313 input width and height, respectively, minus @code{thickness}, so image gets
6314 framed. Default to 0.
6315
6316 @item color, c
6317 Specify the color of the grid. For the general syntax of this option,
6318 check the "Color" section in the ffmpeg-utils manual. If the special
6319 value @code{invert} is used, the grid color is the same as the
6320 video with inverted luma.
6321
6322 @item thickness, t
6323 The expression which sets the thickness of the grid line. Default value is @code{1}.
6324
6325 See below for the list of accepted constants.
6326 @end table
6327
6328 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6329 following constants:
6330
6331 @table @option
6332 @item dar
6333 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6334
6335 @item hsub
6336 @item vsub
6337 horizontal and vertical chroma subsample values. For example for the
6338 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6339
6340 @item in_h, ih
6341 @item in_w, iw
6342 The input grid cell width and height.
6343
6344 @item sar
6345 The input sample aspect ratio.
6346
6347 @item x
6348 @item y
6349 The x and y coordinates of some point of grid intersection (meant to configure offset).
6350
6351 @item w
6352 @item h
6353 The width and height of the drawn cell.
6354
6355 @item t
6356 The thickness of the drawn cell.
6357
6358 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6359 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6360
6361 @end table
6362
6363 @subsection Examples
6364
6365 @itemize
6366 @item
6367 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6368 @example
6369 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6370 @end example
6371
6372 @item
6373 Draw a white 3x3 grid with an opacity of 50%:
6374 @example
6375 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6376 @end example
6377 @end itemize
6378
6379 @anchor{drawtext}
6380 @section drawtext
6381
6382 Draw a text string or text from a specified file on top of a video, using the
6383 libfreetype library.
6384
6385 To enable compilation of this filter, you need to configure FFmpeg with
6386 @code{--enable-libfreetype}.
6387 To enable default font fallback and the @var{font} option you need to
6388 configure FFmpeg with @code{--enable-libfontconfig}.
6389 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6390 @code{--enable-libfribidi}.
6391
6392 @subsection Syntax
6393
6394 It accepts the following parameters:
6395
6396 @table @option
6397
6398 @item box
6399 Used to draw a box around text using the background color.
6400 The value must be either 1 (enable) or 0 (disable).
6401 The default value of @var{box} is 0.
6402
6403 @item boxborderw
6404 Set the width of the border to be drawn around the box using @var{boxcolor}.
6405 The default value of @var{boxborderw} is 0.
6406
6407 @item boxcolor
6408 The color to be used for drawing box around text. For the syntax of this
6409 option, check the "Color" section in the ffmpeg-utils manual.
6410
6411 The default value of @var{boxcolor} is "white".
6412
6413 @item borderw
6414 Set the width of the border to be drawn around the text using @var{bordercolor}.
6415 The default value of @var{borderw} is 0.
6416
6417 @item bordercolor
6418 Set the color to be used for drawing border around text. For the syntax of this
6419 option, check the "Color" section in the ffmpeg-utils manual.
6420
6421 The default value of @var{bordercolor} is "black".
6422
6423 @item expansion
6424 Select how the @var{text} is expanded. Can be either @code{none},
6425 @code{strftime} (deprecated) or
6426 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6427 below for details.
6428
6429 @item fix_bounds
6430 If true, check and fix text coords to avoid clipping.
6431
6432 @item fontcolor
6433 The color to be used for drawing fonts. For the syntax of this option, check
6434 the "Color" section in the ffmpeg-utils manual.
6435
6436 The default value of @var{fontcolor} is "black".
6437
6438 @item fontcolor_expr
6439 String which is expanded the same way as @var{text} to obtain dynamic
6440 @var{fontcolor} value. By default this option has empty value and is not
6441 processed. When this option is set, it overrides @var{fontcolor} option.
6442
6443 @item font
6444 The font family to be used for drawing text. By default Sans.
6445
6446 @item fontfile
6447 The font file to be used for drawing text. The path must be included.
6448 This parameter is mandatory if the fontconfig support is disabled.
6449
6450 @item draw
6451 This option does not exist, please see the timeline system
6452
6453 @item alpha
6454 Draw the text applying alpha blending. The value can
6455 be either a number between 0.0 and 1.0
6456 The expression accepts the same variables @var{x, y} do.
6457 The default value is 1.
6458 Please see fontcolor_expr
6459
6460 @item fontsize
6461 The font size to be used for drawing text.
6462 The default value of @var{fontsize} is 16.
6463
6464 @item text_shaping
6465 If set to 1, attempt to shape the text (for example, reverse the order of
6466 right-to-left text and join Arabic characters) before drawing it.
6467 Otherwise, just draw the text exactly as given.
6468 By default 1 (if supported).
6469
6470 @item ft_load_flags
6471 The flags to be used for loading the fonts.
6472
6473 The flags map the corresponding flags supported by libfreetype, and are
6474 a combination of the following values:
6475 @table @var
6476 @item default
6477 @item no_scale
6478 @item no_hinting
6479 @item render
6480 @item no_bitmap
6481 @item vertical_layout
6482 @item force_autohint
6483 @item crop_bitmap
6484 @item pedantic
6485 @item ignore_global_advance_width
6486 @item no_recurse
6487 @item ignore_transform
6488 @item monochrome
6489 @item linear_design
6490 @item no_autohint
6491 @end table
6492
6493 Default value is "default".
6494
6495 For more information consult the documentation for the FT_LOAD_*
6496 libfreetype flags.
6497
6498 @item shadowcolor
6499 The color to be used for drawing a shadow behind the drawn text. For the
6500 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6501
6502 The default value of @var{shadowcolor} is "black".
6503
6504 @item shadowx
6505 @item shadowy
6506 The x and y offsets for the text shadow position with respect to the
6507 position of the text. They can be either positive or negative
6508 values. The default value for both is "0".
6509
6510 @item start_number
6511 The starting frame number for the n/frame_num variable. The default value
6512 is "0".
6513
6514 @item tabsize
6515 The size in number of spaces to use for rendering the tab.
6516 Default value is 4.
6517
6518 @item timecode
6519 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6520 format. It can be used with or without text parameter. @var{timecode_rate}
6521 option must be specified.
6522
6523 @item timecode_rate, rate, r
6524 Set the timecode frame rate (timecode only).
6525
6526 @item text
6527 The text string to be drawn. The text must be a sequence of UTF-8
6528 encoded characters.
6529 This parameter is mandatory if no file is specified with the parameter
6530 @var{textfile}.
6531
6532 @item textfile
6533 A text file containing text to be drawn. The text must be a sequence
6534 of UTF-8 encoded characters.
6535
6536 This parameter is mandatory if no text string is specified with the
6537 parameter @var{text}.
6538
6539 If both @var{text} and @var{textfile} are specified, an error is thrown.
6540
6541 @item reload
6542 If set to 1, the @var{textfile} will be reloaded before each frame.
6543 Be sure to update it atomically, or it may be read partially, or even fail.
6544
6545 @item x
6546 @item y
6547 The expressions which specify the offsets where text will be drawn
6548 within the video frame. They are relative to the top/left border of the
6549 output image.
6550
6551 The default value of @var{x} and @var{y} is "0".
6552
6553 See below for the list of accepted constants and functions.
6554 @end table
6555
6556 The parameters for @var{x} and @var{y} are expressions containing the
6557 following constants and functions:
6558
6559 @table @option
6560 @item dar
6561 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6562
6563 @item hsub
6564 @item vsub
6565 horizontal and vertical chroma subsample values. For example for the
6566 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6567
6568 @item line_h, lh
6569 the height of each text line
6570
6571 @item main_h, h, H
6572 the input height
6573
6574 @item main_w, w, W
6575 the input width
6576
6577 @item max_glyph_a, ascent
6578 the maximum distance from the baseline to the highest/upper grid
6579 coordinate used to place a glyph outline point, for all the rendered
6580 glyphs.
6581 It is a positive value, due to the grid's orientation with the Y axis
6582 upwards.
6583
6584 @item max_glyph_d, descent
6585 the maximum distance from the baseline to the lowest grid coordinate
6586 used to place a glyph outline point, for all the rendered glyphs.
6587 This is a negative value, due to the grid's orientation, with the Y axis
6588 upwards.
6589
6590 @item max_glyph_h
6591 maximum glyph height, that is the maximum height for all the glyphs
6592 contained in the rendered text, it is equivalent to @var{ascent} -
6593 @var{descent}.
6594
6595 @item max_glyph_w
6596 maximum glyph width, that is the maximum width for all the glyphs
6597 contained in the rendered text
6598
6599 @item n
6600 the number of input frame, starting from 0
6601
6602 @item rand(min, max)
6603 return a random number included between @var{min} and @var{max}
6604
6605 @item sar
6606 The input sample aspect ratio.
6607
6608 @item t
6609 timestamp expressed in seconds, NAN if the input timestamp is unknown
6610
6611 @item text_h, th
6612 the height of the rendered text
6613
6614 @item text_w, tw
6615 the width of the rendered text
6616
6617 @item x
6618 @item y
6619 the x and y offset coordinates where the text is drawn.
6620
6621 These parameters allow the @var{x} and @var{y} expressions to refer
6622 each other, so you can for example specify @code{y=x/dar}.
6623 @end table
6624
6625 @anchor{drawtext_expansion}
6626 @subsection Text expansion
6627
6628 If @option{expansion} is set to @code{strftime},
6629 the filter recognizes strftime() sequences in the provided text and
6630 expands them accordingly. Check the documentation of strftime(). This
6631 feature is deprecated.
6632
6633 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6634
6635 If @option{expansion} is set to @code{normal} (which is the default),
6636 the following expansion mechanism is used.
6637
6638 The backslash character @samp{\}, followed by any character, always expands to
6639 the second character.
6640
6641 Sequence of the form @code{%@{...@}} are expanded. The text between the
6642 braces is a function name, possibly followed by arguments separated by ':'.
6643 If the arguments contain special characters or delimiters (':' or '@}'),
6644 they should be escaped.
6645
6646 Note that they probably must also be escaped as the value for the
6647 @option{text} option in the filter argument string and as the filter
6648 argument in the filtergraph description, and possibly also for the shell,
6649 that makes up to four levels of escaping; using a text file avoids these
6650 problems.
6651
6652 The following functions are available:
6653
6654 @table @command
6655
6656 @item expr, e
6657 The expression evaluation result.
6658
6659 It must take one argument specifying the expression to be evaluated,
6660 which accepts the same constants and functions as the @var{x} and
6661 @var{y} values. Note that not all constants should be used, for
6662 example the text size is not known when evaluating the expression, so
6663 the constants @var{text_w} and @var{text_h} will have an undefined
6664 value.
6665
6666 @item expr_int_format, eif
6667 Evaluate the expression's value and output as formatted integer.
6668
6669 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6670 The second argument specifies the output format. Allowed values are @samp{x},
6671 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6672 @code{printf} function.
6673 The third parameter is optional and sets the number of positions taken by the output.
6674 It can be used to add padding with zeros from the left.
6675
6676 @item gmtime
6677 The time at which the filter is running, expressed in UTC.
6678 It can accept an argument: a strftime() format string.
6679
6680 @item localtime
6681 The time at which the filter is running, expressed in the local time zone.
6682 It can accept an argument: a strftime() format string.
6683
6684 @item metadata
6685 Frame metadata. Takes one or two arguments.
6686
6687 The first argument is mandatory and specifies the metadata key.
6688
6689 The second argument is optional and specifies a default value, used when the
6690 metadata key is not found or empty.
6691
6692 @item n, frame_num
6693 The frame number, starting from 0.
6694
6695 @item pict_type
6696 A 1 character description of the current picture type.
6697
6698 @item pts
6699 The timestamp of the current frame.
6700 It can take up to three arguments.
6701
6702 The first argument is the format of the timestamp; it defaults to @code{flt}
6703 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6704 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6705 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6706 @code{localtime} stands for the timestamp of the frame formatted as
6707 local time zone time.
6708
6709 The second argument is an offset added to the timestamp.
6710
6711 If the format is set to @code{localtime} or @code{gmtime},
6712 a third argument may be supplied: a strftime() format string.
6713 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6714 @end table
6715
6716 @subsection Examples
6717
6718 @itemize
6719 @item
6720 Draw "Test Text" with font FreeSerif, using the default values for the
6721 optional parameters.
6722
6723 @example
6724 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6725 @end example
6726
6727 @item
6728 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6729 and y=50 (counting from the top-left corner of the screen), text is
6730 yellow with a red box around it. Both the text and the box have an
6731 opacity of 20%.
6732
6733 @example
6734 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6735           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6736 @end example
6737
6738 Note that the double quotes are not necessary if spaces are not used
6739 within the parameter list.
6740
6741 @item
6742 Show the text at the center of the video frame:
6743 @example
6744 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6745 @end example
6746
6747 @item
6748 Show the text at a random position, switching to a new position every 30 seconds:
6749 @example
6750 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(t\,30)\,0)\,rand(0\,(h-text_h))\,y)"
6751 @end example
6752
6753 @item
6754 Show a text line sliding from right to left in the last row of the video
6755 frame. The file @file{LONG_LINE} is assumed to contain a single line
6756 with no newlines.
6757 @example
6758 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6759 @end example
6760
6761 @item
6762 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6763 @example
6764 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6765 @end example
6766
6767 @item
6768 Draw a single green letter "g", at the center of the input video.
6769 The glyph baseline is placed at half screen height.
6770 @example
6771 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6772 @end example
6773
6774 @item
6775 Show text for 1 second every 3 seconds:
6776 @example
6777 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6778 @end example
6779
6780 @item
6781 Use fontconfig to set the font. Note that the colons need to be escaped.
6782 @example
6783 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6784 @end example
6785
6786 @item
6787 Print the date of a real-time encoding (see strftime(3)):
6788 @example
6789 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6790 @end example
6791
6792 @item
6793 Show text fading in and out (appearing/disappearing):
6794 @example
6795 #!/bin/sh
6796 DS=1.0 # display start
6797 DE=10.0 # display end
6798 FID=1.5 # fade in duration
6799 FOD=5 # fade out duration
6800 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 @}"
6801 @end example
6802
6803 @end itemize
6804
6805 For more information about libfreetype, check:
6806 @url{http://www.freetype.org/}.
6807
6808 For more information about fontconfig, check:
6809 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6810
6811 For more information about libfribidi, check:
6812 @url{http://fribidi.org/}.
6813
6814 @section edgedetect
6815
6816 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6817
6818 The filter accepts the following options:
6819
6820 @table @option
6821 @item low
6822 @item high
6823 Set low and high threshold values used by the Canny thresholding
6824 algorithm.
6825
6826 The high threshold selects the "strong" edge pixels, which are then
6827 connected through 8-connectivity with the "weak" edge pixels selected
6828 by the low threshold.
6829
6830 @var{low} and @var{high} threshold values must be chosen in the range
6831 [0,1], and @var{low} should be lesser or equal to @var{high}.
6832
6833 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6834 is @code{50/255}.
6835
6836 @item mode
6837 Define the drawing mode.
6838
6839 @table @samp
6840 @item wires
6841 Draw white/gray wires on black background.
6842
6843 @item colormix
6844 Mix the colors to create a paint/cartoon effect.
6845 @end table
6846
6847 Default value is @var{wires}.
6848 @end table
6849
6850 @subsection Examples
6851
6852 @itemize
6853 @item
6854 Standard edge detection with custom values for the hysteresis thresholding:
6855 @example
6856 edgedetect=low=0.1:high=0.4
6857 @end example
6858
6859 @item
6860 Painting effect without thresholding:
6861 @example
6862 edgedetect=mode=colormix:high=0
6863 @end example
6864 @end itemize
6865
6866 @section eq
6867 Set brightness, contrast, saturation and approximate gamma adjustment.
6868
6869 The filter accepts the following options:
6870
6871 @table @option
6872 @item contrast
6873 Set the contrast expression. The value must be a float value in range
6874 @code{-2.0} to @code{2.0}. The default value is "1".
6875
6876 @item brightness
6877 Set the brightness expression. The value must be a float value in
6878 range @code{-1.0} to @code{1.0}. The default value is "0".
6879
6880 @item saturation
6881 Set the saturation expression. The value must be a float in
6882 range @code{0.0} to @code{3.0}. The default value is "1".
6883
6884 @item gamma
6885 Set the gamma expression. The value must be a float in range
6886 @code{0.1} to @code{10.0}.  The default value is "1".
6887
6888 @item gamma_r
6889 Set the gamma expression for red. The value must be a float in
6890 range @code{0.1} to @code{10.0}. The default value is "1".
6891
6892 @item gamma_g
6893 Set the gamma expression for green. The value must be a float in range
6894 @code{0.1} to @code{10.0}. The default value is "1".
6895
6896 @item gamma_b
6897 Set the gamma expression for blue. The value must be a float in range
6898 @code{0.1} to @code{10.0}. The default value is "1".
6899
6900 @item gamma_weight
6901 Set the gamma weight expression. It can be used to reduce the effect
6902 of a high gamma value on bright image areas, e.g. keep them from
6903 getting overamplified and just plain white. The value must be a float
6904 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
6905 gamma correction all the way down while @code{1.0} leaves it at its
6906 full strength. Default is "1".
6907
6908 @item eval
6909 Set when the expressions for brightness, contrast, saturation and
6910 gamma expressions are evaluated.
6911
6912 It accepts the following values:
6913 @table @samp
6914 @item init
6915 only evaluate expressions once during the filter initialization or
6916 when a command is processed
6917
6918 @item frame
6919 evaluate expressions for each incoming frame
6920 @end table
6921
6922 Default value is @samp{init}.
6923 @end table
6924
6925 The expressions accept the following parameters:
6926 @table @option
6927 @item n
6928 frame count of the input frame starting from 0
6929
6930 @item pos
6931 byte position of the corresponding packet in the input file, NAN if
6932 unspecified
6933
6934 @item r
6935 frame rate of the input video, NAN if the input frame rate is unknown
6936
6937 @item t
6938 timestamp expressed in seconds, NAN if the input timestamp is unknown
6939 @end table
6940
6941 @subsection Commands
6942 The filter supports the following commands:
6943
6944 @table @option
6945 @item contrast
6946 Set the contrast expression.
6947
6948 @item brightness
6949 Set the brightness expression.
6950
6951 @item saturation
6952 Set the saturation expression.
6953
6954 @item gamma
6955 Set the gamma expression.
6956
6957 @item gamma_r
6958 Set the gamma_r expression.
6959
6960 @item gamma_g
6961 Set gamma_g expression.
6962
6963 @item gamma_b
6964 Set gamma_b expression.
6965
6966 @item gamma_weight
6967 Set gamma_weight expression.
6968
6969 The command accepts the same syntax of the corresponding option.
6970
6971 If the specified expression is not valid, it is kept at its current
6972 value.
6973
6974 @end table
6975
6976 @section erosion
6977
6978 Apply erosion effect to the video.
6979
6980 This filter replaces the pixel by the local(3x3) minimum.
6981
6982 It accepts the following options:
6983
6984 @table @option
6985 @item threshold0
6986 @item threshold1
6987 @item threshold2
6988 @item threshold3
6989 Limit the maximum change for each plane, default is 65535.
6990 If 0, plane will remain unchanged.
6991
6992 @item coordinates
6993 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6994 pixels are used.
6995
6996 Flags to local 3x3 coordinates maps like this:
6997
6998     1 2 3
6999     4   5
7000     6 7 8
7001 @end table
7002
7003 @section extractplanes
7004
7005 Extract color channel components from input video stream into
7006 separate grayscale video streams.
7007
7008 The filter accepts the following option:
7009
7010 @table @option
7011 @item planes
7012 Set plane(s) to extract.
7013
7014 Available values for planes are:
7015 @table @samp
7016 @item y
7017 @item u
7018 @item v
7019 @item a
7020 @item r
7021 @item g
7022 @item b
7023 @end table
7024
7025 Choosing planes not available in the input will result in an error.
7026 That means you cannot select @code{r}, @code{g}, @code{b} planes
7027 with @code{y}, @code{u}, @code{v} planes at same time.
7028 @end table
7029
7030 @subsection Examples
7031
7032 @itemize
7033 @item
7034 Extract luma, u and v color channel component from input video frame
7035 into 3 grayscale outputs:
7036 @example
7037 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
7038 @end example
7039 @end itemize
7040
7041 @section elbg
7042
7043 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7044
7045 For each input image, the filter will compute the optimal mapping from
7046 the input to the output given the codebook length, that is the number
7047 of distinct output colors.
7048
7049 This filter accepts the following options.
7050
7051 @table @option
7052 @item codebook_length, l
7053 Set codebook length. The value must be a positive integer, and
7054 represents the number of distinct output colors. Default value is 256.
7055
7056 @item nb_steps, n
7057 Set the maximum number of iterations to apply for computing the optimal
7058 mapping. The higher the value the better the result and the higher the
7059 computation time. Default value is 1.
7060
7061 @item seed, s
7062 Set a random seed, must be an integer included between 0 and
7063 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7064 will try to use a good random seed on a best effort basis.
7065
7066 @item pal8
7067 Set pal8 output pixel format. This option does not work with codebook
7068 length greater than 256.
7069 @end table
7070
7071 @section fade
7072
7073 Apply a fade-in/out effect to the input video.
7074
7075 It accepts the following parameters:
7076
7077 @table @option
7078 @item type, t
7079 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7080 effect.
7081 Default is @code{in}.
7082
7083 @item start_frame, s
7084 Specify the number of the frame to start applying the fade
7085 effect at. Default is 0.
7086
7087 @item nb_frames, n
7088 The number of frames that the fade effect lasts. At the end of the
7089 fade-in effect, the output video will have the same intensity as the input video.
7090 At the end of the fade-out transition, the output video will be filled with the
7091 selected @option{color}.
7092 Default is 25.
7093
7094 @item alpha
7095 If set to 1, fade only alpha channel, if one exists on the input.
7096 Default value is 0.
7097
7098 @item start_time, st
7099 Specify the timestamp (in seconds) of the frame to start to apply the fade
7100 effect. If both start_frame and start_time are specified, the fade will start at
7101 whichever comes last.  Default is 0.
7102
7103 @item duration, d
7104 The number of seconds for which the fade effect has to last. At the end of the
7105 fade-in effect the output video will have the same intensity as the input video,
7106 at the end of the fade-out transition the output video will be filled with the
7107 selected @option{color}.
7108 If both duration and nb_frames are specified, duration is used. Default is 0
7109 (nb_frames is used by default).
7110
7111 @item color, c
7112 Specify the color of the fade. Default is "black".
7113 @end table
7114
7115 @subsection Examples
7116
7117 @itemize
7118 @item
7119 Fade in the first 30 frames of video:
7120 @example
7121 fade=in:0:30
7122 @end example
7123
7124 The command above is equivalent to:
7125 @example
7126 fade=t=in:s=0:n=30
7127 @end example
7128
7129 @item
7130 Fade out the last 45 frames of a 200-frame video:
7131 @example
7132 fade=out:155:45
7133 fade=type=out:start_frame=155:nb_frames=45
7134 @end example
7135
7136 @item
7137 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7138 @example
7139 fade=in:0:25, fade=out:975:25
7140 @end example
7141
7142 @item
7143 Make the first 5 frames yellow, then fade in from frame 5-24:
7144 @example
7145 fade=in:5:20:color=yellow
7146 @end example
7147
7148 @item
7149 Fade in alpha over first 25 frames of video:
7150 @example
7151 fade=in:0:25:alpha=1
7152 @end example
7153
7154 @item
7155 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7156 @example
7157 fade=t=in:st=5.5:d=0.5
7158 @end example
7159
7160 @end itemize
7161
7162 @section fftfilt
7163 Apply arbitrary expressions to samples in frequency domain
7164
7165 @table @option
7166 @item dc_Y
7167 Adjust the dc value (gain) of the luma plane of the image. The filter
7168 accepts an integer value in range @code{0} to @code{1000}. The default
7169 value is set to @code{0}.
7170
7171 @item dc_U
7172 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7173 filter accepts an integer value in range @code{0} to @code{1000}. The
7174 default value is set to @code{0}.
7175
7176 @item dc_V
7177 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7178 filter accepts an integer value in range @code{0} to @code{1000}. The
7179 default value is set to @code{0}.
7180
7181 @item weight_Y
7182 Set the frequency domain weight expression for the luma plane.
7183
7184 @item weight_U
7185 Set the frequency domain weight expression for the 1st chroma plane.
7186
7187 @item weight_V
7188 Set the frequency domain weight expression for the 2nd chroma plane.
7189
7190 The filter accepts the following variables:
7191 @item X
7192 @item Y
7193 The coordinates of the current sample.
7194
7195 @item W
7196 @item H
7197 The width and height of the image.
7198 @end table
7199
7200 @subsection Examples
7201
7202 @itemize
7203 @item
7204 High-pass:
7205 @example
7206 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7207 @end example
7208
7209 @item
7210 Low-pass:
7211 @example
7212 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7213 @end example
7214
7215 @item
7216 Sharpen:
7217 @example
7218 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7219 @end example
7220
7221 @item
7222 Blur:
7223 @example
7224 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7225 @end example
7226
7227 @end itemize
7228
7229 @section field
7230
7231 Extract a single field from an interlaced image using stride
7232 arithmetic to avoid wasting CPU time. The output frames are marked as
7233 non-interlaced.
7234
7235 The filter accepts the following options:
7236
7237 @table @option
7238 @item type
7239 Specify whether to extract the top (if the value is @code{0} or
7240 @code{top}) or the bottom field (if the value is @code{1} or
7241 @code{bottom}).
7242 @end table
7243
7244 @section fieldhint
7245
7246 Create new frames by copying the top and bottom fields from surrounding frames
7247 supplied as numbers by the hint file.
7248
7249 @table @option
7250 @item hint
7251 Set file containing hints: absolute/relative frame numbers.
7252
7253 There must be one line for each frame in a clip. Each line must contain two
7254 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7255 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7256 is current frame number for @code{absolute} mode or out of [-1, 1] range
7257 for @code{relative} mode. First number tells from which frame to pick up top
7258 field and second number tells from which frame to pick up bottom field.
7259
7260 If optionally followed by @code{+} output frame will be marked as interlaced,
7261 else if followed by @code{-} output frame will be marked as progressive, else
7262 it will be marked same as input frame.
7263 If line starts with @code{#} or @code{;} that line is skipped.
7264
7265 @item mode
7266 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7267 @end table
7268
7269 Example of first several lines of @code{hint} file for @code{relative} mode:
7270 @example
7271 0,0 - # first frame
7272 1,0 - # second frame, use third's frame top field and second's frame bottom field
7273 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7274 1,0 -
7275 0,0 -
7276 0,0 -
7277 1,0 -
7278 1,0 -
7279 1,0 -
7280 0,0 -
7281 0,0 -
7282 1,0 -
7283 1,0 -
7284 1,0 -
7285 0,0 -
7286 @end example
7287
7288 @section fieldmatch
7289
7290 Field matching filter for inverse telecine. It is meant to reconstruct the
7291 progressive frames from a telecined stream. The filter does not drop duplicated
7292 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7293 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7294
7295 The separation of the field matching and the decimation is notably motivated by
7296 the possibility of inserting a de-interlacing filter fallback between the two.
7297 If the source has mixed telecined and real interlaced content,
7298 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7299 But these remaining combed frames will be marked as interlaced, and thus can be
7300 de-interlaced by a later filter such as @ref{yadif} before decimation.
7301
7302 In addition to the various configuration options, @code{fieldmatch} can take an
7303 optional second stream, activated through the @option{ppsrc} option. If
7304 enabled, the frames reconstruction will be based on the fields and frames from
7305 this second stream. This allows the first input to be pre-processed in order to
7306 help the various algorithms of the filter, while keeping the output lossless
7307 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7308 or brightness/contrast adjustments can help.
7309
7310 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7311 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7312 which @code{fieldmatch} is based on. While the semantic and usage are very
7313 close, some behaviour and options names can differ.
7314
7315 The @ref{decimate} filter currently only works for constant frame rate input.
7316 If your input has mixed telecined (30fps) and progressive content with a lower
7317 framerate like 24fps use the following filterchain to produce the necessary cfr
7318 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7319
7320 The filter accepts the following options:
7321
7322 @table @option
7323 @item order
7324 Specify the assumed field order of the input stream. Available values are:
7325
7326 @table @samp
7327 @item auto
7328 Auto detect parity (use FFmpeg's internal parity value).
7329 @item bff
7330 Assume bottom field first.
7331 @item tff
7332 Assume top field first.
7333 @end table
7334
7335 Note that it is sometimes recommended not to trust the parity announced by the
7336 stream.
7337
7338 Default value is @var{auto}.
7339
7340 @item mode
7341 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7342 sense that it won't risk creating jerkiness due to duplicate frames when
7343 possible, but if there are bad edits or blended fields it will end up
7344 outputting combed frames when a good match might actually exist. On the other
7345 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7346 but will almost always find a good frame if there is one. The other values are
7347 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7348 jerkiness and creating duplicate frames versus finding good matches in sections
7349 with bad edits, orphaned fields, blended fields, etc.
7350
7351 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7352
7353 Available values are:
7354
7355 @table @samp
7356 @item pc
7357 2-way matching (p/c)
7358 @item pc_n
7359 2-way matching, and trying 3rd match if still combed (p/c + n)
7360 @item pc_u
7361 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7362 @item pc_n_ub
7363 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7364 still combed (p/c + n + u/b)
7365 @item pcn
7366 3-way matching (p/c/n)
7367 @item pcn_ub
7368 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7369 detected as combed (p/c/n + u/b)
7370 @end table
7371
7372 The parenthesis at the end indicate the matches that would be used for that
7373 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7374 @var{top}).
7375
7376 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7377 the slowest.
7378
7379 Default value is @var{pc_n}.
7380
7381 @item ppsrc
7382 Mark the main input stream as a pre-processed input, and enable the secondary
7383 input stream as the clean source to pick the fields from. See the filter
7384 introduction for more details. It is similar to the @option{clip2} feature from
7385 VFM/TFM.
7386
7387 Default value is @code{0} (disabled).
7388
7389 @item field
7390 Set the field to match from. It is recommended to set this to the same value as
7391 @option{order} unless you experience matching failures with that setting. In
7392 certain circumstances changing the field that is used to match from can have a
7393 large impact on matching performance. Available values are:
7394
7395 @table @samp
7396 @item auto
7397 Automatic (same value as @option{order}).
7398 @item bottom
7399 Match from the bottom field.
7400 @item top
7401 Match from the top field.
7402 @end table
7403
7404 Default value is @var{auto}.
7405
7406 @item mchroma
7407 Set whether or not chroma is included during the match comparisons. In most
7408 cases it is recommended to leave this enabled. You should set this to @code{0}
7409 only if your clip has bad chroma problems such as heavy rainbowing or other
7410 artifacts. Setting this to @code{0} could also be used to speed things up at
7411 the cost of some accuracy.
7412
7413 Default value is @code{1}.
7414
7415 @item y0
7416 @item y1
7417 These define an exclusion band which excludes the lines between @option{y0} and
7418 @option{y1} from being included in the field matching decision. An exclusion
7419 band can be used to ignore subtitles, a logo, or other things that may
7420 interfere with the matching. @option{y0} sets the starting scan line and
7421 @option{y1} sets the ending line; all lines in between @option{y0} and
7422 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7423 @option{y0} and @option{y1} to the same value will disable the feature.
7424 @option{y0} and @option{y1} defaults to @code{0}.
7425
7426 @item scthresh
7427 Set the scene change detection threshold as a percentage of maximum change on
7428 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7429 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7430 @option{scthresh} is @code{[0.0, 100.0]}.
7431
7432 Default value is @code{12.0}.
7433
7434 @item combmatch
7435 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7436 account the combed scores of matches when deciding what match to use as the
7437 final match. Available values are:
7438
7439 @table @samp
7440 @item none
7441 No final matching based on combed scores.
7442 @item sc
7443 Combed scores are only used when a scene change is detected.
7444 @item full
7445 Use combed scores all the time.
7446 @end table
7447
7448 Default is @var{sc}.
7449
7450 @item combdbg
7451 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7452 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7453 Available values are:
7454
7455 @table @samp
7456 @item none
7457 No forced calculation.
7458 @item pcn
7459 Force p/c/n calculations.
7460 @item pcnub
7461 Force p/c/n/u/b calculations.
7462 @end table
7463
7464 Default value is @var{none}.
7465
7466 @item cthresh
7467 This is the area combing threshold used for combed frame detection. This
7468 essentially controls how "strong" or "visible" combing must be to be detected.
7469 Larger values mean combing must be more visible and smaller values mean combing
7470 can be less visible or strong and still be detected. Valid settings are from
7471 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7472 be detected as combed). This is basically a pixel difference value. A good
7473 range is @code{[8, 12]}.
7474
7475 Default value is @code{9}.
7476
7477 @item chroma
7478 Sets whether or not chroma is considered in the combed frame decision.  Only
7479 disable this if your source has chroma problems (rainbowing, etc.) that are
7480 causing problems for the combed frame detection with chroma enabled. Actually,
7481 using @option{chroma}=@var{0} is usually more reliable, except for the case
7482 where there is chroma only combing in the source.
7483
7484 Default value is @code{0}.
7485
7486 @item blockx
7487 @item blocky
7488 Respectively set the x-axis and y-axis size of the window used during combed
7489 frame detection. This has to do with the size of the area in which
7490 @option{combpel} pixels are required to be detected as combed for a frame to be
7491 declared combed. See the @option{combpel} parameter description for more info.
7492 Possible values are any number that is a power of 2 starting at 4 and going up
7493 to 512.
7494
7495 Default value is @code{16}.
7496
7497 @item combpel
7498 The number of combed pixels inside any of the @option{blocky} by
7499 @option{blockx} size blocks on the frame for the frame to be detected as
7500 combed. While @option{cthresh} controls how "visible" the combing must be, this
7501 setting controls "how much" combing there must be in any localized area (a
7502 window defined by the @option{blockx} and @option{blocky} settings) on the
7503 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7504 which point no frames will ever be detected as combed). This setting is known
7505 as @option{MI} in TFM/VFM vocabulary.
7506
7507 Default value is @code{80}.
7508 @end table
7509
7510 @anchor{p/c/n/u/b meaning}
7511 @subsection p/c/n/u/b meaning
7512
7513 @subsubsection p/c/n
7514
7515 We assume the following telecined stream:
7516
7517 @example
7518 Top fields:     1 2 2 3 4
7519 Bottom fields:  1 2 3 4 4
7520 @end example
7521
7522 The numbers correspond to the progressive frame the fields relate to. Here, the
7523 first two frames are progressive, the 3rd and 4th are combed, and so on.
7524
7525 When @code{fieldmatch} is configured to run a matching from bottom
7526 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7527
7528 @example
7529 Input stream:
7530                 T     1 2 2 3 4
7531                 B     1 2 3 4 4   <-- matching reference
7532
7533 Matches:              c c n n c
7534
7535 Output stream:
7536                 T     1 2 3 4 4
7537                 B     1 2 3 4 4
7538 @end example
7539
7540 As a result of the field matching, we can see that some frames get duplicated.
7541 To perform a complete inverse telecine, you need to rely on a decimation filter
7542 after this operation. See for instance the @ref{decimate} filter.
7543
7544 The same operation now matching from top fields (@option{field}=@var{top})
7545 looks like this:
7546
7547 @example
7548 Input stream:
7549                 T     1 2 2 3 4   <-- matching reference
7550                 B     1 2 3 4 4
7551
7552 Matches:              c c p p c
7553
7554 Output stream:
7555                 T     1 2 2 3 4
7556                 B     1 2 2 3 4
7557 @end example
7558
7559 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7560 basically, they refer to the frame and field of the opposite parity:
7561
7562 @itemize
7563 @item @var{p} matches the field of the opposite parity in the previous frame
7564 @item @var{c} matches the field of the opposite parity in the current frame
7565 @item @var{n} matches the field of the opposite parity in the next frame
7566 @end itemize
7567
7568 @subsubsection u/b
7569
7570 The @var{u} and @var{b} matching are a bit special in the sense that they match
7571 from the opposite parity flag. In the following examples, we assume that we are
7572 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7573 'x' is placed above and below each matched fields.
7574
7575 With bottom matching (@option{field}=@var{bottom}):
7576 @example
7577 Match:           c         p           n          b          u
7578
7579                  x       x               x        x          x
7580   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7581   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7582                  x         x           x        x              x
7583
7584 Output frames:
7585                  2          1          2          2          2
7586                  2          2          2          1          3
7587 @end example
7588
7589 With top matching (@option{field}=@var{top}):
7590 @example
7591 Match:           c         p           n          b          u
7592
7593                  x         x           x        x              x
7594   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7595   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7596                  x       x               x        x          x
7597
7598 Output frames:
7599                  2          2          2          1          2
7600                  2          1          3          2          2
7601 @end example
7602
7603 @subsection Examples
7604
7605 Simple IVTC of a top field first telecined stream:
7606 @example
7607 fieldmatch=order=tff:combmatch=none, decimate
7608 @end example
7609
7610 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7611 @example
7612 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7613 @end example
7614
7615 @section fieldorder
7616
7617 Transform the field order of the input video.
7618
7619 It accepts the following parameters:
7620
7621 @table @option
7622
7623 @item order
7624 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7625 for bottom field first.
7626 @end table
7627
7628 The default value is @samp{tff}.
7629
7630 The transformation is done by shifting the picture content up or down
7631 by one line, and filling the remaining line with appropriate picture content.
7632 This method is consistent with most broadcast field order converters.
7633
7634 If the input video is not flagged as being interlaced, or it is already
7635 flagged as being of the required output field order, then this filter does
7636 not alter the incoming video.
7637
7638 It is very useful when converting to or from PAL DV material,
7639 which is bottom field first.
7640
7641 For example:
7642 @example
7643 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7644 @end example
7645
7646 @section fifo, afifo
7647
7648 Buffer input images and send them when they are requested.
7649
7650 It is mainly useful when auto-inserted by the libavfilter
7651 framework.
7652
7653 It does not take parameters.
7654
7655 @section find_rect
7656
7657 Find a rectangular object
7658
7659 It accepts the following options:
7660
7661 @table @option
7662 @item object
7663 Filepath of the object image, needs to be in gray8.
7664
7665 @item threshold
7666 Detection threshold, default is 0.5.
7667
7668 @item mipmaps
7669 Number of mipmaps, default is 3.
7670
7671 @item xmin, ymin, xmax, ymax
7672 Specifies the rectangle in which to search.
7673 @end table
7674
7675 @subsection Examples
7676
7677 @itemize
7678 @item
7679 Generate a representative palette of a given video using @command{ffmpeg}:
7680 @example
7681 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7682 @end example
7683 @end itemize
7684
7685 @section cover_rect
7686
7687 Cover a rectangular object
7688
7689 It accepts the following options:
7690
7691 @table @option
7692 @item cover
7693 Filepath of the optional cover image, needs to be in yuv420.
7694
7695 @item mode
7696 Set covering mode.
7697
7698 It accepts the following values:
7699 @table @samp
7700 @item cover
7701 cover it by the supplied image
7702 @item blur
7703 cover it by interpolating the surrounding pixels
7704 @end table
7705
7706 Default value is @var{blur}.
7707 @end table
7708
7709 @subsection Examples
7710
7711 @itemize
7712 @item
7713 Generate a representative palette of a given video using @command{ffmpeg}:
7714 @example
7715 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7716 @end example
7717 @end itemize
7718
7719 @anchor{format}
7720 @section format
7721
7722 Convert the input video to one of the specified pixel formats.
7723 Libavfilter will try to pick one that is suitable as input to
7724 the next filter.
7725
7726 It accepts the following parameters:
7727 @table @option
7728
7729 @item pix_fmts
7730 A '|'-separated list of pixel format names, such as
7731 "pix_fmts=yuv420p|monow|rgb24".
7732
7733 @end table
7734
7735 @subsection Examples
7736
7737 @itemize
7738 @item
7739 Convert the input video to the @var{yuv420p} format
7740 @example
7741 format=pix_fmts=yuv420p
7742 @end example
7743
7744 Convert the input video to any of the formats in the list
7745 @example
7746 format=pix_fmts=yuv420p|yuv444p|yuv410p
7747 @end example
7748 @end itemize
7749
7750 @anchor{fps}
7751 @section fps
7752
7753 Convert the video to specified constant frame rate by duplicating or dropping
7754 frames as necessary.
7755
7756 It accepts the following parameters:
7757 @table @option
7758
7759 @item fps
7760 The desired output frame rate. The default is @code{25}.
7761
7762 @item round
7763 Rounding method.
7764
7765 Possible values are:
7766 @table @option
7767 @item zero
7768 zero round towards 0
7769 @item inf
7770 round away from 0
7771 @item down
7772 round towards -infinity
7773 @item up
7774 round towards +infinity
7775 @item near
7776 round to nearest
7777 @end table
7778 The default is @code{near}.
7779
7780 @item start_time
7781 Assume the first PTS should be the given value, in seconds. This allows for
7782 padding/trimming at the start of stream. By default, no assumption is made
7783 about the first frame's expected PTS, so no padding or trimming is done.
7784 For example, this could be set to 0 to pad the beginning with duplicates of
7785 the first frame if a video stream starts after the audio stream or to trim any
7786 frames with a negative PTS.
7787
7788 @end table
7789
7790 Alternatively, the options can be specified as a flat string:
7791 @var{fps}[:@var{round}].
7792
7793 See also the @ref{setpts} filter.
7794
7795 @subsection Examples
7796
7797 @itemize
7798 @item
7799 A typical usage in order to set the fps to 25:
7800 @example
7801 fps=fps=25
7802 @end example
7803
7804 @item
7805 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7806 @example
7807 fps=fps=film:round=near
7808 @end example
7809 @end itemize
7810
7811 @section framepack
7812
7813 Pack two different video streams into a stereoscopic video, setting proper
7814 metadata on supported codecs. The two views should have the same size and
7815 framerate and processing will stop when the shorter video ends. Please note
7816 that you may conveniently adjust view properties with the @ref{scale} and
7817 @ref{fps} filters.
7818
7819 It accepts the following parameters:
7820 @table @option
7821
7822 @item format
7823 The desired packing format. Supported values are:
7824
7825 @table @option
7826
7827 @item sbs
7828 The views are next to each other (default).
7829
7830 @item tab
7831 The views are on top of each other.
7832
7833 @item lines
7834 The views are packed by line.
7835
7836 @item columns
7837 The views are packed by column.
7838
7839 @item frameseq
7840 The views are temporally interleaved.
7841
7842 @end table
7843
7844 @end table
7845
7846 Some examples:
7847
7848 @example
7849 # Convert left and right views into a frame-sequential video
7850 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7851
7852 # Convert views into a side-by-side video with the same output resolution as the input
7853 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
7854 @end example
7855
7856 @section framerate
7857
7858 Change the frame rate by interpolating new video output frames from the source
7859 frames.
7860
7861 This filter is not designed to function correctly with interlaced media. If
7862 you wish to change the frame rate of interlaced media then you are required
7863 to deinterlace before this filter and re-interlace after this filter.
7864
7865 A description of the accepted options follows.
7866
7867 @table @option
7868 @item fps
7869 Specify the output frames per second. This option can also be specified
7870 as a value alone. The default is @code{50}.
7871
7872 @item interp_start
7873 Specify the start of a range where the output frame will be created as a
7874 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7875 the default is @code{15}.
7876
7877 @item interp_end
7878 Specify the end of a range where the output frame will be created as a
7879 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7880 the default is @code{240}.
7881
7882 @item scene
7883 Specify the level at which a scene change is detected as a value between
7884 0 and 100 to indicate a new scene; a low value reflects a low
7885 probability for the current frame to introduce a new scene, while a higher
7886 value means the current frame is more likely to be one.
7887 The default is @code{7}.
7888
7889 @item flags
7890 Specify flags influencing the filter process.
7891
7892 Available value for @var{flags} is:
7893
7894 @table @option
7895 @item scene_change_detect, scd
7896 Enable scene change detection using the value of the option @var{scene}.
7897 This flag is enabled by default.
7898 @end table
7899 @end table
7900
7901 @section framestep
7902
7903 Select one frame every N-th frame.
7904
7905 This filter accepts the following option:
7906 @table @option
7907 @item step
7908 Select frame after every @code{step} frames.
7909 Allowed values are positive integers higher than 0. Default value is @code{1}.
7910 @end table
7911
7912 @anchor{frei0r}
7913 @section frei0r
7914
7915 Apply a frei0r effect to the input video.
7916
7917 To enable the compilation of this filter, you need to install the frei0r
7918 header and configure FFmpeg with @code{--enable-frei0r}.
7919
7920 It accepts the following parameters:
7921
7922 @table @option
7923
7924 @item filter_name
7925 The name of the frei0r effect to load. If the environment variable
7926 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7927 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7928 Otherwise, the standard frei0r paths are searched, in this order:
7929 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7930 @file{/usr/lib/frei0r-1/}.
7931
7932 @item filter_params
7933 A '|'-separated list of parameters to pass to the frei0r effect.
7934
7935 @end table
7936
7937 A frei0r effect parameter can be a boolean (its value is either
7938 "y" or "n"), a double, a color (specified as
7939 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
7940 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
7941 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
7942 @var{X} and @var{Y} are floating point numbers) and/or a string.
7943
7944 The number and types of parameters depend on the loaded effect. If an
7945 effect parameter is not specified, the default value is set.
7946
7947 @subsection Examples
7948
7949 @itemize
7950 @item
7951 Apply the distort0r effect, setting the first two double parameters:
7952 @example
7953 frei0r=filter_name=distort0r:filter_params=0.5|0.01
7954 @end example
7955
7956 @item
7957 Apply the colordistance effect, taking a color as the first parameter:
7958 @example
7959 frei0r=colordistance:0.2/0.3/0.4
7960 frei0r=colordistance:violet
7961 frei0r=colordistance:0x112233
7962 @end example
7963
7964 @item
7965 Apply the perspective effect, specifying the top left and top right image
7966 positions:
7967 @example
7968 frei0r=perspective:0.2/0.2|0.8/0.2
7969 @end example
7970 @end itemize
7971
7972 For more information, see
7973 @url{http://frei0r.dyne.org}
7974
7975 @section fspp
7976
7977 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
7978
7979 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
7980 processing filter, one of them is performed once per block, not per pixel.
7981 This allows for much higher speed.
7982
7983 The filter accepts the following options:
7984
7985 @table @option
7986 @item quality
7987 Set quality. This option defines the number of levels for averaging. It accepts
7988 an integer in the range 4-5. Default value is @code{4}.
7989
7990 @item qp
7991 Force a constant quantization parameter. It accepts an integer in range 0-63.
7992 If not set, the filter will use the QP from the video stream (if available).
7993
7994 @item strength
7995 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
7996 more details but also more artifacts, while higher values make the image smoother
7997 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
7998
7999 @item use_bframe_qp
8000 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8001 option may cause flicker since the B-Frames have often larger QP. Default is
8002 @code{0} (not enabled).
8003
8004 @end table
8005
8006 @section geq
8007
8008 The filter accepts the following options:
8009
8010 @table @option
8011 @item lum_expr, lum
8012 Set the luminance expression.
8013 @item cb_expr, cb
8014 Set the chrominance blue expression.
8015 @item cr_expr, cr
8016 Set the chrominance red expression.
8017 @item alpha_expr, a
8018 Set the alpha expression.
8019 @item red_expr, r
8020 Set the red expression.
8021 @item green_expr, g
8022 Set the green expression.
8023 @item blue_expr, b
8024 Set the blue expression.
8025 @end table
8026
8027 The colorspace is selected according to the specified options. If one
8028 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8029 options is specified, the filter will automatically select a YCbCr
8030 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8031 @option{blue_expr} options is specified, it will select an RGB
8032 colorspace.
8033
8034 If one of the chrominance expression is not defined, it falls back on the other
8035 one. If no alpha expression is specified it will evaluate to opaque value.
8036 If none of chrominance expressions are specified, they will evaluate
8037 to the luminance expression.
8038
8039 The expressions can use the following variables and functions:
8040
8041 @table @option
8042 @item N
8043 The sequential number of the filtered frame, starting from @code{0}.
8044
8045 @item X
8046 @item Y
8047 The coordinates of the current sample.
8048
8049 @item W
8050 @item H
8051 The width and height of the image.
8052
8053 @item SW
8054 @item SH
8055 Width and height scale depending on the currently filtered plane. It is the
8056 ratio between the corresponding luma plane number of pixels and the current
8057 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8058 @code{0.5,0.5} for chroma planes.
8059
8060 @item T
8061 Time of the current frame, expressed in seconds.
8062
8063 @item p(x, y)
8064 Return the value of the pixel at location (@var{x},@var{y}) of the current
8065 plane.
8066
8067 @item lum(x, y)
8068 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8069 plane.
8070
8071 @item cb(x, y)
8072 Return the value of the pixel at location (@var{x},@var{y}) of the
8073 blue-difference chroma plane. Return 0 if there is no such plane.
8074
8075 @item cr(x, y)
8076 Return the value of the pixel at location (@var{x},@var{y}) of the
8077 red-difference chroma plane. Return 0 if there is no such plane.
8078
8079 @item r(x, y)
8080 @item g(x, y)
8081 @item b(x, y)
8082 Return the value of the pixel at location (@var{x},@var{y}) of the
8083 red/green/blue component. Return 0 if there is no such component.
8084
8085 @item alpha(x, y)
8086 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8087 plane. Return 0 if there is no such plane.
8088 @end table
8089
8090 For functions, if @var{x} and @var{y} are outside the area, the value will be
8091 automatically clipped to the closer edge.
8092
8093 @subsection Examples
8094
8095 @itemize
8096 @item
8097 Flip the image horizontally:
8098 @example
8099 geq=p(W-X\,Y)
8100 @end example
8101
8102 @item
8103 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8104 wavelength of 100 pixels:
8105 @example
8106 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8107 @end example
8108
8109 @item
8110 Generate a fancy enigmatic moving light:
8111 @example
8112 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
8113 @end example
8114
8115 @item
8116 Generate a quick emboss effect:
8117 @example
8118 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8119 @end example
8120
8121 @item
8122 Modify RGB components depending on pixel position:
8123 @example
8124 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8125 @end example
8126
8127 @item
8128 Create a radial gradient that is the same size as the input (also see
8129 the @ref{vignette} filter):
8130 @example
8131 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8132 @end example
8133 @end itemize
8134
8135 @section gradfun
8136
8137 Fix the banding artifacts that are sometimes introduced into nearly flat
8138 regions by truncation to 8bit color depth.
8139 Interpolate the gradients that should go where the bands are, and
8140 dither them.
8141
8142 It is designed for playback only.  Do not use it prior to
8143 lossy compression, because compression tends to lose the dither and
8144 bring back the bands.
8145
8146 It accepts the following parameters:
8147
8148 @table @option
8149
8150 @item strength
8151 The maximum amount by which the filter will change any one pixel. This is also
8152 the threshold for detecting nearly flat regions. Acceptable values range from
8153 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8154 valid range.
8155
8156 @item radius
8157 The neighborhood to fit the gradient to. A larger radius makes for smoother
8158 gradients, but also prevents the filter from modifying the pixels near detailed
8159 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8160 values will be clipped to the valid range.
8161
8162 @end table
8163
8164 Alternatively, the options can be specified as a flat string:
8165 @var{strength}[:@var{radius}]
8166
8167 @subsection Examples
8168
8169 @itemize
8170 @item
8171 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8172 @example
8173 gradfun=3.5:8
8174 @end example
8175
8176 @item
8177 Specify radius, omitting the strength (which will fall-back to the default
8178 value):
8179 @example
8180 gradfun=radius=8
8181 @end example
8182
8183 @end itemize
8184
8185 @anchor{haldclut}
8186 @section haldclut
8187
8188 Apply a Hald CLUT to a video stream.
8189
8190 First input is the video stream to process, and second one is the Hald CLUT.
8191 The Hald CLUT input can be a simple picture or a complete video stream.
8192
8193 The filter accepts the following options:
8194
8195 @table @option
8196 @item shortest
8197 Force termination when the shortest input terminates. Default is @code{0}.
8198 @item repeatlast
8199 Continue applying the last CLUT after the end of the stream. A value of
8200 @code{0} disable the filter after the last frame of the CLUT is reached.
8201 Default is @code{1}.
8202 @end table
8203
8204 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8205 filters share the same internals).
8206
8207 More information about the Hald CLUT can be found on Eskil Steenberg's website
8208 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8209
8210 @subsection Workflow examples
8211
8212 @subsubsection Hald CLUT video stream
8213
8214 Generate an identity Hald CLUT stream altered with various effects:
8215 @example
8216 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
8217 @end example
8218
8219 Note: make sure you use a lossless codec.
8220
8221 Then use it with @code{haldclut} to apply it on some random stream:
8222 @example
8223 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8224 @end example
8225
8226 The Hald CLUT will be applied to the 10 first seconds (duration of
8227 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8228 to the remaining frames of the @code{mandelbrot} stream.
8229
8230 @subsubsection Hald CLUT with preview
8231
8232 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8233 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8234 biggest possible square starting at the top left of the picture. The remaining
8235 padding pixels (bottom or right) will be ignored. This area can be used to add
8236 a preview of the Hald CLUT.
8237
8238 Typically, the following generated Hald CLUT will be supported by the
8239 @code{haldclut} filter:
8240
8241 @example
8242 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8243    pad=iw+320 [padded_clut];
8244    smptebars=s=320x256, split [a][b];
8245    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8246    [main][b] overlay=W-320" -frames:v 1 clut.png
8247 @end example
8248
8249 It contains the original and a preview of the effect of the CLUT: SMPTE color
8250 bars are displayed on the right-top, and below the same color bars processed by
8251 the color changes.
8252
8253 Then, the effect of this Hald CLUT can be visualized with:
8254 @example
8255 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8256 @end example
8257
8258 @section hdcd
8259
8260 Decodes high definition audio cd data. 16-Bit PCM stream containing hdcd flags
8261 is converted to 20-bit PCM stream.
8262
8263 @section hflip
8264
8265 Flip the input video horizontally.
8266
8267 For example, to horizontally flip the input video with @command{ffmpeg}:
8268 @example
8269 ffmpeg -i in.avi -vf "hflip" out.avi
8270 @end example
8271
8272 @section histeq
8273 This filter applies a global color histogram equalization on a
8274 per-frame basis.
8275
8276 It can be used to correct video that has a compressed range of pixel
8277 intensities.  The filter redistributes the pixel intensities to
8278 equalize their distribution across the intensity range. It may be
8279 viewed as an "automatically adjusting contrast filter". This filter is
8280 useful only for correcting degraded or poorly captured source
8281 video.
8282
8283 The filter accepts the following options:
8284
8285 @table @option
8286 @item strength
8287 Determine the amount of equalization to be applied.  As the strength
8288 is reduced, the distribution of pixel intensities more-and-more
8289 approaches that of the input frame. The value must be a float number
8290 in the range [0,1] and defaults to 0.200.
8291
8292 @item intensity
8293 Set the maximum intensity that can generated and scale the output
8294 values appropriately.  The strength should be set as desired and then
8295 the intensity can be limited if needed to avoid washing-out. The value
8296 must be a float number in the range [0,1] and defaults to 0.210.
8297
8298 @item antibanding
8299 Set the antibanding level. If enabled the filter will randomly vary
8300 the luminance of output pixels by a small amount to avoid banding of
8301 the histogram. Possible values are @code{none}, @code{weak} or
8302 @code{strong}. It defaults to @code{none}.
8303 @end table
8304
8305 @section histogram
8306
8307 Compute and draw a color distribution histogram for the input video.
8308
8309 The computed histogram is a representation of the color component
8310 distribution in an image.
8311
8312 Standard histogram displays the color components distribution in an image.
8313 Displays color graph for each color component. Shows distribution of
8314 the Y, U, V, A or R, G, B components, depending on input format, in the
8315 current frame. Below each graph a color component scale meter is shown.
8316
8317 The filter accepts the following options:
8318
8319 @table @option
8320 @item level_height
8321 Set height of level. Default value is @code{200}.
8322 Allowed range is [50, 2048].
8323
8324 @item scale_height
8325 Set height of color scale. Default value is @code{12}.
8326 Allowed range is [0, 40].
8327
8328 @item display_mode
8329 Set display mode.
8330 It accepts the following values:
8331 @table @samp
8332 @item parade
8333 Per color component graphs are placed below each other.
8334
8335 @item overlay
8336 Presents information identical to that in the @code{parade}, except
8337 that the graphs representing color components are superimposed directly
8338 over one another.
8339 @end table
8340 Default is @code{parade}.
8341
8342 @item levels_mode
8343 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8344 Default is @code{linear}.
8345
8346 @item components
8347 Set what color components to display.
8348 Default is @code{7}.
8349 @end table
8350
8351 @subsection Examples
8352
8353 @itemize
8354
8355 @item
8356 Calculate and draw histogram:
8357 @example
8358 ffplay -i input -vf histogram
8359 @end example
8360
8361 @end itemize
8362
8363 @anchor{hqdn3d}
8364 @section hqdn3d
8365
8366 This is a high precision/quality 3d denoise filter. It aims to reduce
8367 image noise, producing smooth images and making still images really
8368 still. It should enhance compressibility.
8369
8370 It accepts the following optional parameters:
8371
8372 @table @option
8373 @item luma_spatial
8374 A non-negative floating point number which specifies spatial luma strength.
8375 It defaults to 4.0.
8376
8377 @item chroma_spatial
8378 A non-negative floating point number which specifies spatial chroma strength.
8379 It defaults to 3.0*@var{luma_spatial}/4.0.
8380
8381 @item luma_tmp
8382 A floating point number which specifies luma temporal strength. It defaults to
8383 6.0*@var{luma_spatial}/4.0.
8384
8385 @item chroma_tmp
8386 A floating point number which specifies chroma temporal strength. It defaults to
8387 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8388 @end table
8389
8390 @anchor{hwupload_cuda}
8391 @section hwupload_cuda
8392
8393 Upload system memory frames to a CUDA device.
8394
8395 It accepts the following optional parameters:
8396
8397 @table @option
8398 @item device
8399 The number of the CUDA device to use
8400 @end table
8401
8402 @section hqx
8403
8404 Apply a high-quality magnification filter designed for pixel art. This filter
8405 was originally created by Maxim Stepin.
8406
8407 It accepts the following option:
8408
8409 @table @option
8410 @item n
8411 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8412 @code{hq3x} and @code{4} for @code{hq4x}.
8413 Default is @code{3}.
8414 @end table
8415
8416 @section hstack
8417 Stack input videos horizontally.
8418
8419 All streams must be of same pixel format and of same height.
8420
8421 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8422 to create same output.
8423
8424 The filter accept the following option:
8425
8426 @table @option
8427 @item inputs
8428 Set number of input streams. Default is 2.
8429
8430 @item shortest
8431 If set to 1, force the output to terminate when the shortest input
8432 terminates. Default value is 0.
8433 @end table
8434
8435 @section hue
8436
8437 Modify the hue and/or the saturation of the input.
8438
8439 It accepts the following parameters:
8440
8441 @table @option
8442 @item h
8443 Specify the hue angle as a number of degrees. It accepts an expression,
8444 and defaults to "0".
8445
8446 @item s
8447 Specify the saturation in the [-10,10] range. It accepts an expression and
8448 defaults to "1".
8449
8450 @item H
8451 Specify the hue angle as a number of radians. It accepts an
8452 expression, and defaults to "0".
8453
8454 @item b
8455 Specify the brightness in the [-10,10] range. It accepts an expression and
8456 defaults to "0".
8457 @end table
8458
8459 @option{h} and @option{H} are mutually exclusive, and can't be
8460 specified at the same time.
8461
8462 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8463 expressions containing the following constants:
8464
8465 @table @option
8466 @item n
8467 frame count of the input frame starting from 0
8468
8469 @item pts
8470 presentation timestamp of the input frame expressed in time base units
8471
8472 @item r
8473 frame rate of the input video, NAN if the input frame rate is unknown
8474
8475 @item t
8476 timestamp expressed in seconds, NAN if the input timestamp is unknown
8477
8478 @item tb
8479 time base of the input video
8480 @end table
8481
8482 @subsection Examples
8483
8484 @itemize
8485 @item
8486 Set the hue to 90 degrees and the saturation to 1.0:
8487 @example
8488 hue=h=90:s=1
8489 @end example
8490
8491 @item
8492 Same command but expressing the hue in radians:
8493 @example
8494 hue=H=PI/2:s=1
8495 @end example
8496
8497 @item
8498 Rotate hue and make the saturation swing between 0
8499 and 2 over a period of 1 second:
8500 @example
8501 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8502 @end example
8503
8504 @item
8505 Apply a 3 seconds saturation fade-in effect starting at 0:
8506 @example
8507 hue="s=min(t/3\,1)"
8508 @end example
8509
8510 The general fade-in expression can be written as:
8511 @example
8512 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8513 @end example
8514
8515 @item
8516 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8517 @example
8518 hue="s=max(0\, min(1\, (8-t)/3))"
8519 @end example
8520
8521 The general fade-out expression can be written as:
8522 @example
8523 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8524 @end example
8525
8526 @end itemize
8527
8528 @subsection Commands
8529
8530 This filter supports the following commands:
8531 @table @option
8532 @item b
8533 @item s
8534 @item h
8535 @item H
8536 Modify the hue and/or the saturation and/or brightness of the input video.
8537 The command accepts the same syntax of the corresponding option.
8538
8539 If the specified expression is not valid, it is kept at its current
8540 value.
8541 @end table
8542
8543 @section idet
8544
8545 Detect video interlacing type.
8546
8547 This filter tries to detect if the input frames as interlaced, progressive,
8548 top or bottom field first. It will also try and detect fields that are
8549 repeated between adjacent frames (a sign of telecine).
8550
8551 Single frame detection considers only immediately adjacent frames when classifying each frame.
8552 Multiple frame detection incorporates the classification history of previous frames.
8553
8554 The filter will log these metadata values:
8555
8556 @table @option
8557 @item single.current_frame
8558 Detected type of current frame using single-frame detection. One of:
8559 ``tff'' (top field first), ``bff'' (bottom field first),
8560 ``progressive'', or ``undetermined''
8561
8562 @item single.tff
8563 Cumulative number of frames detected as top field first using single-frame detection.
8564
8565 @item multiple.tff
8566 Cumulative number of frames detected as top field first using multiple-frame detection.
8567
8568 @item single.bff
8569 Cumulative number of frames detected as bottom field first using single-frame detection.
8570
8571 @item multiple.current_frame
8572 Detected type of current frame using multiple-frame detection. One of:
8573 ``tff'' (top field first), ``bff'' (bottom field first),
8574 ``progressive'', or ``undetermined''
8575
8576 @item multiple.bff
8577 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8578
8579 @item single.progressive
8580 Cumulative number of frames detected as progressive using single-frame detection.
8581
8582 @item multiple.progressive
8583 Cumulative number of frames detected as progressive using multiple-frame detection.
8584
8585 @item single.undetermined
8586 Cumulative number of frames that could not be classified using single-frame detection.
8587
8588 @item multiple.undetermined
8589 Cumulative number of frames that could not be classified using multiple-frame detection.
8590
8591 @item repeated.current_frame
8592 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8593
8594 @item repeated.neither
8595 Cumulative number of frames with no repeated field.
8596
8597 @item repeated.top
8598 Cumulative number of frames with the top field repeated from the previous frame's top field.
8599
8600 @item repeated.bottom
8601 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8602 @end table
8603
8604 The filter accepts the following options:
8605
8606 @table @option
8607 @item intl_thres
8608 Set interlacing threshold.
8609 @item prog_thres
8610 Set progressive threshold.
8611 @item rep_thres
8612 Threshold for repeated field detection.
8613 @item half_life
8614 Number of frames after which a given frame's contribution to the
8615 statistics is halved (i.e., it contributes only 0.5 to it's
8616 classification). The default of 0 means that all frames seen are given
8617 full weight of 1.0 forever.
8618 @item analyze_interlaced_flag
8619 When this is not 0 then idet will use the specified number of frames to determine
8620 if the interlaced flag is accurate, it will not count undetermined frames.
8621 If the flag is found to be accurate it will be used without any further
8622 computations, if it is found to be inaccurate it will be cleared without any
8623 further computations. This allows inserting the idet filter as a low computational
8624 method to clean up the interlaced flag
8625 @end table
8626
8627 @section il
8628
8629 Deinterleave or interleave fields.
8630
8631 This filter allows one to process interlaced images fields without
8632 deinterlacing them. Deinterleaving splits the input frame into 2
8633 fields (so called half pictures). Odd lines are moved to the top
8634 half of the output image, even lines to the bottom half.
8635 You can process (filter) them independently and then re-interleave them.
8636
8637 The filter accepts the following options:
8638
8639 @table @option
8640 @item luma_mode, l
8641 @item chroma_mode, c
8642 @item alpha_mode, a
8643 Available values for @var{luma_mode}, @var{chroma_mode} and
8644 @var{alpha_mode} are:
8645
8646 @table @samp
8647 @item none
8648 Do nothing.
8649
8650 @item deinterleave, d
8651 Deinterleave fields, placing one above the other.
8652
8653 @item interleave, i
8654 Interleave fields. Reverse the effect of deinterleaving.
8655 @end table
8656 Default value is @code{none}.
8657
8658 @item luma_swap, ls
8659 @item chroma_swap, cs
8660 @item alpha_swap, as
8661 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8662 @end table
8663
8664 @section inflate
8665
8666 Apply inflate effect to the video.
8667
8668 This filter replaces the pixel by the local(3x3) average by taking into account
8669 only values higher than the pixel.
8670
8671 It accepts the following options:
8672
8673 @table @option
8674 @item threshold0
8675 @item threshold1
8676 @item threshold2
8677 @item threshold3
8678 Limit the maximum change for each plane, default is 65535.
8679 If 0, plane will remain unchanged.
8680 @end table
8681
8682 @section interlace
8683
8684 Simple interlacing filter from progressive contents. This interleaves upper (or
8685 lower) lines from odd frames with lower (or upper) lines from even frames,
8686 halving the frame rate and preserving image height.
8687
8688 @example
8689    Original        Original             New Frame
8690    Frame 'j'      Frame 'j+1'             (tff)
8691   ==========      ===========       ==================
8692     Line 0  -------------------->    Frame 'j' Line 0
8693     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8694     Line 2 --------------------->    Frame 'j' Line 2
8695     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8696      ...             ...                   ...
8697 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8698 @end example
8699
8700 It accepts the following optional parameters:
8701
8702 @table @option
8703 @item scan
8704 This determines whether the interlaced frame is taken from the even
8705 (tff - default) or odd (bff) lines of the progressive frame.
8706
8707 @item lowpass
8708 Enable (default) or disable the vertical lowpass filter to avoid twitter
8709 interlacing and reduce moire patterns.
8710 @end table
8711
8712 @section kerndeint
8713
8714 Deinterlace input video by applying Donald Graft's adaptive kernel
8715 deinterling. Work on interlaced parts of a video to produce
8716 progressive frames.
8717
8718 The description of the accepted parameters follows.
8719
8720 @table @option
8721 @item thresh
8722 Set the threshold which affects the filter's tolerance when
8723 determining if a pixel line must be processed. It must be an integer
8724 in the range [0,255] and defaults to 10. A value of 0 will result in
8725 applying the process on every pixels.
8726
8727 @item map
8728 Paint pixels exceeding the threshold value to white if set to 1.
8729 Default is 0.
8730
8731 @item order
8732 Set the fields order. Swap fields if set to 1, leave fields alone if
8733 0. Default is 0.
8734
8735 @item sharp
8736 Enable additional sharpening if set to 1. Default is 0.
8737
8738 @item twoway
8739 Enable twoway sharpening if set to 1. Default is 0.
8740 @end table
8741
8742 @subsection Examples
8743
8744 @itemize
8745 @item
8746 Apply default values:
8747 @example
8748 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8749 @end example
8750
8751 @item
8752 Enable additional sharpening:
8753 @example
8754 kerndeint=sharp=1
8755 @end example
8756
8757 @item
8758 Paint processed pixels in white:
8759 @example
8760 kerndeint=map=1
8761 @end example
8762 @end itemize
8763
8764 @section lenscorrection
8765
8766 Correct radial lens distortion
8767
8768 This filter can be used to correct for radial distortion as can result from the use
8769 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8770 one can use tools available for example as part of opencv or simply trial-and-error.
8771 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8772 and extract the k1 and k2 coefficients from the resulting matrix.
8773
8774 Note that effectively the same filter is available in the open-source tools Krita and
8775 Digikam from the KDE project.
8776
8777 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8778 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8779 brightness distribution, so you may want to use both filters together in certain
8780 cases, though you will have to take care of ordering, i.e. whether vignetting should
8781 be applied before or after lens correction.
8782
8783 @subsection Options
8784
8785 The filter accepts the following options:
8786
8787 @table @option
8788 @item cx
8789 Relative x-coordinate of the focal point of the image, and thereby the center of the
8790 distortion. This value has a range [0,1] and is expressed as fractions of the image
8791 width.
8792 @item cy
8793 Relative y-coordinate of the focal point of the image, and thereby the center of the
8794 distortion. This value has a range [0,1] and is expressed as fractions of the image
8795 height.
8796 @item k1
8797 Coefficient of the quadratic correction term. 0.5 means no correction.
8798 @item k2
8799 Coefficient of the double quadratic correction term. 0.5 means no correction.
8800 @end table
8801
8802 The formula that generates the correction is:
8803
8804 @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)
8805
8806 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8807 distances from the focal point in the source and target images, respectively.
8808
8809 @section loop, aloop
8810
8811 Loop video frames or audio samples.
8812
8813 Those filters accepts the following options:
8814
8815 @table @option
8816 @item loop
8817 Set the number of loops.
8818
8819 @item size
8820 Set maximal size in number of frames for @code{loop} filter or maximal number
8821 of samples in case of @code{aloop} filter.
8822
8823 @item start
8824 Set first frame of loop for @code{loop} filter or first sample of loop in case
8825 of @code{aloop} filter.
8826 @end table
8827
8828 @anchor{lut3d}
8829 @section lut3d
8830
8831 Apply a 3D LUT to an input video.
8832
8833 The filter accepts the following options:
8834
8835 @table @option
8836 @item file
8837 Set the 3D LUT file name.
8838
8839 Currently supported formats:
8840 @table @samp
8841 @item 3dl
8842 AfterEffects
8843 @item cube
8844 Iridas
8845 @item dat
8846 DaVinci
8847 @item m3d
8848 Pandora
8849 @end table
8850 @item interp
8851 Select interpolation mode.
8852
8853 Available values are:
8854
8855 @table @samp
8856 @item nearest
8857 Use values from the nearest defined point.
8858 @item trilinear
8859 Interpolate values using the 8 points defining a cube.
8860 @item tetrahedral
8861 Interpolate values using a tetrahedron.
8862 @end table
8863 @end table
8864
8865 @section lut, lutrgb, lutyuv
8866
8867 Compute a look-up table for binding each pixel component input value
8868 to an output value, and apply it to the input video.
8869
8870 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8871 to an RGB input video.
8872
8873 These filters accept the following parameters:
8874 @table @option
8875 @item c0
8876 set first pixel component expression
8877 @item c1
8878 set second pixel component expression
8879 @item c2
8880 set third pixel component expression
8881 @item c3
8882 set fourth pixel component expression, corresponds to the alpha component
8883
8884 @item r
8885 set red component expression
8886 @item g
8887 set green component expression
8888 @item b
8889 set blue component expression
8890 @item a
8891 alpha component expression
8892
8893 @item y
8894 set Y/luminance component expression
8895 @item u
8896 set U/Cb component expression
8897 @item v
8898 set V/Cr component expression
8899 @end table
8900
8901 Each of them specifies the expression to use for computing the lookup table for
8902 the corresponding pixel component values.
8903
8904 The exact component associated to each of the @var{c*} options depends on the
8905 format in input.
8906
8907 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8908 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8909
8910 The expressions can contain the following constants and functions:
8911
8912 @table @option
8913 @item w
8914 @item h
8915 The input width and height.
8916
8917 @item val
8918 The input value for the pixel component.
8919
8920 @item clipval
8921 The input value, clipped to the @var{minval}-@var{maxval} range.
8922
8923 @item maxval
8924 The maximum value for the pixel component.
8925
8926 @item minval
8927 The minimum value for the pixel component.
8928
8929 @item negval
8930 The negated value for the pixel component value, clipped to the
8931 @var{minval}-@var{maxval} range; it corresponds to the expression
8932 "maxval-clipval+minval".
8933
8934 @item clip(val)
8935 The computed value in @var{val}, clipped to the
8936 @var{minval}-@var{maxval} range.
8937
8938 @item gammaval(gamma)
8939 The computed gamma correction value of the pixel component value,
8940 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
8941 expression
8942 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
8943
8944 @end table
8945
8946 All expressions default to "val".
8947
8948 @subsection Examples
8949
8950 @itemize
8951 @item
8952 Negate input video:
8953 @example
8954 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
8955 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
8956 @end example
8957
8958 The above is the same as:
8959 @example
8960 lutrgb="r=negval:g=negval:b=negval"
8961 lutyuv="y=negval:u=negval:v=negval"
8962 @end example
8963
8964 @item
8965 Negate luminance:
8966 @example
8967 lutyuv=y=negval
8968 @end example
8969
8970 @item
8971 Remove chroma components, turning the video into a graytone image:
8972 @example
8973 lutyuv="u=128:v=128"
8974 @end example
8975
8976 @item
8977 Apply a luma burning effect:
8978 @example
8979 lutyuv="y=2*val"
8980 @end example
8981
8982 @item
8983 Remove green and blue components:
8984 @example
8985 lutrgb="g=0:b=0"
8986 @end example
8987
8988 @item
8989 Set a constant alpha channel value on input:
8990 @example
8991 format=rgba,lutrgb=a="maxval-minval/2"
8992 @end example
8993
8994 @item
8995 Correct luminance gamma by a factor of 0.5:
8996 @example
8997 lutyuv=y=gammaval(0.5)
8998 @end example
8999
9000 @item
9001 Discard least significant bits of luma:
9002 @example
9003 lutyuv=y='bitand(val, 128+64+32)'
9004 @end example
9005 @end itemize
9006
9007 @section maskedmerge
9008
9009 Merge the first input stream with the second input stream using per pixel
9010 weights in the third input stream.
9011
9012 A value of 0 in the third stream pixel component means that pixel component
9013 from first stream is returned unchanged, while maximum value (eg. 255 for
9014 8-bit videos) means that pixel component from second stream is returned
9015 unchanged. Intermediate values define the amount of merging between both
9016 input stream's pixel components.
9017
9018 This filter accepts the following options:
9019 @table @option
9020 @item planes
9021 Set which planes will be processed as bitmap, unprocessed planes will be
9022 copied from first stream.
9023 By default value 0xf, all planes will be processed.
9024 @end table
9025
9026 @section mcdeint
9027
9028 Apply motion-compensation deinterlacing.
9029
9030 It needs one field per frame as input and must thus be used together
9031 with yadif=1/3 or equivalent.
9032
9033 This filter accepts the following options:
9034 @table @option
9035 @item mode
9036 Set the deinterlacing mode.
9037
9038 It accepts one of the following values:
9039 @table @samp
9040 @item fast
9041 @item medium
9042 @item slow
9043 use iterative motion estimation
9044 @item extra_slow
9045 like @samp{slow}, but use multiple reference frames.
9046 @end table
9047 Default value is @samp{fast}.
9048
9049 @item parity
9050 Set the picture field parity assumed for the input video. It must be
9051 one of the following values:
9052
9053 @table @samp
9054 @item 0, tff
9055 assume top field first
9056 @item 1, bff
9057 assume bottom field first
9058 @end table
9059
9060 Default value is @samp{bff}.
9061
9062 @item qp
9063 Set per-block quantization parameter (QP) used by the internal
9064 encoder.
9065
9066 Higher values should result in a smoother motion vector field but less
9067 optimal individual vectors. Default value is 1.
9068 @end table
9069
9070 @section mergeplanes
9071
9072 Merge color channel components from several video streams.
9073
9074 The filter accepts up to 4 input streams, and merge selected input
9075 planes to the output video.
9076
9077 This filter accepts the following options:
9078 @table @option
9079 @item mapping
9080 Set input to output plane mapping. Default is @code{0}.
9081
9082 The mappings is specified as a bitmap. It should be specified as a
9083 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9084 mapping for the first plane of the output stream. 'A' sets the number of
9085 the input stream to use (from 0 to 3), and 'a' the plane number of the
9086 corresponding input to use (from 0 to 3). The rest of the mappings is
9087 similar, 'Bb' describes the mapping for the output stream second
9088 plane, 'Cc' describes the mapping for the output stream third plane and
9089 'Dd' describes the mapping for the output stream fourth plane.
9090
9091 @item format
9092 Set output pixel format. Default is @code{yuva444p}.
9093 @end table
9094
9095 @subsection Examples
9096
9097 @itemize
9098 @item
9099 Merge three gray video streams of same width and height into single video stream:
9100 @example
9101 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9102 @end example
9103
9104 @item
9105 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9106 @example
9107 [a0][a1]mergeplanes=0x00010210:yuva444p
9108 @end example
9109
9110 @item
9111 Swap Y and A plane in yuva444p stream:
9112 @example
9113 format=yuva444p,mergeplanes=0x03010200:yuva444p
9114 @end example
9115
9116 @item
9117 Swap U and V plane in yuv420p stream:
9118 @example
9119 format=yuv420p,mergeplanes=0x000201:yuv420p
9120 @end example
9121
9122 @item
9123 Cast a rgb24 clip to yuv444p:
9124 @example
9125 format=rgb24,mergeplanes=0x000102:yuv444p
9126 @end example
9127 @end itemize
9128
9129 @section metadata, ametadata
9130
9131 Manipulate frame metadata.
9132
9133 This filter accepts the following options:
9134
9135 @table @option
9136 @item mode
9137 Set mode of operation of the filter.
9138
9139 Can be one of the following:
9140
9141 @table @samp
9142 @item select
9143 If both @code{value} and @code{key} is set, select frames
9144 which have such metadata. If only @code{key} is set, select
9145 every frame that has such key in metadata.
9146
9147 @item add
9148 Add new metadata @code{key} and @code{value}. If key is already available
9149 do nothing.
9150
9151 @item modify
9152 Modify value of already present key.
9153
9154 @item delete
9155 If @code{value} is set, delete only keys that have such value.
9156 Otherwise, delete key.
9157
9158 @item print
9159 Print key and its value if metadata was found. If @code{key} is not set print all
9160 metadata values available in frame.
9161 @end table
9162
9163 @item key
9164 Set key used with all modes. Must be set for all modes except @code{print}.
9165
9166 @item value
9167 Set metadata value which will be used. This option is mandatory for
9168 @code{modify} and @code{add} mode.
9169
9170 @item function
9171 Which function to use when comparing metadata value and @code{value}.
9172
9173 Can be one of following:
9174
9175 @table @samp
9176 @item same_str
9177 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
9178
9179 @item starts_with
9180 Values are interpreted as strings, returns true if metadata value starts with
9181 the @code{value} option string.
9182
9183 @item less
9184 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
9185
9186 @item equal
9187 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
9188
9189 @item greater
9190 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
9191
9192 @item expr
9193 Values are interpreted as floats, returns true if expression from option @code{expr}
9194 evaluates to true.
9195 @end table
9196
9197 @item expr
9198 Set expression which is used when @code{function} is set to @code{expr}.
9199 The expression is evaluated through the eval API and can contain the following
9200 constants:
9201
9202 @table @option
9203 @item VALUE1
9204 Float representation of @code{value} from metadata key.
9205
9206 @item VALUE2
9207 Float representation of @code{value} as supplied by user in @code{value} option.
9208 @end table
9209
9210 @item file
9211 If specified in @code{print} mode, output is written to the named file. When
9212 filename equals "-" data is written to standard output.
9213 If @code{file} option is not set, output is written to the log with AV_LOG_INFO
9214 loglevel.
9215 @end table
9216
9217 @subsection Examples
9218
9219 @itemize
9220 @item
9221 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
9222 between 0 and 1.
9223 @example
9224 @end example
9225 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
9226 @end itemize
9227
9228 @section mpdecimate
9229
9230 Drop frames that do not differ greatly from the previous frame in
9231 order to reduce frame rate.
9232
9233 The main use of this filter is for very-low-bitrate encoding
9234 (e.g. streaming over dialup modem), but it could in theory be used for
9235 fixing movies that were inverse-telecined incorrectly.
9236
9237 A description of the accepted options follows.
9238
9239 @table @option
9240 @item max
9241 Set the maximum number of consecutive frames which can be dropped (if
9242 positive), or the minimum interval between dropped frames (if
9243 negative). If the value is 0, the frame is dropped unregarding the
9244 number of previous sequentially dropped frames.
9245
9246 Default value is 0.
9247
9248 @item hi
9249 @item lo
9250 @item frac
9251 Set the dropping threshold values.
9252
9253 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9254 represent actual pixel value differences, so a threshold of 64
9255 corresponds to 1 unit of difference for each pixel, or the same spread
9256 out differently over the block.
9257
9258 A frame is a candidate for dropping if no 8x8 blocks differ by more
9259 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9260 meaning the whole image) differ by more than a threshold of @option{lo}.
9261
9262 Default value for @option{hi} is 64*12, default value for @option{lo} is
9263 64*5, and default value for @option{frac} is 0.33.
9264 @end table
9265
9266
9267 @section negate
9268
9269 Negate input video.
9270
9271 It accepts an integer in input; if non-zero it negates the
9272 alpha component (if available). The default value in input is 0.
9273
9274 @section nnedi
9275
9276 Deinterlace video using neural network edge directed interpolation.
9277
9278 This filter accepts the following options:
9279
9280 @table @option
9281 @item weights
9282 Mandatory option, without binary file filter can not work.
9283 Currently file can be found here:
9284 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9285
9286 @item deint
9287 Set which frames to deinterlace, by default it is @code{all}.
9288 Can be @code{all} or @code{interlaced}.
9289
9290 @item field
9291 Set mode of operation.
9292
9293 Can be one of the following:
9294
9295 @table @samp
9296 @item af
9297 Use frame flags, both fields.
9298 @item a
9299 Use frame flags, single field.
9300 @item t
9301 Use top field only.
9302 @item b
9303 Use bottom field only.
9304 @item tf
9305 Use both fields, top first.
9306 @item bf
9307 Use both fields, bottom first.
9308 @end table
9309
9310 @item planes
9311 Set which planes to process, by default filter process all frames.
9312
9313 @item nsize
9314 Set size of local neighborhood around each pixel, used by the predictor neural
9315 network.
9316
9317 Can be one of the following:
9318
9319 @table @samp
9320 @item s8x6
9321 @item s16x6
9322 @item s32x6
9323 @item s48x6
9324 @item s8x4
9325 @item s16x4
9326 @item s32x4
9327 @end table
9328
9329 @item nns
9330 Set the number of neurons in predicctor neural network.
9331 Can be one of the following:
9332
9333 @table @samp
9334 @item n16
9335 @item n32
9336 @item n64
9337 @item n128
9338 @item n256
9339 @end table
9340
9341 @item qual
9342 Controls the number of different neural network predictions that are blended
9343 together to compute the final output value. Can be @code{fast}, default or
9344 @code{slow}.
9345
9346 @item etype
9347 Set which set of weights to use in the predictor.
9348 Can be one of the following:
9349
9350 @table @samp
9351 @item a
9352 weights trained to minimize absolute error
9353 @item s
9354 weights trained to minimize squared error
9355 @end table
9356
9357 @item pscrn
9358 Controls whether or not the prescreener neural network is used to decide
9359 which pixels should be processed by the predictor neural network and which
9360 can be handled by simple cubic interpolation.
9361 The prescreener is trained to know whether cubic interpolation will be
9362 sufficient for a pixel or whether it should be predicted by the predictor nn.
9363 The computational complexity of the prescreener nn is much less than that of
9364 the predictor nn. Since most pixels can be handled by cubic interpolation,
9365 using the prescreener generally results in much faster processing.
9366 The prescreener is pretty accurate, so the difference between using it and not
9367 using it is almost always unnoticeable.
9368
9369 Can be one of the following:
9370
9371 @table @samp
9372 @item none
9373 @item original
9374 @item new
9375 @end table
9376
9377 Default is @code{new}.
9378
9379 @item fapprox
9380 Set various debugging flags.
9381 @end table
9382
9383 @section noformat
9384
9385 Force libavfilter not to use any of the specified pixel formats for the
9386 input to the next filter.
9387
9388 It accepts the following parameters:
9389 @table @option
9390
9391 @item pix_fmts
9392 A '|'-separated list of pixel format names, such as
9393 apix_fmts=yuv420p|monow|rgb24".
9394
9395 @end table
9396
9397 @subsection Examples
9398
9399 @itemize
9400 @item
9401 Force libavfilter to use a format different from @var{yuv420p} for the
9402 input to the vflip filter:
9403 @example
9404 noformat=pix_fmts=yuv420p,vflip
9405 @end example
9406
9407 @item
9408 Convert the input video to any of the formats not contained in the list:
9409 @example
9410 noformat=yuv420p|yuv444p|yuv410p
9411 @end example
9412 @end itemize
9413
9414 @section noise
9415
9416 Add noise on video input frame.
9417
9418 The filter accepts the following options:
9419
9420 @table @option
9421 @item all_seed
9422 @item c0_seed
9423 @item c1_seed
9424 @item c2_seed
9425 @item c3_seed
9426 Set noise seed for specific pixel component or all pixel components in case
9427 of @var{all_seed}. Default value is @code{123457}.
9428
9429 @item all_strength, alls
9430 @item c0_strength, c0s
9431 @item c1_strength, c1s
9432 @item c2_strength, c2s
9433 @item c3_strength, c3s
9434 Set noise strength for specific pixel component or all pixel components in case
9435 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9436
9437 @item all_flags, allf
9438 @item c0_flags, c0f
9439 @item c1_flags, c1f
9440 @item c2_flags, c2f
9441 @item c3_flags, c3f
9442 Set pixel component flags or set flags for all components if @var{all_flags}.
9443 Available values for component flags are:
9444 @table @samp
9445 @item a
9446 averaged temporal noise (smoother)
9447 @item p
9448 mix random noise with a (semi)regular pattern
9449 @item t
9450 temporal noise (noise pattern changes between frames)
9451 @item u
9452 uniform noise (gaussian otherwise)
9453 @end table
9454 @end table
9455
9456 @subsection Examples
9457
9458 Add temporal and uniform noise to input video:
9459 @example
9460 noise=alls=20:allf=t+u
9461 @end example
9462
9463 @section null
9464
9465 Pass the video source unchanged to the output.
9466
9467 @section ocr
9468 Optical Character Recognition
9469
9470 This filter uses Tesseract for optical character recognition.
9471
9472 It accepts the following options:
9473
9474 @table @option
9475 @item datapath
9476 Set datapath to tesseract data. Default is to use whatever was
9477 set at installation.
9478
9479 @item language
9480 Set language, default is "eng".
9481
9482 @item whitelist
9483 Set character whitelist.
9484
9485 @item blacklist
9486 Set character blacklist.
9487 @end table
9488
9489 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9490
9491 @section ocv
9492
9493 Apply a video transform using libopencv.
9494
9495 To enable this filter, install the libopencv library and headers and
9496 configure FFmpeg with @code{--enable-libopencv}.
9497
9498 It accepts the following parameters:
9499
9500 @table @option
9501
9502 @item filter_name
9503 The name of the libopencv filter to apply.
9504
9505 @item filter_params
9506 The parameters to pass to the libopencv filter. If not specified, the default
9507 values are assumed.
9508
9509 @end table
9510
9511 Refer to the official libopencv documentation for more precise
9512 information:
9513 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9514
9515 Several libopencv filters are supported; see the following subsections.
9516
9517 @anchor{dilate}
9518 @subsection dilate
9519
9520 Dilate an image by using a specific structuring element.
9521 It corresponds to the libopencv function @code{cvDilate}.
9522
9523 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9524
9525 @var{struct_el} represents a structuring element, and has the syntax:
9526 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9527
9528 @var{cols} and @var{rows} represent the number of columns and rows of
9529 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9530 point, and @var{shape} the shape for the structuring element. @var{shape}
9531 must be "rect", "cross", "ellipse", or "custom".
9532
9533 If the value for @var{shape} is "custom", it must be followed by a
9534 string of the form "=@var{filename}". The file with name
9535 @var{filename} is assumed to represent a binary image, with each
9536 printable character corresponding to a bright pixel. When a custom
9537 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9538 or columns and rows of the read file are assumed instead.
9539
9540 The default value for @var{struct_el} is "3x3+0x0/rect".
9541
9542 @var{nb_iterations} specifies the number of times the transform is
9543 applied to the image, and defaults to 1.
9544
9545 Some examples:
9546 @example
9547 # Use the default values
9548 ocv=dilate
9549
9550 # Dilate using a structuring element with a 5x5 cross, iterating two times
9551 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9552
9553 # Read the shape from the file diamond.shape, iterating two times.
9554 # The file diamond.shape may contain a pattern of characters like this
9555 #   *
9556 #  ***
9557 # *****
9558 #  ***
9559 #   *
9560 # The specified columns and rows are ignored
9561 # but the anchor point coordinates are not
9562 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9563 @end example
9564
9565 @subsection erode
9566
9567 Erode an image by using a specific structuring element.
9568 It corresponds to the libopencv function @code{cvErode}.
9569
9570 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9571 with the same syntax and semantics as the @ref{dilate} filter.
9572
9573 @subsection smooth
9574
9575 Smooth the input video.
9576
9577 The filter takes the following parameters:
9578 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9579
9580 @var{type} is the type of smooth filter to apply, and must be one of
9581 the following values: "blur", "blur_no_scale", "median", "gaussian",
9582 or "bilateral". The default value is "gaussian".
9583
9584 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9585 depend on the smooth type. @var{param1} and
9586 @var{param2} accept integer positive values or 0. @var{param3} and
9587 @var{param4} accept floating point values.
9588
9589 The default value for @var{param1} is 3. The default value for the
9590 other parameters is 0.
9591
9592 These parameters correspond to the parameters assigned to the
9593 libopencv function @code{cvSmooth}.
9594
9595 @anchor{overlay}
9596 @section overlay
9597
9598 Overlay one video on top of another.
9599
9600 It takes two inputs and has one output. The first input is the "main"
9601 video on which the second input is overlaid.
9602
9603 It accepts the following parameters:
9604
9605 A description of the accepted options follows.
9606
9607 @table @option
9608 @item x
9609 @item y
9610 Set the expression for the x and y coordinates of the overlaid video
9611 on the main video. Default value is "0" for both expressions. In case
9612 the expression is invalid, it is set to a huge value (meaning that the
9613 overlay will not be displayed within the output visible area).
9614
9615 @item eof_action
9616 The action to take when EOF is encountered on the secondary input; it accepts
9617 one of the following values:
9618
9619 @table @option
9620 @item repeat
9621 Repeat the last frame (the default).
9622 @item endall
9623 End both streams.
9624 @item pass
9625 Pass the main input through.
9626 @end table
9627
9628 @item eval
9629 Set when the expressions for @option{x}, and @option{y} are evaluated.
9630
9631 It accepts the following values:
9632 @table @samp
9633 @item init
9634 only evaluate expressions once during the filter initialization or
9635 when a command is processed
9636
9637 @item frame
9638 evaluate expressions for each incoming frame
9639 @end table
9640
9641 Default value is @samp{frame}.
9642
9643 @item shortest
9644 If set to 1, force the output to terminate when the shortest input
9645 terminates. Default value is 0.
9646
9647 @item format
9648 Set the format for the output video.
9649
9650 It accepts the following values:
9651 @table @samp
9652 @item yuv420
9653 force YUV420 output
9654
9655 @item yuv422
9656 force YUV422 output
9657
9658 @item yuv444
9659 force YUV444 output
9660
9661 @item rgb
9662 force RGB output
9663 @end table
9664
9665 Default value is @samp{yuv420}.
9666
9667 @item rgb @emph{(deprecated)}
9668 If set to 1, force the filter to accept inputs in the RGB
9669 color space. Default value is 0. This option is deprecated, use
9670 @option{format} instead.
9671
9672 @item repeatlast
9673 If set to 1, force the filter to draw the last overlay frame over the
9674 main input until the end of the stream. A value of 0 disables this
9675 behavior. Default value is 1.
9676 @end table
9677
9678 The @option{x}, and @option{y} expressions can contain the following
9679 parameters.
9680
9681 @table @option
9682 @item main_w, W
9683 @item main_h, H
9684 The main input width and height.
9685
9686 @item overlay_w, w
9687 @item overlay_h, h
9688 The overlay input width and height.
9689
9690 @item x
9691 @item y
9692 The computed values for @var{x} and @var{y}. They are evaluated for
9693 each new frame.
9694
9695 @item hsub
9696 @item vsub
9697 horizontal and vertical chroma subsample values of the output
9698 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9699 @var{vsub} is 1.
9700
9701 @item n
9702 the number of input frame, starting from 0
9703
9704 @item pos
9705 the position in the file of the input frame, NAN if unknown
9706
9707 @item t
9708 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9709
9710 @end table
9711
9712 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9713 when evaluation is done @emph{per frame}, and will evaluate to NAN
9714 when @option{eval} is set to @samp{init}.
9715
9716 Be aware that frames are taken from each input video in timestamp
9717 order, hence, if their initial timestamps differ, it is a good idea
9718 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9719 have them begin in the same zero timestamp, as the example for
9720 the @var{movie} filter does.
9721
9722 You can chain together more overlays but you should test the
9723 efficiency of such approach.
9724
9725 @subsection Commands
9726
9727 This filter supports the following commands:
9728 @table @option
9729 @item x
9730 @item y
9731 Modify the x and y of the overlay input.
9732 The command accepts the same syntax of the corresponding option.
9733
9734 If the specified expression is not valid, it is kept at its current
9735 value.
9736 @end table
9737
9738 @subsection Examples
9739
9740 @itemize
9741 @item
9742 Draw the overlay at 10 pixels from the bottom right corner of the main
9743 video:
9744 @example
9745 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9746 @end example
9747
9748 Using named options the example above becomes:
9749 @example
9750 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9751 @end example
9752
9753 @item
9754 Insert a transparent PNG logo in the bottom left corner of the input,
9755 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9756 @example
9757 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9758 @end example
9759
9760 @item
9761 Insert 2 different transparent PNG logos (second logo on bottom
9762 right corner) using the @command{ffmpeg} tool:
9763 @example
9764 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
9765 @end example
9766
9767 @item
9768 Add a transparent color layer on top of the main video; @code{WxH}
9769 must specify the size of the main input to the overlay filter:
9770 @example
9771 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9772 @end example
9773
9774 @item
9775 Play an original video and a filtered version (here with the deshake
9776 filter) side by side using the @command{ffplay} tool:
9777 @example
9778 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9779 @end example
9780
9781 The above command is the same as:
9782 @example
9783 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9784 @end example
9785
9786 @item
9787 Make a sliding overlay appearing from the left to the right top part of the
9788 screen starting since time 2:
9789 @example
9790 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9791 @end example
9792
9793 @item
9794 Compose output by putting two input videos side to side:
9795 @example
9796 ffmpeg -i left.avi -i right.avi -filter_complex "
9797 nullsrc=size=200x100 [background];
9798 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9799 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9800 [background][left]       overlay=shortest=1       [background+left];
9801 [background+left][right] overlay=shortest=1:x=100 [left+right]
9802 "
9803 @end example
9804
9805 @item
9806 Mask 10-20 seconds of a video by applying the delogo filter to a section
9807 @example
9808 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9809 -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]'
9810 masked.avi
9811 @end example
9812
9813 @item
9814 Chain several overlays in cascade:
9815 @example
9816 nullsrc=s=200x200 [bg];
9817 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9818 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9819 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9820 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9821 [in3] null,       [mid2] overlay=100:100 [out0]
9822 @end example
9823
9824 @end itemize
9825
9826 @section owdenoise
9827
9828 Apply Overcomplete Wavelet denoiser.
9829
9830 The filter accepts the following options:
9831
9832 @table @option
9833 @item depth
9834 Set depth.
9835
9836 Larger depth values will denoise lower frequency components more, but
9837 slow down filtering.
9838
9839 Must be an int in the range 8-16, default is @code{8}.
9840
9841 @item luma_strength, ls
9842 Set luma strength.
9843
9844 Must be a double value in the range 0-1000, default is @code{1.0}.
9845
9846 @item chroma_strength, cs
9847 Set chroma strength.
9848
9849 Must be a double value in the range 0-1000, default is @code{1.0}.
9850 @end table
9851
9852 @anchor{pad}
9853 @section pad
9854
9855 Add paddings to the input image, and place the original input at the
9856 provided @var{x}, @var{y} coordinates.
9857
9858 It accepts the following parameters:
9859
9860 @table @option
9861 @item width, w
9862 @item height, h
9863 Specify an expression for the size of the output image with the
9864 paddings added. If the value for @var{width} or @var{height} is 0, the
9865 corresponding input size is used for the output.
9866
9867 The @var{width} expression can reference the value set by the
9868 @var{height} expression, and vice versa.
9869
9870 The default value of @var{width} and @var{height} is 0.
9871
9872 @item x
9873 @item y
9874 Specify the offsets to place the input image at within the padded area,
9875 with respect to the top/left border of the output image.
9876
9877 The @var{x} expression can reference the value set by the @var{y}
9878 expression, and vice versa.
9879
9880 The default value of @var{x} and @var{y} is 0.
9881
9882 @item color
9883 Specify the color of the padded area. For the syntax of this option,
9884 check the "Color" section in the ffmpeg-utils manual.
9885
9886 The default value of @var{color} is "black".
9887 @end table
9888
9889 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
9890 options are expressions containing the following constants:
9891
9892 @table @option
9893 @item in_w
9894 @item in_h
9895 The input video width and height.
9896
9897 @item iw
9898 @item ih
9899 These are the same as @var{in_w} and @var{in_h}.
9900
9901 @item out_w
9902 @item out_h
9903 The output width and height (the size of the padded area), as
9904 specified by the @var{width} and @var{height} expressions.
9905
9906 @item ow
9907 @item oh
9908 These are the same as @var{out_w} and @var{out_h}.
9909
9910 @item x
9911 @item y
9912 The x and y offsets as specified by the @var{x} and @var{y}
9913 expressions, or NAN if not yet specified.
9914
9915 @item a
9916 same as @var{iw} / @var{ih}
9917
9918 @item sar
9919 input sample aspect ratio
9920
9921 @item dar
9922 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
9923
9924 @item hsub
9925 @item vsub
9926 The horizontal and vertical chroma subsample values. For example for the
9927 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9928 @end table
9929
9930 @subsection Examples
9931
9932 @itemize
9933 @item
9934 Add paddings with the color "violet" to the input video. The output video
9935 size is 640x480, and the top-left corner of the input video is placed at
9936 column 0, row 40
9937 @example
9938 pad=640:480:0:40:violet
9939 @end example
9940
9941 The example above is equivalent to the following command:
9942 @example
9943 pad=width=640:height=480:x=0:y=40:color=violet
9944 @end example
9945
9946 @item
9947 Pad the input to get an output with dimensions increased by 3/2,
9948 and put the input video at the center of the padded area:
9949 @example
9950 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
9951 @end example
9952
9953 @item
9954 Pad the input to get a squared output with size equal to the maximum
9955 value between the input width and height, and put the input video at
9956 the center of the padded area:
9957 @example
9958 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
9959 @end example
9960
9961 @item
9962 Pad the input to get a final w/h ratio of 16:9:
9963 @example
9964 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
9965 @end example
9966
9967 @item
9968 In case of anamorphic video, in order to set the output display aspect
9969 correctly, it is necessary to use @var{sar} in the expression,
9970 according to the relation:
9971 @example
9972 (ih * X / ih) * sar = output_dar
9973 X = output_dar / sar
9974 @end example
9975
9976 Thus the previous example needs to be modified to:
9977 @example
9978 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
9979 @end example
9980
9981 @item
9982 Double the output size and put the input video in the bottom-right
9983 corner of the output padded area:
9984 @example
9985 pad="2*iw:2*ih:ow-iw:oh-ih"
9986 @end example
9987 @end itemize
9988
9989 @anchor{palettegen}
9990 @section palettegen
9991
9992 Generate one palette for a whole video stream.
9993
9994 It accepts the following options:
9995
9996 @table @option
9997 @item max_colors
9998 Set the maximum number of colors to quantize in the palette.
9999 Note: the palette will still contain 256 colors; the unused palette entries
10000 will be black.
10001
10002 @item reserve_transparent
10003 Create a palette of 255 colors maximum and reserve the last one for
10004 transparency. Reserving the transparency color is useful for GIF optimization.
10005 If not set, the maximum of colors in the palette will be 256. You probably want
10006 to disable this option for a standalone image.
10007 Set by default.
10008
10009 @item stats_mode
10010 Set statistics mode.
10011
10012 It accepts the following values:
10013 @table @samp
10014 @item full
10015 Compute full frame histograms.
10016 @item diff
10017 Compute histograms only for the part that differs from previous frame. This
10018 might be relevant to give more importance to the moving part of your input if
10019 the background is static.
10020 @end table
10021
10022 Default value is @var{full}.
10023 @end table
10024
10025 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10026 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10027 color quantization of the palette. This information is also visible at
10028 @var{info} logging level.
10029
10030 @subsection Examples
10031
10032 @itemize
10033 @item
10034 Generate a representative palette of a given video using @command{ffmpeg}:
10035 @example
10036 ffmpeg -i input.mkv -vf palettegen palette.png
10037 @end example
10038 @end itemize
10039
10040 @section paletteuse
10041
10042 Use a palette to downsample an input video stream.
10043
10044 The filter takes two inputs: one video stream and a palette. The palette must
10045 be a 256 pixels image.
10046
10047 It accepts the following options:
10048
10049 @table @option
10050 @item dither
10051 Select dithering mode. Available algorithms are:
10052 @table @samp
10053 @item bayer
10054 Ordered 8x8 bayer dithering (deterministic)
10055 @item heckbert
10056 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10057 Note: this dithering is sometimes considered "wrong" and is included as a
10058 reference.
10059 @item floyd_steinberg
10060 Floyd and Steingberg dithering (error diffusion)
10061 @item sierra2
10062 Frankie Sierra dithering v2 (error diffusion)
10063 @item sierra2_4a
10064 Frankie Sierra dithering v2 "Lite" (error diffusion)
10065 @end table
10066
10067 Default is @var{sierra2_4a}.
10068
10069 @item bayer_scale
10070 When @var{bayer} dithering is selected, this option defines the scale of the
10071 pattern (how much the crosshatch pattern is visible). A low value means more
10072 visible pattern for less banding, and higher value means less visible pattern
10073 at the cost of more banding.
10074
10075 The option must be an integer value in the range [0,5]. Default is @var{2}.
10076
10077 @item diff_mode
10078 If set, define the zone to process
10079
10080 @table @samp
10081 @item rectangle
10082 Only the changing rectangle will be reprocessed. This is similar to GIF
10083 cropping/offsetting compression mechanism. This option can be useful for speed
10084 if only a part of the image is changing, and has use cases such as limiting the
10085 scope of the error diffusal @option{dither} to the rectangle that bounds the
10086 moving scene (it leads to more deterministic output if the scene doesn't change
10087 much, and as a result less moving noise and better GIF compression).
10088 @end table
10089
10090 Default is @var{none}.
10091 @end table
10092
10093 @subsection Examples
10094
10095 @itemize
10096 @item
10097 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10098 using @command{ffmpeg}:
10099 @example
10100 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10101 @end example
10102 @end itemize
10103
10104 @section perspective
10105
10106 Correct perspective of video not recorded perpendicular to the screen.
10107
10108 A description of the accepted parameters follows.
10109
10110 @table @option
10111 @item x0
10112 @item y0
10113 @item x1
10114 @item y1
10115 @item x2
10116 @item y2
10117 @item x3
10118 @item y3
10119 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10120 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10121 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10122 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10123 then the corners of the source will be sent to the specified coordinates.
10124
10125 The expressions can use the following variables:
10126
10127 @table @option
10128 @item W
10129 @item H
10130 the width and height of video frame.
10131 @end table
10132
10133 @item interpolation
10134 Set interpolation for perspective correction.
10135
10136 It accepts the following values:
10137 @table @samp
10138 @item linear
10139 @item cubic
10140 @end table
10141
10142 Default value is @samp{linear}.
10143
10144 @item sense
10145 Set interpretation of coordinate options.
10146
10147 It accepts the following values:
10148 @table @samp
10149 @item 0, source
10150
10151 Send point in the source specified by the given coordinates to
10152 the corners of the destination.
10153
10154 @item 1, destination
10155
10156 Send the corners of the source to the point in the destination specified
10157 by the given coordinates.
10158
10159 Default value is @samp{source}.
10160 @end table
10161 @end table
10162
10163 @section phase
10164
10165 Delay interlaced video by one field time so that the field order changes.
10166
10167 The intended use is to fix PAL movies that have been captured with the
10168 opposite field order to the film-to-video transfer.
10169
10170 A description of the accepted parameters follows.
10171
10172 @table @option
10173 @item mode
10174 Set phase mode.
10175
10176 It accepts the following values:
10177 @table @samp
10178 @item t
10179 Capture field order top-first, transfer bottom-first.
10180 Filter will delay the bottom field.
10181
10182 @item b
10183 Capture field order bottom-first, transfer top-first.
10184 Filter will delay the top field.
10185
10186 @item p
10187 Capture and transfer with the same field order. This mode only exists
10188 for the documentation of the other options to refer to, but if you
10189 actually select it, the filter will faithfully do nothing.
10190
10191 @item a
10192 Capture field order determined automatically by field flags, transfer
10193 opposite.
10194 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10195 basis using field flags. If no field information is available,
10196 then this works just like @samp{u}.
10197
10198 @item u
10199 Capture unknown or varying, transfer opposite.
10200 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10201 analyzing the images and selecting the alternative that produces best
10202 match between the fields.
10203
10204 @item T
10205 Capture top-first, transfer unknown or varying.
10206 Filter selects among @samp{t} and @samp{p} using image analysis.
10207
10208 @item B
10209 Capture bottom-first, transfer unknown or varying.
10210 Filter selects among @samp{b} and @samp{p} using image analysis.
10211
10212 @item A
10213 Capture determined by field flags, transfer unknown or varying.
10214 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10215 image analysis. If no field information is available, then this works just
10216 like @samp{U}. This is the default mode.
10217
10218 @item U
10219 Both capture and transfer unknown or varying.
10220 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10221 @end table
10222 @end table
10223
10224 @section pixdesctest
10225
10226 Pixel format descriptor test filter, mainly useful for internal
10227 testing. The output video should be equal to the input video.
10228
10229 For example:
10230 @example
10231 format=monow, pixdesctest
10232 @end example
10233
10234 can be used to test the monowhite pixel format descriptor definition.
10235
10236 @section pp
10237
10238 Enable the specified chain of postprocessing subfilters using libpostproc. This
10239 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10240 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10241 Each subfilter and some options have a short and a long name that can be used
10242 interchangeably, i.e. dr/dering are the same.
10243
10244 The filters accept the following options:
10245
10246 @table @option
10247 @item subfilters
10248 Set postprocessing subfilters string.
10249 @end table
10250
10251 All subfilters share common options to determine their scope:
10252
10253 @table @option
10254 @item a/autoq
10255 Honor the quality commands for this subfilter.
10256
10257 @item c/chrom
10258 Do chrominance filtering, too (default).
10259
10260 @item y/nochrom
10261 Do luminance filtering only (no chrominance).
10262
10263 @item n/noluma
10264 Do chrominance filtering only (no luminance).
10265 @end table
10266
10267 These options can be appended after the subfilter name, separated by a '|'.
10268
10269 Available subfilters are:
10270
10271 @table @option
10272 @item hb/hdeblock[|difference[|flatness]]
10273 Horizontal deblocking filter
10274 @table @option
10275 @item difference
10276 Difference factor where higher values mean more deblocking (default: @code{32}).
10277 @item flatness
10278 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10279 @end table
10280
10281 @item vb/vdeblock[|difference[|flatness]]
10282 Vertical deblocking filter
10283 @table @option
10284 @item difference
10285 Difference factor where higher values mean more deblocking (default: @code{32}).
10286 @item flatness
10287 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10288 @end table
10289
10290 @item ha/hadeblock[|difference[|flatness]]
10291 Accurate horizontal deblocking filter
10292 @table @option
10293 @item difference
10294 Difference factor where higher values mean more deblocking (default: @code{32}).
10295 @item flatness
10296 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10297 @end table
10298
10299 @item va/vadeblock[|difference[|flatness]]
10300 Accurate vertical deblocking filter
10301 @table @option
10302 @item difference
10303 Difference factor where higher values mean more deblocking (default: @code{32}).
10304 @item flatness
10305 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10306 @end table
10307 @end table
10308
10309 The horizontal and vertical deblocking filters share the difference and
10310 flatness values so you cannot set different horizontal and vertical
10311 thresholds.
10312
10313 @table @option
10314 @item h1/x1hdeblock
10315 Experimental horizontal deblocking filter
10316
10317 @item v1/x1vdeblock
10318 Experimental vertical deblocking filter
10319
10320 @item dr/dering
10321 Deringing filter
10322
10323 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10324 @table @option
10325 @item threshold1
10326 larger -> stronger filtering
10327 @item threshold2
10328 larger -> stronger filtering
10329 @item threshold3
10330 larger -> stronger filtering
10331 @end table
10332
10333 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10334 @table @option
10335 @item f/fullyrange
10336 Stretch luminance to @code{0-255}.
10337 @end table
10338
10339 @item lb/linblenddeint
10340 Linear blend deinterlacing filter that deinterlaces the given block by
10341 filtering all lines with a @code{(1 2 1)} filter.
10342
10343 @item li/linipoldeint
10344 Linear interpolating deinterlacing filter that deinterlaces the given block by
10345 linearly interpolating every second line.
10346
10347 @item ci/cubicipoldeint
10348 Cubic interpolating deinterlacing filter deinterlaces the given block by
10349 cubically interpolating every second line.
10350
10351 @item md/mediandeint
10352 Median deinterlacing filter that deinterlaces the given block by applying a
10353 median filter to every second line.
10354
10355 @item fd/ffmpegdeint
10356 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10357 second line with a @code{(-1 4 2 4 -1)} filter.
10358
10359 @item l5/lowpass5
10360 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10361 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10362
10363 @item fq/forceQuant[|quantizer]
10364 Overrides the quantizer table from the input with the constant quantizer you
10365 specify.
10366 @table @option
10367 @item quantizer
10368 Quantizer to use
10369 @end table
10370
10371 @item de/default
10372 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10373
10374 @item fa/fast
10375 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10376
10377 @item ac
10378 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10379 @end table
10380
10381 @subsection Examples
10382
10383 @itemize
10384 @item
10385 Apply horizontal and vertical deblocking, deringing and automatic
10386 brightness/contrast:
10387 @example
10388 pp=hb/vb/dr/al
10389 @end example
10390
10391 @item
10392 Apply default filters without brightness/contrast correction:
10393 @example
10394 pp=de/-al
10395 @end example
10396
10397 @item
10398 Apply default filters and temporal denoiser:
10399 @example
10400 pp=default/tmpnoise|1|2|3
10401 @end example
10402
10403 @item
10404 Apply deblocking on luminance only, and switch vertical deblocking on or off
10405 automatically depending on available CPU time:
10406 @example
10407 pp=hb|y/vb|a
10408 @end example
10409 @end itemize
10410
10411 @section pp7
10412 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10413 similar to spp = 6 with 7 point DCT, where only the center sample is
10414 used after IDCT.
10415
10416 The filter accepts the following options:
10417
10418 @table @option
10419 @item qp
10420 Force a constant quantization parameter. It accepts an integer in range
10421 0 to 63. If not set, the filter will use the QP from the video stream
10422 (if available).
10423
10424 @item mode
10425 Set thresholding mode. Available modes are:
10426
10427 @table @samp
10428 @item hard
10429 Set hard thresholding.
10430 @item soft
10431 Set soft thresholding (better de-ringing effect, but likely blurrier).
10432 @item medium
10433 Set medium thresholding (good results, default).
10434 @end table
10435 @end table
10436
10437 @section psnr
10438
10439 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10440 Ratio) between two input videos.
10441
10442 This filter takes in input two input videos, the first input is
10443 considered the "main" source and is passed unchanged to the
10444 output. The second input is used as a "reference" video for computing
10445 the PSNR.
10446
10447 Both video inputs must have the same resolution and pixel format for
10448 this filter to work correctly. Also it assumes that both inputs
10449 have the same number of frames, which are compared one by one.
10450
10451 The obtained average PSNR is printed through the logging system.
10452
10453 The filter stores the accumulated MSE (mean squared error) of each
10454 frame, and at the end of the processing it is averaged across all frames
10455 equally, and the following formula is applied to obtain the PSNR:
10456
10457 @example
10458 PSNR = 10*log10(MAX^2/MSE)
10459 @end example
10460
10461 Where MAX is the average of the maximum values of each component of the
10462 image.
10463
10464 The description of the accepted parameters follows.
10465
10466 @table @option
10467 @item stats_file, f
10468 If specified the filter will use the named file to save the PSNR of
10469 each individual frame. When filename equals "-" the data is sent to
10470 standard output.
10471 @end table
10472
10473 The file printed if @var{stats_file} is selected, contains a sequence of
10474 key/value pairs of the form @var{key}:@var{value} for each compared
10475 couple of frames.
10476
10477 A description of each shown parameter follows:
10478
10479 @table @option
10480 @item n
10481 sequential number of the input frame, starting from 1
10482
10483 @item mse_avg
10484 Mean Square Error pixel-by-pixel average difference of the compared
10485 frames, averaged over all the image components.
10486
10487 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10488 Mean Square Error pixel-by-pixel average difference of the compared
10489 frames for the component specified by the suffix.
10490
10491 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10492 Peak Signal to Noise ratio of the compared frames for the component
10493 specified by the suffix.
10494 @end table
10495
10496 For example:
10497 @example
10498 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10499 [main][ref] psnr="stats_file=stats.log" [out]
10500 @end example
10501
10502 On this example the input file being processed is compared with the
10503 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10504 is stored in @file{stats.log}.
10505
10506 @anchor{pullup}
10507 @section pullup
10508
10509 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10510 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10511 content.
10512
10513 The pullup filter is designed to take advantage of future context in making
10514 its decisions. This filter is stateless in the sense that it does not lock
10515 onto a pattern to follow, but it instead looks forward to the following
10516 fields in order to identify matches and rebuild progressive frames.
10517
10518 To produce content with an even framerate, insert the fps filter after
10519 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10520 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10521
10522 The filter accepts the following options:
10523
10524 @table @option
10525 @item jl
10526 @item jr
10527 @item jt
10528 @item jb
10529 These options set the amount of "junk" to ignore at the left, right, top, and
10530 bottom of the image, respectively. Left and right are in units of 8 pixels,
10531 while top and bottom are in units of 2 lines.
10532 The default is 8 pixels on each side.
10533
10534 @item sb
10535 Set the strict breaks. Setting this option to 1 will reduce the chances of
10536 filter generating an occasional mismatched frame, but it may also cause an
10537 excessive number of frames to be dropped during high motion sequences.
10538 Conversely, setting it to -1 will make filter match fields more easily.
10539 This may help processing of video where there is slight blurring between
10540 the fields, but may also cause there to be interlaced frames in the output.
10541 Default value is @code{0}.
10542
10543 @item mp
10544 Set the metric plane to use. It accepts the following values:
10545 @table @samp
10546 @item l
10547 Use luma plane.
10548
10549 @item u
10550 Use chroma blue plane.
10551
10552 @item v
10553 Use chroma red plane.
10554 @end table
10555
10556 This option may be set to use chroma plane instead of the default luma plane
10557 for doing filter's computations. This may improve accuracy on very clean
10558 source material, but more likely will decrease accuracy, especially if there
10559 is chroma noise (rainbow effect) or any grayscale video.
10560 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10561 load and make pullup usable in realtime on slow machines.
10562 @end table
10563
10564 For best results (without duplicated frames in the output file) it is
10565 necessary to change the output frame rate. For example, to inverse
10566 telecine NTSC input:
10567 @example
10568 ffmpeg -i input -vf pullup -r 24000/1001 ...
10569 @end example
10570
10571 @section qp
10572
10573 Change video quantization parameters (QP).
10574
10575 The filter accepts the following option:
10576
10577 @table @option
10578 @item qp
10579 Set expression for quantization parameter.
10580 @end table
10581
10582 The expression is evaluated through the eval API and can contain, among others,
10583 the following constants:
10584
10585 @table @var
10586 @item known
10587 1 if index is not 129, 0 otherwise.
10588
10589 @item qp
10590 Sequentional index starting from -129 to 128.
10591 @end table
10592
10593 @subsection Examples
10594
10595 @itemize
10596 @item
10597 Some equation like:
10598 @example
10599 qp=2+2*sin(PI*qp)
10600 @end example
10601 @end itemize
10602
10603 @section random
10604
10605 Flush video frames from internal cache of frames into a random order.
10606 No frame is discarded.
10607 Inspired by @ref{frei0r} nervous filter.
10608
10609 @table @option
10610 @item frames
10611 Set size in number of frames of internal cache, in range from @code{2} to
10612 @code{512}. Default is @code{30}.
10613
10614 @item seed
10615 Set seed for random number generator, must be an integer included between
10616 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10617 less than @code{0}, the filter will try to use a good random seed on a
10618 best effort basis.
10619 @end table
10620
10621 @section readvitc
10622
10623 Read vertical interval timecode (VITC) information from the top lines of a
10624 video frame.
10625
10626 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
10627 timecode value, if a valid timecode has been detected. Further metadata key
10628 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
10629 timecode data has been found or not.
10630
10631 This filter accepts the following options:
10632
10633 @table @option
10634 @item scan_max
10635 Set the maximum number of lines to scan for VITC data. If the value is set to
10636 @code{-1} the full video frame is scanned. Default is @code{45}.
10637
10638 @item thr_b
10639 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
10640 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
10641
10642 @item thr_w
10643 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
10644 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
10645 @end table
10646
10647 @subsection Examples
10648
10649 @itemize
10650 @item
10651 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
10652 draw @code{--:--:--:--} as a placeholder:
10653 @example
10654 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
10655 @end example
10656 @end itemize
10657
10658 @section remap
10659
10660 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10661
10662 Destination pixel at position (X, Y) will be picked from source (x, y) position
10663 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10664 value for pixel will be used for destination pixel.
10665
10666 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10667 will have Xmap/Ymap video stream dimensions.
10668 Xmap and Ymap input video streams are 16bit depth, single channel.
10669
10670 @section removegrain
10671
10672 The removegrain filter is a spatial denoiser for progressive video.
10673
10674 @table @option
10675 @item m0
10676 Set mode for the first plane.
10677
10678 @item m1
10679 Set mode for the second plane.
10680
10681 @item m2
10682 Set mode for the third plane.
10683
10684 @item m3
10685 Set mode for the fourth plane.
10686 @end table
10687
10688 Range of mode is from 0 to 24. Description of each mode follows:
10689
10690 @table @var
10691 @item 0
10692 Leave input plane unchanged. Default.
10693
10694 @item 1
10695 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10696
10697 @item 2
10698 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10699
10700 @item 3
10701 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10702
10703 @item 4
10704 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10705 This is equivalent to a median filter.
10706
10707 @item 5
10708 Line-sensitive clipping giving the minimal change.
10709
10710 @item 6
10711 Line-sensitive clipping, intermediate.
10712
10713 @item 7
10714 Line-sensitive clipping, intermediate.
10715
10716 @item 8
10717 Line-sensitive clipping, intermediate.
10718
10719 @item 9
10720 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10721
10722 @item 10
10723 Replaces the target pixel with the closest neighbour.
10724
10725 @item 11
10726 [1 2 1] horizontal and vertical kernel blur.
10727
10728 @item 12
10729 Same as mode 11.
10730
10731 @item 13
10732 Bob mode, interpolates top field from the line where the neighbours
10733 pixels are the closest.
10734
10735 @item 14
10736 Bob mode, interpolates bottom field from the line where the neighbours
10737 pixels are the closest.
10738
10739 @item 15
10740 Bob mode, interpolates top field. Same as 13 but with a more complicated
10741 interpolation formula.
10742
10743 @item 16
10744 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10745 interpolation formula.
10746
10747 @item 17
10748 Clips the pixel with the minimum and maximum of respectively the maximum and
10749 minimum of each pair of opposite neighbour pixels.
10750
10751 @item 18
10752 Line-sensitive clipping using opposite neighbours whose greatest distance from
10753 the current pixel is minimal.
10754
10755 @item 19
10756 Replaces the pixel with the average of its 8 neighbours.
10757
10758 @item 20
10759 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10760
10761 @item 21
10762 Clips pixels using the averages of opposite neighbour.
10763
10764 @item 22
10765 Same as mode 21 but simpler and faster.
10766
10767 @item 23
10768 Small edge and halo removal, but reputed useless.
10769
10770 @item 24
10771 Similar as 23.
10772 @end table
10773
10774 @section removelogo
10775
10776 Suppress a TV station logo, using an image file to determine which
10777 pixels comprise the logo. It works by filling in the pixels that
10778 comprise the logo with neighboring pixels.
10779
10780 The filter accepts the following options:
10781
10782 @table @option
10783 @item filename, f
10784 Set the filter bitmap file, which can be any image format supported by
10785 libavformat. The width and height of the image file must match those of the
10786 video stream being processed.
10787 @end table
10788
10789 Pixels in the provided bitmap image with a value of zero are not
10790 considered part of the logo, non-zero pixels are considered part of
10791 the logo. If you use white (255) for the logo and black (0) for the
10792 rest, you will be safe. For making the filter bitmap, it is
10793 recommended to take a screen capture of a black frame with the logo
10794 visible, and then using a threshold filter followed by the erode
10795 filter once or twice.
10796
10797 If needed, little splotches can be fixed manually. Remember that if
10798 logo pixels are not covered, the filter quality will be much
10799 reduced. Marking too many pixels as part of the logo does not hurt as
10800 much, but it will increase the amount of blurring needed to cover over
10801 the image and will destroy more information than necessary, and extra
10802 pixels will slow things down on a large logo.
10803
10804 @section repeatfields
10805
10806 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10807 fields based on its value.
10808
10809 @section reverse, areverse
10810
10811 Reverse a clip.
10812
10813 Warning: This filter requires memory to buffer the entire clip, so trimming
10814 is suggested.
10815
10816 @subsection Examples
10817
10818 @itemize
10819 @item
10820 Take the first 5 seconds of a clip, and reverse it.
10821 @example
10822 trim=end=5,reverse
10823 @end example
10824 @end itemize
10825
10826 @section rotate
10827
10828 Rotate video by an arbitrary angle expressed in radians.
10829
10830 The filter accepts the following options:
10831
10832 A description of the optional parameters follows.
10833 @table @option
10834 @item angle, a
10835 Set an expression for the angle by which to rotate the input video
10836 clockwise, expressed as a number of radians. A negative value will
10837 result in a counter-clockwise rotation. By default it is set to "0".
10838
10839 This expression is evaluated for each frame.
10840
10841 @item out_w, ow
10842 Set the output width expression, default value is "iw".
10843 This expression is evaluated just once during configuration.
10844
10845 @item out_h, oh
10846 Set the output height expression, default value is "ih".
10847 This expression is evaluated just once during configuration.
10848
10849 @item bilinear
10850 Enable bilinear interpolation if set to 1, a value of 0 disables
10851 it. Default value is 1.
10852
10853 @item fillcolor, c
10854 Set the color used to fill the output area not covered by the rotated
10855 image. For the general syntax of this option, check the "Color" section in the
10856 ffmpeg-utils manual. If the special value "none" is selected then no
10857 background is printed (useful for example if the background is never shown).
10858
10859 Default value is "black".
10860 @end table
10861
10862 The expressions for the angle and the output size can contain the
10863 following constants and functions:
10864
10865 @table @option
10866 @item n
10867 sequential number of the input frame, starting from 0. It is always NAN
10868 before the first frame is filtered.
10869
10870 @item t
10871 time in seconds of the input frame, it is set to 0 when the filter is
10872 configured. It is always NAN before the first frame is filtered.
10873
10874 @item hsub
10875 @item vsub
10876 horizontal and vertical chroma subsample values. For example for the
10877 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10878
10879 @item in_w, iw
10880 @item in_h, ih
10881 the input video width and height
10882
10883 @item out_w, ow
10884 @item out_h, oh
10885 the output width and height, that is the size of the padded area as
10886 specified by the @var{width} and @var{height} expressions
10887
10888 @item rotw(a)
10889 @item roth(a)
10890 the minimal width/height required for completely containing the input
10891 video rotated by @var{a} radians.
10892
10893 These are only available when computing the @option{out_w} and
10894 @option{out_h} expressions.
10895 @end table
10896
10897 @subsection Examples
10898
10899 @itemize
10900 @item
10901 Rotate the input by PI/6 radians clockwise:
10902 @example
10903 rotate=PI/6
10904 @end example
10905
10906 @item
10907 Rotate the input by PI/6 radians counter-clockwise:
10908 @example
10909 rotate=-PI/6
10910 @end example
10911
10912 @item
10913 Rotate the input by 45 degrees clockwise:
10914 @example
10915 rotate=45*PI/180
10916 @end example
10917
10918 @item
10919 Apply a constant rotation with period T, starting from an angle of PI/3:
10920 @example
10921 rotate=PI/3+2*PI*t/T
10922 @end example
10923
10924 @item
10925 Make the input video rotation oscillating with a period of T
10926 seconds and an amplitude of A radians:
10927 @example
10928 rotate=A*sin(2*PI/T*t)
10929 @end example
10930
10931 @item
10932 Rotate the video, output size is chosen so that the whole rotating
10933 input video is always completely contained in the output:
10934 @example
10935 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
10936 @end example
10937
10938 @item
10939 Rotate the video, reduce the output size so that no background is ever
10940 shown:
10941 @example
10942 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
10943 @end example
10944 @end itemize
10945
10946 @subsection Commands
10947
10948 The filter supports the following commands:
10949
10950 @table @option
10951 @item a, angle
10952 Set the angle expression.
10953 The command accepts the same syntax of the corresponding option.
10954
10955 If the specified expression is not valid, it is kept at its current
10956 value.
10957 @end table
10958
10959 @section sab
10960
10961 Apply Shape Adaptive Blur.
10962
10963 The filter accepts the following options:
10964
10965 @table @option
10966 @item luma_radius, lr
10967 Set luma blur filter strength, must be a value in range 0.1-4.0, default
10968 value is 1.0. A greater value will result in a more blurred image, and
10969 in slower processing.
10970
10971 @item luma_pre_filter_radius, lpfr
10972 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
10973 value is 1.0.
10974
10975 @item luma_strength, ls
10976 Set luma maximum difference between pixels to still be considered, must
10977 be a value in the 0.1-100.0 range, default value is 1.0.
10978
10979 @item chroma_radius, cr
10980 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
10981 greater value will result in a more blurred image, and in slower
10982 processing.
10983
10984 @item chroma_pre_filter_radius, cpfr
10985 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
10986
10987 @item chroma_strength, cs
10988 Set chroma maximum difference between pixels to still be considered,
10989 must be a value in the 0.1-100.0 range.
10990 @end table
10991
10992 Each chroma option value, if not explicitly specified, is set to the
10993 corresponding luma option value.
10994
10995 @anchor{scale}
10996 @section scale
10997
10998 Scale (resize) the input video, using the libswscale library.
10999
11000 The scale filter forces the output display aspect ratio to be the same
11001 of the input, by changing the output sample aspect ratio.
11002
11003 If the input image format is different from the format requested by
11004 the next filter, the scale filter will convert the input to the
11005 requested format.
11006
11007 @subsection Options
11008 The filter accepts the following options, or any of the options
11009 supported by the libswscale scaler.
11010
11011 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11012 the complete list of scaler options.
11013
11014 @table @option
11015 @item width, w
11016 @item height, h
11017 Set the output video dimension expression. Default value is the input
11018 dimension.
11019
11020 If the value is 0, the input width is used for the output.
11021
11022 If one of the values is -1, the scale filter will use a value that
11023 maintains the aspect ratio of the input image, calculated from the
11024 other specified dimension. If both of them are -1, the input size is
11025 used
11026
11027 If one of the values is -n with n > 1, the scale filter will also use a value
11028 that maintains the aspect ratio of the input image, calculated from the other
11029 specified dimension. After that it will, however, make sure that the calculated
11030 dimension is divisible by n and adjust the value if necessary.
11031
11032 See below for the list of accepted constants for use in the dimension
11033 expression.
11034
11035 @item eval
11036 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11037
11038 @table @samp
11039 @item init
11040 Only evaluate expressions once during the filter initialization or when a command is processed.
11041
11042 @item frame
11043 Evaluate expressions for each incoming frame.
11044
11045 @end table
11046
11047 Default value is @samp{init}.
11048
11049
11050 @item interl
11051 Set the interlacing mode. It accepts the following values:
11052
11053 @table @samp
11054 @item 1
11055 Force interlaced aware scaling.
11056
11057 @item 0
11058 Do not apply interlaced scaling.
11059
11060 @item -1
11061 Select interlaced aware scaling depending on whether the source frames
11062 are flagged as interlaced or not.
11063 @end table
11064
11065 Default value is @samp{0}.
11066
11067 @item flags
11068 Set libswscale scaling flags. See
11069 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11070 complete list of values. If not explicitly specified the filter applies
11071 the default flags.
11072
11073
11074 @item param0, param1
11075 Set libswscale input parameters for scaling algorithms that need them. See
11076 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11077 complete documentation. If not explicitly specified the filter applies
11078 empty parameters.
11079
11080
11081
11082 @item size, s
11083 Set the video size. For the syntax of this option, check the
11084 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11085
11086 @item in_color_matrix
11087 @item out_color_matrix
11088 Set in/output YCbCr color space type.
11089
11090 This allows the autodetected value to be overridden as well as allows forcing
11091 a specific value used for the output and encoder.
11092
11093 If not specified, the color space type depends on the pixel format.
11094
11095 Possible values:
11096
11097 @table @samp
11098 @item auto
11099 Choose automatically.
11100
11101 @item bt709
11102 Format conforming to International Telecommunication Union (ITU)
11103 Recommendation BT.709.
11104
11105 @item fcc
11106 Set color space conforming to the United States Federal Communications
11107 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11108
11109 @item bt601
11110 Set color space conforming to:
11111
11112 @itemize
11113 @item
11114 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11115
11116 @item
11117 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11118
11119 @item
11120 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11121
11122 @end itemize
11123
11124 @item smpte240m
11125 Set color space conforming to SMPTE ST 240:1999.
11126 @end table
11127
11128 @item in_range
11129 @item out_range
11130 Set in/output YCbCr sample range.
11131
11132 This allows the autodetected value to be overridden as well as allows forcing
11133 a specific value used for the output and encoder. If not specified, the
11134 range depends on the pixel format. Possible values:
11135
11136 @table @samp
11137 @item auto
11138 Choose automatically.
11139
11140 @item jpeg/full/pc
11141 Set full range (0-255 in case of 8-bit luma).
11142
11143 @item mpeg/tv
11144 Set "MPEG" range (16-235 in case of 8-bit luma).
11145 @end table
11146
11147 @item force_original_aspect_ratio
11148 Enable decreasing or increasing output video width or height if necessary to
11149 keep the original aspect ratio. Possible values:
11150
11151 @table @samp
11152 @item disable
11153 Scale the video as specified and disable this feature.
11154
11155 @item decrease
11156 The output video dimensions will automatically be decreased if needed.
11157
11158 @item increase
11159 The output video dimensions will automatically be increased if needed.
11160
11161 @end table
11162
11163 One useful instance of this option is that when you know a specific device's
11164 maximum allowed resolution, you can use this to limit the output video to
11165 that, while retaining the aspect ratio. For example, device A allows
11166 1280x720 playback, and your video is 1920x800. Using this option (set it to
11167 decrease) and specifying 1280x720 to the command line makes the output
11168 1280x533.
11169
11170 Please note that this is a different thing than specifying -1 for @option{w}
11171 or @option{h}, you still need to specify the output resolution for this option
11172 to work.
11173
11174 @end table
11175
11176 The values of the @option{w} and @option{h} options are expressions
11177 containing the following constants:
11178
11179 @table @var
11180 @item in_w
11181 @item in_h
11182 The input width and height
11183
11184 @item iw
11185 @item ih
11186 These are the same as @var{in_w} and @var{in_h}.
11187
11188 @item out_w
11189 @item out_h
11190 The output (scaled) width and height
11191
11192 @item ow
11193 @item oh
11194 These are the same as @var{out_w} and @var{out_h}
11195
11196 @item a
11197 The same as @var{iw} / @var{ih}
11198
11199 @item sar
11200 input sample aspect ratio
11201
11202 @item dar
11203 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11204
11205 @item hsub
11206 @item vsub
11207 horizontal and vertical input chroma subsample values. For example for the
11208 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11209
11210 @item ohsub
11211 @item ovsub
11212 horizontal and vertical output chroma subsample values. For example for the
11213 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11214 @end table
11215
11216 @subsection Examples
11217
11218 @itemize
11219 @item
11220 Scale the input video to a size of 200x100
11221 @example
11222 scale=w=200:h=100
11223 @end example
11224
11225 This is equivalent to:
11226 @example
11227 scale=200:100
11228 @end example
11229
11230 or:
11231 @example
11232 scale=200x100
11233 @end example
11234
11235 @item
11236 Specify a size abbreviation for the output size:
11237 @example
11238 scale=qcif
11239 @end example
11240
11241 which can also be written as:
11242 @example
11243 scale=size=qcif
11244 @end example
11245
11246 @item
11247 Scale the input to 2x:
11248 @example
11249 scale=w=2*iw:h=2*ih
11250 @end example
11251
11252 @item
11253 The above is the same as:
11254 @example
11255 scale=2*in_w:2*in_h
11256 @end example
11257
11258 @item
11259 Scale the input to 2x with forced interlaced scaling:
11260 @example
11261 scale=2*iw:2*ih:interl=1
11262 @end example
11263
11264 @item
11265 Scale the input to half size:
11266 @example
11267 scale=w=iw/2:h=ih/2
11268 @end example
11269
11270 @item
11271 Increase the width, and set the height to the same size:
11272 @example
11273 scale=3/2*iw:ow
11274 @end example
11275
11276 @item
11277 Seek Greek harmony:
11278 @example
11279 scale=iw:1/PHI*iw
11280 scale=ih*PHI:ih
11281 @end example
11282
11283 @item
11284 Increase the height, and set the width to 3/2 of the height:
11285 @example
11286 scale=w=3/2*oh:h=3/5*ih
11287 @end example
11288
11289 @item
11290 Increase the size, making the size a multiple of the chroma
11291 subsample values:
11292 @example
11293 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11294 @end example
11295
11296 @item
11297 Increase the width to a maximum of 500 pixels,
11298 keeping the same aspect ratio as the input:
11299 @example
11300 scale=w='min(500\, iw*3/2):h=-1'
11301 @end example
11302 @end itemize
11303
11304 @subsection Commands
11305
11306 This filter supports the following commands:
11307 @table @option
11308 @item width, w
11309 @item height, h
11310 Set the output video dimension expression.
11311 The command accepts the same syntax of the corresponding option.
11312
11313 If the specified expression is not valid, it is kept at its current
11314 value.
11315 @end table
11316
11317 @section scale2ref
11318
11319 Scale (resize) the input video, based on a reference video.
11320
11321 See the scale filter for available options, scale2ref supports the same but
11322 uses the reference video instead of the main input as basis.
11323
11324 @subsection Examples
11325
11326 @itemize
11327 @item
11328 Scale a subtitle stream to match the main video in size before overlaying
11329 @example
11330 'scale2ref[b][a];[a][b]overlay'
11331 @end example
11332 @end itemize
11333
11334 @anchor{selectivecolor}
11335 @section selectivecolor
11336
11337 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11338 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11339 by the "purity" of the color (that is, how saturated it already is).
11340
11341 This filter is similar to the Adobe Photoshop Selective Color tool.
11342
11343 The filter accepts the following options:
11344
11345 @table @option
11346 @item correction_method
11347 Select color correction method.
11348
11349 Available values are:
11350 @table @samp
11351 @item absolute
11352 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11353 component value).
11354 @item relative
11355 Specified adjustments are relative to the original component value.
11356 @end table
11357 Default is @code{absolute}.
11358 @item reds
11359 Adjustments for red pixels (pixels where the red component is the maximum)
11360 @item yellows
11361 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11362 @item greens
11363 Adjustments for green pixels (pixels where the green component is the maximum)
11364 @item cyans
11365 Adjustments for cyan pixels (pixels where the red component is the minimum)
11366 @item blues
11367 Adjustments for blue pixels (pixels where the blue component is the maximum)
11368 @item magentas
11369 Adjustments for magenta pixels (pixels where the green component is the minimum)
11370 @item whites
11371 Adjustments for white pixels (pixels where all components are greater than 128)
11372 @item neutrals
11373 Adjustments for all pixels except pure black and pure white
11374 @item blacks
11375 Adjustments for black pixels (pixels where all components are lesser than 128)
11376 @item psfile
11377 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11378 @end table
11379
11380 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11381 4 space separated floating point adjustment values in the [-1,1] range,
11382 respectively to adjust the amount of cyan, magenta, yellow and black for the
11383 pixels of its range.
11384
11385 @subsection Examples
11386
11387 @itemize
11388 @item
11389 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11390 increase magenta by 27% in blue areas:
11391 @example
11392 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11393 @end example
11394
11395 @item
11396 Use a Photoshop selective color preset:
11397 @example
11398 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11399 @end example
11400 @end itemize
11401
11402 @section separatefields
11403
11404 The @code{separatefields} takes a frame-based video input and splits
11405 each frame into its components fields, producing a new half height clip
11406 with twice the frame rate and twice the frame count.
11407
11408 This filter use field-dominance information in frame to decide which
11409 of each pair of fields to place first in the output.
11410 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11411
11412 @section setdar, setsar
11413
11414 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11415 output video.
11416
11417 This is done by changing the specified Sample (aka Pixel) Aspect
11418 Ratio, according to the following equation:
11419 @example
11420 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11421 @end example
11422
11423 Keep in mind that the @code{setdar} filter does not modify the pixel
11424 dimensions of the video frame. Also, the display aspect ratio set by
11425 this filter may be changed by later filters in the filterchain,
11426 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11427 applied.
11428
11429 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11430 the filter output video.
11431
11432 Note that as a consequence of the application of this filter, the
11433 output display aspect ratio will change according to the equation
11434 above.
11435
11436 Keep in mind that the sample aspect ratio set by the @code{setsar}
11437 filter may be changed by later filters in the filterchain, e.g. if
11438 another "setsar" or a "setdar" filter is applied.
11439
11440 It accepts the following parameters:
11441
11442 @table @option
11443 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11444 Set the aspect ratio used by the filter.
11445
11446 The parameter can be a floating point number string, an expression, or
11447 a string of the form @var{num}:@var{den}, where @var{num} and
11448 @var{den} are the numerator and denominator of the aspect ratio. If
11449 the parameter is not specified, it is assumed the value "0".
11450 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11451 should be escaped.
11452
11453 @item max
11454 Set the maximum integer value to use for expressing numerator and
11455 denominator when reducing the expressed aspect ratio to a rational.
11456 Default value is @code{100}.
11457
11458 @end table
11459
11460 The parameter @var{sar} is an expression containing
11461 the following constants:
11462
11463 @table @option
11464 @item E, PI, PHI
11465 These are approximated values for the mathematical constants e
11466 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11467
11468 @item w, h
11469 The input width and height.
11470
11471 @item a
11472 These are the same as @var{w} / @var{h}.
11473
11474 @item sar
11475 The input sample aspect ratio.
11476
11477 @item dar
11478 The input display aspect ratio. It is the same as
11479 (@var{w} / @var{h}) * @var{sar}.
11480
11481 @item hsub, vsub
11482 Horizontal and vertical chroma subsample values. For example, for the
11483 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11484 @end table
11485
11486 @subsection Examples
11487
11488 @itemize
11489
11490 @item
11491 To change the display aspect ratio to 16:9, specify one of the following:
11492 @example
11493 setdar=dar=1.77777
11494 setdar=dar=16/9
11495 setdar=dar=1.77777
11496 @end example
11497
11498 @item
11499 To change the sample aspect ratio to 10:11, specify:
11500 @example
11501 setsar=sar=10/11
11502 @end example
11503
11504 @item
11505 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11506 1000 in the aspect ratio reduction, use the command:
11507 @example
11508 setdar=ratio=16/9:max=1000
11509 @end example
11510
11511 @end itemize
11512
11513 @anchor{setfield}
11514 @section setfield
11515
11516 Force field for the output video frame.
11517
11518 The @code{setfield} filter marks the interlace type field for the
11519 output frames. It does not change the input frame, but only sets the
11520 corresponding property, which affects how the frame is treated by
11521 following filters (e.g. @code{fieldorder} or @code{yadif}).
11522
11523 The filter accepts the following options:
11524
11525 @table @option
11526
11527 @item mode
11528 Available values are:
11529
11530 @table @samp
11531 @item auto
11532 Keep the same field property.
11533
11534 @item bff
11535 Mark the frame as bottom-field-first.
11536
11537 @item tff
11538 Mark the frame as top-field-first.
11539
11540 @item prog
11541 Mark the frame as progressive.
11542 @end table
11543 @end table
11544
11545 @section showinfo
11546
11547 Show a line containing various information for each input video frame.
11548 The input video is not modified.
11549
11550 The shown line contains a sequence of key/value pairs of the form
11551 @var{key}:@var{value}.
11552
11553 The following values are shown in the output:
11554
11555 @table @option
11556 @item n
11557 The (sequential) number of the input frame, starting from 0.
11558
11559 @item pts
11560 The Presentation TimeStamp of the input frame, expressed as a number of
11561 time base units. The time base unit depends on the filter input pad.
11562
11563 @item pts_time
11564 The Presentation TimeStamp of the input frame, expressed as a number of
11565 seconds.
11566
11567 @item pos
11568 The position of the frame in the input stream, or -1 if this information is
11569 unavailable and/or meaningless (for example in case of synthetic video).
11570
11571 @item fmt
11572 The pixel format name.
11573
11574 @item sar
11575 The sample aspect ratio of the input frame, expressed in the form
11576 @var{num}/@var{den}.
11577
11578 @item s
11579 The size of the input frame. For the syntax of this option, check the
11580 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11581
11582 @item i
11583 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11584 for bottom field first).
11585
11586 @item iskey
11587 This is 1 if the frame is a key frame, 0 otherwise.
11588
11589 @item type
11590 The picture type of the input frame ("I" for an I-frame, "P" for a
11591 P-frame, "B" for a B-frame, or "?" for an unknown type).
11592 Also refer to the documentation of the @code{AVPictureType} enum and of
11593 the @code{av_get_picture_type_char} function defined in
11594 @file{libavutil/avutil.h}.
11595
11596 @item checksum
11597 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11598
11599 @item plane_checksum
11600 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11601 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11602 @end table
11603
11604 @section showpalette
11605
11606 Displays the 256 colors palette of each frame. This filter is only relevant for
11607 @var{pal8} pixel format frames.
11608
11609 It accepts the following option:
11610
11611 @table @option
11612 @item s
11613 Set the size of the box used to represent one palette color entry. Default is
11614 @code{30} (for a @code{30x30} pixel box).
11615 @end table
11616
11617 @section shuffleframes
11618
11619 Reorder and/or duplicate video frames.
11620
11621 It accepts the following parameters:
11622
11623 @table @option
11624 @item mapping
11625 Set the destination indexes of input frames.
11626 This is space or '|' separated list of indexes that maps input frames to output
11627 frames. Number of indexes also sets maximal value that each index may have.
11628 @end table
11629
11630 The first frame has the index 0. The default is to keep the input unchanged.
11631
11632 Swap second and third frame of every three frames of the input:
11633 @example
11634 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11635 @end example
11636
11637 @section shuffleplanes
11638
11639 Reorder and/or duplicate video planes.
11640
11641 It accepts the following parameters:
11642
11643 @table @option
11644
11645 @item map0
11646 The index of the input plane to be used as the first output plane.
11647
11648 @item map1
11649 The index of the input plane to be used as the second output plane.
11650
11651 @item map2
11652 The index of the input plane to be used as the third output plane.
11653
11654 @item map3
11655 The index of the input plane to be used as the fourth output plane.
11656
11657 @end table
11658
11659 The first plane has the index 0. The default is to keep the input unchanged.
11660
11661 Swap the second and third planes of the input:
11662 @example
11663 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11664 @end example
11665
11666 @anchor{signalstats}
11667 @section signalstats
11668 Evaluate various visual metrics that assist in determining issues associated
11669 with the digitization of analog video media.
11670
11671 By default the filter will log these metadata values:
11672
11673 @table @option
11674 @item YMIN
11675 Display the minimal Y value contained within the input frame. Expressed in
11676 range of [0-255].
11677
11678 @item YLOW
11679 Display the Y value at the 10% percentile within the input frame. Expressed in
11680 range of [0-255].
11681
11682 @item YAVG
11683 Display the average Y value within the input frame. Expressed in range of
11684 [0-255].
11685
11686 @item YHIGH
11687 Display the Y value at the 90% percentile within the input frame. Expressed in
11688 range of [0-255].
11689
11690 @item YMAX
11691 Display the maximum Y value contained within the input frame. Expressed in
11692 range of [0-255].
11693
11694 @item UMIN
11695 Display the minimal U value contained within the input frame. Expressed in
11696 range of [0-255].
11697
11698 @item ULOW
11699 Display the U value at the 10% percentile within the input frame. Expressed in
11700 range of [0-255].
11701
11702 @item UAVG
11703 Display the average U value within the input frame. Expressed in range of
11704 [0-255].
11705
11706 @item UHIGH
11707 Display the U value at the 90% percentile within the input frame. Expressed in
11708 range of [0-255].
11709
11710 @item UMAX
11711 Display the maximum U value contained within the input frame. Expressed in
11712 range of [0-255].
11713
11714 @item VMIN
11715 Display the minimal V value contained within the input frame. Expressed in
11716 range of [0-255].
11717
11718 @item VLOW
11719 Display the V value at the 10% percentile within the input frame. Expressed in
11720 range of [0-255].
11721
11722 @item VAVG
11723 Display the average V value within the input frame. Expressed in range of
11724 [0-255].
11725
11726 @item VHIGH
11727 Display the V value at the 90% percentile within the input frame. Expressed in
11728 range of [0-255].
11729
11730 @item VMAX
11731 Display the maximum V value contained within the input frame. Expressed in
11732 range of [0-255].
11733
11734 @item SATMIN
11735 Display the minimal saturation value contained within the input frame.
11736 Expressed in range of [0-~181.02].
11737
11738 @item SATLOW
11739 Display the saturation value at the 10% percentile within the input frame.
11740 Expressed in range of [0-~181.02].
11741
11742 @item SATAVG
11743 Display the average saturation value within the input frame. Expressed in range
11744 of [0-~181.02].
11745
11746 @item SATHIGH
11747 Display the saturation value at the 90% percentile within the input frame.
11748 Expressed in range of [0-~181.02].
11749
11750 @item SATMAX
11751 Display the maximum saturation value contained within the input frame.
11752 Expressed in range of [0-~181.02].
11753
11754 @item HUEMED
11755 Display the median value for hue within the input frame. Expressed in range of
11756 [0-360].
11757
11758 @item HUEAVG
11759 Display the average value for hue within the input frame. Expressed in range of
11760 [0-360].
11761
11762 @item YDIF
11763 Display the average of sample value difference between all values of the Y
11764 plane in the current frame and corresponding values of the previous input frame.
11765 Expressed in range of [0-255].
11766
11767 @item UDIF
11768 Display the average of sample value difference between all values of the U
11769 plane in the current frame and corresponding values of the previous input frame.
11770 Expressed in range of [0-255].
11771
11772 @item VDIF
11773 Display the average of sample value difference between all values of the V
11774 plane in the current frame and corresponding values of the previous input frame.
11775 Expressed in range of [0-255].
11776 @end table
11777
11778 The filter accepts the following options:
11779
11780 @table @option
11781 @item stat
11782 @item out
11783
11784 @option{stat} specify an additional form of image analysis.
11785 @option{out} output video with the specified type of pixel highlighted.
11786
11787 Both options accept the following values:
11788
11789 @table @samp
11790 @item tout
11791 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11792 unlike the neighboring pixels of the same field. Examples of temporal outliers
11793 include the results of video dropouts, head clogs, or tape tracking issues.
11794
11795 @item vrep
11796 Identify @var{vertical line repetition}. Vertical line repetition includes
11797 similar rows of pixels within a frame. In born-digital video vertical line
11798 repetition is common, but this pattern is uncommon in video digitized from an
11799 analog source. When it occurs in video that results from the digitization of an
11800 analog source it can indicate concealment from a dropout compensator.
11801
11802 @item brng
11803 Identify pixels that fall outside of legal broadcast range.
11804 @end table
11805
11806 @item color, c
11807 Set the highlight color for the @option{out} option. The default color is
11808 yellow.
11809 @end table
11810
11811 @subsection Examples
11812
11813 @itemize
11814 @item
11815 Output data of various video metrics:
11816 @example
11817 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11818 @end example
11819
11820 @item
11821 Output specific data about the minimum and maximum values of the Y plane per frame:
11822 @example
11823 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11824 @end example
11825
11826 @item
11827 Playback video while highlighting pixels that are outside of broadcast range in red.
11828 @example
11829 ffplay example.mov -vf signalstats="out=brng:color=red"
11830 @end example
11831
11832 @item
11833 Playback video with signalstats metadata drawn over the frame.
11834 @example
11835 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
11836 @end example
11837
11838 The contents of signalstat_drawtext.txt used in the command are:
11839 @example
11840 time %@{pts:hms@}
11841 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
11842 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
11843 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
11844 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
11845
11846 @end example
11847 @end itemize
11848
11849 @anchor{smartblur}
11850 @section smartblur
11851
11852 Blur the input video without impacting the outlines.
11853
11854 It accepts the following options:
11855
11856 @table @option
11857 @item luma_radius, lr
11858 Set the luma radius. The option value must be a float number in
11859 the range [0.1,5.0] that specifies the variance of the gaussian filter
11860 used to blur the image (slower if larger). Default value is 1.0.
11861
11862 @item luma_strength, ls
11863 Set the luma strength. The option value must be a float number
11864 in the range [-1.0,1.0] that configures the blurring. A value included
11865 in [0.0,1.0] will blur the image whereas a value included in
11866 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11867
11868 @item luma_threshold, lt
11869 Set the luma threshold used as a coefficient to determine
11870 whether a pixel should be blurred or not. The option value must be an
11871 integer in the range [-30,30]. A value of 0 will filter all the image,
11872 a value included in [0,30] will filter flat areas and a value included
11873 in [-30,0] will filter edges. Default value is 0.
11874
11875 @item chroma_radius, cr
11876 Set the chroma radius. The option value must be a float number in
11877 the range [0.1,5.0] that specifies the variance of the gaussian filter
11878 used to blur the image (slower if larger). Default value is 1.0.
11879
11880 @item chroma_strength, cs
11881 Set the chroma strength. The option value must be a float number
11882 in the range [-1.0,1.0] that configures the blurring. A value included
11883 in [0.0,1.0] will blur the image whereas a value included in
11884 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11885
11886 @item chroma_threshold, ct
11887 Set the chroma threshold used as a coefficient to determine
11888 whether a pixel should be blurred or not. The option value must be an
11889 integer in the range [-30,30]. A value of 0 will filter all the image,
11890 a value included in [0,30] will filter flat areas and a value included
11891 in [-30,0] will filter edges. Default value is 0.
11892 @end table
11893
11894 If a chroma option is not explicitly set, the corresponding luma value
11895 is set.
11896
11897 @section ssim
11898
11899 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
11900
11901 This filter takes in input two input videos, the first input is
11902 considered the "main" source and is passed unchanged to the
11903 output. The second input is used as a "reference" video for computing
11904 the SSIM.
11905
11906 Both video inputs must have the same resolution and pixel format for
11907 this filter to work correctly. Also it assumes that both inputs
11908 have the same number of frames, which are compared one by one.
11909
11910 The filter stores the calculated SSIM of each frame.
11911
11912 The description of the accepted parameters follows.
11913
11914 @table @option
11915 @item stats_file, f
11916 If specified the filter will use the named file to save the SSIM of
11917 each individual frame. When filename equals "-" the data is sent to
11918 standard output.
11919 @end table
11920
11921 The file printed if @var{stats_file} is selected, contains a sequence of
11922 key/value pairs of the form @var{key}:@var{value} for each compared
11923 couple of frames.
11924
11925 A description of each shown parameter follows:
11926
11927 @table @option
11928 @item n
11929 sequential number of the input frame, starting from 1
11930
11931 @item Y, U, V, R, G, B
11932 SSIM of the compared frames for the component specified by the suffix.
11933
11934 @item All
11935 SSIM of the compared frames for the whole frame.
11936
11937 @item dB
11938 Same as above but in dB representation.
11939 @end table
11940
11941 For example:
11942 @example
11943 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11944 [main][ref] ssim="stats_file=stats.log" [out]
11945 @end example
11946
11947 On this example the input file being processed is compared with the
11948 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
11949 is stored in @file{stats.log}.
11950
11951 Another example with both psnr and ssim at same time:
11952 @example
11953 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
11954 @end example
11955
11956 @section stereo3d
11957
11958 Convert between different stereoscopic image formats.
11959
11960 The filters accept the following options:
11961
11962 @table @option
11963 @item in
11964 Set stereoscopic image format of input.
11965
11966 Available values for input image formats are:
11967 @table @samp
11968 @item sbsl
11969 side by side parallel (left eye left, right eye right)
11970
11971 @item sbsr
11972 side by side crosseye (right eye left, left eye right)
11973
11974 @item sbs2l
11975 side by side parallel with half width resolution
11976 (left eye left, right eye right)
11977
11978 @item sbs2r
11979 side by side crosseye with half width resolution
11980 (right eye left, left eye right)
11981
11982 @item abl
11983 above-below (left eye above, right eye below)
11984
11985 @item abr
11986 above-below (right eye above, left eye below)
11987
11988 @item ab2l
11989 above-below with half height resolution
11990 (left eye above, right eye below)
11991
11992 @item ab2r
11993 above-below with half height resolution
11994 (right eye above, left eye below)
11995
11996 @item al
11997 alternating frames (left eye first, right eye second)
11998
11999 @item ar
12000 alternating frames (right eye first, left eye second)
12001
12002 @item irl
12003 interleaved rows (left eye has top row, right eye starts on next row)
12004
12005 @item irr
12006 interleaved rows (right eye has top row, left eye starts on next row)
12007
12008 @item icl
12009 interleaved columns, left eye first
12010
12011 @item icr
12012 interleaved columns, right eye first
12013
12014 Default value is @samp{sbsl}.
12015 @end table
12016
12017 @item out
12018 Set stereoscopic image format of output.
12019
12020 @table @samp
12021 @item sbsl
12022 side by side parallel (left eye left, right eye right)
12023
12024 @item sbsr
12025 side by side crosseye (right eye left, left eye right)
12026
12027 @item sbs2l
12028 side by side parallel with half width resolution
12029 (left eye left, right eye right)
12030
12031 @item sbs2r
12032 side by side crosseye with half width resolution
12033 (right eye left, left eye right)
12034
12035 @item abl
12036 above-below (left eye above, right eye below)
12037
12038 @item abr
12039 above-below (right eye above, left eye below)
12040
12041 @item ab2l
12042 above-below with half height resolution
12043 (left eye above, right eye below)
12044
12045 @item ab2r
12046 above-below with half height resolution
12047 (right eye above, left eye below)
12048
12049 @item al
12050 alternating frames (left eye first, right eye second)
12051
12052 @item ar
12053 alternating frames (right eye first, left eye second)
12054
12055 @item irl
12056 interleaved rows (left eye has top row, right eye starts on next row)
12057
12058 @item irr
12059 interleaved rows (right eye has top row, left eye starts on next row)
12060
12061 @item arbg
12062 anaglyph red/blue gray
12063 (red filter on left eye, blue filter on right eye)
12064
12065 @item argg
12066 anaglyph red/green gray
12067 (red filter on left eye, green filter on right eye)
12068
12069 @item arcg
12070 anaglyph red/cyan gray
12071 (red filter on left eye, cyan filter on right eye)
12072
12073 @item arch
12074 anaglyph red/cyan half colored
12075 (red filter on left eye, cyan filter on right eye)
12076
12077 @item arcc
12078 anaglyph red/cyan color
12079 (red filter on left eye, cyan filter on right eye)
12080
12081 @item arcd
12082 anaglyph red/cyan color optimized with the least squares projection of dubois
12083 (red filter on left eye, cyan filter on right eye)
12084
12085 @item agmg
12086 anaglyph green/magenta gray
12087 (green filter on left eye, magenta filter on right eye)
12088
12089 @item agmh
12090 anaglyph green/magenta half colored
12091 (green filter on left eye, magenta filter on right eye)
12092
12093 @item agmc
12094 anaglyph green/magenta colored
12095 (green filter on left eye, magenta filter on right eye)
12096
12097 @item agmd
12098 anaglyph green/magenta color optimized with the least squares projection of dubois
12099 (green filter on left eye, magenta filter on right eye)
12100
12101 @item aybg
12102 anaglyph yellow/blue gray
12103 (yellow filter on left eye, blue filter on right eye)
12104
12105 @item aybh
12106 anaglyph yellow/blue half colored
12107 (yellow filter on left eye, blue filter on right eye)
12108
12109 @item aybc
12110 anaglyph yellow/blue colored
12111 (yellow filter on left eye, blue filter on right eye)
12112
12113 @item aybd
12114 anaglyph yellow/blue color optimized with the least squares projection of dubois
12115 (yellow filter on left eye, blue filter on right eye)
12116
12117 @item ml
12118 mono output (left eye only)
12119
12120 @item mr
12121 mono output (right eye only)
12122
12123 @item chl
12124 checkerboard, left eye first
12125
12126 @item chr
12127 checkerboard, right eye first
12128
12129 @item icl
12130 interleaved columns, left eye first
12131
12132 @item icr
12133 interleaved columns, right eye first
12134 @end table
12135
12136 Default value is @samp{arcd}.
12137 @end table
12138
12139 @subsection Examples
12140
12141 @itemize
12142 @item
12143 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12144 @example
12145 stereo3d=sbsl:aybd
12146 @end example
12147
12148 @item
12149 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12150 @example
12151 stereo3d=abl:sbsr
12152 @end example
12153 @end itemize
12154
12155 @section streamselect, astreamselect
12156 Select video or audio streams.
12157
12158 The filter accepts the following options:
12159
12160 @table @option
12161 @item inputs
12162 Set number of inputs. Default is 2.
12163
12164 @item map
12165 Set input indexes to remap to outputs.
12166 @end table
12167
12168 @subsection Commands
12169
12170 The @code{streamselect} and @code{astreamselect} filter supports the following
12171 commands:
12172
12173 @table @option
12174 @item map
12175 Set input indexes to remap to outputs.
12176 @end table
12177
12178 @subsection Examples
12179
12180 @itemize
12181 @item
12182 Select first 5 seconds 1st stream and rest of time 2nd stream:
12183 @example
12184 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12185 @end example
12186
12187 @item
12188 Same as above, but for audio:
12189 @example
12190 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12191 @end example
12192 @end itemize
12193
12194 @anchor{spp}
12195 @section spp
12196
12197 Apply a simple postprocessing filter that compresses and decompresses the image
12198 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12199 and average the results.
12200
12201 The filter accepts the following options:
12202
12203 @table @option
12204 @item quality
12205 Set quality. This option defines the number of levels for averaging. It accepts
12206 an integer in the range 0-6. If set to @code{0}, the filter will have no
12207 effect. A value of @code{6} means the higher quality. For each increment of
12208 that value the speed drops by a factor of approximately 2.  Default value is
12209 @code{3}.
12210
12211 @item qp
12212 Force a constant quantization parameter. If not set, the filter will use the QP
12213 from the video stream (if available).
12214
12215 @item mode
12216 Set thresholding mode. Available modes are:
12217
12218 @table @samp
12219 @item hard
12220 Set hard thresholding (default).
12221 @item soft
12222 Set soft thresholding (better de-ringing effect, but likely blurrier).
12223 @end table
12224
12225 @item use_bframe_qp
12226 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12227 option may cause flicker since the B-Frames have often larger QP. Default is
12228 @code{0} (not enabled).
12229 @end table
12230
12231 @anchor{subtitles}
12232 @section subtitles
12233
12234 Draw subtitles on top of input video using the libass library.
12235
12236 To enable compilation of this filter you need to configure FFmpeg with
12237 @code{--enable-libass}. This filter also requires a build with libavcodec and
12238 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12239 Alpha) subtitles format.
12240
12241 The filter accepts the following options:
12242
12243 @table @option
12244 @item filename, f
12245 Set the filename of the subtitle file to read. It must be specified.
12246
12247 @item original_size
12248 Specify the size of the original video, the video for which the ASS file
12249 was composed. For the syntax of this option, check the
12250 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12251 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12252 correctly scale the fonts if the aspect ratio has been changed.
12253
12254 @item fontsdir
12255 Set a directory path containing fonts that can be used by the filter.
12256 These fonts will be used in addition to whatever the font provider uses.
12257
12258 @item charenc
12259 Set subtitles input character encoding. @code{subtitles} filter only. Only
12260 useful if not UTF-8.
12261
12262 @item stream_index, si
12263 Set subtitles stream index. @code{subtitles} filter only.
12264
12265 @item force_style
12266 Override default style or script info parameters of the subtitles. It accepts a
12267 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12268 @end table
12269
12270 If the first key is not specified, it is assumed that the first value
12271 specifies the @option{filename}.
12272
12273 For example, to render the file @file{sub.srt} on top of the input
12274 video, use the command:
12275 @example
12276 subtitles=sub.srt
12277 @end example
12278
12279 which is equivalent to:
12280 @example
12281 subtitles=filename=sub.srt
12282 @end example
12283
12284 To render the default subtitles stream from file @file{video.mkv}, use:
12285 @example
12286 subtitles=video.mkv
12287 @end example
12288
12289 To render the second subtitles stream from that file, use:
12290 @example
12291 subtitles=video.mkv:si=1
12292 @end example
12293
12294 To make the subtitles stream from @file{sub.srt} appear in transparent green
12295 @code{DejaVu Serif}, use:
12296 @example
12297 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12298 @end example
12299
12300 @section super2xsai
12301
12302 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12303 Interpolate) pixel art scaling algorithm.
12304
12305 Useful for enlarging pixel art images without reducing sharpness.
12306
12307 @section swaprect
12308
12309 Swap two rectangular objects in video.
12310
12311 This filter accepts the following options:
12312
12313 @table @option
12314 @item w
12315 Set object width.
12316
12317 @item h
12318 Set object height.
12319
12320 @item x1
12321 Set 1st rect x coordinate.
12322
12323 @item y1
12324 Set 1st rect y coordinate.
12325
12326 @item x2
12327 Set 2nd rect x coordinate.
12328
12329 @item y2
12330 Set 2nd rect y coordinate.
12331
12332 All expressions are evaluated once for each frame.
12333 @end table
12334
12335 The all options are expressions containing the following constants:
12336
12337 @table @option
12338 @item w
12339 @item h
12340 The input width and height.
12341
12342 @item a
12343 same as @var{w} / @var{h}
12344
12345 @item sar
12346 input sample aspect ratio
12347
12348 @item dar
12349 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12350
12351 @item n
12352 The number of the input frame, starting from 0.
12353
12354 @item t
12355 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12356
12357 @item pos
12358 the position in the file of the input frame, NAN if unknown
12359 @end table
12360
12361 @section swapuv
12362 Swap U & V plane.
12363
12364 @section telecine
12365
12366 Apply telecine process to the video.
12367
12368 This filter accepts the following options:
12369
12370 @table @option
12371 @item first_field
12372 @table @samp
12373 @item top, t
12374 top field first
12375 @item bottom, b
12376 bottom field first
12377 The default value is @code{top}.
12378 @end table
12379
12380 @item pattern
12381 A string of numbers representing the pulldown pattern you wish to apply.
12382 The default value is @code{23}.
12383 @end table
12384
12385 @example
12386 Some typical patterns:
12387
12388 NTSC output (30i):
12389 27.5p: 32222
12390 24p: 23 (classic)
12391 24p: 2332 (preferred)
12392 20p: 33
12393 18p: 334
12394 16p: 3444
12395
12396 PAL output (25i):
12397 27.5p: 12222
12398 24p: 222222222223 ("Euro pulldown")
12399 16.67p: 33
12400 16p: 33333334
12401 @end example
12402
12403 @section thumbnail
12404 Select the most representative frame in a given sequence of consecutive frames.
12405
12406 The filter accepts the following options:
12407
12408 @table @option
12409 @item n
12410 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12411 will pick one of them, and then handle the next batch of @var{n} frames until
12412 the end. Default is @code{100}.
12413 @end table
12414
12415 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12416 value will result in a higher memory usage, so a high value is not recommended.
12417
12418 @subsection Examples
12419
12420 @itemize
12421 @item
12422 Extract one picture each 50 frames:
12423 @example
12424 thumbnail=50
12425 @end example
12426
12427 @item
12428 Complete example of a thumbnail creation with @command{ffmpeg}:
12429 @example
12430 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12431 @end example
12432 @end itemize
12433
12434 @section tile
12435
12436 Tile several successive frames together.
12437
12438 The filter accepts the following options:
12439
12440 @table @option
12441
12442 @item layout
12443 Set the grid size (i.e. the number of lines and columns). For the syntax of
12444 this option, check the
12445 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12446
12447 @item nb_frames
12448 Set the maximum number of frames to render in the given area. It must be less
12449 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12450 the area will be used.
12451
12452 @item margin
12453 Set the outer border margin in pixels.
12454
12455 @item padding
12456 Set the inner border thickness (i.e. the number of pixels between frames). For
12457 more advanced padding options (such as having different values for the edges),
12458 refer to the pad video filter.
12459
12460 @item color
12461 Specify the color of the unused area. For the syntax of this option, check the
12462 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12463 is "black".
12464 @end table
12465
12466 @subsection Examples
12467
12468 @itemize
12469 @item
12470 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12471 @example
12472 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12473 @end example
12474 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12475 duplicating each output frame to accommodate the originally detected frame
12476 rate.
12477
12478 @item
12479 Display @code{5} pictures in an area of @code{3x2} frames,
12480 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12481 mixed flat and named options:
12482 @example
12483 tile=3x2:nb_frames=5:padding=7:margin=2
12484 @end example
12485 @end itemize
12486
12487 @section tinterlace
12488
12489 Perform various types of temporal field interlacing.
12490
12491 Frames are counted starting from 1, so the first input frame is
12492 considered odd.
12493
12494 The filter accepts the following options:
12495
12496 @table @option
12497
12498 @item mode
12499 Specify the mode of the interlacing. This option can also be specified
12500 as a value alone. See below for a list of values for this option.
12501
12502 Available values are:
12503
12504 @table @samp
12505 @item merge, 0
12506 Move odd frames into the upper field, even into the lower field,
12507 generating a double height frame at half frame rate.
12508 @example
12509  ------> time
12510 Input:
12511 Frame 1         Frame 2         Frame 3         Frame 4
12512
12513 11111           22222           33333           44444
12514 11111           22222           33333           44444
12515 11111           22222           33333           44444
12516 11111           22222           33333           44444
12517
12518 Output:
12519 11111                           33333
12520 22222                           44444
12521 11111                           33333
12522 22222                           44444
12523 11111                           33333
12524 22222                           44444
12525 11111                           33333
12526 22222                           44444
12527 @end example
12528
12529 @item drop_odd, 1
12530 Only output even frames, odd frames are dropped, generating a frame with
12531 unchanged height at half frame rate.
12532
12533 @example
12534  ------> time
12535 Input:
12536 Frame 1         Frame 2         Frame 3         Frame 4
12537
12538 11111           22222           33333           44444
12539 11111           22222           33333           44444
12540 11111           22222           33333           44444
12541 11111           22222           33333           44444
12542
12543 Output:
12544                 22222                           44444
12545                 22222                           44444
12546                 22222                           44444
12547                 22222                           44444
12548 @end example
12549
12550 @item drop_even, 2
12551 Only output odd frames, even frames are dropped, generating a frame with
12552 unchanged height at half frame rate.
12553
12554 @example
12555  ------> time
12556 Input:
12557 Frame 1         Frame 2         Frame 3         Frame 4
12558
12559 11111           22222           33333           44444
12560 11111           22222           33333           44444
12561 11111           22222           33333           44444
12562 11111           22222           33333           44444
12563
12564 Output:
12565 11111                           33333
12566 11111                           33333
12567 11111                           33333
12568 11111                           33333
12569 @end example
12570
12571 @item pad, 3
12572 Expand each frame to full height, but pad alternate lines with black,
12573 generating a frame with double height at the same input frame rate.
12574
12575 @example
12576  ------> time
12577 Input:
12578 Frame 1         Frame 2         Frame 3         Frame 4
12579
12580 11111           22222           33333           44444
12581 11111           22222           33333           44444
12582 11111           22222           33333           44444
12583 11111           22222           33333           44444
12584
12585 Output:
12586 11111           .....           33333           .....
12587 .....           22222           .....           44444
12588 11111           .....           33333           .....
12589 .....           22222           .....           44444
12590 11111           .....           33333           .....
12591 .....           22222           .....           44444
12592 11111           .....           33333           .....
12593 .....           22222           .....           44444
12594 @end example
12595
12596
12597 @item interleave_top, 4
12598 Interleave the upper field from odd frames with the lower field from
12599 even frames, generating a frame with unchanged height at half frame rate.
12600
12601 @example
12602  ------> time
12603 Input:
12604 Frame 1         Frame 2         Frame 3         Frame 4
12605
12606 11111<-         22222           33333<-         44444
12607 11111           22222<-         33333           44444<-
12608 11111<-         22222           33333<-         44444
12609 11111           22222<-         33333           44444<-
12610
12611 Output:
12612 11111                           33333
12613 22222                           44444
12614 11111                           33333
12615 22222                           44444
12616 @end example
12617
12618
12619 @item interleave_bottom, 5
12620 Interleave the lower field from odd frames with the upper field from
12621 even frames, generating a frame with unchanged height at half frame rate.
12622
12623 @example
12624  ------> time
12625 Input:
12626 Frame 1         Frame 2         Frame 3         Frame 4
12627
12628 11111           22222<-         33333           44444<-
12629 11111<-         22222           33333<-         44444
12630 11111           22222<-         33333           44444<-
12631 11111<-         22222           33333<-         44444
12632
12633 Output:
12634 22222                           44444
12635 11111                           33333
12636 22222                           44444
12637 11111                           33333
12638 @end example
12639
12640
12641 @item interlacex2, 6
12642 Double frame rate with unchanged height. Frames are inserted each
12643 containing the second temporal field from the previous input frame and
12644 the first temporal field from the next input frame. This mode relies on
12645 the top_field_first flag. Useful for interlaced video displays with no
12646 field synchronisation.
12647
12648 @example
12649  ------> time
12650 Input:
12651 Frame 1         Frame 2         Frame 3         Frame 4
12652
12653 11111           22222           33333           44444
12654  11111           22222           33333           44444
12655 11111           22222           33333           44444
12656  11111           22222           33333           44444
12657
12658 Output:
12659 11111   22222   22222   33333   33333   44444   44444
12660  11111   11111   22222   22222   33333   33333   44444
12661 11111   22222   22222   33333   33333   44444   44444
12662  11111   11111   22222   22222   33333   33333   44444
12663 @end example
12664
12665 @item mergex2, 7
12666 Move odd frames into the upper field, even into the lower field,
12667 generating a double height frame at same frame rate.
12668 @example
12669  ------> time
12670 Input:
12671 Frame 1         Frame 2         Frame 3         Frame 4
12672
12673 11111           22222           33333           44444
12674 11111           22222           33333           44444
12675 11111           22222           33333           44444
12676 11111           22222           33333           44444
12677
12678 Output:
12679 11111           33333           33333           55555
12680 22222           22222           44444           44444
12681 11111           33333           33333           55555
12682 22222           22222           44444           44444
12683 11111           33333           33333           55555
12684 22222           22222           44444           44444
12685 11111           33333           33333           55555
12686 22222           22222           44444           44444
12687 @end example
12688
12689 @end table
12690
12691 Numeric values are deprecated but are accepted for backward
12692 compatibility reasons.
12693
12694 Default mode is @code{merge}.
12695
12696 @item flags
12697 Specify flags influencing the filter process.
12698
12699 Available value for @var{flags} is:
12700
12701 @table @option
12702 @item low_pass_filter, vlfp
12703 Enable vertical low-pass filtering in the filter.
12704 Vertical low-pass filtering is required when creating an interlaced
12705 destination from a progressive source which contains high-frequency
12706 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12707 patterning.
12708
12709 Vertical low-pass filtering can only be enabled for @option{mode}
12710 @var{interleave_top} and @var{interleave_bottom}.
12711
12712 @end table
12713 @end table
12714
12715 @section transpose
12716
12717 Transpose rows with columns in the input video and optionally flip it.
12718
12719 It accepts the following parameters:
12720
12721 @table @option
12722
12723 @item dir
12724 Specify the transposition direction.
12725
12726 Can assume the following values:
12727 @table @samp
12728 @item 0, 4, cclock_flip
12729 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12730 @example
12731 L.R     L.l
12732 . . ->  . .
12733 l.r     R.r
12734 @end example
12735
12736 @item 1, 5, clock
12737 Rotate by 90 degrees clockwise, that is:
12738 @example
12739 L.R     l.L
12740 . . ->  . .
12741 l.r     r.R
12742 @end example
12743
12744 @item 2, 6, cclock
12745 Rotate by 90 degrees counterclockwise, that is:
12746 @example
12747 L.R     R.r
12748 . . ->  . .
12749 l.r     L.l
12750 @end example
12751
12752 @item 3, 7, clock_flip
12753 Rotate by 90 degrees clockwise and vertically flip, that is:
12754 @example
12755 L.R     r.R
12756 . . ->  . .
12757 l.r     l.L
12758 @end example
12759 @end table
12760
12761 For values between 4-7, the transposition is only done if the input
12762 video geometry is portrait and not landscape. These values are
12763 deprecated, the @code{passthrough} option should be used instead.
12764
12765 Numerical values are deprecated, and should be dropped in favor of
12766 symbolic constants.
12767
12768 @item passthrough
12769 Do not apply the transposition if the input geometry matches the one
12770 specified by the specified value. It accepts the following values:
12771 @table @samp
12772 @item none
12773 Always apply transposition.
12774 @item portrait
12775 Preserve portrait geometry (when @var{height} >= @var{width}).
12776 @item landscape
12777 Preserve landscape geometry (when @var{width} >= @var{height}).
12778 @end table
12779
12780 Default value is @code{none}.
12781 @end table
12782
12783 For example to rotate by 90 degrees clockwise and preserve portrait
12784 layout:
12785 @example
12786 transpose=dir=1:passthrough=portrait
12787 @end example
12788
12789 The command above can also be specified as:
12790 @example
12791 transpose=1:portrait
12792 @end example
12793
12794 @section trim
12795 Trim the input so that the output contains one continuous subpart of the input.
12796
12797 It accepts the following parameters:
12798 @table @option
12799 @item start
12800 Specify the time of the start of the kept section, i.e. the frame with the
12801 timestamp @var{start} will be the first frame in the output.
12802
12803 @item end
12804 Specify the time of the first frame that will be dropped, i.e. the frame
12805 immediately preceding the one with the timestamp @var{end} will be the last
12806 frame in the output.
12807
12808 @item start_pts
12809 This is the same as @var{start}, except this option sets the start timestamp
12810 in timebase units instead of seconds.
12811
12812 @item end_pts
12813 This is the same as @var{end}, except this option sets the end timestamp
12814 in timebase units instead of seconds.
12815
12816 @item duration
12817 The maximum duration of the output in seconds.
12818
12819 @item start_frame
12820 The number of the first frame that should be passed to the output.
12821
12822 @item end_frame
12823 The number of the first frame that should be dropped.
12824 @end table
12825
12826 @option{start}, @option{end}, and @option{duration} are expressed as time
12827 duration specifications; see
12828 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12829 for the accepted syntax.
12830
12831 Note that the first two sets of the start/end options and the @option{duration}
12832 option look at the frame timestamp, while the _frame variants simply count the
12833 frames that pass through the filter. Also note that this filter does not modify
12834 the timestamps. If you wish for the output timestamps to start at zero, insert a
12835 setpts filter after the trim filter.
12836
12837 If multiple start or end options are set, this filter tries to be greedy and
12838 keep all the frames that match at least one of the specified constraints. To keep
12839 only the part that matches all the constraints at once, chain multiple trim
12840 filters.
12841
12842 The defaults are such that all the input is kept. So it is possible to set e.g.
12843 just the end values to keep everything before the specified time.
12844
12845 Examples:
12846 @itemize
12847 @item
12848 Drop everything except the second minute of input:
12849 @example
12850 ffmpeg -i INPUT -vf trim=60:120
12851 @end example
12852
12853 @item
12854 Keep only the first second:
12855 @example
12856 ffmpeg -i INPUT -vf trim=duration=1
12857 @end example
12858
12859 @end itemize
12860
12861
12862 @anchor{unsharp}
12863 @section unsharp
12864
12865 Sharpen or blur the input video.
12866
12867 It accepts the following parameters:
12868
12869 @table @option
12870 @item luma_msize_x, lx
12871 Set the luma matrix horizontal size. It must be an odd integer between
12872 3 and 63. The default value is 5.
12873
12874 @item luma_msize_y, ly
12875 Set the luma matrix vertical size. It must be an odd integer between 3
12876 and 63. The default value is 5.
12877
12878 @item luma_amount, la
12879 Set the luma effect strength. It must be a floating point number, reasonable
12880 values lay between -1.5 and 1.5.
12881
12882 Negative values will blur the input video, while positive values will
12883 sharpen it, a value of zero will disable the effect.
12884
12885 Default value is 1.0.
12886
12887 @item chroma_msize_x, cx
12888 Set the chroma matrix horizontal size. It must be an odd integer
12889 between 3 and 63. The default value is 5.
12890
12891 @item chroma_msize_y, cy
12892 Set the chroma matrix vertical size. It must be an odd integer
12893 between 3 and 63. The default value is 5.
12894
12895 @item chroma_amount, ca
12896 Set the chroma effect strength. It must be a floating point number, reasonable
12897 values lay between -1.5 and 1.5.
12898
12899 Negative values will blur the input video, while positive values will
12900 sharpen it, a value of zero will disable the effect.
12901
12902 Default value is 0.0.
12903
12904 @item opencl
12905 If set to 1, specify using OpenCL capabilities, only available if
12906 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
12907
12908 @end table
12909
12910 All parameters are optional and default to the equivalent of the
12911 string '5:5:1.0:5:5:0.0'.
12912
12913 @subsection Examples
12914
12915 @itemize
12916 @item
12917 Apply strong luma sharpen effect:
12918 @example
12919 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
12920 @end example
12921
12922 @item
12923 Apply a strong blur of both luma and chroma parameters:
12924 @example
12925 unsharp=7:7:-2:7:7:-2
12926 @end example
12927 @end itemize
12928
12929 @section uspp
12930
12931 Apply ultra slow/simple postprocessing filter that compresses and decompresses
12932 the image at several (or - in the case of @option{quality} level @code{8} - all)
12933 shifts and average the results.
12934
12935 The way this differs from the behavior of spp is that uspp actually encodes &
12936 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
12937 DCT similar to MJPEG.
12938
12939 The filter accepts the following options:
12940
12941 @table @option
12942 @item quality
12943 Set quality. This option defines the number of levels for averaging. It accepts
12944 an integer in the range 0-8. If set to @code{0}, the filter will have no
12945 effect. A value of @code{8} means the higher quality. For each increment of
12946 that value the speed drops by a factor of approximately 2.  Default value is
12947 @code{3}.
12948
12949 @item qp
12950 Force a constant quantization parameter. If not set, the filter will use the QP
12951 from the video stream (if available).
12952 @end table
12953
12954 @section vectorscope
12955
12956 Display 2 color component values in the two dimensional graph (which is called
12957 a vectorscope).
12958
12959 This filter accepts the following options:
12960
12961 @table @option
12962 @item mode, m
12963 Set vectorscope mode.
12964
12965 It accepts the following values:
12966 @table @samp
12967 @item gray
12968 Gray values are displayed on graph, higher brightness means more pixels have
12969 same component color value on location in graph. This is the default mode.
12970
12971 @item color
12972 Gray values are displayed on graph. Surrounding pixels values which are not
12973 present in video frame are drawn in gradient of 2 color components which are
12974 set by option @code{x} and @code{y}. The 3rd color component is static.
12975
12976 @item color2
12977 Actual color components values present in video frame are displayed on graph.
12978
12979 @item color3
12980 Similar as color2 but higher frequency of same values @code{x} and @code{y}
12981 on graph increases value of another color component, which is luminance by
12982 default values of @code{x} and @code{y}.
12983
12984 @item color4
12985 Actual colors present in video frame are displayed on graph. If two different
12986 colors map to same position on graph then color with higher value of component
12987 not present in graph is picked.
12988
12989 @item color5
12990 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
12991 component picked from radial gradient.
12992 @end table
12993
12994 @item x
12995 Set which color component will be represented on X-axis. Default is @code{1}.
12996
12997 @item y
12998 Set which color component will be represented on Y-axis. Default is @code{2}.
12999
13000 @item intensity, i
13001 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13002 of color component which represents frequency of (X, Y) location in graph.
13003
13004 @item envelope, e
13005 @table @samp
13006 @item none
13007 No envelope, this is default.
13008
13009 @item instant
13010 Instant envelope, even darkest single pixel will be clearly highlighted.
13011
13012 @item peak
13013 Hold maximum and minimum values presented in graph over time. This way you
13014 can still spot out of range values without constantly looking at vectorscope.
13015
13016 @item peak+instant
13017 Peak and instant envelope combined together.
13018 @end table
13019
13020 @item graticule, g
13021 Set what kind of graticule to draw.
13022 @table @samp
13023 @item none
13024 @item green
13025 @item color
13026 @end table
13027
13028 @item opacity, o
13029 Set graticule opacity.
13030
13031 @item flags, f
13032 Set graticule flags.
13033
13034 @table @samp
13035 @item white
13036 Draw graticule for white point.
13037
13038 @item black
13039 Draw graticule for black point.
13040
13041 @item name
13042 Draw color points short names.
13043 @end table
13044
13045 @item bgopacity, b
13046 Set background opacity.
13047
13048 @item lthreshold, l
13049 Set low threshold for color component not represented on X or Y axis.
13050 Values lower than this value will be ignored. Default is 0.
13051 Note this value is multiplied with actual max possible value one pixel component
13052 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13053 is 0.1 * 255 = 25.
13054
13055 @item hthreshold, h
13056 Set high threshold for color component not represented on X or Y axis.
13057 Values higher than this value will be ignored. Default is 1.
13058 Note this value is multiplied with actual max possible value one pixel component
13059 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13060 is 0.9 * 255 = 230.
13061
13062 @item colorspace, c
13063 Set what kind of colorspace to use when drawing graticule.
13064 @table @samp
13065 @item auto
13066 @item 601
13067 @item 709
13068 @end table
13069 Default is auto.
13070 @end table
13071
13072 @anchor{vidstabdetect}
13073 @section vidstabdetect
13074
13075 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13076 @ref{vidstabtransform} for pass 2.
13077
13078 This filter generates a file with relative translation and rotation
13079 transform information about subsequent frames, which is then used by
13080 the @ref{vidstabtransform} filter.
13081
13082 To enable compilation of this filter you need to configure FFmpeg with
13083 @code{--enable-libvidstab}.
13084
13085 This filter accepts the following options:
13086
13087 @table @option
13088 @item result
13089 Set the path to the file used to write the transforms information.
13090 Default value is @file{transforms.trf}.
13091
13092 @item shakiness
13093 Set how shaky the video is and how quick the camera is. It accepts an
13094 integer in the range 1-10, a value of 1 means little shakiness, a
13095 value of 10 means strong shakiness. Default value is 5.
13096
13097 @item accuracy
13098 Set the accuracy of the detection process. It must be a value in the
13099 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13100 accuracy. Default value is 15.
13101
13102 @item stepsize
13103 Set stepsize of the search process. The region around minimum is
13104 scanned with 1 pixel resolution. Default value is 6.
13105
13106 @item mincontrast
13107 Set minimum contrast. Below this value a local measurement field is
13108 discarded. Must be a floating point value in the range 0-1. Default
13109 value is 0.3.
13110
13111 @item tripod
13112 Set reference frame number for tripod mode.
13113
13114 If enabled, the motion of the frames is compared to a reference frame
13115 in the filtered stream, identified by the specified number. The idea
13116 is to compensate all movements in a more-or-less static scene and keep
13117 the camera view absolutely still.
13118
13119 If set to 0, it is disabled. The frames are counted starting from 1.
13120
13121 @item show
13122 Show fields and transforms in the resulting frames. It accepts an
13123 integer in the range 0-2. Default value is 0, which disables any
13124 visualization.
13125 @end table
13126
13127 @subsection Examples
13128
13129 @itemize
13130 @item
13131 Use default values:
13132 @example
13133 vidstabdetect
13134 @end example
13135
13136 @item
13137 Analyze strongly shaky movie and put the results in file
13138 @file{mytransforms.trf}:
13139 @example
13140 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13141 @end example
13142
13143 @item
13144 Visualize the result of internal transformations in the resulting
13145 video:
13146 @example
13147 vidstabdetect=show=1
13148 @end example
13149
13150 @item
13151 Analyze a video with medium shakiness using @command{ffmpeg}:
13152 @example
13153 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13154 @end example
13155 @end itemize
13156
13157 @anchor{vidstabtransform}
13158 @section vidstabtransform
13159
13160 Video stabilization/deshaking: pass 2 of 2,
13161 see @ref{vidstabdetect} for pass 1.
13162
13163 Read a file with transform information for each frame and
13164 apply/compensate them. Together with the @ref{vidstabdetect}
13165 filter this can be used to deshake videos. See also
13166 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13167 the @ref{unsharp} filter, see below.
13168
13169 To enable compilation of this filter you need to configure FFmpeg with
13170 @code{--enable-libvidstab}.
13171
13172 @subsection Options
13173
13174 @table @option
13175 @item input
13176 Set path to the file used to read the transforms. Default value is
13177 @file{transforms.trf}.
13178
13179 @item smoothing
13180 Set the number of frames (value*2 + 1) used for lowpass filtering the
13181 camera movements. Default value is 10.
13182
13183 For example a number of 10 means that 21 frames are used (10 in the
13184 past and 10 in the future) to smoothen the motion in the video. A
13185 larger value leads to a smoother video, but limits the acceleration of
13186 the camera (pan/tilt movements). 0 is a special case where a static
13187 camera is simulated.
13188
13189 @item optalgo
13190 Set the camera path optimization algorithm.
13191
13192 Accepted values are:
13193 @table @samp
13194 @item gauss
13195 gaussian kernel low-pass filter on camera motion (default)
13196 @item avg
13197 averaging on transformations
13198 @end table
13199
13200 @item maxshift
13201 Set maximal number of pixels to translate frames. Default value is -1,
13202 meaning no limit.
13203
13204 @item maxangle
13205 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13206 value is -1, meaning no limit.
13207
13208 @item crop
13209 Specify how to deal with borders that may be visible due to movement
13210 compensation.
13211
13212 Available values are:
13213 @table @samp
13214 @item keep
13215 keep image information from previous frame (default)
13216 @item black
13217 fill the border black
13218 @end table
13219
13220 @item invert
13221 Invert transforms if set to 1. Default value is 0.
13222
13223 @item relative
13224 Consider transforms as relative to previous frame if set to 1,
13225 absolute if set to 0. Default value is 0.
13226
13227 @item zoom
13228 Set percentage to zoom. A positive value will result in a zoom-in
13229 effect, a negative value in a zoom-out effect. Default value is 0 (no
13230 zoom).
13231
13232 @item optzoom
13233 Set optimal zooming to avoid borders.
13234
13235 Accepted values are:
13236 @table @samp
13237 @item 0
13238 disabled
13239 @item 1
13240 optimal static zoom value is determined (only very strong movements
13241 will lead to visible borders) (default)
13242 @item 2
13243 optimal adaptive zoom value is determined (no borders will be
13244 visible), see @option{zoomspeed}
13245 @end table
13246
13247 Note that the value given at zoom is added to the one calculated here.
13248
13249 @item zoomspeed
13250 Set percent to zoom maximally each frame (enabled when
13251 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13252 0.25.
13253
13254 @item interpol
13255 Specify type of interpolation.
13256
13257 Available values are:
13258 @table @samp
13259 @item no
13260 no interpolation
13261 @item linear
13262 linear only horizontal
13263 @item bilinear
13264 linear in both directions (default)
13265 @item bicubic
13266 cubic in both directions (slow)
13267 @end table
13268
13269 @item tripod
13270 Enable virtual tripod mode if set to 1, which is equivalent to
13271 @code{relative=0:smoothing=0}. Default value is 0.
13272
13273 Use also @code{tripod} option of @ref{vidstabdetect}.
13274
13275 @item debug
13276 Increase log verbosity if set to 1. Also the detected global motions
13277 are written to the temporary file @file{global_motions.trf}. Default
13278 value is 0.
13279 @end table
13280
13281 @subsection Examples
13282
13283 @itemize
13284 @item
13285 Use @command{ffmpeg} for a typical stabilization with default values:
13286 @example
13287 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13288 @end example
13289
13290 Note the use of the @ref{unsharp} filter which is always recommended.
13291
13292 @item
13293 Zoom in a bit more and load transform data from a given file:
13294 @example
13295 vidstabtransform=zoom=5:input="mytransforms.trf"
13296 @end example
13297
13298 @item
13299 Smoothen the video even more:
13300 @example
13301 vidstabtransform=smoothing=30
13302 @end example
13303 @end itemize
13304
13305 @section vflip
13306
13307 Flip the input video vertically.
13308
13309 For example, to vertically flip a video with @command{ffmpeg}:
13310 @example
13311 ffmpeg -i in.avi -vf "vflip" out.avi
13312 @end example
13313
13314 @anchor{vignette}
13315 @section vignette
13316
13317 Make or reverse a natural vignetting effect.
13318
13319 The filter accepts the following options:
13320
13321 @table @option
13322 @item angle, a
13323 Set lens angle expression as a number of radians.
13324
13325 The value is clipped in the @code{[0,PI/2]} range.
13326
13327 Default value: @code{"PI/5"}
13328
13329 @item x0
13330 @item y0
13331 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13332 by default.
13333
13334 @item mode
13335 Set forward/backward mode.
13336
13337 Available modes are:
13338 @table @samp
13339 @item forward
13340 The larger the distance from the central point, the darker the image becomes.
13341
13342 @item backward
13343 The larger the distance from the central point, the brighter the image becomes.
13344 This can be used to reverse a vignette effect, though there is no automatic
13345 detection to extract the lens @option{angle} and other settings (yet). It can
13346 also be used to create a burning effect.
13347 @end table
13348
13349 Default value is @samp{forward}.
13350
13351 @item eval
13352 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13353
13354 It accepts the following values:
13355 @table @samp
13356 @item init
13357 Evaluate expressions only once during the filter initialization.
13358
13359 @item frame
13360 Evaluate expressions for each incoming frame. This is way slower than the
13361 @samp{init} mode since it requires all the scalers to be re-computed, but it
13362 allows advanced dynamic expressions.
13363 @end table
13364
13365 Default value is @samp{init}.
13366
13367 @item dither
13368 Set dithering to reduce the circular banding effects. Default is @code{1}
13369 (enabled).
13370
13371 @item aspect
13372 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13373 Setting this value to the SAR of the input will make a rectangular vignetting
13374 following the dimensions of the video.
13375
13376 Default is @code{1/1}.
13377 @end table
13378
13379 @subsection Expressions
13380
13381 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13382 following parameters.
13383
13384 @table @option
13385 @item w
13386 @item h
13387 input width and height
13388
13389 @item n
13390 the number of input frame, starting from 0
13391
13392 @item pts
13393 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13394 @var{TB} units, NAN if undefined
13395
13396 @item r
13397 frame rate of the input video, NAN if the input frame rate is unknown
13398
13399 @item t
13400 the PTS (Presentation TimeStamp) of the filtered video frame,
13401 expressed in seconds, NAN if undefined
13402
13403 @item tb
13404 time base of the input video
13405 @end table
13406
13407
13408 @subsection Examples
13409
13410 @itemize
13411 @item
13412 Apply simple strong vignetting effect:
13413 @example
13414 vignette=PI/4
13415 @end example
13416
13417 @item
13418 Make a flickering vignetting:
13419 @example
13420 vignette='PI/4+random(1)*PI/50':eval=frame
13421 @end example
13422
13423 @end itemize
13424
13425 @section vstack
13426 Stack input videos vertically.
13427
13428 All streams must be of same pixel format and of same width.
13429
13430 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13431 to create same output.
13432
13433 The filter accept the following option:
13434
13435 @table @option
13436 @item inputs
13437 Set number of input streams. Default is 2.
13438
13439 @item shortest
13440 If set to 1, force the output to terminate when the shortest input
13441 terminates. Default value is 0.
13442 @end table
13443
13444 @section w3fdif
13445
13446 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13447 Deinterlacing Filter").
13448
13449 Based on the process described by Martin Weston for BBC R&D, and
13450 implemented based on the de-interlace algorithm written by Jim
13451 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13452 uses filter coefficients calculated by BBC R&D.
13453
13454 There are two sets of filter coefficients, so called "simple":
13455 and "complex". Which set of filter coefficients is used can
13456 be set by passing an optional parameter:
13457
13458 @table @option
13459 @item filter
13460 Set the interlacing filter coefficients. Accepts one of the following values:
13461
13462 @table @samp
13463 @item simple
13464 Simple filter coefficient set.
13465 @item complex
13466 More-complex filter coefficient set.
13467 @end table
13468 Default value is @samp{complex}.
13469
13470 @item deint
13471 Specify which frames to deinterlace. Accept one of the following values:
13472
13473 @table @samp
13474 @item all
13475 Deinterlace all frames,
13476 @item interlaced
13477 Only deinterlace frames marked as interlaced.
13478 @end table
13479
13480 Default value is @samp{all}.
13481 @end table
13482
13483 @section waveform
13484 Video waveform monitor.
13485
13486 The waveform monitor plots color component intensity. By default luminance
13487 only. Each column of the waveform corresponds to a column of pixels in the
13488 source video.
13489
13490 It accepts the following options:
13491
13492 @table @option
13493 @item mode, m
13494 Can be either @code{row}, or @code{column}. Default is @code{column}.
13495 In row mode, the graph on the left side represents color component value 0 and
13496 the right side represents value = 255. In column mode, the top side represents
13497 color component value = 0 and bottom side represents value = 255.
13498
13499 @item intensity, i
13500 Set intensity. Smaller values are useful to find out how many values of the same
13501 luminance are distributed across input rows/columns.
13502 Default value is @code{0.04}. Allowed range is [0, 1].
13503
13504 @item mirror, r
13505 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13506 In mirrored mode, higher values will be represented on the left
13507 side for @code{row} mode and at the top for @code{column} mode. Default is
13508 @code{1} (mirrored).
13509
13510 @item display, d
13511 Set display mode.
13512 It accepts the following values:
13513 @table @samp
13514 @item overlay
13515 Presents information identical to that in the @code{parade}, except
13516 that the graphs representing color components are superimposed directly
13517 over one another.
13518
13519 This display mode makes it easier to spot relative differences or similarities
13520 in overlapping areas of the color components that are supposed to be identical,
13521 such as neutral whites, grays, or blacks.
13522
13523 @item stack
13524 Display separate graph for the color components side by side in
13525 @code{row} mode or one below the other in @code{column} mode.
13526
13527 @item parade
13528 Display separate graph for the color components side by side in
13529 @code{column} mode or one below the other in @code{row} mode.
13530
13531 Using this display mode makes it easy to spot color casts in the highlights
13532 and shadows of an image, by comparing the contours of the top and the bottom
13533 graphs of each waveform. Since whites, grays, and blacks are characterized
13534 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13535 should display three waveforms of roughly equal width/height. If not, the
13536 correction is easy to perform by making level adjustments the three waveforms.
13537 @end table
13538 Default is @code{stack}.
13539
13540 @item components, c
13541 Set which color components to display. Default is 1, which means only luminance
13542 or red color component if input is in RGB colorspace. If is set for example to
13543 7 it will display all 3 (if) available color components.
13544
13545 @item envelope, e
13546 @table @samp
13547 @item none
13548 No envelope, this is default.
13549
13550 @item instant
13551 Instant envelope, minimum and maximum values presented in graph will be easily
13552 visible even with small @code{step} value.
13553
13554 @item peak
13555 Hold minimum and maximum values presented in graph across time. This way you
13556 can still spot out of range values without constantly looking at waveforms.
13557
13558 @item peak+instant
13559 Peak and instant envelope combined together.
13560 @end table
13561
13562 @item filter, f
13563 @table @samp
13564 @item lowpass
13565 No filtering, this is default.
13566
13567 @item flat
13568 Luma and chroma combined together.
13569
13570 @item aflat
13571 Similar as above, but shows difference between blue and red chroma.
13572
13573 @item chroma
13574 Displays only chroma.
13575
13576 @item color
13577 Displays actual color value on waveform.
13578
13579 @item acolor
13580 Similar as above, but with luma showing frequency of chroma values.
13581 @end table
13582
13583 @item graticule, g
13584 Set which graticule to display.
13585
13586 @table @samp
13587 @item none
13588 Do not display graticule.
13589
13590 @item green
13591 Display green graticule showing legal broadcast ranges.
13592 @end table
13593
13594 @item opacity, o
13595 Set graticule opacity.
13596
13597 @item flags, fl
13598 Set graticule flags.
13599
13600 @table @samp
13601 @item numbers
13602 Draw numbers above lines. By default enabled.
13603
13604 @item dots
13605 Draw dots instead of lines.
13606 @end table
13607
13608 @item scale, s
13609 Set scale used for displaying graticule.
13610
13611 @table @samp
13612 @item digital
13613 @item millivolts
13614 @item ire
13615 @end table
13616 Default is digital.
13617 @end table
13618
13619 @section xbr
13620 Apply the xBR high-quality magnification filter which is designed for pixel
13621 art. It follows a set of edge-detection rules, see
13622 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13623
13624 It accepts the following option:
13625
13626 @table @option
13627 @item n
13628 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13629 @code{3xBR} and @code{4} for @code{4xBR}.
13630 Default is @code{3}.
13631 @end table
13632
13633 @anchor{yadif}
13634 @section yadif
13635
13636 Deinterlace the input video ("yadif" means "yet another deinterlacing
13637 filter").
13638
13639 It accepts the following parameters:
13640
13641
13642 @table @option
13643
13644 @item mode
13645 The interlacing mode to adopt. It accepts one of the following values:
13646
13647 @table @option
13648 @item 0, send_frame
13649 Output one frame for each frame.
13650 @item 1, send_field
13651 Output one frame for each field.
13652 @item 2, send_frame_nospatial
13653 Like @code{send_frame}, but it skips the spatial interlacing check.
13654 @item 3, send_field_nospatial
13655 Like @code{send_field}, but it skips the spatial interlacing check.
13656 @end table
13657
13658 The default value is @code{send_frame}.
13659
13660 @item parity
13661 The picture field parity assumed for the input interlaced video. It accepts one
13662 of the following values:
13663
13664 @table @option
13665 @item 0, tff
13666 Assume the top field is first.
13667 @item 1, bff
13668 Assume the bottom field is first.
13669 @item -1, auto
13670 Enable automatic detection of field parity.
13671 @end table
13672
13673 The default value is @code{auto}.
13674 If the interlacing is unknown or the decoder does not export this information,
13675 top field first will be assumed.
13676
13677 @item deint
13678 Specify which frames to deinterlace. Accept one of the following
13679 values:
13680
13681 @table @option
13682 @item 0, all
13683 Deinterlace all frames.
13684 @item 1, interlaced
13685 Only deinterlace frames marked as interlaced.
13686 @end table
13687
13688 The default value is @code{all}.
13689 @end table
13690
13691 @section zoompan
13692
13693 Apply Zoom & Pan effect.
13694
13695 This filter accepts the following options:
13696
13697 @table @option
13698 @item zoom, z
13699 Set the zoom expression. Default is 1.
13700
13701 @item x
13702 @item y
13703 Set the x and y expression. Default is 0.
13704
13705 @item d
13706 Set the duration expression in number of frames.
13707 This sets for how many number of frames effect will last for
13708 single input image.
13709
13710 @item s
13711 Set the output image size, default is 'hd720'.
13712
13713 @item fps
13714 Set the output frame rate, default is '25'.
13715 @end table
13716
13717 Each expression can contain the following constants:
13718
13719 @table @option
13720 @item in_w, iw
13721 Input width.
13722
13723 @item in_h, ih
13724 Input height.
13725
13726 @item out_w, ow
13727 Output width.
13728
13729 @item out_h, oh
13730 Output height.
13731
13732 @item in
13733 Input frame count.
13734
13735 @item on
13736 Output frame count.
13737
13738 @item x
13739 @item y
13740 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13741 for current input frame.
13742
13743 @item px
13744 @item py
13745 'x' and 'y' of last output frame of previous input frame or 0 when there was
13746 not yet such frame (first input frame).
13747
13748 @item zoom
13749 Last calculated zoom from 'z' expression for current input frame.
13750
13751 @item pzoom
13752 Last calculated zoom of last output frame of previous input frame.
13753
13754 @item duration
13755 Number of output frames for current input frame. Calculated from 'd' expression
13756 for each input frame.
13757
13758 @item pduration
13759 number of output frames created for previous input frame
13760
13761 @item a
13762 Rational number: input width / input height
13763
13764 @item sar
13765 sample aspect ratio
13766
13767 @item dar
13768 display aspect ratio
13769
13770 @end table
13771
13772 @subsection Examples
13773
13774 @itemize
13775 @item
13776 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13777 @example
13778 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
13779 @end example
13780
13781 @item
13782 Zoom-in up to 1.5 and pan always at center of picture:
13783 @example
13784 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13785 @end example
13786 @end itemize
13787
13788 @section zscale
13789 Scale (resize) the input video, using the z.lib library:
13790 https://github.com/sekrit-twc/zimg.
13791
13792 The zscale filter forces the output display aspect ratio to be the same
13793 as the input, by changing the output sample aspect ratio.
13794
13795 If the input image format is different from the format requested by
13796 the next filter, the zscale filter will convert the input to the
13797 requested format.
13798
13799 @subsection Options
13800 The filter accepts the following options.
13801
13802 @table @option
13803 @item width, w
13804 @item height, h
13805 Set the output video dimension expression. Default value is the input
13806 dimension.
13807
13808 If the @var{width} or @var{w} is 0, the input width is used for the output.
13809 If the @var{height} or @var{h} is 0, the input height is used for the output.
13810
13811 If one of the values is -1, the zscale filter will use a value that
13812 maintains the aspect ratio of the input image, calculated from the
13813 other specified dimension. If both of them are -1, the input size is
13814 used
13815
13816 If one of the values is -n with n > 1, the zscale filter will also use a value
13817 that maintains the aspect ratio of the input image, calculated from the other
13818 specified dimension. After that it will, however, make sure that the calculated
13819 dimension is divisible by n and adjust the value if necessary.
13820
13821 See below for the list of accepted constants for use in the dimension
13822 expression.
13823
13824 @item size, s
13825 Set the video size. For the syntax of this option, check the
13826 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13827
13828 @item dither, d
13829 Set the dither type.
13830
13831 Possible values are:
13832 @table @var
13833 @item none
13834 @item ordered
13835 @item random
13836 @item error_diffusion
13837 @end table
13838
13839 Default is none.
13840
13841 @item filter, f
13842 Set the resize filter type.
13843
13844 Possible values are:
13845 @table @var
13846 @item point
13847 @item bilinear
13848 @item bicubic
13849 @item spline16
13850 @item spline36
13851 @item lanczos
13852 @end table
13853
13854 Default is bilinear.
13855
13856 @item range, r
13857 Set the color range.
13858
13859 Possible values are:
13860 @table @var
13861 @item input
13862 @item limited
13863 @item full
13864 @end table
13865
13866 Default is same as input.
13867
13868 @item primaries, p
13869 Set the color primaries.
13870
13871 Possible values are:
13872 @table @var
13873 @item input
13874 @item 709
13875 @item unspecified
13876 @item 170m
13877 @item 240m
13878 @item 2020
13879 @end table
13880
13881 Default is same as input.
13882
13883 @item transfer, t
13884 Set the transfer characteristics.
13885
13886 Possible values are:
13887 @table @var
13888 @item input
13889 @item 709
13890 @item unspecified
13891 @item 601
13892 @item linear
13893 @item 2020_10
13894 @item 2020_12
13895 @end table
13896
13897 Default is same as input.
13898
13899 @item matrix, m
13900 Set the colorspace matrix.
13901
13902 Possible value are:
13903 @table @var
13904 @item input
13905 @item 709
13906 @item unspecified
13907 @item 470bg
13908 @item 170m
13909 @item 2020_ncl
13910 @item 2020_cl
13911 @end table
13912
13913 Default is same as input.
13914
13915 @item rangein, rin
13916 Set the input color range.
13917
13918 Possible values are:
13919 @table @var
13920 @item input
13921 @item limited
13922 @item full
13923 @end table
13924
13925 Default is same as input.
13926
13927 @item primariesin, pin
13928 Set the input color primaries.
13929
13930 Possible values are:
13931 @table @var
13932 @item input
13933 @item 709
13934 @item unspecified
13935 @item 170m
13936 @item 240m
13937 @item 2020
13938 @end table
13939
13940 Default is same as input.
13941
13942 @item transferin, tin
13943 Set the input transfer characteristics.
13944
13945 Possible values are:
13946 @table @var
13947 @item input
13948 @item 709
13949 @item unspecified
13950 @item 601
13951 @item linear
13952 @item 2020_10
13953 @item 2020_12
13954 @end table
13955
13956 Default is same as input.
13957
13958 @item matrixin, min
13959 Set the input colorspace matrix.
13960
13961 Possible value are:
13962 @table @var
13963 @item input
13964 @item 709
13965 @item unspecified
13966 @item 470bg
13967 @item 170m
13968 @item 2020_ncl
13969 @item 2020_cl
13970 @end table
13971 @end table
13972
13973 The values of the @option{w} and @option{h} options are expressions
13974 containing the following constants:
13975
13976 @table @var
13977 @item in_w
13978 @item in_h
13979 The input width and height
13980
13981 @item iw
13982 @item ih
13983 These are the same as @var{in_w} and @var{in_h}.
13984
13985 @item out_w
13986 @item out_h
13987 The output (scaled) width and height
13988
13989 @item ow
13990 @item oh
13991 These are the same as @var{out_w} and @var{out_h}
13992
13993 @item a
13994 The same as @var{iw} / @var{ih}
13995
13996 @item sar
13997 input sample aspect ratio
13998
13999 @item dar
14000 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14001
14002 @item hsub
14003 @item vsub
14004 horizontal and vertical input chroma subsample values. For example for the
14005 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14006
14007 @item ohsub
14008 @item ovsub
14009 horizontal and vertical output chroma subsample values. For example for the
14010 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14011 @end table
14012
14013 @table @option
14014 @end table
14015
14016 @c man end VIDEO FILTERS
14017
14018 @chapter Video Sources
14019 @c man begin VIDEO SOURCES
14020
14021 Below is a description of the currently available video sources.
14022
14023 @section buffer
14024
14025 Buffer video frames, and make them available to the filter chain.
14026
14027 This source is mainly intended for a programmatic use, in particular
14028 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14029
14030 It accepts the following parameters:
14031
14032 @table @option
14033
14034 @item video_size
14035 Specify the size (width and height) of the buffered video frames. For the
14036 syntax of this option, check the
14037 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14038
14039 @item width
14040 The input video width.
14041
14042 @item height
14043 The input video height.
14044
14045 @item pix_fmt
14046 A string representing the pixel format of the buffered video frames.
14047 It may be a number corresponding to a pixel format, or a pixel format
14048 name.
14049
14050 @item time_base
14051 Specify the timebase assumed by the timestamps of the buffered frames.
14052
14053 @item frame_rate
14054 Specify the frame rate expected for the video stream.
14055
14056 @item pixel_aspect, sar
14057 The sample (pixel) aspect ratio of the input video.
14058
14059 @item sws_param
14060 Specify the optional parameters to be used for the scale filter which
14061 is automatically inserted when an input change is detected in the
14062 input size or format.
14063
14064 @item hw_frames_ctx
14065 When using a hardware pixel format, this should be a reference to an
14066 AVHWFramesContext describing input frames.
14067 @end table
14068
14069 For example:
14070 @example
14071 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14072 @end example
14073
14074 will instruct the source to accept video frames with size 320x240 and
14075 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14076 square pixels (1:1 sample aspect ratio).
14077 Since the pixel format with name "yuv410p" corresponds to the number 6
14078 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14079 this example corresponds to:
14080 @example
14081 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14082 @end example
14083
14084 Alternatively, the options can be specified as a flat string, but this
14085 syntax is deprecated:
14086
14087 @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}]
14088
14089 @section cellauto
14090
14091 Create a pattern generated by an elementary cellular automaton.
14092
14093 The initial state of the cellular automaton can be defined through the
14094 @option{filename}, and @option{pattern} options. If such options are
14095 not specified an initial state is created randomly.
14096
14097 At each new frame a new row in the video is filled with the result of
14098 the cellular automaton next generation. The behavior when the whole
14099 frame is filled is defined by the @option{scroll} option.
14100
14101 This source accepts the following options:
14102
14103 @table @option
14104 @item filename, f
14105 Read the initial cellular automaton state, i.e. the starting row, from
14106 the specified file.
14107 In the file, each non-whitespace character is considered an alive
14108 cell, a newline will terminate the row, and further characters in the
14109 file will be ignored.
14110
14111 @item pattern, p
14112 Read the initial cellular automaton state, i.e. the starting row, from
14113 the specified string.
14114
14115 Each non-whitespace character in the string is considered an alive
14116 cell, a newline will terminate the row, and further characters in the
14117 string will be ignored.
14118
14119 @item rate, r
14120 Set the video rate, that is the number of frames generated per second.
14121 Default is 25.
14122
14123 @item random_fill_ratio, ratio
14124 Set the random fill ratio for the initial cellular automaton row. It
14125 is a floating point number value ranging from 0 to 1, defaults to
14126 1/PHI.
14127
14128 This option is ignored when a file or a pattern is specified.
14129
14130 @item random_seed, seed
14131 Set the seed for filling randomly the initial row, must be an integer
14132 included between 0 and UINT32_MAX. If not specified, or if explicitly
14133 set to -1, the filter will try to use a good random seed on a best
14134 effort basis.
14135
14136 @item rule
14137 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14138 Default value is 110.
14139
14140 @item size, s
14141 Set the size of the output video. For the syntax of this option, check the
14142 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14143
14144 If @option{filename} or @option{pattern} is specified, the size is set
14145 by default to the width of the specified initial state row, and the
14146 height is set to @var{width} * PHI.
14147
14148 If @option{size} is set, it must contain the width of the specified
14149 pattern string, and the specified pattern will be centered in the
14150 larger row.
14151
14152 If a filename or a pattern string is not specified, the size value
14153 defaults to "320x518" (used for a randomly generated initial state).
14154
14155 @item scroll
14156 If set to 1, scroll the output upward when all the rows in the output
14157 have been already filled. If set to 0, the new generated row will be
14158 written over the top row just after the bottom row is filled.
14159 Defaults to 1.
14160
14161 @item start_full, full
14162 If set to 1, completely fill the output with generated rows before
14163 outputting the first frame.
14164 This is the default behavior, for disabling set the value to 0.
14165
14166 @item stitch
14167 If set to 1, stitch the left and right row edges together.
14168 This is the default behavior, for disabling set the value to 0.
14169 @end table
14170
14171 @subsection Examples
14172
14173 @itemize
14174 @item
14175 Read the initial state from @file{pattern}, and specify an output of
14176 size 200x400.
14177 @example
14178 cellauto=f=pattern:s=200x400
14179 @end example
14180
14181 @item
14182 Generate a random initial row with a width of 200 cells, with a fill
14183 ratio of 2/3:
14184 @example
14185 cellauto=ratio=2/3:s=200x200
14186 @end example
14187
14188 @item
14189 Create a pattern generated by rule 18 starting by a single alive cell
14190 centered on an initial row with width 100:
14191 @example
14192 cellauto=p=@@:s=100x400:full=0:rule=18
14193 @end example
14194
14195 @item
14196 Specify a more elaborated initial pattern:
14197 @example
14198 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14199 @end example
14200
14201 @end itemize
14202
14203 @anchor{coreimagesrc}
14204 @section coreimagesrc
14205 Video source generated on GPU using Apple's CoreImage API on OSX.
14206
14207 This video source is a specialized version of the @ref{coreimage} video filter.
14208 Use a core image generator at the beginning of the applied filterchain to
14209 generate the content.
14210
14211 The coreimagesrc video source accepts the following options:
14212 @table @option
14213 @item list_generators
14214 List all available generators along with all their respective options as well as
14215 possible minimum and maximum values along with the default values.
14216 @example
14217 list_generators=true
14218 @end example
14219
14220 @item size, s
14221 Specify the size of the sourced video. For the syntax of this option, check the
14222 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14223 The default value is @code{320x240}.
14224
14225 @item rate, r
14226 Specify the frame rate of the sourced video, as the number of frames
14227 generated per second. It has to be a string in the format
14228 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14229 number or a valid video frame rate abbreviation. The default value is
14230 "25".
14231
14232 @item sar
14233 Set the sample aspect ratio of the sourced video.
14234
14235 @item duration, d
14236 Set the duration of the sourced video. See
14237 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14238 for the accepted syntax.
14239
14240 If not specified, or the expressed duration is negative, the video is
14241 supposed to be generated forever.
14242 @end table
14243
14244 Additionally, all options of the @ref{coreimage} video filter are accepted.
14245 A complete filterchain can be used for further processing of the
14246 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14247 and examples for details.
14248
14249 @subsection Examples
14250
14251 @itemize
14252
14253 @item
14254 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14255 given as complete and escaped command-line for Apple's standard bash shell:
14256 @example
14257 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14258 @end example
14259 This example is equivalent to the QRCode example of @ref{coreimage} without the
14260 need for a nullsrc video source.
14261 @end itemize
14262
14263
14264 @section mandelbrot
14265
14266 Generate a Mandelbrot set fractal, and progressively zoom towards the
14267 point specified with @var{start_x} and @var{start_y}.
14268
14269 This source accepts the following options:
14270
14271 @table @option
14272
14273 @item end_pts
14274 Set the terminal pts value. Default value is 400.
14275
14276 @item end_scale
14277 Set the terminal scale value.
14278 Must be a floating point value. Default value is 0.3.
14279
14280 @item inner
14281 Set the inner coloring mode, that is the algorithm used to draw the
14282 Mandelbrot fractal internal region.
14283
14284 It shall assume one of the following values:
14285 @table @option
14286 @item black
14287 Set black mode.
14288 @item convergence
14289 Show time until convergence.
14290 @item mincol
14291 Set color based on point closest to the origin of the iterations.
14292 @item period
14293 Set period mode.
14294 @end table
14295
14296 Default value is @var{mincol}.
14297
14298 @item bailout
14299 Set the bailout value. Default value is 10.0.
14300
14301 @item maxiter
14302 Set the maximum of iterations performed by the rendering
14303 algorithm. Default value is 7189.
14304
14305 @item outer
14306 Set outer coloring mode.
14307 It shall assume one of following values:
14308 @table @option
14309 @item iteration_count
14310 Set iteration cound mode.
14311 @item normalized_iteration_count
14312 set normalized iteration count mode.
14313 @end table
14314 Default value is @var{normalized_iteration_count}.
14315
14316 @item rate, r
14317 Set frame rate, expressed as number of frames per second. Default
14318 value is "25".
14319
14320 @item size, s
14321 Set frame size. For the syntax of this option, check the "Video
14322 size" section in the ffmpeg-utils manual. Default value is "640x480".
14323
14324 @item start_scale
14325 Set the initial scale value. Default value is 3.0.
14326
14327 @item start_x
14328 Set the initial x position. Must be a floating point value between
14329 -100 and 100. Default value is -0.743643887037158704752191506114774.
14330
14331 @item start_y
14332 Set the initial y position. Must be a floating point value between
14333 -100 and 100. Default value is -0.131825904205311970493132056385139.
14334 @end table
14335
14336 @section mptestsrc
14337
14338 Generate various test patterns, as generated by the MPlayer test filter.
14339
14340 The size of the generated video is fixed, and is 256x256.
14341 This source is useful in particular for testing encoding features.
14342
14343 This source accepts the following options:
14344
14345 @table @option
14346
14347 @item rate, r
14348 Specify the frame rate of the sourced video, as the number of frames
14349 generated per second. It has to be a string in the format
14350 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14351 number or a valid video frame rate abbreviation. The default value is
14352 "25".
14353
14354 @item duration, d
14355 Set the duration of the sourced video. See
14356 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14357 for the accepted syntax.
14358
14359 If not specified, or the expressed duration is negative, the video is
14360 supposed to be generated forever.
14361
14362 @item test, t
14363
14364 Set the number or the name of the test to perform. Supported tests are:
14365 @table @option
14366 @item dc_luma
14367 @item dc_chroma
14368 @item freq_luma
14369 @item freq_chroma
14370 @item amp_luma
14371 @item amp_chroma
14372 @item cbp
14373 @item mv
14374 @item ring1
14375 @item ring2
14376 @item all
14377
14378 @end table
14379
14380 Default value is "all", which will cycle through the list of all tests.
14381 @end table
14382
14383 Some examples:
14384 @example
14385 mptestsrc=t=dc_luma
14386 @end example
14387
14388 will generate a "dc_luma" test pattern.
14389
14390 @section frei0r_src
14391
14392 Provide a frei0r source.
14393
14394 To enable compilation of this filter you need to install the frei0r
14395 header and configure FFmpeg with @code{--enable-frei0r}.
14396
14397 This source accepts the following parameters:
14398
14399 @table @option
14400
14401 @item size
14402 The size of the video to generate. For the syntax of this option, check the
14403 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14404
14405 @item framerate
14406 The framerate of the generated video. It may be a string of the form
14407 @var{num}/@var{den} or a frame rate abbreviation.
14408
14409 @item filter_name
14410 The name to the frei0r source to load. For more information regarding frei0r and
14411 how to set the parameters, read the @ref{frei0r} section in the video filters
14412 documentation.
14413
14414 @item filter_params
14415 A '|'-separated list of parameters to pass to the frei0r source.
14416
14417 @end table
14418
14419 For example, to generate a frei0r partik0l source with size 200x200
14420 and frame rate 10 which is overlaid on the overlay filter main input:
14421 @example
14422 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14423 @end example
14424
14425 @section life
14426
14427 Generate a life pattern.
14428
14429 This source is based on a generalization of John Conway's life game.
14430
14431 The sourced input represents a life grid, each pixel represents a cell
14432 which can be in one of two possible states, alive or dead. Every cell
14433 interacts with its eight neighbours, which are the cells that are
14434 horizontally, vertically, or diagonally adjacent.
14435
14436 At each interaction the grid evolves according to the adopted rule,
14437 which specifies the number of neighbor alive cells which will make a
14438 cell stay alive or born. The @option{rule} option allows one to specify
14439 the rule to adopt.
14440
14441 This source accepts the following options:
14442
14443 @table @option
14444 @item filename, f
14445 Set the file from which to read the initial grid state. In the file,
14446 each non-whitespace character is considered an alive cell, and newline
14447 is used to delimit the end of each row.
14448
14449 If this option is not specified, the initial grid is generated
14450 randomly.
14451
14452 @item rate, r
14453 Set the video rate, that is the number of frames generated per second.
14454 Default is 25.
14455
14456 @item random_fill_ratio, ratio
14457 Set the random fill ratio for the initial random grid. It is a
14458 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14459 It is ignored when a file is specified.
14460
14461 @item random_seed, seed
14462 Set the seed for filling the initial random grid, must be an integer
14463 included between 0 and UINT32_MAX. If not specified, or if explicitly
14464 set to -1, the filter will try to use a good random seed on a best
14465 effort basis.
14466
14467 @item rule
14468 Set the life rule.
14469
14470 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14471 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14472 @var{NS} specifies the number of alive neighbor cells which make a
14473 live cell stay alive, and @var{NB} the number of alive neighbor cells
14474 which make a dead cell to become alive (i.e. to "born").
14475 "s" and "b" can be used in place of "S" and "B", respectively.
14476
14477 Alternatively a rule can be specified by an 18-bits integer. The 9
14478 high order bits are used to encode the next cell state if it is alive
14479 for each number of neighbor alive cells, the low order bits specify
14480 the rule for "borning" new cells. Higher order bits encode for an
14481 higher number of neighbor cells.
14482 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14483 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14484
14485 Default value is "S23/B3", which is the original Conway's game of life
14486 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14487 cells, and will born a new cell if there are three alive cells around
14488 a dead cell.
14489
14490 @item size, s
14491 Set the size of the output video. For the syntax of this option, check the
14492 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14493
14494 If @option{filename} is specified, the size is set by default to the
14495 same size of the input file. If @option{size} is set, it must contain
14496 the size specified in the input file, and the initial grid defined in
14497 that file is centered in the larger resulting area.
14498
14499 If a filename is not specified, the size value defaults to "320x240"
14500 (used for a randomly generated initial grid).
14501
14502 @item stitch
14503 If set to 1, stitch the left and right grid edges together, and the
14504 top and bottom edges also. Defaults to 1.
14505
14506 @item mold
14507 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14508 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14509 value from 0 to 255.
14510
14511 @item life_color
14512 Set the color of living (or new born) cells.
14513
14514 @item death_color
14515 Set the color of dead cells. If @option{mold} is set, this is the first color
14516 used to represent a dead cell.
14517
14518 @item mold_color
14519 Set mold color, for definitely dead and moldy cells.
14520
14521 For the syntax of these 3 color options, check the "Color" section in the
14522 ffmpeg-utils manual.
14523 @end table
14524
14525 @subsection Examples
14526
14527 @itemize
14528 @item
14529 Read a grid from @file{pattern}, and center it on a grid of size
14530 300x300 pixels:
14531 @example
14532 life=f=pattern:s=300x300
14533 @end example
14534
14535 @item
14536 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14537 @example
14538 life=ratio=2/3:s=200x200
14539 @end example
14540
14541 @item
14542 Specify a custom rule for evolving a randomly generated grid:
14543 @example
14544 life=rule=S14/B34
14545 @end example
14546
14547 @item
14548 Full example with slow death effect (mold) using @command{ffplay}:
14549 @example
14550 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14551 @end example
14552 @end itemize
14553
14554 @anchor{allrgb}
14555 @anchor{allyuv}
14556 @anchor{color}
14557 @anchor{haldclutsrc}
14558 @anchor{nullsrc}
14559 @anchor{rgbtestsrc}
14560 @anchor{smptebars}
14561 @anchor{smptehdbars}
14562 @anchor{testsrc}
14563 @anchor{testsrc2}
14564 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14565
14566 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14567
14568 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14569
14570 The @code{color} source provides an uniformly colored input.
14571
14572 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14573 @ref{haldclut} filter.
14574
14575 The @code{nullsrc} source returns unprocessed video frames. It is
14576 mainly useful to be employed in analysis / debugging tools, or as the
14577 source for filters which ignore the input data.
14578
14579 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14580 detecting RGB vs BGR issues. You should see a red, green and blue
14581 stripe from top to bottom.
14582
14583 The @code{smptebars} source generates a color bars pattern, based on
14584 the SMPTE Engineering Guideline EG 1-1990.
14585
14586 The @code{smptehdbars} source generates a color bars pattern, based on
14587 the SMPTE RP 219-2002.
14588
14589 The @code{testsrc} source generates a test video pattern, showing a
14590 color pattern, a scrolling gradient and a timestamp. This is mainly
14591 intended for testing purposes.
14592
14593 The @code{testsrc2} source is similar to testsrc, but supports more
14594 pixel formats instead of just @code{rgb24}. This allows using it as an
14595 input for other tests without requiring a format conversion.
14596
14597 The sources accept the following parameters:
14598
14599 @table @option
14600
14601 @item color, c
14602 Specify the color of the source, only available in the @code{color}
14603 source. For the syntax of this option, check the "Color" section in the
14604 ffmpeg-utils manual.
14605
14606 @item level
14607 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14608 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14609 pixels to be used as identity matrix for 3D lookup tables. Each component is
14610 coded on a @code{1/(N*N)} scale.
14611
14612 @item size, s
14613 Specify the size of the sourced video. For the syntax of this option, check the
14614 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14615 The default value is @code{320x240}.
14616
14617 This option is not available with the @code{haldclutsrc} filter.
14618
14619 @item rate, r
14620 Specify the frame rate of the sourced video, as the number of frames
14621 generated per second. It has to be a string in the format
14622 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14623 number or a valid video frame rate abbreviation. The default value is
14624 "25".
14625
14626 @item sar
14627 Set the sample aspect ratio of the sourced video.
14628
14629 @item duration, d
14630 Set the duration of the sourced video. See
14631 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14632 for the accepted syntax.
14633
14634 If not specified, or the expressed duration is negative, the video is
14635 supposed to be generated forever.
14636
14637 @item decimals, n
14638 Set the number of decimals to show in the timestamp, only available in the
14639 @code{testsrc} source.
14640
14641 The displayed timestamp value will correspond to the original
14642 timestamp value multiplied by the power of 10 of the specified
14643 value. Default value is 0.
14644 @end table
14645
14646 For example the following:
14647 @example
14648 testsrc=duration=5.3:size=qcif:rate=10
14649 @end example
14650
14651 will generate a video with a duration of 5.3 seconds, with size
14652 176x144 and a frame rate of 10 frames per second.
14653
14654 The following graph description will generate a red source
14655 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14656 frames per second.
14657 @example
14658 color=c=red@@0.2:s=qcif:r=10
14659 @end example
14660
14661 If the input content is to be ignored, @code{nullsrc} can be used. The
14662 following command generates noise in the luminance plane by employing
14663 the @code{geq} filter:
14664 @example
14665 nullsrc=s=256x256, geq=random(1)*255:128:128
14666 @end example
14667
14668 @subsection Commands
14669
14670 The @code{color} source supports the following commands:
14671
14672 @table @option
14673 @item c, color
14674 Set the color of the created image. Accepts the same syntax of the
14675 corresponding @option{color} option.
14676 @end table
14677
14678 @c man end VIDEO SOURCES
14679
14680 @chapter Video Sinks
14681 @c man begin VIDEO SINKS
14682
14683 Below is a description of the currently available video sinks.
14684
14685 @section buffersink
14686
14687 Buffer video frames, and make them available to the end of the filter
14688 graph.
14689
14690 This sink is mainly intended for programmatic use, in particular
14691 through the interface defined in @file{libavfilter/buffersink.h}
14692 or the options system.
14693
14694 It accepts a pointer to an AVBufferSinkContext structure, which
14695 defines the incoming buffers' formats, to be passed as the opaque
14696 parameter to @code{avfilter_init_filter} for initialization.
14697
14698 @section nullsink
14699
14700 Null video sink: do absolutely nothing with the input video. It is
14701 mainly useful as a template and for use in analysis / debugging
14702 tools.
14703
14704 @c man end VIDEO SINKS
14705
14706 @chapter Multimedia Filters
14707 @c man begin MULTIMEDIA FILTERS
14708
14709 Below is a description of the currently available multimedia filters.
14710
14711 @section ahistogram
14712
14713 Convert input audio to a video output, displaying the volume histogram.
14714
14715 The filter accepts the following options:
14716
14717 @table @option
14718 @item dmode
14719 Specify how histogram is calculated.
14720
14721 It accepts the following values:
14722 @table @samp
14723 @item single
14724 Use single histogram for all channels.
14725 @item separate
14726 Use separate histogram for each channel.
14727 @end table
14728 Default is @code{single}.
14729
14730 @item rate, r
14731 Set frame rate, expressed as number of frames per second. Default
14732 value is "25".
14733
14734 @item size, s
14735 Specify the video size for the output. For the syntax of this option, check the
14736 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14737 Default value is @code{hd720}.
14738
14739 @item scale
14740 Set display scale.
14741
14742 It accepts the following values:
14743 @table @samp
14744 @item log
14745 logarithmic
14746 @item sqrt
14747 square root
14748 @item cbrt
14749 cubic root
14750 @item lin
14751 linear
14752 @item rlog
14753 reverse logarithmic
14754 @end table
14755 Default is @code{log}.
14756
14757 @item ascale
14758 Set amplitude scale.
14759
14760 It accepts the following values:
14761 @table @samp
14762 @item log
14763 logarithmic
14764 @item lin
14765 linear
14766 @end table
14767 Default is @code{log}.
14768
14769 @item acount
14770 Set how much frames to accumulate in histogram.
14771 Defauls is 1. Setting this to -1 accumulates all frames.
14772
14773 @item rheight
14774 Set histogram ratio of window height.
14775
14776 @item slide
14777 Set sonogram sliding.
14778
14779 It accepts the following values:
14780 @table @samp
14781 @item replace
14782 replace old rows with new ones.
14783 @item scroll
14784 scroll from top to bottom.
14785 @end table
14786 Default is @code{replace}.
14787 @end table
14788
14789 @section aphasemeter
14790
14791 Convert input audio to a video output, displaying the audio phase.
14792
14793 The filter accepts the following options:
14794
14795 @table @option
14796 @item rate, r
14797 Set the output frame rate. Default value is @code{25}.
14798
14799 @item size, s
14800 Set the video size for the output. For the syntax of this option, check the
14801 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14802 Default value is @code{800x400}.
14803
14804 @item rc
14805 @item gc
14806 @item bc
14807 Specify the red, green, blue contrast. Default values are @code{2},
14808 @code{7} and @code{1}.
14809 Allowed range is @code{[0, 255]}.
14810
14811 @item mpc
14812 Set color which will be used for drawing median phase. If color is
14813 @code{none} which is default, no median phase value will be drawn.
14814 @end table
14815
14816 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
14817 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
14818 The @code{-1} means left and right channels are completely out of phase and
14819 @code{1} means channels are in phase.
14820
14821 @section avectorscope
14822
14823 Convert input audio to a video output, representing the audio vector
14824 scope.
14825
14826 The filter is used to measure the difference between channels of stereo
14827 audio stream. A monoaural signal, consisting of identical left and right
14828 signal, results in straight vertical line. Any stereo separation is visible
14829 as a deviation from this line, creating a Lissajous figure.
14830 If the straight (or deviation from it) but horizontal line appears this
14831 indicates that the left and right channels are out of phase.
14832
14833 The filter accepts the following options:
14834
14835 @table @option
14836 @item mode, m
14837 Set the vectorscope mode.
14838
14839 Available values are:
14840 @table @samp
14841 @item lissajous
14842 Lissajous rotated by 45 degrees.
14843
14844 @item lissajous_xy
14845 Same as above but not rotated.
14846
14847 @item polar
14848 Shape resembling half of circle.
14849 @end table
14850
14851 Default value is @samp{lissajous}.
14852
14853 @item size, s
14854 Set the video size for the output. For the syntax of this option, check the
14855 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14856 Default value is @code{400x400}.
14857
14858 @item rate, r
14859 Set the output frame rate. Default value is @code{25}.
14860
14861 @item rc
14862 @item gc
14863 @item bc
14864 @item ac
14865 Specify the red, green, blue and alpha contrast. Default values are @code{40},
14866 @code{160}, @code{80} and @code{255}.
14867 Allowed range is @code{[0, 255]}.
14868
14869 @item rf
14870 @item gf
14871 @item bf
14872 @item af
14873 Specify the red, green, blue and alpha fade. Default values are @code{15},
14874 @code{10}, @code{5} and @code{5}.
14875 Allowed range is @code{[0, 255]}.
14876
14877 @item zoom
14878 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
14879
14880 @item draw
14881 Set the vectorscope drawing mode.
14882
14883 Available values are:
14884 @table @samp
14885 @item dot
14886 Draw dot for each sample.
14887
14888 @item line
14889 Draw line between previous and current sample.
14890 @end table
14891
14892 Default value is @samp{dot}.
14893 @end table
14894
14895 @subsection Examples
14896
14897 @itemize
14898 @item
14899 Complete example using @command{ffplay}:
14900 @example
14901 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14902              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
14903 @end example
14904 @end itemize
14905
14906 @section bench, abench
14907
14908 Benchmark part of a filtergraph.
14909
14910 The filter accepts the following options:
14911
14912 @table @option
14913 @item action
14914 Start or stop a timer.
14915
14916 Available values are:
14917 @table @samp
14918 @item start
14919 Get the current time, set it as frame metadata (using the key
14920 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
14921
14922 @item stop
14923 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
14924 the input frame metadata to get the time difference. Time difference, average,
14925 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
14926 @code{min}) are then printed. The timestamps are expressed in seconds.
14927 @end table
14928 @end table
14929
14930 @subsection Examples
14931
14932 @itemize
14933 @item
14934 Benchmark @ref{selectivecolor} filter:
14935 @example
14936 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
14937 @end example
14938 @end itemize
14939
14940 @section concat
14941
14942 Concatenate audio and video streams, joining them together one after the
14943 other.
14944
14945 The filter works on segments of synchronized video and audio streams. All
14946 segments must have the same number of streams of each type, and that will
14947 also be the number of streams at output.
14948
14949 The filter accepts the following options:
14950
14951 @table @option
14952
14953 @item n
14954 Set the number of segments. Default is 2.
14955
14956 @item v
14957 Set the number of output video streams, that is also the number of video
14958 streams in each segment. Default is 1.
14959
14960 @item a
14961 Set the number of output audio streams, that is also the number of audio
14962 streams in each segment. Default is 0.
14963
14964 @item unsafe
14965 Activate unsafe mode: do not fail if segments have a different format.
14966
14967 @end table
14968
14969 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
14970 @var{a} audio outputs.
14971
14972 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
14973 segment, in the same order as the outputs, then the inputs for the second
14974 segment, etc.
14975
14976 Related streams do not always have exactly the same duration, for various
14977 reasons including codec frame size or sloppy authoring. For that reason,
14978 related synchronized streams (e.g. a video and its audio track) should be
14979 concatenated at once. The concat filter will use the duration of the longest
14980 stream in each segment (except the last one), and if necessary pad shorter
14981 audio streams with silence.
14982
14983 For this filter to work correctly, all segments must start at timestamp 0.
14984
14985 All corresponding streams must have the same parameters in all segments; the
14986 filtering system will automatically select a common pixel format for video
14987 streams, and a common sample format, sample rate and channel layout for
14988 audio streams, but other settings, such as resolution, must be converted
14989 explicitly by the user.
14990
14991 Different frame rates are acceptable but will result in variable frame rate
14992 at output; be sure to configure the output file to handle it.
14993
14994 @subsection Examples
14995
14996 @itemize
14997 @item
14998 Concatenate an opening, an episode and an ending, all in bilingual version
14999 (video in stream 0, audio in streams 1 and 2):
15000 @example
15001 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15002   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15003    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15004   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15005 @end example
15006
15007 @item
15008 Concatenate two parts, handling audio and video separately, using the
15009 (a)movie sources, and adjusting the resolution:
15010 @example
15011 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15012 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15013 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15014 @end example
15015 Note that a desync will happen at the stitch if the audio and video streams
15016 do not have exactly the same duration in the first file.
15017
15018 @end itemize
15019
15020 @anchor{ebur128}
15021 @section ebur128
15022
15023 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15024 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15025 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15026 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15027
15028 The filter also has a video output (see the @var{video} option) with a real
15029 time graph to observe the loudness evolution. The graphic contains the logged
15030 message mentioned above, so it is not printed anymore when this option is set,
15031 unless the verbose logging is set. The main graphing area contains the
15032 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15033 the momentary loudness (400 milliseconds).
15034
15035 More information about the Loudness Recommendation EBU R128 on
15036 @url{http://tech.ebu.ch/loudness}.
15037
15038 The filter accepts the following options:
15039
15040 @table @option
15041
15042 @item video
15043 Activate the video output. The audio stream is passed unchanged whether this
15044 option is set or no. The video stream will be the first output stream if
15045 activated. Default is @code{0}.
15046
15047 @item size
15048 Set the video size. This option is for video only. For the syntax of this
15049 option, check the
15050 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15051 Default and minimum resolution is @code{640x480}.
15052
15053 @item meter
15054 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15055 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15056 other integer value between this range is allowed.
15057
15058 @item metadata
15059 Set metadata injection. If set to @code{1}, the audio input will be segmented
15060 into 100ms output frames, each of them containing various loudness information
15061 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15062
15063 Default is @code{0}.
15064
15065 @item framelog
15066 Force the frame logging level.
15067
15068 Available values are:
15069 @table @samp
15070 @item info
15071 information logging level
15072 @item verbose
15073 verbose logging level
15074 @end table
15075
15076 By default, the logging level is set to @var{info}. If the @option{video} or
15077 the @option{metadata} options are set, it switches to @var{verbose}.
15078
15079 @item peak
15080 Set peak mode(s).
15081
15082 Available modes can be cumulated (the option is a @code{flag} type). Possible
15083 values are:
15084 @table @samp
15085 @item none
15086 Disable any peak mode (default).
15087 @item sample
15088 Enable sample-peak mode.
15089
15090 Simple peak mode looking for the higher sample value. It logs a message
15091 for sample-peak (identified by @code{SPK}).
15092 @item true
15093 Enable true-peak mode.
15094
15095 If enabled, the peak lookup is done on an over-sampled version of the input
15096 stream for better peak accuracy. It logs a message for true-peak.
15097 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15098 This mode requires a build with @code{libswresample}.
15099 @end table
15100
15101 @item dualmono
15102 Treat mono input files as "dual mono". If a mono file is intended for playback
15103 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15104 If set to @code{true}, this option will compensate for this effect.
15105 Multi-channel input files are not affected by this option.
15106
15107 @item panlaw
15108 Set a specific pan law to be used for the measurement of dual mono files.
15109 This parameter is optional, and has a default value of -3.01dB.
15110 @end table
15111
15112 @subsection Examples
15113
15114 @itemize
15115 @item
15116 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15117 @example
15118 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15119 @end example
15120
15121 @item
15122 Run an analysis with @command{ffmpeg}:
15123 @example
15124 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15125 @end example
15126 @end itemize
15127
15128 @section interleave, ainterleave
15129
15130 Temporally interleave frames from several inputs.
15131
15132 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15133
15134 These filters read frames from several inputs and send the oldest
15135 queued frame to the output.
15136
15137 Input streams must have a well defined, monotonically increasing frame
15138 timestamp values.
15139
15140 In order to submit one frame to output, these filters need to enqueue
15141 at least one frame for each input, so they cannot work in case one
15142 input is not yet terminated and will not receive incoming frames.
15143
15144 For example consider the case when one input is a @code{select} filter
15145 which always drop input frames. The @code{interleave} filter will keep
15146 reading from that input, but it will never be able to send new frames
15147 to output until the input will send an end-of-stream signal.
15148
15149 Also, depending on inputs synchronization, the filters will drop
15150 frames in case one input receives more frames than the other ones, and
15151 the queue is already filled.
15152
15153 These filters accept the following options:
15154
15155 @table @option
15156 @item nb_inputs, n
15157 Set the number of different inputs, it is 2 by default.
15158 @end table
15159
15160 @subsection Examples
15161
15162 @itemize
15163 @item
15164 Interleave frames belonging to different streams using @command{ffmpeg}:
15165 @example
15166 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15167 @end example
15168
15169 @item
15170 Add flickering blur effect:
15171 @example
15172 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15173 @end example
15174 @end itemize
15175
15176 @section perms, aperms
15177
15178 Set read/write permissions for the output frames.
15179
15180 These filters are mainly aimed at developers to test direct path in the
15181 following filter in the filtergraph.
15182
15183 The filters accept the following options:
15184
15185 @table @option
15186 @item mode
15187 Select the permissions mode.
15188
15189 It accepts the following values:
15190 @table @samp
15191 @item none
15192 Do nothing. This is the default.
15193 @item ro
15194 Set all the output frames read-only.
15195 @item rw
15196 Set all the output frames directly writable.
15197 @item toggle
15198 Make the frame read-only if writable, and writable if read-only.
15199 @item random
15200 Set each output frame read-only or writable randomly.
15201 @end table
15202
15203 @item seed
15204 Set the seed for the @var{random} mode, must be an integer included between
15205 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15206 @code{-1}, the filter will try to use a good random seed on a best effort
15207 basis.
15208 @end table
15209
15210 Note: in case of auto-inserted filter between the permission filter and the
15211 following one, the permission might not be received as expected in that
15212 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15213 perms/aperms filter can avoid this problem.
15214
15215 @section realtime, arealtime
15216
15217 Slow down filtering to match real time approximatively.
15218
15219 These filters will pause the filtering for a variable amount of time to
15220 match the output rate with the input timestamps.
15221 They are similar to the @option{re} option to @code{ffmpeg}.
15222
15223 They accept the following options:
15224
15225 @table @option
15226 @item limit
15227 Time limit for the pauses. Any pause longer than that will be considered
15228 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15229 @end table
15230
15231 @section select, aselect
15232
15233 Select frames to pass in output.
15234
15235 This filter accepts the following options:
15236
15237 @table @option
15238
15239 @item expr, e
15240 Set expression, which is evaluated for each input frame.
15241
15242 If the expression is evaluated to zero, the frame is discarded.
15243
15244 If the evaluation result is negative or NaN, the frame is sent to the
15245 first output; otherwise it is sent to the output with index
15246 @code{ceil(val)-1}, assuming that the input index starts from 0.
15247
15248 For example a value of @code{1.2} corresponds to the output with index
15249 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15250
15251 @item outputs, n
15252 Set the number of outputs. The output to which to send the selected
15253 frame is based on the result of the evaluation. Default value is 1.
15254 @end table
15255
15256 The expression can contain the following constants:
15257
15258 @table @option
15259 @item n
15260 The (sequential) number of the filtered frame, starting from 0.
15261
15262 @item selected_n
15263 The (sequential) number of the selected frame, starting from 0.
15264
15265 @item prev_selected_n
15266 The sequential number of the last selected frame. It's NAN if undefined.
15267
15268 @item TB
15269 The timebase of the input timestamps.
15270
15271 @item pts
15272 The PTS (Presentation TimeStamp) of the filtered video frame,
15273 expressed in @var{TB} units. It's NAN if undefined.
15274
15275 @item t
15276 The PTS of the filtered video frame,
15277 expressed in seconds. It's NAN if undefined.
15278
15279 @item prev_pts
15280 The PTS of the previously filtered video frame. It's NAN if undefined.
15281
15282 @item prev_selected_pts
15283 The PTS of the last previously filtered video frame. It's NAN if undefined.
15284
15285 @item prev_selected_t
15286 The PTS of the last previously selected video frame. It's NAN if undefined.
15287
15288 @item start_pts
15289 The PTS of the first video frame in the video. It's NAN if undefined.
15290
15291 @item start_t
15292 The time of the first video frame in the video. It's NAN if undefined.
15293
15294 @item pict_type @emph{(video only)}
15295 The type of the filtered frame. It can assume one of the following
15296 values:
15297 @table @option
15298 @item I
15299 @item P
15300 @item B
15301 @item S
15302 @item SI
15303 @item SP
15304 @item BI
15305 @end table
15306
15307 @item interlace_type @emph{(video only)}
15308 The frame interlace type. It can assume one of the following values:
15309 @table @option
15310 @item PROGRESSIVE
15311 The frame is progressive (not interlaced).
15312 @item TOPFIRST
15313 The frame is top-field-first.
15314 @item BOTTOMFIRST
15315 The frame is bottom-field-first.
15316 @end table
15317
15318 @item consumed_sample_n @emph{(audio only)}
15319 the number of selected samples before the current frame
15320
15321 @item samples_n @emph{(audio only)}
15322 the number of samples in the current frame
15323
15324 @item sample_rate @emph{(audio only)}
15325 the input sample rate
15326
15327 @item key
15328 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15329
15330 @item pos
15331 the position in the file of the filtered frame, -1 if the information
15332 is not available (e.g. for synthetic video)
15333
15334 @item scene @emph{(video only)}
15335 value between 0 and 1 to indicate a new scene; a low value reflects a low
15336 probability for the current frame to introduce a new scene, while a higher
15337 value means the current frame is more likely to be one (see the example below)
15338
15339 @item concatdec_select
15340 The concat demuxer can select only part of a concat input file by setting an
15341 inpoint and an outpoint, but the output packets may not be entirely contained
15342 in the selected interval. By using this variable, it is possible to skip frames
15343 generated by the concat demuxer which are not exactly contained in the selected
15344 interval.
15345
15346 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15347 and the @var{lavf.concat.duration} packet metadata values which are also
15348 present in the decoded frames.
15349
15350 The @var{concatdec_select} variable is -1 if the frame pts is at least
15351 start_time and either the duration metadata is missing or the frame pts is less
15352 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15353 missing.
15354
15355 That basically means that an input frame is selected if its pts is within the
15356 interval set by the concat demuxer.
15357
15358 @end table
15359
15360 The default value of the select expression is "1".
15361
15362 @subsection Examples
15363
15364 @itemize
15365 @item
15366 Select all frames in input:
15367 @example
15368 select
15369 @end example
15370
15371 The example above is the same as:
15372 @example
15373 select=1
15374 @end example
15375
15376 @item
15377 Skip all frames:
15378 @example
15379 select=0
15380 @end example
15381
15382 @item
15383 Select only I-frames:
15384 @example
15385 select='eq(pict_type\,I)'
15386 @end example
15387
15388 @item
15389 Select one frame every 100:
15390 @example
15391 select='not(mod(n\,100))'
15392 @end example
15393
15394 @item
15395 Select only frames contained in the 10-20 time interval:
15396 @example
15397 select=between(t\,10\,20)
15398 @end example
15399
15400 @item
15401 Select only I frames contained in the 10-20 time interval:
15402 @example
15403 select=between(t\,10\,20)*eq(pict_type\,I)
15404 @end example
15405
15406 @item
15407 Select frames with a minimum distance of 10 seconds:
15408 @example
15409 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15410 @end example
15411
15412 @item
15413 Use aselect to select only audio frames with samples number > 100:
15414 @example
15415 aselect='gt(samples_n\,100)'
15416 @end example
15417
15418 @item
15419 Create a mosaic of the first scenes:
15420 @example
15421 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15422 @end example
15423
15424 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15425 choice.
15426
15427 @item
15428 Send even and odd frames to separate outputs, and compose them:
15429 @example
15430 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15431 @end example
15432
15433 @item
15434 Select useful frames from an ffconcat file which is using inpoints and
15435 outpoints but where the source files are not intra frame only.
15436 @example
15437 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15438 @end example
15439 @end itemize
15440
15441 @section sendcmd, asendcmd
15442
15443 Send commands to filters in the filtergraph.
15444
15445 These filters read commands to be sent to other filters in the
15446 filtergraph.
15447
15448 @code{sendcmd} must be inserted between two video filters,
15449 @code{asendcmd} must be inserted between two audio filters, but apart
15450 from that they act the same way.
15451
15452 The specification of commands can be provided in the filter arguments
15453 with the @var{commands} option, or in a file specified by the
15454 @var{filename} option.
15455
15456 These filters accept the following options:
15457 @table @option
15458 @item commands, c
15459 Set the commands to be read and sent to the other filters.
15460 @item filename, f
15461 Set the filename of the commands to be read and sent to the other
15462 filters.
15463 @end table
15464
15465 @subsection Commands syntax
15466
15467 A commands description consists of a sequence of interval
15468 specifications, comprising a list of commands to be executed when a
15469 particular event related to that interval occurs. The occurring event
15470 is typically the current frame time entering or leaving a given time
15471 interval.
15472
15473 An interval is specified by the following syntax:
15474 @example
15475 @var{START}[-@var{END}] @var{COMMANDS};
15476 @end example
15477
15478 The time interval is specified by the @var{START} and @var{END} times.
15479 @var{END} is optional and defaults to the maximum time.
15480
15481 The current frame time is considered within the specified interval if
15482 it is included in the interval [@var{START}, @var{END}), that is when
15483 the time is greater or equal to @var{START} and is lesser than
15484 @var{END}.
15485
15486 @var{COMMANDS} consists of a sequence of one or more command
15487 specifications, separated by ",", relating to that interval.  The
15488 syntax of a command specification is given by:
15489 @example
15490 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15491 @end example
15492
15493 @var{FLAGS} is optional and specifies the type of events relating to
15494 the time interval which enable sending the specified command, and must
15495 be a non-null sequence of identifier flags separated by "+" or "|" and
15496 enclosed between "[" and "]".
15497
15498 The following flags are recognized:
15499 @table @option
15500 @item enter
15501 The command is sent when the current frame timestamp enters the
15502 specified interval. In other words, the command is sent when the
15503 previous frame timestamp was not in the given interval, and the
15504 current is.
15505
15506 @item leave
15507 The command is sent when the current frame timestamp leaves the
15508 specified interval. In other words, the command is sent when the
15509 previous frame timestamp was in the given interval, and the
15510 current is not.
15511 @end table
15512
15513 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15514 assumed.
15515
15516 @var{TARGET} specifies the target of the command, usually the name of
15517 the filter class or a specific filter instance name.
15518
15519 @var{COMMAND} specifies the name of the command for the target filter.
15520
15521 @var{ARG} is optional and specifies the optional list of argument for
15522 the given @var{COMMAND}.
15523
15524 Between one interval specification and another, whitespaces, or
15525 sequences of characters starting with @code{#} until the end of line,
15526 are ignored and can be used to annotate comments.
15527
15528 A simplified BNF description of the commands specification syntax
15529 follows:
15530 @example
15531 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15532 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15533 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15534 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15535 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15536 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15537 @end example
15538
15539 @subsection Examples
15540
15541 @itemize
15542 @item
15543 Specify audio tempo change at second 4:
15544 @example
15545 asendcmd=c='4.0 atempo tempo 1.5',atempo
15546 @end example
15547
15548 @item
15549 Specify a list of drawtext and hue commands in a file.
15550 @example
15551 # show text in the interval 5-10
15552 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15553          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15554
15555 # desaturate the image in the interval 15-20
15556 15.0-20.0 [enter] hue s 0,
15557           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
15558           [leave] hue s 1,
15559           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
15560
15561 # apply an exponential saturation fade-out effect, starting from time 25
15562 25 [enter] hue s exp(25-t)
15563 @end example
15564
15565 A filtergraph allowing to read and process the above command list
15566 stored in a file @file{test.cmd}, can be specified with:
15567 @example
15568 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
15569 @end example
15570 @end itemize
15571
15572 @anchor{setpts}
15573 @section setpts, asetpts
15574
15575 Change the PTS (presentation timestamp) of the input frames.
15576
15577 @code{setpts} works on video frames, @code{asetpts} on audio frames.
15578
15579 This filter accepts the following options:
15580
15581 @table @option
15582
15583 @item expr
15584 The expression which is evaluated for each frame to construct its timestamp.
15585
15586 @end table
15587
15588 The expression is evaluated through the eval API and can contain the following
15589 constants:
15590
15591 @table @option
15592 @item FRAME_RATE
15593 frame rate, only defined for constant frame-rate video
15594
15595 @item PTS
15596 The presentation timestamp in input
15597
15598 @item N
15599 The count of the input frame for video or the number of consumed samples,
15600 not including the current frame for audio, starting from 0.
15601
15602 @item NB_CONSUMED_SAMPLES
15603 The number of consumed samples, not including the current frame (only
15604 audio)
15605
15606 @item NB_SAMPLES, S
15607 The number of samples in the current frame (only audio)
15608
15609 @item SAMPLE_RATE, SR
15610 The audio sample rate.
15611
15612 @item STARTPTS
15613 The PTS of the first frame.
15614
15615 @item STARTT
15616 the time in seconds of the first frame
15617
15618 @item INTERLACED
15619 State whether the current frame is interlaced.
15620
15621 @item T
15622 the time in seconds of the current frame
15623
15624 @item POS
15625 original position in the file of the frame, or undefined if undefined
15626 for the current frame
15627
15628 @item PREV_INPTS
15629 The previous input PTS.
15630
15631 @item PREV_INT
15632 previous input time in seconds
15633
15634 @item PREV_OUTPTS
15635 The previous output PTS.
15636
15637 @item PREV_OUTT
15638 previous output time in seconds
15639
15640 @item RTCTIME
15641 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
15642 instead.
15643
15644 @item RTCSTART
15645 The wallclock (RTC) time at the start of the movie in microseconds.
15646
15647 @item TB
15648 The timebase of the input timestamps.
15649
15650 @end table
15651
15652 @subsection Examples
15653
15654 @itemize
15655 @item
15656 Start counting PTS from zero
15657 @example
15658 setpts=PTS-STARTPTS
15659 @end example
15660
15661 @item
15662 Apply fast motion effect:
15663 @example
15664 setpts=0.5*PTS
15665 @end example
15666
15667 @item
15668 Apply slow motion effect:
15669 @example
15670 setpts=2.0*PTS
15671 @end example
15672
15673 @item
15674 Set fixed rate of 25 frames per second:
15675 @example
15676 setpts=N/(25*TB)
15677 @end example
15678
15679 @item
15680 Set fixed rate 25 fps with some jitter:
15681 @example
15682 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
15683 @end example
15684
15685 @item
15686 Apply an offset of 10 seconds to the input PTS:
15687 @example
15688 setpts=PTS+10/TB
15689 @end example
15690
15691 @item
15692 Generate timestamps from a "live source" and rebase onto the current timebase:
15693 @example
15694 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
15695 @end example
15696
15697 @item
15698 Generate timestamps by counting samples:
15699 @example
15700 asetpts=N/SR/TB
15701 @end example
15702
15703 @end itemize
15704
15705 @section settb, asettb
15706
15707 Set the timebase to use for the output frames timestamps.
15708 It is mainly useful for testing timebase configuration.
15709
15710 It accepts the following parameters:
15711
15712 @table @option
15713
15714 @item expr, tb
15715 The expression which is evaluated into the output timebase.
15716
15717 @end table
15718
15719 The value for @option{tb} is an arithmetic expression representing a
15720 rational. The expression can contain the constants "AVTB" (the default
15721 timebase), "intb" (the input timebase) and "sr" (the sample rate,
15722 audio only). Default value is "intb".
15723
15724 @subsection Examples
15725
15726 @itemize
15727 @item
15728 Set the timebase to 1/25:
15729 @example
15730 settb=expr=1/25
15731 @end example
15732
15733 @item
15734 Set the timebase to 1/10:
15735 @example
15736 settb=expr=0.1
15737 @end example
15738
15739 @item
15740 Set the timebase to 1001/1000:
15741 @example
15742 settb=1+0.001
15743 @end example
15744
15745 @item
15746 Set the timebase to 2*intb:
15747 @example
15748 settb=2*intb
15749 @end example
15750
15751 @item
15752 Set the default timebase value:
15753 @example
15754 settb=AVTB
15755 @end example
15756 @end itemize
15757
15758 @section showcqt
15759 Convert input audio to a video output representing frequency spectrum
15760 logarithmically using Brown-Puckette constant Q transform algorithm with
15761 direct frequency domain coefficient calculation (but the transform itself
15762 is not really constant Q, instead the Q factor is actually variable/clamped),
15763 with musical tone scale, from E0 to D#10.
15764
15765 The filter accepts the following options:
15766
15767 @table @option
15768 @item size, s
15769 Specify the video size for the output. It must be even. For the syntax of this option,
15770 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15771 Default value is @code{1920x1080}.
15772
15773 @item fps, rate, r
15774 Set the output frame rate. Default value is @code{25}.
15775
15776 @item bar_h
15777 Set the bargraph height. It must be even. Default value is @code{-1} which
15778 computes the bargraph height automatically.
15779
15780 @item axis_h
15781 Set the axis height. It must be even. Default value is @code{-1} which computes
15782 the axis height automatically.
15783
15784 @item sono_h
15785 Set the sonogram height. It must be even. Default value is @code{-1} which
15786 computes the sonogram height automatically.
15787
15788 @item fullhd
15789 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
15790 instead. Default value is @code{1}.
15791
15792 @item sono_v, volume
15793 Specify the sonogram volume expression. It can contain variables:
15794 @table @option
15795 @item bar_v
15796 the @var{bar_v} evaluated expression
15797 @item frequency, freq, f
15798 the frequency where it is evaluated
15799 @item timeclamp, tc
15800 the value of @var{timeclamp} option
15801 @end table
15802 and functions:
15803 @table @option
15804 @item a_weighting(f)
15805 A-weighting of equal loudness
15806 @item b_weighting(f)
15807 B-weighting of equal loudness
15808 @item c_weighting(f)
15809 C-weighting of equal loudness.
15810 @end table
15811 Default value is @code{16}.
15812
15813 @item bar_v, volume2
15814 Specify the bargraph volume expression. It can contain variables:
15815 @table @option
15816 @item sono_v
15817 the @var{sono_v} evaluated expression
15818 @item frequency, freq, f
15819 the frequency where it is evaluated
15820 @item timeclamp, tc
15821 the value of @var{timeclamp} option
15822 @end table
15823 and functions:
15824 @table @option
15825 @item a_weighting(f)
15826 A-weighting of equal loudness
15827 @item b_weighting(f)
15828 B-weighting of equal loudness
15829 @item c_weighting(f)
15830 C-weighting of equal loudness.
15831 @end table
15832 Default value is @code{sono_v}.
15833
15834 @item sono_g, gamma
15835 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
15836 higher gamma makes the spectrum having more range. Default value is @code{3}.
15837 Acceptable range is @code{[1, 7]}.
15838
15839 @item bar_g, gamma2
15840 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
15841 @code{[1, 7]}.
15842
15843 @item timeclamp, tc
15844 Specify the transform timeclamp. At low frequency, there is trade-off between
15845 accuracy in time domain and frequency domain. If timeclamp is lower,
15846 event in time domain is represented more accurately (such as fast bass drum),
15847 otherwise event in frequency domain is represented more accurately
15848 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
15849
15850 @item basefreq
15851 Specify the transform base frequency. Default value is @code{20.01523126408007475},
15852 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
15853
15854 @item endfreq
15855 Specify the transform end frequency. Default value is @code{20495.59681441799654},
15856 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
15857
15858 @item coeffclamp
15859 This option is deprecated and ignored.
15860
15861 @item tlength
15862 Specify the transform length in time domain. Use this option to control accuracy
15863 trade-off between time domain and frequency domain at every frequency sample.
15864 It can contain variables:
15865 @table @option
15866 @item frequency, freq, f
15867 the frequency where it is evaluated
15868 @item timeclamp, tc
15869 the value of @var{timeclamp} option.
15870 @end table
15871 Default value is @code{384*tc/(384+tc*f)}.
15872
15873 @item count
15874 Specify the transform count for every video frame. Default value is @code{6}.
15875 Acceptable range is @code{[1, 30]}.
15876
15877 @item fcount
15878 Specify the transform count for every single pixel. Default value is @code{0},
15879 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
15880
15881 @item fontfile
15882 Specify font file for use with freetype to draw the axis. If not specified,
15883 use embedded font. Note that drawing with font file or embedded font is not
15884 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
15885 option instead.
15886
15887 @item fontcolor
15888 Specify font color expression. This is arithmetic expression that should return
15889 integer value 0xRRGGBB. It can contain variables:
15890 @table @option
15891 @item frequency, freq, f
15892 the frequency where it is evaluated
15893 @item timeclamp, tc
15894 the value of @var{timeclamp} option
15895 @end table
15896 and functions:
15897 @table @option
15898 @item midi(f)
15899 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
15900 @item r(x), g(x), b(x)
15901 red, green, and blue value of intensity x.
15902 @end table
15903 Default value is @code{st(0, (midi(f)-59.5)/12);
15904 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
15905 r(1-ld(1)) + b(ld(1))}.
15906
15907 @item axisfile
15908 Specify image file to draw the axis. This option override @var{fontfile} and
15909 @var{fontcolor} option.
15910
15911 @item axis, text
15912 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
15913 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
15914 Default value is @code{1}.
15915
15916 @end table
15917
15918 @subsection Examples
15919
15920 @itemize
15921 @item
15922 Playing audio while showing the spectrum:
15923 @example
15924 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
15925 @end example
15926
15927 @item
15928 Same as above, but with frame rate 30 fps:
15929 @example
15930 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
15931 @end example
15932
15933 @item
15934 Playing at 1280x720:
15935 @example
15936 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
15937 @end example
15938
15939 @item
15940 Disable sonogram display:
15941 @example
15942 sono_h=0
15943 @end example
15944
15945 @item
15946 A1 and its harmonics: A1, A2, (near)E3, A3:
15947 @example
15948 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),
15949                  asplit[a][out1]; [a] showcqt [out0]'
15950 @end example
15951
15952 @item
15953 Same as above, but with more accuracy in frequency domain:
15954 @example
15955 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),
15956                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
15957 @end example
15958
15959 @item
15960 Custom volume:
15961 @example
15962 bar_v=10:sono_v=bar_v*a_weighting(f)
15963 @end example
15964
15965 @item
15966 Custom gamma, now spectrum is linear to the amplitude.
15967 @example
15968 bar_g=2:sono_g=2
15969 @end example
15970
15971 @item
15972 Custom tlength equation:
15973 @example
15974 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)))'
15975 @end example
15976
15977 @item
15978 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
15979 @example
15980 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
15981 @end example
15982
15983 @item
15984 Custom frequency range with custom axis using image file:
15985 @example
15986 axisfile=myaxis.png:basefreq=40:endfreq=10000
15987 @end example
15988 @end itemize
15989
15990 @section showfreqs
15991
15992 Convert input audio to video output representing the audio power spectrum.
15993 Audio amplitude is on Y-axis while frequency is on X-axis.
15994
15995 The filter accepts the following options:
15996
15997 @table @option
15998 @item size, s
15999 Specify size of video. For the syntax of this option, check the
16000 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16001 Default is @code{1024x512}.
16002
16003 @item mode
16004 Set display mode.
16005 This set how each frequency bin will be represented.
16006
16007 It accepts the following values:
16008 @table @samp
16009 @item line
16010 @item bar
16011 @item dot
16012 @end table
16013 Default is @code{bar}.
16014
16015 @item ascale
16016 Set amplitude scale.
16017
16018 It accepts the following values:
16019 @table @samp
16020 @item lin
16021 Linear scale.
16022
16023 @item sqrt
16024 Square root scale.
16025
16026 @item cbrt
16027 Cubic root scale.
16028
16029 @item log
16030 Logarithmic scale.
16031 @end table
16032 Default is @code{log}.
16033
16034 @item fscale
16035 Set frequency scale.
16036
16037 It accepts the following values:
16038 @table @samp
16039 @item lin
16040 Linear scale.
16041
16042 @item log
16043 Logarithmic scale.
16044
16045 @item rlog
16046 Reverse logarithmic scale.
16047 @end table
16048 Default is @code{lin}.
16049
16050 @item win_size
16051 Set window size.
16052
16053 It accepts the following values:
16054 @table @samp
16055 @item w16
16056 @item w32
16057 @item w64
16058 @item w128
16059 @item w256
16060 @item w512
16061 @item w1024
16062 @item w2048
16063 @item w4096
16064 @item w8192
16065 @item w16384
16066 @item w32768
16067 @item w65536
16068 @end table
16069 Default is @code{w2048}
16070
16071 @item win_func
16072 Set windowing function.
16073
16074 It accepts the following values:
16075 @table @samp
16076 @item rect
16077 @item bartlett
16078 @item hanning
16079 @item hamming
16080 @item blackman
16081 @item welch
16082 @item flattop
16083 @item bharris
16084 @item bnuttall
16085 @item bhann
16086 @item sine
16087 @item nuttall
16088 @item lanczos
16089 @item gauss
16090 @item tukey
16091 @end table
16092 Default is @code{hanning}.
16093
16094 @item overlap
16095 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16096 which means optimal overlap for selected window function will be picked.
16097
16098 @item averaging
16099 Set time averaging. Setting this to 0 will display current maximal peaks.
16100 Default is @code{1}, which means time averaging is disabled.
16101
16102 @item colors
16103 Specify list of colors separated by space or by '|' which will be used to
16104 draw channel frequencies. Unrecognized or missing colors will be replaced
16105 by white color.
16106
16107 @item cmode
16108 Set channel display mode.
16109
16110 It accepts the following values:
16111 @table @samp
16112 @item combined
16113 @item separate
16114 @end table
16115 Default is @code{combined}.
16116
16117 @end table
16118
16119 @anchor{showspectrum}
16120 @section showspectrum
16121
16122 Convert input audio to a video output, representing the audio frequency
16123 spectrum.
16124
16125 The filter accepts the following options:
16126
16127 @table @option
16128 @item size, s
16129 Specify the video size for the output. For the syntax of this option, check the
16130 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16131 Default value is @code{640x512}.
16132
16133 @item slide
16134 Specify how the spectrum should slide along the window.
16135
16136 It accepts the following values:
16137 @table @samp
16138 @item replace
16139 the samples start again on the left when they reach the right
16140 @item scroll
16141 the samples scroll from right to left
16142 @item rscroll
16143 the samples scroll from left to right
16144 @item fullframe
16145 frames are only produced when the samples reach the right
16146 @end table
16147
16148 Default value is @code{replace}.
16149
16150 @item mode
16151 Specify display mode.
16152
16153 It accepts the following values:
16154 @table @samp
16155 @item combined
16156 all channels are displayed in the same row
16157 @item separate
16158 all channels are displayed in separate rows
16159 @end table
16160
16161 Default value is @samp{combined}.
16162
16163 @item color
16164 Specify display color mode.
16165
16166 It accepts the following values:
16167 @table @samp
16168 @item channel
16169 each channel is displayed in a separate color
16170 @item intensity
16171 each channel is displayed using the same color scheme
16172 @item rainbow
16173 each channel is displayed using the rainbow color scheme
16174 @item moreland
16175 each channel is displayed using the moreland color scheme
16176 @item nebulae
16177 each channel is displayed using the nebulae color scheme
16178 @item fire
16179 each channel is displayed using the fire color scheme
16180 @item fiery
16181 each channel is displayed using the fiery color scheme
16182 @item fruit
16183 each channel is displayed using the fruit color scheme
16184 @item cool
16185 each channel is displayed using the cool color scheme
16186 @end table
16187
16188 Default value is @samp{channel}.
16189
16190 @item scale
16191 Specify scale used for calculating intensity color values.
16192
16193 It accepts the following values:
16194 @table @samp
16195 @item lin
16196 linear
16197 @item sqrt
16198 square root, default
16199 @item cbrt
16200 cubic root
16201 @item 4thrt
16202 4th root
16203 @item 5thrt
16204 5th root
16205 @item log
16206 logarithmic
16207 @end table
16208
16209 Default value is @samp{sqrt}.
16210
16211 @item saturation
16212 Set saturation modifier for displayed colors. Negative values provide
16213 alternative color scheme. @code{0} is no saturation at all.
16214 Saturation must be in [-10.0, 10.0] range.
16215 Default value is @code{1}.
16216
16217 @item win_func
16218 Set window function.
16219
16220 It accepts the following values:
16221 @table @samp
16222 @item rect
16223 @item bartlett
16224 @item hann
16225 @item hanning
16226 @item hamming
16227 @item blackman
16228 @item welch
16229 @item flattop
16230 @item bharris
16231 @item bnuttall
16232 @item bhann
16233 @item sine
16234 @item nuttall
16235 @item lanczos
16236 @item gauss
16237 @item tukey
16238 @end table
16239
16240 Default value is @code{hann}.
16241
16242 @item orientation
16243 Set orientation of time vs frequency axis. Can be @code{vertical} or
16244 @code{horizontal}. Default is @code{vertical}.
16245
16246 @item overlap
16247 Set ratio of overlap window. Default value is @code{0}.
16248 When value is @code{1} overlap is set to recommended size for specific
16249 window function currently used.
16250
16251 @item gain
16252 Set scale gain for calculating intensity color values.
16253 Default value is @code{1}.
16254
16255 @item data
16256 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16257 @end table
16258
16259 The usage is very similar to the showwaves filter; see the examples in that
16260 section.
16261
16262 @subsection Examples
16263
16264 @itemize
16265 @item
16266 Large window with logarithmic color scaling:
16267 @example
16268 showspectrum=s=1280x480:scale=log
16269 @end example
16270
16271 @item
16272 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16273 @example
16274 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16275              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16276 @end example
16277 @end itemize
16278
16279 @section showspectrumpic
16280
16281 Convert input audio to a single video frame, representing the audio frequency
16282 spectrum.
16283
16284 The filter accepts the following options:
16285
16286 @table @option
16287 @item size, s
16288 Specify the video size for the output. For the syntax of this option, check the
16289 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16290 Default value is @code{4096x2048}.
16291
16292 @item mode
16293 Specify display mode.
16294
16295 It accepts the following values:
16296 @table @samp
16297 @item combined
16298 all channels are displayed in the same row
16299 @item separate
16300 all channels are displayed in separate rows
16301 @end table
16302 Default value is @samp{combined}.
16303
16304 @item color
16305 Specify display color mode.
16306
16307 It accepts the following values:
16308 @table @samp
16309 @item channel
16310 each channel is displayed in a separate color
16311 @item intensity
16312 each channel is displayed using the same color scheme
16313 @item rainbow
16314 each channel is displayed using the rainbow color scheme
16315 @item moreland
16316 each channel is displayed using the moreland color scheme
16317 @item nebulae
16318 each channel is displayed using the nebulae color scheme
16319 @item fire
16320 each channel is displayed using the fire color scheme
16321 @item fiery
16322 each channel is displayed using the fiery color scheme
16323 @item fruit
16324 each channel is displayed using the fruit color scheme
16325 @item cool
16326 each channel is displayed using the cool color scheme
16327 @end table
16328 Default value is @samp{intensity}.
16329
16330 @item scale
16331 Specify scale used for calculating intensity color values.
16332
16333 It accepts the following values:
16334 @table @samp
16335 @item lin
16336 linear
16337 @item sqrt
16338 square root, default
16339 @item cbrt
16340 cubic root
16341 @item 4thrt
16342 4th root
16343 @item 5thrt
16344 5th root
16345 @item log
16346 logarithmic
16347 @end table
16348 Default value is @samp{log}.
16349
16350 @item saturation
16351 Set saturation modifier for displayed colors. Negative values provide
16352 alternative color scheme. @code{0} is no saturation at all.
16353 Saturation must be in [-10.0, 10.0] range.
16354 Default value is @code{1}.
16355
16356 @item win_func
16357 Set window function.
16358
16359 It accepts the following values:
16360 @table @samp
16361 @item rect
16362 @item bartlett
16363 @item hann
16364 @item hanning
16365 @item hamming
16366 @item blackman
16367 @item welch
16368 @item flattop
16369 @item bharris
16370 @item bnuttall
16371 @item bhann
16372 @item sine
16373 @item nuttall
16374 @item lanczos
16375 @item gauss
16376 @item tukey
16377 @end table
16378 Default value is @code{hann}.
16379
16380 @item orientation
16381 Set orientation of time vs frequency axis. Can be @code{vertical} or
16382 @code{horizontal}. Default is @code{vertical}.
16383
16384 @item gain
16385 Set scale gain for calculating intensity color values.
16386 Default value is @code{1}.
16387
16388 @item legend
16389 Draw time and frequency axes and legends. Default is enabled.
16390 @end table
16391
16392 @subsection Examples
16393
16394 @itemize
16395 @item
16396 Extract an audio spectrogram of a whole audio track
16397 in a 1024x1024 picture using @command{ffmpeg}:
16398 @example
16399 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16400 @end example
16401 @end itemize
16402
16403 @section showvolume
16404
16405 Convert input audio volume to a video output.
16406
16407 The filter accepts the following options:
16408
16409 @table @option
16410 @item rate, r
16411 Set video rate.
16412
16413 @item b
16414 Set border width, allowed range is [0, 5]. Default is 1.
16415
16416 @item w
16417 Set channel width, allowed range is [80, 8192]. Default is 400.
16418
16419 @item h
16420 Set channel height, allowed range is [1, 900]. Default is 20.
16421
16422 @item f
16423 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16424
16425 @item c
16426 Set volume color expression.
16427
16428 The expression can use the following variables:
16429
16430 @table @option
16431 @item VOLUME
16432 Current max volume of channel in dB.
16433
16434 @item CHANNEL
16435 Current channel number, starting from 0.
16436 @end table
16437
16438 @item t
16439 If set, displays channel names. Default is enabled.
16440
16441 @item v
16442 If set, displays volume values. Default is enabled.
16443
16444 @item o
16445 Set orientation, can be @code{horizontal} or @code{vertical},
16446 default is @code{horizontal}.
16447
16448 @item s
16449 Set step size, allowed range s [0, 5]. Default is 0, which means
16450 step is disabled.
16451 @end table
16452
16453 @section showwaves
16454
16455 Convert input audio to a video output, representing the samples waves.
16456
16457 The filter accepts the following options:
16458
16459 @table @option
16460 @item size, s
16461 Specify the video size for the output. For the syntax of this option, check the
16462 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16463 Default value is @code{600x240}.
16464
16465 @item mode
16466 Set display mode.
16467
16468 Available values are:
16469 @table @samp
16470 @item point
16471 Draw a point for each sample.
16472
16473 @item line
16474 Draw a vertical line for each sample.
16475
16476 @item p2p
16477 Draw a point for each sample and a line between them.
16478
16479 @item cline
16480 Draw a centered vertical line for each sample.
16481 @end table
16482
16483 Default value is @code{point}.
16484
16485 @item n
16486 Set the number of samples which are printed on the same column. A
16487 larger value will decrease the frame rate. Must be a positive
16488 integer. This option can be set only if the value for @var{rate}
16489 is not explicitly specified.
16490
16491 @item rate, r
16492 Set the (approximate) output frame rate. This is done by setting the
16493 option @var{n}. Default value is "25".
16494
16495 @item split_channels
16496 Set if channels should be drawn separately or overlap. Default value is 0.
16497
16498 @item colors
16499 Set colors separated by '|' which are going to be used for drawing of each channel.
16500
16501 @item scale
16502 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16503 Default is linear.
16504
16505 @end table
16506
16507 @subsection Examples
16508
16509 @itemize
16510 @item
16511 Output the input file audio and the corresponding video representation
16512 at the same time:
16513 @example
16514 amovie=a.mp3,asplit[out0],showwaves[out1]
16515 @end example
16516
16517 @item
16518 Create a synthetic signal and show it with showwaves, forcing a
16519 frame rate of 30 frames per second:
16520 @example
16521 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
16522 @end example
16523 @end itemize
16524
16525 @section showwavespic
16526
16527 Convert input audio to a single video frame, representing the samples waves.
16528
16529 The filter accepts the following options:
16530
16531 @table @option
16532 @item size, s
16533 Specify the video size for the output. For the syntax of this option, check the
16534 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16535 Default value is @code{600x240}.
16536
16537 @item split_channels
16538 Set if channels should be drawn separately or overlap. Default value is 0.
16539
16540 @item colors
16541 Set colors separated by '|' which are going to be used for drawing of each channel.
16542
16543 @item scale
16544 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16545 Default is linear.
16546 @end table
16547
16548 @subsection Examples
16549
16550 @itemize
16551 @item
16552 Extract a channel split representation of the wave form of a whole audio track
16553 in a 1024x800 picture using @command{ffmpeg}:
16554 @example
16555 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
16556 @end example
16557
16558 @item
16559 Colorize the waveform with colorchannelmixer. This example will make
16560 the waveform a green color approximately RGB(66,217,150). Additional
16561 channels will be shades of this color.
16562 @example
16563 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
16564 @end example
16565 @end itemize
16566
16567 @section spectrumsynth
16568
16569 Sythesize audio from 2 input video spectrums, first input stream represents
16570 magnitude across time and second represents phase across time.
16571 The filter will transform from frequency domain as displayed in videos back
16572 to time domain as presented in audio output.
16573
16574 This filter is primarly created for reversing processed @ref{showspectrum}
16575 filter outputs, but can synthesize sound from other spectrograms too.
16576 But in such case results are going to be poor if the phase data is not
16577 available, because in such cases phase data need to be recreated, usually
16578 its just recreated from random noise.
16579 For best results use gray only output (@code{channel} color mode in
16580 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
16581 @code{lin} scale for phase video. To produce phase, for 2nd video, use
16582 @code{data} option. Inputs videos should generally use @code{fullframe}
16583 slide mode as that saves resources needed for decoding video.
16584
16585 The filter accepts the following options:
16586
16587 @table @option
16588 @item sample_rate
16589 Specify sample rate of output audio, the sample rate of audio from which
16590 spectrum was generated may differ.
16591
16592 @item channels
16593 Set number of channels represented in input video spectrums.
16594
16595 @item scale
16596 Set scale which was used when generating magnitude input spectrum.
16597 Can be @code{lin} or @code{log}. Default is @code{log}.
16598
16599 @item slide
16600 Set slide which was used when generating inputs spectrums.
16601 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
16602 Default is @code{fullframe}.
16603
16604 @item win_func
16605 Set window function used for resynthesis.
16606
16607 @item overlap
16608 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16609 which means optimal overlap for selected window function will be picked.
16610
16611 @item orientation
16612 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
16613 Default is @code{vertical}.
16614 @end table
16615
16616 @subsection Examples
16617
16618 @itemize
16619 @item
16620 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
16621 then resynthesize videos back to audio with spectrumsynth:
16622 @example
16623 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
16624 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
16625 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
16626 @end example
16627 @end itemize
16628
16629 @section split, asplit
16630
16631 Split input into several identical outputs.
16632
16633 @code{asplit} works with audio input, @code{split} with video.
16634
16635 The filter accepts a single parameter which specifies the number of outputs. If
16636 unspecified, it defaults to 2.
16637
16638 @subsection Examples
16639
16640 @itemize
16641 @item
16642 Create two separate outputs from the same input:
16643 @example
16644 [in] split [out0][out1]
16645 @end example
16646
16647 @item
16648 To create 3 or more outputs, you need to specify the number of
16649 outputs, like in:
16650 @example
16651 [in] asplit=3 [out0][out1][out2]
16652 @end example
16653
16654 @item
16655 Create two separate outputs from the same input, one cropped and
16656 one padded:
16657 @example
16658 [in] split [splitout1][splitout2];
16659 [splitout1] crop=100:100:0:0    [cropout];
16660 [splitout2] pad=200:200:100:100 [padout];
16661 @end example
16662
16663 @item
16664 Create 5 copies of the input audio with @command{ffmpeg}:
16665 @example
16666 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
16667 @end example
16668 @end itemize
16669
16670 @section zmq, azmq
16671
16672 Receive commands sent through a libzmq client, and forward them to
16673 filters in the filtergraph.
16674
16675 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
16676 must be inserted between two video filters, @code{azmq} between two
16677 audio filters.
16678
16679 To enable these filters you need to install the libzmq library and
16680 headers and configure FFmpeg with @code{--enable-libzmq}.
16681
16682 For more information about libzmq see:
16683 @url{http://www.zeromq.org/}
16684
16685 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
16686 receives messages sent through a network interface defined by the
16687 @option{bind_address} option.
16688
16689 The received message must be in the form:
16690 @example
16691 @var{TARGET} @var{COMMAND} [@var{ARG}]
16692 @end example
16693
16694 @var{TARGET} specifies the target of the command, usually the name of
16695 the filter class or a specific filter instance name.
16696
16697 @var{COMMAND} specifies the name of the command for the target filter.
16698
16699 @var{ARG} is optional and specifies the optional argument list for the
16700 given @var{COMMAND}.
16701
16702 Upon reception, the message is processed and the corresponding command
16703 is injected into the filtergraph. Depending on the result, the filter
16704 will send a reply to the client, adopting the format:
16705 @example
16706 @var{ERROR_CODE} @var{ERROR_REASON}
16707 @var{MESSAGE}
16708 @end example
16709
16710 @var{MESSAGE} is optional.
16711
16712 @subsection Examples
16713
16714 Look at @file{tools/zmqsend} for an example of a zmq client which can
16715 be used to send commands processed by these filters.
16716
16717 Consider the following filtergraph generated by @command{ffplay}
16718 @example
16719 ffplay -dumpgraph 1 -f lavfi "
16720 color=s=100x100:c=red  [l];
16721 color=s=100x100:c=blue [r];
16722 nullsrc=s=200x100, zmq [bg];
16723 [bg][l]   overlay      [bg+l];
16724 [bg+l][r] overlay=x=100 "
16725 @end example
16726
16727 To change the color of the left side of the video, the following
16728 command can be used:
16729 @example
16730 echo Parsed_color_0 c yellow | tools/zmqsend
16731 @end example
16732
16733 To change the right side:
16734 @example
16735 echo Parsed_color_1 c pink | tools/zmqsend
16736 @end example
16737
16738 @c man end MULTIMEDIA FILTERS
16739
16740 @chapter Multimedia Sources
16741 @c man begin MULTIMEDIA SOURCES
16742
16743 Below is a description of the currently available multimedia sources.
16744
16745 @section amovie
16746
16747 This is the same as @ref{movie} source, except it selects an audio
16748 stream by default.
16749
16750 @anchor{movie}
16751 @section movie
16752
16753 Read audio and/or video stream(s) from a movie container.
16754
16755 It accepts the following parameters:
16756
16757 @table @option
16758 @item filename
16759 The name of the resource to read (not necessarily a file; it can also be a
16760 device or a stream accessed through some protocol).
16761
16762 @item format_name, f
16763 Specifies the format assumed for the movie to read, and can be either
16764 the name of a container or an input device. If not specified, the
16765 format is guessed from @var{movie_name} or by probing.
16766
16767 @item seek_point, sp
16768 Specifies the seek point in seconds. The frames will be output
16769 starting from this seek point. The parameter is evaluated with
16770 @code{av_strtod}, so the numerical value may be suffixed by an IS
16771 postfix. The default value is "0".
16772
16773 @item streams, s
16774 Specifies the streams to read. Several streams can be specified,
16775 separated by "+". The source will then have as many outputs, in the
16776 same order. The syntax is explained in the ``Stream specifiers''
16777 section in the ffmpeg manual. Two special names, "dv" and "da" specify
16778 respectively the default (best suited) video and audio stream. Default
16779 is "dv", or "da" if the filter is called as "amovie".
16780
16781 @item stream_index, si
16782 Specifies the index of the video stream to read. If the value is -1,
16783 the most suitable video stream will be automatically selected. The default
16784 value is "-1". Deprecated. If the filter is called "amovie", it will select
16785 audio instead of video.
16786
16787 @item loop
16788 Specifies how many times to read the stream in sequence.
16789 If the value is less than 1, the stream will be read again and again.
16790 Default value is "1".
16791
16792 Note that when the movie is looped the source timestamps are not
16793 changed, so it will generate non monotonically increasing timestamps.
16794 @end table
16795
16796 It allows overlaying a second video on top of the main input of
16797 a filtergraph, as shown in this graph:
16798 @example
16799 input -----------> deltapts0 --> overlay --> output
16800                                     ^
16801                                     |
16802 movie --> scale--> deltapts1 -------+
16803 @end example
16804 @subsection Examples
16805
16806 @itemize
16807 @item
16808 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
16809 on top of the input labelled "in":
16810 @example
16811 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
16812 [in] setpts=PTS-STARTPTS [main];
16813 [main][over] overlay=16:16 [out]
16814 @end example
16815
16816 @item
16817 Read from a video4linux2 device, and overlay it on top of the input
16818 labelled "in":
16819 @example
16820 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
16821 [in] setpts=PTS-STARTPTS [main];
16822 [main][over] overlay=16:16 [out]
16823 @end example
16824
16825 @item
16826 Read the first video stream and the audio stream with id 0x81 from
16827 dvd.vob; the video is connected to the pad named "video" and the audio is
16828 connected to the pad named "audio":
16829 @example
16830 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
16831 @end example
16832 @end itemize
16833
16834 @c man end MULTIMEDIA SOURCES