]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '90b1b9350c0a97c4065ae9054b83e57f48a0de1f'
[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 @end itemize
6472
6473 @section field
6474
6475 Extract a single field from an interlaced image using stride
6476 arithmetic to avoid wasting CPU time. The output frames are marked as
6477 non-interlaced.
6478
6479 The filter accepts the following options:
6480
6481 @table @option
6482 @item type
6483 Specify whether to extract the top (if the value is @code{0} or
6484 @code{top}) or the bottom field (if the value is @code{1} or
6485 @code{bottom}).
6486 @end table
6487
6488 @section fieldmatch
6489
6490 Field matching filter for inverse telecine. It is meant to reconstruct the
6491 progressive frames from a telecined stream. The filter does not drop duplicated
6492 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
6493 followed by a decimation filter such as @ref{decimate} in the filtergraph.
6494
6495 The separation of the field matching and the decimation is notably motivated by
6496 the possibility of inserting a de-interlacing filter fallback between the two.
6497 If the source has mixed telecined and real interlaced content,
6498 @code{fieldmatch} will not be able to match fields for the interlaced parts.
6499 But these remaining combed frames will be marked as interlaced, and thus can be
6500 de-interlaced by a later filter such as @ref{yadif} before decimation.
6501
6502 In addition to the various configuration options, @code{fieldmatch} can take an
6503 optional second stream, activated through the @option{ppsrc} option. If
6504 enabled, the frames reconstruction will be based on the fields and frames from
6505 this second stream. This allows the first input to be pre-processed in order to
6506 help the various algorithms of the filter, while keeping the output lossless
6507 (assuming the fields are matched properly). Typically, a field-aware denoiser,
6508 or brightness/contrast adjustments can help.
6509
6510 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
6511 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
6512 which @code{fieldmatch} is based on. While the semantic and usage are very
6513 close, some behaviour and options names can differ.
6514
6515 The @ref{decimate} filter currently only works for constant frame rate input.
6516 If your input has mixed telecined (30fps) and progressive content with a lower
6517 framerate like 24fps use the following filterchain to produce the necessary cfr
6518 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
6519
6520 The filter accepts the following options:
6521
6522 @table @option
6523 @item order
6524 Specify the assumed field order of the input stream. Available values are:
6525
6526 @table @samp
6527 @item auto
6528 Auto detect parity (use FFmpeg's internal parity value).
6529 @item bff
6530 Assume bottom field first.
6531 @item tff
6532 Assume top field first.
6533 @end table
6534
6535 Note that it is sometimes recommended not to trust the parity announced by the
6536 stream.
6537
6538 Default value is @var{auto}.
6539
6540 @item mode
6541 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
6542 sense that it won't risk creating jerkiness due to duplicate frames when
6543 possible, but if there are bad edits or blended fields it will end up
6544 outputting combed frames when a good match might actually exist. On the other
6545 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
6546 but will almost always find a good frame if there is one. The other values are
6547 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
6548 jerkiness and creating duplicate frames versus finding good matches in sections
6549 with bad edits, orphaned fields, blended fields, etc.
6550
6551 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
6552
6553 Available values are:
6554
6555 @table @samp
6556 @item pc
6557 2-way matching (p/c)
6558 @item pc_n
6559 2-way matching, and trying 3rd match if still combed (p/c + n)
6560 @item pc_u
6561 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
6562 @item pc_n_ub
6563 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
6564 still combed (p/c + n + u/b)
6565 @item pcn
6566 3-way matching (p/c/n)
6567 @item pcn_ub
6568 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
6569 detected as combed (p/c/n + u/b)
6570 @end table
6571
6572 The parenthesis at the end indicate the matches that would be used for that
6573 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
6574 @var{top}).
6575
6576 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
6577 the slowest.
6578
6579 Default value is @var{pc_n}.
6580
6581 @item ppsrc
6582 Mark the main input stream as a pre-processed input, and enable the secondary
6583 input stream as the clean source to pick the fields from. See the filter
6584 introduction for more details. It is similar to the @option{clip2} feature from
6585 VFM/TFM.
6586
6587 Default value is @code{0} (disabled).
6588
6589 @item field
6590 Set the field to match from. It is recommended to set this to the same value as
6591 @option{order} unless you experience matching failures with that setting. In
6592 certain circumstances changing the field that is used to match from can have a
6593 large impact on matching performance. Available values are:
6594
6595 @table @samp
6596 @item auto
6597 Automatic (same value as @option{order}).
6598 @item bottom
6599 Match from the bottom field.
6600 @item top
6601 Match from the top field.
6602 @end table
6603
6604 Default value is @var{auto}.
6605
6606 @item mchroma
6607 Set whether or not chroma is included during the match comparisons. In most
6608 cases it is recommended to leave this enabled. You should set this to @code{0}
6609 only if your clip has bad chroma problems such as heavy rainbowing or other
6610 artifacts. Setting this to @code{0} could also be used to speed things up at
6611 the cost of some accuracy.
6612
6613 Default value is @code{1}.
6614
6615 @item y0
6616 @item y1
6617 These define an exclusion band which excludes the lines between @option{y0} and
6618 @option{y1} from being included in the field matching decision. An exclusion
6619 band can be used to ignore subtitles, a logo, or other things that may
6620 interfere with the matching. @option{y0} sets the starting scan line and
6621 @option{y1} sets the ending line; all lines in between @option{y0} and
6622 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
6623 @option{y0} and @option{y1} to the same value will disable the feature.
6624 @option{y0} and @option{y1} defaults to @code{0}.
6625
6626 @item scthresh
6627 Set the scene change detection threshold as a percentage of maximum change on
6628 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
6629 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
6630 @option{scthresh} is @code{[0.0, 100.0]}.
6631
6632 Default value is @code{12.0}.
6633
6634 @item combmatch
6635 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
6636 account the combed scores of matches when deciding what match to use as the
6637 final match. Available values are:
6638
6639 @table @samp
6640 @item none
6641 No final matching based on combed scores.
6642 @item sc
6643 Combed scores are only used when a scene change is detected.
6644 @item full
6645 Use combed scores all the time.
6646 @end table
6647
6648 Default is @var{sc}.
6649
6650 @item combdbg
6651 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
6652 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
6653 Available values are:
6654
6655 @table @samp
6656 @item none
6657 No forced calculation.
6658 @item pcn
6659 Force p/c/n calculations.
6660 @item pcnub
6661 Force p/c/n/u/b calculations.
6662 @end table
6663
6664 Default value is @var{none}.
6665
6666 @item cthresh
6667 This is the area combing threshold used for combed frame detection. This
6668 essentially controls how "strong" or "visible" combing must be to be detected.
6669 Larger values mean combing must be more visible and smaller values mean combing
6670 can be less visible or strong and still be detected. Valid settings are from
6671 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
6672 be detected as combed). This is basically a pixel difference value. A good
6673 range is @code{[8, 12]}.
6674
6675 Default value is @code{9}.
6676
6677 @item chroma
6678 Sets whether or not chroma is considered in the combed frame decision.  Only
6679 disable this if your source has chroma problems (rainbowing, etc.) that are
6680 causing problems for the combed frame detection with chroma enabled. Actually,
6681 using @option{chroma}=@var{0} is usually more reliable, except for the case
6682 where there is chroma only combing in the source.
6683
6684 Default value is @code{0}.
6685
6686 @item blockx
6687 @item blocky
6688 Respectively set the x-axis and y-axis size of the window used during combed
6689 frame detection. This has to do with the size of the area in which
6690 @option{combpel} pixels are required to be detected as combed for a frame to be
6691 declared combed. See the @option{combpel} parameter description for more info.
6692 Possible values are any number that is a power of 2 starting at 4 and going up
6693 to 512.
6694
6695 Default value is @code{16}.
6696
6697 @item combpel
6698 The number of combed pixels inside any of the @option{blocky} by
6699 @option{blockx} size blocks on the frame for the frame to be detected as
6700 combed. While @option{cthresh} controls how "visible" the combing must be, this
6701 setting controls "how much" combing there must be in any localized area (a
6702 window defined by the @option{blockx} and @option{blocky} settings) on the
6703 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
6704 which point no frames will ever be detected as combed). This setting is known
6705 as @option{MI} in TFM/VFM vocabulary.
6706
6707 Default value is @code{80}.
6708 @end table
6709
6710 @anchor{p/c/n/u/b meaning}
6711 @subsection p/c/n/u/b meaning
6712
6713 @subsubsection p/c/n
6714
6715 We assume the following telecined stream:
6716
6717 @example
6718 Top fields:     1 2 2 3 4
6719 Bottom fields:  1 2 3 4 4
6720 @end example
6721
6722 The numbers correspond to the progressive frame the fields relate to. Here, the
6723 first two frames are progressive, the 3rd and 4th are combed, and so on.
6724
6725 When @code{fieldmatch} is configured to run a matching from bottom
6726 (@option{field}=@var{bottom}) this is how this input stream get transformed:
6727
6728 @example
6729 Input stream:
6730                 T     1 2 2 3 4
6731                 B     1 2 3 4 4   <-- matching reference
6732
6733 Matches:              c c n n c
6734
6735 Output stream:
6736                 T     1 2 3 4 4
6737                 B     1 2 3 4 4
6738 @end example
6739
6740 As a result of the field matching, we can see that some frames get duplicated.
6741 To perform a complete inverse telecine, you need to rely on a decimation filter
6742 after this operation. See for instance the @ref{decimate} filter.
6743
6744 The same operation now matching from top fields (@option{field}=@var{top})
6745 looks like this:
6746
6747 @example
6748 Input stream:
6749                 T     1 2 2 3 4   <-- matching reference
6750                 B     1 2 3 4 4
6751
6752 Matches:              c c p p c
6753
6754 Output stream:
6755                 T     1 2 2 3 4
6756                 B     1 2 2 3 4
6757 @end example
6758
6759 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6760 basically, they refer to the frame and field of the opposite parity:
6761
6762 @itemize
6763 @item @var{p} matches the field of the opposite parity in the previous frame
6764 @item @var{c} matches the field of the opposite parity in the current frame
6765 @item @var{n} matches the field of the opposite parity in the next frame
6766 @end itemize
6767
6768 @subsubsection u/b
6769
6770 The @var{u} and @var{b} matching are a bit special in the sense that they match
6771 from the opposite parity flag. In the following examples, we assume that we are
6772 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6773 'x' is placed above and below each matched fields.
6774
6775 With bottom matching (@option{field}=@var{bottom}):
6776 @example
6777 Match:           c         p           n          b          u
6778
6779                  x       x               x        x          x
6780   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6781   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6782                  x         x           x        x              x
6783
6784 Output frames:
6785                  2          1          2          2          2
6786                  2          2          2          1          3
6787 @end example
6788
6789 With top matching (@option{field}=@var{top}):
6790 @example
6791 Match:           c         p           n          b          u
6792
6793                  x         x           x        x              x
6794   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6795   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6796                  x       x               x        x          x
6797
6798 Output frames:
6799                  2          2          2          1          2
6800                  2          1          3          2          2
6801 @end example
6802
6803 @subsection Examples
6804
6805 Simple IVTC of a top field first telecined stream:
6806 @example
6807 fieldmatch=order=tff:combmatch=none, decimate
6808 @end example
6809
6810 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
6811 @example
6812 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
6813 @end example
6814
6815 @section fieldorder
6816
6817 Transform the field order of the input video.
6818
6819 It accepts the following parameters:
6820
6821 @table @option
6822
6823 @item order
6824 The output field order. Valid values are @var{tff} for top field first or @var{bff}
6825 for bottom field first.
6826 @end table
6827
6828 The default value is @samp{tff}.
6829
6830 The transformation is done by shifting the picture content up or down
6831 by one line, and filling the remaining line with appropriate picture content.
6832 This method is consistent with most broadcast field order converters.
6833
6834 If the input video is not flagged as being interlaced, or it is already
6835 flagged as being of the required output field order, then this filter does
6836 not alter the incoming video.
6837
6838 It is very useful when converting to or from PAL DV material,
6839 which is bottom field first.
6840
6841 For example:
6842 @example
6843 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
6844 @end example
6845
6846 @section fifo, afifo
6847
6848 Buffer input images and send them when they are requested.
6849
6850 It is mainly useful when auto-inserted by the libavfilter
6851 framework.
6852
6853 It does not take parameters.
6854
6855 @section find_rect
6856
6857 Find a rectangular object
6858
6859 It accepts the following options:
6860
6861 @table @option
6862 @item object
6863 Filepath of the object image, needs to be in gray8.
6864
6865 @item threshold
6866 Detection threshold, default is 0.5.
6867
6868 @item mipmaps
6869 Number of mipmaps, default is 3.
6870
6871 @item xmin, ymin, xmax, ymax
6872 Specifies the rectangle in which to search.
6873 @end table
6874
6875 @subsection Examples
6876
6877 @itemize
6878 @item
6879 Generate a representative palette of a given video using @command{ffmpeg}:
6880 @example
6881 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6882 @end example
6883 @end itemize
6884
6885 @section cover_rect
6886
6887 Cover a rectangular object
6888
6889 It accepts the following options:
6890
6891 @table @option
6892 @item cover
6893 Filepath of the optional cover image, needs to be in yuv420.
6894
6895 @item mode
6896 Set covering mode.
6897
6898 It accepts the following values:
6899 @table @samp
6900 @item cover
6901 cover it by the supplied image
6902 @item blur
6903 cover it by interpolating the surrounding pixels
6904 @end table
6905
6906 Default value is @var{blur}.
6907 @end table
6908
6909 @subsection Examples
6910
6911 @itemize
6912 @item
6913 Generate a representative palette of a given video using @command{ffmpeg}:
6914 @example
6915 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6916 @end example
6917 @end itemize
6918
6919 @anchor{format}
6920 @section format
6921
6922 Convert the input video to one of the specified pixel formats.
6923 Libavfilter will try to pick one that is suitable as input to
6924 the next filter.
6925
6926 It accepts the following parameters:
6927 @table @option
6928
6929 @item pix_fmts
6930 A '|'-separated list of pixel format names, such as
6931 "pix_fmts=yuv420p|monow|rgb24".
6932
6933 @end table
6934
6935 @subsection Examples
6936
6937 @itemize
6938 @item
6939 Convert the input video to the @var{yuv420p} format
6940 @example
6941 format=pix_fmts=yuv420p
6942 @end example
6943
6944 Convert the input video to any of the formats in the list
6945 @example
6946 format=pix_fmts=yuv420p|yuv444p|yuv410p
6947 @end example
6948 @end itemize
6949
6950 @anchor{fps}
6951 @section fps
6952
6953 Convert the video to specified constant frame rate by duplicating or dropping
6954 frames as necessary.
6955
6956 It accepts the following parameters:
6957 @table @option
6958
6959 @item fps
6960 The desired output frame rate. The default is @code{25}.
6961
6962 @item round
6963 Rounding method.
6964
6965 Possible values are:
6966 @table @option
6967 @item zero
6968 zero round towards 0
6969 @item inf
6970 round away from 0
6971 @item down
6972 round towards -infinity
6973 @item up
6974 round towards +infinity
6975 @item near
6976 round to nearest
6977 @end table
6978 The default is @code{near}.
6979
6980 @item start_time
6981 Assume the first PTS should be the given value, in seconds. This allows for
6982 padding/trimming at the start of stream. By default, no assumption is made
6983 about the first frame's expected PTS, so no padding or trimming is done.
6984 For example, this could be set to 0 to pad the beginning with duplicates of
6985 the first frame if a video stream starts after the audio stream or to trim any
6986 frames with a negative PTS.
6987
6988 @end table
6989
6990 Alternatively, the options can be specified as a flat string:
6991 @var{fps}[:@var{round}].
6992
6993 See also the @ref{setpts} filter.
6994
6995 @subsection Examples
6996
6997 @itemize
6998 @item
6999 A typical usage in order to set the fps to 25:
7000 @example
7001 fps=fps=25
7002 @end example
7003
7004 @item
7005 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7006 @example
7007 fps=fps=film:round=near
7008 @end example
7009 @end itemize
7010
7011 @section framepack
7012
7013 Pack two different video streams into a stereoscopic video, setting proper
7014 metadata on supported codecs. The two views should have the same size and
7015 framerate and processing will stop when the shorter video ends. Please note
7016 that you may conveniently adjust view properties with the @ref{scale} and
7017 @ref{fps} filters.
7018
7019 It accepts the following parameters:
7020 @table @option
7021
7022 @item format
7023 The desired packing format. Supported values are:
7024
7025 @table @option
7026
7027 @item sbs
7028 The views are next to each other (default).
7029
7030 @item tab
7031 The views are on top of each other.
7032
7033 @item lines
7034 The views are packed by line.
7035
7036 @item columns
7037 The views are packed by column.
7038
7039 @item frameseq
7040 The views are temporally interleaved.
7041
7042 @end table
7043
7044 @end table
7045
7046 Some examples:
7047
7048 @example
7049 # Convert left and right views into a frame-sequential video
7050 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7051
7052 # Convert views into a side-by-side video with the same output resolution as the input
7053 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
7054 @end example
7055
7056 @section framerate
7057
7058 Change the frame rate by interpolating new video output frames from the source
7059 frames.
7060
7061 This filter is not designed to function correctly with interlaced media. If
7062 you wish to change the frame rate of interlaced media then you are required
7063 to deinterlace before this filter and re-interlace after this filter.
7064
7065 A description of the accepted options follows.
7066
7067 @table @option
7068 @item fps
7069 Specify the output frames per second. This option can also be specified
7070 as a value alone. The default is @code{50}.
7071
7072 @item interp_start
7073 Specify the start of a range where the output frame will be created as a
7074 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7075 the default is @code{15}.
7076
7077 @item interp_end
7078 Specify the end of a range where the output frame will be created as a
7079 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7080 the default is @code{240}.
7081
7082 @item scene
7083 Specify the level at which a scene change is detected as a value between
7084 0 and 100 to indicate a new scene; a low value reflects a low
7085 probability for the current frame to introduce a new scene, while a higher
7086 value means the current frame is more likely to be one.
7087 The default is @code{7}.
7088
7089 @item flags
7090 Specify flags influencing the filter process.
7091
7092 Available value for @var{flags} is:
7093
7094 @table @option
7095 @item scene_change_detect, scd
7096 Enable scene change detection using the value of the option @var{scene}.
7097 This flag is enabled by default.
7098 @end table
7099 @end table
7100
7101 @section framestep
7102
7103 Select one frame every N-th frame.
7104
7105 This filter accepts the following option:
7106 @table @option
7107 @item step
7108 Select frame after every @code{step} frames.
7109 Allowed values are positive integers higher than 0. Default value is @code{1}.
7110 @end table
7111
7112 @anchor{frei0r}
7113 @section frei0r
7114
7115 Apply a frei0r effect to the input video.
7116
7117 To enable the compilation of this filter, you need to install the frei0r
7118 header and configure FFmpeg with @code{--enable-frei0r}.
7119
7120 It accepts the following parameters:
7121
7122 @table @option
7123
7124 @item filter_name
7125 The name of the frei0r effect to load. If the environment variable
7126 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7127 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7128 Otherwise, the standard frei0r paths are searched, in this order:
7129 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7130 @file{/usr/lib/frei0r-1/}.
7131
7132 @item filter_params
7133 A '|'-separated list of parameters to pass to the frei0r effect.
7134
7135 @end table
7136
7137 A frei0r effect parameter can be a boolean (its value is either
7138 "y" or "n"), a double, a color (specified as
7139 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
7140 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
7141 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
7142 @var{X} and @var{Y} are floating point numbers) and/or a string.
7143
7144 The number and types of parameters depend on the loaded effect. If an
7145 effect parameter is not specified, the default value is set.
7146
7147 @subsection Examples
7148
7149 @itemize
7150 @item
7151 Apply the distort0r effect, setting the first two double parameters:
7152 @example
7153 frei0r=filter_name=distort0r:filter_params=0.5|0.01
7154 @end example
7155
7156 @item
7157 Apply the colordistance effect, taking a color as the first parameter:
7158 @example
7159 frei0r=colordistance:0.2/0.3/0.4
7160 frei0r=colordistance:violet
7161 frei0r=colordistance:0x112233
7162 @end example
7163
7164 @item
7165 Apply the perspective effect, specifying the top left and top right image
7166 positions:
7167 @example
7168 frei0r=perspective:0.2/0.2|0.8/0.2
7169 @end example
7170 @end itemize
7171
7172 For more information, see
7173 @url{http://frei0r.dyne.org}
7174
7175 @section fspp
7176
7177 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
7178
7179 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
7180 processing filter, one of them is performed once per block, not per pixel.
7181 This allows for much higher speed.
7182
7183 The filter accepts the following options:
7184
7185 @table @option
7186 @item quality
7187 Set quality. This option defines the number of levels for averaging. It accepts
7188 an integer in the range 4-5. Default value is @code{4}.
7189
7190 @item qp
7191 Force a constant quantization parameter. It accepts an integer in range 0-63.
7192 If not set, the filter will use the QP from the video stream (if available).
7193
7194 @item strength
7195 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
7196 more details but also more artifacts, while higher values make the image smoother
7197 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
7198
7199 @item use_bframe_qp
7200 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7201 option may cause flicker since the B-Frames have often larger QP. Default is
7202 @code{0} (not enabled).
7203
7204 @end table
7205
7206 @section geq
7207
7208 The filter accepts the following options:
7209
7210 @table @option
7211 @item lum_expr, lum
7212 Set the luminance expression.
7213 @item cb_expr, cb
7214 Set the chrominance blue expression.
7215 @item cr_expr, cr
7216 Set the chrominance red expression.
7217 @item alpha_expr, a
7218 Set the alpha expression.
7219 @item red_expr, r
7220 Set the red expression.
7221 @item green_expr, g
7222 Set the green expression.
7223 @item blue_expr, b
7224 Set the blue expression.
7225 @end table
7226
7227 The colorspace is selected according to the specified options. If one
7228 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
7229 options is specified, the filter will automatically select a YCbCr
7230 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
7231 @option{blue_expr} options is specified, it will select an RGB
7232 colorspace.
7233
7234 If one of the chrominance expression is not defined, it falls back on the other
7235 one. If no alpha expression is specified it will evaluate to opaque value.
7236 If none of chrominance expressions are specified, they will evaluate
7237 to the luminance expression.
7238
7239 The expressions can use the following variables and functions:
7240
7241 @table @option
7242 @item N
7243 The sequential number of the filtered frame, starting from @code{0}.
7244
7245 @item X
7246 @item Y
7247 The coordinates of the current sample.
7248
7249 @item W
7250 @item H
7251 The width and height of the image.
7252
7253 @item SW
7254 @item SH
7255 Width and height scale depending on the currently filtered plane. It is the
7256 ratio between the corresponding luma plane number of pixels and the current
7257 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
7258 @code{0.5,0.5} for chroma planes.
7259
7260 @item T
7261 Time of the current frame, expressed in seconds.
7262
7263 @item p(x, y)
7264 Return the value of the pixel at location (@var{x},@var{y}) of the current
7265 plane.
7266
7267 @item lum(x, y)
7268 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
7269 plane.
7270
7271 @item cb(x, y)
7272 Return the value of the pixel at location (@var{x},@var{y}) of the
7273 blue-difference chroma plane. Return 0 if there is no such plane.
7274
7275 @item cr(x, y)
7276 Return the value of the pixel at location (@var{x},@var{y}) of the
7277 red-difference chroma plane. Return 0 if there is no such plane.
7278
7279 @item r(x, y)
7280 @item g(x, y)
7281 @item b(x, y)
7282 Return the value of the pixel at location (@var{x},@var{y}) of the
7283 red/green/blue component. Return 0 if there is no such component.
7284
7285 @item alpha(x, y)
7286 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
7287 plane. Return 0 if there is no such plane.
7288 @end table
7289
7290 For functions, if @var{x} and @var{y} are outside the area, the value will be
7291 automatically clipped to the closer edge.
7292
7293 @subsection Examples
7294
7295 @itemize
7296 @item
7297 Flip the image horizontally:
7298 @example
7299 geq=p(W-X\,Y)
7300 @end example
7301
7302 @item
7303 Generate a bidimensional sine wave, with angle @code{PI/3} and a
7304 wavelength of 100 pixels:
7305 @example
7306 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
7307 @end example
7308
7309 @item
7310 Generate a fancy enigmatic moving light:
7311 @example
7312 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
7313 @end example
7314
7315 @item
7316 Generate a quick emboss effect:
7317 @example
7318 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
7319 @end example
7320
7321 @item
7322 Modify RGB components depending on pixel position:
7323 @example
7324 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
7325 @end example
7326
7327 @item
7328 Create a radial gradient that is the same size as the input (also see
7329 the @ref{vignette} filter):
7330 @example
7331 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
7332 @end example
7333
7334 @item
7335 Create a linear gradient to use as a mask for another filter, then
7336 compose with @ref{overlay}. In this example the video will gradually
7337 become more blurry from the top to the bottom of the y-axis as defined
7338 by the linear gradient:
7339 @example
7340 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
7341 @end example
7342 @end itemize
7343
7344 @section gradfun
7345
7346 Fix the banding artifacts that are sometimes introduced into nearly flat
7347 regions by truncation to 8bit color depth.
7348 Interpolate the gradients that should go where the bands are, and
7349 dither them.
7350
7351 It is designed for playback only.  Do not use it prior to
7352 lossy compression, because compression tends to lose the dither and
7353 bring back the bands.
7354
7355 It accepts the following parameters:
7356
7357 @table @option
7358
7359 @item strength
7360 The maximum amount by which the filter will change any one pixel. This is also
7361 the threshold for detecting nearly flat regions. Acceptable values range from
7362 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
7363 valid range.
7364
7365 @item radius
7366 The neighborhood to fit the gradient to. A larger radius makes for smoother
7367 gradients, but also prevents the filter from modifying the pixels near detailed
7368 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
7369 values will be clipped to the valid range.
7370
7371 @end table
7372
7373 Alternatively, the options can be specified as a flat string:
7374 @var{strength}[:@var{radius}]
7375
7376 @subsection Examples
7377
7378 @itemize
7379 @item
7380 Apply the filter with a @code{3.5} strength and radius of @code{8}:
7381 @example
7382 gradfun=3.5:8
7383 @end example
7384
7385 @item
7386 Specify radius, omitting the strength (which will fall-back to the default
7387 value):
7388 @example
7389 gradfun=radius=8
7390 @end example
7391
7392 @end itemize
7393
7394 @anchor{haldclut}
7395 @section haldclut
7396
7397 Apply a Hald CLUT to a video stream.
7398
7399 First input is the video stream to process, and second one is the Hald CLUT.
7400 The Hald CLUT input can be a simple picture or a complete video stream.
7401
7402 The filter accepts the following options:
7403
7404 @table @option
7405 @item shortest
7406 Force termination when the shortest input terminates. Default is @code{0}.
7407 @item repeatlast
7408 Continue applying the last CLUT after the end of the stream. A value of
7409 @code{0} disable the filter after the last frame of the CLUT is reached.
7410 Default is @code{1}.
7411 @end table
7412
7413 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
7414 filters share the same internals).
7415
7416 More information about the Hald CLUT can be found on Eskil Steenberg's website
7417 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
7418
7419 @subsection Workflow examples
7420
7421 @subsubsection Hald CLUT video stream
7422
7423 Generate an identity Hald CLUT stream altered with various effects:
7424 @example
7425 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
7426 @end example
7427
7428 Note: make sure you use a lossless codec.
7429
7430 Then use it with @code{haldclut} to apply it on some random stream:
7431 @example
7432 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
7433 @end example
7434
7435 The Hald CLUT will be applied to the 10 first seconds (duration of
7436 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
7437 to the remaining frames of the @code{mandelbrot} stream.
7438
7439 @subsubsection Hald CLUT with preview
7440
7441 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
7442 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
7443 biggest possible square starting at the top left of the picture. The remaining
7444 padding pixels (bottom or right) will be ignored. This area can be used to add
7445 a preview of the Hald CLUT.
7446
7447 Typically, the following generated Hald CLUT will be supported by the
7448 @code{haldclut} filter:
7449
7450 @example
7451 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
7452    pad=iw+320 [padded_clut];
7453    smptebars=s=320x256, split [a][b];
7454    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
7455    [main][b] overlay=W-320" -frames:v 1 clut.png
7456 @end example
7457
7458 It contains the original and a preview of the effect of the CLUT: SMPTE color
7459 bars are displayed on the right-top, and below the same color bars processed by
7460 the color changes.
7461
7462 Then, the effect of this Hald CLUT can be visualized with:
7463 @example
7464 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
7465 @end example
7466
7467 @section hflip
7468
7469 Flip the input video horizontally.
7470
7471 For example, to horizontally flip the input video with @command{ffmpeg}:
7472 @example
7473 ffmpeg -i in.avi -vf "hflip" out.avi
7474 @end example
7475
7476 @section histeq
7477 This filter applies a global color histogram equalization on a
7478 per-frame basis.
7479
7480 It can be used to correct video that has a compressed range of pixel
7481 intensities.  The filter redistributes the pixel intensities to
7482 equalize their distribution across the intensity range. It may be
7483 viewed as an "automatically adjusting contrast filter". This filter is
7484 useful only for correcting degraded or poorly captured source
7485 video.
7486
7487 The filter accepts the following options:
7488
7489 @table @option
7490 @item strength
7491 Determine the amount of equalization to be applied.  As the strength
7492 is reduced, the distribution of pixel intensities more-and-more
7493 approaches that of the input frame. The value must be a float number
7494 in the range [0,1] and defaults to 0.200.
7495
7496 @item intensity
7497 Set the maximum intensity that can generated and scale the output
7498 values appropriately.  The strength should be set as desired and then
7499 the intensity can be limited if needed to avoid washing-out. The value
7500 must be a float number in the range [0,1] and defaults to 0.210.
7501
7502 @item antibanding
7503 Set the antibanding level. If enabled the filter will randomly vary
7504 the luminance of output pixels by a small amount to avoid banding of
7505 the histogram. Possible values are @code{none}, @code{weak} or
7506 @code{strong}. It defaults to @code{none}.
7507 @end table
7508
7509 @section histogram
7510
7511 Compute and draw a color distribution histogram for the input video.
7512
7513 The computed histogram is a representation of the color component
7514 distribution in an image.
7515
7516 Standard histogram displays the color components distribution in an image.
7517 Displays color graph for each color component. Shows distribution of
7518 the Y, U, V, A or R, G, B components, depending on input format, in the
7519 current frame. Below each graph a color component scale meter is shown.
7520
7521 The filter accepts the following options:
7522
7523 @table @option
7524 @item level_height
7525 Set height of level. Default value is @code{200}.
7526 Allowed range is [50, 2048].
7527
7528 @item scale_height
7529 Set height of color scale. Default value is @code{12}.
7530 Allowed range is [0, 40].
7531
7532 @item display_mode
7533 Set display mode.
7534 It accepts the following values:
7535 @table @samp
7536 @item parade
7537 Per color component graphs are placed below each other.
7538
7539 @item overlay
7540 Presents information identical to that in the @code{parade}, except
7541 that the graphs representing color components are superimposed directly
7542 over one another.
7543 @end table
7544 Default is @code{parade}.
7545
7546 @item levels_mode
7547 Set mode. Can be either @code{linear}, or @code{logarithmic}.
7548 Default is @code{linear}.
7549
7550 @item components
7551 Set what color components to display.
7552 Default is @code{7}.
7553 @end table
7554
7555 @subsection Examples
7556
7557 @itemize
7558
7559 @item
7560 Calculate and draw histogram:
7561 @example
7562 ffplay -i input -vf histogram
7563 @end example
7564
7565 @end itemize
7566
7567 @anchor{hqdn3d}
7568 @section hqdn3d
7569
7570 This is a high precision/quality 3d denoise filter. It aims to reduce
7571 image noise, producing smooth images and making still images really
7572 still. It should enhance compressibility.
7573
7574 It accepts the following optional parameters:
7575
7576 @table @option
7577 @item luma_spatial
7578 A non-negative floating point number which specifies spatial luma strength.
7579 It defaults to 4.0.
7580
7581 @item chroma_spatial
7582 A non-negative floating point number which specifies spatial chroma strength.
7583 It defaults to 3.0*@var{luma_spatial}/4.0.
7584
7585 @item luma_tmp
7586 A floating point number which specifies luma temporal strength. It defaults to
7587 6.0*@var{luma_spatial}/4.0.
7588
7589 @item chroma_tmp
7590 A floating point number which specifies chroma temporal strength. It defaults to
7591 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
7592 @end table
7593
7594 @section hqx
7595
7596 Apply a high-quality magnification filter designed for pixel art. This filter
7597 was originally created by Maxim Stepin.
7598
7599 It accepts the following option:
7600
7601 @table @option
7602 @item n
7603 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
7604 @code{hq3x} and @code{4} for @code{hq4x}.
7605 Default is @code{3}.
7606 @end table
7607
7608 @section hstack
7609 Stack input videos horizontally.
7610
7611 All streams must be of same pixel format and of same height.
7612
7613 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
7614 to create same output.
7615
7616 The filter accept the following option:
7617
7618 @table @option
7619 @item inputs
7620 Set number of input streams. Default is 2.
7621
7622 @item shortest
7623 If set to 1, force the output to terminate when the shortest input
7624 terminates. Default value is 0.
7625 @end table
7626
7627 @section hue
7628
7629 Modify the hue and/or the saturation of the input.
7630
7631 It accepts the following parameters:
7632
7633 @table @option
7634 @item h
7635 Specify the hue angle as a number of degrees. It accepts an expression,
7636 and defaults to "0".
7637
7638 @item s
7639 Specify the saturation in the [-10,10] range. It accepts an expression and
7640 defaults to "1".
7641
7642 @item H
7643 Specify the hue angle as a number of radians. It accepts an
7644 expression, and defaults to "0".
7645
7646 @item b
7647 Specify the brightness in the [-10,10] range. It accepts an expression and
7648 defaults to "0".
7649 @end table
7650
7651 @option{h} and @option{H} are mutually exclusive, and can't be
7652 specified at the same time.
7653
7654 The @option{b}, @option{h}, @option{H} and @option{s} option values are
7655 expressions containing the following constants:
7656
7657 @table @option
7658 @item n
7659 frame count of the input frame starting from 0
7660
7661 @item pts
7662 presentation timestamp of the input frame expressed in time base units
7663
7664 @item r
7665 frame rate of the input video, NAN if the input frame rate is unknown
7666
7667 @item t
7668 timestamp expressed in seconds, NAN if the input timestamp is unknown
7669
7670 @item tb
7671 time base of the input video
7672 @end table
7673
7674 @subsection Examples
7675
7676 @itemize
7677 @item
7678 Set the hue to 90 degrees and the saturation to 1.0:
7679 @example
7680 hue=h=90:s=1
7681 @end example
7682
7683 @item
7684 Same command but expressing the hue in radians:
7685 @example
7686 hue=H=PI/2:s=1
7687 @end example
7688
7689 @item
7690 Rotate hue and make the saturation swing between 0
7691 and 2 over a period of 1 second:
7692 @example
7693 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7694 @end example
7695
7696 @item
7697 Apply a 3 seconds saturation fade-in effect starting at 0:
7698 @example
7699 hue="s=min(t/3\,1)"
7700 @end example
7701
7702 The general fade-in expression can be written as:
7703 @example
7704 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7705 @end example
7706
7707 @item
7708 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7709 @example
7710 hue="s=max(0\, min(1\, (8-t)/3))"
7711 @end example
7712
7713 The general fade-out expression can be written as:
7714 @example
7715 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7716 @end example
7717
7718 @end itemize
7719
7720 @subsection Commands
7721
7722 This filter supports the following commands:
7723 @table @option
7724 @item b
7725 @item s
7726 @item h
7727 @item H
7728 Modify the hue and/or the saturation and/or brightness of the input video.
7729 The command accepts the same syntax of the corresponding option.
7730
7731 If the specified expression is not valid, it is kept at its current
7732 value.
7733 @end table
7734
7735 @section idet
7736
7737 Detect video interlacing type.
7738
7739 This filter tries to detect if the input frames as interlaced, progressive,
7740 top or bottom field first. It will also try and detect fields that are
7741 repeated between adjacent frames (a sign of telecine).
7742
7743 Single frame detection considers only immediately adjacent frames when classifying each frame.
7744 Multiple frame detection incorporates the classification history of previous frames.
7745
7746 The filter will log these metadata values:
7747
7748 @table @option
7749 @item single.current_frame
7750 Detected type of current frame using single-frame detection. One of:
7751 ``tff'' (top field first), ``bff'' (bottom field first),
7752 ``progressive'', or ``undetermined''
7753
7754 @item single.tff
7755 Cumulative number of frames detected as top field first using single-frame detection.
7756
7757 @item multiple.tff
7758 Cumulative number of frames detected as top field first using multiple-frame detection.
7759
7760 @item single.bff
7761 Cumulative number of frames detected as bottom field first using single-frame detection.
7762
7763 @item multiple.current_frame
7764 Detected type of current frame using multiple-frame detection. One of:
7765 ``tff'' (top field first), ``bff'' (bottom field first),
7766 ``progressive'', or ``undetermined''
7767
7768 @item multiple.bff
7769 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7770
7771 @item single.progressive
7772 Cumulative number of frames detected as progressive using single-frame detection.
7773
7774 @item multiple.progressive
7775 Cumulative number of frames detected as progressive using multiple-frame detection.
7776
7777 @item single.undetermined
7778 Cumulative number of frames that could not be classified using single-frame detection.
7779
7780 @item multiple.undetermined
7781 Cumulative number of frames that could not be classified using multiple-frame detection.
7782
7783 @item repeated.current_frame
7784 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7785
7786 @item repeated.neither
7787 Cumulative number of frames with no repeated field.
7788
7789 @item repeated.top
7790 Cumulative number of frames with the top field repeated from the previous frame's top field.
7791
7792 @item repeated.bottom
7793 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7794 @end table
7795
7796 The filter accepts the following options:
7797
7798 @table @option
7799 @item intl_thres
7800 Set interlacing threshold.
7801 @item prog_thres
7802 Set progressive threshold.
7803 @item repeat_thres
7804 Threshold for repeated field detection.
7805 @item half_life
7806 Number of frames after which a given frame's contribution to the
7807 statistics is halved (i.e., it contributes only 0.5 to it's
7808 classification). The default of 0 means that all frames seen are given
7809 full weight of 1.0 forever.
7810 @item analyze_interlaced_flag
7811 When this is not 0 then idet will use the specified number of frames to determine
7812 if the interlaced flag is accurate, it will not count undetermined frames.
7813 If the flag is found to be accurate it will be used without any further
7814 computations, if it is found to be inaccurate it will be cleared without any
7815 further computations. This allows inserting the idet filter as a low computational
7816 method to clean up the interlaced flag
7817 @end table
7818
7819 @section il
7820
7821 Deinterleave or interleave fields.
7822
7823 This filter allows one to process interlaced images fields without
7824 deinterlacing them. Deinterleaving splits the input frame into 2
7825 fields (so called half pictures). Odd lines are moved to the top
7826 half of the output image, even lines to the bottom half.
7827 You can process (filter) them independently and then re-interleave them.
7828
7829 The filter accepts the following options:
7830
7831 @table @option
7832 @item luma_mode, l
7833 @item chroma_mode, c
7834 @item alpha_mode, a
7835 Available values for @var{luma_mode}, @var{chroma_mode} and
7836 @var{alpha_mode} are:
7837
7838 @table @samp
7839 @item none
7840 Do nothing.
7841
7842 @item deinterleave, d
7843 Deinterleave fields, placing one above the other.
7844
7845 @item interleave, i
7846 Interleave fields. Reverse the effect of deinterleaving.
7847 @end table
7848 Default value is @code{none}.
7849
7850 @item luma_swap, ls
7851 @item chroma_swap, cs
7852 @item alpha_swap, as
7853 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
7854 @end table
7855
7856 @section inflate
7857
7858 Apply inflate effect to the video.
7859
7860 This filter replaces the pixel by the local(3x3) average by taking into account
7861 only values higher than the pixel.
7862
7863 It accepts the following options:
7864
7865 @table @option
7866 @item threshold0
7867 @item threshold1
7868 @item threshold2
7869 @item threshold3
7870 Limit the maximum change for each plane, default is 65535.
7871 If 0, plane will remain unchanged.
7872 @end table
7873
7874 @section interlace
7875
7876 Simple interlacing filter from progressive contents. This interleaves upper (or
7877 lower) lines from odd frames with lower (or upper) lines from even frames,
7878 halving the frame rate and preserving image height.
7879
7880 @example
7881    Original        Original             New Frame
7882    Frame 'j'      Frame 'j+1'             (tff)
7883   ==========      ===========       ==================
7884     Line 0  -------------------->    Frame 'j' Line 0
7885     Line 1          Line 1  ---->   Frame 'j+1' Line 1
7886     Line 2 --------------------->    Frame 'j' Line 2
7887     Line 3          Line 3  ---->   Frame 'j+1' Line 3
7888      ...             ...                   ...
7889 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
7890 @end example
7891
7892 It accepts the following optional parameters:
7893
7894 @table @option
7895 @item scan
7896 This determines whether the interlaced frame is taken from the even
7897 (tff - default) or odd (bff) lines of the progressive frame.
7898
7899 @item lowpass
7900 Enable (default) or disable the vertical lowpass filter to avoid twitter
7901 interlacing and reduce moire patterns.
7902 @end table
7903
7904 @section kerndeint
7905
7906 Deinterlace input video by applying Donald Graft's adaptive kernel
7907 deinterling. Work on interlaced parts of a video to produce
7908 progressive frames.
7909
7910 The description of the accepted parameters follows.
7911
7912 @table @option
7913 @item thresh
7914 Set the threshold which affects the filter's tolerance when
7915 determining if a pixel line must be processed. It must be an integer
7916 in the range [0,255] and defaults to 10. A value of 0 will result in
7917 applying the process on every pixels.
7918
7919 @item map
7920 Paint pixels exceeding the threshold value to white if set to 1.
7921 Default is 0.
7922
7923 @item order
7924 Set the fields order. Swap fields if set to 1, leave fields alone if
7925 0. Default is 0.
7926
7927 @item sharp
7928 Enable additional sharpening if set to 1. Default is 0.
7929
7930 @item twoway
7931 Enable twoway sharpening if set to 1. Default is 0.
7932 @end table
7933
7934 @subsection Examples
7935
7936 @itemize
7937 @item
7938 Apply default values:
7939 @example
7940 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7941 @end example
7942
7943 @item
7944 Enable additional sharpening:
7945 @example
7946 kerndeint=sharp=1
7947 @end example
7948
7949 @item
7950 Paint processed pixels in white:
7951 @example
7952 kerndeint=map=1
7953 @end example
7954 @end itemize
7955
7956 @section lenscorrection
7957
7958 Correct radial lens distortion
7959
7960 This filter can be used to correct for radial distortion as can result from the use
7961 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7962 one can use tools available for example as part of opencv or simply trial-and-error.
7963 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7964 and extract the k1 and k2 coefficients from the resulting matrix.
7965
7966 Note that effectively the same filter is available in the open-source tools Krita and
7967 Digikam from the KDE project.
7968
7969 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7970 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7971 brightness distribution, so you may want to use both filters together in certain
7972 cases, though you will have to take care of ordering, i.e. whether vignetting should
7973 be applied before or after lens correction.
7974
7975 @subsection Options
7976
7977 The filter accepts the following options:
7978
7979 @table @option
7980 @item cx
7981 Relative x-coordinate of the focal point of the image, and thereby the center of the
7982 distortion. This value has a range [0,1] and is expressed as fractions of the image
7983 width.
7984 @item cy
7985 Relative y-coordinate of the focal point of the image, and thereby the center of the
7986 distortion. This value has a range [0,1] and is expressed as fractions of the image
7987 height.
7988 @item k1
7989 Coefficient of the quadratic correction term. 0.5 means no correction.
7990 @item k2
7991 Coefficient of the double quadratic correction term. 0.5 means no correction.
7992 @end table
7993
7994 The formula that generates the correction is:
7995
7996 @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)
7997
7998 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
7999 distances from the focal point in the source and target images, respectively.
8000
8001 @anchor{lut3d}
8002 @section lut3d
8003
8004 Apply a 3D LUT to an input video.
8005
8006 The filter accepts the following options:
8007
8008 @table @option
8009 @item file
8010 Set the 3D LUT file name.
8011
8012 Currently supported formats:
8013 @table @samp
8014 @item 3dl
8015 AfterEffects
8016 @item cube
8017 Iridas
8018 @item dat
8019 DaVinci
8020 @item m3d
8021 Pandora
8022 @end table
8023 @item interp
8024 Select interpolation mode.
8025
8026 Available values are:
8027
8028 @table @samp
8029 @item nearest
8030 Use values from the nearest defined point.
8031 @item trilinear
8032 Interpolate values using the 8 points defining a cube.
8033 @item tetrahedral
8034 Interpolate values using a tetrahedron.
8035 @end table
8036 @end table
8037
8038 @section lut, lutrgb, lutyuv
8039
8040 Compute a look-up table for binding each pixel component input value
8041 to an output value, and apply it to the input video.
8042
8043 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8044 to an RGB input video.
8045
8046 These filters accept the following parameters:
8047 @table @option
8048 @item c0
8049 set first pixel component expression
8050 @item c1
8051 set second pixel component expression
8052 @item c2
8053 set third pixel component expression
8054 @item c3
8055 set fourth pixel component expression, corresponds to the alpha component
8056
8057 @item r
8058 set red component expression
8059 @item g
8060 set green component expression
8061 @item b
8062 set blue component expression
8063 @item a
8064 alpha component expression
8065
8066 @item y
8067 set Y/luminance component expression
8068 @item u
8069 set U/Cb component expression
8070 @item v
8071 set V/Cr component expression
8072 @end table
8073
8074 Each of them specifies the expression to use for computing the lookup table for
8075 the corresponding pixel component values.
8076
8077 The exact component associated to each of the @var{c*} options depends on the
8078 format in input.
8079
8080 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8081 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8082
8083 The expressions can contain the following constants and functions:
8084
8085 @table @option
8086 @item w
8087 @item h
8088 The input width and height.
8089
8090 @item val
8091 The input value for the pixel component.
8092
8093 @item clipval
8094 The input value, clipped to the @var{minval}-@var{maxval} range.
8095
8096 @item maxval
8097 The maximum value for the pixel component.
8098
8099 @item minval
8100 The minimum value for the pixel component.
8101
8102 @item negval
8103 The negated value for the pixel component value, clipped to the
8104 @var{minval}-@var{maxval} range; it corresponds to the expression
8105 "maxval-clipval+minval".
8106
8107 @item clip(val)
8108 The computed value in @var{val}, clipped to the
8109 @var{minval}-@var{maxval} range.
8110
8111 @item gammaval(gamma)
8112 The computed gamma correction value of the pixel component value,
8113 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
8114 expression
8115 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
8116
8117 @end table
8118
8119 All expressions default to "val".
8120
8121 @subsection Examples
8122
8123 @itemize
8124 @item
8125 Negate input video:
8126 @example
8127 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
8128 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
8129 @end example
8130
8131 The above is the same as:
8132 @example
8133 lutrgb="r=negval:g=negval:b=negval"
8134 lutyuv="y=negval:u=negval:v=negval"
8135 @end example
8136
8137 @item
8138 Negate luminance:
8139 @example
8140 lutyuv=y=negval
8141 @end example
8142
8143 @item
8144 Remove chroma components, turning the video into a graytone image:
8145 @example
8146 lutyuv="u=128:v=128"
8147 @end example
8148
8149 @item
8150 Apply a luma burning effect:
8151 @example
8152 lutyuv="y=2*val"
8153 @end example
8154
8155 @item
8156 Remove green and blue components:
8157 @example
8158 lutrgb="g=0:b=0"
8159 @end example
8160
8161 @item
8162 Set a constant alpha channel value on input:
8163 @example
8164 format=rgba,lutrgb=a="maxval-minval/2"
8165 @end example
8166
8167 @item
8168 Correct luminance gamma by a factor of 0.5:
8169 @example
8170 lutyuv=y=gammaval(0.5)
8171 @end example
8172
8173 @item
8174 Discard least significant bits of luma:
8175 @example
8176 lutyuv=y='bitand(val, 128+64+32)'
8177 @end example
8178 @end itemize
8179
8180 @section maskedmerge
8181
8182 Merge the first input stream with the second input stream using per pixel
8183 weights in the third input stream.
8184
8185 A value of 0 in the third stream pixel component means that pixel component
8186 from first stream is returned unchanged, while maximum value (eg. 255 for
8187 8-bit videos) means that pixel component from second stream is returned
8188 unchanged. Intermediate values define the amount of merging between both
8189 input stream's pixel components.
8190
8191 This filter accepts the following options:
8192 @table @option
8193 @item planes
8194 Set which planes will be processed as bitmap, unprocessed planes will be
8195 copied from first stream.
8196 By default value 0xf, all planes will be processed.
8197 @end table
8198
8199 @section mcdeint
8200
8201 Apply motion-compensation deinterlacing.
8202
8203 It needs one field per frame as input and must thus be used together
8204 with yadif=1/3 or equivalent.
8205
8206 This filter accepts the following options:
8207 @table @option
8208 @item mode
8209 Set the deinterlacing mode.
8210
8211 It accepts one of the following values:
8212 @table @samp
8213 @item fast
8214 @item medium
8215 @item slow
8216 use iterative motion estimation
8217 @item extra_slow
8218 like @samp{slow}, but use multiple reference frames.
8219 @end table
8220 Default value is @samp{fast}.
8221
8222 @item parity
8223 Set the picture field parity assumed for the input video. It must be
8224 one of the following values:
8225
8226 @table @samp
8227 @item 0, tff
8228 assume top field first
8229 @item 1, bff
8230 assume bottom field first
8231 @end table
8232
8233 Default value is @samp{bff}.
8234
8235 @item qp
8236 Set per-block quantization parameter (QP) used by the internal
8237 encoder.
8238
8239 Higher values should result in a smoother motion vector field but less
8240 optimal individual vectors. Default value is 1.
8241 @end table
8242
8243 @section mergeplanes
8244
8245 Merge color channel components from several video streams.
8246
8247 The filter accepts up to 4 input streams, and merge selected input
8248 planes to the output video.
8249
8250 This filter accepts the following options:
8251 @table @option
8252 @item mapping
8253 Set input to output plane mapping. Default is @code{0}.
8254
8255 The mappings is specified as a bitmap. It should be specified as a
8256 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
8257 mapping for the first plane of the output stream. 'A' sets the number of
8258 the input stream to use (from 0 to 3), and 'a' the plane number of the
8259 corresponding input to use (from 0 to 3). The rest of the mappings is
8260 similar, 'Bb' describes the mapping for the output stream second
8261 plane, 'Cc' describes the mapping for the output stream third plane and
8262 'Dd' describes the mapping for the output stream fourth plane.
8263
8264 @item format
8265 Set output pixel format. Default is @code{yuva444p}.
8266 @end table
8267
8268 @subsection Examples
8269
8270 @itemize
8271 @item
8272 Merge three gray video streams of same width and height into single video stream:
8273 @example
8274 [a0][a1][a2]mergeplanes=0x001020:yuv444p
8275 @end example
8276
8277 @item
8278 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
8279 @example
8280 [a0][a1]mergeplanes=0x00010210:yuva444p
8281 @end example
8282
8283 @item
8284 Swap Y and A plane in yuva444p stream:
8285 @example
8286 format=yuva444p,mergeplanes=0x03010200:yuva444p
8287 @end example
8288
8289 @item
8290 Swap U and V plane in yuv420p stream:
8291 @example
8292 format=yuv420p,mergeplanes=0x000201:yuv420p
8293 @end example
8294
8295 @item
8296 Cast a rgb24 clip to yuv444p:
8297 @example
8298 format=rgb24,mergeplanes=0x000102:yuv444p
8299 @end example
8300 @end itemize
8301
8302 @section mpdecimate
8303
8304 Drop frames that do not differ greatly from the previous frame in
8305 order to reduce frame rate.
8306
8307 The main use of this filter is for very-low-bitrate encoding
8308 (e.g. streaming over dialup modem), but it could in theory be used for
8309 fixing movies that were inverse-telecined incorrectly.
8310
8311 A description of the accepted options follows.
8312
8313 @table @option
8314 @item max
8315 Set the maximum number of consecutive frames which can be dropped (if
8316 positive), or the minimum interval between dropped frames (if
8317 negative). If the value is 0, the frame is dropped unregarding the
8318 number of previous sequentially dropped frames.
8319
8320 Default value is 0.
8321
8322 @item hi
8323 @item lo
8324 @item frac
8325 Set the dropping threshold values.
8326
8327 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
8328 represent actual pixel value differences, so a threshold of 64
8329 corresponds to 1 unit of difference for each pixel, or the same spread
8330 out differently over the block.
8331
8332 A frame is a candidate for dropping if no 8x8 blocks differ by more
8333 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
8334 meaning the whole image) differ by more than a threshold of @option{lo}.
8335
8336 Default value for @option{hi} is 64*12, default value for @option{lo} is
8337 64*5, and default value for @option{frac} is 0.33.
8338 @end table
8339
8340
8341 @section negate
8342
8343 Negate input video.
8344
8345 It accepts an integer in input; if non-zero it negates the
8346 alpha component (if available). The default value in input is 0.
8347
8348 @section noformat
8349
8350 Force libavfilter not to use any of the specified pixel formats for the
8351 input to the next filter.
8352
8353 It accepts the following parameters:
8354 @table @option
8355
8356 @item pix_fmts
8357 A '|'-separated list of pixel format names, such as
8358 apix_fmts=yuv420p|monow|rgb24".
8359
8360 @end table
8361
8362 @subsection Examples
8363
8364 @itemize
8365 @item
8366 Force libavfilter to use a format different from @var{yuv420p} for the
8367 input to the vflip filter:
8368 @example
8369 noformat=pix_fmts=yuv420p,vflip
8370 @end example
8371
8372 @item
8373 Convert the input video to any of the formats not contained in the list:
8374 @example
8375 noformat=yuv420p|yuv444p|yuv410p
8376 @end example
8377 @end itemize
8378
8379 @section noise
8380
8381 Add noise on video input frame.
8382
8383 The filter accepts the following options:
8384
8385 @table @option
8386 @item all_seed
8387 @item c0_seed
8388 @item c1_seed
8389 @item c2_seed
8390 @item c3_seed
8391 Set noise seed for specific pixel component or all pixel components in case
8392 of @var{all_seed}. Default value is @code{123457}.
8393
8394 @item all_strength, alls
8395 @item c0_strength, c0s
8396 @item c1_strength, c1s
8397 @item c2_strength, c2s
8398 @item c3_strength, c3s
8399 Set noise strength for specific pixel component or all pixel components in case
8400 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
8401
8402 @item all_flags, allf
8403 @item c0_flags, c0f
8404 @item c1_flags, c1f
8405 @item c2_flags, c2f
8406 @item c3_flags, c3f
8407 Set pixel component flags or set flags for all components if @var{all_flags}.
8408 Available values for component flags are:
8409 @table @samp
8410 @item a
8411 averaged temporal noise (smoother)
8412 @item p
8413 mix random noise with a (semi)regular pattern
8414 @item t
8415 temporal noise (noise pattern changes between frames)
8416 @item u
8417 uniform noise (gaussian otherwise)
8418 @end table
8419 @end table
8420
8421 @subsection Examples
8422
8423 Add temporal and uniform noise to input video:
8424 @example
8425 noise=alls=20:allf=t+u
8426 @end example
8427
8428 @section null
8429
8430 Pass the video source unchanged to the output.
8431
8432 @section ocr
8433 Optical Character Recognition
8434
8435 This filter uses Tesseract for optical character recognition.
8436
8437 It accepts the following options:
8438
8439 @table @option
8440 @item datapath
8441 Set datapath to tesseract data. Default is to use whatever was
8442 set at installation.
8443
8444 @item language
8445 Set language, default is "eng".
8446
8447 @item whitelist
8448 Set character whitelist.
8449
8450 @item blacklist
8451 Set character blacklist.
8452 @end table
8453
8454 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
8455
8456 @section ocv
8457
8458 Apply a video transform using libopencv.
8459
8460 To enable this filter, install the libopencv library and headers and
8461 configure FFmpeg with @code{--enable-libopencv}.
8462
8463 It accepts the following parameters:
8464
8465 @table @option
8466
8467 @item filter_name
8468 The name of the libopencv filter to apply.
8469
8470 @item filter_params
8471 The parameters to pass to the libopencv filter. If not specified, the default
8472 values are assumed.
8473
8474 @end table
8475
8476 Refer to the official libopencv documentation for more precise
8477 information:
8478 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
8479
8480 Several libopencv filters are supported; see the following subsections.
8481
8482 @anchor{dilate}
8483 @subsection dilate
8484
8485 Dilate an image by using a specific structuring element.
8486 It corresponds to the libopencv function @code{cvDilate}.
8487
8488 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
8489
8490 @var{struct_el} represents a structuring element, and has the syntax:
8491 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
8492
8493 @var{cols} and @var{rows} represent the number of columns and rows of
8494 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
8495 point, and @var{shape} the shape for the structuring element. @var{shape}
8496 must be "rect", "cross", "ellipse", or "custom".
8497
8498 If the value for @var{shape} is "custom", it must be followed by a
8499 string of the form "=@var{filename}". The file with name
8500 @var{filename} is assumed to represent a binary image, with each
8501 printable character corresponding to a bright pixel. When a custom
8502 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
8503 or columns and rows of the read file are assumed instead.
8504
8505 The default value for @var{struct_el} is "3x3+0x0/rect".
8506
8507 @var{nb_iterations} specifies the number of times the transform is
8508 applied to the image, and defaults to 1.
8509
8510 Some examples:
8511 @example
8512 # Use the default values
8513 ocv=dilate
8514
8515 # Dilate using a structuring element with a 5x5 cross, iterating two times
8516 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
8517
8518 # Read the shape from the file diamond.shape, iterating two times.
8519 # The file diamond.shape may contain a pattern of characters like this
8520 #   *
8521 #  ***
8522 # *****
8523 #  ***
8524 #   *
8525 # The specified columns and rows are ignored
8526 # but the anchor point coordinates are not
8527 ocv=dilate:0x0+2x2/custom=diamond.shape|2
8528 @end example
8529
8530 @subsection erode
8531
8532 Erode an image by using a specific structuring element.
8533 It corresponds to the libopencv function @code{cvErode}.
8534
8535 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
8536 with the same syntax and semantics as the @ref{dilate} filter.
8537
8538 @subsection smooth
8539
8540 Smooth the input video.
8541
8542 The filter takes the following parameters:
8543 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
8544
8545 @var{type} is the type of smooth filter to apply, and must be one of
8546 the following values: "blur", "blur_no_scale", "median", "gaussian",
8547 or "bilateral". The default value is "gaussian".
8548
8549 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
8550 depend on the smooth type. @var{param1} and
8551 @var{param2} accept integer positive values or 0. @var{param3} and
8552 @var{param4} accept floating point values.
8553
8554 The default value for @var{param1} is 3. The default value for the
8555 other parameters is 0.
8556
8557 These parameters correspond to the parameters assigned to the
8558 libopencv function @code{cvSmooth}.
8559
8560 @anchor{overlay}
8561 @section overlay
8562
8563 Overlay one video on top of another.
8564
8565 It takes two inputs and has one output. The first input is the "main"
8566 video on which the second input is overlaid.
8567
8568 It accepts the following parameters:
8569
8570 A description of the accepted options follows.
8571
8572 @table @option
8573 @item x
8574 @item y
8575 Set the expression for the x and y coordinates of the overlaid video
8576 on the main video. Default value is "0" for both expressions. In case
8577 the expression is invalid, it is set to a huge value (meaning that the
8578 overlay will not be displayed within the output visible area).
8579
8580 @item eof_action
8581 The action to take when EOF is encountered on the secondary input; it accepts
8582 one of the following values:
8583
8584 @table @option
8585 @item repeat
8586 Repeat the last frame (the default).
8587 @item endall
8588 End both streams.
8589 @item pass
8590 Pass the main input through.
8591 @end table
8592
8593 @item eval
8594 Set when the expressions for @option{x}, and @option{y} are evaluated.
8595
8596 It accepts the following values:
8597 @table @samp
8598 @item init
8599 only evaluate expressions once during the filter initialization or
8600 when a command is processed
8601
8602 @item frame
8603 evaluate expressions for each incoming frame
8604 @end table
8605
8606 Default value is @samp{frame}.
8607
8608 @item shortest
8609 If set to 1, force the output to terminate when the shortest input
8610 terminates. Default value is 0.
8611
8612 @item format
8613 Set the format for the output video.
8614
8615 It accepts the following values:
8616 @table @samp
8617 @item yuv420
8618 force YUV420 output
8619
8620 @item yuv422
8621 force YUV422 output
8622
8623 @item yuv444
8624 force YUV444 output
8625
8626 @item rgb
8627 force RGB output
8628 @end table
8629
8630 Default value is @samp{yuv420}.
8631
8632 @item rgb @emph{(deprecated)}
8633 If set to 1, force the filter to accept inputs in the RGB
8634 color space. Default value is 0. This option is deprecated, use
8635 @option{format} instead.
8636
8637 @item repeatlast
8638 If set to 1, force the filter to draw the last overlay frame over the
8639 main input until the end of the stream. A value of 0 disables this
8640 behavior. Default value is 1.
8641 @end table
8642
8643 The @option{x}, and @option{y} expressions can contain the following
8644 parameters.
8645
8646 @table @option
8647 @item main_w, W
8648 @item main_h, H
8649 The main input width and height.
8650
8651 @item overlay_w, w
8652 @item overlay_h, h
8653 The overlay input width and height.
8654
8655 @item x
8656 @item y
8657 The computed values for @var{x} and @var{y}. They are evaluated for
8658 each new frame.
8659
8660 @item hsub
8661 @item vsub
8662 horizontal and vertical chroma subsample values of the output
8663 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
8664 @var{vsub} is 1.
8665
8666 @item n
8667 the number of input frame, starting from 0
8668
8669 @item pos
8670 the position in the file of the input frame, NAN if unknown
8671
8672 @item t
8673 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
8674
8675 @end table
8676
8677 Note that the @var{n}, @var{pos}, @var{t} variables are available only
8678 when evaluation is done @emph{per frame}, and will evaluate to NAN
8679 when @option{eval} is set to @samp{init}.
8680
8681 Be aware that frames are taken from each input video in timestamp
8682 order, hence, if their initial timestamps differ, it is a good idea
8683 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
8684 have them begin in the same zero timestamp, as the example for
8685 the @var{movie} filter does.
8686
8687 You can chain together more overlays but you should test the
8688 efficiency of such approach.
8689
8690 @subsection Commands
8691
8692 This filter supports the following commands:
8693 @table @option
8694 @item x
8695 @item y
8696 Modify the x and y of the overlay input.
8697 The command accepts the same syntax of the corresponding option.
8698
8699 If the specified expression is not valid, it is kept at its current
8700 value.
8701 @end table
8702
8703 @subsection Examples
8704
8705 @itemize
8706 @item
8707 Draw the overlay at 10 pixels from the bottom right corner of the main
8708 video:
8709 @example
8710 overlay=main_w-overlay_w-10:main_h-overlay_h-10
8711 @end example
8712
8713 Using named options the example above becomes:
8714 @example
8715 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
8716 @end example
8717
8718 @item
8719 Insert a transparent PNG logo in the bottom left corner of the input,
8720 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
8721 @example
8722 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
8723 @end example
8724
8725 @item
8726 Insert 2 different transparent PNG logos (second logo on bottom
8727 right corner) using the @command{ffmpeg} tool:
8728 @example
8729 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
8730 @end example
8731
8732 @item
8733 Add a transparent color layer on top of the main video; @code{WxH}
8734 must specify the size of the main input to the overlay filter:
8735 @example
8736 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
8737 @end example
8738
8739 @item
8740 Play an original video and a filtered version (here with the deshake
8741 filter) side by side using the @command{ffplay} tool:
8742 @example
8743 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
8744 @end example
8745
8746 The above command is the same as:
8747 @example
8748 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
8749 @end example
8750
8751 @item
8752 Make a sliding overlay appearing from the left to the right top part of the
8753 screen starting since time 2:
8754 @example
8755 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
8756 @end example
8757
8758 @item
8759 Compose output by putting two input videos side to side:
8760 @example
8761 ffmpeg -i left.avi -i right.avi -filter_complex "
8762 nullsrc=size=200x100 [background];
8763 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
8764 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
8765 [background][left]       overlay=shortest=1       [background+left];
8766 [background+left][right] overlay=shortest=1:x=100 [left+right]
8767 "
8768 @end example
8769
8770 @item
8771 Mask 10-20 seconds of a video by applying the delogo filter to a section
8772 @example
8773 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
8774 -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]'
8775 masked.avi
8776 @end example
8777
8778 @item
8779 Chain several overlays in cascade:
8780 @example
8781 nullsrc=s=200x200 [bg];
8782 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
8783 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
8784 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
8785 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
8786 [in3] null,       [mid2] overlay=100:100 [out0]
8787 @end example
8788
8789 @end itemize
8790
8791 @section owdenoise
8792
8793 Apply Overcomplete Wavelet denoiser.
8794
8795 The filter accepts the following options:
8796
8797 @table @option
8798 @item depth
8799 Set depth.
8800
8801 Larger depth values will denoise lower frequency components more, but
8802 slow down filtering.
8803
8804 Must be an int in the range 8-16, default is @code{8}.
8805
8806 @item luma_strength, ls
8807 Set luma strength.
8808
8809 Must be a double value in the range 0-1000, default is @code{1.0}.
8810
8811 @item chroma_strength, cs
8812 Set chroma strength.
8813
8814 Must be a double value in the range 0-1000, default is @code{1.0}.
8815 @end table
8816
8817 @anchor{pad}
8818 @section pad
8819
8820 Add paddings to the input image, and place the original input at the
8821 provided @var{x}, @var{y} coordinates.
8822
8823 It accepts the following parameters:
8824
8825 @table @option
8826 @item width, w
8827 @item height, h
8828 Specify an expression for the size of the output image with the
8829 paddings added. If the value for @var{width} or @var{height} is 0, the
8830 corresponding input size is used for the output.
8831
8832 The @var{width} expression can reference the value set by the
8833 @var{height} expression, and vice versa.
8834
8835 The default value of @var{width} and @var{height} is 0.
8836
8837 @item x
8838 @item y
8839 Specify the offsets to place the input image at within the padded area,
8840 with respect to the top/left border of the output image.
8841
8842 The @var{x} expression can reference the value set by the @var{y}
8843 expression, and vice versa.
8844
8845 The default value of @var{x} and @var{y} is 0.
8846
8847 @item color
8848 Specify the color of the padded area. For the syntax of this option,
8849 check the "Color" section in the ffmpeg-utils manual.
8850
8851 The default value of @var{color} is "black".
8852 @end table
8853
8854 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
8855 options are expressions containing the following constants:
8856
8857 @table @option
8858 @item in_w
8859 @item in_h
8860 The input video width and height.
8861
8862 @item iw
8863 @item ih
8864 These are the same as @var{in_w} and @var{in_h}.
8865
8866 @item out_w
8867 @item out_h
8868 The output width and height (the size of the padded area), as
8869 specified by the @var{width} and @var{height} expressions.
8870
8871 @item ow
8872 @item oh
8873 These are the same as @var{out_w} and @var{out_h}.
8874
8875 @item x
8876 @item y
8877 The x and y offsets as specified by the @var{x} and @var{y}
8878 expressions, or NAN if not yet specified.
8879
8880 @item a
8881 same as @var{iw} / @var{ih}
8882
8883 @item sar
8884 input sample aspect ratio
8885
8886 @item dar
8887 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8888
8889 @item hsub
8890 @item vsub
8891 The horizontal and vertical chroma subsample values. For example for the
8892 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8893 @end table
8894
8895 @subsection Examples
8896
8897 @itemize
8898 @item
8899 Add paddings with the color "violet" to the input video. The output video
8900 size is 640x480, and the top-left corner of the input video is placed at
8901 column 0, row 40
8902 @example
8903 pad=640:480:0:40:violet
8904 @end example
8905
8906 The example above is equivalent to the following command:
8907 @example
8908 pad=width=640:height=480:x=0:y=40:color=violet
8909 @end example
8910
8911 @item
8912 Pad the input to get an output with dimensions increased by 3/2,
8913 and put the input video at the center of the padded area:
8914 @example
8915 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
8916 @end example
8917
8918 @item
8919 Pad the input to get a squared output with size equal to the maximum
8920 value between the input width and height, and put the input video at
8921 the center of the padded area:
8922 @example
8923 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
8924 @end example
8925
8926 @item
8927 Pad the input to get a final w/h ratio of 16:9:
8928 @example
8929 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
8930 @end example
8931
8932 @item
8933 In case of anamorphic video, in order to set the output display aspect
8934 correctly, it is necessary to use @var{sar} in the expression,
8935 according to the relation:
8936 @example
8937 (ih * X / ih) * sar = output_dar
8938 X = output_dar / sar
8939 @end example
8940
8941 Thus the previous example needs to be modified to:
8942 @example
8943 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
8944 @end example
8945
8946 @item
8947 Double the output size and put the input video in the bottom-right
8948 corner of the output padded area:
8949 @example
8950 pad="2*iw:2*ih:ow-iw:oh-ih"
8951 @end example
8952 @end itemize
8953
8954 @anchor{palettegen}
8955 @section palettegen
8956
8957 Generate one palette for a whole video stream.
8958
8959 It accepts the following options:
8960
8961 @table @option
8962 @item max_colors
8963 Set the maximum number of colors to quantize in the palette.
8964 Note: the palette will still contain 256 colors; the unused palette entries
8965 will be black.
8966
8967 @item reserve_transparent
8968 Create a palette of 255 colors maximum and reserve the last one for
8969 transparency. Reserving the transparency color is useful for GIF optimization.
8970 If not set, the maximum of colors in the palette will be 256. You probably want
8971 to disable this option for a standalone image.
8972 Set by default.
8973
8974 @item stats_mode
8975 Set statistics mode.
8976
8977 It accepts the following values:
8978 @table @samp
8979 @item full
8980 Compute full frame histograms.
8981 @item diff
8982 Compute histograms only for the part that differs from previous frame. This
8983 might be relevant to give more importance to the moving part of your input if
8984 the background is static.
8985 @end table
8986
8987 Default value is @var{full}.
8988 @end table
8989
8990 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8991 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8992 color quantization of the palette. This information is also visible at
8993 @var{info} logging level.
8994
8995 @subsection Examples
8996
8997 @itemize
8998 @item
8999 Generate a representative palette of a given video using @command{ffmpeg}:
9000 @example
9001 ffmpeg -i input.mkv -vf palettegen palette.png
9002 @end example
9003 @end itemize
9004
9005 @section paletteuse
9006
9007 Use a palette to downsample an input video stream.
9008
9009 The filter takes two inputs: one video stream and a palette. The palette must
9010 be a 256 pixels image.
9011
9012 It accepts the following options:
9013
9014 @table @option
9015 @item dither
9016 Select dithering mode. Available algorithms are:
9017 @table @samp
9018 @item bayer
9019 Ordered 8x8 bayer dithering (deterministic)
9020 @item heckbert
9021 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
9022 Note: this dithering is sometimes considered "wrong" and is included as a
9023 reference.
9024 @item floyd_steinberg
9025 Floyd and Steingberg dithering (error diffusion)
9026 @item sierra2
9027 Frankie Sierra dithering v2 (error diffusion)
9028 @item sierra2_4a
9029 Frankie Sierra dithering v2 "Lite" (error diffusion)
9030 @end table
9031
9032 Default is @var{sierra2_4a}.
9033
9034 @item bayer_scale
9035 When @var{bayer} dithering is selected, this option defines the scale of the
9036 pattern (how much the crosshatch pattern is visible). A low value means more
9037 visible pattern for less banding, and higher value means less visible pattern
9038 at the cost of more banding.
9039
9040 The option must be an integer value in the range [0,5]. Default is @var{2}.
9041
9042 @item diff_mode
9043 If set, define the zone to process
9044
9045 @table @samp
9046 @item rectangle
9047 Only the changing rectangle will be reprocessed. This is similar to GIF
9048 cropping/offsetting compression mechanism. This option can be useful for speed
9049 if only a part of the image is changing, and has use cases such as limiting the
9050 scope of the error diffusal @option{dither} to the rectangle that bounds the
9051 moving scene (it leads to more deterministic output if the scene doesn't change
9052 much, and as a result less moving noise and better GIF compression).
9053 @end table
9054
9055 Default is @var{none}.
9056 @end table
9057
9058 @subsection Examples
9059
9060 @itemize
9061 @item
9062 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
9063 using @command{ffmpeg}:
9064 @example
9065 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
9066 @end example
9067 @end itemize
9068
9069 @section perspective
9070
9071 Correct perspective of video not recorded perpendicular to the screen.
9072
9073 A description of the accepted parameters follows.
9074
9075 @table @option
9076 @item x0
9077 @item y0
9078 @item x1
9079 @item y1
9080 @item x2
9081 @item y2
9082 @item x3
9083 @item y3
9084 Set coordinates expression for top left, top right, bottom left and bottom right corners.
9085 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
9086 If the @code{sense} option is set to @code{source}, then the specified points will be sent
9087 to the corners of the destination. If the @code{sense} option is set to @code{destination},
9088 then the corners of the source will be sent to the specified coordinates.
9089
9090 The expressions can use the following variables:
9091
9092 @table @option
9093 @item W
9094 @item H
9095 the width and height of video frame.
9096 @end table
9097
9098 @item interpolation
9099 Set interpolation for perspective correction.
9100
9101 It accepts the following values:
9102 @table @samp
9103 @item linear
9104 @item cubic
9105 @end table
9106
9107 Default value is @samp{linear}.
9108
9109 @item sense
9110 Set interpretation of coordinate options.
9111
9112 It accepts the following values:
9113 @table @samp
9114 @item 0, source
9115
9116 Send point in the source specified by the given coordinates to
9117 the corners of the destination.
9118
9119 @item 1, destination
9120
9121 Send the corners of the source to the point in the destination specified
9122 by the given coordinates.
9123
9124 Default value is @samp{source}.
9125 @end table
9126 @end table
9127
9128 @section phase
9129
9130 Delay interlaced video by one field time so that the field order changes.
9131
9132 The intended use is to fix PAL movies that have been captured with the
9133 opposite field order to the film-to-video transfer.
9134
9135 A description of the accepted parameters follows.
9136
9137 @table @option
9138 @item mode
9139 Set phase mode.
9140
9141 It accepts the following values:
9142 @table @samp
9143 @item t
9144 Capture field order top-first, transfer bottom-first.
9145 Filter will delay the bottom field.
9146
9147 @item b
9148 Capture field order bottom-first, transfer top-first.
9149 Filter will delay the top field.
9150
9151 @item p
9152 Capture and transfer with the same field order. This mode only exists
9153 for the documentation of the other options to refer to, but if you
9154 actually select it, the filter will faithfully do nothing.
9155
9156 @item a
9157 Capture field order determined automatically by field flags, transfer
9158 opposite.
9159 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
9160 basis using field flags. If no field information is available,
9161 then this works just like @samp{u}.
9162
9163 @item u
9164 Capture unknown or varying, transfer opposite.
9165 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
9166 analyzing the images and selecting the alternative that produces best
9167 match between the fields.
9168
9169 @item T
9170 Capture top-first, transfer unknown or varying.
9171 Filter selects among @samp{t} and @samp{p} using image analysis.
9172
9173 @item B
9174 Capture bottom-first, transfer unknown or varying.
9175 Filter selects among @samp{b} and @samp{p} using image analysis.
9176
9177 @item A
9178 Capture determined by field flags, transfer unknown or varying.
9179 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
9180 image analysis. If no field information is available, then this works just
9181 like @samp{U}. This is the default mode.
9182
9183 @item U
9184 Both capture and transfer unknown or varying.
9185 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
9186 @end table
9187 @end table
9188
9189 @section pixdesctest
9190
9191 Pixel format descriptor test filter, mainly useful for internal
9192 testing. The output video should be equal to the input video.
9193
9194 For example:
9195 @example
9196 format=monow, pixdesctest
9197 @end example
9198
9199 can be used to test the monowhite pixel format descriptor definition.
9200
9201 @section pp
9202
9203 Enable the specified chain of postprocessing subfilters using libpostproc. This
9204 library should be automatically selected with a GPL build (@code{--enable-gpl}).
9205 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
9206 Each subfilter and some options have a short and a long name that can be used
9207 interchangeably, i.e. dr/dering are the same.
9208
9209 The filters accept the following options:
9210
9211 @table @option
9212 @item subfilters
9213 Set postprocessing subfilters string.
9214 @end table
9215
9216 All subfilters share common options to determine their scope:
9217
9218 @table @option
9219 @item a/autoq
9220 Honor the quality commands for this subfilter.
9221
9222 @item c/chrom
9223 Do chrominance filtering, too (default).
9224
9225 @item y/nochrom
9226 Do luminance filtering only (no chrominance).
9227
9228 @item n/noluma
9229 Do chrominance filtering only (no luminance).
9230 @end table
9231
9232 These options can be appended after the subfilter name, separated by a '|'.
9233
9234 Available subfilters are:
9235
9236 @table @option
9237 @item hb/hdeblock[|difference[|flatness]]
9238 Horizontal deblocking filter
9239 @table @option
9240 @item difference
9241 Difference factor where higher values mean more deblocking (default: @code{32}).
9242 @item flatness
9243 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9244 @end table
9245
9246 @item vb/vdeblock[|difference[|flatness]]
9247 Vertical deblocking filter
9248 @table @option
9249 @item difference
9250 Difference factor where higher values mean more deblocking (default: @code{32}).
9251 @item flatness
9252 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9253 @end table
9254
9255 @item ha/hadeblock[|difference[|flatness]]
9256 Accurate horizontal deblocking filter
9257 @table @option
9258 @item difference
9259 Difference factor where higher values mean more deblocking (default: @code{32}).
9260 @item flatness
9261 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9262 @end table
9263
9264 @item va/vadeblock[|difference[|flatness]]
9265 Accurate vertical deblocking filter
9266 @table @option
9267 @item difference
9268 Difference factor where higher values mean more deblocking (default: @code{32}).
9269 @item flatness
9270 Flatness threshold where lower values mean more deblocking (default: @code{39}).
9271 @end table
9272 @end table
9273
9274 The horizontal and vertical deblocking filters share the difference and
9275 flatness values so you cannot set different horizontal and vertical
9276 thresholds.
9277
9278 @table @option
9279 @item h1/x1hdeblock
9280 Experimental horizontal deblocking filter
9281
9282 @item v1/x1vdeblock
9283 Experimental vertical deblocking filter
9284
9285 @item dr/dering
9286 Deringing filter
9287
9288 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
9289 @table @option
9290 @item threshold1
9291 larger -> stronger filtering
9292 @item threshold2
9293 larger -> stronger filtering
9294 @item threshold3
9295 larger -> stronger filtering
9296 @end table
9297
9298 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
9299 @table @option
9300 @item f/fullyrange
9301 Stretch luminance to @code{0-255}.
9302 @end table
9303
9304 @item lb/linblenddeint
9305 Linear blend deinterlacing filter that deinterlaces the given block by
9306 filtering all lines with a @code{(1 2 1)} filter.
9307
9308 @item li/linipoldeint
9309 Linear interpolating deinterlacing filter that deinterlaces the given block by
9310 linearly interpolating every second line.
9311
9312 @item ci/cubicipoldeint
9313 Cubic interpolating deinterlacing filter deinterlaces the given block by
9314 cubically interpolating every second line.
9315
9316 @item md/mediandeint
9317 Median deinterlacing filter that deinterlaces the given block by applying a
9318 median filter to every second line.
9319
9320 @item fd/ffmpegdeint
9321 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
9322 second line with a @code{(-1 4 2 4 -1)} filter.
9323
9324 @item l5/lowpass5
9325 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
9326 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
9327
9328 @item fq/forceQuant[|quantizer]
9329 Overrides the quantizer table from the input with the constant quantizer you
9330 specify.
9331 @table @option
9332 @item quantizer
9333 Quantizer to use
9334 @end table
9335
9336 @item de/default
9337 Default pp filter combination (@code{hb|a,vb|a,dr|a})
9338
9339 @item fa/fast
9340 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
9341
9342 @item ac
9343 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
9344 @end table
9345
9346 @subsection Examples
9347
9348 @itemize
9349 @item
9350 Apply horizontal and vertical deblocking, deringing and automatic
9351 brightness/contrast:
9352 @example
9353 pp=hb/vb/dr/al
9354 @end example
9355
9356 @item
9357 Apply default filters without brightness/contrast correction:
9358 @example
9359 pp=de/-al
9360 @end example
9361
9362 @item
9363 Apply default filters and temporal denoiser:
9364 @example
9365 pp=default/tmpnoise|1|2|3
9366 @end example
9367
9368 @item
9369 Apply deblocking on luminance only, and switch vertical deblocking on or off
9370 automatically depending on available CPU time:
9371 @example
9372 pp=hb|y/vb|a
9373 @end example
9374 @end itemize
9375
9376 @section pp7
9377 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
9378 similar to spp = 6 with 7 point DCT, where only the center sample is
9379 used after IDCT.
9380
9381 The filter accepts the following options:
9382
9383 @table @option
9384 @item qp
9385 Force a constant quantization parameter. It accepts an integer in range
9386 0 to 63. If not set, the filter will use the QP from the video stream
9387 (if available).
9388
9389 @item mode
9390 Set thresholding mode. Available modes are:
9391
9392 @table @samp
9393 @item hard
9394 Set hard thresholding.
9395 @item soft
9396 Set soft thresholding (better de-ringing effect, but likely blurrier).
9397 @item medium
9398 Set medium thresholding (good results, default).
9399 @end table
9400 @end table
9401
9402 @section psnr
9403
9404 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
9405 Ratio) between two input videos.
9406
9407 This filter takes in input two input videos, the first input is
9408 considered the "main" source and is passed unchanged to the
9409 output. The second input is used as a "reference" video for computing
9410 the PSNR.
9411
9412 Both video inputs must have the same resolution and pixel format for
9413 this filter to work correctly. Also it assumes that both inputs
9414 have the same number of frames, which are compared one by one.
9415
9416 The obtained average PSNR is printed through the logging system.
9417
9418 The filter stores the accumulated MSE (mean squared error) of each
9419 frame, and at the end of the processing it is averaged across all frames
9420 equally, and the following formula is applied to obtain the PSNR:
9421
9422 @example
9423 PSNR = 10*log10(MAX^2/MSE)
9424 @end example
9425
9426 Where MAX is the average of the maximum values of each component of the
9427 image.
9428
9429 The description of the accepted parameters follows.
9430
9431 @table @option
9432 @item stats_file, f
9433 If specified the filter will use the named file to save the PSNR of
9434 each individual frame. When filename equals "-" the data is sent to
9435 standard output.
9436 @end table
9437
9438 The file printed if @var{stats_file} is selected, contains a sequence of
9439 key/value pairs of the form @var{key}:@var{value} for each compared
9440 couple of frames.
9441
9442 A description of each shown parameter follows:
9443
9444 @table @option
9445 @item n
9446 sequential number of the input frame, starting from 1
9447
9448 @item mse_avg
9449 Mean Square Error pixel-by-pixel average difference of the compared
9450 frames, averaged over all the image components.
9451
9452 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
9453 Mean Square Error pixel-by-pixel average difference of the compared
9454 frames for the component specified by the suffix.
9455
9456 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
9457 Peak Signal to Noise ratio of the compared frames for the component
9458 specified by the suffix.
9459 @end table
9460
9461 For example:
9462 @example
9463 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
9464 [main][ref] psnr="stats_file=stats.log" [out]
9465 @end example
9466
9467 On this example the input file being processed is compared with the
9468 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
9469 is stored in @file{stats.log}.
9470
9471 @anchor{pullup}
9472 @section pullup
9473
9474 Pulldown reversal (inverse telecine) filter, capable of handling mixed
9475 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
9476 content.
9477
9478 The pullup filter is designed to take advantage of future context in making
9479 its decisions. This filter is stateless in the sense that it does not lock
9480 onto a pattern to follow, but it instead looks forward to the following
9481 fields in order to identify matches and rebuild progressive frames.
9482
9483 To produce content with an even framerate, insert the fps filter after
9484 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
9485 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
9486
9487 The filter accepts the following options:
9488
9489 @table @option
9490 @item jl
9491 @item jr
9492 @item jt
9493 @item jb
9494 These options set the amount of "junk" to ignore at the left, right, top, and
9495 bottom of the image, respectively. Left and right are in units of 8 pixels,
9496 while top and bottom are in units of 2 lines.
9497 The default is 8 pixels on each side.
9498
9499 @item sb
9500 Set the strict breaks. Setting this option to 1 will reduce the chances of
9501 filter generating an occasional mismatched frame, but it may also cause an
9502 excessive number of frames to be dropped during high motion sequences.
9503 Conversely, setting it to -1 will make filter match fields more easily.
9504 This may help processing of video where there is slight blurring between
9505 the fields, but may also cause there to be interlaced frames in the output.
9506 Default value is @code{0}.
9507
9508 @item mp
9509 Set the metric plane to use. It accepts the following values:
9510 @table @samp
9511 @item l
9512 Use luma plane.
9513
9514 @item u
9515 Use chroma blue plane.
9516
9517 @item v
9518 Use chroma red plane.
9519 @end table
9520
9521 This option may be set to use chroma plane instead of the default luma plane
9522 for doing filter's computations. This may improve accuracy on very clean
9523 source material, but more likely will decrease accuracy, especially if there
9524 is chroma noise (rainbow effect) or any grayscale video.
9525 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
9526 load and make pullup usable in realtime on slow machines.
9527 @end table
9528
9529 For best results (without duplicated frames in the output file) it is
9530 necessary to change the output frame rate. For example, to inverse
9531 telecine NTSC input:
9532 @example
9533 ffmpeg -i input -vf pullup -r 24000/1001 ...
9534 @end example
9535
9536 @section qp
9537
9538 Change video quantization parameters (QP).
9539
9540 The filter accepts the following option:
9541
9542 @table @option
9543 @item qp
9544 Set expression for quantization parameter.
9545 @end table
9546
9547 The expression is evaluated through the eval API and can contain, among others,
9548 the following constants:
9549
9550 @table @var
9551 @item known
9552 1 if index is not 129, 0 otherwise.
9553
9554 @item qp
9555 Sequentional index starting from -129 to 128.
9556 @end table
9557
9558 @subsection Examples
9559
9560 @itemize
9561 @item
9562 Some equation like:
9563 @example
9564 qp=2+2*sin(PI*qp)
9565 @end example
9566 @end itemize
9567
9568 @section random
9569
9570 Flush video frames from internal cache of frames into a random order.
9571 No frame is discarded.
9572 Inspired by @ref{frei0r} nervous filter.
9573
9574 @table @option
9575 @item frames
9576 Set size in number of frames of internal cache, in range from @code{2} to
9577 @code{512}. Default is @code{30}.
9578
9579 @item seed
9580 Set seed for random number generator, must be an integer included between
9581 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9582 less than @code{0}, the filter will try to use a good random seed on a
9583 best effort basis.
9584 @end table
9585
9586 @section removegrain
9587
9588 The removegrain filter is a spatial denoiser for progressive video.
9589
9590 @table @option
9591 @item m0
9592 Set mode for the first plane.
9593
9594 @item m1
9595 Set mode for the second plane.
9596
9597 @item m2
9598 Set mode for the third plane.
9599
9600 @item m3
9601 Set mode for the fourth plane.
9602 @end table
9603
9604 Range of mode is from 0 to 24. Description of each mode follows:
9605
9606 @table @var
9607 @item 0
9608 Leave input plane unchanged. Default.
9609
9610 @item 1
9611 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
9612
9613 @item 2
9614 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
9615
9616 @item 3
9617 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
9618
9619 @item 4
9620 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
9621 This is equivalent to a median filter.
9622
9623 @item 5
9624 Line-sensitive clipping giving the minimal change.
9625
9626 @item 6
9627 Line-sensitive clipping, intermediate.
9628
9629 @item 7
9630 Line-sensitive clipping, intermediate.
9631
9632 @item 8
9633 Line-sensitive clipping, intermediate.
9634
9635 @item 9
9636 Line-sensitive clipping on a line where the neighbours pixels are the closest.
9637
9638 @item 10
9639 Replaces the target pixel with the closest neighbour.
9640
9641 @item 11
9642 [1 2 1] horizontal and vertical kernel blur.
9643
9644 @item 12
9645 Same as mode 11.
9646
9647 @item 13
9648 Bob mode, interpolates top field from the line where the neighbours
9649 pixels are the closest.
9650
9651 @item 14
9652 Bob mode, interpolates bottom field from the line where the neighbours
9653 pixels are the closest.
9654
9655 @item 15
9656 Bob mode, interpolates top field. Same as 13 but with a more complicated
9657 interpolation formula.
9658
9659 @item 16
9660 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
9661 interpolation formula.
9662
9663 @item 17
9664 Clips the pixel with the minimum and maximum of respectively the maximum and
9665 minimum of each pair of opposite neighbour pixels.
9666
9667 @item 18
9668 Line-sensitive clipping using opposite neighbours whose greatest distance from
9669 the current pixel is minimal.
9670
9671 @item 19
9672 Replaces the pixel with the average of its 8 neighbours.
9673
9674 @item 20
9675 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
9676
9677 @item 21
9678 Clips pixels using the averages of opposite neighbour.
9679
9680 @item 22
9681 Same as mode 21 but simpler and faster.
9682
9683 @item 23
9684 Small edge and halo removal, but reputed useless.
9685
9686 @item 24
9687 Similar as 23.
9688 @end table
9689
9690 @section removelogo
9691
9692 Suppress a TV station logo, using an image file to determine which
9693 pixels comprise the logo. It works by filling in the pixels that
9694 comprise the logo with neighboring pixels.
9695
9696 The filter accepts the following options:
9697
9698 @table @option
9699 @item filename, f
9700 Set the filter bitmap file, which can be any image format supported by
9701 libavformat. The width and height of the image file must match those of the
9702 video stream being processed.
9703 @end table
9704
9705 Pixels in the provided bitmap image with a value of zero are not
9706 considered part of the logo, non-zero pixels are considered part of
9707 the logo. If you use white (255) for the logo and black (0) for the
9708 rest, you will be safe. For making the filter bitmap, it is
9709 recommended to take a screen capture of a black frame with the logo
9710 visible, and then using a threshold filter followed by the erode
9711 filter once or twice.
9712
9713 If needed, little splotches can be fixed manually. Remember that if
9714 logo pixels are not covered, the filter quality will be much
9715 reduced. Marking too many pixels as part of the logo does not hurt as
9716 much, but it will increase the amount of blurring needed to cover over
9717 the image and will destroy more information than necessary, and extra
9718 pixels will slow things down on a large logo.
9719
9720 @section repeatfields
9721
9722 This filter uses the repeat_field flag from the Video ES headers and hard repeats
9723 fields based on its value.
9724
9725 @section reverse, areverse
9726
9727 Reverse a clip.
9728
9729 Warning: This filter requires memory to buffer the entire clip, so trimming
9730 is suggested.
9731
9732 @subsection Examples
9733
9734 @itemize
9735 @item
9736 Take the first 5 seconds of a clip, and reverse it.
9737 @example
9738 trim=end=5,reverse
9739 @end example
9740 @end itemize
9741
9742 @section rotate
9743
9744 Rotate video by an arbitrary angle expressed in radians.
9745
9746 The filter accepts the following options:
9747
9748 A description of the optional parameters follows.
9749 @table @option
9750 @item angle, a
9751 Set an expression for the angle by which to rotate the input video
9752 clockwise, expressed as a number of radians. A negative value will
9753 result in a counter-clockwise rotation. By default it is set to "0".
9754
9755 This expression is evaluated for each frame.
9756
9757 @item out_w, ow
9758 Set the output width expression, default value is "iw".
9759 This expression is evaluated just once during configuration.
9760
9761 @item out_h, oh
9762 Set the output height expression, default value is "ih".
9763 This expression is evaluated just once during configuration.
9764
9765 @item bilinear
9766 Enable bilinear interpolation if set to 1, a value of 0 disables
9767 it. Default value is 1.
9768
9769 @item fillcolor, c
9770 Set the color used to fill the output area not covered by the rotated
9771 image. For the general syntax of this option, check the "Color" section in the
9772 ffmpeg-utils manual. If the special value "none" is selected then no
9773 background is printed (useful for example if the background is never shown).
9774
9775 Default value is "black".
9776 @end table
9777
9778 The expressions for the angle and the output size can contain the
9779 following constants and functions:
9780
9781 @table @option
9782 @item n
9783 sequential number of the input frame, starting from 0. It is always NAN
9784 before the first frame is filtered.
9785
9786 @item t
9787 time in seconds of the input frame, it is set to 0 when the filter is
9788 configured. It is always NAN before the first frame is filtered.
9789
9790 @item hsub
9791 @item vsub
9792 horizontal and vertical chroma subsample values. For example for the
9793 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9794
9795 @item in_w, iw
9796 @item in_h, ih
9797 the input video width and height
9798
9799 @item out_w, ow
9800 @item out_h, oh
9801 the output width and height, that is the size of the padded area as
9802 specified by the @var{width} and @var{height} expressions
9803
9804 @item rotw(a)
9805 @item roth(a)
9806 the minimal width/height required for completely containing the input
9807 video rotated by @var{a} radians.
9808
9809 These are only available when computing the @option{out_w} and
9810 @option{out_h} expressions.
9811 @end table
9812
9813 @subsection Examples
9814
9815 @itemize
9816 @item
9817 Rotate the input by PI/6 radians clockwise:
9818 @example
9819 rotate=PI/6
9820 @end example
9821
9822 @item
9823 Rotate the input by PI/6 radians counter-clockwise:
9824 @example
9825 rotate=-PI/6
9826 @end example
9827
9828 @item
9829 Rotate the input by 45 degrees clockwise:
9830 @example
9831 rotate=45*PI/180
9832 @end example
9833
9834 @item
9835 Apply a constant rotation with period T, starting from an angle of PI/3:
9836 @example
9837 rotate=PI/3+2*PI*t/T
9838 @end example
9839
9840 @item
9841 Make the input video rotation oscillating with a period of T
9842 seconds and an amplitude of A radians:
9843 @example
9844 rotate=A*sin(2*PI/T*t)
9845 @end example
9846
9847 @item
9848 Rotate the video, output size is chosen so that the whole rotating
9849 input video is always completely contained in the output:
9850 @example
9851 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
9852 @end example
9853
9854 @item
9855 Rotate the video, reduce the output size so that no background is ever
9856 shown:
9857 @example
9858 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
9859 @end example
9860 @end itemize
9861
9862 @subsection Commands
9863
9864 The filter supports the following commands:
9865
9866 @table @option
9867 @item a, angle
9868 Set the angle expression.
9869 The command accepts the same syntax of the corresponding option.
9870
9871 If the specified expression is not valid, it is kept at its current
9872 value.
9873 @end table
9874
9875 @section sab
9876
9877 Apply Shape Adaptive Blur.
9878
9879 The filter accepts the following options:
9880
9881 @table @option
9882 @item luma_radius, lr
9883 Set luma blur filter strength, must be a value in range 0.1-4.0, default
9884 value is 1.0. A greater value will result in a more blurred image, and
9885 in slower processing.
9886
9887 @item luma_pre_filter_radius, lpfr
9888 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
9889 value is 1.0.
9890
9891 @item luma_strength, ls
9892 Set luma maximum difference between pixels to still be considered, must
9893 be a value in the 0.1-100.0 range, default value is 1.0.
9894
9895 @item chroma_radius, cr
9896 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
9897 greater value will result in a more blurred image, and in slower
9898 processing.
9899
9900 @item chroma_pre_filter_radius, cpfr
9901 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
9902
9903 @item chroma_strength, cs
9904 Set chroma maximum difference between pixels to still be considered,
9905 must be a value in the 0.1-100.0 range.
9906 @end table
9907
9908 Each chroma option value, if not explicitly specified, is set to the
9909 corresponding luma option value.
9910
9911 @anchor{scale}
9912 @section scale
9913
9914 Scale (resize) the input video, using the libswscale library.
9915
9916 The scale filter forces the output display aspect ratio to be the same
9917 of the input, by changing the output sample aspect ratio.
9918
9919 If the input image format is different from the format requested by
9920 the next filter, the scale filter will convert the input to the
9921 requested format.
9922
9923 @subsection Options
9924 The filter accepts the following options, or any of the options
9925 supported by the libswscale scaler.
9926
9927 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
9928 the complete list of scaler options.
9929
9930 @table @option
9931 @item width, w
9932 @item height, h
9933 Set the output video dimension expression. Default value is the input
9934 dimension.
9935
9936 If the value is 0, the input width is used for the output.
9937
9938 If one of the values is -1, the scale filter will use a value that
9939 maintains the aspect ratio of the input image, calculated from the
9940 other specified dimension. If both of them are -1, the input size is
9941 used
9942
9943 If one of the values is -n with n > 1, the scale filter will also use a value
9944 that maintains the aspect ratio of the input image, calculated from the other
9945 specified dimension. After that it will, however, make sure that the calculated
9946 dimension is divisible by n and adjust the value if necessary.
9947
9948 See below for the list of accepted constants for use in the dimension
9949 expression.
9950
9951 @item interl
9952 Set the interlacing mode. It accepts the following values:
9953
9954 @table @samp
9955 @item 1
9956 Force interlaced aware scaling.
9957
9958 @item 0
9959 Do not apply interlaced scaling.
9960
9961 @item -1
9962 Select interlaced aware scaling depending on whether the source frames
9963 are flagged as interlaced or not.
9964 @end table
9965
9966 Default value is @samp{0}.
9967
9968 @item flags
9969 Set libswscale scaling flags. See
9970 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9971 complete list of values. If not explicitly specified the filter applies
9972 the default flags.
9973
9974 @item size, s
9975 Set the video size. For the syntax of this option, check the
9976 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9977
9978 @item in_color_matrix
9979 @item out_color_matrix
9980 Set in/output YCbCr color space type.
9981
9982 This allows the autodetected value to be overridden as well as allows forcing
9983 a specific value used for the output and encoder.
9984
9985 If not specified, the color space type depends on the pixel format.
9986
9987 Possible values:
9988
9989 @table @samp
9990 @item auto
9991 Choose automatically.
9992
9993 @item bt709
9994 Format conforming to International Telecommunication Union (ITU)
9995 Recommendation BT.709.
9996
9997 @item fcc
9998 Set color space conforming to the United States Federal Communications
9999 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
10000
10001 @item bt601
10002 Set color space conforming to:
10003
10004 @itemize
10005 @item
10006 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
10007
10008 @item
10009 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
10010
10011 @item
10012 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
10013
10014 @end itemize
10015
10016 @item smpte240m
10017 Set color space conforming to SMPTE ST 240:1999.
10018 @end table
10019
10020 @item in_range
10021 @item out_range
10022 Set in/output YCbCr sample range.
10023
10024 This allows the autodetected value to be overridden as well as allows forcing
10025 a specific value used for the output and encoder. If not specified, the
10026 range depends on the pixel format. Possible values:
10027
10028 @table @samp
10029 @item auto
10030 Choose automatically.
10031
10032 @item jpeg/full/pc
10033 Set full range (0-255 in case of 8-bit luma).
10034
10035 @item mpeg/tv
10036 Set "MPEG" range (16-235 in case of 8-bit luma).
10037 @end table
10038
10039 @item force_original_aspect_ratio
10040 Enable decreasing or increasing output video width or height if necessary to
10041 keep the original aspect ratio. Possible values:
10042
10043 @table @samp
10044 @item disable
10045 Scale the video as specified and disable this feature.
10046
10047 @item decrease
10048 The output video dimensions will automatically be decreased if needed.
10049
10050 @item increase
10051 The output video dimensions will automatically be increased if needed.
10052
10053 @end table
10054
10055 One useful instance of this option is that when you know a specific device's
10056 maximum allowed resolution, you can use this to limit the output video to
10057 that, while retaining the aspect ratio. For example, device A allows
10058 1280x720 playback, and your video is 1920x800. Using this option (set it to
10059 decrease) and specifying 1280x720 to the command line makes the output
10060 1280x533.
10061
10062 Please note that this is a different thing than specifying -1 for @option{w}
10063 or @option{h}, you still need to specify the output resolution for this option
10064 to work.
10065
10066 @end table
10067
10068 The values of the @option{w} and @option{h} options are expressions
10069 containing the following constants:
10070
10071 @table @var
10072 @item in_w
10073 @item in_h
10074 The input width and height
10075
10076 @item iw
10077 @item ih
10078 These are the same as @var{in_w} and @var{in_h}.
10079
10080 @item out_w
10081 @item out_h
10082 The output (scaled) width and height
10083
10084 @item ow
10085 @item oh
10086 These are the same as @var{out_w} and @var{out_h}
10087
10088 @item a
10089 The same as @var{iw} / @var{ih}
10090
10091 @item sar
10092 input sample aspect ratio
10093
10094 @item dar
10095 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
10096
10097 @item hsub
10098 @item vsub
10099 horizontal and vertical input chroma subsample values. For example for the
10100 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10101
10102 @item ohsub
10103 @item ovsub
10104 horizontal and vertical output chroma subsample values. For example for the
10105 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10106 @end table
10107
10108 @subsection Examples
10109
10110 @itemize
10111 @item
10112 Scale the input video to a size of 200x100
10113 @example
10114 scale=w=200:h=100
10115 @end example
10116
10117 This is equivalent to:
10118 @example
10119 scale=200:100
10120 @end example
10121
10122 or:
10123 @example
10124 scale=200x100
10125 @end example
10126
10127 @item
10128 Specify a size abbreviation for the output size:
10129 @example
10130 scale=qcif
10131 @end example
10132
10133 which can also be written as:
10134 @example
10135 scale=size=qcif
10136 @end example
10137
10138 @item
10139 Scale the input to 2x:
10140 @example
10141 scale=w=2*iw:h=2*ih
10142 @end example
10143
10144 @item
10145 The above is the same as:
10146 @example
10147 scale=2*in_w:2*in_h
10148 @end example
10149
10150 @item
10151 Scale the input to 2x with forced interlaced scaling:
10152 @example
10153 scale=2*iw:2*ih:interl=1
10154 @end example
10155
10156 @item
10157 Scale the input to half size:
10158 @example
10159 scale=w=iw/2:h=ih/2
10160 @end example
10161
10162 @item
10163 Increase the width, and set the height to the same size:
10164 @example
10165 scale=3/2*iw:ow
10166 @end example
10167
10168 @item
10169 Seek Greek harmony:
10170 @example
10171 scale=iw:1/PHI*iw
10172 scale=ih*PHI:ih
10173 @end example
10174
10175 @item
10176 Increase the height, and set the width to 3/2 of the height:
10177 @example
10178 scale=w=3/2*oh:h=3/5*ih
10179 @end example
10180
10181 @item
10182 Increase the size, making the size a multiple of the chroma
10183 subsample values:
10184 @example
10185 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
10186 @end example
10187
10188 @item
10189 Increase the width to a maximum of 500 pixels,
10190 keeping the same aspect ratio as the input:
10191 @example
10192 scale=w='min(500\, iw*3/2):h=-1'
10193 @end example
10194 @end itemize
10195
10196 @subsection Commands
10197
10198 This filter supports the following commands:
10199 @table @option
10200 @item width, w
10201 @item height, h
10202 Set the output video dimension expression.
10203 The command accepts the same syntax of the corresponding option.
10204
10205 If the specified expression is not valid, it is kept at its current
10206 value.
10207 @end table
10208
10209 @section scale2ref
10210
10211 Scale (resize) the input video, based on a reference video.
10212
10213 See the scale filter for available options, scale2ref supports the same but
10214 uses the reference video instead of the main input as basis.
10215
10216 @subsection Examples
10217
10218 @itemize
10219 @item
10220 Scale a subtitle stream to match the main video in size before overlaying
10221 @example
10222 'scale2ref[b][a];[a][b]overlay'
10223 @end example
10224 @end itemize
10225
10226 @section selectivecolor
10227
10228 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
10229 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
10230 by the "purity" of the color (that is, how saturated it already is).
10231
10232 This filter is similar to the Adobe Photoshop Selective Color tool.
10233
10234 The filter accepts the following options:
10235
10236 @table @option
10237 @item correction_method
10238 Select color correction method.
10239
10240 Available values are:
10241 @table @samp
10242 @item absolute
10243 Specified adjustments are applied "as-is" (added/subtracted to original pixel
10244 component value).
10245 @item relative
10246 Specified adjustments are relative to the original component value.
10247 @end table
10248 Default is @code{absolute}.
10249 @item reds
10250 Adjustments for red pixels (pixels where the red component is the maximum)
10251 @item yellows
10252 Adjustments for yellow pixels (pixels where the blue component is the minimum)
10253 @item greens
10254 Adjustments for green pixels (pixels where the green component is the maximum)
10255 @item cyans
10256 Adjustments for cyan pixels (pixels where the red component is the minimum)
10257 @item blues
10258 Adjustments for blue pixels (pixels where the blue component is the maximum)
10259 @item magentas
10260 Adjustments for magenta pixels (pixels where the green component is the minimum)
10261 @item whites
10262 Adjustments for white pixels (pixels where all components are greater than 128)
10263 @item neutrals
10264 Adjustments for all pixels except pure black and pure white
10265 @item blacks
10266 Adjustments for black pixels (pixels where all components are lesser than 128)
10267 @item psfile
10268 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
10269 @end table
10270
10271 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
10272 4 space separated floating point adjustment values in the [-1,1] range,
10273 respectively to adjust the amount of cyan, magenta, yellow and black for the
10274 pixels of its range.
10275
10276 @subsection Examples
10277
10278 @itemize
10279 @item
10280 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
10281 increase magenta by 27% in blue areas:
10282 @example
10283 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
10284 @end example
10285
10286 @item
10287 Use a Photoshop selective color preset:
10288 @example
10289 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
10290 @end example
10291 @end itemize
10292
10293 @section separatefields
10294
10295 The @code{separatefields} takes a frame-based video input and splits
10296 each frame into its components fields, producing a new half height clip
10297 with twice the frame rate and twice the frame count.
10298
10299 This filter use field-dominance information in frame to decide which
10300 of each pair of fields to place first in the output.
10301 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
10302
10303 @section setdar, setsar
10304
10305 The @code{setdar} filter sets the Display Aspect Ratio for the filter
10306 output video.
10307
10308 This is done by changing the specified Sample (aka Pixel) Aspect
10309 Ratio, according to the following equation:
10310 @example
10311 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
10312 @end example
10313
10314 Keep in mind that the @code{setdar} filter does not modify the pixel
10315 dimensions of the video frame. Also, the display aspect ratio set by
10316 this filter may be changed by later filters in the filterchain,
10317 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
10318 applied.
10319
10320 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
10321 the filter output video.
10322
10323 Note that as a consequence of the application of this filter, the
10324 output display aspect ratio will change according to the equation
10325 above.
10326
10327 Keep in mind that the sample aspect ratio set by the @code{setsar}
10328 filter may be changed by later filters in the filterchain, e.g. if
10329 another "setsar" or a "setdar" filter is applied.
10330
10331 It accepts the following parameters:
10332
10333 @table @option
10334 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
10335 Set the aspect ratio used by the filter.
10336
10337 The parameter can be a floating point number string, an expression, or
10338 a string of the form @var{num}:@var{den}, where @var{num} and
10339 @var{den} are the numerator and denominator of the aspect ratio. If
10340 the parameter is not specified, it is assumed the value "0".
10341 In case the form "@var{num}:@var{den}" is used, the @code{:} character
10342 should be escaped.
10343
10344 @item max
10345 Set the maximum integer value to use for expressing numerator and
10346 denominator when reducing the expressed aspect ratio to a rational.
10347 Default value is @code{100}.
10348
10349 @end table
10350
10351 The parameter @var{sar} is an expression containing
10352 the following constants:
10353
10354 @table @option
10355 @item E, PI, PHI
10356 These are approximated values for the mathematical constants e
10357 (Euler's number), pi (Greek pi), and phi (the golden ratio).
10358
10359 @item w, h
10360 The input width and height.
10361
10362 @item a
10363 These are the same as @var{w} / @var{h}.
10364
10365 @item sar
10366 The input sample aspect ratio.
10367
10368 @item dar
10369 The input display aspect ratio. It is the same as
10370 (@var{w} / @var{h}) * @var{sar}.
10371
10372 @item hsub, vsub
10373 Horizontal and vertical chroma subsample values. For example, for the
10374 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10375 @end table
10376
10377 @subsection Examples
10378
10379 @itemize
10380
10381 @item
10382 To change the display aspect ratio to 16:9, specify one of the following:
10383 @example
10384 setdar=dar=1.77777
10385 setdar=dar=16/9
10386 setdar=dar=1.77777
10387 @end example
10388
10389 @item
10390 To change the sample aspect ratio to 10:11, specify:
10391 @example
10392 setsar=sar=10/11
10393 @end example
10394
10395 @item
10396 To set a display aspect ratio of 16:9, and specify a maximum integer value of
10397 1000 in the aspect ratio reduction, use the command:
10398 @example
10399 setdar=ratio=16/9:max=1000
10400 @end example
10401
10402 @end itemize
10403
10404 @anchor{setfield}
10405 @section setfield
10406
10407 Force field for the output video frame.
10408
10409 The @code{setfield} filter marks the interlace type field for the
10410 output frames. It does not change the input frame, but only sets the
10411 corresponding property, which affects how the frame is treated by
10412 following filters (e.g. @code{fieldorder} or @code{yadif}).
10413
10414 The filter accepts the following options:
10415
10416 @table @option
10417
10418 @item mode
10419 Available values are:
10420
10421 @table @samp
10422 @item auto
10423 Keep the same field property.
10424
10425 @item bff
10426 Mark the frame as bottom-field-first.
10427
10428 @item tff
10429 Mark the frame as top-field-first.
10430
10431 @item prog
10432 Mark the frame as progressive.
10433 @end table
10434 @end table
10435
10436 @section showinfo
10437
10438 Show a line containing various information for each input video frame.
10439 The input video is not modified.
10440
10441 The shown line contains a sequence of key/value pairs of the form
10442 @var{key}:@var{value}.
10443
10444 The following values are shown in the output:
10445
10446 @table @option
10447 @item n
10448 The (sequential) number of the input frame, starting from 0.
10449
10450 @item pts
10451 The Presentation TimeStamp of the input frame, expressed as a number of
10452 time base units. The time base unit depends on the filter input pad.
10453
10454 @item pts_time
10455 The Presentation TimeStamp of the input frame, expressed as a number of
10456 seconds.
10457
10458 @item pos
10459 The position of the frame in the input stream, or -1 if this information is
10460 unavailable and/or meaningless (for example in case of synthetic video).
10461
10462 @item fmt
10463 The pixel format name.
10464
10465 @item sar
10466 The sample aspect ratio of the input frame, expressed in the form
10467 @var{num}/@var{den}.
10468
10469 @item s
10470 The size of the input frame. For the syntax of this option, check the
10471 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10472
10473 @item i
10474 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
10475 for bottom field first).
10476
10477 @item iskey
10478 This is 1 if the frame is a key frame, 0 otherwise.
10479
10480 @item type
10481 The picture type of the input frame ("I" for an I-frame, "P" for a
10482 P-frame, "B" for a B-frame, or "?" for an unknown type).
10483 Also refer to the documentation of the @code{AVPictureType} enum and of
10484 the @code{av_get_picture_type_char} function defined in
10485 @file{libavutil/avutil.h}.
10486
10487 @item checksum
10488 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
10489
10490 @item plane_checksum
10491 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
10492 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
10493 @end table
10494
10495 @section showpalette
10496
10497 Displays the 256 colors palette of each frame. This filter is only relevant for
10498 @var{pal8} pixel format frames.
10499
10500 It accepts the following option:
10501
10502 @table @option
10503 @item s
10504 Set the size of the box used to represent one palette color entry. Default is
10505 @code{30} (for a @code{30x30} pixel box).
10506 @end table
10507
10508 @section shuffleframes
10509
10510 Reorder and/or duplicate video frames.
10511
10512 It accepts the following parameters:
10513
10514 @table @option
10515 @item mapping
10516 Set the destination indexes of input frames.
10517 This is space or '|' separated list of indexes that maps input frames to output
10518 frames. Number of indexes also sets maximal value that each index may have.
10519 @end table
10520
10521 The first frame has the index 0. The default is to keep the input unchanged.
10522
10523 Swap second and third frame of every three frames of the input:
10524 @example
10525 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
10526 @end example
10527
10528 @section shuffleplanes
10529
10530 Reorder and/or duplicate video planes.
10531
10532 It accepts the following parameters:
10533
10534 @table @option
10535
10536 @item map0
10537 The index of the input plane to be used as the first output plane.
10538
10539 @item map1
10540 The index of the input plane to be used as the second output plane.
10541
10542 @item map2
10543 The index of the input plane to be used as the third output plane.
10544
10545 @item map3
10546 The index of the input plane to be used as the fourth output plane.
10547
10548 @end table
10549
10550 The first plane has the index 0. The default is to keep the input unchanged.
10551
10552 Swap the second and third planes of the input:
10553 @example
10554 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
10555 @end example
10556
10557 @anchor{signalstats}
10558 @section signalstats
10559 Evaluate various visual metrics that assist in determining issues associated
10560 with the digitization of analog video media.
10561
10562 By default the filter will log these metadata values:
10563
10564 @table @option
10565 @item YMIN
10566 Display the minimal Y value contained within the input frame. Expressed in
10567 range of [0-255].
10568
10569 @item YLOW
10570 Display the Y value at the 10% percentile within the input frame. Expressed in
10571 range of [0-255].
10572
10573 @item YAVG
10574 Display the average Y value within the input frame. Expressed in range of
10575 [0-255].
10576
10577 @item YHIGH
10578 Display the Y value at the 90% percentile within the input frame. Expressed in
10579 range of [0-255].
10580
10581 @item YMAX
10582 Display the maximum Y value contained within the input frame. Expressed in
10583 range of [0-255].
10584
10585 @item UMIN
10586 Display the minimal U value contained within the input frame. Expressed in
10587 range of [0-255].
10588
10589 @item ULOW
10590 Display the U value at the 10% percentile within the input frame. Expressed in
10591 range of [0-255].
10592
10593 @item UAVG
10594 Display the average U value within the input frame. Expressed in range of
10595 [0-255].
10596
10597 @item UHIGH
10598 Display the U value at the 90% percentile within the input frame. Expressed in
10599 range of [0-255].
10600
10601 @item UMAX
10602 Display the maximum U value contained within the input frame. Expressed in
10603 range of [0-255].
10604
10605 @item VMIN
10606 Display the minimal V value contained within the input frame. Expressed in
10607 range of [0-255].
10608
10609 @item VLOW
10610 Display the V value at the 10% percentile within the input frame. Expressed in
10611 range of [0-255].
10612
10613 @item VAVG
10614 Display the average V value within the input frame. Expressed in range of
10615 [0-255].
10616
10617 @item VHIGH
10618 Display the V value at the 90% percentile within the input frame. Expressed in
10619 range of [0-255].
10620
10621 @item VMAX
10622 Display the maximum V value contained within the input frame. Expressed in
10623 range of [0-255].
10624
10625 @item SATMIN
10626 Display the minimal saturation value contained within the input frame.
10627 Expressed in range of [0-~181.02].
10628
10629 @item SATLOW
10630 Display the saturation value at the 10% percentile within the input frame.
10631 Expressed in range of [0-~181.02].
10632
10633 @item SATAVG
10634 Display the average saturation value within the input frame. Expressed in range
10635 of [0-~181.02].
10636
10637 @item SATHIGH
10638 Display the saturation value at the 90% percentile within the input frame.
10639 Expressed in range of [0-~181.02].
10640
10641 @item SATMAX
10642 Display the maximum saturation value contained within the input frame.
10643 Expressed in range of [0-~181.02].
10644
10645 @item HUEMED
10646 Display the median value for hue within the input frame. Expressed in range of
10647 [0-360].
10648
10649 @item HUEAVG
10650 Display the average value for hue within the input frame. Expressed in range of
10651 [0-360].
10652
10653 @item YDIF
10654 Display the average of sample value difference between all values of the Y
10655 plane in the current frame and corresponding values of the previous input frame.
10656 Expressed in range of [0-255].
10657
10658 @item UDIF
10659 Display the average of sample value difference between all values of the U
10660 plane in the current frame and corresponding values of the previous input frame.
10661 Expressed in range of [0-255].
10662
10663 @item VDIF
10664 Display the average of sample value difference between all values of the V
10665 plane in the current frame and corresponding values of the previous input frame.
10666 Expressed in range of [0-255].
10667 @end table
10668
10669 The filter accepts the following options:
10670
10671 @table @option
10672 @item stat
10673 @item out
10674
10675 @option{stat} specify an additional form of image analysis.
10676 @option{out} output video with the specified type of pixel highlighted.
10677
10678 Both options accept the following values:
10679
10680 @table @samp
10681 @item tout
10682 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
10683 unlike the neighboring pixels of the same field. Examples of temporal outliers
10684 include the results of video dropouts, head clogs, or tape tracking issues.
10685
10686 @item vrep
10687 Identify @var{vertical line repetition}. Vertical line repetition includes
10688 similar rows of pixels within a frame. In born-digital video vertical line
10689 repetition is common, but this pattern is uncommon in video digitized from an
10690 analog source. When it occurs in video that results from the digitization of an
10691 analog source it can indicate concealment from a dropout compensator.
10692
10693 @item brng
10694 Identify pixels that fall outside of legal broadcast range.
10695 @end table
10696
10697 @item color, c
10698 Set the highlight color for the @option{out} option. The default color is
10699 yellow.
10700 @end table
10701
10702 @subsection Examples
10703
10704 @itemize
10705 @item
10706 Output data of various video metrics:
10707 @example
10708 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
10709 @end example
10710
10711 @item
10712 Output specific data about the minimum and maximum values of the Y plane per frame:
10713 @example
10714 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
10715 @end example
10716
10717 @item
10718 Playback video while highlighting pixels that are outside of broadcast range in red.
10719 @example
10720 ffplay example.mov -vf signalstats="out=brng:color=red"
10721 @end example
10722
10723 @item
10724 Playback video with signalstats metadata drawn over the frame.
10725 @example
10726 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
10727 @end example
10728
10729 The contents of signalstat_drawtext.txt used in the command are:
10730 @example
10731 time %@{pts:hms@}
10732 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
10733 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
10734 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
10735 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
10736
10737 @end example
10738 @end itemize
10739
10740 @anchor{smartblur}
10741 @section smartblur
10742
10743 Blur the input video without impacting the outlines.
10744
10745 It accepts the following options:
10746
10747 @table @option
10748 @item luma_radius, lr
10749 Set the luma radius. The option value must be a float number in
10750 the range [0.1,5.0] that specifies the variance of the gaussian filter
10751 used to blur the image (slower if larger). Default value is 1.0.
10752
10753 @item luma_strength, ls
10754 Set the luma strength. The option value must be a float number
10755 in the range [-1.0,1.0] that configures the blurring. A value included
10756 in [0.0,1.0] will blur the image whereas a value included in
10757 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10758
10759 @item luma_threshold, lt
10760 Set the luma threshold used as a coefficient to determine
10761 whether a pixel should be blurred or not. The option value must be an
10762 integer in the range [-30,30]. A value of 0 will filter all the image,
10763 a value included in [0,30] will filter flat areas and a value included
10764 in [-30,0] will filter edges. Default value is 0.
10765
10766 @item chroma_radius, cr
10767 Set the chroma radius. The option value must be a float number in
10768 the range [0.1,5.0] that specifies the variance of the gaussian filter
10769 used to blur the image (slower if larger). Default value is 1.0.
10770
10771 @item chroma_strength, cs
10772 Set the chroma strength. The option value must be a float number
10773 in the range [-1.0,1.0] that configures the blurring. A value included
10774 in [0.0,1.0] will blur the image whereas a value included in
10775 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10776
10777 @item chroma_threshold, ct
10778 Set the chroma threshold used as a coefficient to determine
10779 whether a pixel should be blurred or not. The option value must be an
10780 integer in the range [-30,30]. A value of 0 will filter all the image,
10781 a value included in [0,30] will filter flat areas and a value included
10782 in [-30,0] will filter edges. Default value is 0.
10783 @end table
10784
10785 If a chroma option is not explicitly set, the corresponding luma value
10786 is set.
10787
10788 @section ssim
10789
10790 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
10791
10792 This filter takes in input two input videos, the first input is
10793 considered the "main" source and is passed unchanged to the
10794 output. The second input is used as a "reference" video for computing
10795 the SSIM.
10796
10797 Both video inputs must have the same resolution and pixel format for
10798 this filter to work correctly. Also it assumes that both inputs
10799 have the same number of frames, which are compared one by one.
10800
10801 The filter stores the calculated SSIM of each frame.
10802
10803 The description of the accepted parameters follows.
10804
10805 @table @option
10806 @item stats_file, f
10807 If specified the filter will use the named file to save the SSIM of
10808 each individual frame. When filename equals "-" the data is sent to
10809 standard output.
10810 @end table
10811
10812 The file printed if @var{stats_file} is selected, contains a sequence of
10813 key/value pairs of the form @var{key}:@var{value} for each compared
10814 couple of frames.
10815
10816 A description of each shown parameter follows:
10817
10818 @table @option
10819 @item n
10820 sequential number of the input frame, starting from 1
10821
10822 @item Y, U, V, R, G, B
10823 SSIM of the compared frames for the component specified by the suffix.
10824
10825 @item All
10826 SSIM of the compared frames for the whole frame.
10827
10828 @item dB
10829 Same as above but in dB representation.
10830 @end table
10831
10832 For example:
10833 @example
10834 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10835 [main][ref] ssim="stats_file=stats.log" [out]
10836 @end example
10837
10838 On this example the input file being processed is compared with the
10839 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
10840 is stored in @file{stats.log}.
10841
10842 Another example with both psnr and ssim at same time:
10843 @example
10844 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
10845 @end example
10846
10847 @section stereo3d
10848
10849 Convert between different stereoscopic image formats.
10850
10851 The filters accept the following options:
10852
10853 @table @option
10854 @item in
10855 Set stereoscopic image format of input.
10856
10857 Available values for input image formats are:
10858 @table @samp
10859 @item sbsl
10860 side by side parallel (left eye left, right eye right)
10861
10862 @item sbsr
10863 side by side crosseye (right eye left, left eye right)
10864
10865 @item sbs2l
10866 side by side parallel with half width resolution
10867 (left eye left, right eye right)
10868
10869 @item sbs2r
10870 side by side crosseye with half width resolution
10871 (right eye left, left eye right)
10872
10873 @item abl
10874 above-below (left eye above, right eye below)
10875
10876 @item abr
10877 above-below (right eye above, left eye below)
10878
10879 @item ab2l
10880 above-below with half height resolution
10881 (left eye above, right eye below)
10882
10883 @item ab2r
10884 above-below with half height resolution
10885 (right eye above, left eye below)
10886
10887 @item al
10888 alternating frames (left eye first, right eye second)
10889
10890 @item ar
10891 alternating frames (right eye first, left eye second)
10892
10893 @item irl
10894 interleaved rows (left eye has top row, right eye starts on next row)
10895
10896 @item irr
10897 interleaved rows (right eye has top row, left eye starts on next row)
10898
10899 @item icl
10900 interleaved columns, left eye first
10901
10902 @item icr
10903 interleaved columns, right eye first
10904
10905 Default value is @samp{sbsl}.
10906 @end table
10907
10908 @item out
10909 Set stereoscopic image format of output.
10910
10911 @table @samp
10912 @item sbsl
10913 side by side parallel (left eye left, right eye right)
10914
10915 @item sbsr
10916 side by side crosseye (right eye left, left eye right)
10917
10918 @item sbs2l
10919 side by side parallel with half width resolution
10920 (left eye left, right eye right)
10921
10922 @item sbs2r
10923 side by side crosseye with half width resolution
10924 (right eye left, left eye right)
10925
10926 @item abl
10927 above-below (left eye above, right eye below)
10928
10929 @item abr
10930 above-below (right eye above, left eye below)
10931
10932 @item ab2l
10933 above-below with half height resolution
10934 (left eye above, right eye below)
10935
10936 @item ab2r
10937 above-below with half height resolution
10938 (right eye above, left eye below)
10939
10940 @item al
10941 alternating frames (left eye first, right eye second)
10942
10943 @item ar
10944 alternating frames (right eye first, left eye second)
10945
10946 @item irl
10947 interleaved rows (left eye has top row, right eye starts on next row)
10948
10949 @item irr
10950 interleaved rows (right eye has top row, left eye starts on next row)
10951
10952 @item arbg
10953 anaglyph red/blue gray
10954 (red filter on left eye, blue filter on right eye)
10955
10956 @item argg
10957 anaglyph red/green gray
10958 (red filter on left eye, green filter on right eye)
10959
10960 @item arcg
10961 anaglyph red/cyan gray
10962 (red filter on left eye, cyan filter on right eye)
10963
10964 @item arch
10965 anaglyph red/cyan half colored
10966 (red filter on left eye, cyan filter on right eye)
10967
10968 @item arcc
10969 anaglyph red/cyan color
10970 (red filter on left eye, cyan filter on right eye)
10971
10972 @item arcd
10973 anaglyph red/cyan color optimized with the least squares projection of dubois
10974 (red filter on left eye, cyan filter on right eye)
10975
10976 @item agmg
10977 anaglyph green/magenta gray
10978 (green filter on left eye, magenta filter on right eye)
10979
10980 @item agmh
10981 anaglyph green/magenta half colored
10982 (green filter on left eye, magenta filter on right eye)
10983
10984 @item agmc
10985 anaglyph green/magenta colored
10986 (green filter on left eye, magenta filter on right eye)
10987
10988 @item agmd
10989 anaglyph green/magenta color optimized with the least squares projection of dubois
10990 (green filter on left eye, magenta filter on right eye)
10991
10992 @item aybg
10993 anaglyph yellow/blue gray
10994 (yellow filter on left eye, blue filter on right eye)
10995
10996 @item aybh
10997 anaglyph yellow/blue half colored
10998 (yellow filter on left eye, blue filter on right eye)
10999
11000 @item aybc
11001 anaglyph yellow/blue colored
11002 (yellow filter on left eye, blue filter on right eye)
11003
11004 @item aybd
11005 anaglyph yellow/blue color optimized with the least squares projection of dubois
11006 (yellow filter on left eye, blue filter on right eye)
11007
11008 @item ml
11009 mono output (left eye only)
11010
11011 @item mr
11012 mono output (right eye only)
11013
11014 @item chl
11015 checkerboard, left eye first
11016
11017 @item chr
11018 checkerboard, right eye first
11019
11020 @item icl
11021 interleaved columns, left eye first
11022
11023 @item icr
11024 interleaved columns, right eye first
11025 @end table
11026
11027 Default value is @samp{arcd}.
11028 @end table
11029
11030 @subsection Examples
11031
11032 @itemize
11033 @item
11034 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
11035 @example
11036 stereo3d=sbsl:aybd
11037 @end example
11038
11039 @item
11040 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
11041 @example
11042 stereo3d=abl:sbsr
11043 @end example
11044 @end itemize
11045
11046 @anchor{spp}
11047 @section spp
11048
11049 Apply a simple postprocessing filter that compresses and decompresses the image
11050 at several (or - in the case of @option{quality} level @code{6} - all) shifts
11051 and average the results.
11052
11053 The filter accepts the following options:
11054
11055 @table @option
11056 @item quality
11057 Set quality. This option defines the number of levels for averaging. It accepts
11058 an integer in the range 0-6. If set to @code{0}, the filter will have no
11059 effect. A value of @code{6} means the higher quality. For each increment of
11060 that value the speed drops by a factor of approximately 2.  Default value is
11061 @code{3}.
11062
11063 @item qp
11064 Force a constant quantization parameter. If not set, the filter will use the QP
11065 from the video stream (if available).
11066
11067 @item mode
11068 Set thresholding mode. Available modes are:
11069
11070 @table @samp
11071 @item hard
11072 Set hard thresholding (default).
11073 @item soft
11074 Set soft thresholding (better de-ringing effect, but likely blurrier).
11075 @end table
11076
11077 @item use_bframe_qp
11078 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11079 option may cause flicker since the B-Frames have often larger QP. Default is
11080 @code{0} (not enabled).
11081 @end table
11082
11083 @anchor{subtitles}
11084 @section subtitles
11085
11086 Draw subtitles on top of input video using the libass library.
11087
11088 To enable compilation of this filter you need to configure FFmpeg with
11089 @code{--enable-libass}. This filter also requires a build with libavcodec and
11090 libavformat to convert the passed subtitles file to ASS (Advanced Substation
11091 Alpha) subtitles format.
11092
11093 The filter accepts the following options:
11094
11095 @table @option
11096 @item filename, f
11097 Set the filename of the subtitle file to read. It must be specified.
11098
11099 @item original_size
11100 Specify the size of the original video, the video for which the ASS file
11101 was composed. For the syntax of this option, check the
11102 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11103 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
11104 correctly scale the fonts if the aspect ratio has been changed.
11105
11106 @item fontsdir
11107 Set a directory path containing fonts that can be used by the filter.
11108 These fonts will be used in addition to whatever the font provider uses.
11109
11110 @item charenc
11111 Set subtitles input character encoding. @code{subtitles} filter only. Only
11112 useful if not UTF-8.
11113
11114 @item stream_index, si
11115 Set subtitles stream index. @code{subtitles} filter only.
11116
11117 @item force_style
11118 Override default style or script info parameters of the subtitles. It accepts a
11119 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
11120 @end table
11121
11122 If the first key is not specified, it is assumed that the first value
11123 specifies the @option{filename}.
11124
11125 For example, to render the file @file{sub.srt} on top of the input
11126 video, use the command:
11127 @example
11128 subtitles=sub.srt
11129 @end example
11130
11131 which is equivalent to:
11132 @example
11133 subtitles=filename=sub.srt
11134 @end example
11135
11136 To render the default subtitles stream from file @file{video.mkv}, use:
11137 @example
11138 subtitles=video.mkv
11139 @end example
11140
11141 To render the second subtitles stream from that file, use:
11142 @example
11143 subtitles=video.mkv:si=1
11144 @end example
11145
11146 To make the subtitles stream from @file{sub.srt} appear in transparent green
11147 @code{DejaVu Serif}, use:
11148 @example
11149 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
11150 @end example
11151
11152 @section super2xsai
11153
11154 Scale the input by 2x and smooth using the Super2xSaI (Scale and
11155 Interpolate) pixel art scaling algorithm.
11156
11157 Useful for enlarging pixel art images without reducing sharpness.
11158
11159 @section swapuv
11160 Swap U & V plane.
11161
11162 @section telecine
11163
11164 Apply telecine process to the video.
11165
11166 This filter accepts the following options:
11167
11168 @table @option
11169 @item first_field
11170 @table @samp
11171 @item top, t
11172 top field first
11173 @item bottom, b
11174 bottom field first
11175 The default value is @code{top}.
11176 @end table
11177
11178 @item pattern
11179 A string of numbers representing the pulldown pattern you wish to apply.
11180 The default value is @code{23}.
11181 @end table
11182
11183 @example
11184 Some typical patterns:
11185
11186 NTSC output (30i):
11187 27.5p: 32222
11188 24p: 23 (classic)
11189 24p: 2332 (preferred)
11190 20p: 33
11191 18p: 334
11192 16p: 3444
11193
11194 PAL output (25i):
11195 27.5p: 12222
11196 24p: 222222222223 ("Euro pulldown")
11197 16.67p: 33
11198 16p: 33333334
11199 @end example
11200
11201 @section thumbnail
11202 Select the most representative frame in a given sequence of consecutive frames.
11203
11204 The filter accepts the following options:
11205
11206 @table @option
11207 @item n
11208 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
11209 will pick one of them, and then handle the next batch of @var{n} frames until
11210 the end. Default is @code{100}.
11211 @end table
11212
11213 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
11214 value will result in a higher memory usage, so a high value is not recommended.
11215
11216 @subsection Examples
11217
11218 @itemize
11219 @item
11220 Extract one picture each 50 frames:
11221 @example
11222 thumbnail=50
11223 @end example
11224
11225 @item
11226 Complete example of a thumbnail creation with @command{ffmpeg}:
11227 @example
11228 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
11229 @end example
11230 @end itemize
11231
11232 @section tile
11233
11234 Tile several successive frames together.
11235
11236 The filter accepts the following options:
11237
11238 @table @option
11239
11240 @item layout
11241 Set the grid size (i.e. the number of lines and columns). For the syntax of
11242 this option, check the
11243 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11244
11245 @item nb_frames
11246 Set the maximum number of frames to render in the given area. It must be less
11247 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
11248 the area will be used.
11249
11250 @item margin
11251 Set the outer border margin in pixels.
11252
11253 @item padding
11254 Set the inner border thickness (i.e. the number of pixels between frames). For
11255 more advanced padding options (such as having different values for the edges),
11256 refer to the pad video filter.
11257
11258 @item color
11259 Specify the color of the unused area. For the syntax of this option, check the
11260 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
11261 is "black".
11262 @end table
11263
11264 @subsection Examples
11265
11266 @itemize
11267 @item
11268 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
11269 @example
11270 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
11271 @end example
11272 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
11273 duplicating each output frame to accommodate the originally detected frame
11274 rate.
11275
11276 @item
11277 Display @code{5} pictures in an area of @code{3x2} frames,
11278 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
11279 mixed flat and named options:
11280 @example
11281 tile=3x2:nb_frames=5:padding=7:margin=2
11282 @end example
11283 @end itemize
11284
11285 @section tinterlace
11286
11287 Perform various types of temporal field interlacing.
11288
11289 Frames are counted starting from 1, so the first input frame is
11290 considered odd.
11291
11292 The filter accepts the following options:
11293
11294 @table @option
11295
11296 @item mode
11297 Specify the mode of the interlacing. This option can also be specified
11298 as a value alone. See below for a list of values for this option.
11299
11300 Available values are:
11301
11302 @table @samp
11303 @item merge, 0
11304 Move odd frames into the upper field, even into the lower field,
11305 generating a double height frame at half frame rate.
11306 @example
11307  ------> time
11308 Input:
11309 Frame 1         Frame 2         Frame 3         Frame 4
11310
11311 11111           22222           33333           44444
11312 11111           22222           33333           44444
11313 11111           22222           33333           44444
11314 11111           22222           33333           44444
11315
11316 Output:
11317 11111                           33333
11318 22222                           44444
11319 11111                           33333
11320 22222                           44444
11321 11111                           33333
11322 22222                           44444
11323 11111                           33333
11324 22222                           44444
11325 @end example
11326
11327 @item drop_odd, 1
11328 Only output even frames, odd frames are dropped, generating a frame with
11329 unchanged height at half frame rate.
11330
11331 @example
11332  ------> time
11333 Input:
11334 Frame 1         Frame 2         Frame 3         Frame 4
11335
11336 11111           22222           33333           44444
11337 11111           22222           33333           44444
11338 11111           22222           33333           44444
11339 11111           22222           33333           44444
11340
11341 Output:
11342                 22222                           44444
11343                 22222                           44444
11344                 22222                           44444
11345                 22222                           44444
11346 @end example
11347
11348 @item drop_even, 2
11349 Only output odd frames, even frames are dropped, generating a frame with
11350 unchanged height at half frame rate.
11351
11352 @example
11353  ------> time
11354 Input:
11355 Frame 1         Frame 2         Frame 3         Frame 4
11356
11357 11111           22222           33333           44444
11358 11111           22222           33333           44444
11359 11111           22222           33333           44444
11360 11111           22222           33333           44444
11361
11362 Output:
11363 11111                           33333
11364 11111                           33333
11365 11111                           33333
11366 11111                           33333
11367 @end example
11368
11369 @item pad, 3
11370 Expand each frame to full height, but pad alternate lines with black,
11371 generating a frame with double height at the same input frame rate.
11372
11373 @example
11374  ------> time
11375 Input:
11376 Frame 1         Frame 2         Frame 3         Frame 4
11377
11378 11111           22222           33333           44444
11379 11111           22222           33333           44444
11380 11111           22222           33333           44444
11381 11111           22222           33333           44444
11382
11383 Output:
11384 11111           .....           33333           .....
11385 .....           22222           .....           44444
11386 11111           .....           33333           .....
11387 .....           22222           .....           44444
11388 11111           .....           33333           .....
11389 .....           22222           .....           44444
11390 11111           .....           33333           .....
11391 .....           22222           .....           44444
11392 @end example
11393
11394
11395 @item interleave_top, 4
11396 Interleave the upper field from odd frames with the lower field from
11397 even frames, generating a frame with unchanged height at half frame rate.
11398
11399 @example
11400  ------> time
11401 Input:
11402 Frame 1         Frame 2         Frame 3         Frame 4
11403
11404 11111<-         22222           33333<-         44444
11405 11111           22222<-         33333           44444<-
11406 11111<-         22222           33333<-         44444
11407 11111           22222<-         33333           44444<-
11408
11409 Output:
11410 11111                           33333
11411 22222                           44444
11412 11111                           33333
11413 22222                           44444
11414 @end example
11415
11416
11417 @item interleave_bottom, 5
11418 Interleave the lower field from odd frames with the upper field from
11419 even frames, generating a frame with unchanged height at half frame rate.
11420
11421 @example
11422  ------> time
11423 Input:
11424 Frame 1         Frame 2         Frame 3         Frame 4
11425
11426 11111           22222<-         33333           44444<-
11427 11111<-         22222           33333<-         44444
11428 11111           22222<-         33333           44444<-
11429 11111<-         22222           33333<-         44444
11430
11431 Output:
11432 22222                           44444
11433 11111                           33333
11434 22222                           44444
11435 11111                           33333
11436 @end example
11437
11438
11439 @item interlacex2, 6
11440 Double frame rate with unchanged height. Frames are inserted each
11441 containing the second temporal field from the previous input frame and
11442 the first temporal field from the next input frame. This mode relies on
11443 the top_field_first flag. Useful for interlaced video displays with no
11444 field synchronisation.
11445
11446 @example
11447  ------> time
11448 Input:
11449 Frame 1         Frame 2         Frame 3         Frame 4
11450
11451 11111           22222           33333           44444
11452  11111           22222           33333           44444
11453 11111           22222           33333           44444
11454  11111           22222           33333           44444
11455
11456 Output:
11457 11111   22222   22222   33333   33333   44444   44444
11458  11111   11111   22222   22222   33333   33333   44444
11459 11111   22222   22222   33333   33333   44444   44444
11460  11111   11111   22222   22222   33333   33333   44444
11461 @end example
11462
11463 @item mergex2, 7
11464 Move odd frames into the upper field, even into the lower field,
11465 generating a double height frame at same frame rate.
11466 @example
11467  ------> time
11468 Input:
11469 Frame 1         Frame 2         Frame 3         Frame 4
11470
11471 11111           22222           33333           44444
11472 11111           22222           33333           44444
11473 11111           22222           33333           44444
11474 11111           22222           33333           44444
11475
11476 Output:
11477 11111           33333           33333           55555
11478 22222           22222           44444           44444
11479 11111           33333           33333           55555
11480 22222           22222           44444           44444
11481 11111           33333           33333           55555
11482 22222           22222           44444           44444
11483 11111           33333           33333           55555
11484 22222           22222           44444           44444
11485 @end example
11486
11487 @end table
11488
11489 Numeric values are deprecated but are accepted for backward
11490 compatibility reasons.
11491
11492 Default mode is @code{merge}.
11493
11494 @item flags
11495 Specify flags influencing the filter process.
11496
11497 Available value for @var{flags} is:
11498
11499 @table @option
11500 @item low_pass_filter, vlfp
11501 Enable vertical low-pass filtering in the filter.
11502 Vertical low-pass filtering is required when creating an interlaced
11503 destination from a progressive source which contains high-frequency
11504 vertical detail. Filtering will reduce interlace 'twitter' and Moire
11505 patterning.
11506
11507 Vertical low-pass filtering can only be enabled for @option{mode}
11508 @var{interleave_top} and @var{interleave_bottom}.
11509
11510 @end table
11511 @end table
11512
11513 @section transpose
11514
11515 Transpose rows with columns in the input video and optionally flip it.
11516
11517 It accepts the following parameters:
11518
11519 @table @option
11520
11521 @item dir
11522 Specify the transposition direction.
11523
11524 Can assume the following values:
11525 @table @samp
11526 @item 0, 4, cclock_flip
11527 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
11528 @example
11529 L.R     L.l
11530 . . ->  . .
11531 l.r     R.r
11532 @end example
11533
11534 @item 1, 5, clock
11535 Rotate by 90 degrees clockwise, that is:
11536 @example
11537 L.R     l.L
11538 . . ->  . .
11539 l.r     r.R
11540 @end example
11541
11542 @item 2, 6, cclock
11543 Rotate by 90 degrees counterclockwise, that is:
11544 @example
11545 L.R     R.r
11546 . . ->  . .
11547 l.r     L.l
11548 @end example
11549
11550 @item 3, 7, clock_flip
11551 Rotate by 90 degrees clockwise and vertically flip, that is:
11552 @example
11553 L.R     r.R
11554 . . ->  . .
11555 l.r     l.L
11556 @end example
11557 @end table
11558
11559 For values between 4-7, the transposition is only done if the input
11560 video geometry is portrait and not landscape. These values are
11561 deprecated, the @code{passthrough} option should be used instead.
11562
11563 Numerical values are deprecated, and should be dropped in favor of
11564 symbolic constants.
11565
11566 @item passthrough
11567 Do not apply the transposition if the input geometry matches the one
11568 specified by the specified value. It accepts the following values:
11569 @table @samp
11570 @item none
11571 Always apply transposition.
11572 @item portrait
11573 Preserve portrait geometry (when @var{height} >= @var{width}).
11574 @item landscape
11575 Preserve landscape geometry (when @var{width} >= @var{height}).
11576 @end table
11577
11578 Default value is @code{none}.
11579 @end table
11580
11581 For example to rotate by 90 degrees clockwise and preserve portrait
11582 layout:
11583 @example
11584 transpose=dir=1:passthrough=portrait
11585 @end example
11586
11587 The command above can also be specified as:
11588 @example
11589 transpose=1:portrait
11590 @end example
11591
11592 @section trim
11593 Trim the input so that the output contains one continuous subpart of the input.
11594
11595 It accepts the following parameters:
11596 @table @option
11597 @item start
11598 Specify the time of the start of the kept section, i.e. the frame with the
11599 timestamp @var{start} will be the first frame in the output.
11600
11601 @item end
11602 Specify the time of the first frame that will be dropped, i.e. the frame
11603 immediately preceding the one with the timestamp @var{end} will be the last
11604 frame in the output.
11605
11606 @item start_pts
11607 This is the same as @var{start}, except this option sets the start timestamp
11608 in timebase units instead of seconds.
11609
11610 @item end_pts
11611 This is the same as @var{end}, except this option sets the end timestamp
11612 in timebase units instead of seconds.
11613
11614 @item duration
11615 The maximum duration of the output in seconds.
11616
11617 @item start_frame
11618 The number of the first frame that should be passed to the output.
11619
11620 @item end_frame
11621 The number of the first frame that should be dropped.
11622 @end table
11623
11624 @option{start}, @option{end}, and @option{duration} are expressed as time
11625 duration specifications; see
11626 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11627 for the accepted syntax.
11628
11629 Note that the first two sets of the start/end options and the @option{duration}
11630 option look at the frame timestamp, while the _frame variants simply count the
11631 frames that pass through the filter. Also note that this filter does not modify
11632 the timestamps. If you wish for the output timestamps to start at zero, insert a
11633 setpts filter after the trim filter.
11634
11635 If multiple start or end options are set, this filter tries to be greedy and
11636 keep all the frames that match at least one of the specified constraints. To keep
11637 only the part that matches all the constraints at once, chain multiple trim
11638 filters.
11639
11640 The defaults are such that all the input is kept. So it is possible to set e.g.
11641 just the end values to keep everything before the specified time.
11642
11643 Examples:
11644 @itemize
11645 @item
11646 Drop everything except the second minute of input:
11647 @example
11648 ffmpeg -i INPUT -vf trim=60:120
11649 @end example
11650
11651 @item
11652 Keep only the first second:
11653 @example
11654 ffmpeg -i INPUT -vf trim=duration=1
11655 @end example
11656
11657 @end itemize
11658
11659
11660 @anchor{unsharp}
11661 @section unsharp
11662
11663 Sharpen or blur the input video.
11664
11665 It accepts the following parameters:
11666
11667 @table @option
11668 @item luma_msize_x, lx
11669 Set the luma matrix horizontal size. It must be an odd integer between
11670 3 and 63. The default value is 5.
11671
11672 @item luma_msize_y, ly
11673 Set the luma matrix vertical size. It must be an odd integer between 3
11674 and 63. The default value is 5.
11675
11676 @item luma_amount, la
11677 Set the luma effect strength. It must be a floating point number, reasonable
11678 values lay between -1.5 and 1.5.
11679
11680 Negative values will blur the input video, while positive values will
11681 sharpen it, a value of zero will disable the effect.
11682
11683 Default value is 1.0.
11684
11685 @item chroma_msize_x, cx
11686 Set the chroma matrix horizontal size. It must be an odd integer
11687 between 3 and 63. The default value is 5.
11688
11689 @item chroma_msize_y, cy
11690 Set the chroma matrix vertical size. It must be an odd integer
11691 between 3 and 63. The default value is 5.
11692
11693 @item chroma_amount, ca
11694 Set the chroma effect strength. It must be a floating point number, reasonable
11695 values lay between -1.5 and 1.5.
11696
11697 Negative values will blur the input video, while positive values will
11698 sharpen it, a value of zero will disable the effect.
11699
11700 Default value is 0.0.
11701
11702 @item opencl
11703 If set to 1, specify using OpenCL capabilities, only available if
11704 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
11705
11706 @end table
11707
11708 All parameters are optional and default to the equivalent of the
11709 string '5:5:1.0:5:5:0.0'.
11710
11711 @subsection Examples
11712
11713 @itemize
11714 @item
11715 Apply strong luma sharpen effect:
11716 @example
11717 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
11718 @end example
11719
11720 @item
11721 Apply a strong blur of both luma and chroma parameters:
11722 @example
11723 unsharp=7:7:-2:7:7:-2
11724 @end example
11725 @end itemize
11726
11727 @section uspp
11728
11729 Apply ultra slow/simple postprocessing filter that compresses and decompresses
11730 the image at several (or - in the case of @option{quality} level @code{8} - all)
11731 shifts and average the results.
11732
11733 The way this differs from the behavior of spp is that uspp actually encodes &
11734 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
11735 DCT similar to MJPEG.
11736
11737 The filter accepts the following options:
11738
11739 @table @option
11740 @item quality
11741 Set quality. This option defines the number of levels for averaging. It accepts
11742 an integer in the range 0-8. If set to @code{0}, the filter will have no
11743 effect. A value of @code{8} means the higher quality. For each increment of
11744 that value the speed drops by a factor of approximately 2.  Default value is
11745 @code{3}.
11746
11747 @item qp
11748 Force a constant quantization parameter. If not set, the filter will use the QP
11749 from the video stream (if available).
11750 @end table
11751
11752 @section vectorscope
11753
11754 Display 2 color component values in the two dimensional graph (which is called
11755 a vectorscope).
11756
11757 This filter accepts the following options:
11758
11759 @table @option
11760 @item mode, m
11761 Set vectorscope mode.
11762
11763 It accepts the following values:
11764 @table @samp
11765 @item gray
11766 Gray values are displayed on graph, higher brightness means more pixels have
11767 same component color value on location in graph. This is the default mode.
11768
11769 @item color
11770 Gray values are displayed on graph. Surrounding pixels values which are not
11771 present in video frame are drawn in gradient of 2 color components which are
11772 set by option @code{x} and @code{y}.
11773
11774 @item color2
11775 Actual color components values present in video frame are displayed on graph.
11776
11777 @item color3
11778 Similar as color2 but higher frequency of same values @code{x} and @code{y}
11779 on graph increases value of another color component, which is luminance by
11780 default values of @code{x} and @code{y}.
11781
11782 @item color4
11783 Actual colors present in video frame are displayed on graph. If two different
11784 colors map to same position on graph then color with higher value of component
11785 not present in graph is picked.
11786 @end table
11787
11788 @item x
11789 Set which color component will be represented on X-axis. Default is @code{1}.
11790
11791 @item y
11792 Set which color component will be represented on Y-axis. Default is @code{2}.
11793
11794 @item intensity, i
11795 Set intensity, used by modes: gray, color and color3 for increasing brightness
11796 of color component which represents frequency of (X, Y) location in graph.
11797
11798 @item envelope, e
11799 @table @samp
11800 @item none
11801 No envelope, this is default.
11802
11803 @item instant
11804 Instant envelope, even darkest single pixel will be clearly highlighted.
11805
11806 @item peak
11807 Hold maximum and minimum values presented in graph over time. This way you
11808 can still spot out of range values without constantly looking at vectorscope.
11809
11810 @item peak+instant
11811 Peak and instant envelope combined together.
11812 @end table
11813 @end table
11814
11815 @anchor{vidstabdetect}
11816 @section vidstabdetect
11817
11818 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
11819 @ref{vidstabtransform} for pass 2.
11820
11821 This filter generates a file with relative translation and rotation
11822 transform information about subsequent frames, which is then used by
11823 the @ref{vidstabtransform} filter.
11824
11825 To enable compilation of this filter you need to configure FFmpeg with
11826 @code{--enable-libvidstab}.
11827
11828 This filter accepts the following options:
11829
11830 @table @option
11831 @item result
11832 Set the path to the file used to write the transforms information.
11833 Default value is @file{transforms.trf}.
11834
11835 @item shakiness
11836 Set how shaky the video is and how quick the camera is. It accepts an
11837 integer in the range 1-10, a value of 1 means little shakiness, a
11838 value of 10 means strong shakiness. Default value is 5.
11839
11840 @item accuracy
11841 Set the accuracy of the detection process. It must be a value in the
11842 range 1-15. A value of 1 means low accuracy, a value of 15 means high
11843 accuracy. Default value is 15.
11844
11845 @item stepsize
11846 Set stepsize of the search process. The region around minimum is
11847 scanned with 1 pixel resolution. Default value is 6.
11848
11849 @item mincontrast
11850 Set minimum contrast. Below this value a local measurement field is
11851 discarded. Must be a floating point value in the range 0-1. Default
11852 value is 0.3.
11853
11854 @item tripod
11855 Set reference frame number for tripod mode.
11856
11857 If enabled, the motion of the frames is compared to a reference frame
11858 in the filtered stream, identified by the specified number. The idea
11859 is to compensate all movements in a more-or-less static scene and keep
11860 the camera view absolutely still.
11861
11862 If set to 0, it is disabled. The frames are counted starting from 1.
11863
11864 @item show
11865 Show fields and transforms in the resulting frames. It accepts an
11866 integer in the range 0-2. Default value is 0, which disables any
11867 visualization.
11868 @end table
11869
11870 @subsection Examples
11871
11872 @itemize
11873 @item
11874 Use default values:
11875 @example
11876 vidstabdetect
11877 @end example
11878
11879 @item
11880 Analyze strongly shaky movie and put the results in file
11881 @file{mytransforms.trf}:
11882 @example
11883 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
11884 @end example
11885
11886 @item
11887 Visualize the result of internal transformations in the resulting
11888 video:
11889 @example
11890 vidstabdetect=show=1
11891 @end example
11892
11893 @item
11894 Analyze a video with medium shakiness using @command{ffmpeg}:
11895 @example
11896 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
11897 @end example
11898 @end itemize
11899
11900 @anchor{vidstabtransform}
11901 @section vidstabtransform
11902
11903 Video stabilization/deshaking: pass 2 of 2,
11904 see @ref{vidstabdetect} for pass 1.
11905
11906 Read a file with transform information for each frame and
11907 apply/compensate them. Together with the @ref{vidstabdetect}
11908 filter this can be used to deshake videos. See also
11909 @url{http://public.hronopik.de/vid.stab}. It is important to also use
11910 the @ref{unsharp} filter, see below.
11911
11912 To enable compilation of this filter you need to configure FFmpeg with
11913 @code{--enable-libvidstab}.
11914
11915 @subsection Options
11916
11917 @table @option
11918 @item input
11919 Set path to the file used to read the transforms. Default value is
11920 @file{transforms.trf}.
11921
11922 @item smoothing
11923 Set the number of frames (value*2 + 1) used for lowpass filtering the
11924 camera movements. Default value is 10.
11925
11926 For example a number of 10 means that 21 frames are used (10 in the
11927 past and 10 in the future) to smoothen the motion in the video. A
11928 larger value leads to a smoother video, but limits the acceleration of
11929 the camera (pan/tilt movements). 0 is a special case where a static
11930 camera is simulated.
11931
11932 @item optalgo
11933 Set the camera path optimization algorithm.
11934
11935 Accepted values are:
11936 @table @samp
11937 @item gauss
11938 gaussian kernel low-pass filter on camera motion (default)
11939 @item avg
11940 averaging on transformations
11941 @end table
11942
11943 @item maxshift
11944 Set maximal number of pixels to translate frames. Default value is -1,
11945 meaning no limit.
11946
11947 @item maxangle
11948 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
11949 value is -1, meaning no limit.
11950
11951 @item crop
11952 Specify how to deal with borders that may be visible due to movement
11953 compensation.
11954
11955 Available values are:
11956 @table @samp
11957 @item keep
11958 keep image information from previous frame (default)
11959 @item black
11960 fill the border black
11961 @end table
11962
11963 @item invert
11964 Invert transforms if set to 1. Default value is 0.
11965
11966 @item relative
11967 Consider transforms as relative to previous frame if set to 1,
11968 absolute if set to 0. Default value is 0.
11969
11970 @item zoom
11971 Set percentage to zoom. A positive value will result in a zoom-in
11972 effect, a negative value in a zoom-out effect. Default value is 0 (no
11973 zoom).
11974
11975 @item optzoom
11976 Set optimal zooming to avoid borders.
11977
11978 Accepted values are:
11979 @table @samp
11980 @item 0
11981 disabled
11982 @item 1
11983 optimal static zoom value is determined (only very strong movements
11984 will lead to visible borders) (default)
11985 @item 2
11986 optimal adaptive zoom value is determined (no borders will be
11987 visible), see @option{zoomspeed}
11988 @end table
11989
11990 Note that the value given at zoom is added to the one calculated here.
11991
11992 @item zoomspeed
11993 Set percent to zoom maximally each frame (enabled when
11994 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
11995 0.25.
11996
11997 @item interpol
11998 Specify type of interpolation.
11999
12000 Available values are:
12001 @table @samp
12002 @item no
12003 no interpolation
12004 @item linear
12005 linear only horizontal
12006 @item bilinear
12007 linear in both directions (default)
12008 @item bicubic
12009 cubic in both directions (slow)
12010 @end table
12011
12012 @item tripod
12013 Enable virtual tripod mode if set to 1, which is equivalent to
12014 @code{relative=0:smoothing=0}. Default value is 0.
12015
12016 Use also @code{tripod} option of @ref{vidstabdetect}.
12017
12018 @item debug
12019 Increase log verbosity if set to 1. Also the detected global motions
12020 are written to the temporary file @file{global_motions.trf}. Default
12021 value is 0.
12022 @end table
12023
12024 @subsection Examples
12025
12026 @itemize
12027 @item
12028 Use @command{ffmpeg} for a typical stabilization with default values:
12029 @example
12030 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
12031 @end example
12032
12033 Note the use of the @ref{unsharp} filter which is always recommended.
12034
12035 @item
12036 Zoom in a bit more and load transform data from a given file:
12037 @example
12038 vidstabtransform=zoom=5:input="mytransforms.trf"
12039 @end example
12040
12041 @item
12042 Smoothen the video even more:
12043 @example
12044 vidstabtransform=smoothing=30
12045 @end example
12046 @end itemize
12047
12048 @section vflip
12049
12050 Flip the input video vertically.
12051
12052 For example, to vertically flip a video with @command{ffmpeg}:
12053 @example
12054 ffmpeg -i in.avi -vf "vflip" out.avi
12055 @end example
12056
12057 @anchor{vignette}
12058 @section vignette
12059
12060 Make or reverse a natural vignetting effect.
12061
12062 The filter accepts the following options:
12063
12064 @table @option
12065 @item angle, a
12066 Set lens angle expression as a number of radians.
12067
12068 The value is clipped in the @code{[0,PI/2]} range.
12069
12070 Default value: @code{"PI/5"}
12071
12072 @item x0
12073 @item y0
12074 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
12075 by default.
12076
12077 @item mode
12078 Set forward/backward mode.
12079
12080 Available modes are:
12081 @table @samp
12082 @item forward
12083 The larger the distance from the central point, the darker the image becomes.
12084
12085 @item backward
12086 The larger the distance from the central point, the brighter the image becomes.
12087 This can be used to reverse a vignette effect, though there is no automatic
12088 detection to extract the lens @option{angle} and other settings (yet). It can
12089 also be used to create a burning effect.
12090 @end table
12091
12092 Default value is @samp{forward}.
12093
12094 @item eval
12095 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
12096
12097 It accepts the following values:
12098 @table @samp
12099 @item init
12100 Evaluate expressions only once during the filter initialization.
12101
12102 @item frame
12103 Evaluate expressions for each incoming frame. This is way slower than the
12104 @samp{init} mode since it requires all the scalers to be re-computed, but it
12105 allows advanced dynamic expressions.
12106 @end table
12107
12108 Default value is @samp{init}.
12109
12110 @item dither
12111 Set dithering to reduce the circular banding effects. Default is @code{1}
12112 (enabled).
12113
12114 @item aspect
12115 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
12116 Setting this value to the SAR of the input will make a rectangular vignetting
12117 following the dimensions of the video.
12118
12119 Default is @code{1/1}.
12120 @end table
12121
12122 @subsection Expressions
12123
12124 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
12125 following parameters.
12126
12127 @table @option
12128 @item w
12129 @item h
12130 input width and height
12131
12132 @item n
12133 the number of input frame, starting from 0
12134
12135 @item pts
12136 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
12137 @var{TB} units, NAN if undefined
12138
12139 @item r
12140 frame rate of the input video, NAN if the input frame rate is unknown
12141
12142 @item t
12143 the PTS (Presentation TimeStamp) of the filtered video frame,
12144 expressed in seconds, NAN if undefined
12145
12146 @item tb
12147 time base of the input video
12148 @end table
12149
12150
12151 @subsection Examples
12152
12153 @itemize
12154 @item
12155 Apply simple strong vignetting effect:
12156 @example
12157 vignette=PI/4
12158 @end example
12159
12160 @item
12161 Make a flickering vignetting:
12162 @example
12163 vignette='PI/4+random(1)*PI/50':eval=frame
12164 @end example
12165
12166 @end itemize
12167
12168 @section vstack
12169 Stack input videos vertically.
12170
12171 All streams must be of same pixel format and of same width.
12172
12173 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12174 to create same output.
12175
12176 The filter accept the following option:
12177
12178 @table @option
12179 @item inputs
12180 Set number of input streams. Default is 2.
12181
12182 @item shortest
12183 If set to 1, force the output to terminate when the shortest input
12184 terminates. Default value is 0.
12185 @end table
12186
12187 @section w3fdif
12188
12189 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
12190 Deinterlacing Filter").
12191
12192 Based on the process described by Martin Weston for BBC R&D, and
12193 implemented based on the de-interlace algorithm written by Jim
12194 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
12195 uses filter coefficients calculated by BBC R&D.
12196
12197 There are two sets of filter coefficients, so called "simple":
12198 and "complex". Which set of filter coefficients is used can
12199 be set by passing an optional parameter:
12200
12201 @table @option
12202 @item filter
12203 Set the interlacing filter coefficients. Accepts one of the following values:
12204
12205 @table @samp
12206 @item simple
12207 Simple filter coefficient set.
12208 @item complex
12209 More-complex filter coefficient set.
12210 @end table
12211 Default value is @samp{complex}.
12212
12213 @item deint
12214 Specify which frames to deinterlace. Accept one of the following values:
12215
12216 @table @samp
12217 @item all
12218 Deinterlace all frames,
12219 @item interlaced
12220 Only deinterlace frames marked as interlaced.
12221 @end table
12222
12223 Default value is @samp{all}.
12224 @end table
12225
12226 @section waveform
12227 Video waveform monitor.
12228
12229 The waveform monitor plots color component intensity. By default luminance
12230 only. Each column of the waveform corresponds to a column of pixels in the
12231 source video.
12232
12233 It accepts the following options:
12234
12235 @table @option
12236 @item mode, m
12237 Can be either @code{row}, or @code{column}. Default is @code{column}.
12238 In row mode, the graph on the left side represents color component value 0 and
12239 the right side represents value = 255. In column mode, the top side represents
12240 color component value = 0 and bottom side represents value = 255.
12241
12242 @item intensity, i
12243 Set intensity. Smaller values are useful to find out how many values of the same
12244 luminance are distributed across input rows/columns.
12245 Default value is @code{0.04}. Allowed range is [0, 1].
12246
12247 @item mirror, r
12248 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
12249 In mirrored mode, higher values will be represented on the left
12250 side for @code{row} mode and at the top for @code{column} mode. Default is
12251 @code{1} (mirrored).
12252
12253 @item display, d
12254 Set display mode.
12255 It accepts the following values:
12256 @table @samp
12257 @item overlay
12258 Presents information identical to that in the @code{parade}, except
12259 that the graphs representing color components are superimposed directly
12260 over one another.
12261
12262 This display mode makes it easier to spot relative differences or similarities
12263 in overlapping areas of the color components that are supposed to be identical,
12264 such as neutral whites, grays, or blacks.
12265
12266 @item parade
12267 Display separate graph for the color components side by side in
12268 @code{row} mode or one below the other in @code{column} mode.
12269
12270 Using this display mode makes it easy to spot color casts in the highlights
12271 and shadows of an image, by comparing the contours of the top and the bottom
12272 graphs of each waveform. Since whites, grays, and blacks are characterized
12273 by exactly equal amounts of red, green, and blue, neutral areas of the picture
12274 should display three waveforms of roughly equal width/height. If not, the
12275 correction is easy to perform by making level adjustments the three waveforms.
12276 @end table
12277 Default is @code{parade}.
12278
12279 @item components, c
12280 Set which color components to display. Default is 1, which means only luminance
12281 or red color component if input is in RGB colorspace. If is set for example to
12282 7 it will display all 3 (if) available color components.
12283
12284 @item envelope, e
12285 @table @samp
12286 @item none
12287 No envelope, this is default.
12288
12289 @item instant
12290 Instant envelope, minimum and maximum values presented in graph will be easily
12291 visible even with small @code{step} value.
12292
12293 @item peak
12294 Hold minimum and maximum values presented in graph across time. This way you
12295 can still spot out of range values without constantly looking at waveforms.
12296
12297 @item peak+instant
12298 Peak and instant envelope combined together.
12299 @end table
12300
12301 @item filter, f
12302 @table @samp
12303 @item lowpass
12304 No filtering, this is default.
12305
12306 @item flat
12307 Luma and chroma combined together.
12308
12309 @item aflat
12310 Similar as above, but shows difference between blue and red chroma.
12311
12312 @item chroma
12313 Displays only chroma.
12314
12315 @item achroma
12316 Similar as above, but shows difference between blue and red chroma.
12317
12318 @item color
12319 Displays actual color value on waveform.
12320 @end table
12321 @end table
12322
12323 @section xbr
12324 Apply the xBR high-quality magnification filter which is designed for pixel
12325 art. It follows a set of edge-detection rules, see
12326 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
12327
12328 It accepts the following option:
12329
12330 @table @option
12331 @item n
12332 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
12333 @code{3xBR} and @code{4} for @code{4xBR}.
12334 Default is @code{3}.
12335 @end table
12336
12337 @anchor{yadif}
12338 @section yadif
12339
12340 Deinterlace the input video ("yadif" means "yet another deinterlacing
12341 filter").
12342
12343 It accepts the following parameters:
12344
12345
12346 @table @option
12347
12348 @item mode
12349 The interlacing mode to adopt. It accepts one of the following values:
12350
12351 @table @option
12352 @item 0, send_frame
12353 Output one frame for each frame.
12354 @item 1, send_field
12355 Output one frame for each field.
12356 @item 2, send_frame_nospatial
12357 Like @code{send_frame}, but it skips the spatial interlacing check.
12358 @item 3, send_field_nospatial
12359 Like @code{send_field}, but it skips the spatial interlacing check.
12360 @end table
12361
12362 The default value is @code{send_frame}.
12363
12364 @item parity
12365 The picture field parity assumed for the input interlaced video. It accepts one
12366 of the following values:
12367
12368 @table @option
12369 @item 0, tff
12370 Assume the top field is first.
12371 @item 1, bff
12372 Assume the bottom field is first.
12373 @item -1, auto
12374 Enable automatic detection of field parity.
12375 @end table
12376
12377 The default value is @code{auto}.
12378 If the interlacing is unknown or the decoder does not export this information,
12379 top field first will be assumed.
12380
12381 @item deint
12382 Specify which frames to deinterlace. Accept one of the following
12383 values:
12384
12385 @table @option
12386 @item 0, all
12387 Deinterlace all frames.
12388 @item 1, interlaced
12389 Only deinterlace frames marked as interlaced.
12390 @end table
12391
12392 The default value is @code{all}.
12393 @end table
12394
12395 @section zoompan
12396
12397 Apply Zoom & Pan effect.
12398
12399 This filter accepts the following options:
12400
12401 @table @option
12402 @item zoom, z
12403 Set the zoom expression. Default is 1.
12404
12405 @item x
12406 @item y
12407 Set the x and y expression. Default is 0.
12408
12409 @item d
12410 Set the duration expression in number of frames.
12411 This sets for how many number of frames effect will last for
12412 single input image.
12413
12414 @item s
12415 Set the output image size, default is 'hd720'.
12416 @end table
12417
12418 Each expression can contain the following constants:
12419
12420 @table @option
12421 @item in_w, iw
12422 Input width.
12423
12424 @item in_h, ih
12425 Input height.
12426
12427 @item out_w, ow
12428 Output width.
12429
12430 @item out_h, oh
12431 Output height.
12432
12433 @item in
12434 Input frame count.
12435
12436 @item on
12437 Output frame count.
12438
12439 @item x
12440 @item y
12441 Last calculated 'x' and 'y' position from 'x' and 'y' expression
12442 for current input frame.
12443
12444 @item px
12445 @item py
12446 'x' and 'y' of last output frame of previous input frame or 0 when there was
12447 not yet such frame (first input frame).
12448
12449 @item zoom
12450 Last calculated zoom from 'z' expression for current input frame.
12451
12452 @item pzoom
12453 Last calculated zoom of last output frame of previous input frame.
12454
12455 @item duration
12456 Number of output frames for current input frame. Calculated from 'd' expression
12457 for each input frame.
12458
12459 @item pduration
12460 number of output frames created for previous input frame
12461
12462 @item a
12463 Rational number: input width / input height
12464
12465 @item sar
12466 sample aspect ratio
12467
12468 @item dar
12469 display aspect ratio
12470
12471 @end table
12472
12473 @subsection Examples
12474
12475 @itemize
12476 @item
12477 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
12478 @example
12479 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
12480 @end example
12481
12482 @item
12483 Zoom-in up to 1.5 and pan always at center of picture:
12484 @example
12485 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
12486 @end example
12487 @end itemize
12488
12489 @section zscale
12490 Scale (resize) the input video, using the z.lib library:
12491 https://github.com/sekrit-twc/zimg.
12492
12493 The zscale filter forces the output display aspect ratio to be the same
12494 as the input, by changing the output sample aspect ratio.
12495
12496 If the input image format is different from the format requested by
12497 the next filter, the zscale filter will convert the input to the
12498 requested format.
12499
12500 @subsection Options
12501 The filter accepts the following options.
12502
12503 @table @option
12504 @item width, w
12505 @item height, h
12506 Set the output video dimension expression. Default value is the input
12507 dimension.
12508
12509 If the @var{width} or @var{w} is 0, the input width is used for the output.
12510 If the @var{height} or @var{h} is 0, the input height is used for the output.
12511
12512 If one of the values is -1, the zscale filter will use a value that
12513 maintains the aspect ratio of the input image, calculated from the
12514 other specified dimension. If both of them are -1, the input size is
12515 used
12516
12517 If one of the values is -n with n > 1, the zscale filter will also use a value
12518 that maintains the aspect ratio of the input image, calculated from the other
12519 specified dimension. After that it will, however, make sure that the calculated
12520 dimension is divisible by n and adjust the value if necessary.
12521
12522 See below for the list of accepted constants for use in the dimension
12523 expression.
12524
12525 @item size, s
12526 Set the video size. For the syntax of this option, check the
12527 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12528
12529 @item dither, d
12530 Set the dither type.
12531
12532 Possible values are:
12533 @table @var
12534 @item none
12535 @item ordered
12536 @item random
12537 @item error_diffusion
12538 @end table
12539
12540 Default is none.
12541
12542 @item filter, f
12543 Set the resize filter type.
12544
12545 Possible values are:
12546 @table @var
12547 @item point
12548 @item bilinear
12549 @item bicubic
12550 @item spline16
12551 @item spline36
12552 @item lanczos
12553 @end table
12554
12555 Default is bilinear.
12556
12557 @item range, r
12558 Set the color range.
12559
12560 Possible values are:
12561 @table @var
12562 @item input
12563 @item limited
12564 @item full
12565 @end table
12566
12567 Default is same as input.
12568
12569 @item primaries, p
12570 Set the color primaries.
12571
12572 Possible values are:
12573 @table @var
12574 @item input
12575 @item 709
12576 @item unspecified
12577 @item 170m
12578 @item 240m
12579 @item 2020
12580 @end table
12581
12582 Default is same as input.
12583
12584 @item transfer, t
12585 Set the transfer characteristics.
12586
12587 Possible values are:
12588 @table @var
12589 @item input
12590 @item 709
12591 @item unspecified
12592 @item 601
12593 @item linear
12594 @item 2020_10
12595 @item 2020_12
12596 @end table
12597
12598 Default is same as input.
12599
12600 @item matrix, m
12601 Set the colorspace matrix.
12602
12603 Possible value are:
12604 @table @var
12605 @item input
12606 @item 709
12607 @item unspecified
12608 @item 470bg
12609 @item 170m
12610 @item 2020_ncl
12611 @item 2020_cl
12612 @end table
12613
12614 Default is same as input.
12615 @end table
12616
12617 The values of the @option{w} and @option{h} options are expressions
12618 containing the following constants:
12619
12620 @table @var
12621 @item in_w
12622 @item in_h
12623 The input width and height
12624
12625 @item iw
12626 @item ih
12627 These are the same as @var{in_w} and @var{in_h}.
12628
12629 @item out_w
12630 @item out_h
12631 The output (scaled) width and height
12632
12633 @item ow
12634 @item oh
12635 These are the same as @var{out_w} and @var{out_h}
12636
12637 @item a
12638 The same as @var{iw} / @var{ih}
12639
12640 @item sar
12641 input sample aspect ratio
12642
12643 @item dar
12644 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12645
12646 @item hsub
12647 @item vsub
12648 horizontal and vertical input chroma subsample values. For example for the
12649 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12650
12651 @item ohsub
12652 @item ovsub
12653 horizontal and vertical output chroma subsample values. For example for the
12654 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12655 @end table
12656
12657 @table @option
12658 @end table
12659
12660 @c man end VIDEO FILTERS
12661
12662 @chapter Video Sources
12663 @c man begin VIDEO SOURCES
12664
12665 Below is a description of the currently available video sources.
12666
12667 @section buffer
12668
12669 Buffer video frames, and make them available to the filter chain.
12670
12671 This source is mainly intended for a programmatic use, in particular
12672 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
12673
12674 It accepts the following parameters:
12675
12676 @table @option
12677
12678 @item video_size
12679 Specify the size (width and height) of the buffered video frames. For the
12680 syntax of this option, check the
12681 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12682
12683 @item width
12684 The input video width.
12685
12686 @item height
12687 The input video height.
12688
12689 @item pix_fmt
12690 A string representing the pixel format of the buffered video frames.
12691 It may be a number corresponding to a pixel format, or a pixel format
12692 name.
12693
12694 @item time_base
12695 Specify the timebase assumed by the timestamps of the buffered frames.
12696
12697 @item frame_rate
12698 Specify the frame rate expected for the video stream.
12699
12700 @item pixel_aspect, sar
12701 The sample (pixel) aspect ratio of the input video.
12702
12703 @item sws_param
12704 Specify the optional parameters to be used for the scale filter which
12705 is automatically inserted when an input change is detected in the
12706 input size or format.
12707 @end table
12708
12709 For example:
12710 @example
12711 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
12712 @end example
12713
12714 will instruct the source to accept video frames with size 320x240 and
12715 with format "yuv410p", assuming 1/24 as the timestamps timebase and
12716 square pixels (1:1 sample aspect ratio).
12717 Since the pixel format with name "yuv410p" corresponds to the number 6
12718 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
12719 this example corresponds to:
12720 @example
12721 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
12722 @end example
12723
12724 Alternatively, the options can be specified as a flat string, but this
12725 syntax is deprecated:
12726
12727 @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}]
12728
12729 @section cellauto
12730
12731 Create a pattern generated by an elementary cellular automaton.
12732
12733 The initial state of the cellular automaton can be defined through the
12734 @option{filename}, and @option{pattern} options. If such options are
12735 not specified an initial state is created randomly.
12736
12737 At each new frame a new row in the video is filled with the result of
12738 the cellular automaton next generation. The behavior when the whole
12739 frame is filled is defined by the @option{scroll} option.
12740
12741 This source accepts the following options:
12742
12743 @table @option
12744 @item filename, f
12745 Read the initial cellular automaton state, i.e. the starting row, from
12746 the specified file.
12747 In the file, each non-whitespace character is considered an alive
12748 cell, a newline will terminate the row, and further characters in the
12749 file will be ignored.
12750
12751 @item pattern, p
12752 Read the initial cellular automaton state, i.e. the starting row, from
12753 the specified string.
12754
12755 Each non-whitespace character in the string is considered an alive
12756 cell, a newline will terminate the row, and further characters in the
12757 string will be ignored.
12758
12759 @item rate, r
12760 Set the video rate, that is the number of frames generated per second.
12761 Default is 25.
12762
12763 @item random_fill_ratio, ratio
12764 Set the random fill ratio for the initial cellular automaton row. It
12765 is a floating point number value ranging from 0 to 1, defaults to
12766 1/PHI.
12767
12768 This option is ignored when a file or a pattern is specified.
12769
12770 @item random_seed, seed
12771 Set the seed for filling randomly the initial row, must be an integer
12772 included between 0 and UINT32_MAX. If not specified, or if explicitly
12773 set to -1, the filter will try to use a good random seed on a best
12774 effort basis.
12775
12776 @item rule
12777 Set the cellular automaton rule, it is a number ranging from 0 to 255.
12778 Default value is 110.
12779
12780 @item size, s
12781 Set the size of the output video. For the syntax of this option, check the
12782 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12783
12784 If @option{filename} or @option{pattern} is specified, the size is set
12785 by default to the width of the specified initial state row, and the
12786 height is set to @var{width} * PHI.
12787
12788 If @option{size} is set, it must contain the width of the specified
12789 pattern string, and the specified pattern will be centered in the
12790 larger row.
12791
12792 If a filename or a pattern string is not specified, the size value
12793 defaults to "320x518" (used for a randomly generated initial state).
12794
12795 @item scroll
12796 If set to 1, scroll the output upward when all the rows in the output
12797 have been already filled. If set to 0, the new generated row will be
12798 written over the top row just after the bottom row is filled.
12799 Defaults to 1.
12800
12801 @item start_full, full
12802 If set to 1, completely fill the output with generated rows before
12803 outputting the first frame.
12804 This is the default behavior, for disabling set the value to 0.
12805
12806 @item stitch
12807 If set to 1, stitch the left and right row edges together.
12808 This is the default behavior, for disabling set the value to 0.
12809 @end table
12810
12811 @subsection Examples
12812
12813 @itemize
12814 @item
12815 Read the initial state from @file{pattern}, and specify an output of
12816 size 200x400.
12817 @example
12818 cellauto=f=pattern:s=200x400
12819 @end example
12820
12821 @item
12822 Generate a random initial row with a width of 200 cells, with a fill
12823 ratio of 2/3:
12824 @example
12825 cellauto=ratio=2/3:s=200x200
12826 @end example
12827
12828 @item
12829 Create a pattern generated by rule 18 starting by a single alive cell
12830 centered on an initial row with width 100:
12831 @example
12832 cellauto=p=@@:s=100x400:full=0:rule=18
12833 @end example
12834
12835 @item
12836 Specify a more elaborated initial pattern:
12837 @example
12838 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
12839 @end example
12840
12841 @end itemize
12842
12843 @section mandelbrot
12844
12845 Generate a Mandelbrot set fractal, and progressively zoom towards the
12846 point specified with @var{start_x} and @var{start_y}.
12847
12848 This source accepts the following options:
12849
12850 @table @option
12851
12852 @item end_pts
12853 Set the terminal pts value. Default value is 400.
12854
12855 @item end_scale
12856 Set the terminal scale value.
12857 Must be a floating point value. Default value is 0.3.
12858
12859 @item inner
12860 Set the inner coloring mode, that is the algorithm used to draw the
12861 Mandelbrot fractal internal region.
12862
12863 It shall assume one of the following values:
12864 @table @option
12865 @item black
12866 Set black mode.
12867 @item convergence
12868 Show time until convergence.
12869 @item mincol
12870 Set color based on point closest to the origin of the iterations.
12871 @item period
12872 Set period mode.
12873 @end table
12874
12875 Default value is @var{mincol}.
12876
12877 @item bailout
12878 Set the bailout value. Default value is 10.0.
12879
12880 @item maxiter
12881 Set the maximum of iterations performed by the rendering
12882 algorithm. Default value is 7189.
12883
12884 @item outer
12885 Set outer coloring mode.
12886 It shall assume one of following values:
12887 @table @option
12888 @item iteration_count
12889 Set iteration cound mode.
12890 @item normalized_iteration_count
12891 set normalized iteration count mode.
12892 @end table
12893 Default value is @var{normalized_iteration_count}.
12894
12895 @item rate, r
12896 Set frame rate, expressed as number of frames per second. Default
12897 value is "25".
12898
12899 @item size, s
12900 Set frame size. For the syntax of this option, check the "Video
12901 size" section in the ffmpeg-utils manual. Default value is "640x480".
12902
12903 @item start_scale
12904 Set the initial scale value. Default value is 3.0.
12905
12906 @item start_x
12907 Set the initial x position. Must be a floating point value between
12908 -100 and 100. Default value is -0.743643887037158704752191506114774.
12909
12910 @item start_y
12911 Set the initial y position. Must be a floating point value between
12912 -100 and 100. Default value is -0.131825904205311970493132056385139.
12913 @end table
12914
12915 @section mptestsrc
12916
12917 Generate various test patterns, as generated by the MPlayer test filter.
12918
12919 The size of the generated video is fixed, and is 256x256.
12920 This source is useful in particular for testing encoding features.
12921
12922 This source accepts the following options:
12923
12924 @table @option
12925
12926 @item rate, r
12927 Specify the frame rate of the sourced video, as the number of frames
12928 generated per second. It has to be a string in the format
12929 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12930 number or a valid video frame rate abbreviation. The default value is
12931 "25".
12932
12933 @item duration, d
12934 Set the duration of the sourced video. See
12935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12936 for the accepted syntax.
12937
12938 If not specified, or the expressed duration is negative, the video is
12939 supposed to be generated forever.
12940
12941 @item test, t
12942
12943 Set the number or the name of the test to perform. Supported tests are:
12944 @table @option
12945 @item dc_luma
12946 @item dc_chroma
12947 @item freq_luma
12948 @item freq_chroma
12949 @item amp_luma
12950 @item amp_chroma
12951 @item cbp
12952 @item mv
12953 @item ring1
12954 @item ring2
12955 @item all
12956
12957 @end table
12958
12959 Default value is "all", which will cycle through the list of all tests.
12960 @end table
12961
12962 Some examples:
12963 @example
12964 mptestsrc=t=dc_luma
12965 @end example
12966
12967 will generate a "dc_luma" test pattern.
12968
12969 @section frei0r_src
12970
12971 Provide a frei0r source.
12972
12973 To enable compilation of this filter you need to install the frei0r
12974 header and configure FFmpeg with @code{--enable-frei0r}.
12975
12976 This source accepts the following parameters:
12977
12978 @table @option
12979
12980 @item size
12981 The size of the video to generate. For the syntax of this option, check the
12982 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12983
12984 @item framerate
12985 The framerate of the generated video. It may be a string of the form
12986 @var{num}/@var{den} or a frame rate abbreviation.
12987
12988 @item filter_name
12989 The name to the frei0r source to load. For more information regarding frei0r and
12990 how to set the parameters, read the @ref{frei0r} section in the video filters
12991 documentation.
12992
12993 @item filter_params
12994 A '|'-separated list of parameters to pass to the frei0r source.
12995
12996 @end table
12997
12998 For example, to generate a frei0r partik0l source with size 200x200
12999 and frame rate 10 which is overlaid on the overlay filter main input:
13000 @example
13001 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
13002 @end example
13003
13004 @section life
13005
13006 Generate a life pattern.
13007
13008 This source is based on a generalization of John Conway's life game.
13009
13010 The sourced input represents a life grid, each pixel represents a cell
13011 which can be in one of two possible states, alive or dead. Every cell
13012 interacts with its eight neighbours, which are the cells that are
13013 horizontally, vertically, or diagonally adjacent.
13014
13015 At each interaction the grid evolves according to the adopted rule,
13016 which specifies the number of neighbor alive cells which will make a
13017 cell stay alive or born. The @option{rule} option allows one to specify
13018 the rule to adopt.
13019
13020 This source accepts the following options:
13021
13022 @table @option
13023 @item filename, f
13024 Set the file from which to read the initial grid state. In the file,
13025 each non-whitespace character is considered an alive cell, and newline
13026 is used to delimit the end of each row.
13027
13028 If this option is not specified, the initial grid is generated
13029 randomly.
13030
13031 @item rate, r
13032 Set the video rate, that is the number of frames generated per second.
13033 Default is 25.
13034
13035 @item random_fill_ratio, ratio
13036 Set the random fill ratio for the initial random grid. It is a
13037 floating point number value ranging from 0 to 1, defaults to 1/PHI.
13038 It is ignored when a file is specified.
13039
13040 @item random_seed, seed
13041 Set the seed for filling the initial random grid, must be an integer
13042 included between 0 and UINT32_MAX. If not specified, or if explicitly
13043 set to -1, the filter will try to use a good random seed on a best
13044 effort basis.
13045
13046 @item rule
13047 Set the life rule.
13048
13049 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
13050 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
13051 @var{NS} specifies the number of alive neighbor cells which make a
13052 live cell stay alive, and @var{NB} the number of alive neighbor cells
13053 which make a dead cell to become alive (i.e. to "born").
13054 "s" and "b" can be used in place of "S" and "B", respectively.
13055
13056 Alternatively a rule can be specified by an 18-bits integer. The 9
13057 high order bits are used to encode the next cell state if it is alive
13058 for each number of neighbor alive cells, the low order bits specify
13059 the rule for "borning" new cells. Higher order bits encode for an
13060 higher number of neighbor cells.
13061 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
13062 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
13063
13064 Default value is "S23/B3", which is the original Conway's game of life
13065 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
13066 cells, and will born a new cell if there are three alive cells around
13067 a dead cell.
13068
13069 @item size, s
13070 Set the size of the output video. For the syntax of this option, check the
13071 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13072
13073 If @option{filename} is specified, the size is set by default to the
13074 same size of the input file. If @option{size} is set, it must contain
13075 the size specified in the input file, and the initial grid defined in
13076 that file is centered in the larger resulting area.
13077
13078 If a filename is not specified, the size value defaults to "320x240"
13079 (used for a randomly generated initial grid).
13080
13081 @item stitch
13082 If set to 1, stitch the left and right grid edges together, and the
13083 top and bottom edges also. Defaults to 1.
13084
13085 @item mold
13086 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
13087 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
13088 value from 0 to 255.
13089
13090 @item life_color
13091 Set the color of living (or new born) cells.
13092
13093 @item death_color
13094 Set the color of dead cells. If @option{mold} is set, this is the first color
13095 used to represent a dead cell.
13096
13097 @item mold_color
13098 Set mold color, for definitely dead and moldy cells.
13099
13100 For the syntax of these 3 color options, check the "Color" section in the
13101 ffmpeg-utils manual.
13102 @end table
13103
13104 @subsection Examples
13105
13106 @itemize
13107 @item
13108 Read a grid from @file{pattern}, and center it on a grid of size
13109 300x300 pixels:
13110 @example
13111 life=f=pattern:s=300x300
13112 @end example
13113
13114 @item
13115 Generate a random grid of size 200x200, with a fill ratio of 2/3:
13116 @example
13117 life=ratio=2/3:s=200x200
13118 @end example
13119
13120 @item
13121 Specify a custom rule for evolving a randomly generated grid:
13122 @example
13123 life=rule=S14/B34
13124 @end example
13125
13126 @item
13127 Full example with slow death effect (mold) using @command{ffplay}:
13128 @example
13129 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
13130 @end example
13131 @end itemize
13132
13133 @anchor{allrgb}
13134 @anchor{allyuv}
13135 @anchor{color}
13136 @anchor{haldclutsrc}
13137 @anchor{nullsrc}
13138 @anchor{rgbtestsrc}
13139 @anchor{smptebars}
13140 @anchor{smptehdbars}
13141 @anchor{testsrc}
13142 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
13143
13144 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
13145
13146 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
13147
13148 The @code{color} source provides an uniformly colored input.
13149
13150 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
13151 @ref{haldclut} filter.
13152
13153 The @code{nullsrc} source returns unprocessed video frames. It is
13154 mainly useful to be employed in analysis / debugging tools, or as the
13155 source for filters which ignore the input data.
13156
13157 The @code{rgbtestsrc} source generates an RGB test pattern useful for
13158 detecting RGB vs BGR issues. You should see a red, green and blue
13159 stripe from top to bottom.
13160
13161 The @code{smptebars} source generates a color bars pattern, based on
13162 the SMPTE Engineering Guideline EG 1-1990.
13163
13164 The @code{smptehdbars} source generates a color bars pattern, based on
13165 the SMPTE RP 219-2002.
13166
13167 The @code{testsrc} source generates a test video pattern, showing a
13168 color pattern, a scrolling gradient and a timestamp. This is mainly
13169 intended for testing purposes.
13170
13171 The sources accept the following parameters:
13172
13173 @table @option
13174
13175 @item color, c
13176 Specify the color of the source, only available in the @code{color}
13177 source. For the syntax of this option, check the "Color" section in the
13178 ffmpeg-utils manual.
13179
13180 @item level
13181 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
13182 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
13183 pixels to be used as identity matrix for 3D lookup tables. Each component is
13184 coded on a @code{1/(N*N)} scale.
13185
13186 @item size, s
13187 Specify the size of the sourced video. For the syntax of this option, check the
13188 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13189 The default value is @code{320x240}.
13190
13191 This option is not available with the @code{haldclutsrc} filter.
13192
13193 @item rate, r
13194 Specify the frame rate of the sourced video, as the number of frames
13195 generated per second. It has to be a string in the format
13196 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
13197 number or a valid video frame rate abbreviation. The default value is
13198 "25".
13199
13200 @item sar
13201 Set the sample aspect ratio of the sourced video.
13202
13203 @item duration, d
13204 Set the duration of the sourced video. See
13205 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13206 for the accepted syntax.
13207
13208 If not specified, or the expressed duration is negative, the video is
13209 supposed to be generated forever.
13210
13211 @item decimals, n
13212 Set the number of decimals to show in the timestamp, only available in the
13213 @code{testsrc} source.
13214
13215 The displayed timestamp value will correspond to the original
13216 timestamp value multiplied by the power of 10 of the specified
13217 value. Default value is 0.
13218 @end table
13219
13220 For example the following:
13221 @example
13222 testsrc=duration=5.3:size=qcif:rate=10
13223 @end example
13224
13225 will generate a video with a duration of 5.3 seconds, with size
13226 176x144 and a frame rate of 10 frames per second.
13227
13228 The following graph description will generate a red source
13229 with an opacity of 0.2, with size "qcif" and a frame rate of 10
13230 frames per second.
13231 @example
13232 color=c=red@@0.2:s=qcif:r=10
13233 @end example
13234
13235 If the input content is to be ignored, @code{nullsrc} can be used. The
13236 following command generates noise in the luminance plane by employing
13237 the @code{geq} filter:
13238 @example
13239 nullsrc=s=256x256, geq=random(1)*255:128:128
13240 @end example
13241
13242 @subsection Commands
13243
13244 The @code{color} source supports the following commands:
13245
13246 @table @option
13247 @item c, color
13248 Set the color of the created image. Accepts the same syntax of the
13249 corresponding @option{color} option.
13250 @end table
13251
13252 @c man end VIDEO SOURCES
13253
13254 @chapter Video Sinks
13255 @c man begin VIDEO SINKS
13256
13257 Below is a description of the currently available video sinks.
13258
13259 @section buffersink
13260
13261 Buffer video frames, and make them available to the end of the filter
13262 graph.
13263
13264 This sink is mainly intended for programmatic use, in particular
13265 through the interface defined in @file{libavfilter/buffersink.h}
13266 or the options system.
13267
13268 It accepts a pointer to an AVBufferSinkContext structure, which
13269 defines the incoming buffers' formats, to be passed as the opaque
13270 parameter to @code{avfilter_init_filter} for initialization.
13271
13272 @section nullsink
13273
13274 Null video sink: do absolutely nothing with the input video. It is
13275 mainly useful as a template and for use in analysis / debugging
13276 tools.
13277
13278 @c man end VIDEO SINKS
13279
13280 @chapter Multimedia Filters
13281 @c man begin MULTIMEDIA FILTERS
13282
13283 Below is a description of the currently available multimedia filters.
13284
13285 @section aphasemeter
13286
13287 Convert input audio to a video output, displaying the audio phase.
13288
13289 The filter accepts the following options:
13290
13291 @table @option
13292 @item rate, r
13293 Set the output frame rate. Default value is @code{25}.
13294
13295 @item size, s
13296 Set the video size for the output. For the syntax of this option, check the
13297 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13298 Default value is @code{800x400}.
13299
13300 @item rc
13301 @item gc
13302 @item bc
13303 Specify the red, green, blue contrast. Default values are @code{2},
13304 @code{7} and @code{1}.
13305 Allowed range is @code{[0, 255]}.
13306
13307 @item mpc
13308 Set color which will be used for drawing median phase. If color is
13309 @code{none} which is default, no median phase value will be drawn.
13310 @end table
13311
13312 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
13313 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
13314 The @code{-1} means left and right channels are completely out of phase and
13315 @code{1} means channels are in phase.
13316
13317 @section avectorscope
13318
13319 Convert input audio to a video output, representing the audio vector
13320 scope.
13321
13322 The filter is used to measure the difference between channels of stereo
13323 audio stream. A monoaural signal, consisting of identical left and right
13324 signal, results in straight vertical line. Any stereo separation is visible
13325 as a deviation from this line, creating a Lissajous figure.
13326 If the straight (or deviation from it) but horizontal line appears this
13327 indicates that the left and right channels are out of phase.
13328
13329 The filter accepts the following options:
13330
13331 @table @option
13332 @item mode, m
13333 Set the vectorscope mode.
13334
13335 Available values are:
13336 @table @samp
13337 @item lissajous
13338 Lissajous rotated by 45 degrees.
13339
13340 @item lissajous_xy
13341 Same as above but not rotated.
13342
13343 @item polar
13344 Shape resembling half of circle.
13345 @end table
13346
13347 Default value is @samp{lissajous}.
13348
13349 @item size, s
13350 Set the video size for the output. For the syntax of this option, check the
13351 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13352 Default value is @code{400x400}.
13353
13354 @item rate, r
13355 Set the output frame rate. Default value is @code{25}.
13356
13357 @item rc
13358 @item gc
13359 @item bc
13360 @item ac
13361 Specify the red, green, blue and alpha contrast. Default values are @code{40},
13362 @code{160}, @code{80} and @code{255}.
13363 Allowed range is @code{[0, 255]}.
13364
13365 @item rf
13366 @item gf
13367 @item bf
13368 @item af
13369 Specify the red, green, blue and alpha fade. Default values are @code{15},
13370 @code{10}, @code{5} and @code{5}.
13371 Allowed range is @code{[0, 255]}.
13372
13373 @item zoom
13374 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
13375 @end table
13376
13377 @subsection Examples
13378
13379 @itemize
13380 @item
13381 Complete example using @command{ffplay}:
13382 @example
13383 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
13384              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
13385 @end example
13386 @end itemize
13387
13388 @section concat
13389
13390 Concatenate audio and video streams, joining them together one after the
13391 other.
13392
13393 The filter works on segments of synchronized video and audio streams. All
13394 segments must have the same number of streams of each type, and that will
13395 also be the number of streams at output.
13396
13397 The filter accepts the following options:
13398
13399 @table @option
13400
13401 @item n
13402 Set the number of segments. Default is 2.
13403
13404 @item v
13405 Set the number of output video streams, that is also the number of video
13406 streams in each segment. Default is 1.
13407
13408 @item a
13409 Set the number of output audio streams, that is also the number of audio
13410 streams in each segment. Default is 0.
13411
13412 @item unsafe
13413 Activate unsafe mode: do not fail if segments have a different format.
13414
13415 @end table
13416
13417 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
13418 @var{a} audio outputs.
13419
13420 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
13421 segment, in the same order as the outputs, then the inputs for the second
13422 segment, etc.
13423
13424 Related streams do not always have exactly the same duration, for various
13425 reasons including codec frame size or sloppy authoring. For that reason,
13426 related synchronized streams (e.g. a video and its audio track) should be
13427 concatenated at once. The concat filter will use the duration of the longest
13428 stream in each segment (except the last one), and if necessary pad shorter
13429 audio streams with silence.
13430
13431 For this filter to work correctly, all segments must start at timestamp 0.
13432
13433 All corresponding streams must have the same parameters in all segments; the
13434 filtering system will automatically select a common pixel format for video
13435 streams, and a common sample format, sample rate and channel layout for
13436 audio streams, but other settings, such as resolution, must be converted
13437 explicitly by the user.
13438
13439 Different frame rates are acceptable but will result in variable frame rate
13440 at output; be sure to configure the output file to handle it.
13441
13442 @subsection Examples
13443
13444 @itemize
13445 @item
13446 Concatenate an opening, an episode and an ending, all in bilingual version
13447 (video in stream 0, audio in streams 1 and 2):
13448 @example
13449 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
13450   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
13451    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
13452   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
13453 @end example
13454
13455 @item
13456 Concatenate two parts, handling audio and video separately, using the
13457 (a)movie sources, and adjusting the resolution:
13458 @example
13459 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
13460 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
13461 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
13462 @end example
13463 Note that a desync will happen at the stitch if the audio and video streams
13464 do not have exactly the same duration in the first file.
13465
13466 @end itemize
13467
13468 @anchor{ebur128}
13469 @section ebur128
13470
13471 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
13472 it unchanged. By default, it logs a message at a frequency of 10Hz with the
13473 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
13474 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
13475
13476 The filter also has a video output (see the @var{video} option) with a real
13477 time graph to observe the loudness evolution. The graphic contains the logged
13478 message mentioned above, so it is not printed anymore when this option is set,
13479 unless the verbose logging is set. The main graphing area contains the
13480 short-term loudness (3 seconds of analysis), and the gauge on the right is for
13481 the momentary loudness (400 milliseconds).
13482
13483 More information about the Loudness Recommendation EBU R128 on
13484 @url{http://tech.ebu.ch/loudness}.
13485
13486 The filter accepts the following options:
13487
13488 @table @option
13489
13490 @item video
13491 Activate the video output. The audio stream is passed unchanged whether this
13492 option is set or no. The video stream will be the first output stream if
13493 activated. Default is @code{0}.
13494
13495 @item size
13496 Set the video size. This option is for video only. For the syntax of this
13497 option, check the
13498 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13499 Default and minimum resolution is @code{640x480}.
13500
13501 @item meter
13502 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
13503 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
13504 other integer value between this range is allowed.
13505
13506 @item metadata
13507 Set metadata injection. If set to @code{1}, the audio input will be segmented
13508 into 100ms output frames, each of them containing various loudness information
13509 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
13510
13511 Default is @code{0}.
13512
13513 @item framelog
13514 Force the frame logging level.
13515
13516 Available values are:
13517 @table @samp
13518 @item info
13519 information logging level
13520 @item verbose
13521 verbose logging level
13522 @end table
13523
13524 By default, the logging level is set to @var{info}. If the @option{video} or
13525 the @option{metadata} options are set, it switches to @var{verbose}.
13526
13527 @item peak
13528 Set peak mode(s).
13529
13530 Available modes can be cumulated (the option is a @code{flag} type). Possible
13531 values are:
13532 @table @samp
13533 @item none
13534 Disable any peak mode (default).
13535 @item sample
13536 Enable sample-peak mode.
13537
13538 Simple peak mode looking for the higher sample value. It logs a message
13539 for sample-peak (identified by @code{SPK}).
13540 @item true
13541 Enable true-peak mode.
13542
13543 If enabled, the peak lookup is done on an over-sampled version of the input
13544 stream for better peak accuracy. It logs a message for true-peak.
13545 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
13546 This mode requires a build with @code{libswresample}.
13547 @end table
13548
13549 @item dualmono
13550 Treat mono input files as "dual mono". If a mono file is intended for playback
13551 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
13552 If set to @code{true}, this option will compensate for this effect.
13553 Multi-channel input files are not affected by this option.
13554
13555 @item panlaw
13556 Set a specific pan law to be used for the measurement of dual mono files.
13557 This parameter is optional, and has a default value of -3.01dB.
13558 @end table
13559
13560 @subsection Examples
13561
13562 @itemize
13563 @item
13564 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
13565 @example
13566 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
13567 @end example
13568
13569 @item
13570 Run an analysis with @command{ffmpeg}:
13571 @example
13572 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
13573 @end example
13574 @end itemize
13575
13576 @section interleave, ainterleave
13577
13578 Temporally interleave frames from several inputs.
13579
13580 @code{interleave} works with video inputs, @code{ainterleave} with audio.
13581
13582 These filters read frames from several inputs and send the oldest
13583 queued frame to the output.
13584
13585 Input streams must have a well defined, monotonically increasing frame
13586 timestamp values.
13587
13588 In order to submit one frame to output, these filters need to enqueue
13589 at least one frame for each input, so they cannot work in case one
13590 input is not yet terminated and will not receive incoming frames.
13591
13592 For example consider the case when one input is a @code{select} filter
13593 which always drop input frames. The @code{interleave} filter will keep
13594 reading from that input, but it will never be able to send new frames
13595 to output until the input will send an end-of-stream signal.
13596
13597 Also, depending on inputs synchronization, the filters will drop
13598 frames in case one input receives more frames than the other ones, and
13599 the queue is already filled.
13600
13601 These filters accept the following options:
13602
13603 @table @option
13604 @item nb_inputs, n
13605 Set the number of different inputs, it is 2 by default.
13606 @end table
13607
13608 @subsection Examples
13609
13610 @itemize
13611 @item
13612 Interleave frames belonging to different streams using @command{ffmpeg}:
13613 @example
13614 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
13615 @end example
13616
13617 @item
13618 Add flickering blur effect:
13619 @example
13620 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
13621 @end example
13622 @end itemize
13623
13624 @section perms, aperms
13625
13626 Set read/write permissions for the output frames.
13627
13628 These filters are mainly aimed at developers to test direct path in the
13629 following filter in the filtergraph.
13630
13631 The filters accept the following options:
13632
13633 @table @option
13634 @item mode
13635 Select the permissions mode.
13636
13637 It accepts the following values:
13638 @table @samp
13639 @item none
13640 Do nothing. This is the default.
13641 @item ro
13642 Set all the output frames read-only.
13643 @item rw
13644 Set all the output frames directly writable.
13645 @item toggle
13646 Make the frame read-only if writable, and writable if read-only.
13647 @item random
13648 Set each output frame read-only or writable randomly.
13649 @end table
13650
13651 @item seed
13652 Set the seed for the @var{random} mode, must be an integer included between
13653 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
13654 @code{-1}, the filter will try to use a good random seed on a best effort
13655 basis.
13656 @end table
13657
13658 Note: in case of auto-inserted filter between the permission filter and the
13659 following one, the permission might not be received as expected in that
13660 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
13661 perms/aperms filter can avoid this problem.
13662
13663 @section realtime, arealtime
13664
13665 Slow down filtering to match real time approximatively.
13666
13667 These filters will pause the filtering for a variable amount of time to
13668 match the output rate with the input timestamps.
13669 They are similar to the @option{re} option to @code{ffmpeg}.
13670
13671 They accept the following options:
13672
13673 @table @option
13674 @item limit
13675 Time limit for the pauses. Any pause longer than that will be considered
13676 a timestamp discontinuity and reset the timer. Default is 2 seconds.
13677 @end table
13678
13679 @section select, aselect
13680
13681 Select frames to pass in output.
13682
13683 This filter accepts the following options:
13684
13685 @table @option
13686
13687 @item expr, e
13688 Set expression, which is evaluated for each input frame.
13689
13690 If the expression is evaluated to zero, the frame is discarded.
13691
13692 If the evaluation result is negative or NaN, the frame is sent to the
13693 first output; otherwise it is sent to the output with index
13694 @code{ceil(val)-1}, assuming that the input index starts from 0.
13695
13696 For example a value of @code{1.2} corresponds to the output with index
13697 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
13698
13699 @item outputs, n
13700 Set the number of outputs. The output to which to send the selected
13701 frame is based on the result of the evaluation. Default value is 1.
13702 @end table
13703
13704 The expression can contain the following constants:
13705
13706 @table @option
13707 @item n
13708 The (sequential) number of the filtered frame, starting from 0.
13709
13710 @item selected_n
13711 The (sequential) number of the selected frame, starting from 0.
13712
13713 @item prev_selected_n
13714 The sequential number of the last selected frame. It's NAN if undefined.
13715
13716 @item TB
13717 The timebase of the input timestamps.
13718
13719 @item pts
13720 The PTS (Presentation TimeStamp) of the filtered video frame,
13721 expressed in @var{TB} units. It's NAN if undefined.
13722
13723 @item t
13724 The PTS of the filtered video frame,
13725 expressed in seconds. It's NAN if undefined.
13726
13727 @item prev_pts
13728 The PTS of the previously filtered video frame. It's NAN if undefined.
13729
13730 @item prev_selected_pts
13731 The PTS of the last previously filtered video frame. It's NAN if undefined.
13732
13733 @item prev_selected_t
13734 The PTS of the last previously selected video frame. It's NAN if undefined.
13735
13736 @item start_pts
13737 The PTS of the first video frame in the video. It's NAN if undefined.
13738
13739 @item start_t
13740 The time of the first video frame in the video. It's NAN if undefined.
13741
13742 @item pict_type @emph{(video only)}
13743 The type of the filtered frame. It can assume one of the following
13744 values:
13745 @table @option
13746 @item I
13747 @item P
13748 @item B
13749 @item S
13750 @item SI
13751 @item SP
13752 @item BI
13753 @end table
13754
13755 @item interlace_type @emph{(video only)}
13756 The frame interlace type. It can assume one of the following values:
13757 @table @option
13758 @item PROGRESSIVE
13759 The frame is progressive (not interlaced).
13760 @item TOPFIRST
13761 The frame is top-field-first.
13762 @item BOTTOMFIRST
13763 The frame is bottom-field-first.
13764 @end table
13765
13766 @item consumed_sample_n @emph{(audio only)}
13767 the number of selected samples before the current frame
13768
13769 @item samples_n @emph{(audio only)}
13770 the number of samples in the current frame
13771
13772 @item sample_rate @emph{(audio only)}
13773 the input sample rate
13774
13775 @item key
13776 This is 1 if the filtered frame is a key-frame, 0 otherwise.
13777
13778 @item pos
13779 the position in the file of the filtered frame, -1 if the information
13780 is not available (e.g. for synthetic video)
13781
13782 @item scene @emph{(video only)}
13783 value between 0 and 1 to indicate a new scene; a low value reflects a low
13784 probability for the current frame to introduce a new scene, while a higher
13785 value means the current frame is more likely to be one (see the example below)
13786
13787 @item concatdec_select
13788 The concat demuxer can select only part of a concat input file by setting an
13789 inpoint and an outpoint, but the output packets may not be entirely contained
13790 in the selected interval. By using this variable, it is possible to skip frames
13791 generated by the concat demuxer which are not exactly contained in the selected
13792 interval.
13793
13794 This works by comparing the frame pts against the @var{lavf.concat.start_time}
13795 and the @var{lavf.concat.duration} packet metadata values which are also
13796 present in the decoded frames.
13797
13798 The @var{concatdec_select} variable is -1 if the frame pts is at least
13799 start_time and either the duration metadata is missing or the frame pts is less
13800 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
13801 missing.
13802
13803 That basically means that an input frame is selected if its pts is within the
13804 interval set by the concat demuxer.
13805
13806 @end table
13807
13808 The default value of the select expression is "1".
13809
13810 @subsection Examples
13811
13812 @itemize
13813 @item
13814 Select all frames in input:
13815 @example
13816 select
13817 @end example
13818
13819 The example above is the same as:
13820 @example
13821 select=1
13822 @end example
13823
13824 @item
13825 Skip all frames:
13826 @example
13827 select=0
13828 @end example
13829
13830 @item
13831 Select only I-frames:
13832 @example
13833 select='eq(pict_type\,I)'
13834 @end example
13835
13836 @item
13837 Select one frame every 100:
13838 @example
13839 select='not(mod(n\,100))'
13840 @end example
13841
13842 @item
13843 Select only frames contained in the 10-20 time interval:
13844 @example
13845 select=between(t\,10\,20)
13846 @end example
13847
13848 @item
13849 Select only I frames contained in the 10-20 time interval:
13850 @example
13851 select=between(t\,10\,20)*eq(pict_type\,I)
13852 @end example
13853
13854 @item
13855 Select frames with a minimum distance of 10 seconds:
13856 @example
13857 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
13858 @end example
13859
13860 @item
13861 Use aselect to select only audio frames with samples number > 100:
13862 @example
13863 aselect='gt(samples_n\,100)'
13864 @end example
13865
13866 @item
13867 Create a mosaic of the first scenes:
13868 @example
13869 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
13870 @end example
13871
13872 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
13873 choice.
13874
13875 @item
13876 Send even and odd frames to separate outputs, and compose them:
13877 @example
13878 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
13879 @end example
13880
13881 @item
13882 Select useful frames from an ffconcat file which is using inpoints and
13883 outpoints but where the source files are not intra frame only.
13884 @example
13885 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
13886 @end example
13887 @end itemize
13888
13889 @section sendcmd, asendcmd
13890
13891 Send commands to filters in the filtergraph.
13892
13893 These filters read commands to be sent to other filters in the
13894 filtergraph.
13895
13896 @code{sendcmd} must be inserted between two video filters,
13897 @code{asendcmd} must be inserted between two audio filters, but apart
13898 from that they act the same way.
13899
13900 The specification of commands can be provided in the filter arguments
13901 with the @var{commands} option, or in a file specified by the
13902 @var{filename} option.
13903
13904 These filters accept the following options:
13905 @table @option
13906 @item commands, c
13907 Set the commands to be read and sent to the other filters.
13908 @item filename, f
13909 Set the filename of the commands to be read and sent to the other
13910 filters.
13911 @end table
13912
13913 @subsection Commands syntax
13914
13915 A commands description consists of a sequence of interval
13916 specifications, comprising a list of commands to be executed when a
13917 particular event related to that interval occurs. The occurring event
13918 is typically the current frame time entering or leaving a given time
13919 interval.
13920
13921 An interval is specified by the following syntax:
13922 @example
13923 @var{START}[-@var{END}] @var{COMMANDS};
13924 @end example
13925
13926 The time interval is specified by the @var{START} and @var{END} times.
13927 @var{END} is optional and defaults to the maximum time.
13928
13929 The current frame time is considered within the specified interval if
13930 it is included in the interval [@var{START}, @var{END}), that is when
13931 the time is greater or equal to @var{START} and is lesser than
13932 @var{END}.
13933
13934 @var{COMMANDS} consists of a sequence of one or more command
13935 specifications, separated by ",", relating to that interval.  The
13936 syntax of a command specification is given by:
13937 @example
13938 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
13939 @end example
13940
13941 @var{FLAGS} is optional and specifies the type of events relating to
13942 the time interval which enable sending the specified command, and must
13943 be a non-null sequence of identifier flags separated by "+" or "|" and
13944 enclosed between "[" and "]".
13945
13946 The following flags are recognized:
13947 @table @option
13948 @item enter
13949 The command is sent when the current frame timestamp enters the
13950 specified interval. In other words, the command is sent when the
13951 previous frame timestamp was not in the given interval, and the
13952 current is.
13953
13954 @item leave
13955 The command is sent when the current frame timestamp leaves the
13956 specified interval. In other words, the command is sent when the
13957 previous frame timestamp was in the given interval, and the
13958 current is not.
13959 @end table
13960
13961 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
13962 assumed.
13963
13964 @var{TARGET} specifies the target of the command, usually the name of
13965 the filter class or a specific filter instance name.
13966
13967 @var{COMMAND} specifies the name of the command for the target filter.
13968
13969 @var{ARG} is optional and specifies the optional list of argument for
13970 the given @var{COMMAND}.
13971
13972 Between one interval specification and another, whitespaces, or
13973 sequences of characters starting with @code{#} until the end of line,
13974 are ignored and can be used to annotate comments.
13975
13976 A simplified BNF description of the commands specification syntax
13977 follows:
13978 @example
13979 @var{COMMAND_FLAG}  ::= "enter" | "leave"
13980 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
13981 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
13982 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
13983 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
13984 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
13985 @end example
13986
13987 @subsection Examples
13988
13989 @itemize
13990 @item
13991 Specify audio tempo change at second 4:
13992 @example
13993 asendcmd=c='4.0 atempo tempo 1.5',atempo
13994 @end example
13995
13996 @item
13997 Specify a list of drawtext and hue commands in a file.
13998 @example
13999 # show text in the interval 5-10
14000 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
14001          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
14002
14003 # desaturate the image in the interval 15-20
14004 15.0-20.0 [enter] hue s 0,
14005           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
14006           [leave] hue s 1,
14007           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
14008
14009 # apply an exponential saturation fade-out effect, starting from time 25
14010 25 [enter] hue s exp(25-t)
14011 @end example
14012
14013 A filtergraph allowing to read and process the above command list
14014 stored in a file @file{test.cmd}, can be specified with:
14015 @example
14016 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
14017 @end example
14018 @end itemize
14019
14020 @anchor{setpts}
14021 @section setpts, asetpts
14022
14023 Change the PTS (presentation timestamp) of the input frames.
14024
14025 @code{setpts} works on video frames, @code{asetpts} on audio frames.
14026
14027 This filter accepts the following options:
14028
14029 @table @option
14030
14031 @item expr
14032 The expression which is evaluated for each frame to construct its timestamp.
14033
14034 @end table
14035
14036 The expression is evaluated through the eval API and can contain the following
14037 constants:
14038
14039 @table @option
14040 @item FRAME_RATE
14041 frame rate, only defined for constant frame-rate video
14042
14043 @item PTS
14044 The presentation timestamp in input
14045
14046 @item N
14047 The count of the input frame for video or the number of consumed samples,
14048 not including the current frame for audio, starting from 0.
14049
14050 @item NB_CONSUMED_SAMPLES
14051 The number of consumed samples, not including the current frame (only
14052 audio)
14053
14054 @item NB_SAMPLES, S
14055 The number of samples in the current frame (only audio)
14056
14057 @item SAMPLE_RATE, SR
14058 The audio sample rate.
14059
14060 @item STARTPTS
14061 The PTS of the first frame.
14062
14063 @item STARTT
14064 the time in seconds of the first frame
14065
14066 @item INTERLACED
14067 State whether the current frame is interlaced.
14068
14069 @item T
14070 the time in seconds of the current frame
14071
14072 @item POS
14073 original position in the file of the frame, or undefined if undefined
14074 for the current frame
14075
14076 @item PREV_INPTS
14077 The previous input PTS.
14078
14079 @item PREV_INT
14080 previous input time in seconds
14081
14082 @item PREV_OUTPTS
14083 The previous output PTS.
14084
14085 @item PREV_OUTT
14086 previous output time in seconds
14087
14088 @item RTCTIME
14089 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
14090 instead.
14091
14092 @item RTCSTART
14093 The wallclock (RTC) time at the start of the movie in microseconds.
14094
14095 @item TB
14096 The timebase of the input timestamps.
14097
14098 @end table
14099
14100 @subsection Examples
14101
14102 @itemize
14103 @item
14104 Start counting PTS from zero
14105 @example
14106 setpts=PTS-STARTPTS
14107 @end example
14108
14109 @item
14110 Apply fast motion effect:
14111 @example
14112 setpts=0.5*PTS
14113 @end example
14114
14115 @item
14116 Apply slow motion effect:
14117 @example
14118 setpts=2.0*PTS
14119 @end example
14120
14121 @item
14122 Set fixed rate of 25 frames per second:
14123 @example
14124 setpts=N/(25*TB)
14125 @end example
14126
14127 @item
14128 Set fixed rate 25 fps with some jitter:
14129 @example
14130 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
14131 @end example
14132
14133 @item
14134 Apply an offset of 10 seconds to the input PTS:
14135 @example
14136 setpts=PTS+10/TB
14137 @end example
14138
14139 @item
14140 Generate timestamps from a "live source" and rebase onto the current timebase:
14141 @example
14142 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
14143 @end example
14144
14145 @item
14146 Generate timestamps by counting samples:
14147 @example
14148 asetpts=N/SR/TB
14149 @end example
14150
14151 @end itemize
14152
14153 @section settb, asettb
14154
14155 Set the timebase to use for the output frames timestamps.
14156 It is mainly useful for testing timebase configuration.
14157
14158 It accepts the following parameters:
14159
14160 @table @option
14161
14162 @item expr, tb
14163 The expression which is evaluated into the output timebase.
14164
14165 @end table
14166
14167 The value for @option{tb} is an arithmetic expression representing a
14168 rational. The expression can contain the constants "AVTB" (the default
14169 timebase), "intb" (the input timebase) and "sr" (the sample rate,
14170 audio only). Default value is "intb".
14171
14172 @subsection Examples
14173
14174 @itemize
14175 @item
14176 Set the timebase to 1/25:
14177 @example
14178 settb=expr=1/25
14179 @end example
14180
14181 @item
14182 Set the timebase to 1/10:
14183 @example
14184 settb=expr=0.1
14185 @end example
14186
14187 @item
14188 Set the timebase to 1001/1000:
14189 @example
14190 settb=1+0.001
14191 @end example
14192
14193 @item
14194 Set the timebase to 2*intb:
14195 @example
14196 settb=2*intb
14197 @end example
14198
14199 @item
14200 Set the default timebase value:
14201 @example
14202 settb=AVTB
14203 @end example
14204 @end itemize
14205
14206 @section showcqt
14207 Convert input audio to a video output representing frequency spectrum
14208 logarithmically using Brown-Puckette constant Q transform algorithm with
14209 direct frequency domain coefficient calculation (but the transform itself
14210 is not really constant Q, instead the Q factor is actually variable/clamped),
14211 with musical tone scale, from E0 to D#10.
14212
14213 The filter accepts the following options:
14214
14215 @table @option
14216 @item size, s
14217 Specify the video size for the output. It must be even. For the syntax of this option,
14218 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14219 Default value is @code{1920x1080}.
14220
14221 @item fps, rate, r
14222 Set the output frame rate. Default value is @code{25}.
14223
14224 @item bar_h
14225 Set the bargraph height. It must be even. Default value is @code{-1} which
14226 computes the bargraph height automatically.
14227
14228 @item axis_h
14229 Set the axis height. It must be even. Default value is @code{-1} which computes
14230 the axis height automatically.
14231
14232 @item sono_h
14233 Set the sonogram height. It must be even. Default value is @code{-1} which
14234 computes the sonogram height automatically.
14235
14236 @item fullhd
14237 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
14238 instead. Default value is @code{1}.
14239
14240 @item sono_v, volume
14241 Specify the sonogram volume expression. It can contain variables:
14242 @table @option
14243 @item bar_v
14244 the @var{bar_v} evaluated expression
14245 @item frequency, freq, f
14246 the frequency where it is evaluated
14247 @item timeclamp, tc
14248 the value of @var{timeclamp} option
14249 @end table
14250 and functions:
14251 @table @option
14252 @item a_weighting(f)
14253 A-weighting of equal loudness
14254 @item b_weighting(f)
14255 B-weighting of equal loudness
14256 @item c_weighting(f)
14257 C-weighting of equal loudness.
14258 @end table
14259 Default value is @code{16}.
14260
14261 @item bar_v, volume2
14262 Specify the bargraph volume expression. It can contain variables:
14263 @table @option
14264 @item sono_v
14265 the @var{sono_v} evaluated expression
14266 @item frequency, freq, f
14267 the frequency where it is evaluated
14268 @item timeclamp, tc
14269 the value of @var{timeclamp} option
14270 @end table
14271 and functions:
14272 @table @option
14273 @item a_weighting(f)
14274 A-weighting of equal loudness
14275 @item b_weighting(f)
14276 B-weighting of equal loudness
14277 @item c_weighting(f)
14278 C-weighting of equal loudness.
14279 @end table
14280 Default value is @code{sono_v}.
14281
14282 @item sono_g, gamma
14283 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
14284 higher gamma makes the spectrum having more range. Default value is @code{3}.
14285 Acceptable range is @code{[1, 7]}.
14286
14287 @item bar_g, gamma2
14288 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
14289 @code{[1, 7]}.
14290
14291 @item timeclamp, tc
14292 Specify the transform timeclamp. At low frequency, there is trade-off between
14293 accuracy in time domain and frequency domain. If timeclamp is lower,
14294 event in time domain is represented more accurately (such as fast bass drum),
14295 otherwise event in frequency domain is represented more accurately
14296 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
14297
14298 @item basefreq
14299 Specify the transform base frequency. Default value is @code{20.01523126408007475},
14300 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
14301
14302 @item endfreq
14303 Specify the transform end frequency. Default value is @code{20495.59681441799654},
14304 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
14305
14306 @item coeffclamp
14307 This option is deprecated and ignored.
14308
14309 @item tlength
14310 Specify the transform length in time domain. Use this option to control accuracy
14311 trade-off between time domain and frequency domain at every frequency sample.
14312 It can contain variables:
14313 @table @option
14314 @item frequency, freq, f
14315 the frequency where it is evaluated
14316 @item timeclamp, tc
14317 the value of @var{timeclamp} option.
14318 @end table
14319 Default value is @code{384*tc/(384+tc*f)}.
14320
14321 @item count
14322 Specify the transform count for every video frame. Default value is @code{6}.
14323 Acceptable range is @code{[1, 30]}.
14324
14325 @item fcount
14326 Specify the transform count for every single pixel. Default value is @code{0},
14327 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
14328
14329 @item fontfile
14330 Specify font file for use with freetype to draw the axis. If not specified,
14331 use embedded font. Note that drawing with font file or embedded font is not
14332 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
14333 option instead.
14334
14335 @item fontcolor
14336 Specify font color expression. This is arithmetic expression that should return
14337 integer value 0xRRGGBB. It can contain variables:
14338 @table @option
14339 @item frequency, freq, f
14340 the frequency where it is evaluated
14341 @item timeclamp, tc
14342 the value of @var{timeclamp} option
14343 @end table
14344 and functions:
14345 @table @option
14346 @item midi(f)
14347 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
14348 @item r(x), g(x), b(x)
14349 red, green, and blue value of intensity x.
14350 @end table
14351 Default value is @code{st(0, (midi(f)-59.5)/12);
14352 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
14353 r(1-ld(1)) + b(ld(1))}.
14354
14355 @item axisfile
14356 Specify image file to draw the axis. This option override @var{fontfile} and
14357 @var{fontcolor} option.
14358
14359 @item axis, text
14360 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
14361 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
14362 Default value is @code{1}.
14363
14364 @end table
14365
14366 @subsection Examples
14367
14368 @itemize
14369 @item
14370 Playing audio while showing the spectrum:
14371 @example
14372 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
14373 @end example
14374
14375 @item
14376 Same as above, but with frame rate 30 fps:
14377 @example
14378 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
14379 @end example
14380
14381 @item
14382 Playing at 1280x720:
14383 @example
14384 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
14385 @end example
14386
14387 @item
14388 Disable sonogram display:
14389 @example
14390 sono_h=0
14391 @end example
14392
14393 @item
14394 A1 and its harmonics: A1, A2, (near)E3, A3:
14395 @example
14396 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),
14397                  asplit[a][out1]; [a] showcqt [out0]'
14398 @end example
14399
14400 @item
14401 Same as above, but with more accuracy in frequency domain:
14402 @example
14403 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),
14404                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
14405 @end example
14406
14407 @item
14408 Custom volume:
14409 @example
14410 bar_v=10:sono_v=bar_v*a_weighting(f)
14411 @end example
14412
14413 @item
14414 Custom gamma, now spectrum is linear to the amplitude.
14415 @example
14416 bar_g=2:sono_g=2
14417 @end example
14418
14419 @item
14420 Custom tlength equation:
14421 @example
14422 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)))'
14423 @end example
14424
14425 @item
14426 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
14427 @example
14428 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
14429 @end example
14430
14431 @item
14432 Custom frequency range with custom axis using image file:
14433 @example
14434 axisfile=myaxis.png:basefreq=40:endfreq=10000
14435 @end example
14436 @end itemize
14437
14438 @section showfreqs
14439
14440 Convert input audio to video output representing the audio power spectrum.
14441 Audio amplitude is on Y-axis while frequency is on X-axis.
14442
14443 The filter accepts the following options:
14444
14445 @table @option
14446 @item size, s
14447 Specify size of video. For the syntax of this option, check the
14448 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14449 Default is @code{1024x512}.
14450
14451 @item mode
14452 Set display mode.
14453 This set how each frequency bin will be represented.
14454
14455 It accepts the following values:
14456 @table @samp
14457 @item line
14458 @item bar
14459 @item dot
14460 @end table
14461 Default is @code{bar}.
14462
14463 @item ascale
14464 Set amplitude scale.
14465
14466 It accepts the following values:
14467 @table @samp
14468 @item lin
14469 Linear scale.
14470
14471 @item sqrt
14472 Square root scale.
14473
14474 @item cbrt
14475 Cubic root scale.
14476
14477 @item log
14478 Logarithmic scale.
14479 @end table
14480 Default is @code{log}.
14481
14482 @item fscale
14483 Set frequency scale.
14484
14485 It accepts the following values:
14486 @table @samp
14487 @item lin
14488 Linear scale.
14489
14490 @item log
14491 Logarithmic scale.
14492
14493 @item rlog
14494 Reverse logarithmic scale.
14495 @end table
14496 Default is @code{lin}.
14497
14498 @item win_size
14499 Set window size.
14500
14501 It accepts the following values:
14502 @table @samp
14503 @item w16
14504 @item w32
14505 @item w64
14506 @item w128
14507 @item w256
14508 @item w512
14509 @item w1024
14510 @item w2048
14511 @item w4096
14512 @item w8192
14513 @item w16384
14514 @item w32768
14515 @item w65536
14516 @end table
14517 Default is @code{w2048}
14518
14519 @item win_func
14520 Set windowing function.
14521
14522 It accepts the following values:
14523 @table @samp
14524 @item rect
14525 @item bartlett
14526 @item hanning
14527 @item hamming
14528 @item blackman
14529 @item welch
14530 @item flattop
14531 @item bharris
14532 @item bnuttall
14533 @item bhann
14534 @item sine
14535 @item nuttall
14536 @item lanczos
14537 @item gauss
14538 @end table
14539 Default is @code{hanning}.
14540
14541 @item overlap
14542 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
14543 which means optimal overlap for selected window function will be picked.
14544
14545 @item averaging
14546 Set time averaging. Setting this to 0 will display current maximal peaks.
14547 Default is @code{1}, which means time averaging is disabled.
14548
14549 @item colors
14550 Specify list of colors separated by space or by '|' which will be used to
14551 draw channel frequencies. Unrecognized or missing colors will be replaced
14552 by white color.
14553
14554 @item cmode
14555 Set channel display mode.
14556
14557 It accepts the following values:
14558 @table @samp
14559 @item combined
14560 @item separate
14561 @end table
14562 Default is @code{combined}.
14563
14564 @end table
14565
14566 @section showspectrum
14567
14568 Convert input audio to a video output, representing the audio frequency
14569 spectrum.
14570
14571 The filter accepts the following options:
14572
14573 @table @option
14574 @item size, s
14575 Specify the video size for the output. For the syntax of this option, check the
14576 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14577 Default value is @code{640x512}.
14578
14579 @item slide
14580 Specify how the spectrum should slide along the window.
14581
14582 It accepts the following values:
14583 @table @samp
14584 @item replace
14585 the samples start again on the left when they reach the right
14586 @item scroll
14587 the samples scroll from right to left
14588 @item rscroll
14589 the samples scroll from left to right
14590 @item fullframe
14591 frames are only produced when the samples reach the right
14592 @end table
14593
14594 Default value is @code{replace}.
14595
14596 @item mode
14597 Specify display mode.
14598
14599 It accepts the following values:
14600 @table @samp
14601 @item combined
14602 all channels are displayed in the same row
14603 @item separate
14604 all channels are displayed in separate rows
14605 @end table
14606
14607 Default value is @samp{combined}.
14608
14609 @item color
14610 Specify display color mode.
14611
14612 It accepts the following values:
14613 @table @samp
14614 @item channel
14615 each channel is displayed in a separate color
14616 @item intensity
14617 each channel is displayed using the same color scheme
14618 @item rainbow
14619 each channel is displayed using the rainbow color scheme
14620 @item moreland
14621 each channel is displayed using the moreland color scheme
14622 @item nebulae
14623 each channel is displayed using the nebulae color scheme
14624 @item fire
14625 each channel is displayed using the fire color scheme
14626 @end table
14627
14628 Default value is @samp{channel}.
14629
14630 @item scale
14631 Specify scale used for calculating intensity color values.
14632
14633 It accepts the following values:
14634 @table @samp
14635 @item lin
14636 linear
14637 @item sqrt
14638 square root, default
14639 @item cbrt
14640 cubic root
14641 @item log
14642 logarithmic
14643 @end table
14644
14645 Default value is @samp{sqrt}.
14646
14647 @item saturation
14648 Set saturation modifier for displayed colors. Negative values provide
14649 alternative color scheme. @code{0} is no saturation at all.
14650 Saturation must be in [-10.0, 10.0] range.
14651 Default value is @code{1}.
14652
14653 @item win_func
14654 Set window function.
14655
14656 It accepts the following values:
14657 @table @samp
14658 @item rect
14659 @item bartlett
14660 @item hann
14661 @item hanning
14662 @item hamming
14663 @item blackman
14664 @item welch
14665 @item flattop
14666 @item bharris
14667 @item bnuttall
14668 @item bhann
14669 @item sine
14670 @item nuttall
14671 @item lanczos
14672 @item gauss
14673 @end table
14674
14675 Default value is @code{hann}.
14676
14677 @item orientation
14678 Set orientation of time vs frequency axis. Can be @code{vertical} or
14679 @code{horizontal}. Default is @code{vertical}.
14680
14681 @item overlap
14682 Set ratio of overlap window. Default value is @code{0}.
14683 When value is @code{1} overlap is set to recommended size for specific
14684 window function currently used.
14685 @end table
14686
14687 The usage is very similar to the showwaves filter; see the examples in that
14688 section.
14689
14690 @subsection Examples
14691
14692 @itemize
14693 @item
14694 Large window with logarithmic color scaling:
14695 @example
14696 showspectrum=s=1280x480:scale=log
14697 @end example
14698
14699 @item
14700 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
14701 @example
14702 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14703              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
14704 @end example
14705 @end itemize
14706
14707 @section showvolume
14708
14709 Convert input audio volume to a video output.
14710
14711 The filter accepts the following options:
14712
14713 @table @option
14714 @item rate, r
14715 Set video rate.
14716
14717 @item b
14718 Set border width, allowed range is [0, 5]. Default is 1.
14719
14720 @item w
14721 Set channel width, allowed range is [80, 1080]. Default is 400.
14722
14723 @item h
14724 Set channel height, allowed range is [1, 100]. Default is 20.
14725
14726 @item f
14727 Set fade, allowed range is [0.001, 1]. Default is 0.95.
14728
14729 @item c
14730 Set volume color expression.
14731
14732 The expression can use the following variables:
14733
14734 @table @option
14735 @item VOLUME
14736 Current max volume of channel in dB.
14737
14738 @item CHANNEL
14739 Current channel number, starting from 0.
14740 @end table
14741
14742 @item t
14743 If set, displays channel names. Default is enabled.
14744
14745 @item v
14746 If set, displays volume values. Default is enabled.
14747 @end table
14748
14749 @section showwaves
14750
14751 Convert input audio to a video output, representing the samples waves.
14752
14753 The filter accepts the following options:
14754
14755 @table @option
14756 @item size, s
14757 Specify the video size for the output. For the syntax of this option, check the
14758 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14759 Default value is @code{600x240}.
14760
14761 @item mode
14762 Set display mode.
14763
14764 Available values are:
14765 @table @samp
14766 @item point
14767 Draw a point for each sample.
14768
14769 @item line
14770 Draw a vertical line for each sample.
14771
14772 @item p2p
14773 Draw a point for each sample and a line between them.
14774
14775 @item cline
14776 Draw a centered vertical line for each sample.
14777 @end table
14778
14779 Default value is @code{point}.
14780
14781 @item n
14782 Set the number of samples which are printed on the same column. A
14783 larger value will decrease the frame rate. Must be a positive
14784 integer. This option can be set only if the value for @var{rate}
14785 is not explicitly specified.
14786
14787 @item rate, r
14788 Set the (approximate) output frame rate. This is done by setting the
14789 option @var{n}. Default value is "25".
14790
14791 @item split_channels
14792 Set if channels should be drawn separately or overlap. Default value is 0.
14793
14794 @end table
14795
14796 @subsection Examples
14797
14798 @itemize
14799 @item
14800 Output the input file audio and the corresponding video representation
14801 at the same time:
14802 @example
14803 amovie=a.mp3,asplit[out0],showwaves[out1]
14804 @end example
14805
14806 @item
14807 Create a synthetic signal and show it with showwaves, forcing a
14808 frame rate of 30 frames per second:
14809 @example
14810 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
14811 @end example
14812 @end itemize
14813
14814 @section showwavespic
14815
14816 Convert input audio to a single video frame, representing the samples waves.
14817
14818 The filter accepts the following options:
14819
14820 @table @option
14821 @item size, s
14822 Specify the video size for the output. For the syntax of this option, check the
14823 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14824 Default value is @code{600x240}.
14825
14826 @item split_channels
14827 Set if channels should be drawn separately or overlap. Default value is 0.
14828 @end table
14829
14830 @subsection Examples
14831
14832 @itemize
14833 @item
14834 Extract a channel split representation of the wave form of a whole audio track
14835 in a 1024x800 picture using @command{ffmpeg}:
14836 @example
14837 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
14838 @end example
14839
14840 @item
14841 Colorize the waveform with colorchannelmixer. This example will make
14842 the waveform a green color approximately RGB(66,217,150). Additional
14843 channels will be shades of this color.
14844 @example
14845 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
14846 @end example
14847 @end itemize
14848
14849 @section split, asplit
14850
14851 Split input into several identical outputs.
14852
14853 @code{asplit} works with audio input, @code{split} with video.
14854
14855 The filter accepts a single parameter which specifies the number of outputs. If
14856 unspecified, it defaults to 2.
14857
14858 @subsection Examples
14859
14860 @itemize
14861 @item
14862 Create two separate outputs from the same input:
14863 @example
14864 [in] split [out0][out1]
14865 @end example
14866
14867 @item
14868 To create 3 or more outputs, you need to specify the number of
14869 outputs, like in:
14870 @example
14871 [in] asplit=3 [out0][out1][out2]
14872 @end example
14873
14874 @item
14875 Create two separate outputs from the same input, one cropped and
14876 one padded:
14877 @example
14878 [in] split [splitout1][splitout2];
14879 [splitout1] crop=100:100:0:0    [cropout];
14880 [splitout2] pad=200:200:100:100 [padout];
14881 @end example
14882
14883 @item
14884 Create 5 copies of the input audio with @command{ffmpeg}:
14885 @example
14886 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
14887 @end example
14888 @end itemize
14889
14890 @section zmq, azmq
14891
14892 Receive commands sent through a libzmq client, and forward them to
14893 filters in the filtergraph.
14894
14895 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
14896 must be inserted between two video filters, @code{azmq} between two
14897 audio filters.
14898
14899 To enable these filters you need to install the libzmq library and
14900 headers and configure FFmpeg with @code{--enable-libzmq}.
14901
14902 For more information about libzmq see:
14903 @url{http://www.zeromq.org/}
14904
14905 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
14906 receives messages sent through a network interface defined by the
14907 @option{bind_address} option.
14908
14909 The received message must be in the form:
14910 @example
14911 @var{TARGET} @var{COMMAND} [@var{ARG}]
14912 @end example
14913
14914 @var{TARGET} specifies the target of the command, usually the name of
14915 the filter class or a specific filter instance name.
14916
14917 @var{COMMAND} specifies the name of the command for the target filter.
14918
14919 @var{ARG} is optional and specifies the optional argument list for the
14920 given @var{COMMAND}.
14921
14922 Upon reception, the message is processed and the corresponding command
14923 is injected into the filtergraph. Depending on the result, the filter
14924 will send a reply to the client, adopting the format:
14925 @example
14926 @var{ERROR_CODE} @var{ERROR_REASON}
14927 @var{MESSAGE}
14928 @end example
14929
14930 @var{MESSAGE} is optional.
14931
14932 @subsection Examples
14933
14934 Look at @file{tools/zmqsend} for an example of a zmq client which can
14935 be used to send commands processed by these filters.
14936
14937 Consider the following filtergraph generated by @command{ffplay}
14938 @example
14939 ffplay -dumpgraph 1 -f lavfi "
14940 color=s=100x100:c=red  [l];
14941 color=s=100x100:c=blue [r];
14942 nullsrc=s=200x100, zmq [bg];
14943 [bg][l]   overlay      [bg+l];
14944 [bg+l][r] overlay=x=100 "
14945 @end example
14946
14947 To change the color of the left side of the video, the following
14948 command can be used:
14949 @example
14950 echo Parsed_color_0 c yellow | tools/zmqsend
14951 @end example
14952
14953 To change the right side:
14954 @example
14955 echo Parsed_color_1 c pink | tools/zmqsend
14956 @end example
14957
14958 @c man end MULTIMEDIA FILTERS
14959
14960 @chapter Multimedia Sources
14961 @c man begin MULTIMEDIA SOURCES
14962
14963 Below is a description of the currently available multimedia sources.
14964
14965 @section amovie
14966
14967 This is the same as @ref{movie} source, except it selects an audio
14968 stream by default.
14969
14970 @anchor{movie}
14971 @section movie
14972
14973 Read audio and/or video stream(s) from a movie container.
14974
14975 It accepts the following parameters:
14976
14977 @table @option
14978 @item filename
14979 The name of the resource to read (not necessarily a file; it can also be a
14980 device or a stream accessed through some protocol).
14981
14982 @item format_name, f
14983 Specifies the format assumed for the movie to read, and can be either
14984 the name of a container or an input device. If not specified, the
14985 format is guessed from @var{movie_name} or by probing.
14986
14987 @item seek_point, sp
14988 Specifies the seek point in seconds. The frames will be output
14989 starting from this seek point. The parameter is evaluated with
14990 @code{av_strtod}, so the numerical value may be suffixed by an IS
14991 postfix. The default value is "0".
14992
14993 @item streams, s
14994 Specifies the streams to read. Several streams can be specified,
14995 separated by "+". The source will then have as many outputs, in the
14996 same order. The syntax is explained in the ``Stream specifiers''
14997 section in the ffmpeg manual. Two special names, "dv" and "da" specify
14998 respectively the default (best suited) video and audio stream. Default
14999 is "dv", or "da" if the filter is called as "amovie".
15000
15001 @item stream_index, si
15002 Specifies the index of the video stream to read. If the value is -1,
15003 the most suitable video stream will be automatically selected. The default
15004 value is "-1". Deprecated. If the filter is called "amovie", it will select
15005 audio instead of video.
15006
15007 @item loop
15008 Specifies how many times to read the stream in sequence.
15009 If the value is less than 1, the stream will be read again and again.
15010 Default value is "1".
15011
15012 Note that when the movie is looped the source timestamps are not
15013 changed, so it will generate non monotonically increasing timestamps.
15014 @end table
15015
15016 It allows overlaying a second video on top of the main input of
15017 a filtergraph, as shown in this graph:
15018 @example
15019 input -----------> deltapts0 --> overlay --> output
15020                                     ^
15021                                     |
15022 movie --> scale--> deltapts1 -------+
15023 @end example
15024 @subsection Examples
15025
15026 @itemize
15027 @item
15028 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
15029 on top of the input labelled "in":
15030 @example
15031 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
15032 [in] setpts=PTS-STARTPTS [main];
15033 [main][over] overlay=16:16 [out]
15034 @end example
15035
15036 @item
15037 Read from a video4linux2 device, and overlay it on top of the input
15038 labelled "in":
15039 @example
15040 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
15041 [in] setpts=PTS-STARTPTS [main];
15042 [main][over] overlay=16:16 [out]
15043 @end example
15044
15045 @item
15046 Read the first video stream and the audio stream with id 0x81 from
15047 dvd.vob; the video is connected to the pad named "video" and the audio is
15048 connected to the pad named "audio":
15049 @example
15050 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
15051 @end example
15052 @end itemize
15053
15054 @c man end MULTIMEDIA SOURCES