]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avformat/avio: Limit url option parsing to the documented cases
[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 @anchor{aformat}
737 @section aformat
738
739 Set output format constraints for the input audio. The framework will
740 negotiate the most appropriate format to minimize conversions.
741
742 It accepts the following parameters:
743 @table @option
744
745 @item sample_fmts
746 A '|'-separated list of requested sample formats.
747
748 @item sample_rates
749 A '|'-separated list of requested sample rates.
750
751 @item channel_layouts
752 A '|'-separated list of requested channel layouts.
753
754 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
755 for the required syntax.
756 @end table
757
758 If a parameter is omitted, all values are allowed.
759
760 Force the output to either unsigned 8-bit or signed 16-bit stereo
761 @example
762 aformat=sample_fmts=u8|s16:channel_layouts=stereo
763 @end example
764
765 @section agate
766
767 A gate is mainly used to reduce lower parts of a signal. This kind of signal
768 processing reduces disturbing noise between useful signals.
769
770 Gating is done by detecting the volume below a chosen level @var{threshold}
771 and divide it by the factor set with @var{ratio}. The bottom of the noise
772 floor is set via @var{range}. Because an exact manipulation of the signal
773 would cause distortion of the waveform the reduction can be levelled over
774 time. This is done by setting @var{attack} and @var{release}.
775
776 @var{attack} determines how long the signal has to fall below the threshold
777 before any reduction will occur and @var{release} sets the time the signal
778 has to raise above the threshold to reduce the reduction again.
779 Shorter signals than the chosen attack time will be left untouched.
780
781 @table @option
782 @item level_in
783 Set input level before filtering.
784 Default is 1. Allowed range is from 0.015625 to 64.
785
786 @item range
787 Set the level of gain reduction when the signal is below the threshold.
788 Default is 0.06125. Allowed range is from 0 to 1.
789
790 @item threshold
791 If a signal rises above this level the gain reduction is released.
792 Default is 0.125. Allowed range is from 0 to 1.
793
794 @item ratio
795 Set a ratio about which the signal is reduced.
796 Default is 2. Allowed range is from 1 to 9000.
797
798 @item attack
799 Amount of milliseconds the signal has to rise above the threshold before gain
800 reduction stops.
801 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
802
803 @item release
804 Amount of milliseconds the signal has to fall below the threshold before the
805 reduction is increased again. Default is 250 milliseconds.
806 Allowed range is from 0.01 to 9000.
807
808 @item makeup
809 Set amount of amplification of signal after processing.
810 Default is 1. Allowed range is from 1 to 64.
811
812 @item knee
813 Curve the sharp knee around the threshold to enter gain reduction more softly.
814 Default is 2.828427125. Allowed range is from 1 to 8.
815
816 @item detection
817 Choose if exact signal should be taken for detection or an RMS like one.
818 Default is rms. Can be peak or rms.
819
820 @item link
821 Choose if the average level between all channels or the louder channel affects
822 the reduction.
823 Default is average. Can be average or maximum.
824 @end table
825
826 @section alimiter
827
828 The limiter prevents input signal from raising over a desired threshold.
829 This limiter uses lookahead technology to prevent your signal from distorting.
830 It means that there is a small delay after signal is processed. Keep in mind
831 that the delay it produces is the attack time you set.
832
833 The filter accepts the following options:
834
835 @table @option
836 @item level_in
837 Set input gain. Default is 1.
838
839 @item level_out
840 Set output gain. Default is 1.
841
842 @item limit
843 Don't let signals above this level pass the limiter. Default is 1.
844
845 @item attack
846 The limiter will reach its attenuation level in this amount of time in
847 milliseconds. Default is 5 milliseconds.
848
849 @item release
850 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
851 Default is 50 milliseconds.
852
853 @item asc
854 When gain reduction is always needed ASC takes care of releasing to an
855 average reduction level rather than reaching a reduction of 0 in the release
856 time.
857
858 @item asc_level
859 Select how much the release time is affected by ASC, 0 means nearly no changes
860 in release time while 1 produces higher release times.
861
862 @item level
863 Auto level output signal. Default is enabled.
864 This normalizes audio back to 0dB if enabled.
865 @end table
866
867 Depending on picked setting it is recommended to upsample input 2x or 4x times
868 with @ref{aresample} before applying this filter.
869
870 @section allpass
871
872 Apply a two-pole all-pass filter with central frequency (in Hz)
873 @var{frequency}, and filter-width @var{width}.
874 An all-pass filter changes the audio's frequency to phase relationship
875 without changing its frequency to amplitude relationship.
876
877 The filter accepts the following options:
878
879 @table @option
880 @item frequency, f
881 Set frequency in Hz.
882
883 @item width_type
884 Set method to specify band-width of filter.
885 @table @option
886 @item h
887 Hz
888 @item q
889 Q-Factor
890 @item o
891 octave
892 @item s
893 slope
894 @end table
895
896 @item width, w
897 Specify the band-width of a filter in width_type units.
898 @end table
899
900 @anchor{amerge}
901 @section amerge
902
903 Merge two or more audio streams into a single multi-channel stream.
904
905 The filter accepts the following options:
906
907 @table @option
908
909 @item inputs
910 Set the number of inputs. Default is 2.
911
912 @end table
913
914 If the channel layouts of the inputs are disjoint, and therefore compatible,
915 the channel layout of the output will be set accordingly and the channels
916 will be reordered as necessary. If the channel layouts of the inputs are not
917 disjoint, the output will have all the channels of the first input then all
918 the channels of the second input, in that order, and the channel layout of
919 the output will be the default value corresponding to the total number of
920 channels.
921
922 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
923 is FC+BL+BR, then the output will be in 5.1, with the channels in the
924 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
925 first input, b1 is the first channel of the second input).
926
927 On the other hand, if both input are in stereo, the output channels will be
928 in the default order: a1, a2, b1, b2, and the channel layout will be
929 arbitrarily set to 4.0, which may or may not be the expected value.
930
931 All inputs must have the same sample rate, and format.
932
933 If inputs do not have the same duration, the output will stop with the
934 shortest.
935
936 @subsection Examples
937
938 @itemize
939 @item
940 Merge two mono files into a stereo stream:
941 @example
942 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
943 @end example
944
945 @item
946 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
947 @example
948 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
949 @end example
950 @end itemize
951
952 @section amix
953
954 Mixes multiple audio inputs into a single output.
955
956 Note that this filter only supports float samples (the @var{amerge}
957 and @var{pan} audio filters support many formats). If the @var{amix}
958 input has integer samples then @ref{aresample} will be automatically
959 inserted to perform the conversion to float samples.
960
961 For example
962 @example
963 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
964 @end example
965 will mix 3 input audio streams to a single output with the same duration as the
966 first input and a dropout transition time of 3 seconds.
967
968 It accepts the following parameters:
969 @table @option
970
971 @item inputs
972 The number of inputs. If unspecified, it defaults to 2.
973
974 @item duration
975 How to determine the end-of-stream.
976 @table @option
977
978 @item longest
979 The duration of the longest input. (default)
980
981 @item shortest
982 The duration of the shortest input.
983
984 @item first
985 The duration of the first input.
986
987 @end table
988
989 @item dropout_transition
990 The transition time, in seconds, for volume renormalization when an input
991 stream ends. The default value is 2 seconds.
992
993 @end table
994
995 @section anequalizer
996
997 High-order parametric multiband equalizer for each channel.
998
999 It accepts the following parameters:
1000 @table @option
1001 @item params
1002
1003 This option string is in format:
1004 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1005 Each equalizer band is separated by '|'.
1006
1007 @table @option
1008 @item chn
1009 Set channel number to which equalization will be applied.
1010 If input doesn't have that channel the entry is ignored.
1011
1012 @item cf
1013 Set central frequency for band.
1014 If input doesn't have that frequency the entry is ignored.
1015
1016 @item w
1017 Set band width in hertz.
1018
1019 @item g
1020 Set band gain in dB.
1021
1022 @item f
1023 Set filter type for band, optional, can be:
1024
1025 @table @samp
1026 @item 0
1027 Butterworth, this is default.
1028
1029 @item 1
1030 Chebyshev type 1.
1031
1032 @item 2
1033 Chebyshev type 2.
1034 @end table
1035 @end table
1036
1037 @item curves
1038 With this option activated frequency response of anequalizer is displayed
1039 in video stream.
1040
1041 @item size
1042 Set video stream size. Only useful if curves option is activated.
1043
1044 @item mgain
1045 Set max gain that will be displayed. Only useful if curves option is activated.
1046 Setting this to reasonable value allows to display gain which is derived from
1047 neighbour bands which are too close to each other and thus produce higher gain
1048 when both are activated.
1049
1050 @item fscale
1051 Set frequency scale used to draw frequency response in video output.
1052 Can be linear or logarithmic. Default is logarithmic.
1053
1054 @item colors
1055 Set color for each channel curve which is going to be displayed in video stream.
1056 This is list of color names separated by space or by '|'.
1057 Unrecognised or missing colors will be replaced by white color.
1058 @end table
1059
1060 @subsection Examples
1061
1062 @itemize
1063 @item
1064 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1065 for first 2 channels using Chebyshev type 1 filter:
1066 @example
1067 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1068 @end example
1069 @end itemize
1070
1071 @subsection Commands
1072
1073 This filter supports the following commands:
1074 @table @option
1075 @item change
1076 Alter existing filter parameters.
1077 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1078
1079 @var{fN} is existing filter number, starting from 0, if no such filter is available
1080 error is returned.
1081 @var{freq} set new frequency parameter.
1082 @var{width} set new width parameter in herz.
1083 @var{gain} set new gain parameter in dB.
1084
1085 Full filter invocation with asendcmd may look like this:
1086 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1087 @end table
1088
1089 @section anull
1090
1091 Pass the audio source unchanged to the output.
1092
1093 @section apad
1094
1095 Pad the end of an audio stream with silence.
1096
1097 This can be used together with @command{ffmpeg} @option{-shortest} to
1098 extend audio streams to the same length as the video stream.
1099
1100 A description of the accepted options follows.
1101
1102 @table @option
1103 @item packet_size
1104 Set silence packet size. Default value is 4096.
1105
1106 @item pad_len
1107 Set the number of samples of silence to add to the end. After the
1108 value is reached, the stream is terminated. This option is mutually
1109 exclusive with @option{whole_len}.
1110
1111 @item whole_len
1112 Set the minimum total number of samples in the output audio stream. If
1113 the value is longer than the input audio length, silence is added to
1114 the end, until the value is reached. This option is mutually exclusive
1115 with @option{pad_len}.
1116 @end table
1117
1118 If neither the @option{pad_len} nor the @option{whole_len} option is
1119 set, the filter will add silence to the end of the input stream
1120 indefinitely.
1121
1122 @subsection Examples
1123
1124 @itemize
1125 @item
1126 Add 1024 samples of silence to the end of the input:
1127 @example
1128 apad=pad_len=1024
1129 @end example
1130
1131 @item
1132 Make sure the audio output will contain at least 10000 samples, pad
1133 the input with silence if required:
1134 @example
1135 apad=whole_len=10000
1136 @end example
1137
1138 @item
1139 Use @command{ffmpeg} to pad the audio input with silence, so that the
1140 video stream will always result the shortest and will be converted
1141 until the end in the output file when using the @option{shortest}
1142 option:
1143 @example
1144 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1145 @end example
1146 @end itemize
1147
1148 @section aphaser
1149 Add a phasing effect to the input audio.
1150
1151 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1152 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1153
1154 A description of the accepted parameters follows.
1155
1156 @table @option
1157 @item in_gain
1158 Set input gain. Default is 0.4.
1159
1160 @item out_gain
1161 Set output gain. Default is 0.74
1162
1163 @item delay
1164 Set delay in milliseconds. Default is 3.0.
1165
1166 @item decay
1167 Set decay. Default is 0.4.
1168
1169 @item speed
1170 Set modulation speed in Hz. Default is 0.5.
1171
1172 @item type
1173 Set modulation type. Default is triangular.
1174
1175 It accepts the following values:
1176 @table @samp
1177 @item triangular, t
1178 @item sinusoidal, s
1179 @end table
1180 @end table
1181
1182 @section apulsator
1183
1184 Audio pulsator is something between an autopanner and a tremolo.
1185 But it can produce funny stereo effects as well. Pulsator changes the volume
1186 of the left and right channel based on a LFO (low frequency oscillator) with
1187 different waveforms and shifted phases.
1188 This filter have the ability to define an offset between left and right
1189 channel. An offset of 0 means that both LFO shapes match each other.
1190 The left and right channel are altered equally - a conventional tremolo.
1191 An offset of 50% means that the shape of the right channel is exactly shifted
1192 in phase (or moved backwards about half of the frequency) - pulsator acts as
1193 an autopanner. At 1 both curves match again. Every setting in between moves the
1194 phase shift gapless between all stages and produces some "bypassing" sounds with
1195 sine and triangle waveforms. The more you set the offset near 1 (starting from
1196 the 0.5) the faster the signal passes from the left to the right speaker.
1197
1198 The filter accepts the following options:
1199
1200 @table @option
1201 @item level_in
1202 Set input gain. By default it is 1. Range is [0.015625 - 64].
1203
1204 @item level_out
1205 Set output gain. By default it is 1. Range is [0.015625 - 64].
1206
1207 @item mode
1208 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1209 sawup or sawdown. Default is sine.
1210
1211 @item amount
1212 Set modulation. Define how much of original signal is affected by the LFO.
1213
1214 @item offset_l
1215 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1216
1217 @item offset_r
1218 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1219
1220 @item width
1221 Set pulse width. Default is 1. Allowed range is [0 - 2].
1222
1223 @item timing
1224 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1225
1226 @item bpm
1227 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1228 is set to bpm.
1229
1230 @item ms
1231 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1232 is set to ms.
1233
1234 @item hz
1235 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1236 if timing is set to hz.
1237 @end table
1238
1239 @anchor{aresample}
1240 @section aresample
1241
1242 Resample the input audio to the specified parameters, using the
1243 libswresample library. If none are specified then the filter will
1244 automatically convert between its input and output.
1245
1246 This filter is also able to stretch/squeeze the audio data to make it match
1247 the timestamps or to inject silence / cut out audio to make it match the
1248 timestamps, do a combination of both or do neither.
1249
1250 The filter accepts the syntax
1251 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1252 expresses a sample rate and @var{resampler_options} is a list of
1253 @var{key}=@var{value} pairs, separated by ":". See the
1254 ffmpeg-resampler manual for the complete list of supported options.
1255
1256 @subsection Examples
1257
1258 @itemize
1259 @item
1260 Resample the input audio to 44100Hz:
1261 @example
1262 aresample=44100
1263 @end example
1264
1265 @item
1266 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1267 samples per second compensation:
1268 @example
1269 aresample=async=1000
1270 @end example
1271 @end itemize
1272
1273 @section asetnsamples
1274
1275 Set the number of samples per each output audio frame.
1276
1277 The last output packet may contain a different number of samples, as
1278 the filter will flush all the remaining samples when the input audio
1279 signal its end.
1280
1281 The filter accepts the following options:
1282
1283 @table @option
1284
1285 @item nb_out_samples, n
1286 Set the number of frames per each output audio frame. The number is
1287 intended as the number of samples @emph{per each channel}.
1288 Default value is 1024.
1289
1290 @item pad, p
1291 If set to 1, the filter will pad the last audio frame with zeroes, so
1292 that the last frame will contain the same number of samples as the
1293 previous ones. Default value is 1.
1294 @end table
1295
1296 For example, to set the number of per-frame samples to 1234 and
1297 disable padding for the last frame, use:
1298 @example
1299 asetnsamples=n=1234:p=0
1300 @end example
1301
1302 @section asetrate
1303
1304 Set the sample rate without altering the PCM data.
1305 This will result in a change of speed and pitch.
1306
1307 The filter accepts the following options:
1308
1309 @table @option
1310 @item sample_rate, r
1311 Set the output sample rate. Default is 44100 Hz.
1312 @end table
1313
1314 @section ashowinfo
1315
1316 Show a line containing various information for each input audio frame.
1317 The input audio is not modified.
1318
1319 The shown line contains a sequence of key/value pairs of the form
1320 @var{key}:@var{value}.
1321
1322 The following values are shown in the output:
1323
1324 @table @option
1325 @item n
1326 The (sequential) number of the input frame, starting from 0.
1327
1328 @item pts
1329 The presentation timestamp of the input frame, in time base units; the time base
1330 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1331
1332 @item pts_time
1333 The presentation timestamp of the input frame in seconds.
1334
1335 @item pos
1336 position of the frame in the input stream, -1 if this information in
1337 unavailable and/or meaningless (for example in case of synthetic audio)
1338
1339 @item fmt
1340 The sample format.
1341
1342 @item chlayout
1343 The channel layout.
1344
1345 @item rate
1346 The sample rate for the audio frame.
1347
1348 @item nb_samples
1349 The number of samples (per channel) in the frame.
1350
1351 @item checksum
1352 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1353 audio, the data is treated as if all the planes were concatenated.
1354
1355 @item plane_checksums
1356 A list of Adler-32 checksums for each data plane.
1357 @end table
1358
1359 @anchor{astats}
1360 @section astats
1361
1362 Display time domain statistical information about the audio channels.
1363 Statistics are calculated and displayed for each audio channel and,
1364 where applicable, an overall figure is also given.
1365
1366 It accepts the following option:
1367 @table @option
1368 @item length
1369 Short window length in seconds, used for peak and trough RMS measurement.
1370 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1371
1372 @item metadata
1373
1374 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1375 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1376 disabled.
1377
1378 Available keys for each channel are:
1379 DC_offset
1380 Min_level
1381 Max_level
1382 Min_difference
1383 Max_difference
1384 Mean_difference
1385 Peak_level
1386 RMS_peak
1387 RMS_trough
1388 Crest_factor
1389 Flat_factor
1390 Peak_count
1391 Bit_depth
1392
1393 and for Overall:
1394 DC_offset
1395 Min_level
1396 Max_level
1397 Min_difference
1398 Max_difference
1399 Mean_difference
1400 Peak_level
1401 RMS_level
1402 RMS_peak
1403 RMS_trough
1404 Flat_factor
1405 Peak_count
1406 Bit_depth
1407 Number_of_samples
1408
1409 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1410 this @code{lavfi.astats.Overall.Peak_count}.
1411
1412 For description what each key means read below.
1413
1414 @item reset
1415 Set number of frame after which stats are going to be recalculated.
1416 Default is disabled.
1417 @end table
1418
1419 A description of each shown parameter follows:
1420
1421 @table @option
1422 @item DC offset
1423 Mean amplitude displacement from zero.
1424
1425 @item Min level
1426 Minimal sample level.
1427
1428 @item Max level
1429 Maximal sample level.
1430
1431 @item Min difference
1432 Minimal difference between two consecutive samples.
1433
1434 @item Max difference
1435 Maximal difference between two consecutive samples.
1436
1437 @item Mean difference
1438 Mean difference between two consecutive samples.
1439 The average of each difference between two consecutive samples.
1440
1441 @item Peak level dB
1442 @item RMS level dB
1443 Standard peak and RMS level measured in dBFS.
1444
1445 @item RMS peak dB
1446 @item RMS trough dB
1447 Peak and trough values for RMS level measured over a short window.
1448
1449 @item Crest factor
1450 Standard ratio of peak to RMS level (note: not in dB).
1451
1452 @item Flat factor
1453 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1454 (i.e. either @var{Min level} or @var{Max level}).
1455
1456 @item Peak count
1457 Number of occasions (not the number of samples) that the signal attained either
1458 @var{Min level} or @var{Max level}.
1459
1460 @item Bit depth
1461 Overall bit depth of audio. Number of bits used for each sample.
1462 @end table
1463
1464 @section asyncts
1465
1466 Synchronize audio data with timestamps by squeezing/stretching it and/or
1467 dropping samples/adding silence when needed.
1468
1469 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1470
1471 It accepts the following parameters:
1472 @table @option
1473
1474 @item compensate
1475 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1476 by default. When disabled, time gaps are covered with silence.
1477
1478 @item min_delta
1479 The minimum difference between timestamps and audio data (in seconds) to trigger
1480 adding/dropping samples. The default value is 0.1. If you get an imperfect
1481 sync with this filter, try setting this parameter to 0.
1482
1483 @item max_comp
1484 The maximum compensation in samples per second. Only relevant with compensate=1.
1485 The default value is 500.
1486
1487 @item first_pts
1488 Assume that the first PTS should be this value. The time base is 1 / sample
1489 rate. This allows for padding/trimming at the start of the stream. By default,
1490 no assumption is made about the first frame's expected PTS, so no padding or
1491 trimming is done. For example, this could be set to 0 to pad the beginning with
1492 silence if an audio stream starts after the video stream or to trim any samples
1493 with a negative PTS due to encoder delay.
1494
1495 @end table
1496
1497 @section atempo
1498
1499 Adjust audio tempo.
1500
1501 The filter accepts exactly one parameter, the audio tempo. If not
1502 specified then the filter will assume nominal 1.0 tempo. Tempo must
1503 be in the [0.5, 2.0] range.
1504
1505 @subsection Examples
1506
1507 @itemize
1508 @item
1509 Slow down audio to 80% tempo:
1510 @example
1511 atempo=0.8
1512 @end example
1513
1514 @item
1515 To speed up audio to 125% tempo:
1516 @example
1517 atempo=1.25
1518 @end example
1519 @end itemize
1520
1521 @section atrim
1522
1523 Trim the input so that the output contains one continuous subpart of the input.
1524
1525 It accepts the following parameters:
1526 @table @option
1527 @item start
1528 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1529 sample with the timestamp @var{start} will be the first sample in the output.
1530
1531 @item end
1532 Specify time of the first audio sample that will be dropped, i.e. the
1533 audio sample immediately preceding the one with the timestamp @var{end} will be
1534 the last sample in the output.
1535
1536 @item start_pts
1537 Same as @var{start}, except this option sets the start timestamp in samples
1538 instead of seconds.
1539
1540 @item end_pts
1541 Same as @var{end}, except this option sets the end timestamp in samples instead
1542 of seconds.
1543
1544 @item duration
1545 The maximum duration of the output in seconds.
1546
1547 @item start_sample
1548 The number of the first sample that should be output.
1549
1550 @item end_sample
1551 The number of the first sample that should be dropped.
1552 @end table
1553
1554 @option{start}, @option{end}, and @option{duration} are expressed as time
1555 duration specifications; see
1556 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1557
1558 Note that the first two sets of the start/end options and the @option{duration}
1559 option look at the frame timestamp, while the _sample options simply count the
1560 samples that pass through the filter. So start/end_pts and start/end_sample will
1561 give different results when the timestamps are wrong, inexact or do not start at
1562 zero. Also note that this filter does not modify the timestamps. If you wish
1563 to have the output timestamps start at zero, insert the asetpts filter after the
1564 atrim filter.
1565
1566 If multiple start or end options are set, this filter tries to be greedy and
1567 keep all samples that match at least one of the specified constraints. To keep
1568 only the part that matches all the constraints at once, chain multiple atrim
1569 filters.
1570
1571 The defaults are such that all the input is kept. So it is possible to set e.g.
1572 just the end values to keep everything before the specified time.
1573
1574 Examples:
1575 @itemize
1576 @item
1577 Drop everything except the second minute of input:
1578 @example
1579 ffmpeg -i INPUT -af atrim=60:120
1580 @end example
1581
1582 @item
1583 Keep only the first 1000 samples:
1584 @example
1585 ffmpeg -i INPUT -af atrim=end_sample=1000
1586 @end example
1587
1588 @end itemize
1589
1590 @section bandpass
1591
1592 Apply a two-pole Butterworth band-pass filter with central
1593 frequency @var{frequency}, and (3dB-point) band-width width.
1594 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1595 instead of the default: constant 0dB peak gain.
1596 The filter roll off at 6dB per octave (20dB per decade).
1597
1598 The filter accepts the following options:
1599
1600 @table @option
1601 @item frequency, f
1602 Set the filter's central frequency. Default is @code{3000}.
1603
1604 @item csg
1605 Constant skirt gain if set to 1. Defaults to 0.
1606
1607 @item width_type
1608 Set method to specify band-width of filter.
1609 @table @option
1610 @item h
1611 Hz
1612 @item q
1613 Q-Factor
1614 @item o
1615 octave
1616 @item s
1617 slope
1618 @end table
1619
1620 @item width, w
1621 Specify the band-width of a filter in width_type units.
1622 @end table
1623
1624 @section bandreject
1625
1626 Apply a two-pole Butterworth band-reject filter with central
1627 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1628 The filter roll off at 6dB per octave (20dB per decade).
1629
1630 The filter accepts the following options:
1631
1632 @table @option
1633 @item frequency, f
1634 Set the filter's central frequency. Default is @code{3000}.
1635
1636 @item width_type
1637 Set method to specify band-width of filter.
1638 @table @option
1639 @item h
1640 Hz
1641 @item q
1642 Q-Factor
1643 @item o
1644 octave
1645 @item s
1646 slope
1647 @end table
1648
1649 @item width, w
1650 Specify the band-width of a filter in width_type units.
1651 @end table
1652
1653 @section bass
1654
1655 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1656 shelving filter with a response similar to that of a standard
1657 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1658
1659 The filter accepts the following options:
1660
1661 @table @option
1662 @item gain, g
1663 Give the gain at 0 Hz. Its useful range is about -20
1664 (for a large cut) to +20 (for a large boost).
1665 Beware of clipping when using a positive gain.
1666
1667 @item frequency, f
1668 Set the filter's central frequency and so can be used
1669 to extend or reduce the frequency range to be boosted or cut.
1670 The default value is @code{100} Hz.
1671
1672 @item width_type
1673 Set method to specify band-width of filter.
1674 @table @option
1675 @item h
1676 Hz
1677 @item q
1678 Q-Factor
1679 @item o
1680 octave
1681 @item s
1682 slope
1683 @end table
1684
1685 @item width, w
1686 Determine how steep is the filter's shelf transition.
1687 @end table
1688
1689 @section biquad
1690
1691 Apply a biquad IIR filter with the given coefficients.
1692 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1693 are the numerator and denominator coefficients respectively.
1694
1695 @section bs2b
1696 Bauer stereo to binaural transformation, which improves headphone listening of
1697 stereo audio records.
1698
1699 It accepts the following parameters:
1700 @table @option
1701
1702 @item profile
1703 Pre-defined crossfeed level.
1704 @table @option
1705
1706 @item default
1707 Default level (fcut=700, feed=50).
1708
1709 @item cmoy
1710 Chu Moy circuit (fcut=700, feed=60).
1711
1712 @item jmeier
1713 Jan Meier circuit (fcut=650, feed=95).
1714
1715 @end table
1716
1717 @item fcut
1718 Cut frequency (in Hz).
1719
1720 @item feed
1721 Feed level (in Hz).
1722
1723 @end table
1724
1725 @section channelmap
1726
1727 Remap input channels to new locations.
1728
1729 It accepts the following parameters:
1730 @table @option
1731 @item channel_layout
1732 The channel layout of the output stream.
1733
1734 @item map
1735 Map channels from input to output. The argument is a '|'-separated list of
1736 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1737 @var{in_channel} form. @var{in_channel} can be either the name of the input
1738 channel (e.g. FL for front left) or its index in the input channel layout.
1739 @var{out_channel} is the name of the output channel or its index in the output
1740 channel layout. If @var{out_channel} is not given then it is implicitly an
1741 index, starting with zero and increasing by one for each mapping.
1742 @end table
1743
1744 If no mapping is present, the filter will implicitly map input channels to
1745 output channels, preserving indices.
1746
1747 For example, assuming a 5.1+downmix input MOV file,
1748 @example
1749 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1750 @end example
1751 will create an output WAV file tagged as stereo from the downmix channels of
1752 the input.
1753
1754 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1755 @example
1756 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1757 @end example
1758
1759 @section channelsplit
1760
1761 Split each channel from an input audio stream into a separate output stream.
1762
1763 It accepts the following parameters:
1764 @table @option
1765 @item channel_layout
1766 The channel layout of the input stream. The default is "stereo".
1767 @end table
1768
1769 For example, assuming a stereo input MP3 file,
1770 @example
1771 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1772 @end example
1773 will create an output Matroska file with two audio streams, one containing only
1774 the left channel and the other the right channel.
1775
1776 Split a 5.1 WAV file into per-channel files:
1777 @example
1778 ffmpeg -i in.wav -filter_complex
1779 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1780 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1781 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1782 side_right.wav
1783 @end example
1784
1785 @section chorus
1786 Add a chorus effect to the audio.
1787
1788 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1789
1790 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1791 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1792 The modulation depth defines the range the modulated delay is played before or after
1793 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1794 sound tuned around the original one, like in a chorus where some vocals are slightly
1795 off key.
1796
1797 It accepts the following parameters:
1798 @table @option
1799 @item in_gain
1800 Set input gain. Default is 0.4.
1801
1802 @item out_gain
1803 Set output gain. Default is 0.4.
1804
1805 @item delays
1806 Set delays. A typical delay is around 40ms to 60ms.
1807
1808 @item decays
1809 Set decays.
1810
1811 @item speeds
1812 Set speeds.
1813
1814 @item depths
1815 Set depths.
1816 @end table
1817
1818 @subsection Examples
1819
1820 @itemize
1821 @item
1822 A single delay:
1823 @example
1824 chorus=0.7:0.9:55:0.4:0.25:2
1825 @end example
1826
1827 @item
1828 Two delays:
1829 @example
1830 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1831 @end example
1832
1833 @item
1834 Fuller sounding chorus with three delays:
1835 @example
1836 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
1837 @end example
1838 @end itemize
1839
1840 @section compand
1841 Compress or expand the audio's dynamic range.
1842
1843 It accepts the following parameters:
1844
1845 @table @option
1846
1847 @item attacks
1848 @item decays
1849 A list of times in seconds for each channel over which the instantaneous level
1850 of the input signal is averaged to determine its volume. @var{attacks} refers to
1851 increase of volume and @var{decays} refers to decrease of volume. For most
1852 situations, the attack time (response to the audio getting louder) should be
1853 shorter than the decay time, because the human ear is more sensitive to sudden
1854 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1855 a typical value for decay is 0.8 seconds.
1856 If specified number of attacks & decays is lower than number of channels, the last
1857 set attack/decay will be used for all remaining channels.
1858
1859 @item points
1860 A list of points for the transfer function, specified in dB relative to the
1861 maximum possible signal amplitude. Each key points list must be defined using
1862 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1863 @code{x0/y0 x1/y1 x2/y2 ....}
1864
1865 The input values must be in strictly increasing order but the transfer function
1866 does not have to be monotonically rising. The point @code{0/0} is assumed but
1867 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1868 function are @code{-70/-70|-60/-20}.
1869
1870 @item soft-knee
1871 Set the curve radius in dB for all joints. It defaults to 0.01.
1872
1873 @item gain
1874 Set the additional gain in dB to be applied at all points on the transfer
1875 function. This allows for easy adjustment of the overall gain.
1876 It defaults to 0.
1877
1878 @item volume
1879 Set an initial volume, in dB, to be assumed for each channel when filtering
1880 starts. This permits the user to supply a nominal level initially, so that, for
1881 example, a very large gain is not applied to initial signal levels before the
1882 companding has begun to operate. A typical value for audio which is initially
1883 quiet is -90 dB. It defaults to 0.
1884
1885 @item delay
1886 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1887 delayed before being fed to the volume adjuster. Specifying a delay
1888 approximately equal to the attack/decay times allows the filter to effectively
1889 operate in predictive rather than reactive mode. It defaults to 0.
1890
1891 @end table
1892
1893 @subsection Examples
1894
1895 @itemize
1896 @item
1897 Make music with both quiet and loud passages suitable for listening to in a
1898 noisy environment:
1899 @example
1900 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1901 @end example
1902
1903 Another example for audio with whisper and explosion parts:
1904 @example
1905 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1906 @end example
1907
1908 @item
1909 A noise gate for when the noise is at a lower level than the signal:
1910 @example
1911 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1912 @end example
1913
1914 @item
1915 Here is another noise gate, this time for when the noise is at a higher level
1916 than the signal (making it, in some ways, similar to squelch):
1917 @example
1918 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1919 @end example
1920
1921 @item
1922 2:1 compression starting at -6dB:
1923 @example
1924 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
1925 @end example
1926
1927 @item
1928 2:1 compression starting at -9dB:
1929 @example
1930 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
1931 @end example
1932
1933 @item
1934 2:1 compression starting at -12dB:
1935 @example
1936 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
1937 @end example
1938
1939 @item
1940 2:1 compression starting at -18dB:
1941 @example
1942 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
1943 @end example
1944
1945 @item
1946 3:1 compression starting at -15dB:
1947 @example
1948 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
1949 @end example
1950
1951 @item
1952 Compressor/Gate:
1953 @example
1954 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
1955 @end example
1956
1957 @item
1958 Expander:
1959 @example
1960 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
1961 @end example
1962
1963 @item
1964 Hard limiter at -6dB:
1965 @example
1966 compand=attacks=0:points=-80/-80|-6/-6|20/-6
1967 @end example
1968
1969 @item
1970 Hard limiter at -12dB:
1971 @example
1972 compand=attacks=0:points=-80/-80|-12/-12|20/-12
1973 @end example
1974
1975 @item
1976 Hard noise gate at -35 dB:
1977 @example
1978 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
1979 @end example
1980
1981 @item
1982 Soft limiter:
1983 @example
1984 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
1985 @end example
1986 @end itemize
1987
1988 @section compensationdelay
1989
1990 Compensation Delay Line is a metric based delay to compensate differing
1991 positions of microphones or speakers.
1992
1993 For example, you have recorded guitar with two microphones placed in
1994 different location. Because the front of sound wave has fixed speed in
1995 normal conditions, the phasing of microphones can vary and depends on
1996 their location and interposition. The best sound mix can be achieved when
1997 these microphones are in phase (synchronized). Note that distance of
1998 ~30 cm between microphones makes one microphone to capture signal in
1999 antiphase to another microphone. That makes the final mix sounding moody.
2000 This filter helps to solve phasing problems by adding different delays
2001 to each microphone track and make them synchronized.
2002
2003 The best result can be reached when you take one track as base and
2004 synchronize other tracks one by one with it.
2005 Remember that synchronization/delay tolerance depends on sample rate, too.
2006 Higher sample rates will give more tolerance.
2007
2008 It accepts the following parameters:
2009
2010 @table @option
2011 @item mm
2012 Set millimeters distance. This is compensation distance for fine tuning.
2013 Default is 0.
2014
2015 @item cm
2016 Set cm distance. This is compensation distance for tightening distance setup.
2017 Default is 0.
2018
2019 @item m
2020 Set meters distance. This is compensation distance for hard distance setup.
2021 Default is 0.
2022
2023 @item dry
2024 Set dry amount. Amount of unprocessed (dry) signal.
2025 Default is 0.
2026
2027 @item wet
2028 Set wet amount. Amount of processed (wet) signal.
2029 Default is 1.
2030
2031 @item temp
2032 Set temperature degree in Celsius. This is the temperature of the environment.
2033 Default is 20.
2034 @end table
2035
2036 @section dcshift
2037 Apply a DC shift to the audio.
2038
2039 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2040 in the recording chain) from the audio. The effect of a DC offset is reduced
2041 headroom and hence volume. The @ref{astats} filter can be used to determine if
2042 a signal has a DC offset.
2043
2044 @table @option
2045 @item shift
2046 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2047 the audio.
2048
2049 @item limitergain
2050 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2051 used to prevent clipping.
2052 @end table
2053
2054 @section dynaudnorm
2055 Dynamic Audio Normalizer.
2056
2057 This filter applies a certain amount of gain to the input audio in order
2058 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2059 contrast to more "simple" normalization algorithms, the Dynamic Audio
2060 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2061 This allows for applying extra gain to the "quiet" sections of the audio
2062 while avoiding distortions or clipping the "loud" sections. In other words:
2063 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2064 sections, in the sense that the volume of each section is brought to the
2065 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2066 this goal *without* applying "dynamic range compressing". It will retain 100%
2067 of the dynamic range *within* each section of the audio file.
2068
2069 @table @option
2070 @item f
2071 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2072 Default is 500 milliseconds.
2073 The Dynamic Audio Normalizer processes the input audio in small chunks,
2074 referred to as frames. This is required, because a peak magnitude has no
2075 meaning for just a single sample value. Instead, we need to determine the
2076 peak magnitude for a contiguous sequence of sample values. While a "standard"
2077 normalizer would simply use the peak magnitude of the complete file, the
2078 Dynamic Audio Normalizer determines the peak magnitude individually for each
2079 frame. The length of a frame is specified in milliseconds. By default, the
2080 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2081 been found to give good results with most files.
2082 Note that the exact frame length, in number of samples, will be determined
2083 automatically, based on the sampling rate of the individual input audio file.
2084
2085 @item g
2086 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2087 number. Default is 31.
2088 Probably the most important parameter of the Dynamic Audio Normalizer is the
2089 @code{window size} of the Gaussian smoothing filter. The filter's window size
2090 is specified in frames, centered around the current frame. For the sake of
2091 simplicity, this must be an odd number. Consequently, the default value of 31
2092 takes into account the current frame, as well as the 15 preceding frames and
2093 the 15 subsequent frames. Using a larger window results in a stronger
2094 smoothing effect and thus in less gain variation, i.e. slower gain
2095 adaptation. Conversely, using a smaller window results in a weaker smoothing
2096 effect and thus in more gain variation, i.e. faster gain adaptation.
2097 In other words, the more you increase this value, the more the Dynamic Audio
2098 Normalizer will behave like a "traditional" normalization filter. On the
2099 contrary, the more you decrease this value, the more the Dynamic Audio
2100 Normalizer will behave like a dynamic range compressor.
2101
2102 @item p
2103 Set the target peak value. This specifies the highest permissible magnitude
2104 level for the normalized audio input. This filter will try to approach the
2105 target peak magnitude as closely as possible, but at the same time it also
2106 makes sure that the normalized signal will never exceed the peak magnitude.
2107 A frame's maximum local gain factor is imposed directly by the target peak
2108 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2109 It is not recommended to go above this value.
2110
2111 @item m
2112 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2113 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2114 factor for each input frame, i.e. the maximum gain factor that does not
2115 result in clipping or distortion. The maximum gain factor is determined by
2116 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2117 additionally bounds the frame's maximum gain factor by a predetermined
2118 (global) maximum gain factor. This is done in order to avoid excessive gain
2119 factors in "silent" or almost silent frames. By default, the maximum gain
2120 factor is 10.0, For most inputs the default value should be sufficient and
2121 it usually is not recommended to increase this value. Though, for input
2122 with an extremely low overall volume level, it may be necessary to allow even
2123 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2124 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2125 Instead, a "sigmoid" threshold function will be applied. This way, the
2126 gain factors will smoothly approach the threshold value, but never exceed that
2127 value.
2128
2129 @item r
2130 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2131 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2132 This means that the maximum local gain factor for each frame is defined
2133 (only) by the frame's highest magnitude sample. This way, the samples can
2134 be amplified as much as possible without exceeding the maximum signal
2135 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2136 Normalizer can also take into account the frame's root mean square,
2137 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2138 determine the power of a time-varying signal. It is therefore considered
2139 that the RMS is a better approximation of the "perceived loudness" than
2140 just looking at the signal's peak magnitude. Consequently, by adjusting all
2141 frames to a constant RMS value, a uniform "perceived loudness" can be
2142 established. If a target RMS value has been specified, a frame's local gain
2143 factor is defined as the factor that would result in exactly that RMS value.
2144 Note, however, that the maximum local gain factor is still restricted by the
2145 frame's highest magnitude sample, in order to prevent clipping.
2146
2147 @item n
2148 Enable channels coupling. By default is enabled.
2149 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2150 amount. This means the same gain factor will be applied to all channels, i.e.
2151 the maximum possible gain factor is determined by the "loudest" channel.
2152 However, in some recordings, it may happen that the volume of the different
2153 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2154 In this case, this option can be used to disable the channel coupling. This way,
2155 the gain factor will be determined independently for each channel, depending
2156 only on the individual channel's highest magnitude sample. This allows for
2157 harmonizing the volume of the different channels.
2158
2159 @item c
2160 Enable DC bias correction. By default is disabled.
2161 An audio signal (in the time domain) is a sequence of sample values.
2162 In the Dynamic Audio Normalizer these sample values are represented in the
2163 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2164 audio signal, or "waveform", should be centered around the zero point.
2165 That means if we calculate the mean value of all samples in a file, or in a
2166 single frame, then the result should be 0.0 or at least very close to that
2167 value. If, however, there is a significant deviation of the mean value from
2168 0.0, in either positive or negative direction, this is referred to as a
2169 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2170 Audio Normalizer provides optional DC bias correction.
2171 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2172 the mean value, or "DC correction" offset, of each input frame and subtract
2173 that value from all of the frame's sample values which ensures those samples
2174 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2175 boundaries, the DC correction offset values will be interpolated smoothly
2176 between neighbouring frames.
2177
2178 @item b
2179 Enable alternative boundary mode. By default is disabled.
2180 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2181 around each frame. This includes the preceding frames as well as the
2182 subsequent frames. However, for the "boundary" frames, located at the very
2183 beginning and at the very end of the audio file, not all neighbouring
2184 frames are available. In particular, for the first few frames in the audio
2185 file, the preceding frames are not known. And, similarly, for the last few
2186 frames in the audio file, the subsequent frames are not known. Thus, the
2187 question arises which gain factors should be assumed for the missing frames
2188 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2189 to deal with this situation. The default boundary mode assumes a gain factor
2190 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2191 "fade out" at the beginning and at the end of the input, respectively.
2192
2193 @item s
2194 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2195 By default, the Dynamic Audio Normalizer does not apply "traditional"
2196 compression. This means that signal peaks will not be pruned and thus the
2197 full dynamic range will be retained within each local neighbourhood. However,
2198 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2199 normalization algorithm with a more "traditional" compression.
2200 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2201 (thresholding) function. If (and only if) the compression feature is enabled,
2202 all input frames will be processed by a soft knee thresholding function prior
2203 to the actual normalization process. Put simply, the thresholding function is
2204 going to prune all samples whose magnitude exceeds a certain threshold value.
2205 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2206 value. Instead, the threshold value will be adjusted for each individual
2207 frame.
2208 In general, smaller parameters result in stronger compression, and vice versa.
2209 Values below 3.0 are not recommended, because audible distortion may appear.
2210 @end table
2211
2212 @section earwax
2213
2214 Make audio easier to listen to on headphones.
2215
2216 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2217 so that when listened to on headphones the stereo image is moved from
2218 inside your head (standard for headphones) to outside and in front of
2219 the listener (standard for speakers).
2220
2221 Ported from SoX.
2222
2223 @section equalizer
2224
2225 Apply a two-pole peaking equalisation (EQ) filter. With this
2226 filter, the signal-level at and around a selected frequency can
2227 be increased or decreased, whilst (unlike bandpass and bandreject
2228 filters) that at all other frequencies is unchanged.
2229
2230 In order to produce complex equalisation curves, this filter can
2231 be given several times, each with a different central frequency.
2232
2233 The filter accepts the following options:
2234
2235 @table @option
2236 @item frequency, f
2237 Set the filter's central frequency in Hz.
2238
2239 @item width_type
2240 Set method to specify band-width of filter.
2241 @table @option
2242 @item h
2243 Hz
2244 @item q
2245 Q-Factor
2246 @item o
2247 octave
2248 @item s
2249 slope
2250 @end table
2251
2252 @item width, w
2253 Specify the band-width of a filter in width_type units.
2254
2255 @item gain, g
2256 Set the required gain or attenuation in dB.
2257 Beware of clipping when using a positive gain.
2258 @end table
2259
2260 @subsection Examples
2261 @itemize
2262 @item
2263 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2264 @example
2265 equalizer=f=1000:width_type=h:width=200:g=-10
2266 @end example
2267
2268 @item
2269 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2270 @example
2271 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2272 @end example
2273 @end itemize
2274
2275 @section extrastereo
2276
2277 Linearly increases the difference between left and right channels which
2278 adds some sort of "live" effect to playback.
2279
2280 The filter accepts the following option:
2281
2282 @table @option
2283 @item m
2284 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2285 (average of both channels), with 1.0 sound will be unchanged, with
2286 -1.0 left and right channels will be swapped.
2287
2288 @item c
2289 Enable clipping. By default is enabled.
2290 @end table
2291
2292 @section flanger
2293 Apply a flanging effect to the audio.
2294
2295 The filter accepts the following options:
2296
2297 @table @option
2298 @item delay
2299 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2300
2301 @item depth
2302 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2303
2304 @item regen
2305 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2306 Default value is 0.
2307
2308 @item width
2309 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2310 Default value is 71.
2311
2312 @item speed
2313 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2314
2315 @item shape
2316 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2317 Default value is @var{sinusoidal}.
2318
2319 @item phase
2320 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2321 Default value is 25.
2322
2323 @item interp
2324 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2325 Default is @var{linear}.
2326 @end table
2327
2328 @section highpass
2329
2330 Apply a high-pass filter with 3dB point frequency.
2331 The filter can be either single-pole, or double-pole (the default).
2332 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2333
2334 The filter accepts the following options:
2335
2336 @table @option
2337 @item frequency, f
2338 Set frequency in Hz. Default is 3000.
2339
2340 @item poles, p
2341 Set number of poles. Default is 2.
2342
2343 @item width_type
2344 Set method to specify band-width of filter.
2345 @table @option
2346 @item h
2347 Hz
2348 @item q
2349 Q-Factor
2350 @item o
2351 octave
2352 @item s
2353 slope
2354 @end table
2355
2356 @item width, w
2357 Specify the band-width of a filter in width_type units.
2358 Applies only to double-pole filter.
2359 The default is 0.707q and gives a Butterworth response.
2360 @end table
2361
2362 @section join
2363
2364 Join multiple input streams into one multi-channel stream.
2365
2366 It accepts the following parameters:
2367 @table @option
2368
2369 @item inputs
2370 The number of input streams. It defaults to 2.
2371
2372 @item channel_layout
2373 The desired output channel layout. It defaults to stereo.
2374
2375 @item map
2376 Map channels from inputs to output. The argument is a '|'-separated list of
2377 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2378 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2379 can be either the name of the input channel (e.g. FL for front left) or its
2380 index in the specified input stream. @var{out_channel} is the name of the output
2381 channel.
2382 @end table
2383
2384 The filter will attempt to guess the mappings when they are not specified
2385 explicitly. It does so by first trying to find an unused matching input channel
2386 and if that fails it picks the first unused input channel.
2387
2388 Join 3 inputs (with properly set channel layouts):
2389 @example
2390 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2391 @end example
2392
2393 Build a 5.1 output from 6 single-channel streams:
2394 @example
2395 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2396 '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'
2397 out
2398 @end example
2399
2400 @section ladspa
2401
2402 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2403
2404 To enable compilation of this filter you need to configure FFmpeg with
2405 @code{--enable-ladspa}.
2406
2407 @table @option
2408 @item file, f
2409 Specifies the name of LADSPA plugin library to load. If the environment
2410 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2411 each one of the directories specified by the colon separated list in
2412 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2413 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2414 @file{/usr/lib/ladspa/}.
2415
2416 @item plugin, p
2417 Specifies the plugin within the library. Some libraries contain only
2418 one plugin, but others contain many of them. If this is not set filter
2419 will list all available plugins within the specified library.
2420
2421 @item controls, c
2422 Set the '|' separated list of controls which are zero or more floating point
2423 values that determine the behavior of the loaded plugin (for example delay,
2424 threshold or gain).
2425 Controls need to be defined using the following syntax:
2426 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2427 @var{valuei} is the value set on the @var{i}-th control.
2428 Alternatively they can be also defined using the following syntax:
2429 @var{value0}|@var{value1}|@var{value2}|..., where
2430 @var{valuei} is the value set on the @var{i}-th control.
2431 If @option{controls} is set to @code{help}, all available controls and
2432 their valid ranges are printed.
2433
2434 @item sample_rate, s
2435 Specify the sample rate, default to 44100. Only used if plugin have
2436 zero inputs.
2437
2438 @item nb_samples, n
2439 Set the number of samples per channel per each output frame, default
2440 is 1024. Only used if plugin have zero inputs.
2441
2442 @item duration, d
2443 Set the minimum duration of the sourced audio. See
2444 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2445 for the accepted syntax.
2446 Note that the resulting duration may be greater than the specified duration,
2447 as the generated audio is always cut at the end of a complete frame.
2448 If not specified, or the expressed duration is negative, the audio is
2449 supposed to be generated forever.
2450 Only used if plugin have zero inputs.
2451
2452 @end table
2453
2454 @subsection Examples
2455
2456 @itemize
2457 @item
2458 List all available plugins within amp (LADSPA example plugin) library:
2459 @example
2460 ladspa=file=amp
2461 @end example
2462
2463 @item
2464 List all available controls and their valid ranges for @code{vcf_notch}
2465 plugin from @code{VCF} library:
2466 @example
2467 ladspa=f=vcf:p=vcf_notch:c=help
2468 @end example
2469
2470 @item
2471 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2472 plugin library:
2473 @example
2474 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2475 @end example
2476
2477 @item
2478 Add reverberation to the audio using TAP-plugins
2479 (Tom's Audio Processing plugins):
2480 @example
2481 ladspa=file=tap_reverb:tap_reverb
2482 @end example
2483
2484 @item
2485 Generate white noise, with 0.2 amplitude:
2486 @example
2487 ladspa=file=cmt:noise_source_white:c=c0=.2
2488 @end example
2489
2490 @item
2491 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2492 @code{C* Audio Plugin Suite} (CAPS) library:
2493 @example
2494 ladspa=file=caps:Click:c=c1=20'
2495 @end example
2496
2497 @item
2498 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2499 @example
2500 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2501 @end example
2502
2503 @item
2504 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2505 @code{SWH Plugins} collection:
2506 @example
2507 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2508 @end example
2509
2510 @item
2511 Attenuate low frequencies using Multiband EQ from Steve Harris
2512 @code{SWH Plugins} collection:
2513 @example
2514 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2515 @end example
2516 @end itemize
2517
2518 @subsection Commands
2519
2520 This filter supports the following commands:
2521 @table @option
2522 @item cN
2523 Modify the @var{N}-th control value.
2524
2525 If the specified value is not valid, it is ignored and prior one is kept.
2526 @end table
2527
2528 @section lowpass
2529
2530 Apply a low-pass filter with 3dB point frequency.
2531 The filter can be either single-pole or double-pole (the default).
2532 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2533
2534 The filter accepts the following options:
2535
2536 @table @option
2537 @item frequency, f
2538 Set frequency in Hz. Default is 500.
2539
2540 @item poles, p
2541 Set number of poles. Default is 2.
2542
2543 @item width_type
2544 Set method to specify band-width of filter.
2545 @table @option
2546 @item h
2547 Hz
2548 @item q
2549 Q-Factor
2550 @item o
2551 octave
2552 @item s
2553 slope
2554 @end table
2555
2556 @item width, w
2557 Specify the band-width of a filter in width_type units.
2558 Applies only to double-pole filter.
2559 The default is 0.707q and gives a Butterworth response.
2560 @end table
2561
2562 @anchor{pan}
2563 @section pan
2564
2565 Mix channels with specific gain levels. The filter accepts the output
2566 channel layout followed by a set of channels definitions.
2567
2568 This filter is also designed to efficiently remap the channels of an audio
2569 stream.
2570
2571 The filter accepts parameters of the form:
2572 "@var{l}|@var{outdef}|@var{outdef}|..."
2573
2574 @table @option
2575 @item l
2576 output channel layout or number of channels
2577
2578 @item outdef
2579 output channel specification, of the form:
2580 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2581
2582 @item out_name
2583 output channel to define, either a channel name (FL, FR, etc.) or a channel
2584 number (c0, c1, etc.)
2585
2586 @item gain
2587 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2588
2589 @item in_name
2590 input channel to use, see out_name for details; it is not possible to mix
2591 named and numbered input channels
2592 @end table
2593
2594 If the `=' in a channel specification is replaced by `<', then the gains for
2595 that specification will be renormalized so that the total is 1, thus
2596 avoiding clipping noise.
2597
2598 @subsection Mixing examples
2599
2600 For example, if you want to down-mix from stereo to mono, but with a bigger
2601 factor for the left channel:
2602 @example
2603 pan=1c|c0=0.9*c0+0.1*c1
2604 @end example
2605
2606 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2607 7-channels surround:
2608 @example
2609 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2610 @end example
2611
2612 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2613 that should be preferred (see "-ac" option) unless you have very specific
2614 needs.
2615
2616 @subsection Remapping examples
2617
2618 The channel remapping will be effective if, and only if:
2619
2620 @itemize
2621 @item gain coefficients are zeroes or ones,
2622 @item only one input per channel output,
2623 @end itemize
2624
2625 If all these conditions are satisfied, the filter will notify the user ("Pure
2626 channel mapping detected"), and use an optimized and lossless method to do the
2627 remapping.
2628
2629 For example, if you have a 5.1 source and want a stereo audio stream by
2630 dropping the extra channels:
2631 @example
2632 pan="stereo| c0=FL | c1=FR"
2633 @end example
2634
2635 Given the same source, you can also switch front left and front right channels
2636 and keep the input channel layout:
2637 @example
2638 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2639 @end example
2640
2641 If the input is a stereo audio stream, you can mute the front left channel (and
2642 still keep the stereo channel layout) with:
2643 @example
2644 pan="stereo|c1=c1"
2645 @end example
2646
2647 Still with a stereo audio stream input, you can copy the right channel in both
2648 front left and right:
2649 @example
2650 pan="stereo| c0=FR | c1=FR"
2651 @end example
2652
2653 @section replaygain
2654
2655 ReplayGain scanner filter. This filter takes an audio stream as an input and
2656 outputs it unchanged.
2657 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2658
2659 @section resample
2660
2661 Convert the audio sample format, sample rate and channel layout. It is
2662 not meant to be used directly.
2663
2664 @section rubberband
2665 Apply time-stretching and pitch-shifting with librubberband.
2666
2667 The filter accepts the following options:
2668
2669 @table @option
2670 @item tempo
2671 Set tempo scale factor.
2672
2673 @item pitch
2674 Set pitch scale factor.
2675
2676 @item transients
2677 Set transients detector.
2678 Possible values are:
2679 @table @var
2680 @item crisp
2681 @item mixed
2682 @item smooth
2683 @end table
2684
2685 @item detector
2686 Set detector.
2687 Possible values are:
2688 @table @var
2689 @item compound
2690 @item percussive
2691 @item soft
2692 @end table
2693
2694 @item phase
2695 Set phase.
2696 Possible values are:
2697 @table @var
2698 @item laminar
2699 @item independent
2700 @end table
2701
2702 @item window
2703 Set processing window size.
2704 Possible values are:
2705 @table @var
2706 @item standard
2707 @item short
2708 @item long
2709 @end table
2710
2711 @item smoothing
2712 Set smoothing.
2713 Possible values are:
2714 @table @var
2715 @item off
2716 @item on
2717 @end table
2718
2719 @item formant
2720 Enable formant preservation when shift pitching.
2721 Possible values are:
2722 @table @var
2723 @item shifted
2724 @item preserved
2725 @end table
2726
2727 @item pitchq
2728 Set pitch quality.
2729 Possible values are:
2730 @table @var
2731 @item quality
2732 @item speed
2733 @item consistency
2734 @end table
2735
2736 @item channels
2737 Set channels.
2738 Possible values are:
2739 @table @var
2740 @item apart
2741 @item together
2742 @end table
2743 @end table
2744
2745 @section sidechaincompress
2746
2747 This filter acts like normal compressor but has the ability to compress
2748 detected signal using second input signal.
2749 It needs two input streams and returns one output stream.
2750 First input stream will be processed depending on second stream signal.
2751 The filtered signal then can be filtered with other filters in later stages of
2752 processing. See @ref{pan} and @ref{amerge} filter.
2753
2754 The filter accepts the following options:
2755
2756 @table @option
2757 @item level_in
2758 Set input gain. Default is 1. Range is between 0.015625 and 64.
2759
2760 @item threshold
2761 If a signal of second stream raises above this level it will affect the gain
2762 reduction of first stream.
2763 By default is 0.125. Range is between 0.00097563 and 1.
2764
2765 @item ratio
2766 Set a ratio about which the signal is reduced. 1:2 means that if the level
2767 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2768 Default is 2. Range is between 1 and 20.
2769
2770 @item attack
2771 Amount of milliseconds the signal has to rise above the threshold before gain
2772 reduction starts. Default is 20. Range is between 0.01 and 2000.
2773
2774 @item release
2775 Amount of milliseconds the signal has to fall below the threshold before
2776 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2777
2778 @item makeup
2779 Set the amount by how much signal will be amplified after processing.
2780 Default is 2. Range is from 1 and 64.
2781
2782 @item knee
2783 Curve the sharp knee around the threshold to enter gain reduction more softly.
2784 Default is 2.82843. Range is between 1 and 8.
2785
2786 @item link
2787 Choose if the @code{average} level between all channels of side-chain stream
2788 or the louder(@code{maximum}) channel of side-chain stream affects the
2789 reduction. Default is @code{average}.
2790
2791 @item detection
2792 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2793 of @code{rms}. Default is @code{rms} which is mainly smoother.
2794
2795 @item level_sc
2796 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
2797
2798 @item mix
2799 How much to use compressed signal in output. Default is 1.
2800 Range is between 0 and 1.
2801 @end table
2802
2803 @subsection Examples
2804
2805 @itemize
2806 @item
2807 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2808 depending on the signal of 2nd input and later compressed signal to be
2809 merged with 2nd input:
2810 @example
2811 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2812 @end example
2813 @end itemize
2814
2815 @section sidechaingate
2816
2817 A sidechain gate acts like a normal (wideband) gate but has the ability to
2818 filter the detected signal before sending it to the gain reduction stage.
2819 Normally a gate uses the full range signal to detect a level above the
2820 threshold.
2821 For example: If you cut all lower frequencies from your sidechain signal
2822 the gate will decrease the volume of your track only if not enough highs
2823 appear. With this technique you are able to reduce the resonation of a
2824 natural drum or remove "rumbling" of muted strokes from a heavily distorted
2825 guitar.
2826 It needs two input streams and returns one output stream.
2827 First input stream will be processed depending on second stream signal.
2828
2829 The filter accepts the following options:
2830
2831 @table @option
2832 @item level_in
2833 Set input level before filtering.
2834 Default is 1. Allowed range is from 0.015625 to 64.
2835
2836 @item range
2837 Set the level of gain reduction when the signal is below the threshold.
2838 Default is 0.06125. Allowed range is from 0 to 1.
2839
2840 @item threshold
2841 If a signal rises above this level the gain reduction is released.
2842 Default is 0.125. Allowed range is from 0 to 1.
2843
2844 @item ratio
2845 Set a ratio about which the signal is reduced.
2846 Default is 2. Allowed range is from 1 to 9000.
2847
2848 @item attack
2849 Amount of milliseconds the signal has to rise above the threshold before gain
2850 reduction stops.
2851 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
2852
2853 @item release
2854 Amount of milliseconds the signal has to fall below the threshold before the
2855 reduction is increased again. Default is 250 milliseconds.
2856 Allowed range is from 0.01 to 9000.
2857
2858 @item makeup
2859 Set amount of amplification of signal after processing.
2860 Default is 1. Allowed range is from 1 to 64.
2861
2862 @item knee
2863 Curve the sharp knee around the threshold to enter gain reduction more softly.
2864 Default is 2.828427125. Allowed range is from 1 to 8.
2865
2866 @item detection
2867 Choose if exact signal should be taken for detection or an RMS like one.
2868 Default is rms. Can be peak or rms.
2869
2870 @item link
2871 Choose if the average level between all channels or the louder channel affects
2872 the reduction.
2873 Default is average. Can be average or maximum.
2874
2875 @item level_sc
2876 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
2877 @end table
2878
2879 @section silencedetect
2880
2881 Detect silence in an audio stream.
2882
2883 This filter logs a message when it detects that the input audio volume is less
2884 or equal to a noise tolerance value for a duration greater or equal to the
2885 minimum detected noise duration.
2886
2887 The printed times and duration are expressed in seconds.
2888
2889 The filter accepts the following options:
2890
2891 @table @option
2892 @item duration, d
2893 Set silence duration until notification (default is 2 seconds).
2894
2895 @item noise, n
2896 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2897 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2898 @end table
2899
2900 @subsection Examples
2901
2902 @itemize
2903 @item
2904 Detect 5 seconds of silence with -50dB noise tolerance:
2905 @example
2906 silencedetect=n=-50dB:d=5
2907 @end example
2908
2909 @item
2910 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2911 tolerance in @file{silence.mp3}:
2912 @example
2913 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2914 @end example
2915 @end itemize
2916
2917 @section silenceremove
2918
2919 Remove silence from the beginning, middle or end of the audio.
2920
2921 The filter accepts the following options:
2922
2923 @table @option
2924 @item start_periods
2925 This value is used to indicate if audio should be trimmed at beginning of
2926 the audio. A value of zero indicates no silence should be trimmed from the
2927 beginning. When specifying a non-zero value, it trims audio up until it
2928 finds non-silence. Normally, when trimming silence from beginning of audio
2929 the @var{start_periods} will be @code{1} but it can be increased to higher
2930 values to trim all audio up to specific count of non-silence periods.
2931 Default value is @code{0}.
2932
2933 @item start_duration
2934 Specify the amount of time that non-silence must be detected before it stops
2935 trimming audio. By increasing the duration, bursts of noises can be treated
2936 as silence and trimmed off. Default value is @code{0}.
2937
2938 @item start_threshold
2939 This indicates what sample value should be treated as silence. For digital
2940 audio, a value of @code{0} may be fine but for audio recorded from analog,
2941 you may wish to increase the value to account for background noise.
2942 Can be specified in dB (in case "dB" is appended to the specified value)
2943 or amplitude ratio. Default value is @code{0}.
2944
2945 @item stop_periods
2946 Set the count for trimming silence from the end of audio.
2947 To remove silence from the middle of a file, specify a @var{stop_periods}
2948 that is negative. This value is then treated as a positive value and is
2949 used to indicate the effect should restart processing as specified by
2950 @var{start_periods}, making it suitable for removing periods of silence
2951 in the middle of the audio.
2952 Default value is @code{0}.
2953
2954 @item stop_duration
2955 Specify a duration of silence that must exist before audio is not copied any
2956 more. By specifying a higher duration, silence that is wanted can be left in
2957 the audio.
2958 Default value is @code{0}.
2959
2960 @item stop_threshold
2961 This is the same as @option{start_threshold} but for trimming silence from
2962 the end of audio.
2963 Can be specified in dB (in case "dB" is appended to the specified value)
2964 or amplitude ratio. Default value is @code{0}.
2965
2966 @item leave_silence
2967 This indicate that @var{stop_duration} length of audio should be left intact
2968 at the beginning of each period of silence.
2969 For example, if you want to remove long pauses between words but do not want
2970 to remove the pauses completely. Default value is @code{0}.
2971
2972 @item detection
2973 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
2974 and works better with digital silence which is exactly 0.
2975 Default value is @code{rms}.
2976
2977 @item window
2978 Set ratio used to calculate size of window for detecting silence.
2979 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
2980 @end table
2981
2982 @subsection Examples
2983
2984 @itemize
2985 @item
2986 The following example shows how this filter can be used to start a recording
2987 that does not contain the delay at the start which usually occurs between
2988 pressing the record button and the start of the performance:
2989 @example
2990 silenceremove=1:5:0.02
2991 @end example
2992
2993 @item
2994 Trim all silence encountered from begining to end where there is more than 1
2995 second of silence in audio:
2996 @example
2997 silenceremove=0:0:0:-1:1:-90dB
2998 @end example
2999 @end itemize
3000
3001 @section sofalizer
3002
3003 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3004 loudspeakers around the user for binaural listening via headphones (audio
3005 formats up to 9 channels supported).
3006 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3007 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3008 Austrian Academy of Sciences.
3009
3010 To enable compilation of this filter you need to configure FFmpeg with
3011 @code{--enable-netcdf}.
3012
3013 The filter accepts the following options:
3014
3015 @table @option
3016 @item sofa
3017 Set the SOFA file used for rendering.
3018
3019 @item gain
3020 Set gain applied to audio. Value is in dB. Default is 0.
3021
3022 @item rotation
3023 Set rotation of virtual loudspeakers in deg. Default is 0.
3024
3025 @item elevation
3026 Set elevation of virtual speakers in deg. Default is 0.
3027
3028 @item radius
3029 Set distance in meters between loudspeakers and the listener with near-field
3030 HRTFs. Default is 1.
3031
3032 @item type
3033 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3034 processing audio in time domain which is slow but gives high quality output.
3035 @var{freq} is processing audio in frequency domain which is fast but gives
3036 mediocre output. Default is @var{freq}.
3037 @end table
3038
3039 @section stereotools
3040
3041 This filter has some handy utilities to manage stereo signals, for converting
3042 M/S stereo recordings to L/R signal while having control over the parameters
3043 or spreading the stereo image of master track.
3044
3045 The filter accepts the following options:
3046
3047 @table @option
3048 @item level_in
3049 Set input level before filtering for both channels. Defaults is 1.
3050 Allowed range is from 0.015625 to 64.
3051
3052 @item level_out
3053 Set output level after filtering for both channels. Defaults is 1.
3054 Allowed range is from 0.015625 to 64.
3055
3056 @item balance_in
3057 Set input balance between both channels. Default is 0.
3058 Allowed range is from -1 to 1.
3059
3060 @item balance_out
3061 Set output balance between both channels. Default is 0.
3062 Allowed range is from -1 to 1.
3063
3064 @item softclip
3065 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3066 clipping. Disabled by default.
3067
3068 @item mutel
3069 Mute the left channel. Disabled by default.
3070
3071 @item muter
3072 Mute the right channel. Disabled by default.
3073
3074 @item phasel
3075 Change the phase of the left channel. Disabled by default.
3076
3077 @item phaser
3078 Change the phase of the right channel. Disabled by default.
3079
3080 @item mode
3081 Set stereo mode. Available values are:
3082
3083 @table @samp
3084 @item lr>lr
3085 Left/Right to Left/Right, this is default.
3086
3087 @item lr>ms
3088 Left/Right to Mid/Side.
3089
3090 @item ms>lr
3091 Mid/Side to Left/Right.
3092
3093 @item lr>ll
3094 Left/Right to Left/Left.
3095
3096 @item lr>rr
3097 Left/Right to Right/Right.
3098
3099 @item lr>l+r
3100 Left/Right to Left + Right.
3101
3102 @item lr>rl
3103 Left/Right to Right/Left.
3104 @end table
3105
3106 @item slev
3107 Set level of side signal. Default is 1.
3108 Allowed range is from 0.015625 to 64.
3109
3110 @item sbal
3111 Set balance of side signal. Default is 0.
3112 Allowed range is from -1 to 1.
3113
3114 @item mlev
3115 Set level of the middle signal. Default is 1.
3116 Allowed range is from 0.015625 to 64.
3117
3118 @item mpan
3119 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3120
3121 @item base
3122 Set stereo base between mono and inversed channels. Default is 0.
3123 Allowed range is from -1 to 1.
3124
3125 @item delay
3126 Set delay in milliseconds how much to delay left from right channel and
3127 vice versa. Default is 0. Allowed range is from -20 to 20.
3128
3129 @item sclevel
3130 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3131
3132 @item phase
3133 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3134 @end table
3135
3136 @section stereowiden
3137
3138 This filter enhance the stereo effect by suppressing signal common to both
3139 channels and by delaying the signal of left into right and vice versa,
3140 thereby widening the stereo effect.
3141
3142 The filter accepts the following options:
3143
3144 @table @option
3145 @item delay
3146 Time in milliseconds of the delay of left signal into right and vice versa.
3147 Default is 20 milliseconds.
3148
3149 @item feedback
3150 Amount of gain in delayed signal into right and vice versa. Gives a delay
3151 effect of left signal in right output and vice versa which gives widening
3152 effect. Default is 0.3.
3153
3154 @item crossfeed
3155 Cross feed of left into right with inverted phase. This helps in suppressing
3156 the mono. If the value is 1 it will cancel all the signal common to both
3157 channels. Default is 0.3.
3158
3159 @item drymix
3160 Set level of input signal of original channel. Default is 0.8.
3161 @end table
3162
3163 @section treble
3164
3165 Boost or cut treble (upper) frequencies of the audio using a two-pole
3166 shelving filter with a response similar to that of a standard
3167 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3168
3169 The filter accepts the following options:
3170
3171 @table @option
3172 @item gain, g
3173 Give the gain at whichever is the lower of ~22 kHz and the
3174 Nyquist frequency. Its useful range is about -20 (for a large cut)
3175 to +20 (for a large boost). Beware of clipping when using a positive gain.
3176
3177 @item frequency, f
3178 Set the filter's central frequency and so can be used
3179 to extend or reduce the frequency range to be boosted or cut.
3180 The default value is @code{3000} Hz.
3181
3182 @item width_type
3183 Set method to specify band-width of filter.
3184 @table @option
3185 @item h
3186 Hz
3187 @item q
3188 Q-Factor
3189 @item o
3190 octave
3191 @item s
3192 slope
3193 @end table
3194
3195 @item width, w
3196 Determine how steep is the filter's shelf transition.
3197 @end table
3198
3199 @section tremolo
3200
3201 Sinusoidal amplitude modulation.
3202
3203 The filter accepts the following options:
3204
3205 @table @option
3206 @item f
3207 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3208 (20 Hz or lower) will result in a tremolo effect.
3209 This filter may also be used as a ring modulator by specifying
3210 a modulation frequency higher than 20 Hz.
3211 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3212
3213 @item d
3214 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3215 Default value is 0.5.
3216 @end table
3217
3218 @section vibrato
3219
3220 Sinusoidal phase modulation.
3221
3222 The filter accepts the following options:
3223
3224 @table @option
3225 @item f
3226 Modulation frequency in Hertz.
3227 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3228
3229 @item d
3230 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3231 Default value is 0.5.
3232 @end table
3233
3234 @section volume
3235
3236 Adjust the input audio volume.
3237
3238 It accepts the following parameters:
3239 @table @option
3240
3241 @item volume
3242 Set audio volume expression.
3243
3244 Output values are clipped to the maximum value.
3245
3246 The output audio volume is given by the relation:
3247 @example
3248 @var{output_volume} = @var{volume} * @var{input_volume}
3249 @end example
3250
3251 The default value for @var{volume} is "1.0".
3252
3253 @item precision
3254 This parameter represents the mathematical precision.
3255
3256 It determines which input sample formats will be allowed, which affects the
3257 precision of the volume scaling.
3258
3259 @table @option
3260 @item fixed
3261 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3262 @item float
3263 32-bit floating-point; this limits input sample format to FLT. (default)
3264 @item double
3265 64-bit floating-point; this limits input sample format to DBL.
3266 @end table
3267
3268 @item replaygain
3269 Choose the behaviour on encountering ReplayGain side data in input frames.
3270
3271 @table @option
3272 @item drop
3273 Remove ReplayGain side data, ignoring its contents (the default).
3274
3275 @item ignore
3276 Ignore ReplayGain side data, but leave it in the frame.
3277
3278 @item track
3279 Prefer the track gain, if present.
3280
3281 @item album
3282 Prefer the album gain, if present.
3283 @end table
3284
3285 @item replaygain_preamp
3286 Pre-amplification gain in dB to apply to the selected replaygain gain.
3287
3288 Default value for @var{replaygain_preamp} is 0.0.
3289
3290 @item eval
3291 Set when the volume expression is evaluated.
3292
3293 It accepts the following values:
3294 @table @samp
3295 @item once
3296 only evaluate expression once during the filter initialization, or
3297 when the @samp{volume} command is sent
3298
3299 @item frame
3300 evaluate expression for each incoming frame
3301 @end table
3302
3303 Default value is @samp{once}.
3304 @end table
3305
3306 The volume expression can contain the following parameters.
3307
3308 @table @option
3309 @item n
3310 frame number (starting at zero)
3311 @item nb_channels
3312 number of channels
3313 @item nb_consumed_samples
3314 number of samples consumed by the filter
3315 @item nb_samples
3316 number of samples in the current frame
3317 @item pos
3318 original frame position in the file
3319 @item pts
3320 frame PTS
3321 @item sample_rate
3322 sample rate
3323 @item startpts
3324 PTS at start of stream
3325 @item startt
3326 time at start of stream
3327 @item t
3328 frame time
3329 @item tb
3330 timestamp timebase
3331 @item volume
3332 last set volume value
3333 @end table
3334
3335 Note that when @option{eval} is set to @samp{once} only the
3336 @var{sample_rate} and @var{tb} variables are available, all other
3337 variables will evaluate to NAN.
3338
3339 @subsection Commands
3340
3341 This filter supports the following commands:
3342 @table @option
3343 @item volume
3344 Modify the volume expression.
3345 The command accepts the same syntax of the corresponding option.
3346
3347 If the specified expression is not valid, it is kept at its current
3348 value.
3349 @item replaygain_noclip
3350 Prevent clipping by limiting the gain applied.
3351
3352 Default value for @var{replaygain_noclip} is 1.
3353
3354 @end table
3355
3356 @subsection Examples
3357
3358 @itemize
3359 @item
3360 Halve the input audio volume:
3361 @example
3362 volume=volume=0.5
3363 volume=volume=1/2
3364 volume=volume=-6.0206dB
3365 @end example
3366
3367 In all the above example the named key for @option{volume} can be
3368 omitted, for example like in:
3369 @example
3370 volume=0.5
3371 @end example
3372
3373 @item
3374 Increase input audio power by 6 decibels using fixed-point precision:
3375 @example
3376 volume=volume=6dB:precision=fixed
3377 @end example
3378
3379 @item
3380 Fade volume after time 10 with an annihilation period of 5 seconds:
3381 @example
3382 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3383 @end example
3384 @end itemize
3385
3386 @section volumedetect
3387
3388 Detect the volume of the input video.
3389
3390 The filter has no parameters. The input is not modified. Statistics about
3391 the volume will be printed in the log when the input stream end is reached.
3392
3393 In particular it will show the mean volume (root mean square), maximum
3394 volume (on a per-sample basis), and the beginning of a histogram of the
3395 registered volume values (from the maximum value to a cumulated 1/1000 of
3396 the samples).
3397
3398 All volumes are in decibels relative to the maximum PCM value.
3399
3400 @subsection Examples
3401
3402 Here is an excerpt of the output:
3403 @example
3404 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3405 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3406 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3407 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3408 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3409 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3410 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3411 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3412 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3413 @end example
3414
3415 It means that:
3416 @itemize
3417 @item
3418 The mean square energy is approximately -27 dB, or 10^-2.7.
3419 @item
3420 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3421 @item
3422 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3423 @end itemize
3424
3425 In other words, raising the volume by +4 dB does not cause any clipping,
3426 raising it by +5 dB causes clipping for 6 samples, etc.
3427
3428 @c man end AUDIO FILTERS
3429
3430 @chapter Audio Sources
3431 @c man begin AUDIO SOURCES
3432
3433 Below is a description of the currently available audio sources.
3434
3435 @section abuffer
3436
3437 Buffer audio frames, and make them available to the filter chain.
3438
3439 This source is mainly intended for a programmatic use, in particular
3440 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3441
3442 It accepts the following parameters:
3443 @table @option
3444
3445 @item time_base
3446 The timebase which will be used for timestamps of submitted frames. It must be
3447 either a floating-point number or in @var{numerator}/@var{denominator} form.
3448
3449 @item sample_rate
3450 The sample rate of the incoming audio buffers.
3451
3452 @item sample_fmt
3453 The sample format of the incoming audio buffers.
3454 Either a sample format name or its corresponding integer representation from
3455 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3456
3457 @item channel_layout
3458 The channel layout of the incoming audio buffers.
3459 Either a channel layout name from channel_layout_map in
3460 @file{libavutil/channel_layout.c} or its corresponding integer representation
3461 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3462
3463 @item channels
3464 The number of channels of the incoming audio buffers.
3465 If both @var{channels} and @var{channel_layout} are specified, then they
3466 must be consistent.
3467
3468 @end table
3469
3470 @subsection Examples
3471
3472 @example
3473 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3474 @end example
3475
3476 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3477 Since the sample format with name "s16p" corresponds to the number
3478 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3479 equivalent to:
3480 @example
3481 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3482 @end example
3483
3484 @section aevalsrc
3485
3486 Generate an audio signal specified by an expression.
3487
3488 This source accepts in input one or more expressions (one for each
3489 channel), which are evaluated and used to generate a corresponding
3490 audio signal.
3491
3492 This source accepts the following options:
3493
3494 @table @option
3495 @item exprs
3496 Set the '|'-separated expressions list for each separate channel. In case the
3497 @option{channel_layout} option is not specified, the selected channel layout
3498 depends on the number of provided expressions. Otherwise the last
3499 specified expression is applied to the remaining output channels.
3500
3501 @item channel_layout, c
3502 Set the channel layout. The number of channels in the specified layout
3503 must be equal to the number of specified expressions.
3504
3505 @item duration, d
3506 Set the minimum duration of the sourced audio. See
3507 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3508 for the accepted syntax.
3509 Note that the resulting duration may be greater than the specified
3510 duration, as the generated audio is always cut at the end of a
3511 complete frame.
3512
3513 If not specified, or the expressed duration is negative, the audio is
3514 supposed to be generated forever.
3515
3516 @item nb_samples, n
3517 Set the number of samples per channel per each output frame,
3518 default to 1024.
3519
3520 @item sample_rate, s
3521 Specify the sample rate, default to 44100.
3522 @end table
3523
3524 Each expression in @var{exprs} can contain the following constants:
3525
3526 @table @option
3527 @item n
3528 number of the evaluated sample, starting from 0
3529
3530 @item t
3531 time of the evaluated sample expressed in seconds, starting from 0
3532
3533 @item s
3534 sample rate
3535
3536 @end table
3537
3538 @subsection Examples
3539
3540 @itemize
3541 @item
3542 Generate silence:
3543 @example
3544 aevalsrc=0
3545 @end example
3546
3547 @item
3548 Generate a sin signal with frequency of 440 Hz, set sample rate to
3549 8000 Hz:
3550 @example
3551 aevalsrc="sin(440*2*PI*t):s=8000"
3552 @end example
3553
3554 @item
3555 Generate a two channels signal, specify the channel layout (Front
3556 Center + Back Center) explicitly:
3557 @example
3558 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3559 @end example
3560
3561 @item
3562 Generate white noise:
3563 @example
3564 aevalsrc="-2+random(0)"
3565 @end example
3566
3567 @item
3568 Generate an amplitude modulated signal:
3569 @example
3570 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3571 @end example
3572
3573 @item
3574 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3575 @example
3576 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3577 @end example
3578
3579 @end itemize
3580
3581 @section anullsrc
3582
3583 The null audio source, return unprocessed audio frames. It is mainly useful
3584 as a template and to be employed in analysis / debugging tools, or as
3585 the source for filters which ignore the input data (for example the sox
3586 synth filter).
3587
3588 This source accepts the following options:
3589
3590 @table @option
3591
3592 @item channel_layout, cl
3593
3594 Specifies the channel layout, and can be either an integer or a string
3595 representing a channel layout. The default value of @var{channel_layout}
3596 is "stereo".
3597
3598 Check the channel_layout_map definition in
3599 @file{libavutil/channel_layout.c} for the mapping between strings and
3600 channel layout values.
3601
3602 @item sample_rate, r
3603 Specifies the sample rate, and defaults to 44100.
3604
3605 @item nb_samples, n
3606 Set the number of samples per requested frames.
3607
3608 @end table
3609
3610 @subsection Examples
3611
3612 @itemize
3613 @item
3614 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3615 @example
3616 anullsrc=r=48000:cl=4
3617 @end example
3618
3619 @item
3620 Do the same operation with a more obvious syntax:
3621 @example
3622 anullsrc=r=48000:cl=mono
3623 @end example
3624 @end itemize
3625
3626 All the parameters need to be explicitly defined.
3627
3628 @section flite
3629
3630 Synthesize a voice utterance using the libflite library.
3631
3632 To enable compilation of this filter you need to configure FFmpeg with
3633 @code{--enable-libflite}.
3634
3635 Note that the flite library is not thread-safe.
3636
3637 The filter accepts the following options:
3638
3639 @table @option
3640
3641 @item list_voices
3642 If set to 1, list the names of the available voices and exit
3643 immediately. Default value is 0.
3644
3645 @item nb_samples, n
3646 Set the maximum number of samples per frame. Default value is 512.
3647
3648 @item textfile
3649 Set the filename containing the text to speak.
3650
3651 @item text
3652 Set the text to speak.
3653
3654 @item voice, v
3655 Set the voice to use for the speech synthesis. Default value is
3656 @code{kal}. See also the @var{list_voices} option.
3657 @end table
3658
3659 @subsection Examples
3660
3661 @itemize
3662 @item
3663 Read from file @file{speech.txt}, and synthesize the text using the
3664 standard flite voice:
3665 @example
3666 flite=textfile=speech.txt
3667 @end example
3668
3669 @item
3670 Read the specified text selecting the @code{slt} voice:
3671 @example
3672 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3673 @end example
3674
3675 @item
3676 Input text to ffmpeg:
3677 @example
3678 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3679 @end example
3680
3681 @item
3682 Make @file{ffplay} speak the specified text, using @code{flite} and
3683 the @code{lavfi} device:
3684 @example
3685 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3686 @end example
3687 @end itemize
3688
3689 For more information about libflite, check:
3690 @url{http://www.speech.cs.cmu.edu/flite/}
3691
3692 @section anoisesrc
3693
3694 Generate a noise audio signal.
3695
3696 The filter accepts the following options:
3697
3698 @table @option
3699 @item sample_rate, r
3700 Specify the sample rate. Default value is 48000 Hz.
3701
3702 @item amplitude, a
3703 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3704 is 1.0.
3705
3706 @item duration, d
3707 Specify the duration of the generated audio stream. Not specifying this option
3708 results in noise with an infinite length.
3709
3710 @item color, colour, c
3711 Specify the color of noise. Available noise colors are white, pink, and brown.
3712 Default color is white.
3713
3714 @item seed, s
3715 Specify a value used to seed the PRNG.
3716
3717 @item nb_samples, n
3718 Set the number of samples per each output frame, default is 1024.
3719 @end table
3720
3721 @subsection Examples
3722
3723 @itemize
3724
3725 @item
3726 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
3727 @example
3728 anoisesrc=d=60:c=pink:r=44100:a=0.5
3729 @end example
3730 @end itemize
3731
3732 @section sine
3733
3734 Generate an audio signal made of a sine wave with amplitude 1/8.
3735
3736 The audio signal is bit-exact.
3737
3738 The filter accepts the following options:
3739
3740 @table @option
3741
3742 @item frequency, f
3743 Set the carrier frequency. Default is 440 Hz.
3744
3745 @item beep_factor, b
3746 Enable a periodic beep every second with frequency @var{beep_factor} times
3747 the carrier frequency. Default is 0, meaning the beep is disabled.
3748
3749 @item sample_rate, r
3750 Specify the sample rate, default is 44100.
3751
3752 @item duration, d
3753 Specify the duration of the generated audio stream.
3754
3755 @item samples_per_frame
3756 Set the number of samples per output frame.
3757
3758 The expression can contain the following constants:
3759
3760 @table @option
3761 @item n
3762 The (sequential) number of the output audio frame, starting from 0.
3763
3764 @item pts
3765 The PTS (Presentation TimeStamp) of the output audio frame,
3766 expressed in @var{TB} units.
3767
3768 @item t
3769 The PTS of the output audio frame, expressed in seconds.
3770
3771 @item TB
3772 The timebase of the output audio frames.
3773 @end table
3774
3775 Default is @code{1024}.
3776 @end table
3777
3778 @subsection Examples
3779
3780 @itemize
3781
3782 @item
3783 Generate a simple 440 Hz sine wave:
3784 @example
3785 sine
3786 @end example
3787
3788 @item
3789 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
3790 @example
3791 sine=220:4:d=5
3792 sine=f=220:b=4:d=5
3793 sine=frequency=220:beep_factor=4:duration=5
3794 @end example
3795
3796 @item
3797 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
3798 pattern:
3799 @example
3800 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
3801 @end example
3802 @end itemize
3803
3804 @c man end AUDIO SOURCES
3805
3806 @chapter Audio Sinks
3807 @c man begin AUDIO SINKS
3808
3809 Below is a description of the currently available audio sinks.
3810
3811 @section abuffersink
3812
3813 Buffer audio frames, and make them available to the end of filter chain.
3814
3815 This sink is mainly intended for programmatic use, in particular
3816 through the interface defined in @file{libavfilter/buffersink.h}
3817 or the options system.
3818
3819 It accepts a pointer to an AVABufferSinkContext structure, which
3820 defines the incoming buffers' formats, to be passed as the opaque
3821 parameter to @code{avfilter_init_filter} for initialization.
3822 @section anullsink
3823
3824 Null audio sink; do absolutely nothing with the input audio. It is
3825 mainly useful as a template and for use in analysis / debugging
3826 tools.
3827
3828 @c man end AUDIO SINKS
3829
3830 @chapter Video Filters
3831 @c man begin VIDEO FILTERS
3832
3833 When you configure your FFmpeg build, you can disable any of the
3834 existing filters using @code{--disable-filters}.
3835 The configure output will show the video filters included in your
3836 build.
3837
3838 Below is a description of the currently available video filters.
3839
3840 @section alphaextract
3841
3842 Extract the alpha component from the input as a grayscale video. This
3843 is especially useful with the @var{alphamerge} filter.
3844
3845 @section alphamerge
3846
3847 Add or replace the alpha component of the primary input with the
3848 grayscale value of a second input. This is intended for use with
3849 @var{alphaextract} to allow the transmission or storage of frame
3850 sequences that have alpha in a format that doesn't support an alpha
3851 channel.
3852
3853 For example, to reconstruct full frames from a normal YUV-encoded video
3854 and a separate video created with @var{alphaextract}, you might use:
3855 @example
3856 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
3857 @end example
3858
3859 Since this filter is designed for reconstruction, it operates on frame
3860 sequences without considering timestamps, and terminates when either
3861 input reaches end of stream. This will cause problems if your encoding
3862 pipeline drops frames. If you're trying to apply an image as an
3863 overlay to a video stream, consider the @var{overlay} filter instead.
3864
3865 @section ass
3866
3867 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
3868 and libavformat to work. On the other hand, it is limited to ASS (Advanced
3869 Substation Alpha) subtitles files.
3870
3871 This filter accepts the following option in addition to the common options from
3872 the @ref{subtitles} filter:
3873
3874 @table @option
3875 @item shaping
3876 Set the shaping engine
3877
3878 Available values are:
3879 @table @samp
3880 @item auto
3881 The default libass shaping engine, which is the best available.
3882 @item simple
3883 Fast, font-agnostic shaper that can do only substitutions
3884 @item complex
3885 Slower shaper using OpenType for substitutions and positioning
3886 @end table
3887
3888 The default is @code{auto}.
3889 @end table
3890
3891 @section atadenoise
3892 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3893
3894 The filter accepts the following options:
3895
3896 @table @option
3897 @item 0a
3898 Set threshold A for 1st plane. Default is 0.02.
3899 Valid range is 0 to 0.3.
3900
3901 @item 0b
3902 Set threshold B for 1st plane. Default is 0.04.
3903 Valid range is 0 to 5.
3904
3905 @item 1a
3906 Set threshold A for 2nd plane. Default is 0.02.
3907 Valid range is 0 to 0.3.
3908
3909 @item 1b
3910 Set threshold B for 2nd plane. Default is 0.04.
3911 Valid range is 0 to 5.
3912
3913 @item 2a
3914 Set threshold A for 3rd plane. Default is 0.02.
3915 Valid range is 0 to 0.3.
3916
3917 @item 2b
3918 Set threshold B for 3rd plane. Default is 0.04.
3919 Valid range is 0 to 5.
3920
3921 Threshold A is designed to react on abrupt changes in the input signal and
3922 threshold B is designed to react on continuous changes in the input signal.
3923
3924 @item s
3925 Set number of frames filter will use for averaging. Default is 33. Must be odd
3926 number in range [5, 129].
3927 @end table
3928
3929 @section bbox
3930
3931 Compute the bounding box for the non-black pixels in the input frame
3932 luminance plane.
3933
3934 This filter computes the bounding box containing all the pixels with a
3935 luminance value greater than the minimum allowed value.
3936 The parameters describing the bounding box are printed on the filter
3937 log.
3938
3939 The filter accepts the following option:
3940
3941 @table @option
3942 @item min_val
3943 Set the minimal luminance value. Default is @code{16}.
3944 @end table
3945
3946 @section blackdetect
3947
3948 Detect video intervals that are (almost) completely black. Can be
3949 useful to detect chapter transitions, commercials, or invalid
3950 recordings. Output lines contains the time for the start, end and
3951 duration of the detected black interval expressed in seconds.
3952
3953 In order to display the output lines, you need to set the loglevel at
3954 least to the AV_LOG_INFO value.
3955
3956 The filter accepts the following options:
3957
3958 @table @option
3959 @item black_min_duration, d
3960 Set the minimum detected black duration expressed in seconds. It must
3961 be a non-negative floating point number.
3962
3963 Default value is 2.0.
3964
3965 @item picture_black_ratio_th, pic_th
3966 Set the threshold for considering a picture "black".
3967 Express the minimum value for the ratio:
3968 @example
3969 @var{nb_black_pixels} / @var{nb_pixels}
3970 @end example
3971
3972 for which a picture is considered black.
3973 Default value is 0.98.
3974
3975 @item pixel_black_th, pix_th
3976 Set the threshold for considering a pixel "black".
3977
3978 The threshold expresses the maximum pixel luminance value for which a
3979 pixel is considered "black". The provided value is scaled according to
3980 the following equation:
3981 @example
3982 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
3983 @end example
3984
3985 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
3986 the input video format, the range is [0-255] for YUV full-range
3987 formats and [16-235] for YUV non full-range formats.
3988
3989 Default value is 0.10.
3990 @end table
3991
3992 The following example sets the maximum pixel threshold to the minimum
3993 value, and detects only black intervals of 2 or more seconds:
3994 @example
3995 blackdetect=d=2:pix_th=0.00
3996 @end example
3997
3998 @section blackframe
3999
4000 Detect frames that are (almost) completely black. Can be useful to
4001 detect chapter transitions or commercials. Output lines consist of
4002 the frame number of the detected frame, the percentage of blackness,
4003 the position in the file if known or -1 and the timestamp in seconds.
4004
4005 In order to display the output lines, you need to set the loglevel at
4006 least to the AV_LOG_INFO value.
4007
4008 It accepts the following parameters:
4009
4010 @table @option
4011
4012 @item amount
4013 The percentage of the pixels that have to be below the threshold; it defaults to
4014 @code{98}.
4015
4016 @item threshold, thresh
4017 The threshold below which a pixel value is considered black; it defaults to
4018 @code{32}.
4019
4020 @end table
4021
4022 @section blend, tblend
4023
4024 Blend two video frames into each other.
4025
4026 The @code{blend} filter takes two input streams and outputs one
4027 stream, the first input is the "top" layer and second input is
4028 "bottom" layer.  Output terminates when shortest input terminates.
4029
4030 The @code{tblend} (time blend) filter takes two consecutive frames
4031 from one single stream, and outputs the result obtained by blending
4032 the new frame on top of the old frame.
4033
4034 A description of the accepted options follows.
4035
4036 @table @option
4037 @item c0_mode
4038 @item c1_mode
4039 @item c2_mode
4040 @item c3_mode
4041 @item all_mode
4042 Set blend mode for specific pixel component or all pixel components in case
4043 of @var{all_mode}. Default value is @code{normal}.
4044
4045 Available values for component modes are:
4046 @table @samp
4047 @item addition
4048 @item addition128
4049 @item and
4050 @item average
4051 @item burn
4052 @item darken
4053 @item difference
4054 @item difference128
4055 @item divide
4056 @item dodge
4057 @item exclusion
4058 @item glow
4059 @item hardlight
4060 @item hardmix
4061 @item lighten
4062 @item linearlight
4063 @item multiply
4064 @item negation
4065 @item normal
4066 @item or
4067 @item overlay
4068 @item phoenix
4069 @item pinlight
4070 @item reflect
4071 @item screen
4072 @item softlight
4073 @item subtract
4074 @item vividlight
4075 @item xor
4076 @end table
4077
4078 @item c0_opacity
4079 @item c1_opacity
4080 @item c2_opacity
4081 @item c3_opacity
4082 @item all_opacity
4083 Set blend opacity for specific pixel component or all pixel components in case
4084 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4085
4086 @item c0_expr
4087 @item c1_expr
4088 @item c2_expr
4089 @item c3_expr
4090 @item all_expr
4091 Set blend expression for specific pixel component or all pixel components in case
4092 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4093
4094 The expressions can use the following variables:
4095
4096 @table @option
4097 @item N
4098 The sequential number of the filtered frame, starting from @code{0}.
4099
4100 @item X
4101 @item Y
4102 the coordinates of the current sample
4103
4104 @item W
4105 @item H
4106 the width and height of currently filtered plane
4107
4108 @item SW
4109 @item SH
4110 Width and height scale depending on the currently filtered plane. It is the
4111 ratio between the corresponding luma plane number of pixels and the current
4112 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4113 @code{0.5,0.5} for chroma planes.
4114
4115 @item T
4116 Time of the current frame, expressed in seconds.
4117
4118 @item TOP, A
4119 Value of pixel component at current location for first video frame (top layer).
4120
4121 @item BOTTOM, B
4122 Value of pixel component at current location for second video frame (bottom layer).
4123 @end table
4124
4125 @item shortest
4126 Force termination when the shortest input terminates. Default is
4127 @code{0}. This option is only defined for the @code{blend} filter.
4128
4129 @item repeatlast
4130 Continue applying the last bottom frame after the end of the stream. A value of
4131 @code{0} disable the filter after the last frame of the bottom layer is reached.
4132 Default is @code{1}. This option is only defined for the @code{blend} filter.
4133 @end table
4134
4135 @subsection Examples
4136
4137 @itemize
4138 @item
4139 Apply transition from bottom layer to top layer in first 10 seconds:
4140 @example
4141 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4142 @end example
4143
4144 @item
4145 Apply 1x1 checkerboard effect:
4146 @example
4147 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4148 @end example
4149
4150 @item
4151 Apply uncover left effect:
4152 @example
4153 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4154 @end example
4155
4156 @item
4157 Apply uncover down effect:
4158 @example
4159 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4160 @end example
4161
4162 @item
4163 Apply uncover up-left effect:
4164 @example
4165 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4166 @end example
4167
4168 @item
4169 Display differences between the current and the previous frame:
4170 @example
4171 tblend=all_mode=difference128
4172 @end example
4173 @end itemize
4174
4175 @section boxblur
4176
4177 Apply a boxblur algorithm to the input video.
4178
4179 It accepts the following parameters:
4180
4181 @table @option
4182
4183 @item luma_radius, lr
4184 @item luma_power, lp
4185 @item chroma_radius, cr
4186 @item chroma_power, cp
4187 @item alpha_radius, ar
4188 @item alpha_power, ap
4189
4190 @end table
4191
4192 A description of the accepted options follows.
4193
4194 @table @option
4195 @item luma_radius, lr
4196 @item chroma_radius, cr
4197 @item alpha_radius, ar
4198 Set an expression for the box radius in pixels used for blurring the
4199 corresponding input plane.
4200
4201 The radius value must be a non-negative number, and must not be
4202 greater than the value of the expression @code{min(w,h)/2} for the
4203 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4204 planes.
4205
4206 Default value for @option{luma_radius} is "2". If not specified,
4207 @option{chroma_radius} and @option{alpha_radius} default to the
4208 corresponding value set for @option{luma_radius}.
4209
4210 The expressions can contain the following constants:
4211 @table @option
4212 @item w
4213 @item h
4214 The input width and height in pixels.
4215
4216 @item cw
4217 @item ch
4218 The input chroma image width and height in pixels.
4219
4220 @item hsub
4221 @item vsub
4222 The horizontal and vertical chroma subsample values. For example, for the
4223 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4224 @end table
4225
4226 @item luma_power, lp
4227 @item chroma_power, cp
4228 @item alpha_power, ap
4229 Specify how many times the boxblur filter is applied to the
4230 corresponding plane.
4231
4232 Default value for @option{luma_power} is 2. If not specified,
4233 @option{chroma_power} and @option{alpha_power} default to the
4234 corresponding value set for @option{luma_power}.
4235
4236 A value of 0 will disable the effect.
4237 @end table
4238
4239 @subsection Examples
4240
4241 @itemize
4242 @item
4243 Apply a boxblur filter with the luma, chroma, and alpha radii
4244 set to 2:
4245 @example
4246 boxblur=luma_radius=2:luma_power=1
4247 boxblur=2:1
4248 @end example
4249
4250 @item
4251 Set the luma radius to 2, and alpha and chroma radius to 0:
4252 @example
4253 boxblur=2:1:cr=0:ar=0
4254 @end example
4255
4256 @item
4257 Set the luma and chroma radii to a fraction of the video dimension:
4258 @example
4259 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4260 @end example
4261 @end itemize
4262
4263 @section chromakey
4264 YUV colorspace color/chroma keying.
4265
4266 The filter accepts the following options:
4267
4268 @table @option
4269 @item color
4270 The color which will be replaced with transparency.
4271
4272 @item similarity
4273 Similarity percentage with the key color.
4274
4275 0.01 matches only the exact key color, while 1.0 matches everything.
4276
4277 @item blend
4278 Blend percentage.
4279
4280 0.0 makes pixels either fully transparent, or not transparent at all.
4281
4282 Higher values result in semi-transparent pixels, with a higher transparency
4283 the more similar the pixels color is to the key color.
4284
4285 @item yuv
4286 Signals that the color passed is already in YUV instead of RGB.
4287
4288 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4289 This can be used to pass exact YUV values as hexadecimal numbers.
4290 @end table
4291
4292 @subsection Examples
4293
4294 @itemize
4295 @item
4296 Make every green pixel in the input image transparent:
4297 @example
4298 ffmpeg -i input.png -vf chromakey=green out.png
4299 @end example
4300
4301 @item
4302 Overlay a greenscreen-video on top of a static black background.
4303 @example
4304 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
4305 @end example
4306 @end itemize
4307
4308 @section codecview
4309
4310 Visualize information exported by some codecs.
4311
4312 Some codecs can export information through frames using side-data or other
4313 means. For example, some MPEG based codecs export motion vectors through the
4314 @var{export_mvs} flag in the codec @option{flags2} option.
4315
4316 The filter accepts the following option:
4317
4318 @table @option
4319 @item mv
4320 Set motion vectors to visualize.
4321
4322 Available flags for @var{mv} are:
4323
4324 @table @samp
4325 @item pf
4326 forward predicted MVs of P-frames
4327 @item bf
4328 forward predicted MVs of B-frames
4329 @item bb
4330 backward predicted MVs of B-frames
4331 @end table
4332
4333 @item qp
4334 Display quantization parameters using the chroma planes
4335 @end table
4336
4337 @subsection Examples
4338
4339 @itemize
4340 @item
4341 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4342 @example
4343 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4344 @end example
4345 @end itemize
4346
4347 @section colorbalance
4348 Modify intensity of primary colors (red, green and blue) of input frames.
4349
4350 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4351 regions for the red-cyan, green-magenta or blue-yellow balance.
4352
4353 A positive adjustment value shifts the balance towards the primary color, a negative
4354 value towards the complementary color.
4355
4356 The filter accepts the following options:
4357
4358 @table @option
4359 @item rs
4360 @item gs
4361 @item bs
4362 Adjust red, green and blue shadows (darkest pixels).
4363
4364 @item rm
4365 @item gm
4366 @item bm
4367 Adjust red, green and blue midtones (medium pixels).
4368
4369 @item rh
4370 @item gh
4371 @item bh
4372 Adjust red, green and blue highlights (brightest pixels).
4373
4374 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4375 @end table
4376
4377 @subsection Examples
4378
4379 @itemize
4380 @item
4381 Add red color cast to shadows:
4382 @example
4383 colorbalance=rs=.3
4384 @end example
4385 @end itemize
4386
4387 @section colorkey
4388 RGB colorspace color keying.
4389
4390 The filter accepts the following options:
4391
4392 @table @option
4393 @item color
4394 The color which will be replaced with transparency.
4395
4396 @item similarity
4397 Similarity percentage with the key color.
4398
4399 0.01 matches only the exact key color, while 1.0 matches everything.
4400
4401 @item blend
4402 Blend percentage.
4403
4404 0.0 makes pixels either fully transparent, or not transparent at all.
4405
4406 Higher values result in semi-transparent pixels, with a higher transparency
4407 the more similar the pixels color is to the key color.
4408 @end table
4409
4410 @subsection Examples
4411
4412 @itemize
4413 @item
4414 Make every green pixel in the input image transparent:
4415 @example
4416 ffmpeg -i input.png -vf colorkey=green out.png
4417 @end example
4418
4419 @item
4420 Overlay a greenscreen-video on top of a static background image.
4421 @example
4422 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
4423 @end example
4424 @end itemize
4425
4426 @section colorlevels
4427
4428 Adjust video input frames using levels.
4429
4430 The filter accepts the following options:
4431
4432 @table @option
4433 @item rimin
4434 @item gimin
4435 @item bimin
4436 @item aimin
4437 Adjust red, green, blue and alpha input black point.
4438 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4439
4440 @item rimax
4441 @item gimax
4442 @item bimax
4443 @item aimax
4444 Adjust red, green, blue and alpha input white point.
4445 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4446
4447 Input levels are used to lighten highlights (bright tones), darken shadows
4448 (dark tones), change the balance of bright and dark tones.
4449
4450 @item romin
4451 @item gomin
4452 @item bomin
4453 @item aomin
4454 Adjust red, green, blue and alpha output black point.
4455 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4456
4457 @item romax
4458 @item gomax
4459 @item bomax
4460 @item aomax
4461 Adjust red, green, blue and alpha output white point.
4462 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4463
4464 Output levels allows manual selection of a constrained output level range.
4465 @end table
4466
4467 @subsection Examples
4468
4469 @itemize
4470 @item
4471 Make video output darker:
4472 @example
4473 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4474 @end example
4475
4476 @item
4477 Increase contrast:
4478 @example
4479 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4480 @end example
4481
4482 @item
4483 Make video output lighter:
4484 @example
4485 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4486 @end example
4487
4488 @item
4489 Increase brightness:
4490 @example
4491 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4492 @end example
4493 @end itemize
4494
4495 @section colorchannelmixer
4496
4497 Adjust video input frames by re-mixing color channels.
4498
4499 This filter modifies a color channel by adding the values associated to
4500 the other channels of the same pixels. For example if the value to
4501 modify is red, the output value will be:
4502 @example
4503 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4504 @end example
4505
4506 The filter accepts the following options:
4507
4508 @table @option
4509 @item rr
4510 @item rg
4511 @item rb
4512 @item ra
4513 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4514 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4515
4516 @item gr
4517 @item gg
4518 @item gb
4519 @item ga
4520 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4521 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4522
4523 @item br
4524 @item bg
4525 @item bb
4526 @item ba
4527 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4528 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4529
4530 @item ar
4531 @item ag
4532 @item ab
4533 @item aa
4534 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4535 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4536
4537 Allowed ranges for options are @code{[-2.0, 2.0]}.
4538 @end table
4539
4540 @subsection Examples
4541
4542 @itemize
4543 @item
4544 Convert source to grayscale:
4545 @example
4546 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4547 @end example
4548 @item
4549 Simulate sepia tones:
4550 @example
4551 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4552 @end example
4553 @end itemize
4554
4555 @section colormatrix
4556
4557 Convert color matrix.
4558
4559 The filter accepts the following options:
4560
4561 @table @option
4562 @item src
4563 @item dst
4564 Specify the source and destination color matrix. Both values must be
4565 specified.
4566
4567 The accepted values are:
4568 @table @samp
4569 @item bt709
4570 BT.709
4571
4572 @item bt601
4573 BT.601
4574
4575 @item smpte240m
4576 SMPTE-240M
4577
4578 @item fcc
4579 FCC
4580 @end table
4581 @end table
4582
4583 For example to convert from BT.601 to SMPTE-240M, use the command:
4584 @example
4585 colormatrix=bt601:smpte240m
4586 @end example
4587
4588 @section copy
4589
4590 Copy the input source unchanged to the output. This is mainly useful for
4591 testing purposes.
4592
4593 @section crop
4594
4595 Crop the input video to given dimensions.
4596
4597 It accepts the following parameters:
4598
4599 @table @option
4600 @item w, out_w
4601 The width of the output video. It defaults to @code{iw}.
4602 This expression is evaluated only once during the filter
4603 configuration, or when the @samp{w} or @samp{out_w} command is sent.
4604
4605 @item h, out_h
4606 The height of the output video. It defaults to @code{ih}.
4607 This expression is evaluated only once during the filter
4608 configuration, or when the @samp{h} or @samp{out_h} command is sent.
4609
4610 @item x
4611 The horizontal position, in the input video, of the left edge of the output
4612 video. It defaults to @code{(in_w-out_w)/2}.
4613 This expression is evaluated per-frame.
4614
4615 @item y
4616 The vertical position, in the input video, of the top edge of the output video.
4617 It defaults to @code{(in_h-out_h)/2}.
4618 This expression is evaluated per-frame.
4619
4620 @item keep_aspect
4621 If set to 1 will force the output display aspect ratio
4622 to be the same of the input, by changing the output sample aspect
4623 ratio. It defaults to 0.
4624 @end table
4625
4626 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
4627 expressions containing the following constants:
4628
4629 @table @option
4630 @item x
4631 @item y
4632 The computed values for @var{x} and @var{y}. They are evaluated for
4633 each new frame.
4634
4635 @item in_w
4636 @item in_h
4637 The input width and height.
4638
4639 @item iw
4640 @item ih
4641 These are the same as @var{in_w} and @var{in_h}.
4642
4643 @item out_w
4644 @item out_h
4645 The output (cropped) width and height.
4646
4647 @item ow
4648 @item oh
4649 These are the same as @var{out_w} and @var{out_h}.
4650
4651 @item a
4652 same as @var{iw} / @var{ih}
4653
4654 @item sar
4655 input sample aspect ratio
4656
4657 @item dar
4658 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4659
4660 @item hsub
4661 @item vsub
4662 horizontal and vertical chroma subsample values. For example for the
4663 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4664
4665 @item n
4666 The number of the input frame, starting from 0.
4667
4668 @item pos
4669 the position in the file of the input frame, NAN if unknown
4670
4671 @item t
4672 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
4673
4674 @end table
4675
4676 The expression for @var{out_w} may depend on the value of @var{out_h},
4677 and the expression for @var{out_h} may depend on @var{out_w}, but they
4678 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
4679 evaluated after @var{out_w} and @var{out_h}.
4680
4681 The @var{x} and @var{y} parameters specify the expressions for the
4682 position of the top-left corner of the output (non-cropped) area. They
4683 are evaluated for each frame. If the evaluated value is not valid, it
4684 is approximated to the nearest valid value.
4685
4686 The expression for @var{x} may depend on @var{y}, and the expression
4687 for @var{y} may depend on @var{x}.
4688
4689 @subsection Examples
4690
4691 @itemize
4692 @item
4693 Crop area with size 100x100 at position (12,34).
4694 @example
4695 crop=100:100:12:34
4696 @end example
4697
4698 Using named options, the example above becomes:
4699 @example
4700 crop=w=100:h=100:x=12:y=34
4701 @end example
4702
4703 @item
4704 Crop the central input area with size 100x100:
4705 @example
4706 crop=100:100
4707 @end example
4708
4709 @item
4710 Crop the central input area with size 2/3 of the input video:
4711 @example
4712 crop=2/3*in_w:2/3*in_h
4713 @end example
4714
4715 @item
4716 Crop the input video central square:
4717 @example
4718 crop=out_w=in_h
4719 crop=in_h
4720 @end example
4721
4722 @item
4723 Delimit the rectangle with the top-left corner placed at position
4724 100:100 and the right-bottom corner corresponding to the right-bottom
4725 corner of the input image.
4726 @example
4727 crop=in_w-100:in_h-100:100:100
4728 @end example
4729
4730 @item
4731 Crop 10 pixels from the left and right borders, and 20 pixels from
4732 the top and bottom borders
4733 @example
4734 crop=in_w-2*10:in_h-2*20
4735 @end example
4736
4737 @item
4738 Keep only the bottom right quarter of the input image:
4739 @example
4740 crop=in_w/2:in_h/2:in_w/2:in_h/2
4741 @end example
4742
4743 @item
4744 Crop height for getting Greek harmony:
4745 @example
4746 crop=in_w:1/PHI*in_w
4747 @end example
4748
4749 @item
4750 Apply trembling effect:
4751 @example
4752 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)
4753 @end example
4754
4755 @item
4756 Apply erratic camera effect depending on timestamp:
4757 @example
4758 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)"
4759 @end example
4760
4761 @item
4762 Set x depending on the value of y:
4763 @example
4764 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
4765 @end example
4766 @end itemize
4767
4768 @subsection Commands
4769
4770 This filter supports the following commands:
4771 @table @option
4772 @item w, out_w
4773 @item h, out_h
4774 @item x
4775 @item y
4776 Set width/height of the output video and the horizontal/vertical position
4777 in the input video.
4778 The command accepts the same syntax of the corresponding option.
4779
4780 If the specified expression is not valid, it is kept at its current
4781 value.
4782 @end table
4783
4784 @section cropdetect
4785
4786 Auto-detect the crop size.
4787
4788 It calculates the necessary cropping parameters and prints the
4789 recommended parameters via the logging system. The detected dimensions
4790 correspond to the non-black area of the input video.
4791
4792 It accepts the following parameters:
4793
4794 @table @option
4795
4796 @item limit
4797 Set higher black value threshold, which can be optionally specified
4798 from nothing (0) to everything (255 for 8bit based formats). An intensity
4799 value greater to the set value is considered non-black. It defaults to 24.
4800 You can also specify a value between 0.0 and 1.0 which will be scaled depending
4801 on the bitdepth of the pixel format.
4802
4803 @item round
4804 The value which the width/height should be divisible by. It defaults to
4805 16. The offset is automatically adjusted to center the video. Use 2 to
4806 get only even dimensions (needed for 4:2:2 video). 16 is best when
4807 encoding to most video codecs.
4808
4809 @item reset_count, reset
4810 Set the counter that determines after how many frames cropdetect will
4811 reset the previously detected largest video area and start over to
4812 detect the current optimal crop area. Default value is 0.
4813
4814 This can be useful when channel logos distort the video area. 0
4815 indicates 'never reset', and returns the largest area encountered during
4816 playback.
4817 @end table
4818
4819 @anchor{curves}
4820 @section curves
4821
4822 Apply color adjustments using curves.
4823
4824 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
4825 component (red, green and blue) has its values defined by @var{N} key points
4826 tied from each other using a smooth curve. The x-axis represents the pixel
4827 values from the input frame, and the y-axis the new pixel values to be set for
4828 the output frame.
4829
4830 By default, a component curve is defined by the two points @var{(0;0)} and
4831 @var{(1;1)}. This creates a straight line where each original pixel value is
4832 "adjusted" to its own value, which means no change to the image.
4833
4834 The filter allows you to redefine these two points and add some more. A new
4835 curve (using a natural cubic spline interpolation) will be define to pass
4836 smoothly through all these new coordinates. The new defined points needs to be
4837 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
4838 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
4839 the vector spaces, the values will be clipped accordingly.
4840
4841 If there is no key point defined in @code{x=0}, the filter will automatically
4842 insert a @var{(0;0)} point. In the same way, if there is no key point defined
4843 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
4844
4845 The filter accepts the following options:
4846
4847 @table @option
4848 @item preset
4849 Select one of the available color presets. This option can be used in addition
4850 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
4851 options takes priority on the preset values.
4852 Available presets are:
4853 @table @samp
4854 @item none
4855 @item color_negative
4856 @item cross_process
4857 @item darker
4858 @item increase_contrast
4859 @item lighter
4860 @item linear_contrast
4861 @item medium_contrast
4862 @item negative
4863 @item strong_contrast
4864 @item vintage
4865 @end table
4866 Default is @code{none}.
4867 @item master, m
4868 Set the master key points. These points will define a second pass mapping. It
4869 is sometimes called a "luminance" or "value" mapping. It can be used with
4870 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
4871 post-processing LUT.
4872 @item red, r
4873 Set the key points for the red component.
4874 @item green, g
4875 Set the key points for the green component.
4876 @item blue, b
4877 Set the key points for the blue component.
4878 @item all
4879 Set the key points for all components (not including master).
4880 Can be used in addition to the other key points component
4881 options. In this case, the unset component(s) will fallback on this
4882 @option{all} setting.
4883 @item psfile
4884 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
4885 @end table
4886
4887 To avoid some filtergraph syntax conflicts, each key points list need to be
4888 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
4889
4890 @subsection Examples
4891
4892 @itemize
4893 @item
4894 Increase slightly the middle level of blue:
4895 @example
4896 curves=blue='0.5/0.58'
4897 @end example
4898
4899 @item
4900 Vintage effect:
4901 @example
4902 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
4903 @end example
4904 Here we obtain the following coordinates for each components:
4905 @table @var
4906 @item red
4907 @code{(0;0.11) (0.42;0.51) (1;0.95)}
4908 @item green
4909 @code{(0;0) (0.50;0.48) (1;1)}
4910 @item blue
4911 @code{(0;0.22) (0.49;0.44) (1;0.80)}
4912 @end table
4913
4914 @item
4915 The previous example can also be achieved with the associated built-in preset:
4916 @example
4917 curves=preset=vintage
4918 @end example
4919
4920 @item
4921 Or simply:
4922 @example
4923 curves=vintage
4924 @end example
4925
4926 @item
4927 Use a Photoshop preset and redefine the points of the green component:
4928 @example
4929 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
4930 @end example
4931 @end itemize
4932
4933 @section dctdnoiz
4934
4935 Denoise frames using 2D DCT (frequency domain filtering).
4936
4937 This filter is not designed for real time.
4938
4939 The filter accepts the following options:
4940
4941 @table @option
4942 @item sigma, s
4943 Set the noise sigma constant.
4944
4945 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
4946 coefficient (absolute value) below this threshold with be dropped.
4947
4948 If you need a more advanced filtering, see @option{expr}.
4949
4950 Default is @code{0}.
4951
4952 @item overlap
4953 Set number overlapping pixels for each block. Since the filter can be slow, you
4954 may want to reduce this value, at the cost of a less effective filter and the
4955 risk of various artefacts.
4956
4957 If the overlapping value doesn't permit processing the whole input width or
4958 height, a warning will be displayed and according borders won't be denoised.
4959
4960 Default value is @var{blocksize}-1, which is the best possible setting.
4961
4962 @item expr, e
4963 Set the coefficient factor expression.
4964
4965 For each coefficient of a DCT block, this expression will be evaluated as a
4966 multiplier value for the coefficient.
4967
4968 If this is option is set, the @option{sigma} option will be ignored.
4969
4970 The absolute value of the coefficient can be accessed through the @var{c}
4971 variable.
4972
4973 @item n
4974 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
4975 @var{blocksize}, which is the width and height of the processed blocks.
4976
4977 The default value is @var{3} (8x8) and can be raised to @var{4} for a
4978 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
4979 on the speed processing. Also, a larger block size does not necessarily means a
4980 better de-noising.
4981 @end table
4982
4983 @subsection Examples
4984
4985 Apply a denoise with a @option{sigma} of @code{4.5}:
4986 @example
4987 dctdnoiz=4.5
4988 @end example
4989
4990 The same operation can be achieved using the expression system:
4991 @example
4992 dctdnoiz=e='gte(c, 4.5*3)'
4993 @end example
4994
4995 Violent denoise using a block size of @code{16x16}:
4996 @example
4997 dctdnoiz=15:n=4
4998 @end example
4999
5000 @section deband
5001
5002 Remove banding artifacts from input video.
5003 It works by replacing banded pixels with average value of referenced pixels.
5004
5005 The filter accepts the following options:
5006
5007 @table @option
5008 @item 1thr
5009 @item 2thr
5010 @item 3thr
5011 @item 4thr
5012 Set banding detection threshold for each plane. Default is 0.02.
5013 Valid range is 0.00003 to 0.5.
5014 If difference between current pixel and reference pixel is less than threshold,
5015 it will be considered as banded.
5016
5017 @item range, r
5018 Banding detection range in pixels. Default is 16. If positive, random number
5019 in range 0 to set value will be used. If negative, exact absolute value
5020 will be used.
5021 The range defines square of four pixels around current pixel.
5022
5023 @item direction, d
5024 Set direction in radians from which four pixel will be compared. If positive,
5025 random direction from 0 to set direction will be picked. If negative, exact of
5026 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5027 will pick only pixels on same row and -PI/2 will pick only pixels on same
5028 column.
5029
5030 @item blur
5031 If enabled, current pixel is compared with average value of all four
5032 surrounding pixels. The default is enabled. If disabled current pixel is
5033 compared with all four surrounding pixels. The pixel is considered banded
5034 if only all four differences with surrounding pixels are less than threshold.
5035 @end table
5036
5037 @anchor{decimate}
5038 @section decimate
5039
5040 Drop duplicated frames at regular intervals.
5041
5042 The filter accepts the following options:
5043
5044 @table @option
5045 @item cycle
5046 Set the number of frames from which one will be dropped. Setting this to
5047 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5048 Default is @code{5}.
5049
5050 @item dupthresh
5051 Set the threshold for duplicate detection. If the difference metric for a frame
5052 is less than or equal to this value, then it is declared as duplicate. Default
5053 is @code{1.1}
5054
5055 @item scthresh
5056 Set scene change threshold. Default is @code{15}.
5057
5058 @item blockx
5059 @item blocky
5060 Set the size of the x and y-axis blocks used during metric calculations.
5061 Larger blocks give better noise suppression, but also give worse detection of
5062 small movements. Must be a power of two. Default is @code{32}.
5063
5064 @item ppsrc
5065 Mark main input as a pre-processed input and activate clean source input
5066 stream. This allows the input to be pre-processed with various filters to help
5067 the metrics calculation while keeping the frame selection lossless. When set to
5068 @code{1}, the first stream is for the pre-processed input, and the second
5069 stream is the clean source from where the kept frames are chosen. Default is
5070 @code{0}.
5071
5072 @item chroma
5073 Set whether or not chroma is considered in the metric calculations. Default is
5074 @code{1}.
5075 @end table
5076
5077 @section deflate
5078
5079 Apply deflate effect to the video.
5080
5081 This filter replaces the pixel by the local(3x3) average by taking into account
5082 only values lower than the pixel.
5083
5084 It accepts the following options:
5085
5086 @table @option
5087 @item threshold0
5088 @item threshold1
5089 @item threshold2
5090 @item threshold3
5091 Limit the maximum change for each plane, default is 65535.
5092 If 0, plane will remain unchanged.
5093 @end table
5094
5095 @section dejudder
5096
5097 Remove judder produced by partially interlaced telecined content.
5098
5099 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5100 source was partially telecined content then the output of @code{pullup,dejudder}
5101 will have a variable frame rate. May change the recorded frame rate of the
5102 container. Aside from that change, this filter will not affect constant frame
5103 rate video.
5104
5105 The option available in this filter is:
5106 @table @option
5107
5108 @item cycle
5109 Specify the length of the window over which the judder repeats.
5110
5111 Accepts any integer greater than 1. Useful values are:
5112 @table @samp
5113
5114 @item 4
5115 If the original was telecined from 24 to 30 fps (Film to NTSC).
5116
5117 @item 5
5118 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5119
5120 @item 20
5121 If a mixture of the two.
5122 @end table
5123
5124 The default is @samp{4}.
5125 @end table
5126
5127 @section delogo
5128
5129 Suppress a TV station logo by a simple interpolation of the surrounding
5130 pixels. Just set a rectangle covering the logo and watch it disappear
5131 (and sometimes something even uglier appear - your mileage may vary).
5132
5133 It accepts the following parameters:
5134 @table @option
5135
5136 @item x
5137 @item y
5138 Specify the top left corner coordinates of the logo. They must be
5139 specified.
5140
5141 @item w
5142 @item h
5143 Specify the width and height of the logo to clear. They must be
5144 specified.
5145
5146 @item band, t
5147 Specify the thickness of the fuzzy edge of the rectangle (added to
5148 @var{w} and @var{h}). The default value is 1. This option is
5149 deprecated, setting higher values should no longer be necessary and
5150 is not recommended.
5151
5152 @item show
5153 When set to 1, a green rectangle is drawn on the screen to simplify
5154 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
5155 The default value is 0.
5156
5157 The rectangle is drawn on the outermost pixels which will be (partly)
5158 replaced with interpolated values. The values of the next pixels
5159 immediately outside this rectangle in each direction will be used to
5160 compute the interpolated pixel values inside the rectangle.
5161
5162 @end table
5163
5164 @subsection Examples
5165
5166 @itemize
5167 @item
5168 Set a rectangle covering the area with top left corner coordinates 0,0
5169 and size 100x77, and a band of size 10:
5170 @example
5171 delogo=x=0:y=0:w=100:h=77:band=10
5172 @end example
5173
5174 @end itemize
5175
5176 @section deshake
5177
5178 Attempt to fix small changes in horizontal and/or vertical shift. This
5179 filter helps remove camera shake from hand-holding a camera, bumping a
5180 tripod, moving on a vehicle, etc.
5181
5182 The filter accepts the following options:
5183
5184 @table @option
5185
5186 @item x
5187 @item y
5188 @item w
5189 @item h
5190 Specify a rectangular area where to limit the search for motion
5191 vectors.
5192 If desired the search for motion vectors can be limited to a
5193 rectangular area of the frame defined by its top left corner, width
5194 and height. These parameters have the same meaning as the drawbox
5195 filter which can be used to visualise the position of the bounding
5196 box.
5197
5198 This is useful when simultaneous movement of subjects within the frame
5199 might be confused for camera motion by the motion vector search.
5200
5201 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
5202 then the full frame is used. This allows later options to be set
5203 without specifying the bounding box for the motion vector search.
5204
5205 Default - search the whole frame.
5206
5207 @item rx
5208 @item ry
5209 Specify the maximum extent of movement in x and y directions in the
5210 range 0-64 pixels. Default 16.
5211
5212 @item edge
5213 Specify how to generate pixels to fill blanks at the edge of the
5214 frame. Available values are:
5215 @table @samp
5216 @item blank, 0
5217 Fill zeroes at blank locations
5218 @item original, 1
5219 Original image at blank locations
5220 @item clamp, 2
5221 Extruded edge value at blank locations
5222 @item mirror, 3
5223 Mirrored edge at blank locations
5224 @end table
5225 Default value is @samp{mirror}.
5226
5227 @item blocksize
5228 Specify the blocksize to use for motion search. Range 4-128 pixels,
5229 default 8.
5230
5231 @item contrast
5232 Specify the contrast threshold for blocks. Only blocks with more than
5233 the specified contrast (difference between darkest and lightest
5234 pixels) will be considered. Range 1-255, default 125.
5235
5236 @item search
5237 Specify the search strategy. Available values are:
5238 @table @samp
5239 @item exhaustive, 0
5240 Set exhaustive search
5241 @item less, 1
5242 Set less exhaustive search.
5243 @end table
5244 Default value is @samp{exhaustive}.
5245
5246 @item filename
5247 If set then a detailed log of the motion search is written to the
5248 specified file.
5249
5250 @item opencl
5251 If set to 1, specify using OpenCL capabilities, only available if
5252 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
5253
5254 @end table
5255
5256 @section detelecine
5257
5258 Apply an exact inverse of the telecine operation. It requires a predefined
5259 pattern specified using the pattern option which must be the same as that passed
5260 to the telecine filter.
5261
5262 This filter accepts the following options:
5263
5264 @table @option
5265 @item first_field
5266 @table @samp
5267 @item top, t
5268 top field first
5269 @item bottom, b
5270 bottom field first
5271 The default value is @code{top}.
5272 @end table
5273
5274 @item pattern
5275 A string of numbers representing the pulldown pattern you wish to apply.
5276 The default value is @code{23}.
5277
5278 @item start_frame
5279 A number representing position of the first frame with respect to the telecine
5280 pattern. This is to be used if the stream is cut. The default value is @code{0}.
5281 @end table
5282
5283 @section dilation
5284
5285 Apply dilation effect to the video.
5286
5287 This filter replaces the pixel by the local(3x3) maximum.
5288
5289 It accepts the following options:
5290
5291 @table @option
5292 @item threshold0
5293 @item threshold1
5294 @item threshold2
5295 @item threshold3
5296 Limit the maximum change for each plane, default is 65535.
5297 If 0, plane will remain unchanged.
5298
5299 @item coordinates
5300 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5301 pixels are used.
5302
5303 Flags to local 3x3 coordinates maps like this:
5304
5305     1 2 3
5306     4   5
5307     6 7 8
5308 @end table
5309
5310 @section displace
5311
5312 Displace pixels as indicated by second and third input stream.
5313
5314 It takes three input streams and outputs one stream, the first input is the
5315 source, and second and third input are displacement maps.
5316
5317 The second input specifies how much to displace pixels along the
5318 x-axis, while the third input specifies how much to displace pixels
5319 along the y-axis.
5320 If one of displacement map streams terminates, last frame from that
5321 displacement map will be used.
5322
5323 Note that once generated, displacements maps can be reused over and over again.
5324
5325 A description of the accepted options follows.
5326
5327 @table @option
5328 @item edge
5329 Set displace behavior for pixels that are out of range.
5330
5331 Available values are:
5332 @table @samp
5333 @item blank
5334 Missing pixels are replaced by black pixels.
5335
5336 @item smear
5337 Adjacent pixels will spread out to replace missing pixels.
5338
5339 @item wrap
5340 Out of range pixels are wrapped so they point to pixels of other side.
5341 @end table
5342 Default is @samp{smear}.
5343
5344 @end table
5345
5346 @subsection Examples
5347
5348 @itemize
5349 @item
5350 Add ripple effect to rgb input of video size hd720:
5351 @example
5352 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
5353 @end example
5354
5355 @item
5356 Add wave effect to rgb input of video size hd720:
5357 @example
5358 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
5359 @end example
5360 @end itemize
5361
5362 @section drawbox
5363
5364 Draw a colored box on the input image.
5365
5366 It accepts the following parameters:
5367
5368 @table @option
5369 @item x
5370 @item y
5371 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
5372
5373 @item width, w
5374 @item height, h
5375 The expressions which specify the width and height of the box; if 0 they are interpreted as
5376 the input width and height. It defaults to 0.
5377
5378 @item color, c
5379 Specify the color of the box to write. For the general syntax of this option,
5380 check the "Color" section in the ffmpeg-utils manual. If the special
5381 value @code{invert} is used, the box edge color is the same as the
5382 video with inverted luma.
5383
5384 @item thickness, t
5385 The expression which sets the thickness of the box edge. Default value is @code{3}.
5386
5387 See below for the list of accepted constants.
5388 @end table
5389
5390 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5391 following constants:
5392
5393 @table @option
5394 @item dar
5395 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5396
5397 @item hsub
5398 @item vsub
5399 horizontal and vertical chroma subsample values. For example for the
5400 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5401
5402 @item in_h, ih
5403 @item in_w, iw
5404 The input width and height.
5405
5406 @item sar
5407 The input sample aspect ratio.
5408
5409 @item x
5410 @item y
5411 The x and y offset coordinates where the box is drawn.
5412
5413 @item w
5414 @item h
5415 The width and height of the drawn box.
5416
5417 @item t
5418 The thickness of the drawn box.
5419
5420 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5421 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5422
5423 @end table
5424
5425 @subsection Examples
5426
5427 @itemize
5428 @item
5429 Draw a black box around the edge of the input image:
5430 @example
5431 drawbox
5432 @end example
5433
5434 @item
5435 Draw a box with color red and an opacity of 50%:
5436 @example
5437 drawbox=10:20:200:60:red@@0.5
5438 @end example
5439
5440 The previous example can be specified as:
5441 @example
5442 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
5443 @end example
5444
5445 @item
5446 Fill the box with pink color:
5447 @example
5448 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
5449 @end example
5450
5451 @item
5452 Draw a 2-pixel red 2.40:1 mask:
5453 @example
5454 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
5455 @end example
5456 @end itemize
5457
5458 @section drawgraph, adrawgraph
5459
5460 Draw a graph using input video or audio metadata.
5461
5462 It accepts the following parameters:
5463
5464 @table @option
5465 @item m1
5466 Set 1st frame metadata key from which metadata values will be used to draw a graph.
5467
5468 @item fg1
5469 Set 1st foreground color expression.
5470
5471 @item m2
5472 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
5473
5474 @item fg2
5475 Set 2nd foreground color expression.
5476
5477 @item m3
5478 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
5479
5480 @item fg3
5481 Set 3rd foreground color expression.
5482
5483 @item m4
5484 Set 4th frame metadata key from which metadata values will be used to draw a graph.
5485
5486 @item fg4
5487 Set 4th foreground color expression.
5488
5489 @item min
5490 Set minimal value of metadata value.
5491
5492 @item max
5493 Set maximal value of metadata value.
5494
5495 @item bg
5496 Set graph background color. Default is white.
5497
5498 @item mode
5499 Set graph mode.
5500
5501 Available values for mode is:
5502 @table @samp
5503 @item bar
5504 @item dot
5505 @item line
5506 @end table
5507
5508 Default is @code{line}.
5509
5510 @item slide
5511 Set slide mode.
5512
5513 Available values for slide is:
5514 @table @samp
5515 @item frame
5516 Draw new frame when right border is reached.
5517
5518 @item replace
5519 Replace old columns with new ones.
5520
5521 @item scroll
5522 Scroll from right to left.
5523
5524 @item rscroll
5525 Scroll from left to right.
5526 @end table
5527
5528 Default is @code{frame}.
5529
5530 @item size
5531 Set size of graph video. For the syntax of this option, check the
5532 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
5533 The default value is @code{900x256}.
5534
5535 The foreground color expressions can use the following variables:
5536 @table @option
5537 @item MIN
5538 Minimal value of metadata value.
5539
5540 @item MAX
5541 Maximal value of metadata value.
5542
5543 @item VAL
5544 Current metadata key value.
5545 @end table
5546
5547 The color is defined as 0xAABBGGRR.
5548 @end table
5549
5550 Example using metadata from @ref{signalstats} filter:
5551 @example
5552 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
5553 @end example
5554
5555 Example using metadata from @ref{ebur128} filter:
5556 @example
5557 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
5558 @end example
5559
5560 @section drawgrid
5561
5562 Draw a grid on the input image.
5563
5564 It accepts the following parameters:
5565
5566 @table @option
5567 @item x
5568 @item y
5569 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
5570
5571 @item width, w
5572 @item height, h
5573 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
5574 input width and height, respectively, minus @code{thickness}, so image gets
5575 framed. Default to 0.
5576
5577 @item color, c
5578 Specify the color of the grid. For the general syntax of this option,
5579 check the "Color" section in the ffmpeg-utils manual. If the special
5580 value @code{invert} is used, the grid color is the same as the
5581 video with inverted luma.
5582
5583 @item thickness, t
5584 The expression which sets the thickness of the grid line. Default value is @code{1}.
5585
5586 See below for the list of accepted constants.
5587 @end table
5588
5589 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5590 following constants:
5591
5592 @table @option
5593 @item dar
5594 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5595
5596 @item hsub
5597 @item vsub
5598 horizontal and vertical chroma subsample values. For example for the
5599 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5600
5601 @item in_h, ih
5602 @item in_w, iw
5603 The input grid cell width and height.
5604
5605 @item sar
5606 The input sample aspect ratio.
5607
5608 @item x
5609 @item y
5610 The x and y coordinates of some point of grid intersection (meant to configure offset).
5611
5612 @item w
5613 @item h
5614 The width and height of the drawn cell.
5615
5616 @item t
5617 The thickness of the drawn cell.
5618
5619 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5620 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5621
5622 @end table
5623
5624 @subsection Examples
5625
5626 @itemize
5627 @item
5628 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
5629 @example
5630 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
5631 @end example
5632
5633 @item
5634 Draw a white 3x3 grid with an opacity of 50%:
5635 @example
5636 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
5637 @end example
5638 @end itemize
5639
5640 @anchor{drawtext}
5641 @section drawtext
5642
5643 Draw a text string or text from a specified file on top of a video, using the
5644 libfreetype library.
5645
5646 To enable compilation of this filter, you need to configure FFmpeg with
5647 @code{--enable-libfreetype}.
5648 To enable default font fallback and the @var{font} option you need to
5649 configure FFmpeg with @code{--enable-libfontconfig}.
5650 To enable the @var{text_shaping} option, you need to configure FFmpeg with
5651 @code{--enable-libfribidi}.
5652
5653 @subsection Syntax
5654
5655 It accepts the following parameters:
5656
5657 @table @option
5658
5659 @item box
5660 Used to draw a box around text using the background color.
5661 The value must be either 1 (enable) or 0 (disable).
5662 The default value of @var{box} is 0.
5663
5664 @item boxborderw
5665 Set the width of the border to be drawn around the box using @var{boxcolor}.
5666 The default value of @var{boxborderw} is 0.
5667
5668 @item boxcolor
5669 The color to be used for drawing box around text. For the syntax of this
5670 option, check the "Color" section in the ffmpeg-utils manual.
5671
5672 The default value of @var{boxcolor} is "white".
5673
5674 @item borderw
5675 Set the width of the border to be drawn around the text using @var{bordercolor}.
5676 The default value of @var{borderw} is 0.
5677
5678 @item bordercolor
5679 Set the color to be used for drawing border around text. For the syntax of this
5680 option, check the "Color" section in the ffmpeg-utils manual.
5681
5682 The default value of @var{bordercolor} is "black".
5683
5684 @item expansion
5685 Select how the @var{text} is expanded. Can be either @code{none},
5686 @code{strftime} (deprecated) or
5687 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
5688 below for details.
5689
5690 @item fix_bounds
5691 If true, check and fix text coords to avoid clipping.
5692
5693 @item fontcolor
5694 The color to be used for drawing fonts. For the syntax of this option, check
5695 the "Color" section in the ffmpeg-utils manual.
5696
5697 The default value of @var{fontcolor} is "black".
5698
5699 @item fontcolor_expr
5700 String which is expanded the same way as @var{text} to obtain dynamic
5701 @var{fontcolor} value. By default this option has empty value and is not
5702 processed. When this option is set, it overrides @var{fontcolor} option.
5703
5704 @item font
5705 The font family to be used for drawing text. By default Sans.
5706
5707 @item fontfile
5708 The font file to be used for drawing text. The path must be included.
5709 This parameter is mandatory if the fontconfig support is disabled.
5710
5711 @item draw
5712 This option does not exist, please see the timeline system
5713
5714 @item alpha
5715 Draw the text applying alpha blending. The value can
5716 be either a number between 0.0 and 1.0
5717 The expression accepts the same variables @var{x, y} do.
5718 The default value is 1.
5719 Please see fontcolor_expr
5720
5721 @item fontsize
5722 The font size to be used for drawing text.
5723 The default value of @var{fontsize} is 16.
5724
5725 @item text_shaping
5726 If set to 1, attempt to shape the text (for example, reverse the order of
5727 right-to-left text and join Arabic characters) before drawing it.
5728 Otherwise, just draw the text exactly as given.
5729 By default 1 (if supported).
5730
5731 @item ft_load_flags
5732 The flags to be used for loading the fonts.
5733
5734 The flags map the corresponding flags supported by libfreetype, and are
5735 a combination of the following values:
5736 @table @var
5737 @item default
5738 @item no_scale
5739 @item no_hinting
5740 @item render
5741 @item no_bitmap
5742 @item vertical_layout
5743 @item force_autohint
5744 @item crop_bitmap
5745 @item pedantic
5746 @item ignore_global_advance_width
5747 @item no_recurse
5748 @item ignore_transform
5749 @item monochrome
5750 @item linear_design
5751 @item no_autohint
5752 @end table
5753
5754 Default value is "default".
5755
5756 For more information consult the documentation for the FT_LOAD_*
5757 libfreetype flags.
5758
5759 @item shadowcolor
5760 The color to be used for drawing a shadow behind the drawn text. For the
5761 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
5762
5763 The default value of @var{shadowcolor} is "black".
5764
5765 @item shadowx
5766 @item shadowy
5767 The x and y offsets for the text shadow position with respect to the
5768 position of the text. They can be either positive or negative
5769 values. The default value for both is "0".
5770
5771 @item start_number
5772 The starting frame number for the n/frame_num variable. The default value
5773 is "0".
5774
5775 @item tabsize
5776 The size in number of spaces to use for rendering the tab.
5777 Default value is 4.
5778
5779 @item timecode
5780 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
5781 format. It can be used with or without text parameter. @var{timecode_rate}
5782 option must be specified.
5783
5784 @item timecode_rate, rate, r
5785 Set the timecode frame rate (timecode only).
5786
5787 @item text
5788 The text string to be drawn. The text must be a sequence of UTF-8
5789 encoded characters.
5790 This parameter is mandatory if no file is specified with the parameter
5791 @var{textfile}.
5792
5793 @item textfile
5794 A text file containing text to be drawn. The text must be a sequence
5795 of UTF-8 encoded characters.
5796
5797 This parameter is mandatory if no text string is specified with the
5798 parameter @var{text}.
5799
5800 If both @var{text} and @var{textfile} are specified, an error is thrown.
5801
5802 @item reload
5803 If set to 1, the @var{textfile} will be reloaded before each frame.
5804 Be sure to update it atomically, or it may be read partially, or even fail.
5805
5806 @item x
5807 @item y
5808 The expressions which specify the offsets where text will be drawn
5809 within the video frame. They are relative to the top/left border of the
5810 output image.
5811
5812 The default value of @var{x} and @var{y} is "0".
5813
5814 See below for the list of accepted constants and functions.
5815 @end table
5816
5817 The parameters for @var{x} and @var{y} are expressions containing the
5818 following constants and functions:
5819
5820 @table @option
5821 @item dar
5822 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
5823
5824 @item hsub
5825 @item vsub
5826 horizontal and vertical chroma subsample values. For example for the
5827 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5828
5829 @item line_h, lh
5830 the height of each text line
5831
5832 @item main_h, h, H
5833 the input height
5834
5835 @item main_w, w, W
5836 the input width
5837
5838 @item max_glyph_a, ascent
5839 the maximum distance from the baseline to the highest/upper grid
5840 coordinate used to place a glyph outline point, for all the rendered
5841 glyphs.
5842 It is a positive value, due to the grid's orientation with the Y axis
5843 upwards.
5844
5845 @item max_glyph_d, descent
5846 the maximum distance from the baseline to the lowest grid coordinate
5847 used to place a glyph outline point, for all the rendered glyphs.
5848 This is a negative value, due to the grid's orientation, with the Y axis
5849 upwards.
5850
5851 @item max_glyph_h
5852 maximum glyph height, that is the maximum height for all the glyphs
5853 contained in the rendered text, it is equivalent to @var{ascent} -
5854 @var{descent}.
5855
5856 @item max_glyph_w
5857 maximum glyph width, that is the maximum width for all the glyphs
5858 contained in the rendered text
5859
5860 @item n
5861 the number of input frame, starting from 0
5862
5863 @item rand(min, max)
5864 return a random number included between @var{min} and @var{max}
5865
5866 @item sar
5867 The input sample aspect ratio.
5868
5869 @item t
5870 timestamp expressed in seconds, NAN if the input timestamp is unknown
5871
5872 @item text_h, th
5873 the height of the rendered text
5874
5875 @item text_w, tw
5876 the width of the rendered text
5877
5878 @item x
5879 @item y
5880 the x and y offset coordinates where the text is drawn.
5881
5882 These parameters allow the @var{x} and @var{y} expressions to refer
5883 each other, so you can for example specify @code{y=x/dar}.
5884 @end table
5885
5886 @anchor{drawtext_expansion}
5887 @subsection Text expansion
5888
5889 If @option{expansion} is set to @code{strftime},
5890 the filter recognizes strftime() sequences in the provided text and
5891 expands them accordingly. Check the documentation of strftime(). This
5892 feature is deprecated.
5893
5894 If @option{expansion} is set to @code{none}, the text is printed verbatim.
5895
5896 If @option{expansion} is set to @code{normal} (which is the default),
5897 the following expansion mechanism is used.
5898
5899 The backslash character @samp{\}, followed by any character, always expands to
5900 the second character.
5901
5902 Sequence of the form @code{%@{...@}} are expanded. The text between the
5903 braces is a function name, possibly followed by arguments separated by ':'.
5904 If the arguments contain special characters or delimiters (':' or '@}'),
5905 they should be escaped.
5906
5907 Note that they probably must also be escaped as the value for the
5908 @option{text} option in the filter argument string and as the filter
5909 argument in the filtergraph description, and possibly also for the shell,
5910 that makes up to four levels of escaping; using a text file avoids these
5911 problems.
5912
5913 The following functions are available:
5914
5915 @table @command
5916
5917 @item expr, e
5918 The expression evaluation result.
5919
5920 It must take one argument specifying the expression to be evaluated,
5921 which accepts the same constants and functions as the @var{x} and
5922 @var{y} values. Note that not all constants should be used, for
5923 example the text size is not known when evaluating the expression, so
5924 the constants @var{text_w} and @var{text_h} will have an undefined
5925 value.
5926
5927 @item expr_int_format, eif
5928 Evaluate the expression's value and output as formatted integer.
5929
5930 The first argument is the expression to be evaluated, just as for the @var{expr} function.
5931 The second argument specifies the output format. Allowed values are @samp{x},
5932 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
5933 @code{printf} function.
5934 The third parameter is optional and sets the number of positions taken by the output.
5935 It can be used to add padding with zeros from the left.
5936
5937 @item gmtime
5938 The time at which the filter is running, expressed in UTC.
5939 It can accept an argument: a strftime() format string.
5940
5941 @item localtime
5942 The time at which the filter is running, expressed in the local time zone.
5943 It can accept an argument: a strftime() format string.
5944
5945 @item metadata
5946 Frame metadata. It must take one argument specifying metadata key.
5947
5948 @item n, frame_num
5949 The frame number, starting from 0.
5950
5951 @item pict_type
5952 A 1 character description of the current picture type.
5953
5954 @item pts
5955 The timestamp of the current frame.
5956 It can take up to three arguments.
5957
5958 The first argument is the format of the timestamp; it defaults to @code{flt}
5959 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
5960 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
5961 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
5962 @code{localtime} stands for the timestamp of the frame formatted as
5963 local time zone time.
5964
5965 The second argument is an offset added to the timestamp.
5966
5967 If the format is set to @code{localtime} or @code{gmtime},
5968 a third argument may be supplied: a strftime() format string.
5969 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
5970 @end table
5971
5972 @subsection Examples
5973
5974 @itemize
5975 @item
5976 Draw "Test Text" with font FreeSerif, using the default values for the
5977 optional parameters.
5978
5979 @example
5980 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
5981 @end example
5982
5983 @item
5984 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
5985 and y=50 (counting from the top-left corner of the screen), text is
5986 yellow with a red box around it. Both the text and the box have an
5987 opacity of 20%.
5988
5989 @example
5990 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
5991           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
5992 @end example
5993
5994 Note that the double quotes are not necessary if spaces are not used
5995 within the parameter list.
5996
5997 @item
5998 Show the text at the center of the video frame:
5999 @example
6000 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6001 @end example
6002
6003 @item
6004 Show a text line sliding from right to left in the last row of the video
6005 frame. The file @file{LONG_LINE} is assumed to contain a single line
6006 with no newlines.
6007 @example
6008 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6009 @end example
6010
6011 @item
6012 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6013 @example
6014 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6015 @end example
6016
6017 @item
6018 Draw a single green letter "g", at the center of the input video.
6019 The glyph baseline is placed at half screen height.
6020 @example
6021 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6022 @end example
6023
6024 @item
6025 Show text for 1 second every 3 seconds:
6026 @example
6027 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6028 @end example
6029
6030 @item
6031 Use fontconfig to set the font. Note that the colons need to be escaped.
6032 @example
6033 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6034 @end example
6035
6036 @item
6037 Print the date of a real-time encoding (see strftime(3)):
6038 @example
6039 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6040 @end example
6041
6042 @item
6043 Show text fading in and out (appearing/disappearing):
6044 @example
6045 #!/bin/sh
6046 DS=1.0 # display start
6047 DE=10.0 # display end
6048 FID=1.5 # fade in duration
6049 FOD=5 # fade out duration
6050 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 @}"
6051 @end example
6052
6053 @end itemize
6054
6055 For more information about libfreetype, check:
6056 @url{http://www.freetype.org/}.
6057
6058 For more information about fontconfig, check:
6059 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6060
6061 For more information about libfribidi, check:
6062 @url{http://fribidi.org/}.
6063
6064 @section edgedetect
6065
6066 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6067
6068 The filter accepts the following options:
6069
6070 @table @option
6071 @item low
6072 @item high
6073 Set low and high threshold values used by the Canny thresholding
6074 algorithm.
6075
6076 The high threshold selects the "strong" edge pixels, which are then
6077 connected through 8-connectivity with the "weak" edge pixels selected
6078 by the low threshold.
6079
6080 @var{low} and @var{high} threshold values must be chosen in the range
6081 [0,1], and @var{low} should be lesser or equal to @var{high}.
6082
6083 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6084 is @code{50/255}.
6085
6086 @item mode
6087 Define the drawing mode.
6088
6089 @table @samp
6090 @item wires
6091 Draw white/gray wires on black background.
6092
6093 @item colormix
6094 Mix the colors to create a paint/cartoon effect.
6095 @end table
6096
6097 Default value is @var{wires}.
6098 @end table
6099
6100 @subsection Examples
6101
6102 @itemize
6103 @item
6104 Standard edge detection with custom values for the hysteresis thresholding:
6105 @example
6106 edgedetect=low=0.1:high=0.4
6107 @end example
6108
6109 @item
6110 Painting effect without thresholding:
6111 @example
6112 edgedetect=mode=colormix:high=0
6113 @end example
6114 @end itemize
6115
6116 @section eq
6117 Set brightness, contrast, saturation and approximate gamma adjustment.
6118
6119 The filter accepts the following options:
6120
6121 @table @option
6122 @item contrast
6123 Set the contrast expression. The value must be a float value in range
6124 @code{-2.0} to @code{2.0}. The default value is "1".
6125
6126 @item brightness
6127 Set the brightness expression. The value must be a float value in
6128 range @code{-1.0} to @code{1.0}. The default value is "0".
6129
6130 @item saturation
6131 Set the saturation expression. The value must be a float in
6132 range @code{0.0} to @code{3.0}. The default value is "1".
6133
6134 @item gamma
6135 Set the gamma expression. The value must be a float in range
6136 @code{0.1} to @code{10.0}.  The default value is "1".
6137
6138 @item gamma_r
6139 Set the gamma expression for red. The value must be a float in
6140 range @code{0.1} to @code{10.0}. The default value is "1".
6141
6142 @item gamma_g
6143 Set the gamma expression for green. The value must be a float in range
6144 @code{0.1} to @code{10.0}. The default value is "1".
6145
6146 @item gamma_b
6147 Set the gamma expression for blue. The value must be a float in range
6148 @code{0.1} to @code{10.0}. The default value is "1".
6149
6150 @item gamma_weight
6151 Set the gamma weight expression. It can be used to reduce the effect
6152 of a high gamma value on bright image areas, e.g. keep them from
6153 getting overamplified and just plain white. The value must be a float
6154 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
6155 gamma correction all the way down while @code{1.0} leaves it at its
6156 full strength. Default is "1".
6157
6158 @item eval
6159 Set when the expressions for brightness, contrast, saturation and
6160 gamma expressions are evaluated.
6161
6162 It accepts the following values:
6163 @table @samp
6164 @item init
6165 only evaluate expressions once during the filter initialization or
6166 when a command is processed
6167
6168 @item frame
6169 evaluate expressions for each incoming frame
6170 @end table
6171
6172 Default value is @samp{init}.
6173 @end table
6174
6175 The expressions accept the following parameters:
6176 @table @option
6177 @item n
6178 frame count of the input frame starting from 0
6179
6180 @item pos
6181 byte position of the corresponding packet in the input file, NAN if
6182 unspecified
6183
6184 @item r
6185 frame rate of the input video, NAN if the input frame rate is unknown
6186
6187 @item t
6188 timestamp expressed in seconds, NAN if the input timestamp is unknown
6189 @end table
6190
6191 @subsection Commands
6192 The filter supports the following commands:
6193
6194 @table @option
6195 @item contrast
6196 Set the contrast expression.
6197
6198 @item brightness
6199 Set the brightness expression.
6200
6201 @item saturation
6202 Set the saturation expression.
6203
6204 @item gamma
6205 Set the gamma expression.
6206
6207 @item gamma_r
6208 Set the gamma_r expression.
6209
6210 @item gamma_g
6211 Set gamma_g expression.
6212
6213 @item gamma_b
6214 Set gamma_b expression.
6215
6216 @item gamma_weight
6217 Set gamma_weight expression.
6218
6219 The command accepts the same syntax of the corresponding option.
6220
6221 If the specified expression is not valid, it is kept at its current
6222 value.
6223
6224 @end table
6225
6226 @section erosion
6227
6228 Apply erosion effect to the video.
6229
6230 This filter replaces the pixel by the local(3x3) minimum.
6231
6232 It accepts the following options:
6233
6234 @table @option
6235 @item threshold0
6236 @item threshold1
6237 @item threshold2
6238 @item threshold3
6239 Limit the maximum change for each plane, default is 65535.
6240 If 0, plane will remain unchanged.
6241
6242 @item coordinates
6243 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6244 pixels are used.
6245
6246 Flags to local 3x3 coordinates maps like this:
6247
6248     1 2 3
6249     4   5
6250     6 7 8
6251 @end table
6252
6253 @section extractplanes
6254
6255 Extract color channel components from input video stream into
6256 separate grayscale video streams.
6257
6258 The filter accepts the following option:
6259
6260 @table @option
6261 @item planes
6262 Set plane(s) to extract.
6263
6264 Available values for planes are:
6265 @table @samp
6266 @item y
6267 @item u
6268 @item v
6269 @item a
6270 @item r
6271 @item g
6272 @item b
6273 @end table
6274
6275 Choosing planes not available in the input will result in an error.
6276 That means you cannot select @code{r}, @code{g}, @code{b} planes
6277 with @code{y}, @code{u}, @code{v} planes at same time.
6278 @end table
6279
6280 @subsection Examples
6281
6282 @itemize
6283 @item
6284 Extract luma, u and v color channel component from input video frame
6285 into 3 grayscale outputs:
6286 @example
6287 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
6288 @end example
6289 @end itemize
6290
6291 @section elbg
6292
6293 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
6294
6295 For each input image, the filter will compute the optimal mapping from
6296 the input to the output given the codebook length, that is the number
6297 of distinct output colors.
6298
6299 This filter accepts the following options.
6300
6301 @table @option
6302 @item codebook_length, l
6303 Set codebook length. The value must be a positive integer, and
6304 represents the number of distinct output colors. Default value is 256.
6305
6306 @item nb_steps, n
6307 Set the maximum number of iterations to apply for computing the optimal
6308 mapping. The higher the value the better the result and the higher the
6309 computation time. Default value is 1.
6310
6311 @item seed, s
6312 Set a random seed, must be an integer included between 0 and
6313 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
6314 will try to use a good random seed on a best effort basis.
6315
6316 @item pal8
6317 Set pal8 output pixel format. This option does not work with codebook
6318 length greater than 256.
6319 @end table
6320
6321 @section fade
6322
6323 Apply a fade-in/out effect to the input video.
6324
6325 It accepts the following parameters:
6326
6327 @table @option
6328 @item type, t
6329 The effect type can be either "in" for a fade-in, or "out" for a fade-out
6330 effect.
6331 Default is @code{in}.
6332
6333 @item start_frame, s
6334 Specify the number of the frame to start applying the fade
6335 effect at. Default is 0.
6336
6337 @item nb_frames, n
6338 The number of frames that the fade effect lasts. At the end of the
6339 fade-in effect, the output video will have the same intensity as the input video.
6340 At the end of the fade-out transition, the output video will be filled with the
6341 selected @option{color}.
6342 Default is 25.
6343
6344 @item alpha
6345 If set to 1, fade only alpha channel, if one exists on the input.
6346 Default value is 0.
6347
6348 @item start_time, st
6349 Specify the timestamp (in seconds) of the frame to start to apply the fade
6350 effect. If both start_frame and start_time are specified, the fade will start at
6351 whichever comes last.  Default is 0.
6352
6353 @item duration, d
6354 The number of seconds for which the fade effect has to last. At the end of the
6355 fade-in effect the output video will have the same intensity as the input video,
6356 at the end of the fade-out transition the output video will be filled with the
6357 selected @option{color}.
6358 If both duration and nb_frames are specified, duration is used. Default is 0
6359 (nb_frames is used by default).
6360
6361 @item color, c
6362 Specify the color of the fade. Default is "black".
6363 @end table
6364
6365 @subsection Examples
6366
6367 @itemize
6368 @item
6369 Fade in the first 30 frames of video:
6370 @example
6371 fade=in:0:30
6372 @end example
6373
6374 The command above is equivalent to:
6375 @example
6376 fade=t=in:s=0:n=30
6377 @end example
6378
6379 @item
6380 Fade out the last 45 frames of a 200-frame video:
6381 @example
6382 fade=out:155:45
6383 fade=type=out:start_frame=155:nb_frames=45
6384 @end example
6385
6386 @item
6387 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
6388 @example
6389 fade=in:0:25, fade=out:975:25
6390 @end example
6391
6392 @item
6393 Make the first 5 frames yellow, then fade in from frame 5-24:
6394 @example
6395 fade=in:5:20:color=yellow
6396 @end example
6397
6398 @item
6399 Fade in alpha over first 25 frames of video:
6400 @example
6401 fade=in:0:25:alpha=1
6402 @end example
6403
6404 @item
6405 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
6406 @example
6407 fade=t=in:st=5.5:d=0.5
6408 @end example
6409
6410 @end itemize
6411
6412 @section fftfilt
6413 Apply arbitrary expressions to samples in frequency domain
6414
6415 @table @option
6416 @item dc_Y
6417 Adjust the dc value (gain) of the luma plane of the image. The filter
6418 accepts an integer value in range @code{0} to @code{1000}. The default
6419 value is set to @code{0}.
6420
6421 @item dc_U
6422 Adjust the dc value (gain) of the 1st chroma plane of the image. The
6423 filter accepts an integer value in range @code{0} to @code{1000}. The
6424 default value is set to @code{0}.
6425
6426 @item dc_V
6427 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
6428 filter accepts an integer value in range @code{0} to @code{1000}. The
6429 default value is set to @code{0}.
6430
6431 @item weight_Y
6432 Set the frequency domain weight expression for the luma plane.
6433
6434 @item weight_U
6435 Set the frequency domain weight expression for the 1st chroma plane.
6436
6437 @item weight_V
6438 Set the frequency domain weight expression for the 2nd chroma plane.
6439
6440 The filter accepts the following variables:
6441 @item X
6442 @item Y
6443 The coordinates of the current sample.
6444
6445 @item W
6446 @item H
6447 The width and height of the image.
6448 @end table
6449
6450 @subsection Examples
6451
6452 @itemize
6453 @item
6454 High-pass:
6455 @example
6456 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
6457 @end example
6458
6459 @item
6460 Low-pass:
6461 @example
6462 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
6463 @end example
6464
6465 @item
6466 Sharpen:
6467 @example
6468 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
6469 @end example
6470
6471 @item
6472 Blur:
6473 @example
6474 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
6475 @end example
6476
6477 @end itemize
6478
6479 @section field
6480
6481 Extract a single field from an interlaced image using stride
6482 arithmetic to avoid wasting CPU time. The output frames are marked as
6483 non-interlaced.
6484
6485 The filter accepts the following options:
6486
6487 @table @option
6488 @item type
6489 Specify whether to extract the top (if the value is @code{0} or
6490 @code{top}) or the bottom field (if the value is @code{1} or
6491 @code{bottom}).
6492 @end table
6493
6494 @section fieldmatch
6495
6496 Field matching filter for inverse telecine. It is meant to reconstruct the
6497 progressive frames from a telecined stream. The filter does not drop duplicated
6498 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
6499 followed by a decimation filter such as @ref{decimate} in the filtergraph.
6500
6501 The separation of the field matching and the decimation is notably motivated by
6502 the possibility of inserting a de-interlacing filter fallback between the two.
6503 If the source has mixed telecined and real interlaced content,
6504 @code{fieldmatch} will not be able to match fields for the interlaced parts.
6505 But these remaining combed frames will be marked as interlaced, and thus can be
6506 de-interlaced by a later filter such as @ref{yadif} before decimation.
6507
6508 In addition to the various configuration options, @code{fieldmatch} can take an
6509 optional second stream, activated through the @option{ppsrc} option. If
6510 enabled, the frames reconstruction will be based on the fields and frames from
6511 this second stream. This allows the first input to be pre-processed in order to
6512 help the various algorithms of the filter, while keeping the output lossless
6513 (assuming the fields are matched properly). Typically, a field-aware denoiser,
6514 or brightness/contrast adjustments can help.
6515
6516 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
6517 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
6518 which @code{fieldmatch} is based on. While the semantic and usage are very
6519 close, some behaviour and options names can differ.
6520
6521 The @ref{decimate} filter currently only works for constant frame rate input.
6522 If your input has mixed telecined (30fps) and progressive content with a lower
6523 framerate like 24fps use the following filterchain to produce the necessary cfr
6524 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
6525
6526 The filter accepts the following options:
6527
6528 @table @option
6529 @item order
6530 Specify the assumed field order of the input stream. Available values are:
6531
6532 @table @samp
6533 @item auto
6534 Auto detect parity (use FFmpeg's internal parity value).
6535 @item bff
6536 Assume bottom field first.
6537 @item tff
6538 Assume top field first.
6539 @end table
6540
6541 Note that it is sometimes recommended not to trust the parity announced by the
6542 stream.
6543
6544 Default value is @var{auto}.
6545
6546 @item mode
6547 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
6548 sense that it won't risk creating jerkiness due to duplicate frames when
6549 possible, but if there are bad edits or blended fields it will end up
6550 outputting combed frames when a good match might actually exist. On the other
6551 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
6552 but will almost always find a good frame if there is one. The other values are
6553 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
6554 jerkiness and creating duplicate frames versus finding good matches in sections
6555 with bad edits, orphaned fields, blended fields, etc.
6556
6557 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
6558
6559 Available values are:
6560
6561 @table @samp
6562 @item pc
6563 2-way matching (p/c)
6564 @item pc_n
6565 2-way matching, and trying 3rd match if still combed (p/c + n)
6566 @item pc_u
6567 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
6568 @item pc_n_ub
6569 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
6570 still combed (p/c + n + u/b)
6571 @item pcn
6572 3-way matching (p/c/n)
6573 @item pcn_ub
6574 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
6575 detected as combed (p/c/n + u/b)
6576 @end table
6577
6578 The parenthesis at the end indicate the matches that would be used for that
6579 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
6580 @var{top}).
6581
6582 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
6583 the slowest.
6584
6585 Default value is @var{pc_n}.
6586
6587 @item ppsrc
6588 Mark the main input stream as a pre-processed input, and enable the secondary
6589 input stream as the clean source to pick the fields from. See the filter
6590 introduction for more details. It is similar to the @option{clip2} feature from
6591 VFM/TFM.
6592
6593 Default value is @code{0} (disabled).
6594
6595 @item field
6596 Set the field to match from. It is recommended to set this to the same value as
6597 @option{order} unless you experience matching failures with that setting. In
6598 certain circumstances changing the field that is used to match from can have a
6599 large impact on matching performance. Available values are:
6600
6601 @table @samp
6602 @item auto
6603 Automatic (same value as @option{order}).
6604 @item bottom
6605 Match from the bottom field.
6606 @item top
6607 Match from the top field.
6608 @end table
6609
6610 Default value is @var{auto}.
6611
6612 @item mchroma
6613 Set whether or not chroma is included during the match comparisons. In most
6614 cases it is recommended to leave this enabled. You should set this to @code{0}
6615 only if your clip has bad chroma problems such as heavy rainbowing or other
6616 artifacts. Setting this to @code{0} could also be used to speed things up at
6617 the cost of some accuracy.
6618
6619 Default value is @code{1}.
6620
6621 @item y0
6622 @item y1
6623 These define an exclusion band which excludes the lines between @option{y0} and
6624 @option{y1} from being included in the field matching decision. An exclusion
6625 band can be used to ignore subtitles, a logo, or other things that may
6626 interfere with the matching. @option{y0} sets the starting scan line and
6627 @option{y1} sets the ending line; all lines in between @option{y0} and
6628 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
6629 @option{y0} and @option{y1} to the same value will disable the feature.
6630 @option{y0} and @option{y1} defaults to @code{0}.
6631
6632 @item scthresh
6633 Set the scene change detection threshold as a percentage of maximum change on
6634 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
6635 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
6636 @option{scthresh} is @code{[0.0, 100.0]}.
6637
6638 Default value is @code{12.0}.
6639
6640 @item combmatch
6641 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
6642 account the combed scores of matches when deciding what match to use as the
6643 final match. Available values are:
6644
6645 @table @samp
6646 @item none
6647 No final matching based on combed scores.
6648 @item sc
6649 Combed scores are only used when a scene change is detected.
6650 @item full
6651 Use combed scores all the time.
6652 @end table
6653
6654 Default is @var{sc}.
6655
6656 @item combdbg
6657 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
6658 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
6659 Available values are:
6660
6661 @table @samp
6662 @item none
6663 No forced calculation.
6664 @item pcn
6665 Force p/c/n calculations.
6666 @item pcnub
6667 Force p/c/n/u/b calculations.
6668 @end table
6669
6670 Default value is @var{none}.
6671
6672 @item cthresh
6673 This is the area combing threshold used for combed frame detection. This
6674 essentially controls how "strong" or "visible" combing must be to be detected.
6675 Larger values mean combing must be more visible and smaller values mean combing
6676 can be less visible or strong and still be detected. Valid settings are from
6677 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
6678 be detected as combed). This is basically a pixel difference value. A good
6679 range is @code{[8, 12]}.
6680
6681 Default value is @code{9}.
6682
6683 @item chroma
6684 Sets whether or not chroma is considered in the combed frame decision.  Only
6685 disable this if your source has chroma problems (rainbowing, etc.) that are
6686 causing problems for the combed frame detection with chroma enabled. Actually,
6687 using @option{chroma}=@var{0} is usually more reliable, except for the case
6688 where there is chroma only combing in the source.
6689
6690 Default value is @code{0}.
6691
6692 @item blockx
6693 @item blocky
6694 Respectively set the x-axis and y-axis size of the window used during combed
6695 frame detection. This has to do with the size of the area in which
6696 @option{combpel} pixels are required to be detected as combed for a frame to be
6697 declared combed. See the @option{combpel} parameter description for more info.
6698 Possible values are any number that is a power of 2 starting at 4 and going up
6699 to 512.
6700
6701 Default value is @code{16}.
6702
6703 @item combpel
6704 The number of combed pixels inside any of the @option{blocky} by
6705 @option{blockx} size blocks on the frame for the frame to be detected as
6706 combed. While @option{cthresh} controls how "visible" the combing must be, this
6707 setting controls "how much" combing there must be in any localized area (a
6708 window defined by the @option{blockx} and @option{blocky} settings) on the
6709 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
6710 which point no frames will ever be detected as combed). This setting is known
6711 as @option{MI} in TFM/VFM vocabulary.
6712
6713 Default value is @code{80}.
6714 @end table
6715
6716 @anchor{p/c/n/u/b meaning}
6717 @subsection p/c/n/u/b meaning
6718
6719 @subsubsection p/c/n
6720
6721 We assume the following telecined stream:
6722
6723 @example
6724 Top fields:     1 2 2 3 4
6725 Bottom fields:  1 2 3 4 4
6726 @end example
6727
6728 The numbers correspond to the progressive frame the fields relate to. Here, the
6729 first two frames are progressive, the 3rd and 4th are combed, and so on.
6730
6731 When @code{fieldmatch} is configured to run a matching from bottom
6732 (@option{field}=@var{bottom}) this is how this input stream get transformed:
6733
6734 @example
6735 Input stream:
6736                 T     1 2 2 3 4
6737                 B     1 2 3 4 4   <-- matching reference
6738
6739 Matches:              c c n n c
6740
6741 Output stream:
6742                 T     1 2 3 4 4
6743                 B     1 2 3 4 4
6744 @end example
6745
6746 As a result of the field matching, we can see that some frames get duplicated.
6747 To perform a complete inverse telecine, you need to rely on a decimation filter
6748 after this operation. See for instance the @ref{decimate} filter.
6749
6750 The same operation now matching from top fields (@option{field}=@var{top})
6751 looks like this:
6752
6753 @example
6754 Input stream:
6755                 T     1 2 2 3 4   <-- matching reference
6756                 B     1 2 3 4 4
6757
6758 Matches:              c c p p c
6759
6760 Output stream:
6761                 T     1 2 2 3 4
6762                 B     1 2 2 3 4
6763 @end example
6764
6765 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6766 basically, they refer to the frame and field of the opposite parity:
6767
6768 @itemize
6769 @item @var{p} matches the field of the opposite parity in the previous frame
6770 @item @var{c} matches the field of the opposite parity in the current frame
6771 @item @var{n} matches the field of the opposite parity in the next frame
6772 @end itemize
6773
6774 @subsubsection u/b
6775
6776 The @var{u} and @var{b} matching are a bit special in the sense that they match
6777 from the opposite parity flag. In the following examples, we assume that we are
6778 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6779 'x' is placed above and below each matched fields.
6780
6781 With bottom matching (@option{field}=@var{bottom}):
6782 @example
6783 Match:           c         p           n          b          u
6784
6785                  x       x               x        x          x
6786   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6787   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6788                  x         x           x        x              x
6789
6790 Output frames:
6791                  2          1          2          2          2
6792                  2          2          2          1          3
6793 @end example
6794
6795 With top matching (@option{field}=@var{top}):
6796 @example
6797 Match:           c         p           n          b          u
6798
6799                  x         x           x        x              x
6800   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6801   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6802                  x       x               x        x          x
6803
6804 Output frames:
6805                  2          2          2          1          2
6806                  2          1          3          2          2
6807 @end example
6808
6809 @subsection Examples
6810
6811 Simple IVTC of a top field first telecined stream:
6812 @example
6813 fieldmatch=order=tff:combmatch=none, decimate
6814 @end example
6815
6816 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
6817 @example
6818 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
6819 @end example
6820
6821 @section fieldorder
6822
6823 Transform the field order of the input video.
6824
6825 It accepts the following parameters:
6826
6827 @table @option
6828
6829 @item order
6830 The output field order. Valid values are @var{tff} for top field first or @var{bff}
6831 for bottom field first.
6832 @end table
6833
6834 The default value is @samp{tff}.
6835
6836 The transformation is done by shifting the picture content up or down
6837 by one line, and filling the remaining line with appropriate picture content.
6838 This method is consistent with most broadcast field order converters.
6839
6840 If the input video is not flagged as being interlaced, or it is already
6841 flagged as being of the required output field order, then this filter does
6842 not alter the incoming video.
6843
6844 It is very useful when converting to or from PAL DV material,
6845 which is bottom field first.
6846
6847 For example:
6848 @example
6849 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
6850 @end example
6851
6852 @section fifo, afifo
6853
6854 Buffer input images and send them when they are requested.
6855
6856 It is mainly useful when auto-inserted by the libavfilter
6857 framework.
6858
6859 It does not take parameters.
6860
6861 @section find_rect
6862
6863 Find a rectangular object
6864
6865 It accepts the following options:
6866
6867 @table @option
6868 @item object
6869 Filepath of the object image, needs to be in gray8.
6870
6871 @item threshold
6872 Detection threshold, default is 0.5.
6873
6874 @item mipmaps
6875 Number of mipmaps, default is 3.
6876
6877 @item xmin, ymin, xmax, ymax
6878 Specifies the rectangle in which to search.
6879 @end table
6880
6881 @subsection Examples
6882
6883 @itemize
6884 @item
6885 Generate a representative palette of a given video using @command{ffmpeg}:
6886 @example
6887 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6888 @end example
6889 @end itemize
6890
6891 @section cover_rect
6892
6893 Cover a rectangular object
6894
6895 It accepts the following options:
6896
6897 @table @option
6898 @item cover
6899 Filepath of the optional cover image, needs to be in yuv420.
6900
6901 @item mode
6902 Set covering mode.
6903
6904 It accepts the following values:
6905 @table @samp
6906 @item cover
6907 cover it by the supplied image
6908 @item blur
6909 cover it by interpolating the surrounding pixels
6910 @end table
6911
6912 Default value is @var{blur}.
6913 @end table
6914
6915 @subsection Examples
6916
6917 @itemize
6918 @item
6919 Generate a representative palette of a given video using @command{ffmpeg}:
6920 @example
6921 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6922 @end example
6923 @end itemize
6924
6925 @anchor{format}
6926 @section format
6927
6928 Convert the input video to one of the specified pixel formats.
6929 Libavfilter will try to pick one that is suitable as input to
6930 the next filter.
6931
6932 It accepts the following parameters:
6933 @table @option
6934
6935 @item pix_fmts
6936 A '|'-separated list of pixel format names, such as
6937 "pix_fmts=yuv420p|monow|rgb24".
6938
6939 @end table
6940
6941 @subsection Examples
6942
6943 @itemize
6944 @item
6945 Convert the input video to the @var{yuv420p} format
6946 @example
6947 format=pix_fmts=yuv420p
6948 @end example
6949
6950 Convert the input video to any of the formats in the list
6951 @example
6952 format=pix_fmts=yuv420p|yuv444p|yuv410p
6953 @end example
6954 @end itemize
6955
6956 @anchor{fps}
6957 @section fps
6958
6959 Convert the video to specified constant frame rate by duplicating or dropping
6960 frames as necessary.
6961
6962 It accepts the following parameters:
6963 @table @option
6964
6965 @item fps
6966 The desired output frame rate. The default is @code{25}.
6967
6968 @item round
6969 Rounding method.
6970
6971 Possible values are:
6972 @table @option
6973 @item zero
6974 zero round towards 0
6975 @item inf
6976 round away from 0
6977 @item down
6978 round towards -infinity
6979 @item up
6980 round towards +infinity
6981 @item near
6982 round to nearest
6983 @end table
6984 The default is @code{near}.
6985
6986 @item start_time
6987 Assume the first PTS should be the given value, in seconds. This allows for
6988 padding/trimming at the start of stream. By default, no assumption is made
6989 about the first frame's expected PTS, so no padding or trimming is done.
6990 For example, this could be set to 0 to pad the beginning with duplicates of
6991 the first frame if a video stream starts after the audio stream or to trim any
6992 frames with a negative PTS.
6993
6994 @end table
6995
6996 Alternatively, the options can be specified as a flat string:
6997 @var{fps}[:@var{round}].
6998
6999 See also the @ref{setpts} filter.
7000
7001 @subsection Examples
7002
7003 @itemize
7004 @item
7005 A typical usage in order to set the fps to 25:
7006 @example
7007 fps=fps=25
7008 @end example
7009
7010 @item
7011 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7012 @example
7013 fps=fps=film:round=near
7014 @end example
7015 @end itemize
7016
7017 @section framepack
7018
7019 Pack two different video streams into a stereoscopic video, setting proper
7020 metadata on supported codecs. The two views should have the same size and
7021 framerate and processing will stop when the shorter video ends. Please note
7022 that you may conveniently adjust view properties with the @ref{scale} and
7023 @ref{fps} filters.
7024
7025 It accepts the following parameters:
7026 @table @option
7027
7028 @item format
7029 The desired packing format. Supported values are:
7030
7031 @table @option
7032
7033 @item sbs
7034 The views are next to each other (default).
7035
7036 @item tab
7037 The views are on top of each other.
7038
7039 @item lines
7040 The views are packed by line.
7041
7042 @item columns
7043 The views are packed by column.
7044
7045 @item frameseq
7046 The views are temporally interleaved.
7047
7048 @end table
7049
7050 @end table
7051
7052 Some examples:
7053
7054 @example
7055 # Convert left and right views into a frame-sequential video
7056 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7057
7058 # Convert views into a side-by-side video with the same output resolution as the input
7059 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
7060 @end example
7061
7062 @section framerate
7063
7064 Change the frame rate by interpolating new video output frames from the source
7065 frames.
7066
7067 This filter is not designed to function correctly with interlaced media. If
7068 you wish to change the frame rate of interlaced media then you are required
7069 to deinterlace before this filter and re-interlace after this filter.
7070
7071 A description of the accepted options follows.
7072
7073 @table @option
7074 @item fps
7075 Specify the output frames per second. This option can also be specified
7076 as a value alone. The default is @code{50}.
7077
7078 @item interp_start
7079 Specify the start of a range where the output frame will be created as a
7080 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7081 the default is @code{15}.
7082
7083 @item interp_end
7084 Specify the end of a range where the output frame will be created as a
7085 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7086 the default is @code{240}.
7087
7088 @item scene
7089 Specify the level at which a scene change is detected as a value between
7090 0 and 100 to indicate a new scene; a low value reflects a low
7091 probability for the current frame to introduce a new scene, while a higher
7092 value means the current frame is more likely to be one.
7093 The default is @code{7}.
7094
7095 @item flags
7096 Specify flags influencing the filter process.
7097
7098 Available value for @var{flags} is:
7099
7100 @table @option
7101 @item scene_change_detect, scd
7102 Enable scene change detection using the value of the option @var{scene}.
7103 This flag is enabled by default.
7104 @end table
7105 @end table
7106
7107 @section framestep
7108
7109 Select one frame every N-th frame.
7110
7111 This filter accepts the following option:
7112 @table @option
7113 @item step
7114 Select frame after every @code{step} frames.
7115 Allowed values are positive integers higher than 0. Default value is @code{1}.
7116 @end table
7117
7118 @anchor{frei0r}
7119 @section frei0r
7120
7121 Apply a frei0r effect to the input video.
7122
7123 To enable the compilation of this filter, you need to install the frei0r
7124 header and configure FFmpeg with @code{--enable-frei0r}.
7125
7126 It accepts the following parameters:
7127
7128 @table @option
7129
7130 @item filter_name
7131 The name of the frei0r effect to load. If the environment variable
7132 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7133 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7134 Otherwise, the standard frei0r paths are searched, in this order:
7135 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7136 @file{/usr/lib/frei0r-1/}.
7137
7138 @item filter_params
7139 A '|'-separated list of parameters to pass to the frei0r effect.
7140
7141 @end table
7142
7143 A frei0r effect parameter can be a boolean (its value is either
7144 "y" or "n"), a double, a color (specified as
7145 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
7146 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
7147 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
7148 @var{X} and @var{Y} are floating point numbers) and/or a string.
7149
7150 The number and types of parameters depend on the loaded effect. If an
7151 effect parameter is not specified, the default value is set.
7152
7153 @subsection Examples
7154
7155 @itemize
7156 @item
7157 Apply the distort0r effect, setting the first two double parameters:
7158 @example
7159 frei0r=filter_name=distort0r:filter_params=0.5|0.01
7160 @end example
7161
7162 @item
7163 Apply the colordistance effect, taking a color as the first parameter:
7164 @example
7165 frei0r=colordistance:0.2/0.3/0.4
7166 frei0r=colordistance:violet
7167 frei0r=colordistance:0x112233
7168 @end example
7169
7170 @item
7171 Apply the perspective effect, specifying the top left and top right image
7172 positions:
7173 @example
7174 frei0r=perspective:0.2/0.2|0.8/0.2
7175 @end example
7176 @end itemize
7177
7178 For more information, see
7179 @url{http://frei0r.dyne.org}
7180
7181 @section fspp
7182
7183 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
7184
7185 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
7186 processing filter, one of them is performed once per block, not per pixel.
7187 This allows for much higher speed.
7188
7189 The filter accepts the following options:
7190
7191 @table @option
7192 @item quality
7193 Set quality. This option defines the number of levels for averaging. It accepts
7194 an integer in the range 4-5. Default value is @code{4}.
7195
7196 @item qp
7197 Force a constant quantization parameter. It accepts an integer in range 0-63.
7198 If not set, the filter will use the QP from the video stream (if available).
7199
7200 @item strength
7201 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
7202 more details but also more artifacts, while higher values make the image smoother
7203 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
7204
7205 @item use_bframe_qp
7206 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7207 option may cause flicker since the B-Frames have often larger QP. Default is
7208 @code{0} (not enabled).
7209
7210 @end table
7211
7212 @section geq
7213
7214 The filter accepts the following options:
7215
7216 @table @option
7217 @item lum_expr, lum
7218 Set the luminance expression.
7219 @item cb_expr, cb
7220 Set the chrominance blue expression.
7221 @item cr_expr, cr
7222 Set the chrominance red expression.
7223 @item alpha_expr, a
7224 Set the alpha expression.
7225 @item red_expr, r
7226 Set the red expression.
7227 @item green_expr, g
7228 Set the green expression.
7229 @item blue_expr, b
7230 Set the blue expression.
7231 @end table
7232
7233 The colorspace is selected according to the specified options. If one
7234 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
7235 options is specified, the filter will automatically select a YCbCr
7236 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
7237 @option{blue_expr} options is specified, it will select an RGB
7238 colorspace.
7239
7240 If one of the chrominance expression is not defined, it falls back on the other
7241 one. If no alpha expression is specified it will evaluate to opaque value.
7242 If none of chrominance expressions are specified, they will evaluate
7243 to the luminance expression.
7244
7245 The expressions can use the following variables and functions:
7246
7247 @table @option
7248 @item N
7249 The sequential number of the filtered frame, starting from @code{0}.
7250
7251 @item X
7252 @item Y
7253 The coordinates of the current sample.
7254
7255 @item W
7256 @item H
7257 The width and height of the image.
7258
7259 @item SW
7260 @item SH
7261 Width and height scale depending on the currently filtered plane. It is the
7262 ratio between the corresponding luma plane number of pixels and the current
7263 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
7264 @code{0.5,0.5} for chroma planes.
7265
7266 @item T
7267 Time of the current frame, expressed in seconds.
7268
7269 @item p(x, y)
7270 Return the value of the pixel at location (@var{x},@var{y}) of the current
7271 plane.
7272
7273 @item lum(x, y)
7274 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
7275 plane.
7276
7277 @item cb(x, y)
7278 Return the value of the pixel at location (@var{x},@var{y}) of the
7279 blue-difference chroma plane. Return 0 if there is no such plane.
7280
7281 @item cr(x, y)
7282 Return the value of the pixel at location (@var{x},@var{y}) of the
7283 red-difference chroma plane. Return 0 if there is no such plane.
7284
7285 @item r(x, y)
7286 @item g(x, y)
7287 @item b(x, y)
7288 Return the value of the pixel at location (@var{x},@var{y}) of the
7289 red/green/blue component. Return 0 if there is no such component.
7290
7291 @item alpha(x, y)
7292 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
7293 plane. Return 0 if there is no such plane.
7294 @end table
7295
7296 For functions, if @var{x} and @var{y} are outside the area, the value will be
7297 automatically clipped to the closer edge.
7298
7299 @subsection Examples
7300
7301 @itemize
7302 @item
7303 Flip the image horizontally:
7304 @example
7305 geq=p(W-X\,Y)
7306 @end example
7307
7308 @item
7309 Generate a bidimensional sine wave, with angle @code{PI/3} and a
7310 wavelength of 100 pixels:
7311 @example
7312 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
7313 @end example
7314
7315 @item
7316 Generate a fancy enigmatic moving light:
7317 @example
7318 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
7319 @end example
7320
7321 @item
7322 Generate a quick emboss effect:
7323 @example
7324 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
7325 @end example
7326
7327 @item
7328 Modify RGB components depending on pixel position:
7329 @example
7330 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
7331 @end example
7332
7333 @item
7334 Create a radial gradient that is the same size as the input (also see
7335 the @ref{vignette} filter):
7336 @example
7337 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
7338 @end example
7339
7340 @item
7341 Create a linear gradient to use as a mask for another filter, then
7342 compose with @ref{overlay}. In this example the video will gradually
7343 become more blurry from the top to the bottom of the y-axis as defined
7344 by the linear gradient:
7345 @example
7346 ffmpeg -i input.mp4 -filter_complex "geq=lum=255*(Y/H),format=gray[grad];[0:v]boxblur=4[blur];[blur][grad]alphamerge[alpha];[0:v][alpha]overlay" output.mp4
7347 @end example
7348 @end itemize
7349
7350 @section gradfun
7351
7352 Fix the banding artifacts that are sometimes introduced into nearly flat
7353 regions by truncation to 8bit color depth.
7354 Interpolate the gradients that should go where the bands are, and
7355 dither them.
7356
7357 It is designed for playback only.  Do not use it prior to
7358 lossy compression, because compression tends to lose the dither and
7359 bring back the bands.
7360
7361 It accepts the following parameters:
7362
7363 @table @option
7364
7365 @item strength
7366 The maximum amount by which the filter will change any one pixel. This is also
7367 the threshold for detecting nearly flat regions. Acceptable values range from
7368 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
7369 valid range.
7370
7371 @item radius
7372 The neighborhood to fit the gradient to. A larger radius makes for smoother
7373 gradients, but also prevents the filter from modifying the pixels near detailed
7374 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
7375 values will be clipped to the valid range.
7376
7377 @end table
7378
7379 Alternatively, the options can be specified as a flat string:
7380 @var{strength}[:@var{radius}]
7381
7382 @subsection Examples
7383
7384 @itemize
7385 @item
7386 Apply the filter with a @code{3.5} strength and radius of @code{8}:
7387 @example
7388 gradfun=3.5:8
7389 @end example
7390
7391 @item
7392 Specify radius, omitting the strength (which will fall-back to the default
7393 value):
7394 @example
7395 gradfun=radius=8
7396 @end example
7397
7398 @end itemize
7399
7400 @anchor{haldclut}
7401 @section haldclut
7402
7403 Apply a Hald CLUT to a video stream.
7404
7405 First input is the video stream to process, and second one is the Hald CLUT.
7406 The Hald CLUT input can be a simple picture or a complete video stream.
7407
7408 The filter accepts the following options:
7409
7410 @table @option
7411 @item shortest
7412 Force termination when the shortest input terminates. Default is @code{0}.
7413 @item repeatlast
7414 Continue applying the last CLUT after the end of the stream. A value of
7415 @code{0} disable the filter after the last frame of the CLUT is reached.
7416 Default is @code{1}.
7417 @end table
7418
7419 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
7420 filters share the same internals).
7421
7422 More information about the Hald CLUT can be found on Eskil Steenberg's website
7423 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
7424
7425 @subsection Workflow examples
7426
7427 @subsubsection Hald CLUT video stream
7428
7429 Generate an identity Hald CLUT stream altered with various effects:
7430 @example
7431 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
7432 @end example
7433
7434 Note: make sure you use a lossless codec.
7435
7436 Then use it with @code{haldclut} to apply it on some random stream:
7437 @example
7438 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
7439 @end example
7440
7441 The Hald CLUT will be applied to the 10 first seconds (duration of
7442 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
7443 to the remaining frames of the @code{mandelbrot} stream.
7444
7445 @subsubsection Hald CLUT with preview
7446
7447 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
7448 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
7449 biggest possible square starting at the top left of the picture. The remaining
7450 padding pixels (bottom or right) will be ignored. This area can be used to add
7451 a preview of the Hald CLUT.
7452
7453 Typically, the following generated Hald CLUT will be supported by the
7454 @code{haldclut} filter:
7455
7456 @example
7457 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
7458    pad=iw+320 [padded_clut];
7459    smptebars=s=320x256, split [a][b];
7460    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
7461    [main][b] overlay=W-320" -frames:v 1 clut.png
7462 @end example
7463
7464 It contains the original and a preview of the effect of the CLUT: SMPTE color
7465 bars are displayed on the right-top, and below the same color bars processed by
7466 the color changes.
7467
7468 Then, the effect of this Hald CLUT can be visualized with:
7469 @example
7470 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
7471 @end example
7472
7473 @section hflip
7474
7475 Flip the input video horizontally.
7476
7477 For example, to horizontally flip the input video with @command{ffmpeg}:
7478 @example
7479 ffmpeg -i in.avi -vf "hflip" out.avi
7480 @end example
7481
7482 @section histeq
7483 This filter applies a global color histogram equalization on a
7484 per-frame basis.
7485
7486 It can be used to correct video that has a compressed range of pixel
7487 intensities.  The filter redistributes the pixel intensities to
7488 equalize their distribution across the intensity range. It may be
7489 viewed as an "automatically adjusting contrast filter". This filter is
7490 useful only for correcting degraded or poorly captured source
7491 video.
7492
7493 The filter accepts the following options:
7494
7495 @table @option
7496 @item strength
7497 Determine the amount of equalization to be applied.  As the strength
7498 is reduced, the distribution of pixel intensities more-and-more
7499 approaches that of the input frame. The value must be a float number
7500 in the range [0,1] and defaults to 0.200.
7501
7502 @item intensity
7503 Set the maximum intensity that can generated and scale the output
7504 values appropriately.  The strength should be set as desired and then
7505 the intensity can be limited if needed to avoid washing-out. The value
7506 must be a float number in the range [0,1] and defaults to 0.210.
7507
7508 @item antibanding
7509 Set the antibanding level. If enabled the filter will randomly vary
7510 the luminance of output pixels by a small amount to avoid banding of
7511 the histogram. Possible values are @code{none}, @code{weak} or
7512 @code{strong}. It defaults to @code{none}.
7513 @end table
7514
7515 @section histogram
7516
7517 Compute and draw a color distribution histogram for the input video.
7518
7519 The computed histogram is a representation of the color component
7520 distribution in an image.
7521
7522 Standard histogram displays the color components distribution in an image.
7523 Displays color graph for each color component. Shows distribution of
7524 the Y, U, V, A or R, G, B components, depending on input format, in the
7525 current frame. Below each graph a color component scale meter is shown.
7526
7527 The filter accepts the following options:
7528
7529 @table @option
7530 @item level_height
7531 Set height of level. Default value is @code{200}.
7532 Allowed range is [50, 2048].
7533
7534 @item scale_height
7535 Set height of color scale. Default value is @code{12}.
7536 Allowed range is [0, 40].
7537
7538 @item display_mode
7539 Set display mode.
7540 It accepts the following values:
7541 @table @samp
7542 @item parade
7543 Per color component graphs are placed below each other.
7544
7545 @item overlay
7546 Presents information identical to that in the @code{parade}, except
7547 that the graphs representing color components are superimposed directly
7548 over one another.
7549 @end table
7550 Default is @code{parade}.
7551
7552 @item levels_mode
7553 Set mode. Can be either @code{linear}, or @code{logarithmic}.
7554 Default is @code{linear}.
7555
7556 @item components
7557 Set what color components to display.
7558 Default is @code{7}.
7559 @end table
7560
7561 @subsection Examples
7562
7563 @itemize
7564
7565 @item
7566 Calculate and draw histogram:
7567 @example
7568 ffplay -i input -vf histogram
7569 @end example
7570
7571 @end itemize
7572
7573 @anchor{hqdn3d}
7574 @section hqdn3d
7575
7576 This is a high precision/quality 3d denoise filter. It aims to reduce
7577 image noise, producing smooth images and making still images really
7578 still. It should enhance compressibility.
7579
7580 It accepts the following optional parameters:
7581
7582 @table @option
7583 @item luma_spatial
7584 A non-negative floating point number which specifies spatial luma strength.
7585 It defaults to 4.0.
7586
7587 @item chroma_spatial
7588 A non-negative floating point number which specifies spatial chroma strength.
7589 It defaults to 3.0*@var{luma_spatial}/4.0.
7590
7591 @item luma_tmp
7592 A floating point number which specifies luma temporal strength. It defaults to
7593 6.0*@var{luma_spatial}/4.0.
7594
7595 @item chroma_tmp
7596 A floating point number which specifies chroma temporal strength. It defaults to
7597 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
7598 @end table
7599
7600 @section hqx
7601
7602 Apply a high-quality magnification filter designed for pixel art. This filter
7603 was originally created by Maxim Stepin.
7604
7605 It accepts the following option:
7606
7607 @table @option
7608 @item n
7609 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
7610 @code{hq3x} and @code{4} for @code{hq4x}.
7611 Default is @code{3}.
7612 @end table
7613
7614 @section hstack
7615 Stack input videos horizontally.
7616
7617 All streams must be of same pixel format and of same height.
7618
7619 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
7620 to create same output.
7621
7622 The filter accept the following option:
7623
7624 @table @option
7625 @item inputs
7626 Set number of input streams. Default is 2.
7627
7628 @item shortest
7629 If set to 1, force the output to terminate when the shortest input
7630 terminates. Default value is 0.
7631 @end table
7632
7633 @section hue
7634
7635 Modify the hue and/or the saturation of the input.
7636
7637 It accepts the following parameters:
7638
7639 @table @option
7640 @item h
7641 Specify the hue angle as a number of degrees. It accepts an expression,
7642 and defaults to "0".
7643
7644 @item s
7645 Specify the saturation in the [-10,10] range. It accepts an expression and
7646 defaults to "1".
7647
7648 @item H
7649 Specify the hue angle as a number of radians. It accepts an
7650 expression, and defaults to "0".
7651
7652 @item b
7653 Specify the brightness in the [-10,10] range. It accepts an expression and
7654 defaults to "0".
7655 @end table
7656
7657 @option{h} and @option{H} are mutually exclusive, and can't be
7658 specified at the same time.
7659
7660 The @option{b}, @option{h}, @option{H} and @option{s} option values are
7661 expressions containing the following constants:
7662
7663 @table @option
7664 @item n
7665 frame count of the input frame starting from 0
7666
7667 @item pts
7668 presentation timestamp of the input frame expressed in time base units
7669
7670 @item r
7671 frame rate of the input video, NAN if the input frame rate is unknown
7672
7673 @item t
7674 timestamp expressed in seconds, NAN if the input timestamp is unknown
7675
7676 @item tb
7677 time base of the input video
7678 @end table
7679
7680 @subsection Examples
7681
7682 @itemize
7683 @item
7684 Set the hue to 90 degrees and the saturation to 1.0:
7685 @example
7686 hue=h=90:s=1
7687 @end example
7688
7689 @item
7690 Same command but expressing the hue in radians:
7691 @example
7692 hue=H=PI/2:s=1
7693 @end example
7694
7695 @item
7696 Rotate hue and make the saturation swing between 0
7697 and 2 over a period of 1 second:
7698 @example
7699 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7700 @end example
7701
7702 @item
7703 Apply a 3 seconds saturation fade-in effect starting at 0:
7704 @example
7705 hue="s=min(t/3\,1)"
7706 @end example
7707
7708 The general fade-in expression can be written as:
7709 @example
7710 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7711 @end example
7712
7713 @item
7714 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7715 @example
7716 hue="s=max(0\, min(1\, (8-t)/3))"
7717 @end example
7718
7719 The general fade-out expression can be written as:
7720 @example
7721 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7722 @end example
7723
7724 @end itemize
7725
7726 @subsection Commands
7727
7728 This filter supports the following commands:
7729 @table @option
7730 @item b
7731 @item s
7732 @item h
7733 @item H
7734 Modify the hue and/or the saturation and/or brightness of the input video.
7735 The command accepts the same syntax of the corresponding option.
7736
7737 If the specified expression is not valid, it is kept at its current
7738 value.
7739 @end table
7740
7741 @section idet
7742
7743 Detect video interlacing type.
7744
7745 This filter tries to detect if the input frames as interlaced, progressive,
7746 top or bottom field first. It will also try and detect fields that are
7747 repeated between adjacent frames (a sign of telecine).
7748
7749 Single frame detection considers only immediately adjacent frames when classifying each frame.
7750 Multiple frame detection incorporates the classification history of previous frames.
7751
7752 The filter will log these metadata values:
7753
7754 @table @option
7755 @item single.current_frame
7756 Detected type of current frame using single-frame detection. One of:
7757 ``tff'' (top field first), ``bff'' (bottom field first),
7758 ``progressive'', or ``undetermined''
7759
7760 @item single.tff
7761 Cumulative number of frames detected as top field first using single-frame detection.
7762
7763 @item multiple.tff
7764 Cumulative number of frames detected as top field first using multiple-frame detection.
7765
7766 @item single.bff
7767 Cumulative number of frames detected as bottom field first using single-frame detection.
7768
7769 @item multiple.current_frame
7770 Detected type of current frame using multiple-frame detection. One of:
7771 ``tff'' (top field first), ``bff'' (bottom field first),
7772 ``progressive'', or ``undetermined''
7773
7774 @item multiple.bff
7775 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7776
7777 @item single.progressive
7778 Cumulative number of frames detected as progressive using single-frame detection.
7779
7780 @item multiple.progressive
7781 Cumulative number of frames detected as progressive using multiple-frame detection.
7782
7783 @item single.undetermined
7784 Cumulative number of frames that could not be classified using single-frame detection.
7785
7786 @item multiple.undetermined
7787 Cumulative number of frames that could not be classified using multiple-frame detection.
7788
7789 @item repeated.current_frame
7790 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7791
7792 @item repeated.neither
7793 Cumulative number of frames with no repeated field.
7794
7795 @item repeated.top
7796 Cumulative number of frames with the top field repeated from the previous frame's top field.
7797
7798 @item repeated.bottom
7799 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7800 @end table
7801
7802 The filter accepts the following options:
7803
7804 @table @option
7805 @item intl_thres
7806 Set interlacing threshold.
7807 @item prog_thres
7808 Set progressive threshold.
7809 @item repeat_thres
7810 Threshold for repeated field detection.
7811 @item half_life
7812 Number of frames after which a given frame's contribution to the
7813 statistics is halved (i.e., it contributes only 0.5 to it's
7814 classification). The default of 0 means that all frames seen are given
7815 full weight of 1.0 forever.
7816 @item analyze_interlaced_flag
7817 When this is not 0 then idet will use the specified number of frames to determine
7818 if the interlaced flag is accurate, it will not count undetermined frames.
7819 If the flag is found to be accurate it will be used without any further
7820 computations, if it is found to be inaccurate it will be cleared without any
7821 further computations. This allows inserting the idet filter as a low computational
7822 method to clean up the interlaced flag
7823 @end table
7824
7825 @section il
7826
7827 Deinterleave or interleave fields.
7828
7829 This filter allows one to process interlaced images fields without
7830 deinterlacing them. Deinterleaving splits the input frame into 2
7831 fields (so called half pictures). Odd lines are moved to the top
7832 half of the output image, even lines to the bottom half.
7833 You can process (filter) them independently and then re-interleave them.
7834
7835 The filter accepts the following options:
7836
7837 @table @option
7838 @item luma_mode, l
7839 @item chroma_mode, c
7840 @item alpha_mode, a
7841 Available values for @var{luma_mode}, @var{chroma_mode} and
7842 @var{alpha_mode} are:
7843
7844 @table @samp
7845 @item none
7846 Do nothing.
7847
7848 @item deinterleave, d
7849 Deinterleave fields, placing one above the other.
7850
7851 @item interleave, i
7852 Interleave fields. Reverse the effect of deinterleaving.
7853 @end table
7854 Default value is @code{none}.
7855
7856 @item luma_swap, ls
7857 @item chroma_swap, cs
7858 @item alpha_swap, as
7859 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
7860 @end table
7861
7862 @section inflate
7863
7864 Apply inflate effect to the video.
7865
7866 This filter replaces the pixel by the local(3x3) average by taking into account
7867 only values higher than the pixel.
7868
7869 It accepts the following options:
7870
7871 @table @option
7872 @item threshold0
7873 @item threshold1
7874 @item threshold2
7875 @item threshold3
7876 Limit the maximum change for each plane, default is 65535.
7877 If 0, plane will remain unchanged.
7878 @end table
7879
7880 @section interlace
7881
7882 Simple interlacing filter from progressive contents. This interleaves upper (or
7883 lower) lines from odd frames with lower (or upper) lines from even frames,
7884 halving the frame rate and preserving image height.
7885
7886 @example
7887    Original        Original             New Frame
7888    Frame 'j'      Frame 'j+1'             (tff)
7889   ==========      ===========       ==================
7890     Line 0  -------------------->    Frame 'j' Line 0
7891     Line 1          Line 1  ---->   Frame 'j+1' Line 1
7892     Line 2 --------------------->    Frame 'j' Line 2
7893     Line 3          Line 3  ---->   Frame 'j+1' Line 3
7894      ...             ...                   ...
7895 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
7896 @end example
7897
7898 It accepts the following optional parameters:
7899
7900 @table @option
7901 @item scan
7902 This determines whether the interlaced frame is taken from the even
7903 (tff - default) or odd (bff) lines of the progressive frame.
7904
7905 @item lowpass
7906 Enable (default) or disable the vertical lowpass filter to avoid twitter
7907 interlacing and reduce moire patterns.
7908 @end table
7909
7910 @section kerndeint
7911
7912 Deinterlace input video by applying Donald Graft's adaptive kernel
7913 deinterling. Work on interlaced parts of a video to produce
7914 progressive frames.
7915
7916 The description of the accepted parameters follows.
7917
7918 @table @option
7919 @item thresh
7920 Set the threshold which affects the filter's tolerance when
7921 determining if a pixel line must be processed. It must be an integer
7922 in the range [0,255] and defaults to 10. A value of 0 will result in
7923 applying the process on every pixels.
7924
7925 @item map
7926 Paint pixels exceeding the threshold value to white if set to 1.
7927 Default is 0.
7928
7929 @item order
7930 Set the fields order. Swap fields if set to 1, leave fields alone if
7931 0. Default is 0.
7932
7933 @item sharp
7934 Enable additional sharpening if set to 1. Default is 0.
7935
7936 @item twoway
7937 Enable twoway sharpening if set to 1. Default is 0.
7938 @end table
7939
7940 @subsection Examples
7941
7942 @itemize
7943 @item
7944 Apply default values:
7945 @example
7946 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7947 @end example
7948
7949 @item
7950 Enable additional sharpening:
7951 @example
7952 kerndeint=sharp=1
7953 @end example
7954
7955 @item
7956 Paint processed pixels in white:
7957 @example
7958 kerndeint=map=1
7959 @end example
7960 @end itemize
7961
7962 @section lenscorrection
7963
7964 Correct radial lens distortion
7965
7966 This filter can be used to correct for radial distortion as can result from the use
7967 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7968 one can use tools available for example as part of opencv or simply trial-and-error.
7969 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7970 and extract the k1 and k2 coefficients from the resulting matrix.
7971
7972 Note that effectively the same filter is available in the open-source tools Krita and
7973 Digikam from the KDE project.
7974
7975 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7976 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7977 brightness distribution, so you may want to use both filters together in certain
7978 cases, though you will have to take care of ordering, i.e. whether vignetting should
7979 be applied before or after lens correction.
7980
7981 @subsection Options
7982
7983 The filter accepts the following options:
7984
7985 @table @option
7986 @item cx
7987 Relative x-coordinate of the focal point of the image, and thereby the center of the
7988 distortion. This value has a range [0,1] and is expressed as fractions of the image
7989 width.
7990 @item cy
7991 Relative y-coordinate of the focal point of the image, and thereby the center of the
7992 distortion. This value has a range [0,1] and is expressed as fractions of the image
7993 height.
7994 @item k1
7995 Coefficient of the quadratic correction term. 0.5 means no correction.
7996 @item k2
7997 Coefficient of the double quadratic correction term. 0.5 means no correction.
7998 @end table
7999
8000 The formula that generates the correction is:
8001
8002 @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)
8003
8004 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8005 distances from the focal point in the source and target images, respectively.
8006
8007 @anchor{lut3d}
8008 @section lut3d
8009
8010 Apply a 3D LUT to an input video.
8011
8012 The filter accepts the following options:
8013
8014 @table @option
8015 @item file
8016 Set the 3D LUT file name.
8017
8018 Currently supported formats:
8019 @table @samp
8020 @item 3dl
8021 AfterEffects
8022 @item cube
8023 Iridas
8024 @item dat
8025 DaVinci
8026 @item m3d
8027 Pandora
8028 @end table
8029 @item interp
8030 Select interpolation mode.
8031
8032 Available values are:
8033
8034 @table @samp
8035 @item nearest
8036 Use values from the nearest defined point.
8037 @item trilinear
8038 Interpolate values using the 8 points defining a cube.
8039 @item tetrahedral
8040 Interpolate values using a tetrahedron.
8041 @end table
8042 @end table
8043
8044 @section lut, lutrgb, lutyuv
8045
8046 Compute a look-up table for binding each pixel component input value
8047 to an output value, and apply it to the input video.
8048
8049 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8050 to an RGB input video.
8051
8052 These filters accept the following parameters:
8053 @table @option
8054 @item c0
8055 set first pixel component expression
8056 @item c1
8057 set second pixel component expression
8058 @item c2
8059 set third pixel component expression
8060 @item c3
8061 set fourth pixel component expression, corresponds to the alpha component
8062
8063 @item r
8064 set red component expression
8065 @item g
8066 set green component expression
8067 @item b
8068 set blue component expression
8069 @item a
8070 alpha component expression
8071
8072 @item y
8073 set Y/luminance component expression
8074 @item u
8075 set U/Cb component expression
8076 @item v
8077 set V/Cr component expression
8078 @end table
8079
8080 Each of them specifies the expression to use for computing the lookup table for
8081 the corresponding pixel component values.
8082
8083 The exact component associated to each of the @var{c*} options depends on the
8084 format in input.
8085
8086 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8087 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8088
8089 The expressions can contain the following constants and functions:
8090
8091 @table @option
8092 @item w
8093 @item h
8094 The input width and height.
8095
8096 @item val
8097 The input value for the pixel component.
8098
8099 @item clipval
8100 The input value, clipped to the @var{minval}-@var{maxval} range.
8101
8102 @item maxval
8103 The maximum value for the pixel component.
8104
8105 @item minval
8106 The minimum value for the pixel component.
8107
8108 @item negval
8109 The negated value for the pixel component value, clipped to the
8110 @var{minval}-@var{maxval} range; it corresponds to the expression
8111 "maxval-clipval+minval".
8112
8113 @item clip(val)
8114 The computed value in @var{val}, clipped to the
8115 @var{minval}-@var{maxval} range.
8116
8117 @item gammaval(gamma)
8118 The computed gamma correction value of the pixel component value,
8119 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
8120 expression
8121 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
8122
8123 @end table
8124
8125 All expressions default to "val".
8126
8127 @subsection Examples
8128
8129 @itemize
8130 @item
8131 Negate input video:
8132 @example
8133 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
8134 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
8135 @end example
8136
8137 The above is the same as:
8138 @example
8139 lutrgb="r=negval:g=negval:b=negval"
8140 lutyuv="y=negval:u=negval:v=negval"
8141 @end example
8142
8143 @item
8144 Negate luminance:
8145 @example
8146 lutyuv=y=negval
8147 @end example
8148
8149 @item
8150 Remove chroma components, turning the video into a graytone image:
8151 @example
8152 lutyuv="u=128:v=128"
8153 @end example
8154
8155 @item
8156 Apply a luma burning effect:
8157 @example
8158 lutyuv="y=2*val"
8159 @end example
8160
8161 @item
8162 Remove green and blue components:
8163 @example
8164 lutrgb="g=0:b=0"
8165 @end example
8166
8167 @item
8168 Set a constant alpha channel value on input:
8169 @example
8170 format=rgba,lutrgb=a="maxval-minval/2"
8171 @end example
8172
8173 @item
8174 Correct luminance gamma by a factor of 0.5:
8175 @example
8176 lutyuv=y=gammaval(0.5)
8177 @end example
8178
8179 @item
8180 Discard least significant bits of luma:
8181 @example
8182 lutyuv=y='bitand(val, 128+64+32)'
8183 @end example
8184 @end itemize
8185
8186 @section maskedmerge
8187
8188 Merge the first input stream with the second input stream using per pixel
8189 weights in the third input stream.
8190
8191 A value of 0 in the third stream pixel component means that pixel component
8192 from first stream is returned unchanged, while maximum value (eg. 255 for
8193 8-bit videos) means that pixel component from second stream is returned
8194 unchanged. Intermediate values define the amount of merging between both
8195 input stream's pixel components.
8196
8197 This filter accepts the following options:
8198 @table @option
8199 @item planes
8200 Set which planes will be processed as bitmap, unprocessed planes will be
8201 copied from first stream.
8202 By default value 0xf, all planes will be processed.
8203 @end table
8204
8205 @section mcdeint
8206
8207 Apply motion-compensation deinterlacing.
8208
8209 It needs one field per frame as input and must thus be used together
8210 with yadif=1/3 or equivalent.
8211
8212 This filter accepts the following options:
8213 @table @option
8214 @item mode
8215 Set the deinterlacing mode.
8216
8217 It accepts one of the following values:
8218 @table @samp
8219 @item fast
8220 @item medium
8221 @item slow
8222 use iterative motion estimation
8223 @item extra_slow
8224 like @samp{slow}, but use multiple reference frames.
8225 @end table
8226 Default value is @samp{fast}.
8227
8228 @item parity
8229 Set the picture field parity assumed for the input video. It must be
8230 one of the following values:
8231
8232 @table @samp
8233 @item 0, tff
8234 assume top field first
8235 @item 1, bff
8236 assume bottom field first
8237 @end table
8238
8239 Default value is @samp{bff}.
8240
8241 @item qp
8242 Set per-block quantization parameter (QP) used by the internal
8243 encoder.
8244
8245 Higher values should result in a smoother motion vector field but less
8246 optimal individual vectors. Default value is 1.
8247 @end table
8248
8249 @section mergeplanes
8250
8251 Merge color channel components from several video streams.
8252
8253 The filter accepts up to 4 input streams, and merge selected input
8254 planes to the output video.
8255
8256 This filter accepts the following options:
8257 @table @option
8258 @item mapping
8259 Set input to output plane mapping. Default is @code{0}.
8260
8261 The mappings is specified as a bitmap. It should be specified as a
8262 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
8263 mapping for the first plane of the output stream. 'A' sets the number of
8264 the input stream to use (from 0 to 3), and 'a' the plane number of the
8265 corresponding input to use (from 0 to 3). The rest of the mappings is
8266 similar, 'Bb' describes the mapping for the output stream second
8267 plane, 'Cc' describes the mapping for the output stream third plane and
8268 'Dd' describes the mapping for the output stream fourth plane.
8269
8270 @item format
8271 Set output pixel format. Default is @code{yuva444p}.
8272 @end table
8273
8274 @subsection Examples
8275
8276 @itemize
8277 @item
8278 Merge three gray video streams of same width and height into single video stream:
8279 @example
8280 [a0][a1][a2]mergeplanes=0x001020:yuv444p
8281 @end example
8282
8283 @item
8284 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
8285 @example
8286 [a0][a1]mergeplanes=0x00010210:yuva444p
8287 @end example
8288
8289 @item
8290 Swap Y and A plane in yuva444p stream:
8291 @example
8292 format=yuva444p,mergeplanes=0x03010200:yuva444p
8293 @end example
8294
8295 @item
8296 Swap U and V plane in yuv420p stream:
8297 @example
8298 format=yuv420p,mergeplanes=0x000201:yuv420p
8299 @end example
8300
8301 @item
8302 Cast a rgb24 clip to yuv444p:
8303 @example
8304 format=rgb24,mergeplanes=0x000102:yuv444p
8305 @end example
8306 @end itemize
8307
8308 @section mpdecimate
8309
8310 Drop frames that do not differ greatly from the previous frame in
8311 order to reduce frame rate.
8312
8313 The main use of this filter is for very-low-bitrate encoding
8314 (e.g. streaming over dialup modem), but it could in theory be used for
8315 fixing movies that were inverse-telecined incorrectly.
8316
8317 A description of the accepted options follows.
8318
8319 @table @option
8320 @item max
8321 Set the maximum number of consecutive frames which can be dropped (if
8322 positive), or the minimum interval between dropped frames (if
8323 negative). If the value is 0, the frame is dropped unregarding the
8324 number of previous sequentially dropped frames.
8325
8326 Default value is 0.
8327
8328 @item hi
8329 @item lo
8330 @item frac
8331 Set the dropping threshold values.
8332
8333 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
8334 represent actual pixel value differences, so a threshold of 64
8335 corresponds to 1 unit of difference for each pixel, or the same spread
8336 out differently over the block.
8337
8338 A frame is a candidate for dropping if no 8x8 blocks differ by more
8339 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
8340 meaning the whole image) differ by more than a threshold of @option{lo}.
8341
8342 Default value for @option{hi} is 64*12, default value for @option{lo} is
8343 64*5, and default value for @option{frac} is 0.33.
8344 @end table
8345
8346
8347 @section negate
8348
8349 Negate input video.
8350
8351 It accepts an integer in input; if non-zero it negates the
8352 alpha component (if available). The default value in input is 0.
8353
8354 @section noformat
8355
8356 Force libavfilter not to use any of the specified pixel formats for the
8357 input to the next filter.
8358
8359 It accepts the following parameters:
8360 @table @option
8361
8362 @item pix_fmts
8363 A '|'-separated list of pixel format names, such as
8364 apix_fmts=yuv420p|monow|rgb24".
8365
8366 @end table
8367
8368 @subsection Examples
8369
8370 @itemize
8371 @item
8372 Force libavfilter to use a format different from @var{yuv420p} for the
8373 input to the vflip filter:
8374 @example
8375 noformat=pix_fmts=yuv420p,vflip
8376 @end example
8377
8378 @item
8379 Convert the input video to any of the formats not contained in the list:
8380 @example
8381 noformat=yuv420p|yuv444p|yuv410p
8382 @end example
8383 @end itemize
8384
8385 @section noise
8386
8387 Add noise on video input frame.
8388
8389 The filter accepts the following options:
8390
8391 @table @option
8392 @item all_seed
8393 @item c0_seed
8394 @item c1_seed
8395 @item c2_seed
8396 @item c3_seed
8397 Set noise seed for specific pixel component or all pixel components in case
8398 of @var{all_seed}. Default value is @code{123457}.
8399
8400 @item all_strength, alls
8401 @item c0_strength, c0s
8402 @item c1_strength, c1s
8403 @item c2_strength, c2s
8404 @item c3_strength, c3s
8405 Set noise strength for specific pixel component or all pixel components in case
8406 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
8407
8408 @item all_flags, allf
8409 @item c0_flags, c0f
8410 @item c1_flags, c1f
8411 @item c2_flags, c2f
8412 @item c3_flags, c3f
8413 Set pixel component flags or set flags for all components if @var{all_flags}.
8414 Available values for component flags are:
8415 @table @samp
8416 @item a
8417 averaged temporal noise (smoother)
8418 @item p
8419 mix random noise with a (semi)regular pattern
8420 @item t
8421 temporal noise (noise pattern changes between frames)
8422 @item u
8423 uniform noise (gaussian otherwise)
8424 @end table
8425 @end table
8426
8427 @subsection Examples
8428
8429 Add temporal and uniform noise to input video:
8430 @example
8431 noise=alls=20:allf=t+u
8432 @end example
8433
8434 @section null
8435
8436 Pass the video source unchanged to the output.
8437
8438 @section ocr
8439 Optical Character Recognition
8440
8441 This filter uses Tesseract for optical character recognition.
8442
8443 It accepts the following options:
8444
8445 @table @option
8446 @item datapath
8447 Set datapath to tesseract data. Default is to use whatever was
8448 set at installation.
8449
8450 @item language
8451 Set language, default is "eng".
8452
8453 @item whitelist
8454 Set character whitelist.
8455
8456 @item blacklist
8457 Set character blacklist.
8458 @end table
8459
8460 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
8461
8462 @section ocv
8463
8464 Apply a video transform using libopencv.
8465
8466 To enable this filter, install the libopencv library and headers and
8467 configure FFmpeg with @code{--enable-libopencv}.
8468
8469 It accepts the following parameters:
8470
8471 @table @option
8472
8473 @item filter_name
8474 The name of the libopencv filter to apply.
8475
8476 @item filter_params
8477 The parameters to pass to the libopencv filter. If not specified, the default
8478 values are assumed.
8479
8480 @end table
8481
8482 Refer to the official libopencv documentation for more precise
8483 information:
8484 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
8485
8486 Several libopencv filters are supported; see the following subsections.
8487
8488 @anchor{dilate}
8489 @subsection dilate
8490
8491 Dilate an image by using a specific structuring element.
8492 It corresponds to the libopencv function @code{cvDilate}.
8493
8494 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
8495
8496 @var{struct_el} represents a structuring element, and has the syntax:
8497 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
8498
8499 @var{cols} and @var{rows} represent the number of columns and rows of
8500 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
8501 point, and @var{shape} the shape for the structuring element. @var{shape}
8502 must be "rect", "cross", "ellipse", or "custom".
8503
8504 If the value for @var{shape} is "custom", it must be followed by a
8505 string of the form "=@var{filename}". The file with name
8506 @var{filename} is assumed to represent a binary image, with each
8507 printable character corresponding to a bright pixel. When a custom
8508 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
8509 or columns and rows of the read file are assumed instead.
8510
8511 The default value for @var{struct_el} is "3x3+0x0/rect".
8512
8513 @var{nb_iterations} specifies the number of times the transform is
8514 applied to the image, and defaults to 1.
8515
8516 Some examples:
8517 @example
8518 # Use the default values
8519 ocv=dilate
8520
8521 # Dilate using a structuring element with a 5x5 cross, iterating two times
8522 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
8523
8524 # Read the shape from the file diamond.shape, iterating two times.
8525 # The file diamond.shape may contain a pattern of characters like this
8526 #   *
8527 #  ***
8528 # *****
8529 #  ***
8530 #   *
8531 # The specified columns and rows are ignored
8532 # but the anchor point coordinates are not
8533 ocv=dilate:0x0+2x2/custom=diamond.shape|2
8534 @end example
8535
8536 @subsection erode
8537
8538 Erode an image by using a specific structuring element.
8539 It corresponds to the libopencv function @code{cvErode}.
8540
8541 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
8542 with the same syntax and semantics as the @ref{dilate} filter.
8543
8544 @subsection smooth
8545
8546 Smooth the input video.
8547
8548 The filter takes the following parameters:
8549 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
8550
8551 @var{type} is the type of smooth filter to apply, and must be one of
8552 the following values: "blur", "blur_no_scale", "median", "gaussian",
8553 or "bilateral". The default value is "gaussian".
8554
8555 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
8556 depend on the smooth type. @var{param1} and
8557 @var{param2} accept integer positive values or 0. @var{param3} and
8558 @var{param4} accept floating point values.
8559
8560 The default value for @var{param1} is 3. The default value for the
8561 other parameters is 0.
8562
8563 These parameters correspond to the parameters assigned to the
8564 libopencv function @code{cvSmooth}.
8565
8566 @anchor{overlay}
8567 @section overlay
8568
8569 Overlay one video on top of another.
8570
8571 It takes two inputs and has one output. The first input is the "main"
8572 video on which the second input is overlaid.
8573
8574 It accepts the following parameters:
8575
8576 A description of the accepted options follows.
8577
8578 @table @option
8579 @item x
8580 @item y
8581 Set the expression for the x and y coordinates of the overlaid video
8582 on the main video. Default value is "0" for both expressions. In case
8583 the expression is invalid, it is set to a huge value (meaning that the
8584 overlay will not be displayed within the output visible area).
8585
8586 @item eof_action
8587 The action to take when EOF is encountered on the secondary input; it accepts
8588 one of the following values:
8589
8590 @table @option
8591 @item repeat
8592 Repeat the last frame (the default).
8593 @item endall
8594 End both streams.
8595 @item pass
8596 Pass the main input through.
8597 @end table
8598
8599 @item eval
8600 Set when the expressions for @option{x}, and @option{y} are evaluated.
8601
8602 It accepts the following values:
8603 @table @samp
8604 @item init
8605 only evaluate expressions once during the filter initialization or
8606 when a command is processed
8607
8608 @item frame
8609 evaluate expressions for each incoming frame
8610 @end table
8611
8612 Default value is @samp{frame}.
8613
8614 @item shortest
8615 If set to 1, force the output to terminate when the shortest input
8616 terminates. Default value is 0.
8617
8618 @item format
8619 Set the format for the output video.
8620
8621 It accepts the following values:
8622 @table @samp
8623 @item yuv420
8624 force YUV420 output
8625
8626 @item yuv422
8627 force YUV422 output
8628
8629 @item yuv444
8630 force YUV444 output
8631
8632 @item rgb
8633 force RGB output
8634 @end table
8635
8636 Default value is @samp{yuv420}.
8637
8638 @item rgb @emph{(deprecated)}
8639 If set to 1, force the filter to accept inputs in the RGB
8640 color space. Default value is 0. This option is deprecated, use
8641 @option{format} instead.
8642
8643 @item repeatlast
8644 If set to 1, force the filter to draw the last overlay frame over the
8645 main input until the end of the stream. A value of 0 disables this
8646 behavior. Default value is 1.
8647 @end table
8648
8649 The @option{x}, and @option{y} expressions can contain the following
8650 parameters.
8651
8652 @table @option
8653 @item main_w, W
8654 @item main_h, H
8655 The main input width and height.
8656
8657 @item overlay_w, w
8658 @item overlay_h, h
8659 The overlay input width and height.
8660
8661 @item x
8662 @item y
8663 The computed values for @var{x} and @var{y}. They are evaluated for
8664 each new frame.
8665
8666 @item hsub
8667 @item vsub
8668 horizontal and vertical chroma subsample values of the output
8669 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
8670 @var{vsub} is 1.
8671
8672 @item n
8673 the number of input frame, starting from 0
8674
8675 @item pos
8676 the position in the file of the input frame, NAN if unknown
8677
8678 @item t
8679 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
8680
8681 @end table
8682
8683 Note that the @var{n}, @var{pos}, @var{t} variables are available only
8684 when evaluation is done @emph{per frame}, and will evaluate to NAN
8685 when @option{eval} is set to @samp{init}.
8686
8687 Be aware that frames are taken from each input video in timestamp
8688 order, hence, if their initial timestamps differ, it is a good idea
8689 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
8690 have them begin in the same zero timestamp, as the example for
8691 the @var{movie} filter does.
8692
8693 You can chain together more overlays but you should test the
8694 efficiency of such approach.
8695
8696 @subsection Commands
8697
8698 This filter supports the following commands:
8699 @table @option
8700 @item x
8701 @item y
8702 Modify the x and y of the overlay input.
8703 The command accepts the same syntax of the corresponding option.
8704
8705 If the specified expression is not valid, it is kept at its current
8706 value.
8707 @end table
8708
8709 @subsection Examples
8710
8711 @itemize
8712 @item
8713 Draw the overlay at 10 pixels from the bottom right corner of the main
8714 video:
8715 @example
8716 overlay=main_w-overlay_w-10:main_h-overlay_h-10
8717 @end example
8718
8719 Using named options the example above becomes:
8720 @example
8721 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
8722 @end example
8723
8724 @item
8725 Insert a transparent PNG logo in the bottom left corner of the input,
8726 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
8727 @example
8728 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
8729 @end example
8730
8731 @item
8732 Insert 2 different transparent PNG logos (second logo on bottom
8733 right corner) using the @command{ffmpeg} tool:
8734 @example
8735 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
8736 @end example
8737
8738 @item
8739 Add a transparent color layer on top of the main video; @code{WxH}
8740 must specify the size of the main input to the overlay filter:
8741 @example
8742 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
8743 @end example
8744
8745 @item
8746 Play an original video and a filtered version (here with the deshake
8747 filter) side by side using the @command{ffplay} tool:
8748 @example
8749 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
8750 @end example
8751
8752 The above command is the same as:
8753 @example
8754 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
8755 @end example
8756
8757 @item
8758 Make a sliding overlay appearing from the left to the right top part of the
8759 screen starting since time 2:
8760 @example
8761 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
8762 @end example
8763
8764 @item
8765 Compose output by putting two input videos side to side:
8766 @example
8767 ffmpeg -i left.avi -i right.avi -filter_complex "
8768 nullsrc=size=200x100 [background];
8769 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
8770 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
8771 [background][left]       overlay=shortest=1       [background+left];
8772 [background+left][right] overlay=shortest=1:x=100 [left+right]
8773 "
8774 @end example
8775
8776 @item
8777 Mask 10-20 seconds of a video by applying the delogo filter to a section
8778 @example
8779 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
8780 -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]'
8781 masked.avi
8782 @end example
8783
8784 @item
8785 Chain several overlays in cascade:
8786 @example
8787 nullsrc=s=200x200 [bg];
8788 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
8789 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
8790 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
8791 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
8792 [in3] null,       [mid2] overlay=100:100 [out0]
8793 @end example
8794
8795 @end itemize
8796
8797 @section owdenoise
8798
8799 Apply Overcomplete Wavelet denoiser.
8800
8801 The filter accepts the following options:
8802
8803 @table @option
8804 @item depth
8805 Set depth.
8806
8807 Larger depth values will denoise lower frequency components more, but
8808 slow down filtering.
8809
8810 Must be an int in the range 8-16, default is @code{8}.
8811
8812 @item luma_strength, ls
8813 Set luma strength.
8814
8815 Must be a double value in the range 0-1000, default is @code{1.0}.
8816
8817 @item chroma_strength, cs
8818 Set chroma strength.
8819
8820 Must be a double value in the range 0-1000, default is @code{1.0}.
8821 @end table
8822
8823 @anchor{pad}
8824 @section pad
8825
8826 Add paddings to the input image, and place the original input at the
8827 provided @var{x}, @var{y} coordinates.
8828
8829 It accepts the following parameters:
8830
8831 @table @option
8832 @item width, w
8833 @item height, h
8834 Specify an expression for the size of the output image with the
8835 paddings added. If the value for @var{width} or @var{height} is 0, the
8836 corresponding input size is used for the output.
8837
8838 The @var{width} expression can reference the value set by the
8839 @var{height} expression, and vice versa.
8840
8841 The default value of @var{width} and @var{height} is 0.
8842
8843 @item x
8844 @item y
8845 Specify the offsets to place the input image at within the padded area,
8846 with respect to the top/left border of the output image.
8847
8848 The @var{x} expression can reference the value set by the @var{y}
8849 expression, and vice versa.
8850
8851 The default value of @var{x} and @var{y} is 0.
8852
8853 @item color
8854 Specify the color of the padded area. For the syntax of this option,
8855 check the "Color" section in the ffmpeg-utils manual.
8856
8857 The default value of @var{color} is "black".
8858 @end table
8859
8860 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
8861 options are expressions containing the following constants:
8862
8863 @table @option
8864 @item in_w
8865 @item in_h
8866 The input video width and height.
8867
8868 @item iw
8869 @item ih
8870 These are the same as @var{in_w} and @var{in_h}.
8871
8872 @item out_w
8873 @item out_h
8874 The output width and height (the size of the padded area), as
8875 specified by the @var{width} and @var{height} expressions.
8876
8877 @item ow
8878 @item oh
8879 These are the same as @var{out_w} and @var{out_h}.
8880
8881 @item x
8882 @item y
8883 The x and y offsets as specified by the @var{x} and @var{y}
8884 expressions, or NAN if not yet specified.
8885
8886 @item a
8887 same as @var{iw} / @var{ih}
8888
8889 @item sar
8890 input sample aspect ratio
8891
8892 @item dar
8893 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8894
8895 @item hsub
8896 @item vsub
8897 The horizontal and vertical chroma subsample values. For example for the
8898 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8899 @end table
8900
8901 @subsection Examples
8902
8903 @itemize
8904 @item
8905 Add paddings with the color "violet" to the input video. The output video
8906 size is 640x480, and the top-left corner of the input video is placed at
8907 column 0, row 40
8908 @example
8909 pad=640:480:0:40:violet
8910 @end example
8911
8912 The example above is equivalent to the following command:
8913 @example
8914 pad=width=640:height=480:x=0:y=40:color=violet
8915 @end example
8916
8917 @item
8918 Pad the input to get an output with dimensions increased by 3/2,
8919 and put the input video at the center of the padded area:
8920 @example
8921 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
8922 @end example
8923
8924 @item
8925 Pad the input to get a squared output with size equal to the maximum
8926 value between the input width and height, and put the input video at
8927 the center of the padded area:
8928 @example
8929 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
8930 @end example
8931
8932 @item
8933 Pad the input to get a final w/h ratio of 16:9:
8934 @example
8935 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
8936 @end example
8937
8938 @item
8939 In case of anamorphic video, in order to set the output display aspect
8940 correctly, it is necessary to use @var{sar} in the expression,
8941 according to the relation:
8942 @example
8943 (ih * X / ih) * sar = output_dar
8944 X = output_dar / sar
8945 @end example
8946
8947 Thus the previous example needs to be modified to:
8948 @example
8949 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
8950 @end example
8951
8952 @item
8953 Double the output size and put the input video in the bottom-right
8954 corner of the output padded area:
8955 @example
8956 pad="2*iw:2*ih:ow-iw:oh-ih"
8957 @end example
8958 @end itemize
8959
8960 @anchor{palettegen}
8961 @section palettegen
8962
8963 Generate one palette for a whole video stream.
8964
8965 It accepts the following options:
8966
8967 @table @option
8968 @item max_colors
8969 Set the maximum number of colors to quantize in the palette.
8970 Note: the palette will still contain 256 colors; the unused palette entries
8971 will be black.
8972
8973 @item reserve_transparent
8974 Create a palette of 255 colors maximum and reserve the last one for
8975 transparency. Reserving the transparency color is useful for GIF optimization.
8976 If not set, the maximum of colors in the palette will be 256. You probably want
8977 to disable this option for a standalone image.
8978 Set by default.
8979
8980 @item stats_mode
8981 Set statistics mode.
8982
8983 It accepts the following values:
8984 @table @samp
8985 @item full
8986 Compute full frame histograms.
8987 @item diff
8988 Compute histograms only for the part that differs from previous frame. This
8989 might be relevant to give more importance to the moving part of your input if
8990 the background is static.
8991 @end table
8992
8993 Default value is @var{full}.
8994 @end table
8995
8996 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8997 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8998 color quantization of the palette. This information is also visible at
8999 @var{info} logging level.
9000
9001 @subsection Examples
9002
9003 @itemize
9004 @item
9005 Generate a representative palette of a given video using @command{ffmpeg}:
9006 @example
9007 ffmpeg -i input.mkv -vf palettegen palette.png
9008 @end example
9009 @end itemize
9010
9011 @section paletteuse
9012
9013 Use a palette to downsample an input video stream.
9014
9015 The filter takes two inputs: one video stream and a palette. The palette must
9016 be a 256 pixels image.
9017
9018 It accepts the following options:
9019
9020 @table @option
9021 @item dither
9022 Select dithering mode. Available algorithms are:
9023 @table @samp
9024 @item bayer
9025 Ordered 8x8 bayer dithering (deterministic)
9026 @item heckbert
9027 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
9028 Note: this dithering is sometimes considered "wrong" and is included as a
9029 reference.
9030 @item floyd_steinberg
9031 Floyd and Steingberg dithering (error diffusion)
9032 @item sierra2
9033 Frankie Sierra dithering v2 (error diffusion)
9034 @item sierra2_4a
9035 Frankie Sierra dithering v2 "Lite" (error diffusion)
9036 @end table
9037
9038 Default is @var{sierra2_4a}.
9039
9040 @item bayer_scale
9041 When @var{bayer} dithering is selected, this option defines the scale of the
9042 pattern (how much the crosshatch pattern is visible). A low value means more
9043 visible pattern for less banding, and higher value means less visible pattern
9044 at the cost of more banding.
9045
9046 The option must be an integer value in the range [0,5]. Default is @var{2}.
9047
9048 @item diff_mode
9049 If set, define the zone to process
9050
9051 @table @samp
9052 @item rectangle
9053 Only the changing rectangle will be reprocessed. This is similar to GIF
9054 cropping/offsetting compression mechanism. This option can be useful for speed
9055 if only a part of the image is changing, and has use cases such as limiting the
9056 scope of the error diffusal @option{dither} to the rectangle that bounds the
9057 moving scene (it leads to more deterministic output if the scene doesn't change
9058 much, and as a result less moving noise and better GIF compression).
9059 @end table
9060
9061 Default is @var{none}.
9062 @end table
9063
9064 @subsection Examples
9065
9066 @itemize
9067 @item
9068 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
9069 using @command{ffmpeg}:
9070 @example
9071 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
9072 @end example
9073 @end itemize
9074
9075 @section perspective
9076
9077 Correct perspective of video not recorded perpendicular to the screen.
9078
9079 A description of the accepted parameters follows.
9080
9081 @table @option
9082 @item x0
9083 @item y0
9084 @item x1
9085 @item y1
9086 @item x2
9087 @item y2
9088 @item x3
9089 @item y3
9090 Set coordinates expression for top left, top right, bottom left and bottom right corners.
9091 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
9092 If the @code{sense} option is set to @code{source}, then the specified points will be sent
9093 to the corners of the destination. If the @code{sense} option is set to @code{destination},
9094 then the corners of the source will be sent to the specified coordinates.
9095
9096 The expressions can use the following variables:
9097
9098 @table @option
9099 @item W
9100 @item H
9101 the width and height of video frame.
9102 @end table
9103
9104 @item interpolation
9105 Set interpolation for perspective correction.
9106
9107 It accepts the following values:
9108 @table @samp
9109 @item linear
9110 @item cubic
9111 @end table
9112
9113 Default value is @samp{linear}.
9114
9115 @item sense
9116 Set interpretation of coordinate options.
9117
9118 It accepts the following values:
9119 @table @samp
9120 @item 0, source
9121
9122 Send point in the source specified by the given coordinates to
9123 the corners of the destination.
9124
9125 @item 1, destination
9126
9127 Send the corners of the source to the point in the destination specified
9128 by the given coordinates.
9129
9130 Default value is @samp{source}.
9131 @end table
9132 @end table
9133
9134 @section phase
9135
9136 Delay interlaced video by one field time so that the field order changes.
9137
9138 The intended use is to fix PAL movies that have been captured with the
9139 opposite field order to the film-to-video transfer.
9140
9141 A description of the accepted parameters follows.
9142
9143 @table @option
9144 @item mode
9145 Set phase mode.
9146
9147 It accepts the following values:
9148 @table @samp
9149 @item t
9150 Capture field order top-first, transfer bottom-first.
9151 Filter will delay the bottom field.
9152
9153 @item b
9154 Capture field order bottom-first, transfer top-first.
9155 Filter will delay the top field.
9156
9157 @item p
9158 Capture and transfer with the same field order. This mode only exists
9159 for the documentation of the other options to refer to, but if you
9160 actually select it, the filter will faithfully do nothing.
9161
9162 @item a
9163 Capture field order determined automatically by field flags, transfer
9164 opposite.
9165 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
9166 basis using field flags. If no field information is available,
9167 then this works just like @samp{u}.
9168
9169 @item u
9170 Capture unknown or varying, transfer opposite.
9171 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
9172 analyzing the images and selecting the alternative that produces best
9173 match between the fields.
9174
9175 @item T
9176 Capture top-first, transfer unknown or varying.
9177 Filter selects among @samp{t} and @samp{p} using image analysis.
9178
9179 @item B
9180 Capture bottom-first, transfer unknown or varying.
9181 Filter selects among @samp{b} and @samp{p} using image analysis.
9182
9183 @item A
9184 Capture determined by field flags, transfer unknown or varying.
9185 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
9186 image analysis. If no field information is available, then this works just
9187 like @samp{U}. This is the default mode.
9188
9189 @item U
9190 Both capture and transfer unknown or varying.
9191 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
9192 @end table
9193 @end table
9194
9195 @section pixdesctest
9196
9197 Pixel format descriptor test filter, mainly useful for internal
9198 testing. The output video should be equal to the input video.
9199
9200 For example:
9201 @example
9202 format=monow, pixdesctest
9203 @end example
9204
9205 can be used to test the monowhite pixel format descriptor definition.
9206
9207 @section pp
9208
9209 Enable the specified chain of postprocessing subfilters using libpostproc. This
9210 library should be automatically selected with a GPL build (@code{--enable-gpl}).
9211 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
9212 Each subfilter and some options have a short and a long name that can be used
9213 interchangeably, i.e. dr/dering are the same.
9214
9215 The filters accept the following options:
9216
9217 @table @option
9218 @item subfilters
9219 Set postprocessing subfilters string.
9220 @end table
9221
9222 All subfilters share common options to determine their scope:
9223
9224 @table @option
9225 @item a/autoq
9226 Honor the quality commands for this subfilter.
9227
9228 @item c/chrom
9229 Do chrominance filtering, too (default).
9230
9231 @item y/nochrom
9232 Do luminance filtering only (no chrominance).
9233
9234 @item n/noluma
9235 Do chrominance filtering only (no luminance).
9236 @end table
9237
9238 These options can be appended after the subfilter name, separated by a '|'.
9239
9240 Available subfilters are:
9241
9242 @table @option
9243 @item hb/hdeblock[|difference[|flatness]]
9244 Horizontal deblocking filter
9245 @table @option
9246 @item difference
9247 Difference factor where higher values mean more deblocking (default: @code{32}).
9248 @item flatness
9249 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9250 @end table
9251
9252 @item vb/vdeblock[|difference[|flatness]]
9253 Vertical deblocking filter
9254 @table @option
9255 @item difference
9256 Difference factor where higher values mean more deblocking (default: @code{32}).
9257 @item flatness
9258 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9259 @end table
9260
9261 @item ha/hadeblock[|difference[|flatness]]
9262 Accurate horizontal deblocking filter
9263 @table @option
9264 @item difference
9265 Difference factor where higher values mean more deblocking (default: @code{32}).
9266 @item flatness
9267 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9268 @end table
9269
9270 @item va/vadeblock[|difference[|flatness]]
9271 Accurate vertical deblocking filter
9272 @table @option
9273 @item difference
9274 Difference factor where higher values mean more deblocking (default: @code{32}).
9275 @item flatness
9276 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9277 @end table
9278 @end table
9279
9280 The horizontal and vertical deblocking filters share the difference and
9281 flatness values so you cannot set different horizontal and vertical
9282 thresholds.
9283
9284 @table @option
9285 @item h1/x1hdeblock
9286 Experimental horizontal deblocking filter
9287
9288 @item v1/x1vdeblock
9289 Experimental vertical deblocking filter
9290
9291 @item dr/dering
9292 Deringing filter
9293
9294 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
9295 @table @option
9296 @item threshold1
9297 larger -> stronger filtering
9298 @item threshold2
9299 larger -> stronger filtering
9300 @item threshold3
9301 larger -> stronger filtering
9302 @end table
9303
9304 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
9305 @table @option
9306 @item f/fullyrange
9307 Stretch luminance to @code{0-255}.
9308 @end table
9309
9310 @item lb/linblenddeint
9311 Linear blend deinterlacing filter that deinterlaces the given block by
9312 filtering all lines with a @code{(1 2 1)} filter.
9313
9314 @item li/linipoldeint
9315 Linear interpolating deinterlacing filter that deinterlaces the given block by
9316 linearly interpolating every second line.
9317
9318 @item ci/cubicipoldeint
9319 Cubic interpolating deinterlacing filter deinterlaces the given block by
9320 cubically interpolating every second line.
9321
9322 @item md/mediandeint
9323 Median deinterlacing filter that deinterlaces the given block by applying a
9324 median filter to every second line.
9325
9326 @item fd/ffmpegdeint
9327 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
9328 second line with a @code{(-1 4 2 4 -1)} filter.
9329
9330 @item l5/lowpass5
9331 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
9332 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
9333
9334 @item fq/forceQuant[|quantizer]
9335 Overrides the quantizer table from the input with the constant quantizer you
9336 specify.
9337 @table @option
9338 @item quantizer
9339 Quantizer to use
9340 @end table
9341
9342 @item de/default
9343 Default pp filter combination (@code{hb|a,vb|a,dr|a})
9344
9345 @item fa/fast
9346 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
9347
9348 @item ac
9349 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
9350 @end table
9351
9352 @subsection Examples
9353
9354 @itemize
9355 @item
9356 Apply horizontal and vertical deblocking, deringing and automatic
9357 brightness/contrast:
9358 @example
9359 pp=hb/vb/dr/al
9360 @end example
9361
9362 @item
9363 Apply default filters without brightness/contrast correction:
9364 @example
9365 pp=de/-al
9366 @end example
9367
9368 @item
9369 Apply default filters and temporal denoiser:
9370 @example
9371 pp=default/tmpnoise|1|2|3
9372 @end example
9373
9374 @item
9375 Apply deblocking on luminance only, and switch vertical deblocking on or off
9376 automatically depending on available CPU time:
9377 @example
9378 pp=hb|y/vb|a
9379 @end example
9380 @end itemize
9381
9382 @section pp7
9383 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
9384 similar to spp = 6 with 7 point DCT, where only the center sample is
9385 used after IDCT.
9386
9387 The filter accepts the following options:
9388
9389 @table @option
9390 @item qp
9391 Force a constant quantization parameter. It accepts an integer in range
9392 0 to 63. If not set, the filter will use the QP from the video stream
9393 (if available).
9394
9395 @item mode
9396 Set thresholding mode. Available modes are:
9397
9398 @table @samp
9399 @item hard
9400 Set hard thresholding.
9401 @item soft
9402 Set soft thresholding (better de-ringing effect, but likely blurrier).
9403 @item medium
9404 Set medium thresholding (good results, default).
9405 @end table
9406 @end table
9407
9408 @section psnr
9409
9410 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
9411 Ratio) between two input videos.
9412
9413 This filter takes in input two input videos, the first input is
9414 considered the "main" source and is passed unchanged to the
9415 output. The second input is used as a "reference" video for computing
9416 the PSNR.
9417
9418 Both video inputs must have the same resolution and pixel format for
9419 this filter to work correctly. Also it assumes that both inputs
9420 have the same number of frames, which are compared one by one.
9421
9422 The obtained average PSNR is printed through the logging system.
9423
9424 The filter stores the accumulated MSE (mean squared error) of each
9425 frame, and at the end of the processing it is averaged across all frames
9426 equally, and the following formula is applied to obtain the PSNR:
9427
9428 @example
9429 PSNR = 10*log10(MAX^2/MSE)
9430 @end example
9431
9432 Where MAX is the average of the maximum values of each component of the
9433 image.
9434
9435 The description of the accepted parameters follows.
9436
9437 @table @option
9438 @item stats_file, f
9439 If specified the filter will use the named file to save the PSNR of
9440 each individual frame. When filename equals "-" the data is sent to
9441 standard output.
9442 @end table
9443
9444 The file printed if @var{stats_file} is selected, contains a sequence of
9445 key/value pairs of the form @var{key}:@var{value} for each compared
9446 couple of frames.
9447
9448 A description of each shown parameter follows:
9449
9450 @table @option
9451 @item n
9452 sequential number of the input frame, starting from 1
9453
9454 @item mse_avg
9455 Mean Square Error pixel-by-pixel average difference of the compared
9456 frames, averaged over all the image components.
9457
9458 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
9459 Mean Square Error pixel-by-pixel average difference of the compared
9460 frames for the component specified by the suffix.
9461
9462 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
9463 Peak Signal to Noise ratio of the compared frames for the component
9464 specified by the suffix.
9465 @end table
9466
9467 For example:
9468 @example
9469 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
9470 [main][ref] psnr="stats_file=stats.log" [out]
9471 @end example
9472
9473 On this example the input file being processed is compared with the
9474 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
9475 is stored in @file{stats.log}.
9476
9477 @anchor{pullup}
9478 @section pullup
9479
9480 Pulldown reversal (inverse telecine) filter, capable of handling mixed
9481 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
9482 content.
9483
9484 The pullup filter is designed to take advantage of future context in making
9485 its decisions. This filter is stateless in the sense that it does not lock
9486 onto a pattern to follow, but it instead looks forward to the following
9487 fields in order to identify matches and rebuild progressive frames.
9488
9489 To produce content with an even framerate, insert the fps filter after
9490 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
9491 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
9492
9493 The filter accepts the following options:
9494
9495 @table @option
9496 @item jl
9497 @item jr
9498 @item jt
9499 @item jb
9500 These options set the amount of "junk" to ignore at the left, right, top, and
9501 bottom of the image, respectively. Left and right are in units of 8 pixels,
9502 while top and bottom are in units of 2 lines.
9503 The default is 8 pixels on each side.
9504
9505 @item sb
9506 Set the strict breaks. Setting this option to 1 will reduce the chances of
9507 filter generating an occasional mismatched frame, but it may also cause an
9508 excessive number of frames to be dropped during high motion sequences.
9509 Conversely, setting it to -1 will make filter match fields more easily.
9510 This may help processing of video where there is slight blurring between
9511 the fields, but may also cause there to be interlaced frames in the output.
9512 Default value is @code{0}.
9513
9514 @item mp
9515 Set the metric plane to use. It accepts the following values:
9516 @table @samp
9517 @item l
9518 Use luma plane.
9519
9520 @item u
9521 Use chroma blue plane.
9522
9523 @item v
9524 Use chroma red plane.
9525 @end table
9526
9527 This option may be set to use chroma plane instead of the default luma plane
9528 for doing filter's computations. This may improve accuracy on very clean
9529 source material, but more likely will decrease accuracy, especially if there
9530 is chroma noise (rainbow effect) or any grayscale video.
9531 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
9532 load and make pullup usable in realtime on slow machines.
9533 @end table
9534
9535 For best results (without duplicated frames in the output file) it is
9536 necessary to change the output frame rate. For example, to inverse
9537 telecine NTSC input:
9538 @example
9539 ffmpeg -i input -vf pullup -r 24000/1001 ...
9540 @end example
9541
9542 @section qp
9543
9544 Change video quantization parameters (QP).
9545
9546 The filter accepts the following option:
9547
9548 @table @option
9549 @item qp
9550 Set expression for quantization parameter.
9551 @end table
9552
9553 The expression is evaluated through the eval API and can contain, among others,
9554 the following constants:
9555
9556 @table @var
9557 @item known
9558 1 if index is not 129, 0 otherwise.
9559
9560 @item qp
9561 Sequentional index starting from -129 to 128.
9562 @end table
9563
9564 @subsection Examples
9565
9566 @itemize
9567 @item
9568 Some equation like:
9569 @example
9570 qp=2+2*sin(PI*qp)
9571 @end example
9572 @end itemize
9573
9574 @section random
9575
9576 Flush video frames from internal cache of frames into a random order.
9577 No frame is discarded.
9578 Inspired by @ref{frei0r} nervous filter.
9579
9580 @table @option
9581 @item frames
9582 Set size in number of frames of internal cache, in range from @code{2} to
9583 @code{512}. Default is @code{30}.
9584
9585 @item seed
9586 Set seed for random number generator, must be an integer included between
9587 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9588 less than @code{0}, the filter will try to use a good random seed on a
9589 best effort basis.
9590 @end table
9591
9592 @section removegrain
9593
9594 The removegrain filter is a spatial denoiser for progressive video.
9595
9596 @table @option
9597 @item m0
9598 Set mode for the first plane.
9599
9600 @item m1
9601 Set mode for the second plane.
9602
9603 @item m2
9604 Set mode for the third plane.
9605
9606 @item m3
9607 Set mode for the fourth plane.
9608 @end table
9609
9610 Range of mode is from 0 to 24. Description of each mode follows:
9611
9612 @table @var
9613 @item 0
9614 Leave input plane unchanged. Default.
9615
9616 @item 1
9617 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
9618
9619 @item 2
9620 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
9621
9622 @item 3
9623 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
9624
9625 @item 4
9626 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
9627 This is equivalent to a median filter.
9628
9629 @item 5
9630 Line-sensitive clipping giving the minimal change.
9631
9632 @item 6
9633 Line-sensitive clipping, intermediate.
9634
9635 @item 7
9636 Line-sensitive clipping, intermediate.
9637
9638 @item 8
9639 Line-sensitive clipping, intermediate.
9640
9641 @item 9
9642 Line-sensitive clipping on a line where the neighbours pixels are the closest.
9643
9644 @item 10
9645 Replaces the target pixel with the closest neighbour.
9646
9647 @item 11
9648 [1 2 1] horizontal and vertical kernel blur.
9649
9650 @item 12
9651 Same as mode 11.
9652
9653 @item 13
9654 Bob mode, interpolates top field from the line where the neighbours
9655 pixels are the closest.
9656
9657 @item 14
9658 Bob mode, interpolates bottom field from the line where the neighbours
9659 pixels are the closest.
9660
9661 @item 15
9662 Bob mode, interpolates top field. Same as 13 but with a more complicated
9663 interpolation formula.
9664
9665 @item 16
9666 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
9667 interpolation formula.
9668
9669 @item 17
9670 Clips the pixel with the minimum and maximum of respectively the maximum and
9671 minimum of each pair of opposite neighbour pixels.
9672
9673 @item 18
9674 Line-sensitive clipping using opposite neighbours whose greatest distance from
9675 the current pixel is minimal.
9676
9677 @item 19
9678 Replaces the pixel with the average of its 8 neighbours.
9679
9680 @item 20
9681 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
9682
9683 @item 21
9684 Clips pixels using the averages of opposite neighbour.
9685
9686 @item 22
9687 Same as mode 21 but simpler and faster.
9688
9689 @item 23
9690 Small edge and halo removal, but reputed useless.
9691
9692 @item 24
9693 Similar as 23.
9694 @end table
9695
9696 @section removelogo
9697
9698 Suppress a TV station logo, using an image file to determine which
9699 pixels comprise the logo. It works by filling in the pixels that
9700 comprise the logo with neighboring pixels.
9701
9702 The filter accepts the following options:
9703
9704 @table @option
9705 @item filename, f
9706 Set the filter bitmap file, which can be any image format supported by
9707 libavformat. The width and height of the image file must match those of the
9708 video stream being processed.
9709 @end table
9710
9711 Pixels in the provided bitmap image with a value of zero are not
9712 considered part of the logo, non-zero pixels are considered part of
9713 the logo. If you use white (255) for the logo and black (0) for the
9714 rest, you will be safe. For making the filter bitmap, it is
9715 recommended to take a screen capture of a black frame with the logo
9716 visible, and then using a threshold filter followed by the erode
9717 filter once or twice.
9718
9719 If needed, little splotches can be fixed manually. Remember that if
9720 logo pixels are not covered, the filter quality will be much
9721 reduced. Marking too many pixels as part of the logo does not hurt as
9722 much, but it will increase the amount of blurring needed to cover over
9723 the image and will destroy more information than necessary, and extra
9724 pixels will slow things down on a large logo.
9725
9726 @section repeatfields
9727
9728 This filter uses the repeat_field flag from the Video ES headers and hard repeats
9729 fields based on its value.
9730
9731 @section reverse, areverse
9732
9733 Reverse a clip.
9734
9735 Warning: This filter requires memory to buffer the entire clip, so trimming
9736 is suggested.
9737
9738 @subsection Examples
9739
9740 @itemize
9741 @item
9742 Take the first 5 seconds of a clip, and reverse it.
9743 @example
9744 trim=end=5,reverse
9745 @end example
9746 @end itemize
9747
9748 @section rotate
9749
9750 Rotate video by an arbitrary angle expressed in radians.
9751
9752 The filter accepts the following options:
9753
9754 A description of the optional parameters follows.
9755 @table @option
9756 @item angle, a
9757 Set an expression for the angle by which to rotate the input video
9758 clockwise, expressed as a number of radians. A negative value will
9759 result in a counter-clockwise rotation. By default it is set to "0".
9760
9761 This expression is evaluated for each frame.
9762
9763 @item out_w, ow
9764 Set the output width expression, default value is "iw".
9765 This expression is evaluated just once during configuration.
9766
9767 @item out_h, oh
9768 Set the output height expression, default value is "ih".
9769 This expression is evaluated just once during configuration.
9770
9771 @item bilinear
9772 Enable bilinear interpolation if set to 1, a value of 0 disables
9773 it. Default value is 1.
9774
9775 @item fillcolor, c
9776 Set the color used to fill the output area not covered by the rotated
9777 image. For the general syntax of this option, check the "Color" section in the
9778 ffmpeg-utils manual. If the special value "none" is selected then no
9779 background is printed (useful for example if the background is never shown).
9780
9781 Default value is "black".
9782 @end table
9783
9784 The expressions for the angle and the output size can contain the
9785 following constants and functions:
9786
9787 @table @option
9788 @item n
9789 sequential number of the input frame, starting from 0. It is always NAN
9790 before the first frame is filtered.
9791
9792 @item t
9793 time in seconds of the input frame, it is set to 0 when the filter is
9794 configured. It is always NAN before the first frame is filtered.
9795
9796 @item hsub
9797 @item vsub
9798 horizontal and vertical chroma subsample values. For example for the
9799 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9800
9801 @item in_w, iw
9802 @item in_h, ih
9803 the input video width and height
9804
9805 @item out_w, ow
9806 @item out_h, oh
9807 the output width and height, that is the size of the padded area as
9808 specified by the @var{width} and @var{height} expressions
9809
9810 @item rotw(a)
9811 @item roth(a)
9812 the minimal width/height required for completely containing the input
9813 video rotated by @var{a} radians.
9814
9815 These are only available when computing the @option{out_w} and
9816 @option{out_h} expressions.
9817 @end table
9818
9819 @subsection Examples
9820
9821 @itemize
9822 @item
9823 Rotate the input by PI/6 radians clockwise:
9824 @example
9825 rotate=PI/6
9826 @end example
9827
9828 @item
9829 Rotate the input by PI/6 radians counter-clockwise:
9830 @example
9831 rotate=-PI/6
9832 @end example
9833
9834 @item
9835 Rotate the input by 45 degrees clockwise:
9836 @example
9837 rotate=45*PI/180
9838 @end example
9839
9840 @item
9841 Apply a constant rotation with period T, starting from an angle of PI/3:
9842 @example
9843 rotate=PI/3+2*PI*t/T
9844 @end example
9845
9846 @item
9847 Make the input video rotation oscillating with a period of T
9848 seconds and an amplitude of A radians:
9849 @example
9850 rotate=A*sin(2*PI/T*t)
9851 @end example
9852
9853 @item
9854 Rotate the video, output size is chosen so that the whole rotating
9855 input video is always completely contained in the output:
9856 @example
9857 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
9858 @end example
9859
9860 @item
9861 Rotate the video, reduce the output size so that no background is ever
9862 shown:
9863 @example
9864 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
9865 @end example
9866 @end itemize
9867
9868 @subsection Commands
9869
9870 The filter supports the following commands:
9871
9872 @table @option
9873 @item a, angle
9874 Set the angle expression.
9875 The command accepts the same syntax of the corresponding option.
9876
9877 If the specified expression is not valid, it is kept at its current
9878 value.
9879 @end table
9880
9881 @section sab
9882
9883 Apply Shape Adaptive Blur.
9884
9885 The filter accepts the following options:
9886
9887 @table @option
9888 @item luma_radius, lr
9889 Set luma blur filter strength, must be a value in range 0.1-4.0, default
9890 value is 1.0. A greater value will result in a more blurred image, and
9891 in slower processing.
9892
9893 @item luma_pre_filter_radius, lpfr
9894 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
9895 value is 1.0.
9896
9897 @item luma_strength, ls
9898 Set luma maximum difference between pixels to still be considered, must
9899 be a value in the 0.1-100.0 range, default value is 1.0.
9900
9901 @item chroma_radius, cr
9902 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
9903 greater value will result in a more blurred image, and in slower
9904 processing.
9905
9906 @item chroma_pre_filter_radius, cpfr
9907 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
9908
9909 @item chroma_strength, cs
9910 Set chroma maximum difference between pixels to still be considered,
9911 must be a value in the 0.1-100.0 range.
9912 @end table
9913
9914 Each chroma option value, if not explicitly specified, is set to the
9915 corresponding luma option value.
9916
9917 @anchor{scale}
9918 @section scale
9919
9920 Scale (resize) the input video, using the libswscale library.
9921
9922 The scale filter forces the output display aspect ratio to be the same
9923 of the input, by changing the output sample aspect ratio.
9924
9925 If the input image format is different from the format requested by
9926 the next filter, the scale filter will convert the input to the
9927 requested format.
9928
9929 @subsection Options
9930 The filter accepts the following options, or any of the options
9931 supported by the libswscale scaler.
9932
9933 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
9934 the complete list of scaler options.
9935
9936 @table @option
9937 @item width, w
9938 @item height, h
9939 Set the output video dimension expression. Default value is the input
9940 dimension.
9941
9942 If the value is 0, the input width is used for the output.
9943
9944 If one of the values is -1, the scale filter will use a value that
9945 maintains the aspect ratio of the input image, calculated from the
9946 other specified dimension. If both of them are -1, the input size is
9947 used
9948
9949 If one of the values is -n with n > 1, the scale filter will also use a value
9950 that maintains the aspect ratio of the input image, calculated from the other
9951 specified dimension. After that it will, however, make sure that the calculated
9952 dimension is divisible by n and adjust the value if necessary.
9953
9954 See below for the list of accepted constants for use in the dimension
9955 expression.
9956
9957 @item eval
9958 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
9959
9960 @table @samp
9961 @item init
9962 Only evaluate expressions once during the filter initialization or when a command is processed.
9963
9964 @item frame
9965 Evaluate expressions for each incoming frame.
9966
9967 @end table
9968
9969 Default value is @samp{init}.
9970
9971
9972 @item interl
9973 Set the interlacing mode. It accepts the following values:
9974
9975 @table @samp
9976 @item 1
9977 Force interlaced aware scaling.
9978
9979 @item 0
9980 Do not apply interlaced scaling.
9981
9982 @item -1
9983 Select interlaced aware scaling depending on whether the source frames
9984 are flagged as interlaced or not.
9985 @end table
9986
9987 Default value is @samp{0}.
9988
9989 @item flags
9990 Set libswscale scaling flags. See
9991 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9992 complete list of values. If not explicitly specified the filter applies
9993 the default flags.
9994
9995
9996 @item param0, param1
9997 Set libswscale input parameters for scaling algorithms that need them. See
9998 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9999 complete documentation. If not explicitly specified the filter applies
10000 empty parameters.
10001
10002
10003
10004 @item size, s
10005 Set the video size. For the syntax of this option, check the
10006 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10007
10008 @item in_color_matrix
10009 @item out_color_matrix
10010 Set in/output YCbCr color space type.
10011
10012 This allows the autodetected value to be overridden as well as allows forcing
10013 a specific value used for the output and encoder.
10014
10015 If not specified, the color space type depends on the pixel format.
10016
10017 Possible values:
10018
10019 @table @samp
10020 @item auto
10021 Choose automatically.
10022
10023 @item bt709
10024 Format conforming to International Telecommunication Union (ITU)
10025 Recommendation BT.709.
10026
10027 @item fcc
10028 Set color space conforming to the United States Federal Communications
10029 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
10030
10031 @item bt601
10032 Set color space conforming to:
10033
10034 @itemize
10035 @item
10036 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
10037
10038 @item
10039 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
10040
10041 @item
10042 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
10043
10044 @end itemize
10045
10046 @item smpte240m
10047 Set color space conforming to SMPTE ST 240:1999.
10048 @end table
10049
10050 @item in_range
10051 @item out_range
10052 Set in/output YCbCr sample range.
10053
10054 This allows the autodetected value to be overridden as well as allows forcing
10055 a specific value used for the output and encoder. If not specified, the
10056 range depends on the pixel format. Possible values:
10057
10058 @table @samp
10059 @item auto
10060 Choose automatically.
10061
10062 @item jpeg/full/pc
10063 Set full range (0-255 in case of 8-bit luma).
10064
10065 @item mpeg/tv
10066 Set "MPEG" range (16-235 in case of 8-bit luma).
10067 @end table
10068
10069 @item force_original_aspect_ratio
10070 Enable decreasing or increasing output video width or height if necessary to
10071 keep the original aspect ratio. Possible values:
10072
10073 @table @samp
10074 @item disable
10075 Scale the video as specified and disable this feature.
10076
10077 @item decrease
10078 The output video dimensions will automatically be decreased if needed.
10079
10080 @item increase
10081 The output video dimensions will automatically be increased if needed.
10082
10083 @end table
10084
10085 One useful instance of this option is that when you know a specific device's
10086 maximum allowed resolution, you can use this to limit the output video to
10087 that, while retaining the aspect ratio. For example, device A allows
10088 1280x720 playback, and your video is 1920x800. Using this option (set it to
10089 decrease) and specifying 1280x720 to the command line makes the output
10090 1280x533.
10091
10092 Please note that this is a different thing than specifying -1 for @option{w}
10093 or @option{h}, you still need to specify the output resolution for this option
10094 to work.
10095
10096 @end table
10097
10098 The values of the @option{w} and @option{h} options are expressions
10099 containing the following constants:
10100
10101 @table @var
10102 @item in_w
10103 @item in_h
10104 The input width and height
10105
10106 @item iw
10107 @item ih
10108 These are the same as @var{in_w} and @var{in_h}.
10109
10110 @item out_w
10111 @item out_h
10112 The output (scaled) width and height
10113
10114 @item ow
10115 @item oh
10116 These are the same as @var{out_w} and @var{out_h}
10117
10118 @item a
10119 The same as @var{iw} / @var{ih}
10120
10121 @item sar
10122 input sample aspect ratio
10123
10124 @item dar
10125 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
10126
10127 @item hsub
10128 @item vsub
10129 horizontal and vertical input chroma subsample values. For example for the
10130 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10131
10132 @item ohsub
10133 @item ovsub
10134 horizontal and vertical output chroma subsample values. For example for the
10135 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10136 @end table
10137
10138 @subsection Examples
10139
10140 @itemize
10141 @item
10142 Scale the input video to a size of 200x100
10143 @example
10144 scale=w=200:h=100
10145 @end example
10146
10147 This is equivalent to:
10148 @example
10149 scale=200:100
10150 @end example
10151
10152 or:
10153 @example
10154 scale=200x100
10155 @end example
10156
10157 @item
10158 Specify a size abbreviation for the output size:
10159 @example
10160 scale=qcif
10161 @end example
10162
10163 which can also be written as:
10164 @example
10165 scale=size=qcif
10166 @end example
10167
10168 @item
10169 Scale the input to 2x:
10170 @example
10171 scale=w=2*iw:h=2*ih
10172 @end example
10173
10174 @item
10175 The above is the same as:
10176 @example
10177 scale=2*in_w:2*in_h
10178 @end example
10179
10180 @item
10181 Scale the input to 2x with forced interlaced scaling:
10182 @example
10183 scale=2*iw:2*ih:interl=1
10184 @end example
10185
10186 @item
10187 Scale the input to half size:
10188 @example
10189 scale=w=iw/2:h=ih/2
10190 @end example
10191
10192 @item
10193 Increase the width, and set the height to the same size:
10194 @example
10195 scale=3/2*iw:ow
10196 @end example
10197
10198 @item
10199 Seek Greek harmony:
10200 @example
10201 scale=iw:1/PHI*iw
10202 scale=ih*PHI:ih
10203 @end example
10204
10205 @item
10206 Increase the height, and set the width to 3/2 of the height:
10207 @example
10208 scale=w=3/2*oh:h=3/5*ih
10209 @end example
10210
10211 @item
10212 Increase the size, making the size a multiple of the chroma
10213 subsample values:
10214 @example
10215 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
10216 @end example
10217
10218 @item
10219 Increase the width to a maximum of 500 pixels,
10220 keeping the same aspect ratio as the input:
10221 @example
10222 scale=w='min(500\, iw*3/2):h=-1'
10223 @end example
10224 @end itemize
10225
10226 @subsection Commands
10227
10228 This filter supports the following commands:
10229 @table @option
10230 @item width, w
10231 @item height, h
10232 Set the output video dimension expression.
10233 The command accepts the same syntax of the corresponding option.
10234
10235 If the specified expression is not valid, it is kept at its current
10236 value.
10237 @end table
10238
10239 @section scale2ref
10240
10241 Scale (resize) the input video, based on a reference video.
10242
10243 See the scale filter for available options, scale2ref supports the same but
10244 uses the reference video instead of the main input as basis.
10245
10246 @subsection Examples
10247
10248 @itemize
10249 @item
10250 Scale a subtitle stream to match the main video in size before overlaying
10251 @example
10252 'scale2ref[b][a];[a][b]overlay'
10253 @end example
10254 @end itemize
10255
10256 @section selectivecolor
10257
10258 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
10259 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
10260 by the "purity" of the color (that is, how saturated it already is).
10261
10262 This filter is similar to the Adobe Photoshop Selective Color tool.
10263
10264 The filter accepts the following options:
10265
10266 @table @option
10267 @item correction_method
10268 Select color correction method.
10269
10270 Available values are:
10271 @table @samp
10272 @item absolute
10273 Specified adjustments are applied "as-is" (added/subtracted to original pixel
10274 component value).
10275 @item relative
10276 Specified adjustments are relative to the original component value.
10277 @end table
10278 Default is @code{absolute}.
10279 @item reds
10280 Adjustments for red pixels (pixels where the red component is the maximum)
10281 @item yellows
10282 Adjustments for yellow pixels (pixels where the blue component is the minimum)
10283 @item greens
10284 Adjustments for green pixels (pixels where the green component is the maximum)
10285 @item cyans
10286 Adjustments for cyan pixels (pixels where the red component is the minimum)
10287 @item blues
10288 Adjustments for blue pixels (pixels where the blue component is the maximum)
10289 @item magentas
10290 Adjustments for magenta pixels (pixels where the green component is the minimum)
10291 @item whites
10292 Adjustments for white pixels (pixels where all components are greater than 128)
10293 @item neutrals
10294 Adjustments for all pixels except pure black and pure white
10295 @item blacks
10296 Adjustments for black pixels (pixels where all components are lesser than 128)
10297 @item psfile
10298 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
10299 @end table
10300
10301 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
10302 4 space separated floating point adjustment values in the [-1,1] range,
10303 respectively to adjust the amount of cyan, magenta, yellow and black for the
10304 pixels of its range.
10305
10306 @subsection Examples
10307
10308 @itemize
10309 @item
10310 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
10311 increase magenta by 27% in blue areas:
10312 @example
10313 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
10314 @end example
10315
10316 @item
10317 Use a Photoshop selective color preset:
10318 @example
10319 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
10320 @end example
10321 @end itemize
10322
10323 @section separatefields
10324
10325 The @code{separatefields} takes a frame-based video input and splits
10326 each frame into its components fields, producing a new half height clip
10327 with twice the frame rate and twice the frame count.
10328
10329 This filter use field-dominance information in frame to decide which
10330 of each pair of fields to place first in the output.
10331 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
10332
10333 @section setdar, setsar
10334
10335 The @code{setdar} filter sets the Display Aspect Ratio for the filter
10336 output video.
10337
10338 This is done by changing the specified Sample (aka Pixel) Aspect
10339 Ratio, according to the following equation:
10340 @example
10341 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
10342 @end example
10343
10344 Keep in mind that the @code{setdar} filter does not modify the pixel
10345 dimensions of the video frame. Also, the display aspect ratio set by
10346 this filter may be changed by later filters in the filterchain,
10347 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
10348 applied.
10349
10350 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
10351 the filter output video.
10352
10353 Note that as a consequence of the application of this filter, the
10354 output display aspect ratio will change according to the equation
10355 above.
10356
10357 Keep in mind that the sample aspect ratio set by the @code{setsar}
10358 filter may be changed by later filters in the filterchain, e.g. if
10359 another "setsar" or a "setdar" filter is applied.
10360
10361 It accepts the following parameters:
10362
10363 @table @option
10364 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
10365 Set the aspect ratio used by the filter.
10366
10367 The parameter can be a floating point number string, an expression, or
10368 a string of the form @var{num}:@var{den}, where @var{num} and
10369 @var{den} are the numerator and denominator of the aspect ratio. If
10370 the parameter is not specified, it is assumed the value "0".
10371 In case the form "@var{num}:@var{den}" is used, the @code{:} character
10372 should be escaped.
10373
10374 @item max
10375 Set the maximum integer value to use for expressing numerator and
10376 denominator when reducing the expressed aspect ratio to a rational.
10377 Default value is @code{100}.
10378
10379 @end table
10380
10381 The parameter @var{sar} is an expression containing
10382 the following constants:
10383
10384 @table @option
10385 @item E, PI, PHI
10386 These are approximated values for the mathematical constants e
10387 (Euler's number), pi (Greek pi), and phi (the golden ratio).
10388
10389 @item w, h
10390 The input width and height.
10391
10392 @item a
10393 These are the same as @var{w} / @var{h}.
10394
10395 @item sar
10396 The input sample aspect ratio.
10397
10398 @item dar
10399 The input display aspect ratio. It is the same as
10400 (@var{w} / @var{h}) * @var{sar}.
10401
10402 @item hsub, vsub
10403 Horizontal and vertical chroma subsample values. For example, for the
10404 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10405 @end table
10406
10407 @subsection Examples
10408
10409 @itemize
10410
10411 @item
10412 To change the display aspect ratio to 16:9, specify one of the following:
10413 @example
10414 setdar=dar=1.77777
10415 setdar=dar=16/9
10416 setdar=dar=1.77777
10417 @end example
10418
10419 @item
10420 To change the sample aspect ratio to 10:11, specify:
10421 @example
10422 setsar=sar=10/11
10423 @end example
10424
10425 @item
10426 To set a display aspect ratio of 16:9, and specify a maximum integer value of
10427 1000 in the aspect ratio reduction, use the command:
10428 @example
10429 setdar=ratio=16/9:max=1000
10430 @end example
10431
10432 @end itemize
10433
10434 @anchor{setfield}
10435 @section setfield
10436
10437 Force field for the output video frame.
10438
10439 The @code{setfield} filter marks the interlace type field for the
10440 output frames. It does not change the input frame, but only sets the
10441 corresponding property, which affects how the frame is treated by
10442 following filters (e.g. @code{fieldorder} or @code{yadif}).
10443
10444 The filter accepts the following options:
10445
10446 @table @option
10447
10448 @item mode
10449 Available values are:
10450
10451 @table @samp
10452 @item auto
10453 Keep the same field property.
10454
10455 @item bff
10456 Mark the frame as bottom-field-first.
10457
10458 @item tff
10459 Mark the frame as top-field-first.
10460
10461 @item prog
10462 Mark the frame as progressive.
10463 @end table
10464 @end table
10465
10466 @section showinfo
10467
10468 Show a line containing various information for each input video frame.
10469 The input video is not modified.
10470
10471 The shown line contains a sequence of key/value pairs of the form
10472 @var{key}:@var{value}.
10473
10474 The following values are shown in the output:
10475
10476 @table @option
10477 @item n
10478 The (sequential) number of the input frame, starting from 0.
10479
10480 @item pts
10481 The Presentation TimeStamp of the input frame, expressed as a number of
10482 time base units. The time base unit depends on the filter input pad.
10483
10484 @item pts_time
10485 The Presentation TimeStamp of the input frame, expressed as a number of
10486 seconds.
10487
10488 @item pos
10489 The position of the frame in the input stream, or -1 if this information is
10490 unavailable and/or meaningless (for example in case of synthetic video).
10491
10492 @item fmt
10493 The pixel format name.
10494
10495 @item sar
10496 The sample aspect ratio of the input frame, expressed in the form
10497 @var{num}/@var{den}.
10498
10499 @item s
10500 The size of the input frame. For the syntax of this option, check the
10501 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10502
10503 @item i
10504 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
10505 for bottom field first).
10506
10507 @item iskey
10508 This is 1 if the frame is a key frame, 0 otherwise.
10509
10510 @item type
10511 The picture type of the input frame ("I" for an I-frame, "P" for a
10512 P-frame, "B" for a B-frame, or "?" for an unknown type).
10513 Also refer to the documentation of the @code{AVPictureType} enum and of
10514 the @code{av_get_picture_type_char} function defined in
10515 @file{libavutil/avutil.h}.
10516
10517 @item checksum
10518 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
10519
10520 @item plane_checksum
10521 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
10522 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
10523 @end table
10524
10525 @section showpalette
10526
10527 Displays the 256 colors palette of each frame. This filter is only relevant for
10528 @var{pal8} pixel format frames.
10529
10530 It accepts the following option:
10531
10532 @table @option
10533 @item s
10534 Set the size of the box used to represent one palette color entry. Default is
10535 @code{30} (for a @code{30x30} pixel box).
10536 @end table
10537
10538 @section shuffleframes
10539
10540 Reorder and/or duplicate video frames.
10541
10542 It accepts the following parameters:
10543
10544 @table @option
10545 @item mapping
10546 Set the destination indexes of input frames.
10547 This is space or '|' separated list of indexes that maps input frames to output
10548 frames. Number of indexes also sets maximal value that each index may have.
10549 @end table
10550
10551 The first frame has the index 0. The default is to keep the input unchanged.
10552
10553 Swap second and third frame of every three frames of the input:
10554 @example
10555 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
10556 @end example
10557
10558 @section shuffleplanes
10559
10560 Reorder and/or duplicate video planes.
10561
10562 It accepts the following parameters:
10563
10564 @table @option
10565
10566 @item map0
10567 The index of the input plane to be used as the first output plane.
10568
10569 @item map1
10570 The index of the input plane to be used as the second output plane.
10571
10572 @item map2
10573 The index of the input plane to be used as the third output plane.
10574
10575 @item map3
10576 The index of the input plane to be used as the fourth output plane.
10577
10578 @end table
10579
10580 The first plane has the index 0. The default is to keep the input unchanged.
10581
10582 Swap the second and third planes of the input:
10583 @example
10584 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
10585 @end example
10586
10587 @anchor{signalstats}
10588 @section signalstats
10589 Evaluate various visual metrics that assist in determining issues associated
10590 with the digitization of analog video media.
10591
10592 By default the filter will log these metadata values:
10593
10594 @table @option
10595 @item YMIN
10596 Display the minimal Y value contained within the input frame. Expressed in
10597 range of [0-255].
10598
10599 @item YLOW
10600 Display the Y value at the 10% percentile within the input frame. Expressed in
10601 range of [0-255].
10602
10603 @item YAVG
10604 Display the average Y value within the input frame. Expressed in range of
10605 [0-255].
10606
10607 @item YHIGH
10608 Display the Y value at the 90% percentile within the input frame. Expressed in
10609 range of [0-255].
10610
10611 @item YMAX
10612 Display the maximum Y value contained within the input frame. Expressed in
10613 range of [0-255].
10614
10615 @item UMIN
10616 Display the minimal U value contained within the input frame. Expressed in
10617 range of [0-255].
10618
10619 @item ULOW
10620 Display the U value at the 10% percentile within the input frame. Expressed in
10621 range of [0-255].
10622
10623 @item UAVG
10624 Display the average U value within the input frame. Expressed in range of
10625 [0-255].
10626
10627 @item UHIGH
10628 Display the U value at the 90% percentile within the input frame. Expressed in
10629 range of [0-255].
10630
10631 @item UMAX
10632 Display the maximum U value contained within the input frame. Expressed in
10633 range of [0-255].
10634
10635 @item VMIN
10636 Display the minimal V value contained within the input frame. Expressed in
10637 range of [0-255].
10638
10639 @item VLOW
10640 Display the V value at the 10% percentile within the input frame. Expressed in
10641 range of [0-255].
10642
10643 @item VAVG
10644 Display the average V value within the input frame. Expressed in range of
10645 [0-255].
10646
10647 @item VHIGH
10648 Display the V value at the 90% percentile within the input frame. Expressed in
10649 range of [0-255].
10650
10651 @item VMAX
10652 Display the maximum V value contained within the input frame. Expressed in
10653 range of [0-255].
10654
10655 @item SATMIN
10656 Display the minimal saturation value contained within the input frame.
10657 Expressed in range of [0-~181.02].
10658
10659 @item SATLOW
10660 Display the saturation value at the 10% percentile within the input frame.
10661 Expressed in range of [0-~181.02].
10662
10663 @item SATAVG
10664 Display the average saturation value within the input frame. Expressed in range
10665 of [0-~181.02].
10666
10667 @item SATHIGH
10668 Display the saturation value at the 90% percentile within the input frame.
10669 Expressed in range of [0-~181.02].
10670
10671 @item SATMAX
10672 Display the maximum saturation value contained within the input frame.
10673 Expressed in range of [0-~181.02].
10674
10675 @item HUEMED
10676 Display the median value for hue within the input frame. Expressed in range of
10677 [0-360].
10678
10679 @item HUEAVG
10680 Display the average value for hue within the input frame. Expressed in range of
10681 [0-360].
10682
10683 @item YDIF
10684 Display the average of sample value difference between all values of the Y
10685 plane in the current frame and corresponding values of the previous input frame.
10686 Expressed in range of [0-255].
10687
10688 @item UDIF
10689 Display the average of sample value difference between all values of the U
10690 plane in the current frame and corresponding values of the previous input frame.
10691 Expressed in range of [0-255].
10692
10693 @item VDIF
10694 Display the average of sample value difference between all values of the V
10695 plane in the current frame and corresponding values of the previous input frame.
10696 Expressed in range of [0-255].
10697 @end table
10698
10699 The filter accepts the following options:
10700
10701 @table @option
10702 @item stat
10703 @item out
10704
10705 @option{stat} specify an additional form of image analysis.
10706 @option{out} output video with the specified type of pixel highlighted.
10707
10708 Both options accept the following values:
10709
10710 @table @samp
10711 @item tout
10712 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
10713 unlike the neighboring pixels of the same field. Examples of temporal outliers
10714 include the results of video dropouts, head clogs, or tape tracking issues.
10715
10716 @item vrep
10717 Identify @var{vertical line repetition}. Vertical line repetition includes
10718 similar rows of pixels within a frame. In born-digital video vertical line
10719 repetition is common, but this pattern is uncommon in video digitized from an
10720 analog source. When it occurs in video that results from the digitization of an
10721 analog source it can indicate concealment from a dropout compensator.
10722
10723 @item brng
10724 Identify pixels that fall outside of legal broadcast range.
10725 @end table
10726
10727 @item color, c
10728 Set the highlight color for the @option{out} option. The default color is
10729 yellow.
10730 @end table
10731
10732 @subsection Examples
10733
10734 @itemize
10735 @item
10736 Output data of various video metrics:
10737 @example
10738 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
10739 @end example
10740
10741 @item
10742 Output specific data about the minimum and maximum values of the Y plane per frame:
10743 @example
10744 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
10745 @end example
10746
10747 @item
10748 Playback video while highlighting pixels that are outside of broadcast range in red.
10749 @example
10750 ffplay example.mov -vf signalstats="out=brng:color=red"
10751 @end example
10752
10753 @item
10754 Playback video with signalstats metadata drawn over the frame.
10755 @example
10756 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
10757 @end example
10758
10759 The contents of signalstat_drawtext.txt used in the command are:
10760 @example
10761 time %@{pts:hms@}
10762 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
10763 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
10764 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
10765 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
10766
10767 @end example
10768 @end itemize
10769
10770 @anchor{smartblur}
10771 @section smartblur
10772
10773 Blur the input video without impacting the outlines.
10774
10775 It accepts the following options:
10776
10777 @table @option
10778 @item luma_radius, lr
10779 Set the luma radius. The option value must be a float number in
10780 the range [0.1,5.0] that specifies the variance of the gaussian filter
10781 used to blur the image (slower if larger). Default value is 1.0.
10782
10783 @item luma_strength, ls
10784 Set the luma strength. The option value must be a float number
10785 in the range [-1.0,1.0] that configures the blurring. A value included
10786 in [0.0,1.0] will blur the image whereas a value included in
10787 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10788
10789 @item luma_threshold, lt
10790 Set the luma threshold used as a coefficient to determine
10791 whether a pixel should be blurred or not. The option value must be an
10792 integer in the range [-30,30]. A value of 0 will filter all the image,
10793 a value included in [0,30] will filter flat areas and a value included
10794 in [-30,0] will filter edges. Default value is 0.
10795
10796 @item chroma_radius, cr
10797 Set the chroma radius. The option value must be a float number in
10798 the range [0.1,5.0] that specifies the variance of the gaussian filter
10799 used to blur the image (slower if larger). Default value is 1.0.
10800
10801 @item chroma_strength, cs
10802 Set the chroma strength. The option value must be a float number
10803 in the range [-1.0,1.0] that configures the blurring. A value included
10804 in [0.0,1.0] will blur the image whereas a value included in
10805 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10806
10807 @item chroma_threshold, ct
10808 Set the chroma threshold used as a coefficient to determine
10809 whether a pixel should be blurred or not. The option value must be an
10810 integer in the range [-30,30]. A value of 0 will filter all the image,
10811 a value included in [0,30] will filter flat areas and a value included
10812 in [-30,0] will filter edges. Default value is 0.
10813 @end table
10814
10815 If a chroma option is not explicitly set, the corresponding luma value
10816 is set.
10817
10818 @section ssim
10819
10820 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
10821
10822 This filter takes in input two input videos, the first input is
10823 considered the "main" source and is passed unchanged to the
10824 output. The second input is used as a "reference" video for computing
10825 the SSIM.
10826
10827 Both video inputs must have the same resolution and pixel format for
10828 this filter to work correctly. Also it assumes that both inputs
10829 have the same number of frames, which are compared one by one.
10830
10831 The filter stores the calculated SSIM of each frame.
10832
10833 The description of the accepted parameters follows.
10834
10835 @table @option
10836 @item stats_file, f
10837 If specified the filter will use the named file to save the SSIM of
10838 each individual frame. When filename equals "-" the data is sent to
10839 standard output.
10840 @end table
10841
10842 The file printed if @var{stats_file} is selected, contains a sequence of
10843 key/value pairs of the form @var{key}:@var{value} for each compared
10844 couple of frames.
10845
10846 A description of each shown parameter follows:
10847
10848 @table @option
10849 @item n
10850 sequential number of the input frame, starting from 1
10851
10852 @item Y, U, V, R, G, B
10853 SSIM of the compared frames for the component specified by the suffix.
10854
10855 @item All
10856 SSIM of the compared frames for the whole frame.
10857
10858 @item dB
10859 Same as above but in dB representation.
10860 @end table
10861
10862 For example:
10863 @example
10864 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10865 [main][ref] ssim="stats_file=stats.log" [out]
10866 @end example
10867
10868 On this example the input file being processed is compared with the
10869 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
10870 is stored in @file{stats.log}.
10871
10872 Another example with both psnr and ssim at same time:
10873 @example
10874 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
10875 @end example
10876
10877 @section stereo3d
10878
10879 Convert between different stereoscopic image formats.
10880
10881 The filters accept the following options:
10882
10883 @table @option
10884 @item in
10885 Set stereoscopic image format of input.
10886
10887 Available values for input image formats are:
10888 @table @samp
10889 @item sbsl
10890 side by side parallel (left eye left, right eye right)
10891
10892 @item sbsr
10893 side by side crosseye (right eye left, left eye right)
10894
10895 @item sbs2l
10896 side by side parallel with half width resolution
10897 (left eye left, right eye right)
10898
10899 @item sbs2r
10900 side by side crosseye with half width resolution
10901 (right eye left, left eye right)
10902
10903 @item abl
10904 above-below (left eye above, right eye below)
10905
10906 @item abr
10907 above-below (right eye above, left eye below)
10908
10909 @item ab2l
10910 above-below with half height resolution
10911 (left eye above, right eye below)
10912
10913 @item ab2r
10914 above-below with half height resolution
10915 (right eye above, left eye below)
10916
10917 @item al
10918 alternating frames (left eye first, right eye second)
10919
10920 @item ar
10921 alternating frames (right eye first, left eye second)
10922
10923 @item irl
10924 interleaved rows (left eye has top row, right eye starts on next row)
10925
10926 @item irr
10927 interleaved rows (right eye has top row, left eye starts on next row)
10928
10929 @item icl
10930 interleaved columns, left eye first
10931
10932 @item icr
10933 interleaved columns, right eye first
10934
10935 Default value is @samp{sbsl}.
10936 @end table
10937
10938 @item out
10939 Set stereoscopic image format of output.
10940
10941 @table @samp
10942 @item sbsl
10943 side by side parallel (left eye left, right eye right)
10944
10945 @item sbsr
10946 side by side crosseye (right eye left, left eye right)
10947
10948 @item sbs2l
10949 side by side parallel with half width resolution
10950 (left eye left, right eye right)
10951
10952 @item sbs2r
10953 side by side crosseye with half width resolution
10954 (right eye left, left eye right)
10955
10956 @item abl
10957 above-below (left eye above, right eye below)
10958
10959 @item abr
10960 above-below (right eye above, left eye below)
10961
10962 @item ab2l
10963 above-below with half height resolution
10964 (left eye above, right eye below)
10965
10966 @item ab2r
10967 above-below with half height resolution
10968 (right eye above, left eye below)
10969
10970 @item al
10971 alternating frames (left eye first, right eye second)
10972
10973 @item ar
10974 alternating frames (right eye first, left eye second)
10975
10976 @item irl
10977 interleaved rows (left eye has top row, right eye starts on next row)
10978
10979 @item irr
10980 interleaved rows (right eye has top row, left eye starts on next row)
10981
10982 @item arbg
10983 anaglyph red/blue gray
10984 (red filter on left eye, blue filter on right eye)
10985
10986 @item argg
10987 anaglyph red/green gray
10988 (red filter on left eye, green filter on right eye)
10989
10990 @item arcg
10991 anaglyph red/cyan gray
10992 (red filter on left eye, cyan filter on right eye)
10993
10994 @item arch
10995 anaglyph red/cyan half colored
10996 (red filter on left eye, cyan filter on right eye)
10997
10998 @item arcc
10999 anaglyph red/cyan color
11000 (red filter on left eye, cyan filter on right eye)
11001
11002 @item arcd
11003 anaglyph red/cyan color optimized with the least squares projection of dubois
11004 (red filter on left eye, cyan filter on right eye)
11005
11006 @item agmg
11007 anaglyph green/magenta gray
11008 (green filter on left eye, magenta filter on right eye)
11009
11010 @item agmh
11011 anaglyph green/magenta half colored
11012 (green filter on left eye, magenta filter on right eye)
11013
11014 @item agmc
11015 anaglyph green/magenta colored
11016 (green filter on left eye, magenta filter on right eye)
11017
11018 @item agmd
11019 anaglyph green/magenta color optimized with the least squares projection of dubois
11020 (green filter on left eye, magenta filter on right eye)
11021
11022 @item aybg
11023 anaglyph yellow/blue gray
11024 (yellow filter on left eye, blue filter on right eye)
11025
11026 @item aybh
11027 anaglyph yellow/blue half colored
11028 (yellow filter on left eye, blue filter on right eye)
11029
11030 @item aybc
11031 anaglyph yellow/blue colored
11032 (yellow filter on left eye, blue filter on right eye)
11033
11034 @item aybd
11035 anaglyph yellow/blue color optimized with the least squares projection of dubois
11036 (yellow filter on left eye, blue filter on right eye)
11037
11038 @item ml
11039 mono output (left eye only)
11040
11041 @item mr
11042 mono output (right eye only)
11043
11044 @item chl
11045 checkerboard, left eye first
11046
11047 @item chr
11048 checkerboard, right eye first
11049
11050 @item icl
11051 interleaved columns, left eye first
11052
11053 @item icr
11054 interleaved columns, right eye first
11055 @end table
11056
11057 Default value is @samp{arcd}.
11058 @end table
11059
11060 @subsection Examples
11061
11062 @itemize
11063 @item
11064 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
11065 @example
11066 stereo3d=sbsl:aybd
11067 @end example
11068
11069 @item
11070 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
11071 @example
11072 stereo3d=abl:sbsr
11073 @end example
11074 @end itemize
11075
11076 @anchor{spp}
11077 @section spp
11078
11079 Apply a simple postprocessing filter that compresses and decompresses the image
11080 at several (or - in the case of @option{quality} level @code{6} - all) shifts
11081 and average the results.
11082
11083 The filter accepts the following options:
11084
11085 @table @option
11086 @item quality
11087 Set quality. This option defines the number of levels for averaging. It accepts
11088 an integer in the range 0-6. If set to @code{0}, the filter will have no
11089 effect. A value of @code{6} means the higher quality. For each increment of
11090 that value the speed drops by a factor of approximately 2.  Default value is
11091 @code{3}.
11092
11093 @item qp
11094 Force a constant quantization parameter. If not set, the filter will use the QP
11095 from the video stream (if available).
11096
11097 @item mode
11098 Set thresholding mode. Available modes are:
11099
11100 @table @samp
11101 @item hard
11102 Set hard thresholding (default).
11103 @item soft
11104 Set soft thresholding (better de-ringing effect, but likely blurrier).
11105 @end table
11106
11107 @item use_bframe_qp
11108 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11109 option may cause flicker since the B-Frames have often larger QP. Default is
11110 @code{0} (not enabled).
11111 @end table
11112
11113 @anchor{subtitles}
11114 @section subtitles
11115
11116 Draw subtitles on top of input video using the libass library.
11117
11118 To enable compilation of this filter you need to configure FFmpeg with
11119 @code{--enable-libass}. This filter also requires a build with libavcodec and
11120 libavformat to convert the passed subtitles file to ASS (Advanced Substation
11121 Alpha) subtitles format.
11122
11123 The filter accepts the following options:
11124
11125 @table @option
11126 @item filename, f
11127 Set the filename of the subtitle file to read. It must be specified.
11128
11129 @item original_size
11130 Specify the size of the original video, the video for which the ASS file
11131 was composed. For the syntax of this option, check the
11132 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11133 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
11134 correctly scale the fonts if the aspect ratio has been changed.
11135
11136 @item fontsdir
11137 Set a directory path containing fonts that can be used by the filter.
11138 These fonts will be used in addition to whatever the font provider uses.
11139
11140 @item charenc
11141 Set subtitles input character encoding. @code{subtitles} filter only. Only
11142 useful if not UTF-8.
11143
11144 @item stream_index, si
11145 Set subtitles stream index. @code{subtitles} filter only.
11146
11147 @item force_style
11148 Override default style or script info parameters of the subtitles. It accepts a
11149 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
11150 @end table
11151
11152 If the first key is not specified, it is assumed that the first value
11153 specifies the @option{filename}.
11154
11155 For example, to render the file @file{sub.srt} on top of the input
11156 video, use the command:
11157 @example
11158 subtitles=sub.srt
11159 @end example
11160
11161 which is equivalent to:
11162 @example
11163 subtitles=filename=sub.srt
11164 @end example
11165
11166 To render the default subtitles stream from file @file{video.mkv}, use:
11167 @example
11168 subtitles=video.mkv
11169 @end example
11170
11171 To render the second subtitles stream from that file, use:
11172 @example
11173 subtitles=video.mkv:si=1
11174 @end example
11175
11176 To make the subtitles stream from @file{sub.srt} appear in transparent green
11177 @code{DejaVu Serif}, use:
11178 @example
11179 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
11180 @end example
11181
11182 @section super2xsai
11183
11184 Scale the input by 2x and smooth using the Super2xSaI (Scale and
11185 Interpolate) pixel art scaling algorithm.
11186
11187 Useful for enlarging pixel art images without reducing sharpness.
11188
11189 @section swapuv
11190 Swap U & V plane.
11191
11192 @section telecine
11193
11194 Apply telecine process to the video.
11195
11196 This filter accepts the following options:
11197
11198 @table @option
11199 @item first_field
11200 @table @samp
11201 @item top, t
11202 top field first
11203 @item bottom, b
11204 bottom field first
11205 The default value is @code{top}.
11206 @end table
11207
11208 @item pattern
11209 A string of numbers representing the pulldown pattern you wish to apply.
11210 The default value is @code{23}.
11211 @end table
11212
11213 @example
11214 Some typical patterns:
11215
11216 NTSC output (30i):
11217 27.5p: 32222
11218 24p: 23 (classic)
11219 24p: 2332 (preferred)
11220 20p: 33
11221 18p: 334
11222 16p: 3444
11223
11224 PAL output (25i):
11225 27.5p: 12222
11226 24p: 222222222223 ("Euro pulldown")
11227 16.67p: 33
11228 16p: 33333334
11229 @end example
11230
11231 @section thumbnail
11232 Select the most representative frame in a given sequence of consecutive frames.
11233
11234 The filter accepts the following options:
11235
11236 @table @option
11237 @item n
11238 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
11239 will pick one of them, and then handle the next batch of @var{n} frames until
11240 the end. Default is @code{100}.
11241 @end table
11242
11243 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
11244 value will result in a higher memory usage, so a high value is not recommended.
11245
11246 @subsection Examples
11247
11248 @itemize
11249 @item
11250 Extract one picture each 50 frames:
11251 @example
11252 thumbnail=50
11253 @end example
11254
11255 @item
11256 Complete example of a thumbnail creation with @command{ffmpeg}:
11257 @example
11258 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
11259 @end example
11260 @end itemize
11261
11262 @section tile
11263
11264 Tile several successive frames together.
11265
11266 The filter accepts the following options:
11267
11268 @table @option
11269
11270 @item layout
11271 Set the grid size (i.e. the number of lines and columns). For the syntax of
11272 this option, check the
11273 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11274
11275 @item nb_frames
11276 Set the maximum number of frames to render in the given area. It must be less
11277 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
11278 the area will be used.
11279
11280 @item margin
11281 Set the outer border margin in pixels.
11282
11283 @item padding
11284 Set the inner border thickness (i.e. the number of pixels between frames). For
11285 more advanced padding options (such as having different values for the edges),
11286 refer to the pad video filter.
11287
11288 @item color
11289 Specify the color of the unused area. For the syntax of this option, check the
11290 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
11291 is "black".
11292 @end table
11293
11294 @subsection Examples
11295
11296 @itemize
11297 @item
11298 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
11299 @example
11300 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
11301 @end example
11302 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
11303 duplicating each output frame to accommodate the originally detected frame
11304 rate.
11305
11306 @item
11307 Display @code{5} pictures in an area of @code{3x2} frames,
11308 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
11309 mixed flat and named options:
11310 @example
11311 tile=3x2:nb_frames=5:padding=7:margin=2
11312 @end example
11313 @end itemize
11314
11315 @section tinterlace
11316
11317 Perform various types of temporal field interlacing.
11318
11319 Frames are counted starting from 1, so the first input frame is
11320 considered odd.
11321
11322 The filter accepts the following options:
11323
11324 @table @option
11325
11326 @item mode
11327 Specify the mode of the interlacing. This option can also be specified
11328 as a value alone. See below for a list of values for this option.
11329
11330 Available values are:
11331
11332 @table @samp
11333 @item merge, 0
11334 Move odd frames into the upper field, even into the lower field,
11335 generating a double height frame at half frame rate.
11336 @example
11337  ------> time
11338 Input:
11339 Frame 1         Frame 2         Frame 3         Frame 4
11340
11341 11111           22222           33333           44444
11342 11111           22222           33333           44444
11343 11111           22222           33333           44444
11344 11111           22222           33333           44444
11345
11346 Output:
11347 11111                           33333
11348 22222                           44444
11349 11111                           33333
11350 22222                           44444
11351 11111                           33333
11352 22222                           44444
11353 11111                           33333
11354 22222                           44444
11355 @end example
11356
11357 @item drop_odd, 1
11358 Only output even frames, odd frames are dropped, generating a frame with
11359 unchanged height at half frame rate.
11360
11361 @example
11362  ------> time
11363 Input:
11364 Frame 1         Frame 2         Frame 3         Frame 4
11365
11366 11111           22222           33333           44444
11367 11111           22222           33333           44444
11368 11111           22222           33333           44444
11369 11111           22222           33333           44444
11370
11371 Output:
11372                 22222                           44444
11373                 22222                           44444
11374                 22222                           44444
11375                 22222                           44444
11376 @end example
11377
11378 @item drop_even, 2
11379 Only output odd frames, even frames are dropped, generating a frame with
11380 unchanged height at half frame rate.
11381
11382 @example
11383  ------> time
11384 Input:
11385 Frame 1         Frame 2         Frame 3         Frame 4
11386
11387 11111           22222           33333           44444
11388 11111           22222           33333           44444
11389 11111           22222           33333           44444
11390 11111           22222           33333           44444
11391
11392 Output:
11393 11111                           33333
11394 11111                           33333
11395 11111                           33333
11396 11111                           33333
11397 @end example
11398
11399 @item pad, 3
11400 Expand each frame to full height, but pad alternate lines with black,
11401 generating a frame with double height at the same input frame rate.
11402
11403 @example
11404  ------> time
11405 Input:
11406 Frame 1         Frame 2         Frame 3         Frame 4
11407
11408 11111           22222           33333           44444
11409 11111           22222           33333           44444
11410 11111           22222           33333           44444
11411 11111           22222           33333           44444
11412
11413 Output:
11414 11111           .....           33333           .....
11415 .....           22222           .....           44444
11416 11111           .....           33333           .....
11417 .....           22222           .....           44444
11418 11111           .....           33333           .....
11419 .....           22222           .....           44444
11420 11111           .....           33333           .....
11421 .....           22222           .....           44444
11422 @end example
11423
11424
11425 @item interleave_top, 4
11426 Interleave the upper field from odd frames with the lower field from
11427 even frames, generating a frame with unchanged height at half frame rate.
11428
11429 @example
11430  ------> time
11431 Input:
11432 Frame 1         Frame 2         Frame 3         Frame 4
11433
11434 11111<-         22222           33333<-         44444
11435 11111           22222<-         33333           44444<-
11436 11111<-         22222           33333<-         44444
11437 11111           22222<-         33333           44444<-
11438
11439 Output:
11440 11111                           33333
11441 22222                           44444
11442 11111                           33333
11443 22222                           44444
11444 @end example
11445
11446
11447 @item interleave_bottom, 5
11448 Interleave the lower field from odd frames with the upper field from
11449 even frames, generating a frame with unchanged height at half frame rate.
11450
11451 @example
11452  ------> time
11453 Input:
11454 Frame 1         Frame 2         Frame 3         Frame 4
11455
11456 11111           22222<-         33333           44444<-
11457 11111<-         22222           33333<-         44444
11458 11111           22222<-         33333           44444<-
11459 11111<-         22222           33333<-         44444
11460
11461 Output:
11462 22222                           44444
11463 11111                           33333
11464 22222                           44444
11465 11111                           33333
11466 @end example
11467
11468
11469 @item interlacex2, 6
11470 Double frame rate with unchanged height. Frames are inserted each
11471 containing the second temporal field from the previous input frame and
11472 the first temporal field from the next input frame. This mode relies on
11473 the top_field_first flag. Useful for interlaced video displays with no
11474 field synchronisation.
11475
11476 @example
11477  ------> time
11478 Input:
11479 Frame 1         Frame 2         Frame 3         Frame 4
11480
11481 11111           22222           33333           44444
11482  11111           22222           33333           44444
11483 11111           22222           33333           44444
11484  11111           22222           33333           44444
11485
11486 Output:
11487 11111   22222   22222   33333   33333   44444   44444
11488  11111   11111   22222   22222   33333   33333   44444
11489 11111   22222   22222   33333   33333   44444   44444
11490  11111   11111   22222   22222   33333   33333   44444
11491 @end example
11492
11493 @item mergex2, 7
11494 Move odd frames into the upper field, even into the lower field,
11495 generating a double height frame at same frame rate.
11496 @example
11497  ------> time
11498 Input:
11499 Frame 1         Frame 2         Frame 3         Frame 4
11500
11501 11111           22222           33333           44444
11502 11111           22222           33333           44444
11503 11111           22222           33333           44444
11504 11111           22222           33333           44444
11505
11506 Output:
11507 11111           33333           33333           55555
11508 22222           22222           44444           44444
11509 11111           33333           33333           55555
11510 22222           22222           44444           44444
11511 11111           33333           33333           55555
11512 22222           22222           44444           44444
11513 11111           33333           33333           55555
11514 22222           22222           44444           44444
11515 @end example
11516
11517 @end table
11518
11519 Numeric values are deprecated but are accepted for backward
11520 compatibility reasons.
11521
11522 Default mode is @code{merge}.
11523
11524 @item flags
11525 Specify flags influencing the filter process.
11526
11527 Available value for @var{flags} is:
11528
11529 @table @option
11530 @item low_pass_filter, vlfp
11531 Enable vertical low-pass filtering in the filter.
11532 Vertical low-pass filtering is required when creating an interlaced
11533 destination from a progressive source which contains high-frequency
11534 vertical detail. Filtering will reduce interlace 'twitter' and Moire
11535 patterning.
11536
11537 Vertical low-pass filtering can only be enabled for @option{mode}
11538 @var{interleave_top} and @var{interleave_bottom}.
11539
11540 @end table
11541 @end table
11542
11543 @section transpose
11544
11545 Transpose rows with columns in the input video and optionally flip it.
11546
11547 It accepts the following parameters:
11548
11549 @table @option
11550
11551 @item dir
11552 Specify the transposition direction.
11553
11554 Can assume the following values:
11555 @table @samp
11556 @item 0, 4, cclock_flip
11557 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
11558 @example
11559 L.R     L.l
11560 . . ->  . .
11561 l.r     R.r
11562 @end example
11563
11564 @item 1, 5, clock
11565 Rotate by 90 degrees clockwise, that is:
11566 @example
11567 L.R     l.L
11568 . . ->  . .
11569 l.r     r.R
11570 @end example
11571
11572 @item 2, 6, cclock
11573 Rotate by 90 degrees counterclockwise, that is:
11574 @example
11575 L.R     R.r
11576 . . ->  . .
11577 l.r     L.l
11578 @end example
11579
11580 @item 3, 7, clock_flip
11581 Rotate by 90 degrees clockwise and vertically flip, that is:
11582 @example
11583 L.R     r.R
11584 . . ->  . .
11585 l.r     l.L
11586 @end example
11587 @end table
11588
11589 For values between 4-7, the transposition is only done if the input
11590 video geometry is portrait and not landscape. These values are
11591 deprecated, the @code{passthrough} option should be used instead.
11592
11593 Numerical values are deprecated, and should be dropped in favor of
11594 symbolic constants.
11595
11596 @item passthrough
11597 Do not apply the transposition if the input geometry matches the one
11598 specified by the specified value. It accepts the following values:
11599 @table @samp
11600 @item none
11601 Always apply transposition.
11602 @item portrait
11603 Preserve portrait geometry (when @var{height} >= @var{width}).
11604 @item landscape
11605 Preserve landscape geometry (when @var{width} >= @var{height}).
11606 @end table
11607
11608 Default value is @code{none}.
11609 @end table
11610
11611 For example to rotate by 90 degrees clockwise and preserve portrait
11612 layout:
11613 @example
11614 transpose=dir=1:passthrough=portrait
11615 @end example
11616
11617 The command above can also be specified as:
11618 @example
11619 transpose=1:portrait
11620 @end example
11621
11622 @section trim
11623 Trim the input so that the output contains one continuous subpart of the input.
11624
11625 It accepts the following parameters:
11626 @table @option
11627 @item start
11628 Specify the time of the start of the kept section, i.e. the frame with the
11629 timestamp @var{start} will be the first frame in the output.
11630
11631 @item end
11632 Specify the time of the first frame that will be dropped, i.e. the frame
11633 immediately preceding the one with the timestamp @var{end} will be the last
11634 frame in the output.
11635
11636 @item start_pts
11637 This is the same as @var{start}, except this option sets the start timestamp
11638 in timebase units instead of seconds.
11639
11640 @item end_pts
11641 This is the same as @var{end}, except this option sets the end timestamp
11642 in timebase units instead of seconds.
11643
11644 @item duration
11645 The maximum duration of the output in seconds.
11646
11647 @item start_frame
11648 The number of the first frame that should be passed to the output.
11649
11650 @item end_frame
11651 The number of the first frame that should be dropped.
11652 @end table
11653
11654 @option{start}, @option{end}, and @option{duration} are expressed as time
11655 duration specifications; see
11656 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11657 for the accepted syntax.
11658
11659 Note that the first two sets of the start/end options and the @option{duration}
11660 option look at the frame timestamp, while the _frame variants simply count the
11661 frames that pass through the filter. Also note that this filter does not modify
11662 the timestamps. If you wish for the output timestamps to start at zero, insert a
11663 setpts filter after the trim filter.
11664
11665 If multiple start or end options are set, this filter tries to be greedy and
11666 keep all the frames that match at least one of the specified constraints. To keep
11667 only the part that matches all the constraints at once, chain multiple trim
11668 filters.
11669
11670 The defaults are such that all the input is kept. So it is possible to set e.g.
11671 just the end values to keep everything before the specified time.
11672
11673 Examples:
11674 @itemize
11675 @item
11676 Drop everything except the second minute of input:
11677 @example
11678 ffmpeg -i INPUT -vf trim=60:120
11679 @end example
11680
11681 @item
11682 Keep only the first second:
11683 @example
11684 ffmpeg -i INPUT -vf trim=duration=1
11685 @end example
11686
11687 @end itemize
11688
11689
11690 @anchor{unsharp}
11691 @section unsharp
11692
11693 Sharpen or blur the input video.
11694
11695 It accepts the following parameters:
11696
11697 @table @option
11698 @item luma_msize_x, lx
11699 Set the luma matrix horizontal size. It must be an odd integer between
11700 3 and 63. The default value is 5.
11701
11702 @item luma_msize_y, ly
11703 Set the luma matrix vertical size. It must be an odd integer between 3
11704 and 63. The default value is 5.
11705
11706 @item luma_amount, la
11707 Set the luma effect strength. It must be a floating point number, reasonable
11708 values lay between -1.5 and 1.5.
11709
11710 Negative values will blur the input video, while positive values will
11711 sharpen it, a value of zero will disable the effect.
11712
11713 Default value is 1.0.
11714
11715 @item chroma_msize_x, cx
11716 Set the chroma matrix horizontal size. It must be an odd integer
11717 between 3 and 63. The default value is 5.
11718
11719 @item chroma_msize_y, cy
11720 Set the chroma matrix vertical size. It must be an odd integer
11721 between 3 and 63. The default value is 5.
11722
11723 @item chroma_amount, ca
11724 Set the chroma effect strength. It must be a floating point number, reasonable
11725 values lay between -1.5 and 1.5.
11726
11727 Negative values will blur the input video, while positive values will
11728 sharpen it, a value of zero will disable the effect.
11729
11730 Default value is 0.0.
11731
11732 @item opencl
11733 If set to 1, specify using OpenCL capabilities, only available if
11734 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
11735
11736 @end table
11737
11738 All parameters are optional and default to the equivalent of the
11739 string '5:5:1.0:5:5:0.0'.
11740
11741 @subsection Examples
11742
11743 @itemize
11744 @item
11745 Apply strong luma sharpen effect:
11746 @example
11747 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
11748 @end example
11749
11750 @item
11751 Apply a strong blur of both luma and chroma parameters:
11752 @example
11753 unsharp=7:7:-2:7:7:-2
11754 @end example
11755 @end itemize
11756
11757 @section uspp
11758
11759 Apply ultra slow/simple postprocessing filter that compresses and decompresses
11760 the image at several (or - in the case of @option{quality} level @code{8} - all)
11761 shifts and average the results.
11762
11763 The way this differs from the behavior of spp is that uspp actually encodes &
11764 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
11765 DCT similar to MJPEG.
11766
11767 The filter accepts the following options:
11768
11769 @table @option
11770 @item quality
11771 Set quality. This option defines the number of levels for averaging. It accepts
11772 an integer in the range 0-8. If set to @code{0}, the filter will have no
11773 effect. A value of @code{8} means the higher quality. For each increment of
11774 that value the speed drops by a factor of approximately 2.  Default value is
11775 @code{3}.
11776
11777 @item qp
11778 Force a constant quantization parameter. If not set, the filter will use the QP
11779 from the video stream (if available).
11780 @end table
11781
11782 @section vectorscope
11783
11784 Display 2 color component values in the two dimensional graph (which is called
11785 a vectorscope).
11786
11787 This filter accepts the following options:
11788
11789 @table @option
11790 @item mode, m
11791 Set vectorscope mode.
11792
11793 It accepts the following values:
11794 @table @samp
11795 @item gray
11796 Gray values are displayed on graph, higher brightness means more pixels have
11797 same component color value on location in graph. This is the default mode.
11798
11799 @item color
11800 Gray values are displayed on graph. Surrounding pixels values which are not
11801 present in video frame are drawn in gradient of 2 color components which are
11802 set by option @code{x} and @code{y}.
11803
11804 @item color2
11805 Actual color components values present in video frame are displayed on graph.
11806
11807 @item color3
11808 Similar as color2 but higher frequency of same values @code{x} and @code{y}
11809 on graph increases value of another color component, which is luminance by
11810 default values of @code{x} and @code{y}.
11811
11812 @item color4
11813 Actual colors present in video frame are displayed on graph. If two different
11814 colors map to same position on graph then color with higher value of component
11815 not present in graph is picked.
11816 @end table
11817
11818 @item x
11819 Set which color component will be represented on X-axis. Default is @code{1}.
11820
11821 @item y
11822 Set which color component will be represented on Y-axis. Default is @code{2}.
11823
11824 @item intensity, i
11825 Set intensity, used by modes: gray, color and color3 for increasing brightness
11826 of color component which represents frequency of (X, Y) location in graph.
11827
11828 @item envelope, e
11829 @table @samp
11830 @item none
11831 No envelope, this is default.
11832
11833 @item instant
11834 Instant envelope, even darkest single pixel will be clearly highlighted.
11835
11836 @item peak
11837 Hold maximum and minimum values presented in graph over time. This way you
11838 can still spot out of range values without constantly looking at vectorscope.
11839
11840 @item peak+instant
11841 Peak and instant envelope combined together.
11842 @end table
11843 @end table
11844
11845 @anchor{vidstabdetect}
11846 @section vidstabdetect
11847
11848 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
11849 @ref{vidstabtransform} for pass 2.
11850
11851 This filter generates a file with relative translation and rotation
11852 transform information about subsequent frames, which is then used by
11853 the @ref{vidstabtransform} filter.
11854
11855 To enable compilation of this filter you need to configure FFmpeg with
11856 @code{--enable-libvidstab}.
11857
11858 This filter accepts the following options:
11859
11860 @table @option
11861 @item result
11862 Set the path to the file used to write the transforms information.
11863 Default value is @file{transforms.trf}.
11864
11865 @item shakiness
11866 Set how shaky the video is and how quick the camera is. It accepts an
11867 integer in the range 1-10, a value of 1 means little shakiness, a
11868 value of 10 means strong shakiness. Default value is 5.
11869
11870 @item accuracy
11871 Set the accuracy of the detection process. It must be a value in the
11872 range 1-15. A value of 1 means low accuracy, a value of 15 means high
11873 accuracy. Default value is 15.
11874
11875 @item stepsize
11876 Set stepsize of the search process. The region around minimum is
11877 scanned with 1 pixel resolution. Default value is 6.
11878
11879 @item mincontrast
11880 Set minimum contrast. Below this value a local measurement field is
11881 discarded. Must be a floating point value in the range 0-1. Default
11882 value is 0.3.
11883
11884 @item tripod
11885 Set reference frame number for tripod mode.
11886
11887 If enabled, the motion of the frames is compared to a reference frame
11888 in the filtered stream, identified by the specified number. The idea
11889 is to compensate all movements in a more-or-less static scene and keep
11890 the camera view absolutely still.
11891
11892 If set to 0, it is disabled. The frames are counted starting from 1.
11893
11894 @item show
11895 Show fields and transforms in the resulting frames. It accepts an
11896 integer in the range 0-2. Default value is 0, which disables any
11897 visualization.
11898 @end table
11899
11900 @subsection Examples
11901
11902 @itemize
11903 @item
11904 Use default values:
11905 @example
11906 vidstabdetect
11907 @end example
11908
11909 @item
11910 Analyze strongly shaky movie and put the results in file
11911 @file{mytransforms.trf}:
11912 @example
11913 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
11914 @end example
11915
11916 @item
11917 Visualize the result of internal transformations in the resulting
11918 video:
11919 @example
11920 vidstabdetect=show=1
11921 @end example
11922
11923 @item
11924 Analyze a video with medium shakiness using @command{ffmpeg}:
11925 @example
11926 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
11927 @end example
11928 @end itemize
11929
11930 @anchor{vidstabtransform}
11931 @section vidstabtransform
11932
11933 Video stabilization/deshaking: pass 2 of 2,
11934 see @ref{vidstabdetect} for pass 1.
11935
11936 Read a file with transform information for each frame and
11937 apply/compensate them. Together with the @ref{vidstabdetect}
11938 filter this can be used to deshake videos. See also
11939 @url{http://public.hronopik.de/vid.stab}. It is important to also use
11940 the @ref{unsharp} filter, see below.
11941
11942 To enable compilation of this filter you need to configure FFmpeg with
11943 @code{--enable-libvidstab}.
11944
11945 @subsection Options
11946
11947 @table @option
11948 @item input
11949 Set path to the file used to read the transforms. Default value is
11950 @file{transforms.trf}.
11951
11952 @item smoothing
11953 Set the number of frames (value*2 + 1) used for lowpass filtering the
11954 camera movements. Default value is 10.
11955
11956 For example a number of 10 means that 21 frames are used (10 in the
11957 past and 10 in the future) to smoothen the motion in the video. A
11958 larger value leads to a smoother video, but limits the acceleration of
11959 the camera (pan/tilt movements). 0 is a special case where a static
11960 camera is simulated.
11961
11962 @item optalgo
11963 Set the camera path optimization algorithm.
11964
11965 Accepted values are:
11966 @table @samp
11967 @item gauss
11968 gaussian kernel low-pass filter on camera motion (default)
11969 @item avg
11970 averaging on transformations
11971 @end table
11972
11973 @item maxshift
11974 Set maximal number of pixels to translate frames. Default value is -1,
11975 meaning no limit.
11976
11977 @item maxangle
11978 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
11979 value is -1, meaning no limit.
11980
11981 @item crop
11982 Specify how to deal with borders that may be visible due to movement
11983 compensation.
11984
11985 Available values are:
11986 @table @samp
11987 @item keep
11988 keep image information from previous frame (default)
11989 @item black
11990 fill the border black
11991 @end table
11992
11993 @item invert
11994 Invert transforms if set to 1. Default value is 0.
11995
11996 @item relative
11997 Consider transforms as relative to previous frame if set to 1,
11998 absolute if set to 0. Default value is 0.
11999
12000 @item zoom
12001 Set percentage to zoom. A positive value will result in a zoom-in
12002 effect, a negative value in a zoom-out effect. Default value is 0 (no
12003 zoom).
12004
12005 @item optzoom
12006 Set optimal zooming to avoid borders.
12007
12008 Accepted values are:
12009 @table @samp
12010 @item 0
12011 disabled
12012 @item 1
12013 optimal static zoom value is determined (only very strong movements
12014 will lead to visible borders) (default)
12015 @item 2
12016 optimal adaptive zoom value is determined (no borders will be
12017 visible), see @option{zoomspeed}
12018 @end table
12019
12020 Note that the value given at zoom is added to the one calculated here.
12021
12022 @item zoomspeed
12023 Set percent to zoom maximally each frame (enabled when
12024 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
12025 0.25.
12026
12027 @item interpol
12028 Specify type of interpolation.
12029
12030 Available values are:
12031 @table @samp
12032 @item no
12033 no interpolation
12034 @item linear
12035 linear only horizontal
12036 @item bilinear
12037 linear in both directions (default)
12038 @item bicubic
12039 cubic in both directions (slow)
12040 @end table
12041
12042 @item tripod
12043 Enable virtual tripod mode if set to 1, which is equivalent to
12044 @code{relative=0:smoothing=0}. Default value is 0.
12045
12046 Use also @code{tripod} option of @ref{vidstabdetect}.
12047
12048 @item debug
12049 Increase log verbosity if set to 1. Also the detected global motions
12050 are written to the temporary file @file{global_motions.trf}. Default
12051 value is 0.
12052 @end table
12053
12054 @subsection Examples
12055
12056 @itemize
12057 @item
12058 Use @command{ffmpeg} for a typical stabilization with default values:
12059 @example
12060 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
12061 @end example
12062
12063 Note the use of the @ref{unsharp} filter which is always recommended.
12064
12065 @item
12066 Zoom in a bit more and load transform data from a given file:
12067 @example
12068 vidstabtransform=zoom=5:input="mytransforms.trf"
12069 @end example
12070
12071 @item
12072 Smoothen the video even more:
12073 @example
12074 vidstabtransform=smoothing=30
12075 @end example
12076 @end itemize
12077
12078 @section vflip
12079
12080 Flip the input video vertically.
12081
12082 For example, to vertically flip a video with @command{ffmpeg}:
12083 @example
12084 ffmpeg -i in.avi -vf "vflip" out.avi
12085 @end example
12086
12087 @anchor{vignette}
12088 @section vignette
12089
12090 Make or reverse a natural vignetting effect.
12091
12092 The filter accepts the following options:
12093
12094 @table @option
12095 @item angle, a
12096 Set lens angle expression as a number of radians.
12097
12098 The value is clipped in the @code{[0,PI/2]} range.
12099
12100 Default value: @code{"PI/5"}
12101
12102 @item x0
12103 @item y0
12104 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
12105 by default.
12106
12107 @item mode
12108 Set forward/backward mode.
12109
12110 Available modes are:
12111 @table @samp
12112 @item forward
12113 The larger the distance from the central point, the darker the image becomes.
12114
12115 @item backward
12116 The larger the distance from the central point, the brighter the image becomes.
12117 This can be used to reverse a vignette effect, though there is no automatic
12118 detection to extract the lens @option{angle} and other settings (yet). It can
12119 also be used to create a burning effect.
12120 @end table
12121
12122 Default value is @samp{forward}.
12123
12124 @item eval
12125 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
12126
12127 It accepts the following values:
12128 @table @samp
12129 @item init
12130 Evaluate expressions only once during the filter initialization.
12131
12132 @item frame
12133 Evaluate expressions for each incoming frame. This is way slower than the
12134 @samp{init} mode since it requires all the scalers to be re-computed, but it
12135 allows advanced dynamic expressions.
12136 @end table
12137
12138 Default value is @samp{init}.
12139
12140 @item dither
12141 Set dithering to reduce the circular banding effects. Default is @code{1}
12142 (enabled).
12143
12144 @item aspect
12145 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
12146 Setting this value to the SAR of the input will make a rectangular vignetting
12147 following the dimensions of the video.
12148
12149 Default is @code{1/1}.
12150 @end table
12151
12152 @subsection Expressions
12153
12154 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
12155 following parameters.
12156
12157 @table @option
12158 @item w
12159 @item h
12160 input width and height
12161
12162 @item n
12163 the number of input frame, starting from 0
12164
12165 @item pts
12166 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
12167 @var{TB} units, NAN if undefined
12168
12169 @item r
12170 frame rate of the input video, NAN if the input frame rate is unknown
12171
12172 @item t
12173 the PTS (Presentation TimeStamp) of the filtered video frame,
12174 expressed in seconds, NAN if undefined
12175
12176 @item tb
12177 time base of the input video
12178 @end table
12179
12180
12181 @subsection Examples
12182
12183 @itemize
12184 @item
12185 Apply simple strong vignetting effect:
12186 @example
12187 vignette=PI/4
12188 @end example
12189
12190 @item
12191 Make a flickering vignetting:
12192 @example
12193 vignette='PI/4+random(1)*PI/50':eval=frame
12194 @end example
12195
12196 @end itemize
12197
12198 @section vstack
12199 Stack input videos vertically.
12200
12201 All streams must be of same pixel format and of same width.
12202
12203 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12204 to create same output.
12205
12206 The filter accept the following option:
12207
12208 @table @option
12209 @item inputs
12210 Set number of input streams. Default is 2.
12211
12212 @item shortest
12213 If set to 1, force the output to terminate when the shortest input
12214 terminates. Default value is 0.
12215 @end table
12216
12217 @section w3fdif
12218
12219 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
12220 Deinterlacing Filter").
12221
12222 Based on the process described by Martin Weston for BBC R&D, and
12223 implemented based on the de-interlace algorithm written by Jim
12224 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
12225 uses filter coefficients calculated by BBC R&D.
12226
12227 There are two sets of filter coefficients, so called "simple":
12228 and "complex". Which set of filter coefficients is used can
12229 be set by passing an optional parameter:
12230
12231 @table @option
12232 @item filter
12233 Set the interlacing filter coefficients. Accepts one of the following values:
12234
12235 @table @samp
12236 @item simple
12237 Simple filter coefficient set.
12238 @item complex
12239 More-complex filter coefficient set.
12240 @end table
12241 Default value is @samp{complex}.
12242
12243 @item deint
12244 Specify which frames to deinterlace. Accept one of the following values:
12245
12246 @table @samp
12247 @item all
12248 Deinterlace all frames,
12249 @item interlaced
12250 Only deinterlace frames marked as interlaced.
12251 @end table
12252
12253 Default value is @samp{all}.
12254 @end table
12255
12256 @section waveform
12257 Video waveform monitor.
12258
12259 The waveform monitor plots color component intensity. By default luminance
12260 only. Each column of the waveform corresponds to a column of pixels in the
12261 source video.
12262
12263 It accepts the following options:
12264
12265 @table @option
12266 @item mode, m
12267 Can be either @code{row}, or @code{column}. Default is @code{column}.
12268 In row mode, the graph on the left side represents color component value 0 and
12269 the right side represents value = 255. In column mode, the top side represents
12270 color component value = 0 and bottom side represents value = 255.
12271
12272 @item intensity, i
12273 Set intensity. Smaller values are useful to find out how many values of the same
12274 luminance are distributed across input rows/columns.
12275 Default value is @code{0.04}. Allowed range is [0, 1].
12276
12277 @item mirror, r
12278 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
12279 In mirrored mode, higher values will be represented on the left
12280 side for @code{row} mode and at the top for @code{column} mode. Default is
12281 @code{1} (mirrored).
12282
12283 @item display, d
12284 Set display mode.
12285 It accepts the following values:
12286 @table @samp
12287 @item overlay
12288 Presents information identical to that in the @code{parade}, except
12289 that the graphs representing color components are superimposed directly
12290 over one another.
12291
12292 This display mode makes it easier to spot relative differences or similarities
12293 in overlapping areas of the color components that are supposed to be identical,
12294 such as neutral whites, grays, or blacks.
12295
12296 @item parade
12297 Display separate graph for the color components side by side in
12298 @code{row} mode or one below the other in @code{column} mode.
12299
12300 Using this display mode makes it easy to spot color casts in the highlights
12301 and shadows of an image, by comparing the contours of the top and the bottom
12302 graphs of each waveform. Since whites, grays, and blacks are characterized
12303 by exactly equal amounts of red, green, and blue, neutral areas of the picture
12304 should display three waveforms of roughly equal width/height. If not, the
12305 correction is easy to perform by making level adjustments the three waveforms.
12306 @end table
12307 Default is @code{parade}.
12308
12309 @item components, c
12310 Set which color components to display. Default is 1, which means only luminance
12311 or red color component if input is in RGB colorspace. If is set for example to
12312 7 it will display all 3 (if) available color components.
12313
12314 @item envelope, e
12315 @table @samp
12316 @item none
12317 No envelope, this is default.
12318
12319 @item instant
12320 Instant envelope, minimum and maximum values presented in graph will be easily
12321 visible even with small @code{step} value.
12322
12323 @item peak
12324 Hold minimum and maximum values presented in graph across time. This way you
12325 can still spot out of range values without constantly looking at waveforms.
12326
12327 @item peak+instant
12328 Peak and instant envelope combined together.
12329 @end table
12330
12331 @item filter, f
12332 @table @samp
12333 @item lowpass
12334 No filtering, this is default.
12335
12336 @item flat
12337 Luma and chroma combined together.
12338
12339 @item aflat
12340 Similar as above, but shows difference between blue and red chroma.
12341
12342 @item chroma
12343 Displays only chroma.
12344
12345 @item achroma
12346 Similar as above, but shows difference between blue and red chroma.
12347
12348 @item color
12349 Displays actual color value on waveform.
12350 @end table
12351 @end table
12352
12353 @section xbr
12354 Apply the xBR high-quality magnification filter which is designed for pixel
12355 art. It follows a set of edge-detection rules, see
12356 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
12357
12358 It accepts the following option:
12359
12360 @table @option
12361 @item n
12362 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
12363 @code{3xBR} and @code{4} for @code{4xBR}.
12364 Default is @code{3}.
12365 @end table
12366
12367 @anchor{yadif}
12368 @section yadif
12369
12370 Deinterlace the input video ("yadif" means "yet another deinterlacing
12371 filter").
12372
12373 It accepts the following parameters:
12374
12375
12376 @table @option
12377
12378 @item mode
12379 The interlacing mode to adopt. It accepts one of the following values:
12380
12381 @table @option
12382 @item 0, send_frame
12383 Output one frame for each frame.
12384 @item 1, send_field
12385 Output one frame for each field.
12386 @item 2, send_frame_nospatial
12387 Like @code{send_frame}, but it skips the spatial interlacing check.
12388 @item 3, send_field_nospatial
12389 Like @code{send_field}, but it skips the spatial interlacing check.
12390 @end table
12391
12392 The default value is @code{send_frame}.
12393
12394 @item parity
12395 The picture field parity assumed for the input interlaced video. It accepts one
12396 of the following values:
12397
12398 @table @option
12399 @item 0, tff
12400 Assume the top field is first.
12401 @item 1, bff
12402 Assume the bottom field is first.
12403 @item -1, auto
12404 Enable automatic detection of field parity.
12405 @end table
12406
12407 The default value is @code{auto}.
12408 If the interlacing is unknown or the decoder does not export this information,
12409 top field first will be assumed.
12410
12411 @item deint
12412 Specify which frames to deinterlace. Accept one of the following
12413 values:
12414
12415 @table @option
12416 @item 0, all
12417 Deinterlace all frames.
12418 @item 1, interlaced
12419 Only deinterlace frames marked as interlaced.
12420 @end table
12421
12422 The default value is @code{all}.
12423 @end table
12424
12425 @section zoompan
12426
12427 Apply Zoom & Pan effect.
12428
12429 This filter accepts the following options:
12430
12431 @table @option
12432 @item zoom, z
12433 Set the zoom expression. Default is 1.
12434
12435 @item x
12436 @item y
12437 Set the x and y expression. Default is 0.
12438
12439 @item d
12440 Set the duration expression in number of frames.
12441 This sets for how many number of frames effect will last for
12442 single input image.
12443
12444 @item s
12445 Set the output image size, default is 'hd720'.
12446 @end table
12447
12448 Each expression can contain the following constants:
12449
12450 @table @option
12451 @item in_w, iw
12452 Input width.
12453
12454 @item in_h, ih
12455 Input height.
12456
12457 @item out_w, ow
12458 Output width.
12459
12460 @item out_h, oh
12461 Output height.
12462
12463 @item in
12464 Input frame count.
12465
12466 @item on
12467 Output frame count.
12468
12469 @item x
12470 @item y
12471 Last calculated 'x' and 'y' position from 'x' and 'y' expression
12472 for current input frame.
12473
12474 @item px
12475 @item py
12476 'x' and 'y' of last output frame of previous input frame or 0 when there was
12477 not yet such frame (first input frame).
12478
12479 @item zoom
12480 Last calculated zoom from 'z' expression for current input frame.
12481
12482 @item pzoom
12483 Last calculated zoom of last output frame of previous input frame.
12484
12485 @item duration
12486 Number of output frames for current input frame. Calculated from 'd' expression
12487 for each input frame.
12488
12489 @item pduration
12490 number of output frames created for previous input frame
12491
12492 @item a
12493 Rational number: input width / input height
12494
12495 @item sar
12496 sample aspect ratio
12497
12498 @item dar
12499 display aspect ratio
12500
12501 @end table
12502
12503 @subsection Examples
12504
12505 @itemize
12506 @item
12507 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
12508 @example
12509 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
12510 @end example
12511
12512 @item
12513 Zoom-in up to 1.5 and pan always at center of picture:
12514 @example
12515 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
12516 @end example
12517 @end itemize
12518
12519 @section zscale
12520 Scale (resize) the input video, using the z.lib library:
12521 https://github.com/sekrit-twc/zimg.
12522
12523 The zscale filter forces the output display aspect ratio to be the same
12524 as the input, by changing the output sample aspect ratio.
12525
12526 If the input image format is different from the format requested by
12527 the next filter, the zscale filter will convert the input to the
12528 requested format.
12529
12530 @subsection Options
12531 The filter accepts the following options.
12532
12533 @table @option
12534 @item width, w
12535 @item height, h
12536 Set the output video dimension expression. Default value is the input
12537 dimension.
12538
12539 If the @var{width} or @var{w} is 0, the input width is used for the output.
12540 If the @var{height} or @var{h} is 0, the input height is used for the output.
12541
12542 If one of the values is -1, the zscale filter will use a value that
12543 maintains the aspect ratio of the input image, calculated from the
12544 other specified dimension. If both of them are -1, the input size is
12545 used
12546
12547 If one of the values is -n with n > 1, the zscale filter will also use a value
12548 that maintains the aspect ratio of the input image, calculated from the other
12549 specified dimension. After that it will, however, make sure that the calculated
12550 dimension is divisible by n and adjust the value if necessary.
12551
12552 See below for the list of accepted constants for use in the dimension
12553 expression.
12554
12555 @item size, s
12556 Set the video size. For the syntax of this option, check the
12557 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12558
12559 @item dither, d
12560 Set the dither type.
12561
12562 Possible values are:
12563 @table @var
12564 @item none
12565 @item ordered
12566 @item random
12567 @item error_diffusion
12568 @end table
12569
12570 Default is none.
12571
12572 @item filter, f
12573 Set the resize filter type.
12574
12575 Possible values are:
12576 @table @var
12577 @item point
12578 @item bilinear
12579 @item bicubic
12580 @item spline16
12581 @item spline36
12582 @item lanczos
12583 @end table
12584
12585 Default is bilinear.
12586
12587 @item range, r
12588 Set the color range.
12589
12590 Possible values are:
12591 @table @var
12592 @item input
12593 @item limited
12594 @item full
12595 @end table
12596
12597 Default is same as input.
12598
12599 @item primaries, p
12600 Set the color primaries.
12601
12602 Possible values are:
12603 @table @var
12604 @item input
12605 @item 709
12606 @item unspecified
12607 @item 170m
12608 @item 240m
12609 @item 2020
12610 @end table
12611
12612 Default is same as input.
12613
12614 @item transfer, t
12615 Set the transfer characteristics.
12616
12617 Possible values are:
12618 @table @var
12619 @item input
12620 @item 709
12621 @item unspecified
12622 @item 601
12623 @item linear
12624 @item 2020_10
12625 @item 2020_12
12626 @end table
12627
12628 Default is same as input.
12629
12630 @item matrix, m
12631 Set the colorspace matrix.
12632
12633 Possible value are:
12634 @table @var
12635 @item input
12636 @item 709
12637 @item unspecified
12638 @item 470bg
12639 @item 170m
12640 @item 2020_ncl
12641 @item 2020_cl
12642 @end table
12643
12644 Default is same as input.
12645 @end table
12646
12647 The values of the @option{w} and @option{h} options are expressions
12648 containing the following constants:
12649
12650 @table @var
12651 @item in_w
12652 @item in_h
12653 The input width and height
12654
12655 @item iw
12656 @item ih
12657 These are the same as @var{in_w} and @var{in_h}.
12658
12659 @item out_w
12660 @item out_h
12661 The output (scaled) width and height
12662
12663 @item ow
12664 @item oh
12665 These are the same as @var{out_w} and @var{out_h}
12666
12667 @item a
12668 The same as @var{iw} / @var{ih}
12669
12670 @item sar
12671 input sample aspect ratio
12672
12673 @item dar
12674 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12675
12676 @item hsub
12677 @item vsub
12678 horizontal and vertical input chroma subsample values. For example for the
12679 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12680
12681 @item ohsub
12682 @item ovsub
12683 horizontal and vertical output chroma subsample values. For example for the
12684 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12685 @end table
12686
12687 @table @option
12688 @end table
12689
12690 @c man end VIDEO FILTERS
12691
12692 @chapter Video Sources
12693 @c man begin VIDEO SOURCES
12694
12695 Below is a description of the currently available video sources.
12696
12697 @section buffer
12698
12699 Buffer video frames, and make them available to the filter chain.
12700
12701 This source is mainly intended for a programmatic use, in particular
12702 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
12703
12704 It accepts the following parameters:
12705
12706 @table @option
12707
12708 @item video_size
12709 Specify the size (width and height) of the buffered video frames. For the
12710 syntax of this option, check the
12711 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12712
12713 @item width
12714 The input video width.
12715
12716 @item height
12717 The input video height.
12718
12719 @item pix_fmt
12720 A string representing the pixel format of the buffered video frames.
12721 It may be a number corresponding to a pixel format, or a pixel format
12722 name.
12723
12724 @item time_base
12725 Specify the timebase assumed by the timestamps of the buffered frames.
12726
12727 @item frame_rate
12728 Specify the frame rate expected for the video stream.
12729
12730 @item pixel_aspect, sar
12731 The sample (pixel) aspect ratio of the input video.
12732
12733 @item sws_param
12734 Specify the optional parameters to be used for the scale filter which
12735 is automatically inserted when an input change is detected in the
12736 input size or format.
12737 @end table
12738
12739 For example:
12740 @example
12741 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
12742 @end example
12743
12744 will instruct the source to accept video frames with size 320x240 and
12745 with format "yuv410p", assuming 1/24 as the timestamps timebase and
12746 square pixels (1:1 sample aspect ratio).
12747 Since the pixel format with name "yuv410p" corresponds to the number 6
12748 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
12749 this example corresponds to:
12750 @example
12751 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
12752 @end example
12753
12754 Alternatively, the options can be specified as a flat string, but this
12755 syntax is deprecated:
12756
12757 @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}]
12758
12759 @section cellauto
12760
12761 Create a pattern generated by an elementary cellular automaton.
12762
12763 The initial state of the cellular automaton can be defined through the
12764 @option{filename}, and @option{pattern} options. If such options are
12765 not specified an initial state is created randomly.
12766
12767 At each new frame a new row in the video is filled with the result of
12768 the cellular automaton next generation. The behavior when the whole
12769 frame is filled is defined by the @option{scroll} option.
12770
12771 This source accepts the following options:
12772
12773 @table @option
12774 @item filename, f
12775 Read the initial cellular automaton state, i.e. the starting row, from
12776 the specified file.
12777 In the file, each non-whitespace character is considered an alive
12778 cell, a newline will terminate the row, and further characters in the
12779 file will be ignored.
12780
12781 @item pattern, p
12782 Read the initial cellular automaton state, i.e. the starting row, from
12783 the specified string.
12784
12785 Each non-whitespace character in the string is considered an alive
12786 cell, a newline will terminate the row, and further characters in the
12787 string will be ignored.
12788
12789 @item rate, r
12790 Set the video rate, that is the number of frames generated per second.
12791 Default is 25.
12792
12793 @item random_fill_ratio, ratio
12794 Set the random fill ratio for the initial cellular automaton row. It
12795 is a floating point number value ranging from 0 to 1, defaults to
12796 1/PHI.
12797
12798 This option is ignored when a file or a pattern is specified.
12799
12800 @item random_seed, seed
12801 Set the seed for filling randomly the initial row, must be an integer
12802 included between 0 and UINT32_MAX. If not specified, or if explicitly
12803 set to -1, the filter will try to use a good random seed on a best
12804 effort basis.
12805
12806 @item rule
12807 Set the cellular automaton rule, it is a number ranging from 0 to 255.
12808 Default value is 110.
12809
12810 @item size, s
12811 Set the size of the output video. For the syntax of this option, check the
12812 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12813
12814 If @option{filename} or @option{pattern} is specified, the size is set
12815 by default to the width of the specified initial state row, and the
12816 height is set to @var{width} * PHI.
12817
12818 If @option{size} is set, it must contain the width of the specified
12819 pattern string, and the specified pattern will be centered in the
12820 larger row.
12821
12822 If a filename or a pattern string is not specified, the size value
12823 defaults to "320x518" (used for a randomly generated initial state).
12824
12825 @item scroll
12826 If set to 1, scroll the output upward when all the rows in the output
12827 have been already filled. If set to 0, the new generated row will be
12828 written over the top row just after the bottom row is filled.
12829 Defaults to 1.
12830
12831 @item start_full, full
12832 If set to 1, completely fill the output with generated rows before
12833 outputting the first frame.
12834 This is the default behavior, for disabling set the value to 0.
12835
12836 @item stitch
12837 If set to 1, stitch the left and right row edges together.
12838 This is the default behavior, for disabling set the value to 0.
12839 @end table
12840
12841 @subsection Examples
12842
12843 @itemize
12844 @item
12845 Read the initial state from @file{pattern}, and specify an output of
12846 size 200x400.
12847 @example
12848 cellauto=f=pattern:s=200x400
12849 @end example
12850
12851 @item
12852 Generate a random initial row with a width of 200 cells, with a fill
12853 ratio of 2/3:
12854 @example
12855 cellauto=ratio=2/3:s=200x200
12856 @end example
12857
12858 @item
12859 Create a pattern generated by rule 18 starting by a single alive cell
12860 centered on an initial row with width 100:
12861 @example
12862 cellauto=p=@@:s=100x400:full=0:rule=18
12863 @end example
12864
12865 @item
12866 Specify a more elaborated initial pattern:
12867 @example
12868 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
12869 @end example
12870
12871 @end itemize
12872
12873 @section mandelbrot
12874
12875 Generate a Mandelbrot set fractal, and progressively zoom towards the
12876 point specified with @var{start_x} and @var{start_y}.
12877
12878 This source accepts the following options:
12879
12880 @table @option
12881
12882 @item end_pts
12883 Set the terminal pts value. Default value is 400.
12884
12885 @item end_scale
12886 Set the terminal scale value.
12887 Must be a floating point value. Default value is 0.3.
12888
12889 @item inner
12890 Set the inner coloring mode, that is the algorithm used to draw the
12891 Mandelbrot fractal internal region.
12892
12893 It shall assume one of the following values:
12894 @table @option
12895 @item black
12896 Set black mode.
12897 @item convergence
12898 Show time until convergence.
12899 @item mincol
12900 Set color based on point closest to the origin of the iterations.
12901 @item period
12902 Set period mode.
12903 @end table
12904
12905 Default value is @var{mincol}.
12906
12907 @item bailout
12908 Set the bailout value. Default value is 10.0.
12909
12910 @item maxiter
12911 Set the maximum of iterations performed by the rendering
12912 algorithm. Default value is 7189.
12913
12914 @item outer
12915 Set outer coloring mode.
12916 It shall assume one of following values:
12917 @table @option
12918 @item iteration_count
12919 Set iteration cound mode.
12920 @item normalized_iteration_count
12921 set normalized iteration count mode.
12922 @end table
12923 Default value is @var{normalized_iteration_count}.
12924
12925 @item rate, r
12926 Set frame rate, expressed as number of frames per second. Default
12927 value is "25".
12928
12929 @item size, s
12930 Set frame size. For the syntax of this option, check the "Video
12931 size" section in the ffmpeg-utils manual. Default value is "640x480".
12932
12933 @item start_scale
12934 Set the initial scale value. Default value is 3.0.
12935
12936 @item start_x
12937 Set the initial x position. Must be a floating point value between
12938 -100 and 100. Default value is -0.743643887037158704752191506114774.
12939
12940 @item start_y
12941 Set the initial y position. Must be a floating point value between
12942 -100 and 100. Default value is -0.131825904205311970493132056385139.
12943 @end table
12944
12945 @section mptestsrc
12946
12947 Generate various test patterns, as generated by the MPlayer test filter.
12948
12949 The size of the generated video is fixed, and is 256x256.
12950 This source is useful in particular for testing encoding features.
12951
12952 This source accepts the following options:
12953
12954 @table @option
12955
12956 @item rate, r
12957 Specify the frame rate of the sourced video, as the number of frames
12958 generated per second. It has to be a string in the format
12959 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12960 number or a valid video frame rate abbreviation. The default value is
12961 "25".
12962
12963 @item duration, d
12964 Set the duration of the sourced video. See
12965 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12966 for the accepted syntax.
12967
12968 If not specified, or the expressed duration is negative, the video is
12969 supposed to be generated forever.
12970
12971 @item test, t
12972
12973 Set the number or the name of the test to perform. Supported tests are:
12974 @table @option
12975 @item dc_luma
12976 @item dc_chroma
12977 @item freq_luma
12978 @item freq_chroma
12979 @item amp_luma
12980 @item amp_chroma
12981 @item cbp
12982 @item mv
12983 @item ring1
12984 @item ring2
12985 @item all
12986
12987 @end table
12988
12989 Default value is "all", which will cycle through the list of all tests.
12990 @end table
12991
12992 Some examples:
12993 @example
12994 mptestsrc=t=dc_luma
12995 @end example
12996
12997 will generate a "dc_luma" test pattern.
12998
12999 @section frei0r_src
13000
13001 Provide a frei0r source.
13002
13003 To enable compilation of this filter you need to install the frei0r
13004 header and configure FFmpeg with @code{--enable-frei0r}.
13005
13006 This source accepts the following parameters:
13007
13008 @table @option
13009
13010 @item size
13011 The size of the video to generate. For the syntax of this option, check the
13012 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13013
13014 @item framerate
13015 The framerate of the generated video. It may be a string of the form
13016 @var{num}/@var{den} or a frame rate abbreviation.
13017
13018 @item filter_name
13019 The name to the frei0r source to load. For more information regarding frei0r and
13020 how to set the parameters, read the @ref{frei0r} section in the video filters
13021 documentation.
13022
13023 @item filter_params
13024 A '|'-separated list of parameters to pass to the frei0r source.
13025
13026 @end table
13027
13028 For example, to generate a frei0r partik0l source with size 200x200
13029 and frame rate 10 which is overlaid on the overlay filter main input:
13030 @example
13031 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
13032 @end example
13033
13034 @section life
13035
13036 Generate a life pattern.
13037
13038 This source is based on a generalization of John Conway's life game.
13039
13040 The sourced input represents a life grid, each pixel represents a cell
13041 which can be in one of two possible states, alive or dead. Every cell
13042 interacts with its eight neighbours, which are the cells that are
13043 horizontally, vertically, or diagonally adjacent.
13044
13045 At each interaction the grid evolves according to the adopted rule,
13046 which specifies the number of neighbor alive cells which will make a
13047 cell stay alive or born. The @option{rule} option allows one to specify
13048 the rule to adopt.
13049
13050 This source accepts the following options:
13051
13052 @table @option
13053 @item filename, f
13054 Set the file from which to read the initial grid state. In the file,
13055 each non-whitespace character is considered an alive cell, and newline
13056 is used to delimit the end of each row.
13057
13058 If this option is not specified, the initial grid is generated
13059 randomly.
13060
13061 @item rate, r
13062 Set the video rate, that is the number of frames generated per second.
13063 Default is 25.
13064
13065 @item random_fill_ratio, ratio
13066 Set the random fill ratio for the initial random grid. It is a
13067 floating point number value ranging from 0 to 1, defaults to 1/PHI.
13068 It is ignored when a file is specified.
13069
13070 @item random_seed, seed
13071 Set the seed for filling the initial random grid, must be an integer
13072 included between 0 and UINT32_MAX. If not specified, or if explicitly
13073 set to -1, the filter will try to use a good random seed on a best
13074 effort basis.
13075
13076 @item rule
13077 Set the life rule.
13078
13079 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
13080 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
13081 @var{NS} specifies the number of alive neighbor cells which make a
13082 live cell stay alive, and @var{NB} the number of alive neighbor cells
13083 which make a dead cell to become alive (i.e. to "born").
13084 "s" and "b" can be used in place of "S" and "B", respectively.
13085
13086 Alternatively a rule can be specified by an 18-bits integer. The 9
13087 high order bits are used to encode the next cell state if it is alive
13088 for each number of neighbor alive cells, the low order bits specify
13089 the rule for "borning" new cells. Higher order bits encode for an
13090 higher number of neighbor cells.
13091 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
13092 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
13093
13094 Default value is "S23/B3", which is the original Conway's game of life
13095 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
13096 cells, and will born a new cell if there are three alive cells around
13097 a dead cell.
13098
13099 @item size, s
13100 Set the size of the output video. For the syntax of this option, check the
13101 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13102
13103 If @option{filename} is specified, the size is set by default to the
13104 same size of the input file. If @option{size} is set, it must contain
13105 the size specified in the input file, and the initial grid defined in
13106 that file is centered in the larger resulting area.
13107
13108 If a filename is not specified, the size value defaults to "320x240"
13109 (used for a randomly generated initial grid).
13110
13111 @item stitch
13112 If set to 1, stitch the left and right grid edges together, and the
13113 top and bottom edges also. Defaults to 1.
13114
13115 @item mold
13116 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
13117 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
13118 value from 0 to 255.
13119
13120 @item life_color
13121 Set the color of living (or new born) cells.
13122
13123 @item death_color
13124 Set the color of dead cells. If @option{mold} is set, this is the first color
13125 used to represent a dead cell.
13126
13127 @item mold_color
13128 Set mold color, for definitely dead and moldy cells.
13129
13130 For the syntax of these 3 color options, check the "Color" section in the
13131 ffmpeg-utils manual.
13132 @end table
13133
13134 @subsection Examples
13135
13136 @itemize
13137 @item
13138 Read a grid from @file{pattern}, and center it on a grid of size
13139 300x300 pixels:
13140 @example
13141 life=f=pattern:s=300x300
13142 @end example
13143
13144 @item
13145 Generate a random grid of size 200x200, with a fill ratio of 2/3:
13146 @example
13147 life=ratio=2/3:s=200x200
13148 @end example
13149
13150 @item
13151 Specify a custom rule for evolving a randomly generated grid:
13152 @example
13153 life=rule=S14/B34
13154 @end example
13155
13156 @item
13157 Full example with slow death effect (mold) using @command{ffplay}:
13158 @example
13159 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
13160 @end example
13161 @end itemize
13162
13163 @anchor{allrgb}
13164 @anchor{allyuv}
13165 @anchor{color}
13166 @anchor{haldclutsrc}
13167 @anchor{nullsrc}
13168 @anchor{rgbtestsrc}
13169 @anchor{smptebars}
13170 @anchor{smptehdbars}
13171 @anchor{testsrc}
13172 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
13173
13174 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
13175
13176 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
13177
13178 The @code{color} source provides an uniformly colored input.
13179
13180 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
13181 @ref{haldclut} filter.
13182
13183 The @code{nullsrc} source returns unprocessed video frames. It is
13184 mainly useful to be employed in analysis / debugging tools, or as the
13185 source for filters which ignore the input data.
13186
13187 The @code{rgbtestsrc} source generates an RGB test pattern useful for
13188 detecting RGB vs BGR issues. You should see a red, green and blue
13189 stripe from top to bottom.
13190
13191 The @code{smptebars} source generates a color bars pattern, based on
13192 the SMPTE Engineering Guideline EG 1-1990.
13193
13194 The @code{smptehdbars} source generates a color bars pattern, based on
13195 the SMPTE RP 219-2002.
13196
13197 The @code{testsrc} source generates a test video pattern, showing a
13198 color pattern, a scrolling gradient and a timestamp. This is mainly
13199 intended for testing purposes.
13200
13201 The sources accept the following parameters:
13202
13203 @table @option
13204
13205 @item color, c
13206 Specify the color of the source, only available in the @code{color}
13207 source. For the syntax of this option, check the "Color" section in the
13208 ffmpeg-utils manual.
13209
13210 @item level
13211 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
13212 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
13213 pixels to be used as identity matrix for 3D lookup tables. Each component is
13214 coded on a @code{1/(N*N)} scale.
13215
13216 @item size, s
13217 Specify the size of the sourced video. For the syntax of this option, check the
13218 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13219 The default value is @code{320x240}.
13220
13221 This option is not available with the @code{haldclutsrc} filter.
13222
13223 @item rate, r
13224 Specify the frame rate of the sourced video, as the number of frames
13225 generated per second. It has to be a string in the format
13226 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
13227 number or a valid video frame rate abbreviation. The default value is
13228 "25".
13229
13230 @item sar
13231 Set the sample aspect ratio of the sourced video.
13232
13233 @item duration, d
13234 Set the duration of the sourced video. See
13235 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13236 for the accepted syntax.
13237
13238 If not specified, or the expressed duration is negative, the video is
13239 supposed to be generated forever.
13240
13241 @item decimals, n
13242 Set the number of decimals to show in the timestamp, only available in the
13243 @code{testsrc} source.
13244
13245 The displayed timestamp value will correspond to the original
13246 timestamp value multiplied by the power of 10 of the specified
13247 value. Default value is 0.
13248 @end table
13249
13250 For example the following:
13251 @example
13252 testsrc=duration=5.3:size=qcif:rate=10
13253 @end example
13254
13255 will generate a video with a duration of 5.3 seconds, with size
13256 176x144 and a frame rate of 10 frames per second.
13257
13258 The following graph description will generate a red source
13259 with an opacity of 0.2, with size "qcif" and a frame rate of 10
13260 frames per second.
13261 @example
13262 color=c=red@@0.2:s=qcif:r=10
13263 @end example
13264
13265 If the input content is to be ignored, @code{nullsrc} can be used. The
13266 following command generates noise in the luminance plane by employing
13267 the @code{geq} filter:
13268 @example
13269 nullsrc=s=256x256, geq=random(1)*255:128:128
13270 @end example
13271
13272 @subsection Commands
13273
13274 The @code{color} source supports the following commands:
13275
13276 @table @option
13277 @item c, color
13278 Set the color of the created image. Accepts the same syntax of the
13279 corresponding @option{color} option.
13280 @end table
13281
13282 @c man end VIDEO SOURCES
13283
13284 @chapter Video Sinks
13285 @c man begin VIDEO SINKS
13286
13287 Below is a description of the currently available video sinks.
13288
13289 @section buffersink
13290
13291 Buffer video frames, and make them available to the end of the filter
13292 graph.
13293
13294 This sink is mainly intended for programmatic use, in particular
13295 through the interface defined in @file{libavfilter/buffersink.h}
13296 or the options system.
13297
13298 It accepts a pointer to an AVBufferSinkContext structure, which
13299 defines the incoming buffers' formats, to be passed as the opaque
13300 parameter to @code{avfilter_init_filter} for initialization.
13301
13302 @section nullsink
13303
13304 Null video sink: do absolutely nothing with the input video. It is
13305 mainly useful as a template and for use in analysis / debugging
13306 tools.
13307
13308 @c man end VIDEO SINKS
13309
13310 @chapter Multimedia Filters
13311 @c man begin MULTIMEDIA FILTERS
13312
13313 Below is a description of the currently available multimedia filters.
13314
13315 @section ahistogram
13316
13317 Convert input audio to a video output, displaying the volume histogram.
13318
13319 The filter accepts the following options:
13320
13321 @table @option
13322 @item dmode
13323 Specify how histogram is calculated.
13324
13325 It accepts the following values:
13326 @table @samp
13327 @item single
13328 Use single histogram for all channels.
13329 @item separate
13330 Use separate histogram for each channel.
13331 @end table
13332 Default is @code{single}.
13333
13334 @item rate, r
13335 Set frame rate, expressed as number of frames per second. Default
13336 value is "25".
13337
13338 @item size, s
13339 Specify the video size for the output. For the syntax of this option, check the
13340 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13341 Default value is @code{hd720}.
13342
13343 @item scale
13344 Set display scale.
13345
13346 It accepts the following values:
13347 @table @samp
13348 @item log
13349 logarithmic
13350 @item sqrt
13351 square root
13352 @item cbrt
13353 cubic root
13354 @item lin
13355 linear
13356 @item rlog
13357 reverse logarithmic
13358 @end table
13359 Default is @code{log}.
13360
13361 @item ascale
13362 Set amplitude scale.
13363
13364 It accepts the following values:
13365 @table @samp
13366 @item log
13367 logarithmic
13368 @item lin
13369 linear
13370 @end table
13371 Default is @code{log}.
13372
13373 @item acount
13374 Set how much frames to accumulate in histogram.
13375 Defauls is 1. Setting this to -1 accumulates all frames.
13376
13377 @item rheight
13378 Set histogram ratio of window height.
13379
13380 @item slide
13381 Set sonogram sliding.
13382
13383 It accepts the following values:
13384 @table @samp
13385 @item replace
13386 replace old rows with new ones.
13387 @item scroll
13388 scroll from top to bottom.
13389 @end table
13390 Default is @code{replace}.
13391 @end table
13392
13393 @section aphasemeter
13394
13395 Convert input audio to a video output, displaying the audio phase.
13396
13397 The filter accepts the following options:
13398
13399 @table @option
13400 @item rate, r
13401 Set the output frame rate. Default value is @code{25}.
13402
13403 @item size, s
13404 Set the video size for the output. For the syntax of this option, check the
13405 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13406 Default value is @code{800x400}.
13407
13408 @item rc
13409 @item gc
13410 @item bc
13411 Specify the red, green, blue contrast. Default values are @code{2},
13412 @code{7} and @code{1}.
13413 Allowed range is @code{[0, 255]}.
13414
13415 @item mpc
13416 Set color which will be used for drawing median phase. If color is
13417 @code{none} which is default, no median phase value will be drawn.
13418 @end table
13419
13420 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
13421 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
13422 The @code{-1} means left and right channels are completely out of phase and
13423 @code{1} means channels are in phase.
13424
13425 @section avectorscope
13426
13427 Convert input audio to a video output, representing the audio vector
13428 scope.
13429
13430 The filter is used to measure the difference between channels of stereo
13431 audio stream. A monoaural signal, consisting of identical left and right
13432 signal, results in straight vertical line. Any stereo separation is visible
13433 as a deviation from this line, creating a Lissajous figure.
13434 If the straight (or deviation from it) but horizontal line appears this
13435 indicates that the left and right channels are out of phase.
13436
13437 The filter accepts the following options:
13438
13439 @table @option
13440 @item mode, m
13441 Set the vectorscope mode.
13442
13443 Available values are:
13444 @table @samp
13445 @item lissajous
13446 Lissajous rotated by 45 degrees.
13447
13448 @item lissajous_xy
13449 Same as above but not rotated.
13450
13451 @item polar
13452 Shape resembling half of circle.
13453 @end table
13454
13455 Default value is @samp{lissajous}.
13456
13457 @item size, s
13458 Set the video size for the output. For the syntax of this option, check the
13459 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13460 Default value is @code{400x400}.
13461
13462 @item rate, r
13463 Set the output frame rate. Default value is @code{25}.
13464
13465 @item rc
13466 @item gc
13467 @item bc
13468 @item ac
13469 Specify the red, green, blue and alpha contrast. Default values are @code{40},
13470 @code{160}, @code{80} and @code{255}.
13471 Allowed range is @code{[0, 255]}.
13472
13473 @item rf
13474 @item gf
13475 @item bf
13476 @item af
13477 Specify the red, green, blue and alpha fade. Default values are @code{15},
13478 @code{10}, @code{5} and @code{5}.
13479 Allowed range is @code{[0, 255]}.
13480
13481 @item zoom
13482 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
13483
13484 @item draw
13485 Set the vectorscope drawing mode.
13486
13487 Available values are:
13488 @table @samp
13489 @item dot
13490 Draw dot for each sample.
13491
13492 @item line
13493 Draw line between previous and current sample.
13494 @end table
13495
13496 Default value is @samp{dot}.
13497 @end table
13498
13499 @subsection Examples
13500
13501 @itemize
13502 @item
13503 Complete example using @command{ffplay}:
13504 @example
13505 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
13506              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
13507 @end example
13508 @end itemize
13509
13510 @section concat
13511
13512 Concatenate audio and video streams, joining them together one after the
13513 other.
13514
13515 The filter works on segments of synchronized video and audio streams. All
13516 segments must have the same number of streams of each type, and that will
13517 also be the number of streams at output.
13518
13519 The filter accepts the following options:
13520
13521 @table @option
13522
13523 @item n
13524 Set the number of segments. Default is 2.
13525
13526 @item v
13527 Set the number of output video streams, that is also the number of video
13528 streams in each segment. Default is 1.
13529
13530 @item a
13531 Set the number of output audio streams, that is also the number of audio
13532 streams in each segment. Default is 0.
13533
13534 @item unsafe
13535 Activate unsafe mode: do not fail if segments have a different format.
13536
13537 @end table
13538
13539 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
13540 @var{a} audio outputs.
13541
13542 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
13543 segment, in the same order as the outputs, then the inputs for the second
13544 segment, etc.
13545
13546 Related streams do not always have exactly the same duration, for various
13547 reasons including codec frame size or sloppy authoring. For that reason,
13548 related synchronized streams (e.g. a video and its audio track) should be
13549 concatenated at once. The concat filter will use the duration of the longest
13550 stream in each segment (except the last one), and if necessary pad shorter
13551 audio streams with silence.
13552
13553 For this filter to work correctly, all segments must start at timestamp 0.
13554
13555 All corresponding streams must have the same parameters in all segments; the
13556 filtering system will automatically select a common pixel format for video
13557 streams, and a common sample format, sample rate and channel layout for
13558 audio streams, but other settings, such as resolution, must be converted
13559 explicitly by the user.
13560
13561 Different frame rates are acceptable but will result in variable frame rate
13562 at output; be sure to configure the output file to handle it.
13563
13564 @subsection Examples
13565
13566 @itemize
13567 @item
13568 Concatenate an opening, an episode and an ending, all in bilingual version
13569 (video in stream 0, audio in streams 1 and 2):
13570 @example
13571 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
13572   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
13573    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
13574   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
13575 @end example
13576
13577 @item
13578 Concatenate two parts, handling audio and video separately, using the
13579 (a)movie sources, and adjusting the resolution:
13580 @example
13581 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
13582 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
13583 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
13584 @end example
13585 Note that a desync will happen at the stitch if the audio and video streams
13586 do not have exactly the same duration in the first file.
13587
13588 @end itemize
13589
13590 @anchor{ebur128}
13591 @section ebur128
13592
13593 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
13594 it unchanged. By default, it logs a message at a frequency of 10Hz with the
13595 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
13596 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
13597
13598 The filter also has a video output (see the @var{video} option) with a real
13599 time graph to observe the loudness evolution. The graphic contains the logged
13600 message mentioned above, so it is not printed anymore when this option is set,
13601 unless the verbose logging is set. The main graphing area contains the
13602 short-term loudness (3 seconds of analysis), and the gauge on the right is for
13603 the momentary loudness (400 milliseconds).
13604
13605 More information about the Loudness Recommendation EBU R128 on
13606 @url{http://tech.ebu.ch/loudness}.
13607
13608 The filter accepts the following options:
13609
13610 @table @option
13611
13612 @item video
13613 Activate the video output. The audio stream is passed unchanged whether this
13614 option is set or no. The video stream will be the first output stream if
13615 activated. Default is @code{0}.
13616
13617 @item size
13618 Set the video size. This option is for video only. For the syntax of this
13619 option, check the
13620 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13621 Default and minimum resolution is @code{640x480}.
13622
13623 @item meter
13624 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
13625 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
13626 other integer value between this range is allowed.
13627
13628 @item metadata
13629 Set metadata injection. If set to @code{1}, the audio input will be segmented
13630 into 100ms output frames, each of them containing various loudness information
13631 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
13632
13633 Default is @code{0}.
13634
13635 @item framelog
13636 Force the frame logging level.
13637
13638 Available values are:
13639 @table @samp
13640 @item info
13641 information logging level
13642 @item verbose
13643 verbose logging level
13644 @end table
13645
13646 By default, the logging level is set to @var{info}. If the @option{video} or
13647 the @option{metadata} options are set, it switches to @var{verbose}.
13648
13649 @item peak
13650 Set peak mode(s).
13651
13652 Available modes can be cumulated (the option is a @code{flag} type). Possible
13653 values are:
13654 @table @samp
13655 @item none
13656 Disable any peak mode (default).
13657 @item sample
13658 Enable sample-peak mode.
13659
13660 Simple peak mode looking for the higher sample value. It logs a message
13661 for sample-peak (identified by @code{SPK}).
13662 @item true
13663 Enable true-peak mode.
13664
13665 If enabled, the peak lookup is done on an over-sampled version of the input
13666 stream for better peak accuracy. It logs a message for true-peak.
13667 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
13668 This mode requires a build with @code{libswresample}.
13669 @end table
13670
13671 @item dualmono
13672 Treat mono input files as "dual mono". If a mono file is intended for playback
13673 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
13674 If set to @code{true}, this option will compensate for this effect.
13675 Multi-channel input files are not affected by this option.
13676
13677 @item panlaw
13678 Set a specific pan law to be used for the measurement of dual mono files.
13679 This parameter is optional, and has a default value of -3.01dB.
13680 @end table
13681
13682 @subsection Examples
13683
13684 @itemize
13685 @item
13686 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
13687 @example
13688 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
13689 @end example
13690
13691 @item
13692 Run an analysis with @command{ffmpeg}:
13693 @example
13694 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
13695 @end example
13696 @end itemize
13697
13698 @section interleave, ainterleave
13699
13700 Temporally interleave frames from several inputs.
13701
13702 @code{interleave} works with video inputs, @code{ainterleave} with audio.
13703
13704 These filters read frames from several inputs and send the oldest
13705 queued frame to the output.
13706
13707 Input streams must have a well defined, monotonically increasing frame
13708 timestamp values.
13709
13710 In order to submit one frame to output, these filters need to enqueue
13711 at least one frame for each input, so they cannot work in case one
13712 input is not yet terminated and will not receive incoming frames.
13713
13714 For example consider the case when one input is a @code{select} filter
13715 which always drop input frames. The @code{interleave} filter will keep
13716 reading from that input, but it will never be able to send new frames
13717 to output until the input will send an end-of-stream signal.
13718
13719 Also, depending on inputs synchronization, the filters will drop
13720 frames in case one input receives more frames than the other ones, and
13721 the queue is already filled.
13722
13723 These filters accept the following options:
13724
13725 @table @option
13726 @item nb_inputs, n
13727 Set the number of different inputs, it is 2 by default.
13728 @end table
13729
13730 @subsection Examples
13731
13732 @itemize
13733 @item
13734 Interleave frames belonging to different streams using @command{ffmpeg}:
13735 @example
13736 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
13737 @end example
13738
13739 @item
13740 Add flickering blur effect:
13741 @example
13742 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
13743 @end example
13744 @end itemize
13745
13746 @section perms, aperms
13747
13748 Set read/write permissions for the output frames.
13749
13750 These filters are mainly aimed at developers to test direct path in the
13751 following filter in the filtergraph.
13752
13753 The filters accept the following options:
13754
13755 @table @option
13756 @item mode
13757 Select the permissions mode.
13758
13759 It accepts the following values:
13760 @table @samp
13761 @item none
13762 Do nothing. This is the default.
13763 @item ro
13764 Set all the output frames read-only.
13765 @item rw
13766 Set all the output frames directly writable.
13767 @item toggle
13768 Make the frame read-only if writable, and writable if read-only.
13769 @item random
13770 Set each output frame read-only or writable randomly.
13771 @end table
13772
13773 @item seed
13774 Set the seed for the @var{random} mode, must be an integer included between
13775 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
13776 @code{-1}, the filter will try to use a good random seed on a best effort
13777 basis.
13778 @end table
13779
13780 Note: in case of auto-inserted filter between the permission filter and the
13781 following one, the permission might not be received as expected in that
13782 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
13783 perms/aperms filter can avoid this problem.
13784
13785 @section realtime, arealtime
13786
13787 Slow down filtering to match real time approximatively.
13788
13789 These filters will pause the filtering for a variable amount of time to
13790 match the output rate with the input timestamps.
13791 They are similar to the @option{re} option to @code{ffmpeg}.
13792
13793 They accept the following options:
13794
13795 @table @option
13796 @item limit
13797 Time limit for the pauses. Any pause longer than that will be considered
13798 a timestamp discontinuity and reset the timer. Default is 2 seconds.
13799 @end table
13800
13801 @section select, aselect
13802
13803 Select frames to pass in output.
13804
13805 This filter accepts the following options:
13806
13807 @table @option
13808
13809 @item expr, e
13810 Set expression, which is evaluated for each input frame.
13811
13812 If the expression is evaluated to zero, the frame is discarded.
13813
13814 If the evaluation result is negative or NaN, the frame is sent to the
13815 first output; otherwise it is sent to the output with index
13816 @code{ceil(val)-1}, assuming that the input index starts from 0.
13817
13818 For example a value of @code{1.2} corresponds to the output with index
13819 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
13820
13821 @item outputs, n
13822 Set the number of outputs. The output to which to send the selected
13823 frame is based on the result of the evaluation. Default value is 1.
13824 @end table
13825
13826 The expression can contain the following constants:
13827
13828 @table @option
13829 @item n
13830 The (sequential) number of the filtered frame, starting from 0.
13831
13832 @item selected_n
13833 The (sequential) number of the selected frame, starting from 0.
13834
13835 @item prev_selected_n
13836 The sequential number of the last selected frame. It's NAN if undefined.
13837
13838 @item TB
13839 The timebase of the input timestamps.
13840
13841 @item pts
13842 The PTS (Presentation TimeStamp) of the filtered video frame,
13843 expressed in @var{TB} units. It's NAN if undefined.
13844
13845 @item t
13846 The PTS of the filtered video frame,
13847 expressed in seconds. It's NAN if undefined.
13848
13849 @item prev_pts
13850 The PTS of the previously filtered video frame. It's NAN if undefined.
13851
13852 @item prev_selected_pts
13853 The PTS of the last previously filtered video frame. It's NAN if undefined.
13854
13855 @item prev_selected_t
13856 The PTS of the last previously selected video frame. It's NAN if undefined.
13857
13858 @item start_pts
13859 The PTS of the first video frame in the video. It's NAN if undefined.
13860
13861 @item start_t
13862 The time of the first video frame in the video. It's NAN if undefined.
13863
13864 @item pict_type @emph{(video only)}
13865 The type of the filtered frame. It can assume one of the following
13866 values:
13867 @table @option
13868 @item I
13869 @item P
13870 @item B
13871 @item S
13872 @item SI
13873 @item SP
13874 @item BI
13875 @end table
13876
13877 @item interlace_type @emph{(video only)}
13878 The frame interlace type. It can assume one of the following values:
13879 @table @option
13880 @item PROGRESSIVE
13881 The frame is progressive (not interlaced).
13882 @item TOPFIRST
13883 The frame is top-field-first.
13884 @item BOTTOMFIRST
13885 The frame is bottom-field-first.
13886 @end table
13887
13888 @item consumed_sample_n @emph{(audio only)}
13889 the number of selected samples before the current frame
13890
13891 @item samples_n @emph{(audio only)}
13892 the number of samples in the current frame
13893
13894 @item sample_rate @emph{(audio only)}
13895 the input sample rate
13896
13897 @item key
13898 This is 1 if the filtered frame is a key-frame, 0 otherwise.
13899
13900 @item pos
13901 the position in the file of the filtered frame, -1 if the information
13902 is not available (e.g. for synthetic video)
13903
13904 @item scene @emph{(video only)}
13905 value between 0 and 1 to indicate a new scene; a low value reflects a low
13906 probability for the current frame to introduce a new scene, while a higher
13907 value means the current frame is more likely to be one (see the example below)
13908
13909 @item concatdec_select
13910 The concat demuxer can select only part of a concat input file by setting an
13911 inpoint and an outpoint, but the output packets may not be entirely contained
13912 in the selected interval. By using this variable, it is possible to skip frames
13913 generated by the concat demuxer which are not exactly contained in the selected
13914 interval.
13915
13916 This works by comparing the frame pts against the @var{lavf.concat.start_time}
13917 and the @var{lavf.concat.duration} packet metadata values which are also
13918 present in the decoded frames.
13919
13920 The @var{concatdec_select} variable is -1 if the frame pts is at least
13921 start_time and either the duration metadata is missing or the frame pts is less
13922 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
13923 missing.
13924
13925 That basically means that an input frame is selected if its pts is within the
13926 interval set by the concat demuxer.
13927
13928 @end table
13929
13930 The default value of the select expression is "1".
13931
13932 @subsection Examples
13933
13934 @itemize
13935 @item
13936 Select all frames in input:
13937 @example
13938 select
13939 @end example
13940
13941 The example above is the same as:
13942 @example
13943 select=1
13944 @end example
13945
13946 @item
13947 Skip all frames:
13948 @example
13949 select=0
13950 @end example
13951
13952 @item
13953 Select only I-frames:
13954 @example
13955 select='eq(pict_type\,I)'
13956 @end example
13957
13958 @item
13959 Select one frame every 100:
13960 @example
13961 select='not(mod(n\,100))'
13962 @end example
13963
13964 @item
13965 Select only frames contained in the 10-20 time interval:
13966 @example
13967 select=between(t\,10\,20)
13968 @end example
13969
13970 @item
13971 Select only I frames contained in the 10-20 time interval:
13972 @example
13973 select=between(t\,10\,20)*eq(pict_type\,I)
13974 @end example
13975
13976 @item
13977 Select frames with a minimum distance of 10 seconds:
13978 @example
13979 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
13980 @end example
13981
13982 @item
13983 Use aselect to select only audio frames with samples number > 100:
13984 @example
13985 aselect='gt(samples_n\,100)'
13986 @end example
13987
13988 @item
13989 Create a mosaic of the first scenes:
13990 @example
13991 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
13992 @end example
13993
13994 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
13995 choice.
13996
13997 @item
13998 Send even and odd frames to separate outputs, and compose them:
13999 @example
14000 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
14001 @end example
14002
14003 @item
14004 Select useful frames from an ffconcat file which is using inpoints and
14005 outpoints but where the source files are not intra frame only.
14006 @example
14007 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
14008 @end example
14009 @end itemize
14010
14011 @section sendcmd, asendcmd
14012
14013 Send commands to filters in the filtergraph.
14014
14015 These filters read commands to be sent to other filters in the
14016 filtergraph.
14017
14018 @code{sendcmd} must be inserted between two video filters,
14019 @code{asendcmd} must be inserted between two audio filters, but apart
14020 from that they act the same way.
14021
14022 The specification of commands can be provided in the filter arguments
14023 with the @var{commands} option, or in a file specified by the
14024 @var{filename} option.
14025
14026 These filters accept the following options:
14027 @table @option
14028 @item commands, c
14029 Set the commands to be read and sent to the other filters.
14030 @item filename, f
14031 Set the filename of the commands to be read and sent to the other
14032 filters.
14033 @end table
14034
14035 @subsection Commands syntax
14036
14037 A commands description consists of a sequence of interval
14038 specifications, comprising a list of commands to be executed when a
14039 particular event related to that interval occurs. The occurring event
14040 is typically the current frame time entering or leaving a given time
14041 interval.
14042
14043 An interval is specified by the following syntax:
14044 @example
14045 @var{START}[-@var{END}] @var{COMMANDS};
14046 @end example
14047
14048 The time interval is specified by the @var{START} and @var{END} times.
14049 @var{END} is optional and defaults to the maximum time.
14050
14051 The current frame time is considered within the specified interval if
14052 it is included in the interval [@var{START}, @var{END}), that is when
14053 the time is greater or equal to @var{START} and is lesser than
14054 @var{END}.
14055
14056 @var{COMMANDS} consists of a sequence of one or more command
14057 specifications, separated by ",", relating to that interval.  The
14058 syntax of a command specification is given by:
14059 @example
14060 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
14061 @end example
14062
14063 @var{FLAGS} is optional and specifies the type of events relating to
14064 the time interval which enable sending the specified command, and must
14065 be a non-null sequence of identifier flags separated by "+" or "|" and
14066 enclosed between "[" and "]".
14067
14068 The following flags are recognized:
14069 @table @option
14070 @item enter
14071 The command is sent when the current frame timestamp enters the
14072 specified interval. In other words, the command is sent when the
14073 previous frame timestamp was not in the given interval, and the
14074 current is.
14075
14076 @item leave
14077 The command is sent when the current frame timestamp leaves the
14078 specified interval. In other words, the command is sent when the
14079 previous frame timestamp was in the given interval, and the
14080 current is not.
14081 @end table
14082
14083 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
14084 assumed.
14085
14086 @var{TARGET} specifies the target of the command, usually the name of
14087 the filter class or a specific filter instance name.
14088
14089 @var{COMMAND} specifies the name of the command for the target filter.
14090
14091 @var{ARG} is optional and specifies the optional list of argument for
14092 the given @var{COMMAND}.
14093
14094 Between one interval specification and another, whitespaces, or
14095 sequences of characters starting with @code{#} until the end of line,
14096 are ignored and can be used to annotate comments.
14097
14098 A simplified BNF description of the commands specification syntax
14099 follows:
14100 @example
14101 @var{COMMAND_FLAG}  ::= "enter" | "leave"
14102 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
14103 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
14104 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
14105 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
14106 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
14107 @end example
14108
14109 @subsection Examples
14110
14111 @itemize
14112 @item
14113 Specify audio tempo change at second 4:
14114 @example
14115 asendcmd=c='4.0 atempo tempo 1.5',atempo
14116 @end example
14117
14118 @item
14119 Specify a list of drawtext and hue commands in a file.
14120 @example
14121 # show text in the interval 5-10
14122 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
14123          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
14124
14125 # desaturate the image in the interval 15-20
14126 15.0-20.0 [enter] hue s 0,
14127           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
14128           [leave] hue s 1,
14129           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
14130
14131 # apply an exponential saturation fade-out effect, starting from time 25
14132 25 [enter] hue s exp(25-t)
14133 @end example
14134
14135 A filtergraph allowing to read and process the above command list
14136 stored in a file @file{test.cmd}, can be specified with:
14137 @example
14138 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
14139 @end example
14140 @end itemize
14141
14142 @anchor{setpts}
14143 @section setpts, asetpts
14144
14145 Change the PTS (presentation timestamp) of the input frames.
14146
14147 @code{setpts} works on video frames, @code{asetpts} on audio frames.
14148
14149 This filter accepts the following options:
14150
14151 @table @option
14152
14153 @item expr
14154 The expression which is evaluated for each frame to construct its timestamp.
14155
14156 @end table
14157
14158 The expression is evaluated through the eval API and can contain the following
14159 constants:
14160
14161 @table @option
14162 @item FRAME_RATE
14163 frame rate, only defined for constant frame-rate video
14164
14165 @item PTS
14166 The presentation timestamp in input
14167
14168 @item N
14169 The count of the input frame for video or the number of consumed samples,
14170 not including the current frame for audio, starting from 0.
14171
14172 @item NB_CONSUMED_SAMPLES
14173 The number of consumed samples, not including the current frame (only
14174 audio)
14175
14176 @item NB_SAMPLES, S
14177 The number of samples in the current frame (only audio)
14178
14179 @item SAMPLE_RATE, SR
14180 The audio sample rate.
14181
14182 @item STARTPTS
14183 The PTS of the first frame.
14184
14185 @item STARTT
14186 the time in seconds of the first frame
14187
14188 @item INTERLACED
14189 State whether the current frame is interlaced.
14190
14191 @item T
14192 the time in seconds of the current frame
14193
14194 @item POS
14195 original position in the file of the frame, or undefined if undefined
14196 for the current frame
14197
14198 @item PREV_INPTS
14199 The previous input PTS.
14200
14201 @item PREV_INT
14202 previous input time in seconds
14203
14204 @item PREV_OUTPTS
14205 The previous output PTS.
14206
14207 @item PREV_OUTT
14208 previous output time in seconds
14209
14210 @item RTCTIME
14211 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
14212 instead.
14213
14214 @item RTCSTART
14215 The wallclock (RTC) time at the start of the movie in microseconds.
14216
14217 @item TB
14218 The timebase of the input timestamps.
14219
14220 @end table
14221
14222 @subsection Examples
14223
14224 @itemize
14225 @item
14226 Start counting PTS from zero
14227 @example
14228 setpts=PTS-STARTPTS
14229 @end example
14230
14231 @item
14232 Apply fast motion effect:
14233 @example
14234 setpts=0.5*PTS
14235 @end example
14236
14237 @item
14238 Apply slow motion effect:
14239 @example
14240 setpts=2.0*PTS
14241 @end example
14242
14243 @item
14244 Set fixed rate of 25 frames per second:
14245 @example
14246 setpts=N/(25*TB)
14247 @end example
14248
14249 @item
14250 Set fixed rate 25 fps with some jitter:
14251 @example
14252 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
14253 @end example
14254
14255 @item
14256 Apply an offset of 10 seconds to the input PTS:
14257 @example
14258 setpts=PTS+10/TB
14259 @end example
14260
14261 @item
14262 Generate timestamps from a "live source" and rebase onto the current timebase:
14263 @example
14264 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
14265 @end example
14266
14267 @item
14268 Generate timestamps by counting samples:
14269 @example
14270 asetpts=N/SR/TB
14271 @end example
14272
14273 @end itemize
14274
14275 @section settb, asettb
14276
14277 Set the timebase to use for the output frames timestamps.
14278 It is mainly useful for testing timebase configuration.
14279
14280 It accepts the following parameters:
14281
14282 @table @option
14283
14284 @item expr, tb
14285 The expression which is evaluated into the output timebase.
14286
14287 @end table
14288
14289 The value for @option{tb} is an arithmetic expression representing a
14290 rational. The expression can contain the constants "AVTB" (the default
14291 timebase), "intb" (the input timebase) and "sr" (the sample rate,
14292 audio only). Default value is "intb".
14293
14294 @subsection Examples
14295
14296 @itemize
14297 @item
14298 Set the timebase to 1/25:
14299 @example
14300 settb=expr=1/25
14301 @end example
14302
14303 @item
14304 Set the timebase to 1/10:
14305 @example
14306 settb=expr=0.1
14307 @end example
14308
14309 @item
14310 Set the timebase to 1001/1000:
14311 @example
14312 settb=1+0.001
14313 @end example
14314
14315 @item
14316 Set the timebase to 2*intb:
14317 @example
14318 settb=2*intb
14319 @end example
14320
14321 @item
14322 Set the default timebase value:
14323 @example
14324 settb=AVTB
14325 @end example
14326 @end itemize
14327
14328 @section showcqt
14329 Convert input audio to a video output representing frequency spectrum
14330 logarithmically using Brown-Puckette constant Q transform algorithm with
14331 direct frequency domain coefficient calculation (but the transform itself
14332 is not really constant Q, instead the Q factor is actually variable/clamped),
14333 with musical tone scale, from E0 to D#10.
14334
14335 The filter accepts the following options:
14336
14337 @table @option
14338 @item size, s
14339 Specify the video size for the output. It must be even. For the syntax of this option,
14340 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14341 Default value is @code{1920x1080}.
14342
14343 @item fps, rate, r
14344 Set the output frame rate. Default value is @code{25}.
14345
14346 @item bar_h
14347 Set the bargraph height. It must be even. Default value is @code{-1} which
14348 computes the bargraph height automatically.
14349
14350 @item axis_h
14351 Set the axis height. It must be even. Default value is @code{-1} which computes
14352 the axis height automatically.
14353
14354 @item sono_h
14355 Set the sonogram height. It must be even. Default value is @code{-1} which
14356 computes the sonogram height automatically.
14357
14358 @item fullhd
14359 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
14360 instead. Default value is @code{1}.
14361
14362 @item sono_v, volume
14363 Specify the sonogram volume expression. It can contain variables:
14364 @table @option
14365 @item bar_v
14366 the @var{bar_v} evaluated expression
14367 @item frequency, freq, f
14368 the frequency where it is evaluated
14369 @item timeclamp, tc
14370 the value of @var{timeclamp} option
14371 @end table
14372 and functions:
14373 @table @option
14374 @item a_weighting(f)
14375 A-weighting of equal loudness
14376 @item b_weighting(f)
14377 B-weighting of equal loudness
14378 @item c_weighting(f)
14379 C-weighting of equal loudness.
14380 @end table
14381 Default value is @code{16}.
14382
14383 @item bar_v, volume2
14384 Specify the bargraph volume expression. It can contain variables:
14385 @table @option
14386 @item sono_v
14387 the @var{sono_v} evaluated expression
14388 @item frequency, freq, f
14389 the frequency where it is evaluated
14390 @item timeclamp, tc
14391 the value of @var{timeclamp} option
14392 @end table
14393 and functions:
14394 @table @option
14395 @item a_weighting(f)
14396 A-weighting of equal loudness
14397 @item b_weighting(f)
14398 B-weighting of equal loudness
14399 @item c_weighting(f)
14400 C-weighting of equal loudness.
14401 @end table
14402 Default value is @code{sono_v}.
14403
14404 @item sono_g, gamma
14405 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
14406 higher gamma makes the spectrum having more range. Default value is @code{3}.
14407 Acceptable range is @code{[1, 7]}.
14408
14409 @item bar_g, gamma2
14410 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
14411 @code{[1, 7]}.
14412
14413 @item timeclamp, tc
14414 Specify the transform timeclamp. At low frequency, there is trade-off between
14415 accuracy in time domain and frequency domain. If timeclamp is lower,
14416 event in time domain is represented more accurately (such as fast bass drum),
14417 otherwise event in frequency domain is represented more accurately
14418 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
14419
14420 @item basefreq
14421 Specify the transform base frequency. Default value is @code{20.01523126408007475},
14422 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
14423
14424 @item endfreq
14425 Specify the transform end frequency. Default value is @code{20495.59681441799654},
14426 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
14427
14428 @item coeffclamp
14429 This option is deprecated and ignored.
14430
14431 @item tlength
14432 Specify the transform length in time domain. Use this option to control accuracy
14433 trade-off between time domain and frequency domain at every frequency sample.
14434 It can contain variables:
14435 @table @option
14436 @item frequency, freq, f
14437 the frequency where it is evaluated
14438 @item timeclamp, tc
14439 the value of @var{timeclamp} option.
14440 @end table
14441 Default value is @code{384*tc/(384+tc*f)}.
14442
14443 @item count
14444 Specify the transform count for every video frame. Default value is @code{6}.
14445 Acceptable range is @code{[1, 30]}.
14446
14447 @item fcount
14448 Specify the transform count for every single pixel. Default value is @code{0},
14449 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
14450
14451 @item fontfile
14452 Specify font file for use with freetype to draw the axis. If not specified,
14453 use embedded font. Note that drawing with font file or embedded font is not
14454 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
14455 option instead.
14456
14457 @item fontcolor
14458 Specify font color expression. This is arithmetic expression that should return
14459 integer value 0xRRGGBB. It can contain variables:
14460 @table @option
14461 @item frequency, freq, f
14462 the frequency where it is evaluated
14463 @item timeclamp, tc
14464 the value of @var{timeclamp} option
14465 @end table
14466 and functions:
14467 @table @option
14468 @item midi(f)
14469 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
14470 @item r(x), g(x), b(x)
14471 red, green, and blue value of intensity x.
14472 @end table
14473 Default value is @code{st(0, (midi(f)-59.5)/12);
14474 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
14475 r(1-ld(1)) + b(ld(1))}.
14476
14477 @item axisfile
14478 Specify image file to draw the axis. This option override @var{fontfile} and
14479 @var{fontcolor} option.
14480
14481 @item axis, text
14482 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
14483 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
14484 Default value is @code{1}.
14485
14486 @end table
14487
14488 @subsection Examples
14489
14490 @itemize
14491 @item
14492 Playing audio while showing the spectrum:
14493 @example
14494 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
14495 @end example
14496
14497 @item
14498 Same as above, but with frame rate 30 fps:
14499 @example
14500 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
14501 @end example
14502
14503 @item
14504 Playing at 1280x720:
14505 @example
14506 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
14507 @end example
14508
14509 @item
14510 Disable sonogram display:
14511 @example
14512 sono_h=0
14513 @end example
14514
14515 @item
14516 A1 and its harmonics: A1, A2, (near)E3, A3:
14517 @example
14518 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),
14519                  asplit[a][out1]; [a] showcqt [out0]'
14520 @end example
14521
14522 @item
14523 Same as above, but with more accuracy in frequency domain:
14524 @example
14525 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),
14526                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
14527 @end example
14528
14529 @item
14530 Custom volume:
14531 @example
14532 bar_v=10:sono_v=bar_v*a_weighting(f)
14533 @end example
14534
14535 @item
14536 Custom gamma, now spectrum is linear to the amplitude.
14537 @example
14538 bar_g=2:sono_g=2
14539 @end example
14540
14541 @item
14542 Custom tlength equation:
14543 @example
14544 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)))'
14545 @end example
14546
14547 @item
14548 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
14549 @example
14550 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
14551 @end example
14552
14553 @item
14554 Custom frequency range with custom axis using image file:
14555 @example
14556 axisfile=myaxis.png:basefreq=40:endfreq=10000
14557 @end example
14558 @end itemize
14559
14560 @section showfreqs
14561
14562 Convert input audio to video output representing the audio power spectrum.
14563 Audio amplitude is on Y-axis while frequency is on X-axis.
14564
14565 The filter accepts the following options:
14566
14567 @table @option
14568 @item size, s
14569 Specify size of video. For the syntax of this option, check the
14570 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14571 Default is @code{1024x512}.
14572
14573 @item mode
14574 Set display mode.
14575 This set how each frequency bin will be represented.
14576
14577 It accepts the following values:
14578 @table @samp
14579 @item line
14580 @item bar
14581 @item dot
14582 @end table
14583 Default is @code{bar}.
14584
14585 @item ascale
14586 Set amplitude scale.
14587
14588 It accepts the following values:
14589 @table @samp
14590 @item lin
14591 Linear scale.
14592
14593 @item sqrt
14594 Square root scale.
14595
14596 @item cbrt
14597 Cubic root scale.
14598
14599 @item log
14600 Logarithmic scale.
14601 @end table
14602 Default is @code{log}.
14603
14604 @item fscale
14605 Set frequency scale.
14606
14607 It accepts the following values:
14608 @table @samp
14609 @item lin
14610 Linear scale.
14611
14612 @item log
14613 Logarithmic scale.
14614
14615 @item rlog
14616 Reverse logarithmic scale.
14617 @end table
14618 Default is @code{lin}.
14619
14620 @item win_size
14621 Set window size.
14622
14623 It accepts the following values:
14624 @table @samp
14625 @item w16
14626 @item w32
14627 @item w64
14628 @item w128
14629 @item w256
14630 @item w512
14631 @item w1024
14632 @item w2048
14633 @item w4096
14634 @item w8192
14635 @item w16384
14636 @item w32768
14637 @item w65536
14638 @end table
14639 Default is @code{w2048}
14640
14641 @item win_func
14642 Set windowing function.
14643
14644 It accepts the following values:
14645 @table @samp
14646 @item rect
14647 @item bartlett
14648 @item hanning
14649 @item hamming
14650 @item blackman
14651 @item welch
14652 @item flattop
14653 @item bharris
14654 @item bnuttall
14655 @item bhann
14656 @item sine
14657 @item nuttall
14658 @item lanczos
14659 @item gauss
14660 @item tukey
14661 @end table
14662 Default is @code{hanning}.
14663
14664 @item overlap
14665 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
14666 which means optimal overlap for selected window function will be picked.
14667
14668 @item averaging
14669 Set time averaging. Setting this to 0 will display current maximal peaks.
14670 Default is @code{1}, which means time averaging is disabled.
14671
14672 @item colors
14673 Specify list of colors separated by space or by '|' which will be used to
14674 draw channel frequencies. Unrecognized or missing colors will be replaced
14675 by white color.
14676
14677 @item cmode
14678 Set channel display mode.
14679
14680 It accepts the following values:
14681 @table @samp
14682 @item combined
14683 @item separate
14684 @end table
14685 Default is @code{combined}.
14686
14687 @end table
14688
14689 @anchor{showspectrum}
14690 @section showspectrum
14691
14692 Convert input audio to a video output, representing the audio frequency
14693 spectrum.
14694
14695 The filter accepts the following options:
14696
14697 @table @option
14698 @item size, s
14699 Specify the video size for the output. For the syntax of this option, check the
14700 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14701 Default value is @code{640x512}.
14702
14703 @item slide
14704 Specify how the spectrum should slide along the window.
14705
14706 It accepts the following values:
14707 @table @samp
14708 @item replace
14709 the samples start again on the left when they reach the right
14710 @item scroll
14711 the samples scroll from right to left
14712 @item rscroll
14713 the samples scroll from left to right
14714 @item fullframe
14715 frames are only produced when the samples reach the right
14716 @end table
14717
14718 Default value is @code{replace}.
14719
14720 @item mode
14721 Specify display mode.
14722
14723 It accepts the following values:
14724 @table @samp
14725 @item combined
14726 all channels are displayed in the same row
14727 @item separate
14728 all channels are displayed in separate rows
14729 @end table
14730
14731 Default value is @samp{combined}.
14732
14733 @item color
14734 Specify display color mode.
14735
14736 It accepts the following values:
14737 @table @samp
14738 @item channel
14739 each channel is displayed in a separate color
14740 @item intensity
14741 each channel is displayed using the same color scheme
14742 @item rainbow
14743 each channel is displayed using the rainbow color scheme
14744 @item moreland
14745 each channel is displayed using the moreland color scheme
14746 @item nebulae
14747 each channel is displayed using the nebulae color scheme
14748 @item fire
14749 each channel is displayed using the fire color scheme
14750 @item fiery
14751 each channel is displayed using the fiery color scheme
14752 @item fruit
14753 each channel is displayed using the fruit color scheme
14754 @item cool
14755 each channel is displayed using the cool color scheme
14756 @end table
14757
14758 Default value is @samp{channel}.
14759
14760 @item scale
14761 Specify scale used for calculating intensity color values.
14762
14763 It accepts the following values:
14764 @table @samp
14765 @item lin
14766 linear
14767 @item sqrt
14768 square root, default
14769 @item cbrt
14770 cubic root
14771 @item 4thrt
14772 4th root
14773 @item 5thrt
14774 5th root
14775 @item log
14776 logarithmic
14777 @end table
14778
14779 Default value is @samp{sqrt}.
14780
14781 @item saturation
14782 Set saturation modifier for displayed colors. Negative values provide
14783 alternative color scheme. @code{0} is no saturation at all.
14784 Saturation must be in [-10.0, 10.0] range.
14785 Default value is @code{1}.
14786
14787 @item win_func
14788 Set window function.
14789
14790 It accepts the following values:
14791 @table @samp
14792 @item rect
14793 @item bartlett
14794 @item hann
14795 @item hanning
14796 @item hamming
14797 @item blackman
14798 @item welch
14799 @item flattop
14800 @item bharris
14801 @item bnuttall
14802 @item bhann
14803 @item sine
14804 @item nuttall
14805 @item lanczos
14806 @item gauss
14807 @item tukey
14808 @end table
14809
14810 Default value is @code{hann}.
14811
14812 @item orientation
14813 Set orientation of time vs frequency axis. Can be @code{vertical} or
14814 @code{horizontal}. Default is @code{vertical}.
14815
14816 @item overlap
14817 Set ratio of overlap window. Default value is @code{0}.
14818 When value is @code{1} overlap is set to recommended size for specific
14819 window function currently used.
14820
14821 @item gain
14822 Set scale gain for calculating intensity color values.
14823 Default value is @code{1}.
14824
14825 @item data
14826 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
14827 @end table
14828
14829 The usage is very similar to the showwaves filter; see the examples in that
14830 section.
14831
14832 @subsection Examples
14833
14834 @itemize
14835 @item
14836 Large window with logarithmic color scaling:
14837 @example
14838 showspectrum=s=1280x480:scale=log
14839 @end example
14840
14841 @item
14842 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
14843 @example
14844 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14845              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
14846 @end example
14847 @end itemize
14848
14849 @section showspectrumpic
14850
14851 Convert input audio to a single video frame, representing the audio frequency
14852 spectrum.
14853
14854 The filter accepts the following options:
14855
14856 @table @option
14857 @item size, s
14858 Specify the video size for the output. For the syntax of this option, check the
14859 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14860 Default value is @code{4096x2048}.
14861
14862 @item mode
14863 Specify display mode.
14864
14865 It accepts the following values:
14866 @table @samp
14867 @item combined
14868 all channels are displayed in the same row
14869 @item separate
14870 all channels are displayed in separate rows
14871 @end table
14872 Default value is @samp{combined}.
14873
14874 @item color
14875 Specify display color mode.
14876
14877 It accepts the following values:
14878 @table @samp
14879 @item channel
14880 each channel is displayed in a separate color
14881 @item intensity
14882 each channel is displayed using the same color scheme
14883 @item rainbow
14884 each channel is displayed using the rainbow color scheme
14885 @item moreland
14886 each channel is displayed using the moreland color scheme
14887 @item nebulae
14888 each channel is displayed using the nebulae color scheme
14889 @item fire
14890 each channel is displayed using the fire color scheme
14891 @item fiery
14892 each channel is displayed using the fiery color scheme
14893 @item fruit
14894 each channel is displayed using the fruit color scheme
14895 @item cool
14896 each channel is displayed using the cool color scheme
14897 @end table
14898 Default value is @samp{intensity}.
14899
14900 @item scale
14901 Specify scale used for calculating intensity color values.
14902
14903 It accepts the following values:
14904 @table @samp
14905 @item lin
14906 linear
14907 @item sqrt
14908 square root, default
14909 @item cbrt
14910 cubic root
14911 @item 4thrt
14912 4th root
14913 @item 5thrt
14914 5th root
14915 @item log
14916 logarithmic
14917 @end table
14918 Default value is @samp{log}.
14919
14920 @item saturation
14921 Set saturation modifier for displayed colors. Negative values provide
14922 alternative color scheme. @code{0} is no saturation at all.
14923 Saturation must be in [-10.0, 10.0] range.
14924 Default value is @code{1}.
14925
14926 @item win_func
14927 Set window function.
14928
14929 It accepts the following values:
14930 @table @samp
14931 @item rect
14932 @item bartlett
14933 @item hann
14934 @item hanning
14935 @item hamming
14936 @item blackman
14937 @item welch
14938 @item flattop
14939 @item bharris
14940 @item bnuttall
14941 @item bhann
14942 @item sine
14943 @item nuttall
14944 @item lanczos
14945 @item gauss
14946 @item tukey
14947 @end table
14948 Default value is @code{hann}.
14949
14950 @item orientation
14951 Set orientation of time vs frequency axis. Can be @code{vertical} or
14952 @code{horizontal}. Default is @code{vertical}.
14953
14954 @item gain
14955 Set scale gain for calculating intensity color values.
14956 Default value is @code{1}.
14957
14958 @item legend
14959 Draw time and frequency axes and legends. Default is enabled.
14960 @end table
14961
14962 @subsection Examples
14963
14964 @itemize
14965 @item
14966 Extract an audio spectrogram of a whole audio track
14967 in a 1024x1024 picture using @command{ffmpeg}:
14968 @example
14969 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
14970 @end example
14971 @end itemize
14972
14973 @section showvolume
14974
14975 Convert input audio volume to a video output.
14976
14977 The filter accepts the following options:
14978
14979 @table @option
14980 @item rate, r
14981 Set video rate.
14982
14983 @item b
14984 Set border width, allowed range is [0, 5]. Default is 1.
14985
14986 @item w
14987 Set channel width, allowed range is [80, 1080]. Default is 400.
14988
14989 @item h
14990 Set channel height, allowed range is [1, 100]. Default is 20.
14991
14992 @item f
14993 Set fade, allowed range is [0.001, 1]. Default is 0.95.
14994
14995 @item c
14996 Set volume color expression.
14997
14998 The expression can use the following variables:
14999
15000 @table @option
15001 @item VOLUME
15002 Current max volume of channel in dB.
15003
15004 @item CHANNEL
15005 Current channel number, starting from 0.
15006 @end table
15007
15008 @item t
15009 If set, displays channel names. Default is enabled.
15010
15011 @item v
15012 If set, displays volume values. Default is enabled.
15013 @end table
15014
15015 @section showwaves
15016
15017 Convert input audio to a video output, representing the samples waves.
15018
15019 The filter accepts the following options:
15020
15021 @table @option
15022 @item size, s
15023 Specify the video size for the output. For the syntax of this option, check the
15024 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15025 Default value is @code{600x240}.
15026
15027 @item mode
15028 Set display mode.
15029
15030 Available values are:
15031 @table @samp
15032 @item point
15033 Draw a point for each sample.
15034
15035 @item line
15036 Draw a vertical line for each sample.
15037
15038 @item p2p
15039 Draw a point for each sample and a line between them.
15040
15041 @item cline
15042 Draw a centered vertical line for each sample.
15043 @end table
15044
15045 Default value is @code{point}.
15046
15047 @item n
15048 Set the number of samples which are printed on the same column. A
15049 larger value will decrease the frame rate. Must be a positive
15050 integer. This option can be set only if the value for @var{rate}
15051 is not explicitly specified.
15052
15053 @item rate, r
15054 Set the (approximate) output frame rate. This is done by setting the
15055 option @var{n}. Default value is "25".
15056
15057 @item split_channels
15058 Set if channels should be drawn separately or overlap. Default value is 0.
15059
15060 @end table
15061
15062 @subsection Examples
15063
15064 @itemize
15065 @item
15066 Output the input file audio and the corresponding video representation
15067 at the same time:
15068 @example
15069 amovie=a.mp3,asplit[out0],showwaves[out1]
15070 @end example
15071
15072 @item
15073 Create a synthetic signal and show it with showwaves, forcing a
15074 frame rate of 30 frames per second:
15075 @example
15076 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
15077 @end example
15078 @end itemize
15079
15080 @section showwavespic
15081
15082 Convert input audio to a single video frame, representing the samples waves.
15083
15084 The filter accepts the following options:
15085
15086 @table @option
15087 @item size, s
15088 Specify the video size for the output. For the syntax of this option, check the
15089 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15090 Default value is @code{600x240}.
15091
15092 @item split_channels
15093 Set if channels should be drawn separately or overlap. Default value is 0.
15094 @end table
15095
15096 @subsection Examples
15097
15098 @itemize
15099 @item
15100 Extract a channel split representation of the wave form of a whole audio track
15101 in a 1024x800 picture using @command{ffmpeg}:
15102 @example
15103 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
15104 @end example
15105
15106 @item
15107 Colorize the waveform with colorchannelmixer. This example will make
15108 the waveform a green color approximately RGB(66,217,150). Additional
15109 channels will be shades of this color.
15110 @example
15111 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
15112 @end example
15113 @end itemize
15114
15115 @section spectrumsynth
15116
15117 Sythesize audio from 2 input video spectrums, first input stream represents
15118 magnitude across time and second represents phase across time.
15119 The filter will transform from frequency domain as displayed in videos back
15120 to time domain as presented in audio output.
15121
15122 This filter is primarly created for reversing processed @ref{showspectrum}
15123 filter outputs, but can synthesize sound from other spectrograms too.
15124 But in such case results are going to be poor if the phase data is not
15125 available, because in such cases phase data need to be recreated, usually
15126 its just recreated from random noise.
15127 For best results use gray only output (@code{channel} color mode in
15128 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
15129 @code{lin} scale for phase video. To produce phase, for 2nd video, use
15130 @code{data} option. Inputs videos should generally use @code{fullframe}
15131 slide mode as that saves resources needed for decoding video.
15132
15133 The filter accepts the following options:
15134
15135 @table @option
15136 @item sample_rate
15137 Specify sample rate of output audio, the sample rate of audio from which
15138 spectrum was generated may differ.
15139
15140 @item channels
15141 Set number of channels represented in input video spectrums.
15142
15143 @item scale
15144 Set scale which was used when generating magnitude input spectrum.
15145 Can be @code{lin} or @code{log}. Default is @code{log}.
15146
15147 @item slide
15148 Set slide which was used when generating inputs spectrums.
15149 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
15150 Default is @code{fullframe}.
15151
15152 @item win_func
15153 Set window function used for resynthesis.
15154
15155 @item overlap
15156 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
15157 which means optimal overlap for selected window function will be picked.
15158
15159 @item orientation
15160 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
15161 Default is @code{vertical}.
15162 @end table
15163
15164 @subsection Examples
15165
15166 @itemize
15167 @item
15168 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
15169 then resynthesize videos back to audio with spectrumsynth:
15170 @example
15171 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
15172 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
15173 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_fun=hann:overlap=0.875:slide=fullframe output.flac
15174 @end example
15175 @end itemize
15176
15177 @section split, asplit
15178
15179 Split input into several identical outputs.
15180
15181 @code{asplit} works with audio input, @code{split} with video.
15182
15183 The filter accepts a single parameter which specifies the number of outputs. If
15184 unspecified, it defaults to 2.
15185
15186 @subsection Examples
15187
15188 @itemize
15189 @item
15190 Create two separate outputs from the same input:
15191 @example
15192 [in] split [out0][out1]
15193 @end example
15194
15195 @item
15196 To create 3 or more outputs, you need to specify the number of
15197 outputs, like in:
15198 @example
15199 [in] asplit=3 [out0][out1][out2]
15200 @end example
15201
15202 @item
15203 Create two separate outputs from the same input, one cropped and
15204 one padded:
15205 @example
15206 [in] split [splitout1][splitout2];
15207 [splitout1] crop=100:100:0:0    [cropout];
15208 [splitout2] pad=200:200:100:100 [padout];
15209 @end example
15210
15211 @item
15212 Create 5 copies of the input audio with @command{ffmpeg}:
15213 @example
15214 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
15215 @end example
15216 @end itemize
15217
15218 @section zmq, azmq
15219
15220 Receive commands sent through a libzmq client, and forward them to
15221 filters in the filtergraph.
15222
15223 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
15224 must be inserted between two video filters, @code{azmq} between two
15225 audio filters.
15226
15227 To enable these filters you need to install the libzmq library and
15228 headers and configure FFmpeg with @code{--enable-libzmq}.
15229
15230 For more information about libzmq see:
15231 @url{http://www.zeromq.org/}
15232
15233 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
15234 receives messages sent through a network interface defined by the
15235 @option{bind_address} option.
15236
15237 The received message must be in the form:
15238 @example
15239 @var{TARGET} @var{COMMAND} [@var{ARG}]
15240 @end example
15241
15242 @var{TARGET} specifies the target of the command, usually the name of
15243 the filter class or a specific filter instance name.
15244
15245 @var{COMMAND} specifies the name of the command for the target filter.
15246
15247 @var{ARG} is optional and specifies the optional argument list for the
15248 given @var{COMMAND}.
15249
15250 Upon reception, the message is processed and the corresponding command
15251 is injected into the filtergraph. Depending on the result, the filter
15252 will send a reply to the client, adopting the format:
15253 @example
15254 @var{ERROR_CODE} @var{ERROR_REASON}
15255 @var{MESSAGE}
15256 @end example
15257
15258 @var{MESSAGE} is optional.
15259
15260 @subsection Examples
15261
15262 Look at @file{tools/zmqsend} for an example of a zmq client which can
15263 be used to send commands processed by these filters.
15264
15265 Consider the following filtergraph generated by @command{ffplay}
15266 @example
15267 ffplay -dumpgraph 1 -f lavfi "
15268 color=s=100x100:c=red  [l];
15269 color=s=100x100:c=blue [r];
15270 nullsrc=s=200x100, zmq [bg];
15271 [bg][l]   overlay      [bg+l];
15272 [bg+l][r] overlay=x=100 "
15273 @end example
15274
15275 To change the color of the left side of the video, the following
15276 command can be used:
15277 @example
15278 echo Parsed_color_0 c yellow | tools/zmqsend
15279 @end example
15280
15281 To change the right side:
15282 @example
15283 echo Parsed_color_1 c pink | tools/zmqsend
15284 @end example
15285
15286 @c man end MULTIMEDIA FILTERS
15287
15288 @chapter Multimedia Sources
15289 @c man begin MULTIMEDIA SOURCES
15290
15291 Below is a description of the currently available multimedia sources.
15292
15293 @section amovie
15294
15295 This is the same as @ref{movie} source, except it selects an audio
15296 stream by default.
15297
15298 @anchor{movie}
15299 @section movie
15300
15301 Read audio and/or video stream(s) from a movie container.
15302
15303 It accepts the following parameters:
15304
15305 @table @option
15306 @item filename
15307 The name of the resource to read (not necessarily a file; it can also be a
15308 device or a stream accessed through some protocol).
15309
15310 @item format_name, f
15311 Specifies the format assumed for the movie to read, and can be either
15312 the name of a container or an input device. If not specified, the
15313 format is guessed from @var{movie_name} or by probing.
15314
15315 @item seek_point, sp
15316 Specifies the seek point in seconds. The frames will be output
15317 starting from this seek point. The parameter is evaluated with
15318 @code{av_strtod}, so the numerical value may be suffixed by an IS
15319 postfix. The default value is "0".
15320
15321 @item streams, s
15322 Specifies the streams to read. Several streams can be specified,
15323 separated by "+". The source will then have as many outputs, in the
15324 same order. The syntax is explained in the ``Stream specifiers''
15325 section in the ffmpeg manual. Two special names, "dv" and "da" specify
15326 respectively the default (best suited) video and audio stream. Default
15327 is "dv", or "da" if the filter is called as "amovie".
15328
15329 @item stream_index, si
15330 Specifies the index of the video stream to read. If the value is -1,
15331 the most suitable video stream will be automatically selected. The default
15332 value is "-1". Deprecated. If the filter is called "amovie", it will select
15333 audio instead of video.
15334
15335 @item loop
15336 Specifies how many times to read the stream in sequence.
15337 If the value is less than 1, the stream will be read again and again.
15338 Default value is "1".
15339
15340 Note that when the movie is looped the source timestamps are not
15341 changed, so it will generate non monotonically increasing timestamps.
15342 @end table
15343
15344 It allows overlaying a second video on top of the main input of
15345 a filtergraph, as shown in this graph:
15346 @example
15347 input -----------> deltapts0 --> overlay --> output
15348                                     ^
15349                                     |
15350 movie --> scale--> deltapts1 -------+
15351 @end example
15352 @subsection Examples
15353
15354 @itemize
15355 @item
15356 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
15357 on top of the input labelled "in":
15358 @example
15359 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
15360 [in] setpts=PTS-STARTPTS [main];
15361 [main][over] overlay=16:16 [out]
15362 @end example
15363
15364 @item
15365 Read from a video4linux2 device, and overlay it on top of the input
15366 labelled "in":
15367 @example
15368 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
15369 [in] setpts=PTS-STARTPTS [main];
15370 [main][over] overlay=16:16 [out]
15371 @end example
15372
15373 @item
15374 Read the first video stream and the audio stream with id 0x81 from
15375 dvd.vob; the video is connected to the pad named "video" and the audio is
15376 connected to the pad named "audio":
15377 @example
15378 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
15379 @end example
15380 @end itemize
15381
15382 @c man end MULTIMEDIA SOURCES