]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '7a6cf2771414c7ab8bca0811d589f6091a6e2b71'
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acompressor
322
323 A compressor is mainly used to reduce the dynamic range of a signal.
324 Especially modern music is mostly compressed at a high ratio to
325 improve the overall loudness. It's done to get the highest attention
326 of a listener, "fatten" the sound and bring more "power" to the track.
327 If a signal is compressed too much it may sound dull or "dead"
328 afterwards or it may start to "pump" (which could be a powerful effect
329 but can also destroy a track completely).
330 The right compression is the key to reach a professional sound and is
331 the high art of mixing and mastering. Because of its complex settings
332 it may take a long time to get the right feeling for this kind of effect.
333
334 Compression is done by detecting the volume above a chosen level
335 @code{threshold} and dividing it by the factor set with @code{ratio}.
336 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
337 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
338 the signal would cause distortion of the waveform the reduction can be
339 levelled over the time. This is done by setting "Attack" and "Release".
340 @code{attack} determines how long the signal has to rise above the threshold
341 before any reduction will occur and @code{release} sets the time the signal
342 has to fall below the threshold to reduce the reduction again. Shorter signals
343 than the chosen attack time will be left untouched.
344 The overall reduction of the signal can be made up afterwards with the
345 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
346 raising the makeup to this level results in a signal twice as loud than the
347 source. To gain a softer entry in the compression the @code{knee} flattens the
348 hard edge at the threshold in the range of the chosen decibels.
349
350 The filter accepts the following options:
351
352 @table @option
353 @item level_in
354 Set input gain. Default is 1. Range is between 0.015625 and 64.
355
356 @item threshold
357 If a signal of second stream rises above this level it will affect the gain
358 reduction of the first stream.
359 By default it is 0.125. Range is between 0.00097563 and 1.
360
361 @item ratio
362 Set a ratio by which the signal is reduced. 1:2 means that if the level
363 rose 4dB above the threshold, it will be only 2dB above after the reduction.
364 Default is 2. Range is between 1 and 20.
365
366 @item attack
367 Amount of milliseconds the signal has to rise above the threshold before gain
368 reduction starts. Default is 20. Range is between 0.01 and 2000.
369
370 @item release
371 Amount of milliseconds the signal has to fall below the threshold before
372 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
373
374 @item makeup
375 Set the amount by how much signal will be amplified after processing.
376 Default is 2. Range is from 1 and 64.
377
378 @item knee
379 Curve the sharp knee around the threshold to enter gain reduction more softly.
380 Default is 2.82843. Range is between 1 and 8.
381
382 @item link
383 Choose if the @code{average} level between all channels of input stream
384 or the louder(@code{maximum}) channel of input stream affects the
385 reduction. Default is @code{average}.
386
387 @item detection
388 Should the exact signal be taken in case of @code{peak} or an RMS one in case
389 of @code{rms}. Default is @code{rms} which is mostly smoother.
390
391 @item mix
392 How much to use compressed signal in output. Default is 1.
393 Range is between 0 and 1.
394 @end table
395
396 @section acrossfade
397
398 Apply cross fade from one input audio stream to another input audio stream.
399 The cross fade is applied for specified duration near the end of first stream.
400
401 The filter accepts the following options:
402
403 @table @option
404 @item nb_samples, ns
405 Specify the number of samples for which the cross fade effect has to last.
406 At the end of the cross fade effect the first input audio will be completely
407 silent. Default is 44100.
408
409 @item duration, d
410 Specify the duration of the cross fade effect. See
411 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
412 for the accepted syntax.
413 By default the duration is determined by @var{nb_samples}.
414 If set this option is used instead of @var{nb_samples}.
415
416 @item overlap, o
417 Should first stream end overlap with second stream start. Default is enabled.
418
419 @item curve1
420 Set curve for cross fade transition for first stream.
421
422 @item curve2
423 Set curve for cross fade transition for second stream.
424
425 For description of available curve types see @ref{afade} filter description.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Cross fade from one input to another:
433 @example
434 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
435 @end example
436
437 @item
438 Cross fade from one input to another but without overlapping:
439 @example
440 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
441 @end example
442 @end itemize
443
444 @section adelay
445
446 Delay one or more audio channels.
447
448 Samples in delayed channel are filled with silence.
449
450 The filter accepts the following option:
451
452 @table @option
453 @item delays
454 Set list of delays in milliseconds for each channel separated by '|'.
455 At least one delay greater than 0 should be provided.
456 Unused delays will be silently ignored. If number of given delays is
457 smaller than number of channels all remaining channels will not be delayed.
458 @end table
459
460 @subsection Examples
461
462 @itemize
463 @item
464 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
465 the second channel (and any other channels that may be present) unchanged.
466 @example
467 adelay=1500|0|500
468 @end example
469 @end itemize
470
471 @section aecho
472
473 Apply echoing to the input audio.
474
475 Echoes are reflected sound and can occur naturally amongst mountains
476 (and sometimes large buildings) when talking or shouting; digital echo
477 effects emulate this behaviour and are often used to help fill out the
478 sound of a single instrument or vocal. The time difference between the
479 original signal and the reflection is the @code{delay}, and the
480 loudness of the reflected signal is the @code{decay}.
481 Multiple echoes can have different delays and decays.
482
483 A description of the accepted parameters follows.
484
485 @table @option
486 @item in_gain
487 Set input gain of reflected signal. Default is @code{0.6}.
488
489 @item out_gain
490 Set output gain of reflected signal. Default is @code{0.3}.
491
492 @item delays
493 Set list of time intervals in milliseconds between original signal and reflections
494 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
495 Default is @code{1000}.
496
497 @item decays
498 Set list of loudnesses of reflected signals separated by '|'.
499 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
500 Default is @code{0.5}.
501 @end table
502
503 @subsection Examples
504
505 @itemize
506 @item
507 Make it sound as if there are twice as many instruments as are actually playing:
508 @example
509 aecho=0.8:0.88:60:0.4
510 @end example
511
512 @item
513 If delay is very short, then it sound like a (metallic) robot playing music:
514 @example
515 aecho=0.8:0.88:6:0.4
516 @end example
517
518 @item
519 A longer delay will sound like an open air concert in the mountains:
520 @example
521 aecho=0.8:0.9:1000:0.3
522 @end example
523
524 @item
525 Same as above but with one more mountain:
526 @example
527 aecho=0.8:0.9:1000|1800:0.3|0.25
528 @end example
529 @end itemize
530
531 @section aemphasis
532 Audio emphasis filter creates or restores material directly taken from LPs or
533 emphased CDs with different filter curves. E.g. to store music on vinyl the
534 signal has to be altered by a filter first to even out the disadvantages of
535 this recording medium.
536 Once the material is played back the inverse filter has to be applied to
537 restore the distortion of the frequency response.
538
539 The filter accepts the following options:
540
541 @table @option
542 @item level_in
543 Set input gain.
544
545 @item level_out
546 Set output gain.
547
548 @item mode
549 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
550 use @code{production} mode. Default is @code{reproduction} mode.
551
552 @item type
553 Set filter type. Selects medium. Can be one of the following:
554
555 @table @option
556 @item col
557 select Columbia.
558 @item emi
559 select EMI.
560 @item bsi
561 select BSI (78RPM).
562 @item riaa
563 select RIAA.
564 @item cd
565 select Compact Disc (CD).
566 @item 50fm
567 select 50µs (FM).
568 @item 75fm
569 select 75µs (FM).
570 @item 50kf
571 select 50µs (FM-KF).
572 @item 75kf
573 select 75µs (FM-KF).
574 @end table
575 @end table
576
577 @section aeval
578
579 Modify an audio signal according to the specified expressions.
580
581 This filter accepts one or more expressions (one for each channel),
582 which are evaluated and used to modify a corresponding audio signal.
583
584 It accepts the following parameters:
585
586 @table @option
587 @item exprs
588 Set the '|'-separated expressions list for each separate channel. If
589 the number of input channels is greater than the number of
590 expressions, the last specified expression is used for the remaining
591 output channels.
592
593 @item channel_layout, c
594 Set output channel layout. If not specified, the channel layout is
595 specified by the number of expressions. If set to @samp{same}, it will
596 use by default the same input channel layout.
597 @end table
598
599 Each expression in @var{exprs} can contain the following constants and functions:
600
601 @table @option
602 @item ch
603 channel number of the current expression
604
605 @item n
606 number of the evaluated sample, starting from 0
607
608 @item s
609 sample rate
610
611 @item t
612 time of the evaluated sample expressed in seconds
613
614 @item nb_in_channels
615 @item nb_out_channels
616 input and output number of channels
617
618 @item val(CH)
619 the value of input channel with number @var{CH}
620 @end table
621
622 Note: this filter is slow. For faster processing you should use a
623 dedicated filter.
624
625 @subsection Examples
626
627 @itemize
628 @item
629 Half volume:
630 @example
631 aeval=val(ch)/2:c=same
632 @end example
633
634 @item
635 Invert phase of the second channel:
636 @example
637 aeval=val(0)|-val(1)
638 @end example
639 @end itemize
640
641 @anchor{afade}
642 @section afade
643
644 Apply fade-in/out effect to input audio.
645
646 A description of the accepted parameters follows.
647
648 @table @option
649 @item type, t
650 Specify the effect type, can be either @code{in} for fade-in, or
651 @code{out} for a fade-out effect. Default is @code{in}.
652
653 @item start_sample, ss
654 Specify the number of the start sample for starting to apply the fade
655 effect. Default is 0.
656
657 @item nb_samples, ns
658 Specify the number of samples for which the fade effect has to last. At
659 the end of the fade-in effect the output audio will have the same
660 volume as the input audio, at the end of the fade-out transition
661 the output audio will be silence. Default is 44100.
662
663 @item start_time, st
664 Specify the start time of the fade effect. Default is 0.
665 The value must be specified as a time duration; see
666 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
667 for the accepted syntax.
668 If set this option is used instead of @var{start_sample}.
669
670 @item duration, d
671 Specify the duration of the fade effect. See
672 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
673 for the accepted syntax.
674 At the end of the fade-in effect the output audio will have the same
675 volume as the input audio, at the end of the fade-out transition
676 the output audio will be silence.
677 By default the duration is determined by @var{nb_samples}.
678 If set this option is used instead of @var{nb_samples}.
679
680 @item curve
681 Set curve for fade transition.
682
683 It accepts the following values:
684 @table @option
685 @item tri
686 select triangular, linear slope (default)
687 @item qsin
688 select quarter of sine wave
689 @item hsin
690 select half of sine wave
691 @item esin
692 select exponential sine wave
693 @item log
694 select logarithmic
695 @item ipar
696 select inverted parabola
697 @item qua
698 select quadratic
699 @item cub
700 select cubic
701 @item squ
702 select square root
703 @item cbr
704 select cubic root
705 @item par
706 select parabola
707 @item exp
708 select exponential
709 @item iqsin
710 select inverted quarter of sine wave
711 @item ihsin
712 select inverted half of sine wave
713 @item dese
714 select double-exponential seat
715 @item desi
716 select double-exponential sigmoid
717 @end table
718 @end table
719
720 @subsection Examples
721
722 @itemize
723 @item
724 Fade in first 15 seconds of audio:
725 @example
726 afade=t=in:ss=0:d=15
727 @end example
728
729 @item
730 Fade out last 25 seconds of a 900 seconds audio:
731 @example
732 afade=t=out:st=875:d=25
733 @end example
734 @end itemize
735
736 @section afftfilt
737 Apply arbitrary expressions to samples in frequency domain.
738
739 @table @option
740 @item real
741 Set frequency domain real expression for each separate channel separated
742 by '|'. Default is "1".
743 If the number of input channels is greater than the number of
744 expressions, the last specified expression is used for the remaining
745 output channels.
746
747 @item imag
748 Set frequency domain imaginary expression for each separate channel
749 separated by '|'. If not set, @var{real} option is used.
750
751 Each expression in @var{real} and @var{imag} can contain the following
752 constants:
753
754 @table @option
755 @item sr
756 sample rate
757
758 @item b
759 current frequency bin number
760
761 @item nb
762 number of available bins
763
764 @item ch
765 channel number of the current expression
766
767 @item chs
768 number of channels
769
770 @item pts
771 current frame pts
772 @end table
773
774 @item win_size
775 Set window size.
776
777 It accepts the following values:
778 @table @samp
779 @item w16
780 @item w32
781 @item w64
782 @item w128
783 @item w256
784 @item w512
785 @item w1024
786 @item w2048
787 @item w4096
788 @item w8192
789 @item w16384
790 @item w32768
791 @item w65536
792 @end table
793 Default is @code{w4096}
794
795 @item win_func
796 Set window function. Default is @code{hann}.
797
798 @item overlap
799 Set window overlap. If set to 1, the recommended overlap for selected
800 window function will be picked. Default is @code{0.75}.
801 @end table
802
803 @subsection Examples
804
805 @itemize
806 @item
807 Leave almost only low frequencies in audio:
808 @example
809 afftfilt="1-clip((b/nb)*b,0,1)"
810 @end example
811 @end itemize
812
813 @anchor{aformat}
814 @section aformat
815
816 Set output format constraints for the input audio. The framework will
817 negotiate the most appropriate format to minimize conversions.
818
819 It accepts the following parameters:
820 @table @option
821
822 @item sample_fmts
823 A '|'-separated list of requested sample formats.
824
825 @item sample_rates
826 A '|'-separated list of requested sample rates.
827
828 @item channel_layouts
829 A '|'-separated list of requested channel layouts.
830
831 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
832 for the required syntax.
833 @end table
834
835 If a parameter is omitted, all values are allowed.
836
837 Force the output to either unsigned 8-bit or signed 16-bit stereo
838 @example
839 aformat=sample_fmts=u8|s16:channel_layouts=stereo
840 @end example
841
842 @section agate
843
844 A gate is mainly used to reduce lower parts of a signal. This kind of signal
845 processing reduces disturbing noise between useful signals.
846
847 Gating is done by detecting the volume below a chosen level @var{threshold}
848 and divide it by the factor set with @var{ratio}. The bottom of the noise
849 floor is set via @var{range}. Because an exact manipulation of the signal
850 would cause distortion of the waveform the reduction can be levelled over
851 time. This is done by setting @var{attack} and @var{release}.
852
853 @var{attack} determines how long the signal has to fall below the threshold
854 before any reduction will occur and @var{release} sets the time the signal
855 has to raise above the threshold to reduce the reduction again.
856 Shorter signals than the chosen attack time will be left untouched.
857
858 @table @option
859 @item level_in
860 Set input level before filtering.
861 Default is 1. Allowed range is from 0.015625 to 64.
862
863 @item range
864 Set the level of gain reduction when the signal is below the threshold.
865 Default is 0.06125. Allowed range is from 0 to 1.
866
867 @item threshold
868 If a signal rises above this level the gain reduction is released.
869 Default is 0.125. Allowed range is from 0 to 1.
870
871 @item ratio
872 Set a ratio about which the signal is reduced.
873 Default is 2. Allowed range is from 1 to 9000.
874
875 @item attack
876 Amount of milliseconds the signal has to rise above the threshold before gain
877 reduction stops.
878 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
879
880 @item release
881 Amount of milliseconds the signal has to fall below the threshold before the
882 reduction is increased again. Default is 250 milliseconds.
883 Allowed range is from 0.01 to 9000.
884
885 @item makeup
886 Set amount of amplification of signal after processing.
887 Default is 1. Allowed range is from 1 to 64.
888
889 @item knee
890 Curve the sharp knee around the threshold to enter gain reduction more softly.
891 Default is 2.828427125. Allowed range is from 1 to 8.
892
893 @item detection
894 Choose if exact signal should be taken for detection or an RMS like one.
895 Default is rms. Can be peak or rms.
896
897 @item link
898 Choose if the average level between all channels or the louder channel affects
899 the reduction.
900 Default is average. Can be average or maximum.
901 @end table
902
903 @section alimiter
904
905 The limiter prevents input signal from raising over a desired threshold.
906 This limiter uses lookahead technology to prevent your signal from distorting.
907 It means that there is a small delay after signal is processed. Keep in mind
908 that the delay it produces is the attack time you set.
909
910 The filter accepts the following options:
911
912 @table @option
913 @item level_in
914 Set input gain. Default is 1.
915
916 @item level_out
917 Set output gain. Default is 1.
918
919 @item limit
920 Don't let signals above this level pass the limiter. Default is 1.
921
922 @item attack
923 The limiter will reach its attenuation level in this amount of time in
924 milliseconds. Default is 5 milliseconds.
925
926 @item release
927 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
928 Default is 50 milliseconds.
929
930 @item asc
931 When gain reduction is always needed ASC takes care of releasing to an
932 average reduction level rather than reaching a reduction of 0 in the release
933 time.
934
935 @item asc_level
936 Select how much the release time is affected by ASC, 0 means nearly no changes
937 in release time while 1 produces higher release times.
938
939 @item level
940 Auto level output signal. Default is enabled.
941 This normalizes audio back to 0dB if enabled.
942 @end table
943
944 Depending on picked setting it is recommended to upsample input 2x or 4x times
945 with @ref{aresample} before applying this filter.
946
947 @section allpass
948
949 Apply a two-pole all-pass filter with central frequency (in Hz)
950 @var{frequency}, and filter-width @var{width}.
951 An all-pass filter changes the audio's frequency to phase relationship
952 without changing its frequency to amplitude relationship.
953
954 The filter accepts the following options:
955
956 @table @option
957 @item frequency, f
958 Set frequency in Hz.
959
960 @item width_type
961 Set method to specify band-width of filter.
962 @table @option
963 @item h
964 Hz
965 @item q
966 Q-Factor
967 @item o
968 octave
969 @item s
970 slope
971 @end table
972
973 @item width, w
974 Specify the band-width of a filter in width_type units.
975 @end table
976
977 @anchor{amerge}
978 @section amerge
979
980 Merge two or more audio streams into a single multi-channel stream.
981
982 The filter accepts the following options:
983
984 @table @option
985
986 @item inputs
987 Set the number of inputs. Default is 2.
988
989 @end table
990
991 If the channel layouts of the inputs are disjoint, and therefore compatible,
992 the channel layout of the output will be set accordingly and the channels
993 will be reordered as necessary. If the channel layouts of the inputs are not
994 disjoint, the output will have all the channels of the first input then all
995 the channels of the second input, in that order, and the channel layout of
996 the output will be the default value corresponding to the total number of
997 channels.
998
999 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1000 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1001 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1002 first input, b1 is the first channel of the second input).
1003
1004 On the other hand, if both input are in stereo, the output channels will be
1005 in the default order: a1, a2, b1, b2, and the channel layout will be
1006 arbitrarily set to 4.0, which may or may not be the expected value.
1007
1008 All inputs must have the same sample rate, and format.
1009
1010 If inputs do not have the same duration, the output will stop with the
1011 shortest.
1012
1013 @subsection Examples
1014
1015 @itemize
1016 @item
1017 Merge two mono files into a stereo stream:
1018 @example
1019 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1020 @end example
1021
1022 @item
1023 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1024 @example
1025 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1026 @end example
1027 @end itemize
1028
1029 @section amix
1030
1031 Mixes multiple audio inputs into a single output.
1032
1033 Note that this filter only supports float samples (the @var{amerge}
1034 and @var{pan} audio filters support many formats). If the @var{amix}
1035 input has integer samples then @ref{aresample} will be automatically
1036 inserted to perform the conversion to float samples.
1037
1038 For example
1039 @example
1040 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1041 @end example
1042 will mix 3 input audio streams to a single output with the same duration as the
1043 first input and a dropout transition time of 3 seconds.
1044
1045 It accepts the following parameters:
1046 @table @option
1047
1048 @item inputs
1049 The number of inputs. If unspecified, it defaults to 2.
1050
1051 @item duration
1052 How to determine the end-of-stream.
1053 @table @option
1054
1055 @item longest
1056 The duration of the longest input. (default)
1057
1058 @item shortest
1059 The duration of the shortest input.
1060
1061 @item first
1062 The duration of the first input.
1063
1064 @end table
1065
1066 @item dropout_transition
1067 The transition time, in seconds, for volume renormalization when an input
1068 stream ends. The default value is 2 seconds.
1069
1070 @end table
1071
1072 @section anequalizer
1073
1074 High-order parametric multiband equalizer for each channel.
1075
1076 It accepts the following parameters:
1077 @table @option
1078 @item params
1079
1080 This option string is in format:
1081 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1082 Each equalizer band is separated by '|'.
1083
1084 @table @option
1085 @item chn
1086 Set channel number to which equalization will be applied.
1087 If input doesn't have that channel the entry is ignored.
1088
1089 @item cf
1090 Set central frequency for band.
1091 If input doesn't have that frequency the entry is ignored.
1092
1093 @item w
1094 Set band width in hertz.
1095
1096 @item g
1097 Set band gain in dB.
1098
1099 @item f
1100 Set filter type for band, optional, can be:
1101
1102 @table @samp
1103 @item 0
1104 Butterworth, this is default.
1105
1106 @item 1
1107 Chebyshev type 1.
1108
1109 @item 2
1110 Chebyshev type 2.
1111 @end table
1112 @end table
1113
1114 @item curves
1115 With this option activated frequency response of anequalizer is displayed
1116 in video stream.
1117
1118 @item size
1119 Set video stream size. Only useful if curves option is activated.
1120
1121 @item mgain
1122 Set max gain that will be displayed. Only useful if curves option is activated.
1123 Setting this to reasonable value allows to display gain which is derived from
1124 neighbour bands which are too close to each other and thus produce higher gain
1125 when both are activated.
1126
1127 @item fscale
1128 Set frequency scale used to draw frequency response in video output.
1129 Can be linear or logarithmic. Default is logarithmic.
1130
1131 @item colors
1132 Set color for each channel curve which is going to be displayed in video stream.
1133 This is list of color names separated by space or by '|'.
1134 Unrecognised or missing colors will be replaced by white color.
1135 @end table
1136
1137 @subsection Examples
1138
1139 @itemize
1140 @item
1141 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1142 for first 2 channels using Chebyshev type 1 filter:
1143 @example
1144 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1145 @end example
1146 @end itemize
1147
1148 @subsection Commands
1149
1150 This filter supports the following commands:
1151 @table @option
1152 @item change
1153 Alter existing filter parameters.
1154 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1155
1156 @var{fN} is existing filter number, starting from 0, if no such filter is available
1157 error is returned.
1158 @var{freq} set new frequency parameter.
1159 @var{width} set new width parameter in herz.
1160 @var{gain} set new gain parameter in dB.
1161
1162 Full filter invocation with asendcmd may look like this:
1163 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1164 @end table
1165
1166 @section anull
1167
1168 Pass the audio source unchanged to the output.
1169
1170 @section apad
1171
1172 Pad the end of an audio stream with silence.
1173
1174 This can be used together with @command{ffmpeg} @option{-shortest} to
1175 extend audio streams to the same length as the video stream.
1176
1177 A description of the accepted options follows.
1178
1179 @table @option
1180 @item packet_size
1181 Set silence packet size. Default value is 4096.
1182
1183 @item pad_len
1184 Set the number of samples of silence to add to the end. After the
1185 value is reached, the stream is terminated. This option is mutually
1186 exclusive with @option{whole_len}.
1187
1188 @item whole_len
1189 Set the minimum total number of samples in the output audio stream. If
1190 the value is longer than the input audio length, silence is added to
1191 the end, until the value is reached. This option is mutually exclusive
1192 with @option{pad_len}.
1193 @end table
1194
1195 If neither the @option{pad_len} nor the @option{whole_len} option is
1196 set, the filter will add silence to the end of the input stream
1197 indefinitely.
1198
1199 @subsection Examples
1200
1201 @itemize
1202 @item
1203 Add 1024 samples of silence to the end of the input:
1204 @example
1205 apad=pad_len=1024
1206 @end example
1207
1208 @item
1209 Make sure the audio output will contain at least 10000 samples, pad
1210 the input with silence if required:
1211 @example
1212 apad=whole_len=10000
1213 @end example
1214
1215 @item
1216 Use @command{ffmpeg} to pad the audio input with silence, so that the
1217 video stream will always result the shortest and will be converted
1218 until the end in the output file when using the @option{shortest}
1219 option:
1220 @example
1221 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1222 @end example
1223 @end itemize
1224
1225 @section aphaser
1226 Add a phasing effect to the input audio.
1227
1228 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1229 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1230
1231 A description of the accepted parameters follows.
1232
1233 @table @option
1234 @item in_gain
1235 Set input gain. Default is 0.4.
1236
1237 @item out_gain
1238 Set output gain. Default is 0.74
1239
1240 @item delay
1241 Set delay in milliseconds. Default is 3.0.
1242
1243 @item decay
1244 Set decay. Default is 0.4.
1245
1246 @item speed
1247 Set modulation speed in Hz. Default is 0.5.
1248
1249 @item type
1250 Set modulation type. Default is triangular.
1251
1252 It accepts the following values:
1253 @table @samp
1254 @item triangular, t
1255 @item sinusoidal, s
1256 @end table
1257 @end table
1258
1259 @section apulsator
1260
1261 Audio pulsator is something between an autopanner and a tremolo.
1262 But it can produce funny stereo effects as well. Pulsator changes the volume
1263 of the left and right channel based on a LFO (low frequency oscillator) with
1264 different waveforms and shifted phases.
1265 This filter have the ability to define an offset between left and right
1266 channel. An offset of 0 means that both LFO shapes match each other.
1267 The left and right channel are altered equally - a conventional tremolo.
1268 An offset of 50% means that the shape of the right channel is exactly shifted
1269 in phase (or moved backwards about half of the frequency) - pulsator acts as
1270 an autopanner. At 1 both curves match again. Every setting in between moves the
1271 phase shift gapless between all stages and produces some "bypassing" sounds with
1272 sine and triangle waveforms. The more you set the offset near 1 (starting from
1273 the 0.5) the faster the signal passes from the left to the right speaker.
1274
1275 The filter accepts the following options:
1276
1277 @table @option
1278 @item level_in
1279 Set input gain. By default it is 1. Range is [0.015625 - 64].
1280
1281 @item level_out
1282 Set output gain. By default it is 1. Range is [0.015625 - 64].
1283
1284 @item mode
1285 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1286 sawup or sawdown. Default is sine.
1287
1288 @item amount
1289 Set modulation. Define how much of original signal is affected by the LFO.
1290
1291 @item offset_l
1292 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1293
1294 @item offset_r
1295 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1296
1297 @item width
1298 Set pulse width. Default is 1. Allowed range is [0 - 2].
1299
1300 @item timing
1301 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1302
1303 @item bpm
1304 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1305 is set to bpm.
1306
1307 @item ms
1308 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1309 is set to ms.
1310
1311 @item hz
1312 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1313 if timing is set to hz.
1314 @end table
1315
1316 @anchor{aresample}
1317 @section aresample
1318
1319 Resample the input audio to the specified parameters, using the
1320 libswresample library. If none are specified then the filter will
1321 automatically convert between its input and output.
1322
1323 This filter is also able to stretch/squeeze the audio data to make it match
1324 the timestamps or to inject silence / cut out audio to make it match the
1325 timestamps, do a combination of both or do neither.
1326
1327 The filter accepts the syntax
1328 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1329 expresses a sample rate and @var{resampler_options} is a list of
1330 @var{key}=@var{value} pairs, separated by ":". See the
1331 ffmpeg-resampler manual for the complete list of supported options.
1332
1333 @subsection Examples
1334
1335 @itemize
1336 @item
1337 Resample the input audio to 44100Hz:
1338 @example
1339 aresample=44100
1340 @end example
1341
1342 @item
1343 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1344 samples per second compensation:
1345 @example
1346 aresample=async=1000
1347 @end example
1348 @end itemize
1349
1350 @section asetnsamples
1351
1352 Set the number of samples per each output audio frame.
1353
1354 The last output packet may contain a different number of samples, as
1355 the filter will flush all the remaining samples when the input audio
1356 signal its end.
1357
1358 The filter accepts the following options:
1359
1360 @table @option
1361
1362 @item nb_out_samples, n
1363 Set the number of frames per each output audio frame. The number is
1364 intended as the number of samples @emph{per each channel}.
1365 Default value is 1024.
1366
1367 @item pad, p
1368 If set to 1, the filter will pad the last audio frame with zeroes, so
1369 that the last frame will contain the same number of samples as the
1370 previous ones. Default value is 1.
1371 @end table
1372
1373 For example, to set the number of per-frame samples to 1234 and
1374 disable padding for the last frame, use:
1375 @example
1376 asetnsamples=n=1234:p=0
1377 @end example
1378
1379 @section asetrate
1380
1381 Set the sample rate without altering the PCM data.
1382 This will result in a change of speed and pitch.
1383
1384 The filter accepts the following options:
1385
1386 @table @option
1387 @item sample_rate, r
1388 Set the output sample rate. Default is 44100 Hz.
1389 @end table
1390
1391 @section ashowinfo
1392
1393 Show a line containing various information for each input audio frame.
1394 The input audio is not modified.
1395
1396 The shown line contains a sequence of key/value pairs of the form
1397 @var{key}:@var{value}.
1398
1399 The following values are shown in the output:
1400
1401 @table @option
1402 @item n
1403 The (sequential) number of the input frame, starting from 0.
1404
1405 @item pts
1406 The presentation timestamp of the input frame, in time base units; the time base
1407 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1408
1409 @item pts_time
1410 The presentation timestamp of the input frame in seconds.
1411
1412 @item pos
1413 position of the frame in the input stream, -1 if this information in
1414 unavailable and/or meaningless (for example in case of synthetic audio)
1415
1416 @item fmt
1417 The sample format.
1418
1419 @item chlayout
1420 The channel layout.
1421
1422 @item rate
1423 The sample rate for the audio frame.
1424
1425 @item nb_samples
1426 The number of samples (per channel) in the frame.
1427
1428 @item checksum
1429 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1430 audio, the data is treated as if all the planes were concatenated.
1431
1432 @item plane_checksums
1433 A list of Adler-32 checksums for each data plane.
1434 @end table
1435
1436 @anchor{astats}
1437 @section astats
1438
1439 Display time domain statistical information about the audio channels.
1440 Statistics are calculated and displayed for each audio channel and,
1441 where applicable, an overall figure is also given.
1442
1443 It accepts the following option:
1444 @table @option
1445 @item length
1446 Short window length in seconds, used for peak and trough RMS measurement.
1447 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1448
1449 @item metadata
1450
1451 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1452 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1453 disabled.
1454
1455 Available keys for each channel are:
1456 DC_offset
1457 Min_level
1458 Max_level
1459 Min_difference
1460 Max_difference
1461 Mean_difference
1462 Peak_level
1463 RMS_peak
1464 RMS_trough
1465 Crest_factor
1466 Flat_factor
1467 Peak_count
1468 Bit_depth
1469
1470 and for Overall:
1471 DC_offset
1472 Min_level
1473 Max_level
1474 Min_difference
1475 Max_difference
1476 Mean_difference
1477 Peak_level
1478 RMS_level
1479 RMS_peak
1480 RMS_trough
1481 Flat_factor
1482 Peak_count
1483 Bit_depth
1484 Number_of_samples
1485
1486 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1487 this @code{lavfi.astats.Overall.Peak_count}.
1488
1489 For description what each key means read below.
1490
1491 @item reset
1492 Set number of frame after which stats are going to be recalculated.
1493 Default is disabled.
1494 @end table
1495
1496 A description of each shown parameter follows:
1497
1498 @table @option
1499 @item DC offset
1500 Mean amplitude displacement from zero.
1501
1502 @item Min level
1503 Minimal sample level.
1504
1505 @item Max level
1506 Maximal sample level.
1507
1508 @item Min difference
1509 Minimal difference between two consecutive samples.
1510
1511 @item Max difference
1512 Maximal difference between two consecutive samples.
1513
1514 @item Mean difference
1515 Mean difference between two consecutive samples.
1516 The average of each difference between two consecutive samples.
1517
1518 @item Peak level dB
1519 @item RMS level dB
1520 Standard peak and RMS level measured in dBFS.
1521
1522 @item RMS peak dB
1523 @item RMS trough dB
1524 Peak and trough values for RMS level measured over a short window.
1525
1526 @item Crest factor
1527 Standard ratio of peak to RMS level (note: not in dB).
1528
1529 @item Flat factor
1530 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1531 (i.e. either @var{Min level} or @var{Max level}).
1532
1533 @item Peak count
1534 Number of occasions (not the number of samples) that the signal attained either
1535 @var{Min level} or @var{Max level}.
1536
1537 @item Bit depth
1538 Overall bit depth of audio. Number of bits used for each sample.
1539 @end table
1540
1541 @section asyncts
1542
1543 Synchronize audio data with timestamps by squeezing/stretching it and/or
1544 dropping samples/adding silence when needed.
1545
1546 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1547
1548 It accepts the following parameters:
1549 @table @option
1550
1551 @item compensate
1552 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1553 by default. When disabled, time gaps are covered with silence.
1554
1555 @item min_delta
1556 The minimum difference between timestamps and audio data (in seconds) to trigger
1557 adding/dropping samples. The default value is 0.1. If you get an imperfect
1558 sync with this filter, try setting this parameter to 0.
1559
1560 @item max_comp
1561 The maximum compensation in samples per second. Only relevant with compensate=1.
1562 The default value is 500.
1563
1564 @item first_pts
1565 Assume that the first PTS should be this value. The time base is 1 / sample
1566 rate. This allows for padding/trimming at the start of the stream. By default,
1567 no assumption is made about the first frame's expected PTS, so no padding or
1568 trimming is done. For example, this could be set to 0 to pad the beginning with
1569 silence if an audio stream starts after the video stream or to trim any samples
1570 with a negative PTS due to encoder delay.
1571
1572 @end table
1573
1574 @section atempo
1575
1576 Adjust audio tempo.
1577
1578 The filter accepts exactly one parameter, the audio tempo. If not
1579 specified then the filter will assume nominal 1.0 tempo. Tempo must
1580 be in the [0.5, 2.0] range.
1581
1582 @subsection Examples
1583
1584 @itemize
1585 @item
1586 Slow down audio to 80% tempo:
1587 @example
1588 atempo=0.8
1589 @end example
1590
1591 @item
1592 To speed up audio to 125% tempo:
1593 @example
1594 atempo=1.25
1595 @end example
1596 @end itemize
1597
1598 @section atrim
1599
1600 Trim the input so that the output contains one continuous subpart of the input.
1601
1602 It accepts the following parameters:
1603 @table @option
1604 @item start
1605 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1606 sample with the timestamp @var{start} will be the first sample in the output.
1607
1608 @item end
1609 Specify time of the first audio sample that will be dropped, i.e. the
1610 audio sample immediately preceding the one with the timestamp @var{end} will be
1611 the last sample in the output.
1612
1613 @item start_pts
1614 Same as @var{start}, except this option sets the start timestamp in samples
1615 instead of seconds.
1616
1617 @item end_pts
1618 Same as @var{end}, except this option sets the end timestamp in samples instead
1619 of seconds.
1620
1621 @item duration
1622 The maximum duration of the output in seconds.
1623
1624 @item start_sample
1625 The number of the first sample that should be output.
1626
1627 @item end_sample
1628 The number of the first sample that should be dropped.
1629 @end table
1630
1631 @option{start}, @option{end}, and @option{duration} are expressed as time
1632 duration specifications; see
1633 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1634
1635 Note that the first two sets of the start/end options and the @option{duration}
1636 option look at the frame timestamp, while the _sample options simply count the
1637 samples that pass through the filter. So start/end_pts and start/end_sample will
1638 give different results when the timestamps are wrong, inexact or do not start at
1639 zero. Also note that this filter does not modify the timestamps. If you wish
1640 to have the output timestamps start at zero, insert the asetpts filter after the
1641 atrim filter.
1642
1643 If multiple start or end options are set, this filter tries to be greedy and
1644 keep all samples that match at least one of the specified constraints. To keep
1645 only the part that matches all the constraints at once, chain multiple atrim
1646 filters.
1647
1648 The defaults are such that all the input is kept. So it is possible to set e.g.
1649 just the end values to keep everything before the specified time.
1650
1651 Examples:
1652 @itemize
1653 @item
1654 Drop everything except the second minute of input:
1655 @example
1656 ffmpeg -i INPUT -af atrim=60:120
1657 @end example
1658
1659 @item
1660 Keep only the first 1000 samples:
1661 @example
1662 ffmpeg -i INPUT -af atrim=end_sample=1000
1663 @end example
1664
1665 @end itemize
1666
1667 @section bandpass
1668
1669 Apply a two-pole Butterworth band-pass filter with central
1670 frequency @var{frequency}, and (3dB-point) band-width width.
1671 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1672 instead of the default: constant 0dB peak gain.
1673 The filter roll off at 6dB per octave (20dB per decade).
1674
1675 The filter accepts the following options:
1676
1677 @table @option
1678 @item frequency, f
1679 Set the filter's central frequency. Default is @code{3000}.
1680
1681 @item csg
1682 Constant skirt gain if set to 1. Defaults to 0.
1683
1684 @item width_type
1685 Set method to specify band-width of filter.
1686 @table @option
1687 @item h
1688 Hz
1689 @item q
1690 Q-Factor
1691 @item o
1692 octave
1693 @item s
1694 slope
1695 @end table
1696
1697 @item width, w
1698 Specify the band-width of a filter in width_type units.
1699 @end table
1700
1701 @section bandreject
1702
1703 Apply a two-pole Butterworth band-reject filter with central
1704 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1705 The filter roll off at 6dB per octave (20dB per decade).
1706
1707 The filter accepts the following options:
1708
1709 @table @option
1710 @item frequency, f
1711 Set the filter's central frequency. Default is @code{3000}.
1712
1713 @item width_type
1714 Set method to specify band-width of filter.
1715 @table @option
1716 @item h
1717 Hz
1718 @item q
1719 Q-Factor
1720 @item o
1721 octave
1722 @item s
1723 slope
1724 @end table
1725
1726 @item width, w
1727 Specify the band-width of a filter in width_type units.
1728 @end table
1729
1730 @section bass
1731
1732 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1733 shelving filter with a response similar to that of a standard
1734 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1735
1736 The filter accepts the following options:
1737
1738 @table @option
1739 @item gain, g
1740 Give the gain at 0 Hz. Its useful range is about -20
1741 (for a large cut) to +20 (for a large boost).
1742 Beware of clipping when using a positive gain.
1743
1744 @item frequency, f
1745 Set the filter's central frequency and so can be used
1746 to extend or reduce the frequency range to be boosted or cut.
1747 The default value is @code{100} Hz.
1748
1749 @item width_type
1750 Set method to specify band-width of filter.
1751 @table @option
1752 @item h
1753 Hz
1754 @item q
1755 Q-Factor
1756 @item o
1757 octave
1758 @item s
1759 slope
1760 @end table
1761
1762 @item width, w
1763 Determine how steep is the filter's shelf transition.
1764 @end table
1765
1766 @section biquad
1767
1768 Apply a biquad IIR filter with the given coefficients.
1769 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1770 are the numerator and denominator coefficients respectively.
1771
1772 @section bs2b
1773 Bauer stereo to binaural transformation, which improves headphone listening of
1774 stereo audio records.
1775
1776 It accepts the following parameters:
1777 @table @option
1778
1779 @item profile
1780 Pre-defined crossfeed level.
1781 @table @option
1782
1783 @item default
1784 Default level (fcut=700, feed=50).
1785
1786 @item cmoy
1787 Chu Moy circuit (fcut=700, feed=60).
1788
1789 @item jmeier
1790 Jan Meier circuit (fcut=650, feed=95).
1791
1792 @end table
1793
1794 @item fcut
1795 Cut frequency (in Hz).
1796
1797 @item feed
1798 Feed level (in Hz).
1799
1800 @end table
1801
1802 @section channelmap
1803
1804 Remap input channels to new locations.
1805
1806 It accepts the following parameters:
1807 @table @option
1808 @item channel_layout
1809 The channel layout of the output stream.
1810
1811 @item map
1812 Map channels from input to output. The argument is a '|'-separated list of
1813 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1814 @var{in_channel} form. @var{in_channel} can be either the name of the input
1815 channel (e.g. FL for front left) or its index in the input channel layout.
1816 @var{out_channel} is the name of the output channel or its index in the output
1817 channel layout. If @var{out_channel} is not given then it is implicitly an
1818 index, starting with zero and increasing by one for each mapping.
1819 @end table
1820
1821 If no mapping is present, the filter will implicitly map input channels to
1822 output channels, preserving indices.
1823
1824 For example, assuming a 5.1+downmix input MOV file,
1825 @example
1826 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1827 @end example
1828 will create an output WAV file tagged as stereo from the downmix channels of
1829 the input.
1830
1831 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1832 @example
1833 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1834 @end example
1835
1836 @section channelsplit
1837
1838 Split each channel from an input audio stream into a separate output stream.
1839
1840 It accepts the following parameters:
1841 @table @option
1842 @item channel_layout
1843 The channel layout of the input stream. The default is "stereo".
1844 @end table
1845
1846 For example, assuming a stereo input MP3 file,
1847 @example
1848 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1849 @end example
1850 will create an output Matroska file with two audio streams, one containing only
1851 the left channel and the other the right channel.
1852
1853 Split a 5.1 WAV file into per-channel files:
1854 @example
1855 ffmpeg -i in.wav -filter_complex
1856 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1857 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1858 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1859 side_right.wav
1860 @end example
1861
1862 @section chorus
1863 Add a chorus effect to the audio.
1864
1865 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1866
1867 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1868 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1869 The modulation depth defines the range the modulated delay is played before or after
1870 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1871 sound tuned around the original one, like in a chorus where some vocals are slightly
1872 off key.
1873
1874 It accepts the following parameters:
1875 @table @option
1876 @item in_gain
1877 Set input gain. Default is 0.4.
1878
1879 @item out_gain
1880 Set output gain. Default is 0.4.
1881
1882 @item delays
1883 Set delays. A typical delay is around 40ms to 60ms.
1884
1885 @item decays
1886 Set decays.
1887
1888 @item speeds
1889 Set speeds.
1890
1891 @item depths
1892 Set depths.
1893 @end table
1894
1895 @subsection Examples
1896
1897 @itemize
1898 @item
1899 A single delay:
1900 @example
1901 chorus=0.7:0.9:55:0.4:0.25:2
1902 @end example
1903
1904 @item
1905 Two delays:
1906 @example
1907 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1908 @end example
1909
1910 @item
1911 Fuller sounding chorus with three delays:
1912 @example
1913 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
1914 @end example
1915 @end itemize
1916
1917 @section compand
1918 Compress or expand the audio's dynamic range.
1919
1920 It accepts the following parameters:
1921
1922 @table @option
1923
1924 @item attacks
1925 @item decays
1926 A list of times in seconds for each channel over which the instantaneous level
1927 of the input signal is averaged to determine its volume. @var{attacks} refers to
1928 increase of volume and @var{decays} refers to decrease of volume. For most
1929 situations, the attack time (response to the audio getting louder) should be
1930 shorter than the decay time, because the human ear is more sensitive to sudden
1931 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1932 a typical value for decay is 0.8 seconds.
1933 If specified number of attacks & decays is lower than number of channels, the last
1934 set attack/decay will be used for all remaining channels.
1935
1936 @item points
1937 A list of points for the transfer function, specified in dB relative to the
1938 maximum possible signal amplitude. Each key points list must be defined using
1939 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1940 @code{x0/y0 x1/y1 x2/y2 ....}
1941
1942 The input values must be in strictly increasing order but the transfer function
1943 does not have to be monotonically rising. The point @code{0/0} is assumed but
1944 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1945 function are @code{-70/-70|-60/-20}.
1946
1947 @item soft-knee
1948 Set the curve radius in dB for all joints. It defaults to 0.01.
1949
1950 @item gain
1951 Set the additional gain in dB to be applied at all points on the transfer
1952 function. This allows for easy adjustment of the overall gain.
1953 It defaults to 0.
1954
1955 @item volume
1956 Set an initial volume, in dB, to be assumed for each channel when filtering
1957 starts. This permits the user to supply a nominal level initially, so that, for
1958 example, a very large gain is not applied to initial signal levels before the
1959 companding has begun to operate. A typical value for audio which is initially
1960 quiet is -90 dB. It defaults to 0.
1961
1962 @item delay
1963 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1964 delayed before being fed to the volume adjuster. Specifying a delay
1965 approximately equal to the attack/decay times allows the filter to effectively
1966 operate in predictive rather than reactive mode. It defaults to 0.
1967
1968 @end table
1969
1970 @subsection Examples
1971
1972 @itemize
1973 @item
1974 Make music with both quiet and loud passages suitable for listening to in a
1975 noisy environment:
1976 @example
1977 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1978 @end example
1979
1980 Another example for audio with whisper and explosion parts:
1981 @example
1982 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1983 @end example
1984
1985 @item
1986 A noise gate for when the noise is at a lower level than the signal:
1987 @example
1988 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1989 @end example
1990
1991 @item
1992 Here is another noise gate, this time for when the noise is at a higher level
1993 than the signal (making it, in some ways, similar to squelch):
1994 @example
1995 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1996 @end example
1997
1998 @item
1999 2:1 compression starting at -6dB:
2000 @example
2001 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2002 @end example
2003
2004 @item
2005 2:1 compression starting at -9dB:
2006 @example
2007 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2008 @end example
2009
2010 @item
2011 2:1 compression starting at -12dB:
2012 @example
2013 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2014 @end example
2015
2016 @item
2017 2:1 compression starting at -18dB:
2018 @example
2019 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2020 @end example
2021
2022 @item
2023 3:1 compression starting at -15dB:
2024 @example
2025 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2026 @end example
2027
2028 @item
2029 Compressor/Gate:
2030 @example
2031 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2032 @end example
2033
2034 @item
2035 Expander:
2036 @example
2037 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2038 @end example
2039
2040 @item
2041 Hard limiter at -6dB:
2042 @example
2043 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2044 @end example
2045
2046 @item
2047 Hard limiter at -12dB:
2048 @example
2049 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2050 @end example
2051
2052 @item
2053 Hard noise gate at -35 dB:
2054 @example
2055 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2056 @end example
2057
2058 @item
2059 Soft limiter:
2060 @example
2061 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2062 @end example
2063 @end itemize
2064
2065 @section compensationdelay
2066
2067 Compensation Delay Line is a metric based delay to compensate differing
2068 positions of microphones or speakers.
2069
2070 For example, you have recorded guitar with two microphones placed in
2071 different location. Because the front of sound wave has fixed speed in
2072 normal conditions, the phasing of microphones can vary and depends on
2073 their location and interposition. The best sound mix can be achieved when
2074 these microphones are in phase (synchronized). Note that distance of
2075 ~30 cm between microphones makes one microphone to capture signal in
2076 antiphase to another microphone. That makes the final mix sounding moody.
2077 This filter helps to solve phasing problems by adding different delays
2078 to each microphone track and make them synchronized.
2079
2080 The best result can be reached when you take one track as base and
2081 synchronize other tracks one by one with it.
2082 Remember that synchronization/delay tolerance depends on sample rate, too.
2083 Higher sample rates will give more tolerance.
2084
2085 It accepts the following parameters:
2086
2087 @table @option
2088 @item mm
2089 Set millimeters distance. This is compensation distance for fine tuning.
2090 Default is 0.
2091
2092 @item cm
2093 Set cm distance. This is compensation distance for tightening distance setup.
2094 Default is 0.
2095
2096 @item m
2097 Set meters distance. This is compensation distance for hard distance setup.
2098 Default is 0.
2099
2100 @item dry
2101 Set dry amount. Amount of unprocessed (dry) signal.
2102 Default is 0.
2103
2104 @item wet
2105 Set wet amount. Amount of processed (wet) signal.
2106 Default is 1.
2107
2108 @item temp
2109 Set temperature degree in Celsius. This is the temperature of the environment.
2110 Default is 20.
2111 @end table
2112
2113 @section dcshift
2114 Apply a DC shift to the audio.
2115
2116 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2117 in the recording chain) from the audio. The effect of a DC offset is reduced
2118 headroom and hence volume. The @ref{astats} filter can be used to determine if
2119 a signal has a DC offset.
2120
2121 @table @option
2122 @item shift
2123 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2124 the audio.
2125
2126 @item limitergain
2127 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2128 used to prevent clipping.
2129 @end table
2130
2131 @section dynaudnorm
2132 Dynamic Audio Normalizer.
2133
2134 This filter applies a certain amount of gain to the input audio in order
2135 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2136 contrast to more "simple" normalization algorithms, the Dynamic Audio
2137 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2138 This allows for applying extra gain to the "quiet" sections of the audio
2139 while avoiding distortions or clipping the "loud" sections. In other words:
2140 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2141 sections, in the sense that the volume of each section is brought to the
2142 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2143 this goal *without* applying "dynamic range compressing". It will retain 100%
2144 of the dynamic range *within* each section of the audio file.
2145
2146 @table @option
2147 @item f
2148 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2149 Default is 500 milliseconds.
2150 The Dynamic Audio Normalizer processes the input audio in small chunks,
2151 referred to as frames. This is required, because a peak magnitude has no
2152 meaning for just a single sample value. Instead, we need to determine the
2153 peak magnitude for a contiguous sequence of sample values. While a "standard"
2154 normalizer would simply use the peak magnitude of the complete file, the
2155 Dynamic Audio Normalizer determines the peak magnitude individually for each
2156 frame. The length of a frame is specified in milliseconds. By default, the
2157 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2158 been found to give good results with most files.
2159 Note that the exact frame length, in number of samples, will be determined
2160 automatically, based on the sampling rate of the individual input audio file.
2161
2162 @item g
2163 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2164 number. Default is 31.
2165 Probably the most important parameter of the Dynamic Audio Normalizer is the
2166 @code{window size} of the Gaussian smoothing filter. The filter's window size
2167 is specified in frames, centered around the current frame. For the sake of
2168 simplicity, this must be an odd number. Consequently, the default value of 31
2169 takes into account the current frame, as well as the 15 preceding frames and
2170 the 15 subsequent frames. Using a larger window results in a stronger
2171 smoothing effect and thus in less gain variation, i.e. slower gain
2172 adaptation. Conversely, using a smaller window results in a weaker smoothing
2173 effect and thus in more gain variation, i.e. faster gain adaptation.
2174 In other words, the more you increase this value, the more the Dynamic Audio
2175 Normalizer will behave like a "traditional" normalization filter. On the
2176 contrary, the more you decrease this value, the more the Dynamic Audio
2177 Normalizer will behave like a dynamic range compressor.
2178
2179 @item p
2180 Set the target peak value. This specifies the highest permissible magnitude
2181 level for the normalized audio input. This filter will try to approach the
2182 target peak magnitude as closely as possible, but at the same time it also
2183 makes sure that the normalized signal will never exceed the peak magnitude.
2184 A frame's maximum local gain factor is imposed directly by the target peak
2185 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2186 It is not recommended to go above this value.
2187
2188 @item m
2189 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2190 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2191 factor for each input frame, i.e. the maximum gain factor that does not
2192 result in clipping or distortion. The maximum gain factor is determined by
2193 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2194 additionally bounds the frame's maximum gain factor by a predetermined
2195 (global) maximum gain factor. This is done in order to avoid excessive gain
2196 factors in "silent" or almost silent frames. By default, the maximum gain
2197 factor is 10.0, For most inputs the default value should be sufficient and
2198 it usually is not recommended to increase this value. Though, for input
2199 with an extremely low overall volume level, it may be necessary to allow even
2200 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2201 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2202 Instead, a "sigmoid" threshold function will be applied. This way, the
2203 gain factors will smoothly approach the threshold value, but never exceed that
2204 value.
2205
2206 @item r
2207 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2208 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2209 This means that the maximum local gain factor for each frame is defined
2210 (only) by the frame's highest magnitude sample. This way, the samples can
2211 be amplified as much as possible without exceeding the maximum signal
2212 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2213 Normalizer can also take into account the frame's root mean square,
2214 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2215 determine the power of a time-varying signal. It is therefore considered
2216 that the RMS is a better approximation of the "perceived loudness" than
2217 just looking at the signal's peak magnitude. Consequently, by adjusting all
2218 frames to a constant RMS value, a uniform "perceived loudness" can be
2219 established. If a target RMS value has been specified, a frame's local gain
2220 factor is defined as the factor that would result in exactly that RMS value.
2221 Note, however, that the maximum local gain factor is still restricted by the
2222 frame's highest magnitude sample, in order to prevent clipping.
2223
2224 @item n
2225 Enable channels coupling. By default is enabled.
2226 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2227 amount. This means the same gain factor will be applied to all channels, i.e.
2228 the maximum possible gain factor is determined by the "loudest" channel.
2229 However, in some recordings, it may happen that the volume of the different
2230 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2231 In this case, this option can be used to disable the channel coupling. This way,
2232 the gain factor will be determined independently for each channel, depending
2233 only on the individual channel's highest magnitude sample. This allows for
2234 harmonizing the volume of the different channels.
2235
2236 @item c
2237 Enable DC bias correction. By default is disabled.
2238 An audio signal (in the time domain) is a sequence of sample values.
2239 In the Dynamic Audio Normalizer these sample values are represented in the
2240 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2241 audio signal, or "waveform", should be centered around the zero point.
2242 That means if we calculate the mean value of all samples in a file, or in a
2243 single frame, then the result should be 0.0 or at least very close to that
2244 value. If, however, there is a significant deviation of the mean value from
2245 0.0, in either positive or negative direction, this is referred to as a
2246 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2247 Audio Normalizer provides optional DC bias correction.
2248 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2249 the mean value, or "DC correction" offset, of each input frame and subtract
2250 that value from all of the frame's sample values which ensures those samples
2251 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2252 boundaries, the DC correction offset values will be interpolated smoothly
2253 between neighbouring frames.
2254
2255 @item b
2256 Enable alternative boundary mode. By default is disabled.
2257 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2258 around each frame. This includes the preceding frames as well as the
2259 subsequent frames. However, for the "boundary" frames, located at the very
2260 beginning and at the very end of the audio file, not all neighbouring
2261 frames are available. In particular, for the first few frames in the audio
2262 file, the preceding frames are not known. And, similarly, for the last few
2263 frames in the audio file, the subsequent frames are not known. Thus, the
2264 question arises which gain factors should be assumed for the missing frames
2265 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2266 to deal with this situation. The default boundary mode assumes a gain factor
2267 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2268 "fade out" at the beginning and at the end of the input, respectively.
2269
2270 @item s
2271 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2272 By default, the Dynamic Audio Normalizer does not apply "traditional"
2273 compression. This means that signal peaks will not be pruned and thus the
2274 full dynamic range will be retained within each local neighbourhood. However,
2275 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2276 normalization algorithm with a more "traditional" compression.
2277 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2278 (thresholding) function. If (and only if) the compression feature is enabled,
2279 all input frames will be processed by a soft knee thresholding function prior
2280 to the actual normalization process. Put simply, the thresholding function is
2281 going to prune all samples whose magnitude exceeds a certain threshold value.
2282 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2283 value. Instead, the threshold value will be adjusted for each individual
2284 frame.
2285 In general, smaller parameters result in stronger compression, and vice versa.
2286 Values below 3.0 are not recommended, because audible distortion may appear.
2287 @end table
2288
2289 @section earwax
2290
2291 Make audio easier to listen to on headphones.
2292
2293 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2294 so that when listened to on headphones the stereo image is moved from
2295 inside your head (standard for headphones) to outside and in front of
2296 the listener (standard for speakers).
2297
2298 Ported from SoX.
2299
2300 @section equalizer
2301
2302 Apply a two-pole peaking equalisation (EQ) filter. With this
2303 filter, the signal-level at and around a selected frequency can
2304 be increased or decreased, whilst (unlike bandpass and bandreject
2305 filters) that at all other frequencies is unchanged.
2306
2307 In order to produce complex equalisation curves, this filter can
2308 be given several times, each with a different central frequency.
2309
2310 The filter accepts the following options:
2311
2312 @table @option
2313 @item frequency, f
2314 Set the filter's central frequency in Hz.
2315
2316 @item width_type
2317 Set method to specify band-width of filter.
2318 @table @option
2319 @item h
2320 Hz
2321 @item q
2322 Q-Factor
2323 @item o
2324 octave
2325 @item s
2326 slope
2327 @end table
2328
2329 @item width, w
2330 Specify the band-width of a filter in width_type units.
2331
2332 @item gain, g
2333 Set the required gain or attenuation in dB.
2334 Beware of clipping when using a positive gain.
2335 @end table
2336
2337 @subsection Examples
2338 @itemize
2339 @item
2340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2341 @example
2342 equalizer=f=1000:width_type=h:width=200:g=-10
2343 @end example
2344
2345 @item
2346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2347 @example
2348 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2349 @end example
2350 @end itemize
2351
2352 @section extrastereo
2353
2354 Linearly increases the difference between left and right channels which
2355 adds some sort of "live" effect to playback.
2356
2357 The filter accepts the following option:
2358
2359 @table @option
2360 @item m
2361 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2362 (average of both channels), with 1.0 sound will be unchanged, with
2363 -1.0 left and right channels will be swapped.
2364
2365 @item c
2366 Enable clipping. By default is enabled.
2367 @end table
2368
2369 @section firequalizer
2370 Apply FIR Equalization using arbitrary frequency response.
2371
2372 The filter accepts the following option:
2373
2374 @table @option
2375 @item gain
2376 Set gain curve equation (in dB). The expression can contain variables:
2377 @table @option
2378 @item f
2379 the evaluated frequency
2380 @item sr
2381 sample rate
2382 @item ch
2383 channel number, set to 0 when multichannels evaluation is disabled
2384 @item chid
2385 channel id, see libavutil/channel_layout.h, set to the first channel id when
2386 multichannels evaluation is disabled
2387 @item chs
2388 number of channels
2389 @item chlayout
2390 channel_layout, see libavutil/channel_layout.h
2391
2392 @end table
2393 and functions:
2394 @table @option
2395 @item gain_interpolate(f)
2396 interpolate gain on frequency f based on gain_entry
2397 @end table
2398 This option is also available as command. Default is @code{gain_interpolate(f)}.
2399
2400 @item gain_entry
2401 Set gain entry for gain_interpolate function. The expression can
2402 contain functions:
2403 @table @option
2404 @item entry(f, g)
2405 store gain entry at frequency f with value g
2406 @end table
2407 This option is also available as command.
2408
2409 @item delay
2410 Set filter delay in seconds. Higher value means more accurate.
2411 Default is @code{0.01}.
2412
2413 @item accuracy
2414 Set filter accuracy in Hz. Lower value means more accurate.
2415 Default is @code{5}.
2416
2417 @item wfunc
2418 Set window function. Acceptable values are:
2419 @table @option
2420 @item rectangular
2421 rectangular window, useful when gain curve is already smooth
2422 @item hann
2423 hann window (default)
2424 @item hamming
2425 hamming window
2426 @item blackman
2427 blackman window
2428 @item nuttall3
2429 3-terms continuous 1st derivative nuttall window
2430 @item mnuttall3
2431 minimum 3-terms discontinuous nuttall window
2432 @item nuttall
2433 4-terms continuous 1st derivative nuttall window
2434 @item bnuttall
2435 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2436 @item bharris
2437 blackman-harris window
2438 @end table
2439
2440 @item fixed
2441 If enabled, use fixed number of audio samples. This improves speed when
2442 filtering with large delay. Default is disabled.
2443
2444 @item multi
2445 Enable multichannels evaluation on gain. Default is disabled.
2446 @end table
2447
2448 @subsection Examples
2449 @itemize
2450 @item
2451 lowpass at 1000 Hz:
2452 @example
2453 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2454 @end example
2455 @item
2456 lowpass at 1000 Hz with gain_entry:
2457 @example
2458 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2459 @end example
2460 @item
2461 custom equalization:
2462 @example
2463 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2464 @end example
2465 @item
2466 higher delay:
2467 @example
2468 firequalizer=delay=0.1:fixed=on
2469 @end example
2470 @item
2471 lowpass on left channel, highpass on right channel:
2472 @example
2473 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2474 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2475 @end example
2476 @end itemize
2477
2478 @section flanger
2479 Apply a flanging effect to the audio.
2480
2481 The filter accepts the following options:
2482
2483 @table @option
2484 @item delay
2485 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2486
2487 @item depth
2488 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2489
2490 @item regen
2491 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2492 Default value is 0.
2493
2494 @item width
2495 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2496 Default value is 71.
2497
2498 @item speed
2499 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2500
2501 @item shape
2502 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2503 Default value is @var{sinusoidal}.
2504
2505 @item phase
2506 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2507 Default value is 25.
2508
2509 @item interp
2510 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2511 Default is @var{linear}.
2512 @end table
2513
2514 @section highpass
2515
2516 Apply a high-pass filter with 3dB point frequency.
2517 The filter can be either single-pole, or double-pole (the default).
2518 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2519
2520 The filter accepts the following options:
2521
2522 @table @option
2523 @item frequency, f
2524 Set frequency in Hz. Default is 3000.
2525
2526 @item poles, p
2527 Set number of poles. Default is 2.
2528
2529 @item width_type
2530 Set method to specify band-width of filter.
2531 @table @option
2532 @item h
2533 Hz
2534 @item q
2535 Q-Factor
2536 @item o
2537 octave
2538 @item s
2539 slope
2540 @end table
2541
2542 @item width, w
2543 Specify the band-width of a filter in width_type units.
2544 Applies only to double-pole filter.
2545 The default is 0.707q and gives a Butterworth response.
2546 @end table
2547
2548 @section join
2549
2550 Join multiple input streams into one multi-channel stream.
2551
2552 It accepts the following parameters:
2553 @table @option
2554
2555 @item inputs
2556 The number of input streams. It defaults to 2.
2557
2558 @item channel_layout
2559 The desired output channel layout. It defaults to stereo.
2560
2561 @item map
2562 Map channels from inputs to output. The argument is a '|'-separated list of
2563 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2564 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2565 can be either the name of the input channel (e.g. FL for front left) or its
2566 index in the specified input stream. @var{out_channel} is the name of the output
2567 channel.
2568 @end table
2569
2570 The filter will attempt to guess the mappings when they are not specified
2571 explicitly. It does so by first trying to find an unused matching input channel
2572 and if that fails it picks the first unused input channel.
2573
2574 Join 3 inputs (with properly set channel layouts):
2575 @example
2576 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2577 @end example
2578
2579 Build a 5.1 output from 6 single-channel streams:
2580 @example
2581 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2582 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
2583 out
2584 @end example
2585
2586 @section ladspa
2587
2588 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2589
2590 To enable compilation of this filter you need to configure FFmpeg with
2591 @code{--enable-ladspa}.
2592
2593 @table @option
2594 @item file, f
2595 Specifies the name of LADSPA plugin library to load. If the environment
2596 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2597 each one of the directories specified by the colon separated list in
2598 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2599 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2600 @file{/usr/lib/ladspa/}.
2601
2602 @item plugin, p
2603 Specifies the plugin within the library. Some libraries contain only
2604 one plugin, but others contain many of them. If this is not set filter
2605 will list all available plugins within the specified library.
2606
2607 @item controls, c
2608 Set the '|' separated list of controls which are zero or more floating point
2609 values that determine the behavior of the loaded plugin (for example delay,
2610 threshold or gain).
2611 Controls need to be defined using the following syntax:
2612 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2613 @var{valuei} is the value set on the @var{i}-th control.
2614 Alternatively they can be also defined using the following syntax:
2615 @var{value0}|@var{value1}|@var{value2}|..., where
2616 @var{valuei} is the value set on the @var{i}-th control.
2617 If @option{controls} is set to @code{help}, all available controls and
2618 their valid ranges are printed.
2619
2620 @item sample_rate, s
2621 Specify the sample rate, default to 44100. Only used if plugin have
2622 zero inputs.
2623
2624 @item nb_samples, n
2625 Set the number of samples per channel per each output frame, default
2626 is 1024. Only used if plugin have zero inputs.
2627
2628 @item duration, d
2629 Set the minimum duration of the sourced audio. See
2630 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2631 for the accepted syntax.
2632 Note that the resulting duration may be greater than the specified duration,
2633 as the generated audio is always cut at the end of a complete frame.
2634 If not specified, or the expressed duration is negative, the audio is
2635 supposed to be generated forever.
2636 Only used if plugin have zero inputs.
2637
2638 @end table
2639
2640 @subsection Examples
2641
2642 @itemize
2643 @item
2644 List all available plugins within amp (LADSPA example plugin) library:
2645 @example
2646 ladspa=file=amp
2647 @end example
2648
2649 @item
2650 List all available controls and their valid ranges for @code{vcf_notch}
2651 plugin from @code{VCF} library:
2652 @example
2653 ladspa=f=vcf:p=vcf_notch:c=help
2654 @end example
2655
2656 @item
2657 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2658 plugin library:
2659 @example
2660 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2661 @end example
2662
2663 @item
2664 Add reverberation to the audio using TAP-plugins
2665 (Tom's Audio Processing plugins):
2666 @example
2667 ladspa=file=tap_reverb:tap_reverb
2668 @end example
2669
2670 @item
2671 Generate white noise, with 0.2 amplitude:
2672 @example
2673 ladspa=file=cmt:noise_source_white:c=c0=.2
2674 @end example
2675
2676 @item
2677 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2678 @code{C* Audio Plugin Suite} (CAPS) library:
2679 @example
2680 ladspa=file=caps:Click:c=c1=20'
2681 @end example
2682
2683 @item
2684 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2685 @example
2686 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2687 @end example
2688
2689 @item
2690 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2691 @code{SWH Plugins} collection:
2692 @example
2693 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2694 @end example
2695
2696 @item
2697 Attenuate low frequencies using Multiband EQ from Steve Harris
2698 @code{SWH Plugins} collection:
2699 @example
2700 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2701 @end example
2702 @end itemize
2703
2704 @subsection Commands
2705
2706 This filter supports the following commands:
2707 @table @option
2708 @item cN
2709 Modify the @var{N}-th control value.
2710
2711 If the specified value is not valid, it is ignored and prior one is kept.
2712 @end table
2713
2714 @section lowpass
2715
2716 Apply a low-pass filter with 3dB point frequency.
2717 The filter can be either single-pole or double-pole (the default).
2718 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2719
2720 The filter accepts the following options:
2721
2722 @table @option
2723 @item frequency, f
2724 Set frequency in Hz. Default is 500.
2725
2726 @item poles, p
2727 Set number of poles. Default is 2.
2728
2729 @item width_type
2730 Set method to specify band-width of filter.
2731 @table @option
2732 @item h
2733 Hz
2734 @item q
2735 Q-Factor
2736 @item o
2737 octave
2738 @item s
2739 slope
2740 @end table
2741
2742 @item width, w
2743 Specify the band-width of a filter in width_type units.
2744 Applies only to double-pole filter.
2745 The default is 0.707q and gives a Butterworth response.
2746 @end table
2747
2748 @anchor{pan}
2749 @section pan
2750
2751 Mix channels with specific gain levels. The filter accepts the output
2752 channel layout followed by a set of channels definitions.
2753
2754 This filter is also designed to efficiently remap the channels of an audio
2755 stream.
2756
2757 The filter accepts parameters of the form:
2758 "@var{l}|@var{outdef}|@var{outdef}|..."
2759
2760 @table @option
2761 @item l
2762 output channel layout or number of channels
2763
2764 @item outdef
2765 output channel specification, of the form:
2766 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2767
2768 @item out_name
2769 output channel to define, either a channel name (FL, FR, etc.) or a channel
2770 number (c0, c1, etc.)
2771
2772 @item gain
2773 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2774
2775 @item in_name
2776 input channel to use, see out_name for details; it is not possible to mix
2777 named and numbered input channels
2778 @end table
2779
2780 If the `=' in a channel specification is replaced by `<', then the gains for
2781 that specification will be renormalized so that the total is 1, thus
2782 avoiding clipping noise.
2783
2784 @subsection Mixing examples
2785
2786 For example, if you want to down-mix from stereo to mono, but with a bigger
2787 factor for the left channel:
2788 @example
2789 pan=1c|c0=0.9*c0+0.1*c1
2790 @end example
2791
2792 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2793 7-channels surround:
2794 @example
2795 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2796 @end example
2797
2798 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2799 that should be preferred (see "-ac" option) unless you have very specific
2800 needs.
2801
2802 @subsection Remapping examples
2803
2804 The channel remapping will be effective if, and only if:
2805
2806 @itemize
2807 @item gain coefficients are zeroes or ones,
2808 @item only one input per channel output,
2809 @end itemize
2810
2811 If all these conditions are satisfied, the filter will notify the user ("Pure
2812 channel mapping detected"), and use an optimized and lossless method to do the
2813 remapping.
2814
2815 For example, if you have a 5.1 source and want a stereo audio stream by
2816 dropping the extra channels:
2817 @example
2818 pan="stereo| c0=FL | c1=FR"
2819 @end example
2820
2821 Given the same source, you can also switch front left and front right channels
2822 and keep the input channel layout:
2823 @example
2824 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2825 @end example
2826
2827 If the input is a stereo audio stream, you can mute the front left channel (and
2828 still keep the stereo channel layout) with:
2829 @example
2830 pan="stereo|c1=c1"
2831 @end example
2832
2833 Still with a stereo audio stream input, you can copy the right channel in both
2834 front left and right:
2835 @example
2836 pan="stereo| c0=FR | c1=FR"
2837 @end example
2838
2839 @section replaygain
2840
2841 ReplayGain scanner filter. This filter takes an audio stream as an input and
2842 outputs it unchanged.
2843 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2844
2845 @section resample
2846
2847 Convert the audio sample format, sample rate and channel layout. It is
2848 not meant to be used directly.
2849
2850 @section rubberband
2851 Apply time-stretching and pitch-shifting with librubberband.
2852
2853 The filter accepts the following options:
2854
2855 @table @option
2856 @item tempo
2857 Set tempo scale factor.
2858
2859 @item pitch
2860 Set pitch scale factor.
2861
2862 @item transients
2863 Set transients detector.
2864 Possible values are:
2865 @table @var
2866 @item crisp
2867 @item mixed
2868 @item smooth
2869 @end table
2870
2871 @item detector
2872 Set detector.
2873 Possible values are:
2874 @table @var
2875 @item compound
2876 @item percussive
2877 @item soft
2878 @end table
2879
2880 @item phase
2881 Set phase.
2882 Possible values are:
2883 @table @var
2884 @item laminar
2885 @item independent
2886 @end table
2887
2888 @item window
2889 Set processing window size.
2890 Possible values are:
2891 @table @var
2892 @item standard
2893 @item short
2894 @item long
2895 @end table
2896
2897 @item smoothing
2898 Set smoothing.
2899 Possible values are:
2900 @table @var
2901 @item off
2902 @item on
2903 @end table
2904
2905 @item formant
2906 Enable formant preservation when shift pitching.
2907 Possible values are:
2908 @table @var
2909 @item shifted
2910 @item preserved
2911 @end table
2912
2913 @item pitchq
2914 Set pitch quality.
2915 Possible values are:
2916 @table @var
2917 @item quality
2918 @item speed
2919 @item consistency
2920 @end table
2921
2922 @item channels
2923 Set channels.
2924 Possible values are:
2925 @table @var
2926 @item apart
2927 @item together
2928 @end table
2929 @end table
2930
2931 @section sidechaincompress
2932
2933 This filter acts like normal compressor but has the ability to compress
2934 detected signal using second input signal.
2935 It needs two input streams and returns one output stream.
2936 First input stream will be processed depending on second stream signal.
2937 The filtered signal then can be filtered with other filters in later stages of
2938 processing. See @ref{pan} and @ref{amerge} filter.
2939
2940 The filter accepts the following options:
2941
2942 @table @option
2943 @item level_in
2944 Set input gain. Default is 1. Range is between 0.015625 and 64.
2945
2946 @item threshold
2947 If a signal of second stream raises above this level it will affect the gain
2948 reduction of first stream.
2949 By default is 0.125. Range is between 0.00097563 and 1.
2950
2951 @item ratio
2952 Set a ratio about which the signal is reduced. 1:2 means that if the level
2953 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2954 Default is 2. Range is between 1 and 20.
2955
2956 @item attack
2957 Amount of milliseconds the signal has to rise above the threshold before gain
2958 reduction starts. Default is 20. Range is between 0.01 and 2000.
2959
2960 @item release
2961 Amount of milliseconds the signal has to fall below the threshold before
2962 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2963
2964 @item makeup
2965 Set the amount by how much signal will be amplified after processing.
2966 Default is 2. Range is from 1 and 64.
2967
2968 @item knee
2969 Curve the sharp knee around the threshold to enter gain reduction more softly.
2970 Default is 2.82843. Range is between 1 and 8.
2971
2972 @item link
2973 Choose if the @code{average} level between all channels of side-chain stream
2974 or the louder(@code{maximum}) channel of side-chain stream affects the
2975 reduction. Default is @code{average}.
2976
2977 @item detection
2978 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2979 of @code{rms}. Default is @code{rms} which is mainly smoother.
2980
2981 @item level_sc
2982 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
2983
2984 @item mix
2985 How much to use compressed signal in output. Default is 1.
2986 Range is between 0 and 1.
2987 @end table
2988
2989 @subsection Examples
2990
2991 @itemize
2992 @item
2993 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2994 depending on the signal of 2nd input and later compressed signal to be
2995 merged with 2nd input:
2996 @example
2997 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2998 @end example
2999 @end itemize
3000
3001 @section sidechaingate
3002
3003 A sidechain gate acts like a normal (wideband) gate but has the ability to
3004 filter the detected signal before sending it to the gain reduction stage.
3005 Normally a gate uses the full range signal to detect a level above the
3006 threshold.
3007 For example: If you cut all lower frequencies from your sidechain signal
3008 the gate will decrease the volume of your track only if not enough highs
3009 appear. With this technique you are able to reduce the resonation of a
3010 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3011 guitar.
3012 It needs two input streams and returns one output stream.
3013 First input stream will be processed depending on second stream signal.
3014
3015 The filter accepts the following options:
3016
3017 @table @option
3018 @item level_in
3019 Set input level before filtering.
3020 Default is 1. Allowed range is from 0.015625 to 64.
3021
3022 @item range
3023 Set the level of gain reduction when the signal is below the threshold.
3024 Default is 0.06125. Allowed range is from 0 to 1.
3025
3026 @item threshold
3027 If a signal rises above this level the gain reduction is released.
3028 Default is 0.125. Allowed range is from 0 to 1.
3029
3030 @item ratio
3031 Set a ratio about which the signal is reduced.
3032 Default is 2. Allowed range is from 1 to 9000.
3033
3034 @item attack
3035 Amount of milliseconds the signal has to rise above the threshold before gain
3036 reduction stops.
3037 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3038
3039 @item release
3040 Amount of milliseconds the signal has to fall below the threshold before the
3041 reduction is increased again. Default is 250 milliseconds.
3042 Allowed range is from 0.01 to 9000.
3043
3044 @item makeup
3045 Set amount of amplification of signal after processing.
3046 Default is 1. Allowed range is from 1 to 64.
3047
3048 @item knee
3049 Curve the sharp knee around the threshold to enter gain reduction more softly.
3050 Default is 2.828427125. Allowed range is from 1 to 8.
3051
3052 @item detection
3053 Choose if exact signal should be taken for detection or an RMS like one.
3054 Default is rms. Can be peak or rms.
3055
3056 @item link
3057 Choose if the average level between all channels or the louder channel affects
3058 the reduction.
3059 Default is average. Can be average or maximum.
3060
3061 @item level_sc
3062 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3063 @end table
3064
3065 @section silencedetect
3066
3067 Detect silence in an audio stream.
3068
3069 This filter logs a message when it detects that the input audio volume is less
3070 or equal to a noise tolerance value for a duration greater or equal to the
3071 minimum detected noise duration.
3072
3073 The printed times and duration are expressed in seconds.
3074
3075 The filter accepts the following options:
3076
3077 @table @option
3078 @item duration, d
3079 Set silence duration until notification (default is 2 seconds).
3080
3081 @item noise, n
3082 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3083 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3084 @end table
3085
3086 @subsection Examples
3087
3088 @itemize
3089 @item
3090 Detect 5 seconds of silence with -50dB noise tolerance:
3091 @example
3092 silencedetect=n=-50dB:d=5
3093 @end example
3094
3095 @item
3096 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3097 tolerance in @file{silence.mp3}:
3098 @example
3099 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3100 @end example
3101 @end itemize
3102
3103 @section silenceremove
3104
3105 Remove silence from the beginning, middle or end of the audio.
3106
3107 The filter accepts the following options:
3108
3109 @table @option
3110 @item start_periods
3111 This value is used to indicate if audio should be trimmed at beginning of
3112 the audio. A value of zero indicates no silence should be trimmed from the
3113 beginning. When specifying a non-zero value, it trims audio up until it
3114 finds non-silence. Normally, when trimming silence from beginning of audio
3115 the @var{start_periods} will be @code{1} but it can be increased to higher
3116 values to trim all audio up to specific count of non-silence periods.
3117 Default value is @code{0}.
3118
3119 @item start_duration
3120 Specify the amount of time that non-silence must be detected before it stops
3121 trimming audio. By increasing the duration, bursts of noises can be treated
3122 as silence and trimmed off. Default value is @code{0}.
3123
3124 @item start_threshold
3125 This indicates what sample value should be treated as silence. For digital
3126 audio, a value of @code{0} may be fine but for audio recorded from analog,
3127 you may wish to increase the value to account for background noise.
3128 Can be specified in dB (in case "dB" is appended to the specified value)
3129 or amplitude ratio. Default value is @code{0}.
3130
3131 @item stop_periods
3132 Set the count for trimming silence from the end of audio.
3133 To remove silence from the middle of a file, specify a @var{stop_periods}
3134 that is negative. This value is then treated as a positive value and is
3135 used to indicate the effect should restart processing as specified by
3136 @var{start_periods}, making it suitable for removing periods of silence
3137 in the middle of the audio.
3138 Default value is @code{0}.
3139
3140 @item stop_duration
3141 Specify a duration of silence that must exist before audio is not copied any
3142 more. By specifying a higher duration, silence that is wanted can be left in
3143 the audio.
3144 Default value is @code{0}.
3145
3146 @item stop_threshold
3147 This is the same as @option{start_threshold} but for trimming silence from
3148 the end of audio.
3149 Can be specified in dB (in case "dB" is appended to the specified value)
3150 or amplitude ratio. Default value is @code{0}.
3151
3152 @item leave_silence
3153 This indicate that @var{stop_duration} length of audio should be left intact
3154 at the beginning of each period of silence.
3155 For example, if you want to remove long pauses between words but do not want
3156 to remove the pauses completely. Default value is @code{0}.
3157
3158 @item detection
3159 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3160 and works better with digital silence which is exactly 0.
3161 Default value is @code{rms}.
3162
3163 @item window
3164 Set ratio used to calculate size of window for detecting silence.
3165 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3166 @end table
3167
3168 @subsection Examples
3169
3170 @itemize
3171 @item
3172 The following example shows how this filter can be used to start a recording
3173 that does not contain the delay at the start which usually occurs between
3174 pressing the record button and the start of the performance:
3175 @example
3176 silenceremove=1:5:0.02
3177 @end example
3178
3179 @item
3180 Trim all silence encountered from begining to end where there is more than 1
3181 second of silence in audio:
3182 @example
3183 silenceremove=0:0:0:-1:1:-90dB
3184 @end example
3185 @end itemize
3186
3187 @section sofalizer
3188
3189 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3190 loudspeakers around the user for binaural listening via headphones (audio
3191 formats up to 9 channels supported).
3192 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3193 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3194 Austrian Academy of Sciences.
3195
3196 To enable compilation of this filter you need to configure FFmpeg with
3197 @code{--enable-netcdf}.
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item sofa
3203 Set the SOFA file used for rendering.
3204
3205 @item gain
3206 Set gain applied to audio. Value is in dB. Default is 0.
3207
3208 @item rotation
3209 Set rotation of virtual loudspeakers in deg. Default is 0.
3210
3211 @item elevation
3212 Set elevation of virtual speakers in deg. Default is 0.
3213
3214 @item radius
3215 Set distance in meters between loudspeakers and the listener with near-field
3216 HRTFs. Default is 1.
3217
3218 @item type
3219 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3220 processing audio in time domain which is slow.
3221 @var{freq} is processing audio in frequency domain which is fast.
3222 Default is @var{freq}.
3223
3224 @item speakers
3225 Set custom positions of virtual loudspeakers. Syntax for this option is:
3226 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3227 Each virtual loudspeaker is described with short channel name following with
3228 azimuth and elevation in degreees.
3229 Each virtual loudspeaker description is separated by '|'.
3230 For example to override front left and front right channel positions use:
3231 'speakers=FL 45 15|FR 345 15'.
3232 Descriptions with unrecognised channel names are ignored.
3233 @end table
3234
3235 @subsection Examples
3236
3237 @itemize
3238 @item
3239 Using ClubFritz6 sofa file:
3240 @example
3241 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3242 @end example
3243
3244 @item
3245 Using ClubFritz12 sofa file and bigger radius with small rotation:
3246 @example
3247 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3248 @end example
3249
3250 @item
3251 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3252 and also with custom gain:
3253 @example
3254 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3255 @end example
3256 @end itemize
3257
3258 @section stereotools
3259
3260 This filter has some handy utilities to manage stereo signals, for converting
3261 M/S stereo recordings to L/R signal while having control over the parameters
3262 or spreading the stereo image of master track.
3263
3264 The filter accepts the following options:
3265
3266 @table @option
3267 @item level_in
3268 Set input level before filtering for both channels. Defaults is 1.
3269 Allowed range is from 0.015625 to 64.
3270
3271 @item level_out
3272 Set output level after filtering for both channels. Defaults is 1.
3273 Allowed range is from 0.015625 to 64.
3274
3275 @item balance_in
3276 Set input balance between both channels. Default is 0.
3277 Allowed range is from -1 to 1.
3278
3279 @item balance_out
3280 Set output balance between both channels. Default is 0.
3281 Allowed range is from -1 to 1.
3282
3283 @item softclip
3284 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3285 clipping. Disabled by default.
3286
3287 @item mutel
3288 Mute the left channel. Disabled by default.
3289
3290 @item muter
3291 Mute the right channel. Disabled by default.
3292
3293 @item phasel
3294 Change the phase of the left channel. Disabled by default.
3295
3296 @item phaser
3297 Change the phase of the right channel. Disabled by default.
3298
3299 @item mode
3300 Set stereo mode. Available values are:
3301
3302 @table @samp
3303 @item lr>lr
3304 Left/Right to Left/Right, this is default.
3305
3306 @item lr>ms
3307 Left/Right to Mid/Side.
3308
3309 @item ms>lr
3310 Mid/Side to Left/Right.
3311
3312 @item lr>ll
3313 Left/Right to Left/Left.
3314
3315 @item lr>rr
3316 Left/Right to Right/Right.
3317
3318 @item lr>l+r
3319 Left/Right to Left + Right.
3320
3321 @item lr>rl
3322 Left/Right to Right/Left.
3323 @end table
3324
3325 @item slev
3326 Set level of side signal. Default is 1.
3327 Allowed range is from 0.015625 to 64.
3328
3329 @item sbal
3330 Set balance of side signal. Default is 0.
3331 Allowed range is from -1 to 1.
3332
3333 @item mlev
3334 Set level of the middle signal. Default is 1.
3335 Allowed range is from 0.015625 to 64.
3336
3337 @item mpan
3338 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3339
3340 @item base
3341 Set stereo base between mono and inversed channels. Default is 0.
3342 Allowed range is from -1 to 1.
3343
3344 @item delay
3345 Set delay in milliseconds how much to delay left from right channel and
3346 vice versa. Default is 0. Allowed range is from -20 to 20.
3347
3348 @item sclevel
3349 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3350
3351 @item phase
3352 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3353 @end table
3354
3355 @subsection Examples
3356
3357 @itemize
3358 @item
3359 Apply karaoke like effect:
3360 @example
3361 stereotools=mlev=0.015625
3362 @end example
3363
3364 @item
3365 Convert M/S signal to L/R:
3366 @example
3367 "stereotools=mode=ms>lr"
3368 @end example
3369 @end itemize
3370
3371 @section stereowiden
3372
3373 This filter enhance the stereo effect by suppressing signal common to both
3374 channels and by delaying the signal of left into right and vice versa,
3375 thereby widening the stereo effect.
3376
3377 The filter accepts the following options:
3378
3379 @table @option
3380 @item delay
3381 Time in milliseconds of the delay of left signal into right and vice versa.
3382 Default is 20 milliseconds.
3383
3384 @item feedback
3385 Amount of gain in delayed signal into right and vice versa. Gives a delay
3386 effect of left signal in right output and vice versa which gives widening
3387 effect. Default is 0.3.
3388
3389 @item crossfeed
3390 Cross feed of left into right with inverted phase. This helps in suppressing
3391 the mono. If the value is 1 it will cancel all the signal common to both
3392 channels. Default is 0.3.
3393
3394 @item drymix
3395 Set level of input signal of original channel. Default is 0.8.
3396 @end table
3397
3398 @section treble
3399
3400 Boost or cut treble (upper) frequencies of the audio using a two-pole
3401 shelving filter with a response similar to that of a standard
3402 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3403
3404 The filter accepts the following options:
3405
3406 @table @option
3407 @item gain, g
3408 Give the gain at whichever is the lower of ~22 kHz and the
3409 Nyquist frequency. Its useful range is about -20 (for a large cut)
3410 to +20 (for a large boost). Beware of clipping when using a positive gain.
3411
3412 @item frequency, f
3413 Set the filter's central frequency and so can be used
3414 to extend or reduce the frequency range to be boosted or cut.
3415 The default value is @code{3000} Hz.
3416
3417 @item width_type
3418 Set method to specify band-width of filter.
3419 @table @option
3420 @item h
3421 Hz
3422 @item q
3423 Q-Factor
3424 @item o
3425 octave
3426 @item s
3427 slope
3428 @end table
3429
3430 @item width, w
3431 Determine how steep is the filter's shelf transition.
3432 @end table
3433
3434 @section tremolo
3435
3436 Sinusoidal amplitude modulation.
3437
3438 The filter accepts the following options:
3439
3440 @table @option
3441 @item f
3442 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3443 (20 Hz or lower) will result in a tremolo effect.
3444 This filter may also be used as a ring modulator by specifying
3445 a modulation frequency higher than 20 Hz.
3446 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3447
3448 @item d
3449 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3450 Default value is 0.5.
3451 @end table
3452
3453 @section vibrato
3454
3455 Sinusoidal phase modulation.
3456
3457 The filter accepts the following options:
3458
3459 @table @option
3460 @item f
3461 Modulation frequency in Hertz.
3462 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3463
3464 @item d
3465 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3466 Default value is 0.5.
3467 @end table
3468
3469 @section volume
3470
3471 Adjust the input audio volume.
3472
3473 It accepts the following parameters:
3474 @table @option
3475
3476 @item volume
3477 Set audio volume expression.
3478
3479 Output values are clipped to the maximum value.
3480
3481 The output audio volume is given by the relation:
3482 @example
3483 @var{output_volume} = @var{volume} * @var{input_volume}
3484 @end example
3485
3486 The default value for @var{volume} is "1.0".
3487
3488 @item precision
3489 This parameter represents the mathematical precision.
3490
3491 It determines which input sample formats will be allowed, which affects the
3492 precision of the volume scaling.
3493
3494 @table @option
3495 @item fixed
3496 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3497 @item float
3498 32-bit floating-point; this limits input sample format to FLT. (default)
3499 @item double
3500 64-bit floating-point; this limits input sample format to DBL.
3501 @end table
3502
3503 @item replaygain
3504 Choose the behaviour on encountering ReplayGain side data in input frames.
3505
3506 @table @option
3507 @item drop
3508 Remove ReplayGain side data, ignoring its contents (the default).
3509
3510 @item ignore
3511 Ignore ReplayGain side data, but leave it in the frame.
3512
3513 @item track
3514 Prefer the track gain, if present.
3515
3516 @item album
3517 Prefer the album gain, if present.
3518 @end table
3519
3520 @item replaygain_preamp
3521 Pre-amplification gain in dB to apply to the selected replaygain gain.
3522
3523 Default value for @var{replaygain_preamp} is 0.0.
3524
3525 @item eval
3526 Set when the volume expression is evaluated.
3527
3528 It accepts the following values:
3529 @table @samp
3530 @item once
3531 only evaluate expression once during the filter initialization, or
3532 when the @samp{volume} command is sent
3533
3534 @item frame
3535 evaluate expression for each incoming frame
3536 @end table
3537
3538 Default value is @samp{once}.
3539 @end table
3540
3541 The volume expression can contain the following parameters.
3542
3543 @table @option
3544 @item n
3545 frame number (starting at zero)
3546 @item nb_channels
3547 number of channels
3548 @item nb_consumed_samples
3549 number of samples consumed by the filter
3550 @item nb_samples
3551 number of samples in the current frame
3552 @item pos
3553 original frame position in the file
3554 @item pts
3555 frame PTS
3556 @item sample_rate
3557 sample rate
3558 @item startpts
3559 PTS at start of stream
3560 @item startt
3561 time at start of stream
3562 @item t
3563 frame time
3564 @item tb
3565 timestamp timebase
3566 @item volume
3567 last set volume value
3568 @end table
3569
3570 Note that when @option{eval} is set to @samp{once} only the
3571 @var{sample_rate} and @var{tb} variables are available, all other
3572 variables will evaluate to NAN.
3573
3574 @subsection Commands
3575
3576 This filter supports the following commands:
3577 @table @option
3578 @item volume
3579 Modify the volume expression.
3580 The command accepts the same syntax of the corresponding option.
3581
3582 If the specified expression is not valid, it is kept at its current
3583 value.
3584 @item replaygain_noclip
3585 Prevent clipping by limiting the gain applied.
3586
3587 Default value for @var{replaygain_noclip} is 1.
3588
3589 @end table
3590
3591 @subsection Examples
3592
3593 @itemize
3594 @item
3595 Halve the input audio volume:
3596 @example
3597 volume=volume=0.5
3598 volume=volume=1/2
3599 volume=volume=-6.0206dB
3600 @end example
3601
3602 In all the above example the named key for @option{volume} can be
3603 omitted, for example like in:
3604 @example
3605 volume=0.5
3606 @end example
3607
3608 @item
3609 Increase input audio power by 6 decibels using fixed-point precision:
3610 @example
3611 volume=volume=6dB:precision=fixed
3612 @end example
3613
3614 @item
3615 Fade volume after time 10 with an annihilation period of 5 seconds:
3616 @example
3617 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3618 @end example
3619 @end itemize
3620
3621 @section volumedetect
3622
3623 Detect the volume of the input video.
3624
3625 The filter has no parameters. The input is not modified. Statistics about
3626 the volume will be printed in the log when the input stream end is reached.
3627
3628 In particular it will show the mean volume (root mean square), maximum
3629 volume (on a per-sample basis), and the beginning of a histogram of the
3630 registered volume values (from the maximum value to a cumulated 1/1000 of
3631 the samples).
3632
3633 All volumes are in decibels relative to the maximum PCM value.
3634
3635 @subsection Examples
3636
3637 Here is an excerpt of the output:
3638 @example
3639 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3640 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3641 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3642 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3643 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3644 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3645 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3646 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3647 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3648 @end example
3649
3650 It means that:
3651 @itemize
3652 @item
3653 The mean square energy is approximately -27 dB, or 10^-2.7.
3654 @item
3655 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3656 @item
3657 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3658 @end itemize
3659
3660 In other words, raising the volume by +4 dB does not cause any clipping,
3661 raising it by +5 dB causes clipping for 6 samples, etc.
3662
3663 @c man end AUDIO FILTERS
3664
3665 @chapter Audio Sources
3666 @c man begin AUDIO SOURCES
3667
3668 Below is a description of the currently available audio sources.
3669
3670 @section abuffer
3671
3672 Buffer audio frames, and make them available to the filter chain.
3673
3674 This source is mainly intended for a programmatic use, in particular
3675 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3676
3677 It accepts the following parameters:
3678 @table @option
3679
3680 @item time_base
3681 The timebase which will be used for timestamps of submitted frames. It must be
3682 either a floating-point number or in @var{numerator}/@var{denominator} form.
3683
3684 @item sample_rate
3685 The sample rate of the incoming audio buffers.
3686
3687 @item sample_fmt
3688 The sample format of the incoming audio buffers.
3689 Either a sample format name or its corresponding integer representation from
3690 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3691
3692 @item channel_layout
3693 The channel layout of the incoming audio buffers.
3694 Either a channel layout name from channel_layout_map in
3695 @file{libavutil/channel_layout.c} or its corresponding integer representation
3696 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3697
3698 @item channels
3699 The number of channels of the incoming audio buffers.
3700 If both @var{channels} and @var{channel_layout} are specified, then they
3701 must be consistent.
3702
3703 @end table
3704
3705 @subsection Examples
3706
3707 @example
3708 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3709 @end example
3710
3711 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3712 Since the sample format with name "s16p" corresponds to the number
3713 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3714 equivalent to:
3715 @example
3716 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3717 @end example
3718
3719 @section aevalsrc
3720
3721 Generate an audio signal specified by an expression.
3722
3723 This source accepts in input one or more expressions (one for each
3724 channel), which are evaluated and used to generate a corresponding
3725 audio signal.
3726
3727 This source accepts the following options:
3728
3729 @table @option
3730 @item exprs
3731 Set the '|'-separated expressions list for each separate channel. In case the
3732 @option{channel_layout} option is not specified, the selected channel layout
3733 depends on the number of provided expressions. Otherwise the last
3734 specified expression is applied to the remaining output channels.
3735
3736 @item channel_layout, c
3737 Set the channel layout. The number of channels in the specified layout
3738 must be equal to the number of specified expressions.
3739
3740 @item duration, d
3741 Set the minimum duration of the sourced audio. See
3742 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3743 for the accepted syntax.
3744 Note that the resulting duration may be greater than the specified
3745 duration, as the generated audio is always cut at the end of a
3746 complete frame.
3747
3748 If not specified, or the expressed duration is negative, the audio is
3749 supposed to be generated forever.
3750
3751 @item nb_samples, n
3752 Set the number of samples per channel per each output frame,
3753 default to 1024.
3754
3755 @item sample_rate, s
3756 Specify the sample rate, default to 44100.
3757 @end table
3758
3759 Each expression in @var{exprs} can contain the following constants:
3760
3761 @table @option
3762 @item n
3763 number of the evaluated sample, starting from 0
3764
3765 @item t
3766 time of the evaluated sample expressed in seconds, starting from 0
3767
3768 @item s
3769 sample rate
3770
3771 @end table
3772
3773 @subsection Examples
3774
3775 @itemize
3776 @item
3777 Generate silence:
3778 @example
3779 aevalsrc=0
3780 @end example
3781
3782 @item
3783 Generate a sin signal with frequency of 440 Hz, set sample rate to
3784 8000 Hz:
3785 @example
3786 aevalsrc="sin(440*2*PI*t):s=8000"
3787 @end example
3788
3789 @item
3790 Generate a two channels signal, specify the channel layout (Front
3791 Center + Back Center) explicitly:
3792 @example
3793 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3794 @end example
3795
3796 @item
3797 Generate white noise:
3798 @example
3799 aevalsrc="-2+random(0)"
3800 @end example
3801
3802 @item
3803 Generate an amplitude modulated signal:
3804 @example
3805 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3806 @end example
3807
3808 @item
3809 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3810 @example
3811 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3812 @end example
3813
3814 @end itemize
3815
3816 @section anullsrc
3817
3818 The null audio source, return unprocessed audio frames. It is mainly useful
3819 as a template and to be employed in analysis / debugging tools, or as
3820 the source for filters which ignore the input data (for example the sox
3821 synth filter).
3822
3823 This source accepts the following options:
3824
3825 @table @option
3826
3827 @item channel_layout, cl
3828
3829 Specifies the channel layout, and can be either an integer or a string
3830 representing a channel layout. The default value of @var{channel_layout}
3831 is "stereo".
3832
3833 Check the channel_layout_map definition in
3834 @file{libavutil/channel_layout.c} for the mapping between strings and
3835 channel layout values.
3836
3837 @item sample_rate, r
3838 Specifies the sample rate, and defaults to 44100.
3839
3840 @item nb_samples, n
3841 Set the number of samples per requested frames.
3842
3843 @end table
3844
3845 @subsection Examples
3846
3847 @itemize
3848 @item
3849 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3850 @example
3851 anullsrc=r=48000:cl=4
3852 @end example
3853
3854 @item
3855 Do the same operation with a more obvious syntax:
3856 @example
3857 anullsrc=r=48000:cl=mono
3858 @end example
3859 @end itemize
3860
3861 All the parameters need to be explicitly defined.
3862
3863 @section flite
3864
3865 Synthesize a voice utterance using the libflite library.
3866
3867 To enable compilation of this filter you need to configure FFmpeg with
3868 @code{--enable-libflite}.
3869
3870 Note that the flite library is not thread-safe.
3871
3872 The filter accepts the following options:
3873
3874 @table @option
3875
3876 @item list_voices
3877 If set to 1, list the names of the available voices and exit
3878 immediately. Default value is 0.
3879
3880 @item nb_samples, n
3881 Set the maximum number of samples per frame. Default value is 512.
3882
3883 @item textfile
3884 Set the filename containing the text to speak.
3885
3886 @item text
3887 Set the text to speak.
3888
3889 @item voice, v
3890 Set the voice to use for the speech synthesis. Default value is
3891 @code{kal}. See also the @var{list_voices} option.
3892 @end table
3893
3894 @subsection Examples
3895
3896 @itemize
3897 @item
3898 Read from file @file{speech.txt}, and synthesize the text using the
3899 standard flite voice:
3900 @example
3901 flite=textfile=speech.txt
3902 @end example
3903
3904 @item
3905 Read the specified text selecting the @code{slt} voice:
3906 @example
3907 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3908 @end example
3909
3910 @item
3911 Input text to ffmpeg:
3912 @example
3913 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3914 @end example
3915
3916 @item
3917 Make @file{ffplay} speak the specified text, using @code{flite} and
3918 the @code{lavfi} device:
3919 @example
3920 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3921 @end example
3922 @end itemize
3923
3924 For more information about libflite, check:
3925 @url{http://www.speech.cs.cmu.edu/flite/}
3926
3927 @section anoisesrc
3928
3929 Generate a noise audio signal.
3930
3931 The filter accepts the following options:
3932
3933 @table @option
3934 @item sample_rate, r
3935 Specify the sample rate. Default value is 48000 Hz.
3936
3937 @item amplitude, a
3938 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3939 is 1.0.
3940
3941 @item duration, d
3942 Specify the duration of the generated audio stream. Not specifying this option
3943 results in noise with an infinite length.
3944
3945 @item color, colour, c
3946 Specify the color of noise. Available noise colors are white, pink, and brown.
3947 Default color is white.
3948
3949 @item seed, s
3950 Specify a value used to seed the PRNG.
3951
3952 @item nb_samples, n
3953 Set the number of samples per each output frame, default is 1024.
3954 @end table
3955
3956 @subsection Examples
3957
3958 @itemize
3959
3960 @item
3961 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
3962 @example
3963 anoisesrc=d=60:c=pink:r=44100:a=0.5
3964 @end example
3965 @end itemize
3966
3967 @section sine
3968
3969 Generate an audio signal made of a sine wave with amplitude 1/8.
3970
3971 The audio signal is bit-exact.
3972
3973 The filter accepts the following options:
3974
3975 @table @option
3976
3977 @item frequency, f
3978 Set the carrier frequency. Default is 440 Hz.
3979
3980 @item beep_factor, b
3981 Enable a periodic beep every second with frequency @var{beep_factor} times
3982 the carrier frequency. Default is 0, meaning the beep is disabled.
3983
3984 @item sample_rate, r
3985 Specify the sample rate, default is 44100.
3986
3987 @item duration, d
3988 Specify the duration of the generated audio stream.
3989
3990 @item samples_per_frame
3991 Set the number of samples per output frame.
3992
3993 The expression can contain the following constants:
3994
3995 @table @option
3996 @item n
3997 The (sequential) number of the output audio frame, starting from 0.
3998
3999 @item pts
4000 The PTS (Presentation TimeStamp) of the output audio frame,
4001 expressed in @var{TB} units.
4002
4003 @item t
4004 The PTS of the output audio frame, expressed in seconds.
4005
4006 @item TB
4007 The timebase of the output audio frames.
4008 @end table
4009
4010 Default is @code{1024}.
4011 @end table
4012
4013 @subsection Examples
4014
4015 @itemize
4016
4017 @item
4018 Generate a simple 440 Hz sine wave:
4019 @example
4020 sine
4021 @end example
4022
4023 @item
4024 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4025 @example
4026 sine=220:4:d=5
4027 sine=f=220:b=4:d=5
4028 sine=frequency=220:beep_factor=4:duration=5
4029 @end example
4030
4031 @item
4032 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4033 pattern:
4034 @example
4035 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4036 @end example
4037 @end itemize
4038
4039 @c man end AUDIO SOURCES
4040
4041 @chapter Audio Sinks
4042 @c man begin AUDIO SINKS
4043
4044 Below is a description of the currently available audio sinks.
4045
4046 @section abuffersink
4047
4048 Buffer audio frames, and make them available to the end of filter chain.
4049
4050 This sink is mainly intended for programmatic use, in particular
4051 through the interface defined in @file{libavfilter/buffersink.h}
4052 or the options system.
4053
4054 It accepts a pointer to an AVABufferSinkContext structure, which
4055 defines the incoming buffers' formats, to be passed as the opaque
4056 parameter to @code{avfilter_init_filter} for initialization.
4057 @section anullsink
4058
4059 Null audio sink; do absolutely nothing with the input audio. It is
4060 mainly useful as a template and for use in analysis / debugging
4061 tools.
4062
4063 @c man end AUDIO SINKS
4064
4065 @chapter Video Filters
4066 @c man begin VIDEO FILTERS
4067
4068 When you configure your FFmpeg build, you can disable any of the
4069 existing filters using @code{--disable-filters}.
4070 The configure output will show the video filters included in your
4071 build.
4072
4073 Below is a description of the currently available video filters.
4074
4075 @section alphaextract
4076
4077 Extract the alpha component from the input as a grayscale video. This
4078 is especially useful with the @var{alphamerge} filter.
4079
4080 @section alphamerge
4081
4082 Add or replace the alpha component of the primary input with the
4083 grayscale value of a second input. This is intended for use with
4084 @var{alphaextract} to allow the transmission or storage of frame
4085 sequences that have alpha in a format that doesn't support an alpha
4086 channel.
4087
4088 For example, to reconstruct full frames from a normal YUV-encoded video
4089 and a separate video created with @var{alphaextract}, you might use:
4090 @example
4091 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4092 @end example
4093
4094 Since this filter is designed for reconstruction, it operates on frame
4095 sequences without considering timestamps, and terminates when either
4096 input reaches end of stream. This will cause problems if your encoding
4097 pipeline drops frames. If you're trying to apply an image as an
4098 overlay to a video stream, consider the @var{overlay} filter instead.
4099
4100 @section ass
4101
4102 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4103 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4104 Substation Alpha) subtitles files.
4105
4106 This filter accepts the following option in addition to the common options from
4107 the @ref{subtitles} filter:
4108
4109 @table @option
4110 @item shaping
4111 Set the shaping engine
4112
4113 Available values are:
4114 @table @samp
4115 @item auto
4116 The default libass shaping engine, which is the best available.
4117 @item simple
4118 Fast, font-agnostic shaper that can do only substitutions
4119 @item complex
4120 Slower shaper using OpenType for substitutions and positioning
4121 @end table
4122
4123 The default is @code{auto}.
4124 @end table
4125
4126 @section atadenoise
4127 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4128
4129 The filter accepts the following options:
4130
4131 @table @option
4132 @item 0a
4133 Set threshold A for 1st plane. Default is 0.02.
4134 Valid range is 0 to 0.3.
4135
4136 @item 0b
4137 Set threshold B for 1st plane. Default is 0.04.
4138 Valid range is 0 to 5.
4139
4140 @item 1a
4141 Set threshold A for 2nd plane. Default is 0.02.
4142 Valid range is 0 to 0.3.
4143
4144 @item 1b
4145 Set threshold B for 2nd plane. Default is 0.04.
4146 Valid range is 0 to 5.
4147
4148 @item 2a
4149 Set threshold A for 3rd plane. Default is 0.02.
4150 Valid range is 0 to 0.3.
4151
4152 @item 2b
4153 Set threshold B for 3rd plane. Default is 0.04.
4154 Valid range is 0 to 5.
4155
4156 Threshold A is designed to react on abrupt changes in the input signal and
4157 threshold B is designed to react on continuous changes in the input signal.
4158
4159 @item s
4160 Set number of frames filter will use for averaging. Default is 33. Must be odd
4161 number in range [5, 129].
4162 @end table
4163
4164 @section bbox
4165
4166 Compute the bounding box for the non-black pixels in the input frame
4167 luminance plane.
4168
4169 This filter computes the bounding box containing all the pixels with a
4170 luminance value greater than the minimum allowed value.
4171 The parameters describing the bounding box are printed on the filter
4172 log.
4173
4174 The filter accepts the following option:
4175
4176 @table @option
4177 @item min_val
4178 Set the minimal luminance value. Default is @code{16}.
4179 @end table
4180
4181 @section blackdetect
4182
4183 Detect video intervals that are (almost) completely black. Can be
4184 useful to detect chapter transitions, commercials, or invalid
4185 recordings. Output lines contains the time for the start, end and
4186 duration of the detected black interval expressed in seconds.
4187
4188 In order to display the output lines, you need to set the loglevel at
4189 least to the AV_LOG_INFO value.
4190
4191 The filter accepts the following options:
4192
4193 @table @option
4194 @item black_min_duration, d
4195 Set the minimum detected black duration expressed in seconds. It must
4196 be a non-negative floating point number.
4197
4198 Default value is 2.0.
4199
4200 @item picture_black_ratio_th, pic_th
4201 Set the threshold for considering a picture "black".
4202 Express the minimum value for the ratio:
4203 @example
4204 @var{nb_black_pixels} / @var{nb_pixels}
4205 @end example
4206
4207 for which a picture is considered black.
4208 Default value is 0.98.
4209
4210 @item pixel_black_th, pix_th
4211 Set the threshold for considering a pixel "black".
4212
4213 The threshold expresses the maximum pixel luminance value for which a
4214 pixel is considered "black". The provided value is scaled according to
4215 the following equation:
4216 @example
4217 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4218 @end example
4219
4220 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4221 the input video format, the range is [0-255] for YUV full-range
4222 formats and [16-235] for YUV non full-range formats.
4223
4224 Default value is 0.10.
4225 @end table
4226
4227 The following example sets the maximum pixel threshold to the minimum
4228 value, and detects only black intervals of 2 or more seconds:
4229 @example
4230 blackdetect=d=2:pix_th=0.00
4231 @end example
4232
4233 @section blackframe
4234
4235 Detect frames that are (almost) completely black. Can be useful to
4236 detect chapter transitions or commercials. Output lines consist of
4237 the frame number of the detected frame, the percentage of blackness,
4238 the position in the file if known or -1 and the timestamp in seconds.
4239
4240 In order to display the output lines, you need to set the loglevel at
4241 least to the AV_LOG_INFO value.
4242
4243 It accepts the following parameters:
4244
4245 @table @option
4246
4247 @item amount
4248 The percentage of the pixels that have to be below the threshold; it defaults to
4249 @code{98}.
4250
4251 @item threshold, thresh
4252 The threshold below which a pixel value is considered black; it defaults to
4253 @code{32}.
4254
4255 @end table
4256
4257 @section blend, tblend
4258
4259 Blend two video frames into each other.
4260
4261 The @code{blend} filter takes two input streams and outputs one
4262 stream, the first input is the "top" layer and second input is
4263 "bottom" layer.  Output terminates when shortest input terminates.
4264
4265 The @code{tblend} (time blend) filter takes two consecutive frames
4266 from one single stream, and outputs the result obtained by blending
4267 the new frame on top of the old frame.
4268
4269 A description of the accepted options follows.
4270
4271 @table @option
4272 @item c0_mode
4273 @item c1_mode
4274 @item c2_mode
4275 @item c3_mode
4276 @item all_mode
4277 Set blend mode for specific pixel component or all pixel components in case
4278 of @var{all_mode}. Default value is @code{normal}.
4279
4280 Available values for component modes are:
4281 @table @samp
4282 @item addition
4283 @item addition128
4284 @item and
4285 @item average
4286 @item burn
4287 @item darken
4288 @item difference
4289 @item difference128
4290 @item divide
4291 @item dodge
4292 @item freeze
4293 @item exclusion
4294 @item glow
4295 @item hardlight
4296 @item hardmix
4297 @item heat
4298 @item lighten
4299 @item linearlight
4300 @item multiply
4301 @item multiply128
4302 @item negation
4303 @item normal
4304 @item or
4305 @item overlay
4306 @item phoenix
4307 @item pinlight
4308 @item reflect
4309 @item screen
4310 @item softlight
4311 @item subtract
4312 @item vividlight
4313 @item xor
4314 @end table
4315
4316 @item c0_opacity
4317 @item c1_opacity
4318 @item c2_opacity
4319 @item c3_opacity
4320 @item all_opacity
4321 Set blend opacity for specific pixel component or all pixel components in case
4322 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4323
4324 @item c0_expr
4325 @item c1_expr
4326 @item c2_expr
4327 @item c3_expr
4328 @item all_expr
4329 Set blend expression for specific pixel component or all pixel components in case
4330 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4331
4332 The expressions can use the following variables:
4333
4334 @table @option
4335 @item N
4336 The sequential number of the filtered frame, starting from @code{0}.
4337
4338 @item X
4339 @item Y
4340 the coordinates of the current sample
4341
4342 @item W
4343 @item H
4344 the width and height of currently filtered plane
4345
4346 @item SW
4347 @item SH
4348 Width and height scale depending on the currently filtered plane. It is the
4349 ratio between the corresponding luma plane number of pixels and the current
4350 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4351 @code{0.5,0.5} for chroma planes.
4352
4353 @item T
4354 Time of the current frame, expressed in seconds.
4355
4356 @item TOP, A
4357 Value of pixel component at current location for first video frame (top layer).
4358
4359 @item BOTTOM, B
4360 Value of pixel component at current location for second video frame (bottom layer).
4361 @end table
4362
4363 @item shortest
4364 Force termination when the shortest input terminates. Default is
4365 @code{0}. This option is only defined for the @code{blend} filter.
4366
4367 @item repeatlast
4368 Continue applying the last bottom frame after the end of the stream. A value of
4369 @code{0} disable the filter after the last frame of the bottom layer is reached.
4370 Default is @code{1}. This option is only defined for the @code{blend} filter.
4371 @end table
4372
4373 @subsection Examples
4374
4375 @itemize
4376 @item
4377 Apply transition from bottom layer to top layer in first 10 seconds:
4378 @example
4379 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4380 @end example
4381
4382 @item
4383 Apply 1x1 checkerboard effect:
4384 @example
4385 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4386 @end example
4387
4388 @item
4389 Apply uncover left effect:
4390 @example
4391 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4392 @end example
4393
4394 @item
4395 Apply uncover down effect:
4396 @example
4397 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4398 @end example
4399
4400 @item
4401 Apply uncover up-left effect:
4402 @example
4403 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4404 @end example
4405
4406 @item
4407 Split diagonally video and shows top and bottom layer on each side:
4408 @example
4409 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4410 @end example
4411
4412 @item
4413 Display differences between the current and the previous frame:
4414 @example
4415 tblend=all_mode=difference128
4416 @end example
4417 @end itemize
4418
4419 @section bwdif
4420
4421 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4422 Deinterlacing Filter").
4423
4424 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4425 interpolation algorithms.
4426 It accepts the following parameters:
4427
4428 @table @option
4429 @item mode
4430 The interlacing mode to adopt. It accepts one of the following values:
4431
4432 @table @option
4433 @item 0, send_frame
4434 Output one frame for each frame.
4435 @item 1, send_field
4436 Output one frame for each field.
4437 @end table
4438
4439 The default value is @code{send_field}.
4440
4441 @item parity
4442 The picture field parity assumed for the input interlaced video. It accepts one
4443 of the following values:
4444
4445 @table @option
4446 @item 0, tff
4447 Assume the top field is first.
4448 @item 1, bff
4449 Assume the bottom field is first.
4450 @item -1, auto
4451 Enable automatic detection of field parity.
4452 @end table
4453
4454 The default value is @code{auto}.
4455 If the interlacing is unknown or the decoder does not export this information,
4456 top field first will be assumed.
4457
4458 @item deint
4459 Specify which frames to deinterlace. Accept one of the following
4460 values:
4461
4462 @table @option
4463 @item 0, all
4464 Deinterlace all frames.
4465 @item 1, interlaced
4466 Only deinterlace frames marked as interlaced.
4467 @end table
4468
4469 The default value is @code{all}.
4470 @end table
4471
4472 @section boxblur
4473
4474 Apply a boxblur algorithm to the input video.
4475
4476 It accepts the following parameters:
4477
4478 @table @option
4479
4480 @item luma_radius, lr
4481 @item luma_power, lp
4482 @item chroma_radius, cr
4483 @item chroma_power, cp
4484 @item alpha_radius, ar
4485 @item alpha_power, ap
4486
4487 @end table
4488
4489 A description of the accepted options follows.
4490
4491 @table @option
4492 @item luma_radius, lr
4493 @item chroma_radius, cr
4494 @item alpha_radius, ar
4495 Set an expression for the box radius in pixels used for blurring the
4496 corresponding input plane.
4497
4498 The radius value must be a non-negative number, and must not be
4499 greater than the value of the expression @code{min(w,h)/2} for the
4500 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4501 planes.
4502
4503 Default value for @option{luma_radius} is "2". If not specified,
4504 @option{chroma_radius} and @option{alpha_radius} default to the
4505 corresponding value set for @option{luma_radius}.
4506
4507 The expressions can contain the following constants:
4508 @table @option
4509 @item w
4510 @item h
4511 The input width and height in pixels.
4512
4513 @item cw
4514 @item ch
4515 The input chroma image width and height in pixels.
4516
4517 @item hsub
4518 @item vsub
4519 The horizontal and vertical chroma subsample values. For example, for the
4520 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4521 @end table
4522
4523 @item luma_power, lp
4524 @item chroma_power, cp
4525 @item alpha_power, ap
4526 Specify how many times the boxblur filter is applied to the
4527 corresponding plane.
4528
4529 Default value for @option{luma_power} is 2. If not specified,
4530 @option{chroma_power} and @option{alpha_power} default to the
4531 corresponding value set for @option{luma_power}.
4532
4533 A value of 0 will disable the effect.
4534 @end table
4535
4536 @subsection Examples
4537
4538 @itemize
4539 @item
4540 Apply a boxblur filter with the luma, chroma, and alpha radii
4541 set to 2:
4542 @example
4543 boxblur=luma_radius=2:luma_power=1
4544 boxblur=2:1
4545 @end example
4546
4547 @item
4548 Set the luma radius to 2, and alpha and chroma radius to 0:
4549 @example
4550 boxblur=2:1:cr=0:ar=0
4551 @end example
4552
4553 @item
4554 Set the luma and chroma radii to a fraction of the video dimension:
4555 @example
4556 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4557 @end example
4558 @end itemize
4559
4560 @section chromakey
4561 YUV colorspace color/chroma keying.
4562
4563 The filter accepts the following options:
4564
4565 @table @option
4566 @item color
4567 The color which will be replaced with transparency.
4568
4569 @item similarity
4570 Similarity percentage with the key color.
4571
4572 0.01 matches only the exact key color, while 1.0 matches everything.
4573
4574 @item blend
4575 Blend percentage.
4576
4577 0.0 makes pixels either fully transparent, or not transparent at all.
4578
4579 Higher values result in semi-transparent pixels, with a higher transparency
4580 the more similar the pixels color is to the key color.
4581
4582 @item yuv
4583 Signals that the color passed is already in YUV instead of RGB.
4584
4585 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4586 This can be used to pass exact YUV values as hexadecimal numbers.
4587 @end table
4588
4589 @subsection Examples
4590
4591 @itemize
4592 @item
4593 Make every green pixel in the input image transparent:
4594 @example
4595 ffmpeg -i input.png -vf chromakey=green out.png
4596 @end example
4597
4598 @item
4599 Overlay a greenscreen-video on top of a static black background.
4600 @example
4601 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
4602 @end example
4603 @end itemize
4604
4605 @section ciescope
4606
4607 Display CIE color diagram with pixels overlaid onto it.
4608
4609 The filter acccepts the following options:
4610
4611 @table @option
4612 @item system
4613 Set color system.
4614
4615 @table @samp
4616 @item ntsc, 470m
4617 @item ebu, 470bg
4618 @item smpte
4619 @item 240m
4620 @item apple
4621 @item widergb
4622 @item cie1931
4623 @item rec709, hdtv
4624 @item uhdtv, rec2020
4625 @end table
4626
4627 @item cie
4628 Set CIE system.
4629
4630 @table @samp
4631 @item xyy
4632 @item ucs
4633 @item luv
4634 @end table
4635
4636 @item gamuts
4637 Set what gamuts to draw.
4638
4639 See @code{system} option for avaiable values.
4640
4641 @item size, s
4642 Set ciescope size, by default set to 512.
4643
4644 @item intensity, i
4645 Set intensity used to map input pixel values to CIE diagram.
4646
4647 @item contrast
4648 Set contrast used to draw tongue colors that are out of active color system gamut.
4649
4650 @item corrgamma
4651 Correct gamma displayed on scope, by default enabled.
4652
4653 @item showwhite
4654 Show white point on CIE diagram, by default disabled.
4655
4656 @item gamma
4657 Set input gamma. Used only with XYZ input color space.
4658 @end table
4659
4660 @section codecview
4661
4662 Visualize information exported by some codecs.
4663
4664 Some codecs can export information through frames using side-data or other
4665 means. For example, some MPEG based codecs export motion vectors through the
4666 @var{export_mvs} flag in the codec @option{flags2} option.
4667
4668 The filter accepts the following option:
4669
4670 @table @option
4671 @item mv
4672 Set motion vectors to visualize.
4673
4674 Available flags for @var{mv} are:
4675
4676 @table @samp
4677 @item pf
4678 forward predicted MVs of P-frames
4679 @item bf
4680 forward predicted MVs of B-frames
4681 @item bb
4682 backward predicted MVs of B-frames
4683 @end table
4684
4685 @item qp
4686 Display quantization parameters using the chroma planes
4687 @end table
4688
4689 @subsection Examples
4690
4691 @itemize
4692 @item
4693 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4694 @example
4695 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4696 @end example
4697 @end itemize
4698
4699 @section colorbalance
4700 Modify intensity of primary colors (red, green and blue) of input frames.
4701
4702 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4703 regions for the red-cyan, green-magenta or blue-yellow balance.
4704
4705 A positive adjustment value shifts the balance towards the primary color, a negative
4706 value towards the complementary color.
4707
4708 The filter accepts the following options:
4709
4710 @table @option
4711 @item rs
4712 @item gs
4713 @item bs
4714 Adjust red, green and blue shadows (darkest pixels).
4715
4716 @item rm
4717 @item gm
4718 @item bm
4719 Adjust red, green and blue midtones (medium pixels).
4720
4721 @item rh
4722 @item gh
4723 @item bh
4724 Adjust red, green and blue highlights (brightest pixels).
4725
4726 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4727 @end table
4728
4729 @subsection Examples
4730
4731 @itemize
4732 @item
4733 Add red color cast to shadows:
4734 @example
4735 colorbalance=rs=.3
4736 @end example
4737 @end itemize
4738
4739 @section colorkey
4740 RGB colorspace color keying.
4741
4742 The filter accepts the following options:
4743
4744 @table @option
4745 @item color
4746 The color which will be replaced with transparency.
4747
4748 @item similarity
4749 Similarity percentage with the key color.
4750
4751 0.01 matches only the exact key color, while 1.0 matches everything.
4752
4753 @item blend
4754 Blend percentage.
4755
4756 0.0 makes pixels either fully transparent, or not transparent at all.
4757
4758 Higher values result in semi-transparent pixels, with a higher transparency
4759 the more similar the pixels color is to the key color.
4760 @end table
4761
4762 @subsection Examples
4763
4764 @itemize
4765 @item
4766 Make every green pixel in the input image transparent:
4767 @example
4768 ffmpeg -i input.png -vf colorkey=green out.png
4769 @end example
4770
4771 @item
4772 Overlay a greenscreen-video on top of a static background image.
4773 @example
4774 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
4775 @end example
4776 @end itemize
4777
4778 @section colorlevels
4779
4780 Adjust video input frames using levels.
4781
4782 The filter accepts the following options:
4783
4784 @table @option
4785 @item rimin
4786 @item gimin
4787 @item bimin
4788 @item aimin
4789 Adjust red, green, blue and alpha input black point.
4790 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4791
4792 @item rimax
4793 @item gimax
4794 @item bimax
4795 @item aimax
4796 Adjust red, green, blue and alpha input white point.
4797 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4798
4799 Input levels are used to lighten highlights (bright tones), darken shadows
4800 (dark tones), change the balance of bright and dark tones.
4801
4802 @item romin
4803 @item gomin
4804 @item bomin
4805 @item aomin
4806 Adjust red, green, blue and alpha output black point.
4807 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4808
4809 @item romax
4810 @item gomax
4811 @item bomax
4812 @item aomax
4813 Adjust red, green, blue and alpha output white point.
4814 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4815
4816 Output levels allows manual selection of a constrained output level range.
4817 @end table
4818
4819 @subsection Examples
4820
4821 @itemize
4822 @item
4823 Make video output darker:
4824 @example
4825 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4826 @end example
4827
4828 @item
4829 Increase contrast:
4830 @example
4831 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4832 @end example
4833
4834 @item
4835 Make video output lighter:
4836 @example
4837 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4838 @end example
4839
4840 @item
4841 Increase brightness:
4842 @example
4843 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4844 @end example
4845 @end itemize
4846
4847 @section colorchannelmixer
4848
4849 Adjust video input frames by re-mixing color channels.
4850
4851 This filter modifies a color channel by adding the values associated to
4852 the other channels of the same pixels. For example if the value to
4853 modify is red, the output value will be:
4854 @example
4855 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4856 @end example
4857
4858 The filter accepts the following options:
4859
4860 @table @option
4861 @item rr
4862 @item rg
4863 @item rb
4864 @item ra
4865 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4866 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4867
4868 @item gr
4869 @item gg
4870 @item gb
4871 @item ga
4872 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4873 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4874
4875 @item br
4876 @item bg
4877 @item bb
4878 @item ba
4879 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4880 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4881
4882 @item ar
4883 @item ag
4884 @item ab
4885 @item aa
4886 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4887 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4888
4889 Allowed ranges for options are @code{[-2.0, 2.0]}.
4890 @end table
4891
4892 @subsection Examples
4893
4894 @itemize
4895 @item
4896 Convert source to grayscale:
4897 @example
4898 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4899 @end example
4900 @item
4901 Simulate sepia tones:
4902 @example
4903 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4904 @end example
4905 @end itemize
4906
4907 @section colormatrix
4908
4909 Convert color matrix.
4910
4911 The filter accepts the following options:
4912
4913 @table @option
4914 @item src
4915 @item dst
4916 Specify the source and destination color matrix. Both values must be
4917 specified.
4918
4919 The accepted values are:
4920 @table @samp
4921 @item bt709
4922 BT.709
4923
4924 @item bt601
4925 BT.601
4926
4927 @item smpte240m
4928 SMPTE-240M
4929
4930 @item fcc
4931 FCC
4932 @end table
4933 @end table
4934
4935 For example to convert from BT.601 to SMPTE-240M, use the command:
4936 @example
4937 colormatrix=bt601:smpte240m
4938 @end example
4939
4940 @section colorspace
4941
4942 Convert colorspace, transfer characteristics or color primaries.
4943
4944 The filter accepts the following options:
4945
4946 @table @option
4947 @item all
4948 Specify all color properties at once.
4949
4950 The accepted values are:
4951 @table @samp
4952 @item bt470m
4953 BT.470M
4954
4955 @item bt470bg
4956 BT.470BG
4957
4958 @item bt601-6-525
4959 BT.601-6 525
4960
4961 @item bt601-6-625
4962 BT.601-6 625
4963
4964 @item bt709
4965 BT.709
4966
4967 @item smpte170m
4968 SMPTE-170M
4969
4970 @item smpte240m
4971 SMPTE-240M
4972
4973 @item bt2020
4974 BT.2020
4975
4976 @end table
4977
4978 @item space
4979 Specify output colorspace.
4980
4981 The accepted values are:
4982 @table @samp
4983 @item bt709
4984 BT.709
4985
4986 @item fcc
4987 FCC
4988
4989 @item bt470bg
4990 BT.470BG or BT.601-6 625
4991
4992 @item smpte170m
4993 SMPTE-170M or BT.601-6 525
4994
4995 @item smpte240m
4996 SMPTE-240M
4997
4998 @item bt2020ncl
4999 BT.2020 with non-constant luminance
5000
5001 @end table
5002
5003 @item trc
5004 Specify output transfer characteristics.
5005
5006 The accepted values are:
5007 @table @samp
5008 @item bt709
5009 BT.709
5010
5011 @item gamma22
5012 Constant gamma of 2.2
5013
5014 @item gamma28
5015 Constant gamma of 2.8
5016
5017 @item smpte170m
5018 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5019
5020 @item smpte240m
5021 SMPTE-240M
5022
5023 @item bt2020-10
5024 BT.2020 for 10-bits content
5025
5026 @item bt2020-12
5027 BT.2020 for 12-bits content
5028
5029 @end table
5030
5031 @item prm
5032 Specify output color primaries.
5033
5034 The accepted values are:
5035 @table @samp
5036 @item bt709
5037 BT.709
5038
5039 @item bt470m
5040 BT.470M
5041
5042 @item bt470bg
5043 BT.470BG or BT.601-6 625
5044
5045 @item smpte170m
5046 SMPTE-170M or BT.601-6 525
5047
5048 @item smpte240m
5049 SMPTE-240M
5050
5051 @item bt2020
5052 BT.2020
5053
5054 @end table
5055
5056 @item rng
5057 Specify output color range.
5058
5059 The accepted values are:
5060 @table @samp
5061 @item mpeg
5062 MPEG (restricted) range
5063
5064 @item jpeg
5065 JPEG (full) range
5066
5067 @end table
5068
5069 @item format
5070 Specify output color format.
5071
5072 The accepted values are:
5073 @table @samp
5074 @item yuv420p
5075 YUV 4:2:0 planar 8-bits
5076
5077 @item yuv420p10
5078 YUV 4:2:0 planar 10-bits
5079
5080 @item yuv420p12
5081 YUV 4:2:0 planar 12-bits
5082
5083 @item yuv422p
5084 YUV 4:2:2 planar 8-bits
5085
5086 @item yuv422p10
5087 YUV 4:2:2 planar 10-bits
5088
5089 @item yuv422p12
5090 YUV 4:2:2 planar 12-bits
5091
5092 @item yuv444p
5093 YUV 4:4:4 planar 8-bits
5094
5095 @item yuv444p10
5096 YUV 4:4:4 planar 10-bits
5097
5098 @item yuv444p12
5099 YUV 4:4:4 planar 12-bits
5100
5101 @end table
5102
5103 @item fast
5104 Do a fast conversion, which skips gamma/primary correction. This will take
5105 significantly less CPU, but will be mathematically incorrect. To get output
5106 compatible with that produced by the colormatrix filter, use fast=1.
5107 @end table
5108
5109 The filter converts the transfer characteristics, color space and color
5110 primaries to the specified user values. The output value, if not specified,
5111 is set to a default value based on the "all" property. If that property is
5112 also not specified, the filter will log an error. The output color range and
5113 format default to the same value as the input color range and format. The
5114 input transfer characteristics, color space, color primaries and color range
5115 should be set on the input data. If any of these are missing, the filter will
5116 log an error and no conversion will take place.
5117
5118 For example to convert the input to SMPTE-240M, use the command:
5119 @example
5120 colorspace=smpte240m
5121 @end example
5122
5123 @section convolution
5124
5125 Apply convolution 3x3 or 5x5 filter.
5126
5127 The filter accepts the following options:
5128
5129 @table @option
5130 @item 0m
5131 @item 1m
5132 @item 2m
5133 @item 3m
5134 Set matrix for each plane.
5135 Matrix is sequence of 9 or 25 signed integers.
5136
5137 @item 0rdiv
5138 @item 1rdiv
5139 @item 2rdiv
5140 @item 3rdiv
5141 Set multiplier for calculated value for each plane.
5142
5143 @item 0bias
5144 @item 1bias
5145 @item 2bias
5146 @item 3bias
5147 Set bias for each plane. This value is added to the result of the multiplication.
5148 Useful for making the overall image brighter or darker. Default is 0.0.
5149 @end table
5150
5151 @subsection Examples
5152
5153 @itemize
5154 @item
5155 Apply sharpen:
5156 @example
5157 convolution="0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0"
5158 @end example
5159
5160 @item
5161 Apply blur:
5162 @example
5163 convolution="1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1/9:1/9:1/9:1/9"
5164 @end example
5165
5166 @item
5167 Apply edge enhance:
5168 @example
5169 convolution="0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:5:1:1:1:0:128:128:128"
5170 @end example
5171
5172 @item
5173 Apply edge detect:
5174 @example
5175 convolution="0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:5:5:5:1:0:128:128:128"
5176 @end example
5177
5178 @item
5179 Apply emboss:
5180 @example
5181 convolution="-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2"
5182 @end example
5183 @end itemize
5184
5185 @section copy
5186
5187 Copy the input source unchanged to the output. This is mainly useful for
5188 testing purposes.
5189
5190 @anchor{coreimage}
5191 @section coreimage
5192 Video filtering on GPU using Apple's CoreImage API on OSX.
5193
5194 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5195 processed by video hardware. However, software-based OpenGL implementations
5196 exist which means there is no guarantee for hardware processing. It depends on
5197 the respective OSX.
5198
5199 There are many filters and image generators provided by Apple that come with a
5200 large variety of options. The filter has to be referenced by its name along
5201 with its options.
5202
5203 The coreimage filter accepts the following options:
5204 @table @option
5205 @item list_filters
5206 List all available filters and generators along with all their respective
5207 options as well as possible minimum and maximum values along with the default
5208 values.
5209 @example
5210 list_filters=true
5211 @end example
5212
5213 @item filter
5214 Specify all filters by their respective name and options.
5215 Use @var{list_filters} to determine all valid filter names and options.
5216 Numerical options are specified by a float value and are automatically clamped
5217 to their respective value range.  Vector and color options have to be specified
5218 by a list of space separated float values. Character escaping has to be done.
5219 A special option name @code{default} is available to use default options for a
5220 filter.
5221
5222 It is required to specify either @code{default} or at least one of the filter options.
5223 All omitted options are used with their default values.
5224 The syntax of the filter string is as follows:
5225 @example
5226 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5227 @end example
5228
5229 @item output_rect
5230 Specify a rectangle where the output of the filter chain is copied into the
5231 input image. It is given by a list of space separated float values:
5232 @example
5233 output_rect=x\ y\ width\ height
5234 @end example
5235 If not given, the output rectangle equals the dimensions of the input image.
5236 The output rectangle is automatically cropped at the borders of the input
5237 image. Negative values are valid for each component.
5238 @example
5239 output_rect=25\ 25\ 100\ 100
5240 @end example
5241 @end table
5242
5243 Several filters can be chained for successive processing without GPU-HOST
5244 transfers allowing for fast processing of complex filter chains.
5245 Currently, only filters with zero (generators) or exactly one (filters) input
5246 image and one output image are supported. Also, transition filters are not yet
5247 usable as intended.
5248
5249 Some filters generate output images with additional padding depending on the
5250 respective filter kernel. The padding is automatically removed to ensure the
5251 filter output has the same size as the input image.
5252
5253 For image generators, the size of the output image is determined by the
5254 previous output image of the filter chain or the input image of the whole
5255 filterchain, respectively. The generators do not use the pixel information of
5256 this image to generate their output. However, the generated output is
5257 blended onto this image, resulting in partial or complete coverage of the
5258 output image.
5259
5260 The @ref{coreimagesrc} video source can be used for generating input images
5261 which are directly fed into the filter chain. By using it, providing input
5262 images by another video source or an input video is not required.
5263
5264 @subsection Examples
5265
5266 @itemize
5267
5268 @item
5269 List all filters available:
5270 @example
5271 coreimage=list_filters=true
5272 @end example
5273
5274 @item
5275 Use the CIBoxBlur filter with default options to blur an image:
5276 @example
5277 coreimage=filter=CIBoxBlur@@default
5278 @end example
5279
5280 @item
5281 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5282 its center at 100x100 and a radius of 50 pixels:
5283 @example
5284 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5285 @end example
5286
5287 @item
5288 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5289 given as complete and escaped command-line for Apple's standard bash shell:
5290 @example
5291 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5292 @end example
5293 @end itemize
5294
5295 @section crop
5296
5297 Crop the input video to given dimensions.
5298
5299 It accepts the following parameters:
5300
5301 @table @option
5302 @item w, out_w
5303 The width of the output video. It defaults to @code{iw}.
5304 This expression is evaluated only once during the filter
5305 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5306
5307 @item h, out_h
5308 The height of the output video. It defaults to @code{ih}.
5309 This expression is evaluated only once during the filter
5310 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5311
5312 @item x
5313 The horizontal position, in the input video, of the left edge of the output
5314 video. It defaults to @code{(in_w-out_w)/2}.
5315 This expression is evaluated per-frame.
5316
5317 @item y
5318 The vertical position, in the input video, of the top edge of the output video.
5319 It defaults to @code{(in_h-out_h)/2}.
5320 This expression is evaluated per-frame.
5321
5322 @item keep_aspect
5323 If set to 1 will force the output display aspect ratio
5324 to be the same of the input, by changing the output sample aspect
5325 ratio. It defaults to 0.
5326 @end table
5327
5328 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5329 expressions containing the following constants:
5330
5331 @table @option
5332 @item x
5333 @item y
5334 The computed values for @var{x} and @var{y}. They are evaluated for
5335 each new frame.
5336
5337 @item in_w
5338 @item in_h
5339 The input width and height.
5340
5341 @item iw
5342 @item ih
5343 These are the same as @var{in_w} and @var{in_h}.
5344
5345 @item out_w
5346 @item out_h
5347 The output (cropped) width and height.
5348
5349 @item ow
5350 @item oh
5351 These are the same as @var{out_w} and @var{out_h}.
5352
5353 @item a
5354 same as @var{iw} / @var{ih}
5355
5356 @item sar
5357 input sample aspect ratio
5358
5359 @item dar
5360 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5361
5362 @item hsub
5363 @item vsub
5364 horizontal and vertical chroma subsample values. For example for the
5365 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5366
5367 @item n
5368 The number of the input frame, starting from 0.
5369
5370 @item pos
5371 the position in the file of the input frame, NAN if unknown
5372
5373 @item t
5374 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5375
5376 @end table
5377
5378 The expression for @var{out_w} may depend on the value of @var{out_h},
5379 and the expression for @var{out_h} may depend on @var{out_w}, but they
5380 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5381 evaluated after @var{out_w} and @var{out_h}.
5382
5383 The @var{x} and @var{y} parameters specify the expressions for the
5384 position of the top-left corner of the output (non-cropped) area. They
5385 are evaluated for each frame. If the evaluated value is not valid, it
5386 is approximated to the nearest valid value.
5387
5388 The expression for @var{x} may depend on @var{y}, and the expression
5389 for @var{y} may depend on @var{x}.
5390
5391 @subsection Examples
5392
5393 @itemize
5394 @item
5395 Crop area with size 100x100 at position (12,34).
5396 @example
5397 crop=100:100:12:34
5398 @end example
5399
5400 Using named options, the example above becomes:
5401 @example
5402 crop=w=100:h=100:x=12:y=34
5403 @end example
5404
5405 @item
5406 Crop the central input area with size 100x100:
5407 @example
5408 crop=100:100
5409 @end example
5410
5411 @item
5412 Crop the central input area with size 2/3 of the input video:
5413 @example
5414 crop=2/3*in_w:2/3*in_h
5415 @end example
5416
5417 @item
5418 Crop the input video central square:
5419 @example
5420 crop=out_w=in_h
5421 crop=in_h
5422 @end example
5423
5424 @item
5425 Delimit the rectangle with the top-left corner placed at position
5426 100:100 and the right-bottom corner corresponding to the right-bottom
5427 corner of the input image.
5428 @example
5429 crop=in_w-100:in_h-100:100:100
5430 @end example
5431
5432 @item
5433 Crop 10 pixels from the left and right borders, and 20 pixels from
5434 the top and bottom borders
5435 @example
5436 crop=in_w-2*10:in_h-2*20
5437 @end example
5438
5439 @item
5440 Keep only the bottom right quarter of the input image:
5441 @example
5442 crop=in_w/2:in_h/2:in_w/2:in_h/2
5443 @end example
5444
5445 @item
5446 Crop height for getting Greek harmony:
5447 @example
5448 crop=in_w:1/PHI*in_w
5449 @end example
5450
5451 @item
5452 Apply trembling effect:
5453 @example
5454 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(n/7)
5455 @end example
5456
5457 @item
5458 Apply erratic camera effect depending on timestamp:
5459 @example
5460 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)"
5461 @end example
5462
5463 @item
5464 Set x depending on the value of y:
5465 @example
5466 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5467 @end example
5468 @end itemize
5469
5470 @subsection Commands
5471
5472 This filter supports the following commands:
5473 @table @option
5474 @item w, out_w
5475 @item h, out_h
5476 @item x
5477 @item y
5478 Set width/height of the output video and the horizontal/vertical position
5479 in the input video.
5480 The command accepts the same syntax of the corresponding option.
5481
5482 If the specified expression is not valid, it is kept at its current
5483 value.
5484 @end table
5485
5486 @section cropdetect
5487
5488 Auto-detect the crop size.
5489
5490 It calculates the necessary cropping parameters and prints the
5491 recommended parameters via the logging system. The detected dimensions
5492 correspond to the non-black area of the input video.
5493
5494 It accepts the following parameters:
5495
5496 @table @option
5497
5498 @item limit
5499 Set higher black value threshold, which can be optionally specified
5500 from nothing (0) to everything (255 for 8bit based formats). An intensity
5501 value greater to the set value is considered non-black. It defaults to 24.
5502 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5503 on the bitdepth of the pixel format.
5504
5505 @item round
5506 The value which the width/height should be divisible by. It defaults to
5507 16. The offset is automatically adjusted to center the video. Use 2 to
5508 get only even dimensions (needed for 4:2:2 video). 16 is best when
5509 encoding to most video codecs.
5510
5511 @item reset_count, reset
5512 Set the counter that determines after how many frames cropdetect will
5513 reset the previously detected largest video area and start over to
5514 detect the current optimal crop area. Default value is 0.
5515
5516 This can be useful when channel logos distort the video area. 0
5517 indicates 'never reset', and returns the largest area encountered during
5518 playback.
5519 @end table
5520
5521 @anchor{curves}
5522 @section curves
5523
5524 Apply color adjustments using curves.
5525
5526 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5527 component (red, green and blue) has its values defined by @var{N} key points
5528 tied from each other using a smooth curve. The x-axis represents the pixel
5529 values from the input frame, and the y-axis the new pixel values to be set for
5530 the output frame.
5531
5532 By default, a component curve is defined by the two points @var{(0;0)} and
5533 @var{(1;1)}. This creates a straight line where each original pixel value is
5534 "adjusted" to its own value, which means no change to the image.
5535
5536 The filter allows you to redefine these two points and add some more. A new
5537 curve (using a natural cubic spline interpolation) will be define to pass
5538 smoothly through all these new coordinates. The new defined points needs to be
5539 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5540 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5541 the vector spaces, the values will be clipped accordingly.
5542
5543 If there is no key point defined in @code{x=0}, the filter will automatically
5544 insert a @var{(0;0)} point. In the same way, if there is no key point defined
5545 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
5546
5547 The filter accepts the following options:
5548
5549 @table @option
5550 @item preset
5551 Select one of the available color presets. This option can be used in addition
5552 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5553 options takes priority on the preset values.
5554 Available presets are:
5555 @table @samp
5556 @item none
5557 @item color_negative
5558 @item cross_process
5559 @item darker
5560 @item increase_contrast
5561 @item lighter
5562 @item linear_contrast
5563 @item medium_contrast
5564 @item negative
5565 @item strong_contrast
5566 @item vintage
5567 @end table
5568 Default is @code{none}.
5569 @item master, m
5570 Set the master key points. These points will define a second pass mapping. It
5571 is sometimes called a "luminance" or "value" mapping. It can be used with
5572 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5573 post-processing LUT.
5574 @item red, r
5575 Set the key points for the red component.
5576 @item green, g
5577 Set the key points for the green component.
5578 @item blue, b
5579 Set the key points for the blue component.
5580 @item all
5581 Set the key points for all components (not including master).
5582 Can be used in addition to the other key points component
5583 options. In this case, the unset component(s) will fallback on this
5584 @option{all} setting.
5585 @item psfile
5586 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5587 @end table
5588
5589 To avoid some filtergraph syntax conflicts, each key points list need to be
5590 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5591
5592 @subsection Examples
5593
5594 @itemize
5595 @item
5596 Increase slightly the middle level of blue:
5597 @example
5598 curves=blue='0.5/0.58'
5599 @end example
5600
5601 @item
5602 Vintage effect:
5603 @example
5604 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
5605 @end example
5606 Here we obtain the following coordinates for each components:
5607 @table @var
5608 @item red
5609 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5610 @item green
5611 @code{(0;0) (0.50;0.48) (1;1)}
5612 @item blue
5613 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5614 @end table
5615
5616 @item
5617 The previous example can also be achieved with the associated built-in preset:
5618 @example
5619 curves=preset=vintage
5620 @end example
5621
5622 @item
5623 Or simply:
5624 @example
5625 curves=vintage
5626 @end example
5627
5628 @item
5629 Use a Photoshop preset and redefine the points of the green component:
5630 @example
5631 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
5632 @end example
5633 @end itemize
5634
5635 @section datascope
5636
5637 Video data analysis filter.
5638
5639 This filter shows hexadecimal pixel values of part of video.
5640
5641 The filter accepts the following options:
5642
5643 @table @option
5644 @item size, s
5645 Set output video size.
5646
5647 @item x
5648 Set x offset from where to pick pixels.
5649
5650 @item y
5651 Set y offset from where to pick pixels.
5652
5653 @item mode
5654 Set scope mode, can be one of the following:
5655 @table @samp
5656 @item mono
5657 Draw hexadecimal pixel values with white color on black background.
5658
5659 @item color
5660 Draw hexadecimal pixel values with input video pixel color on black
5661 background.
5662
5663 @item color2
5664 Draw hexadecimal pixel values on color background picked from input video,
5665 the text color is picked in such way so its always visible.
5666 @end table
5667
5668 @item axis
5669 Draw rows and columns numbers on left and top of video.
5670 @end table
5671
5672 @section dctdnoiz
5673
5674 Denoise frames using 2D DCT (frequency domain filtering).
5675
5676 This filter is not designed for real time.
5677
5678 The filter accepts the following options:
5679
5680 @table @option
5681 @item sigma, s
5682 Set the noise sigma constant.
5683
5684 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5685 coefficient (absolute value) below this threshold with be dropped.
5686
5687 If you need a more advanced filtering, see @option{expr}.
5688
5689 Default is @code{0}.
5690
5691 @item overlap
5692 Set number overlapping pixels for each block. Since the filter can be slow, you
5693 may want to reduce this value, at the cost of a less effective filter and the
5694 risk of various artefacts.
5695
5696 If the overlapping value doesn't permit processing the whole input width or
5697 height, a warning will be displayed and according borders won't be denoised.
5698
5699 Default value is @var{blocksize}-1, which is the best possible setting.
5700
5701 @item expr, e
5702 Set the coefficient factor expression.
5703
5704 For each coefficient of a DCT block, this expression will be evaluated as a
5705 multiplier value for the coefficient.
5706
5707 If this is option is set, the @option{sigma} option will be ignored.
5708
5709 The absolute value of the coefficient can be accessed through the @var{c}
5710 variable.
5711
5712 @item n
5713 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5714 @var{blocksize}, which is the width and height of the processed blocks.
5715
5716 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5717 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5718 on the speed processing. Also, a larger block size does not necessarily means a
5719 better de-noising.
5720 @end table
5721
5722 @subsection Examples
5723
5724 Apply a denoise with a @option{sigma} of @code{4.5}:
5725 @example
5726 dctdnoiz=4.5
5727 @end example
5728
5729 The same operation can be achieved using the expression system:
5730 @example
5731 dctdnoiz=e='gte(c, 4.5*3)'
5732 @end example
5733
5734 Violent denoise using a block size of @code{16x16}:
5735 @example
5736 dctdnoiz=15:n=4
5737 @end example
5738
5739 @section deband
5740
5741 Remove banding artifacts from input video.
5742 It works by replacing banded pixels with average value of referenced pixels.
5743
5744 The filter accepts the following options:
5745
5746 @table @option
5747 @item 1thr
5748 @item 2thr
5749 @item 3thr
5750 @item 4thr
5751 Set banding detection threshold for each plane. Default is 0.02.
5752 Valid range is 0.00003 to 0.5.
5753 If difference between current pixel and reference pixel is less than threshold,
5754 it will be considered as banded.
5755
5756 @item range, r
5757 Banding detection range in pixels. Default is 16. If positive, random number
5758 in range 0 to set value will be used. If negative, exact absolute value
5759 will be used.
5760 The range defines square of four pixels around current pixel.
5761
5762 @item direction, d
5763 Set direction in radians from which four pixel will be compared. If positive,
5764 random direction from 0 to set direction will be picked. If negative, exact of
5765 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5766 will pick only pixels on same row and -PI/2 will pick only pixels on same
5767 column.
5768
5769 @item blur
5770 If enabled, current pixel is compared with average value of all four
5771 surrounding pixels. The default is enabled. If disabled current pixel is
5772 compared with all four surrounding pixels. The pixel is considered banded
5773 if only all four differences with surrounding pixels are less than threshold.
5774 @end table
5775
5776 @anchor{decimate}
5777 @section decimate
5778
5779 Drop duplicated frames at regular intervals.
5780
5781 The filter accepts the following options:
5782
5783 @table @option
5784 @item cycle
5785 Set the number of frames from which one will be dropped. Setting this to
5786 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5787 Default is @code{5}.
5788
5789 @item dupthresh
5790 Set the threshold for duplicate detection. If the difference metric for a frame
5791 is less than or equal to this value, then it is declared as duplicate. Default
5792 is @code{1.1}
5793
5794 @item scthresh
5795 Set scene change threshold. Default is @code{15}.
5796
5797 @item blockx
5798 @item blocky
5799 Set the size of the x and y-axis blocks used during metric calculations.
5800 Larger blocks give better noise suppression, but also give worse detection of
5801 small movements. Must be a power of two. Default is @code{32}.
5802
5803 @item ppsrc
5804 Mark main input as a pre-processed input and activate clean source input
5805 stream. This allows the input to be pre-processed with various filters to help
5806 the metrics calculation while keeping the frame selection lossless. When set to
5807 @code{1}, the first stream is for the pre-processed input, and the second
5808 stream is the clean source from where the kept frames are chosen. Default is
5809 @code{0}.
5810
5811 @item chroma
5812 Set whether or not chroma is considered in the metric calculations. Default is
5813 @code{1}.
5814 @end table
5815
5816 @section deflate
5817
5818 Apply deflate effect to the video.
5819
5820 This filter replaces the pixel by the local(3x3) average by taking into account
5821 only values lower than the pixel.
5822
5823 It accepts the following options:
5824
5825 @table @option
5826 @item threshold0
5827 @item threshold1
5828 @item threshold2
5829 @item threshold3
5830 Limit the maximum change for each plane, default is 65535.
5831 If 0, plane will remain unchanged.
5832 @end table
5833
5834 @section dejudder
5835
5836 Remove judder produced by partially interlaced telecined content.
5837
5838 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5839 source was partially telecined content then the output of @code{pullup,dejudder}
5840 will have a variable frame rate. May change the recorded frame rate of the
5841 container. Aside from that change, this filter will not affect constant frame
5842 rate video.
5843
5844 The option available in this filter is:
5845 @table @option
5846
5847 @item cycle
5848 Specify the length of the window over which the judder repeats.
5849
5850 Accepts any integer greater than 1. Useful values are:
5851 @table @samp
5852
5853 @item 4
5854 If the original was telecined from 24 to 30 fps (Film to NTSC).
5855
5856 @item 5
5857 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5858
5859 @item 20
5860 If a mixture of the two.
5861 @end table
5862
5863 The default is @samp{4}.
5864 @end table
5865
5866 @section delogo
5867
5868 Suppress a TV station logo by a simple interpolation of the surrounding
5869 pixels. Just set a rectangle covering the logo and watch it disappear
5870 (and sometimes something even uglier appear - your mileage may vary).
5871
5872 It accepts the following parameters:
5873 @table @option
5874
5875 @item x
5876 @item y
5877 Specify the top left corner coordinates of the logo. They must be
5878 specified.
5879
5880 @item w
5881 @item h
5882 Specify the width and height of the logo to clear. They must be
5883 specified.
5884
5885 @item band, t
5886 Specify the thickness of the fuzzy edge of the rectangle (added to
5887 @var{w} and @var{h}). The default value is 1. This option is
5888 deprecated, setting higher values should no longer be necessary and
5889 is not recommended.
5890
5891 @item show
5892 When set to 1, a green rectangle is drawn on the screen to simplify
5893 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
5894 The default value is 0.
5895
5896 The rectangle is drawn on the outermost pixels which will be (partly)
5897 replaced with interpolated values. The values of the next pixels
5898 immediately outside this rectangle in each direction will be used to
5899 compute the interpolated pixel values inside the rectangle.
5900
5901 @end table
5902
5903 @subsection Examples
5904
5905 @itemize
5906 @item
5907 Set a rectangle covering the area with top left corner coordinates 0,0
5908 and size 100x77, and a band of size 10:
5909 @example
5910 delogo=x=0:y=0:w=100:h=77:band=10
5911 @end example
5912
5913 @end itemize
5914
5915 @section deshake
5916
5917 Attempt to fix small changes in horizontal and/or vertical shift. This
5918 filter helps remove camera shake from hand-holding a camera, bumping a
5919 tripod, moving on a vehicle, etc.
5920
5921 The filter accepts the following options:
5922
5923 @table @option
5924
5925 @item x
5926 @item y
5927 @item w
5928 @item h
5929 Specify a rectangular area where to limit the search for motion
5930 vectors.
5931 If desired the search for motion vectors can be limited to a
5932 rectangular area of the frame defined by its top left corner, width
5933 and height. These parameters have the same meaning as the drawbox
5934 filter which can be used to visualise the position of the bounding
5935 box.
5936
5937 This is useful when simultaneous movement of subjects within the frame
5938 might be confused for camera motion by the motion vector search.
5939
5940 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
5941 then the full frame is used. This allows later options to be set
5942 without specifying the bounding box for the motion vector search.
5943
5944 Default - search the whole frame.
5945
5946 @item rx
5947 @item ry
5948 Specify the maximum extent of movement in x and y directions in the
5949 range 0-64 pixels. Default 16.
5950
5951 @item edge
5952 Specify how to generate pixels to fill blanks at the edge of the
5953 frame. Available values are:
5954 @table @samp
5955 @item blank, 0
5956 Fill zeroes at blank locations
5957 @item original, 1
5958 Original image at blank locations
5959 @item clamp, 2
5960 Extruded edge value at blank locations
5961 @item mirror, 3
5962 Mirrored edge at blank locations
5963 @end table
5964 Default value is @samp{mirror}.
5965
5966 @item blocksize
5967 Specify the blocksize to use for motion search. Range 4-128 pixels,
5968 default 8.
5969
5970 @item contrast
5971 Specify the contrast threshold for blocks. Only blocks with more than
5972 the specified contrast (difference between darkest and lightest
5973 pixels) will be considered. Range 1-255, default 125.
5974
5975 @item search
5976 Specify the search strategy. Available values are:
5977 @table @samp
5978 @item exhaustive, 0
5979 Set exhaustive search
5980 @item less, 1
5981 Set less exhaustive search.
5982 @end table
5983 Default value is @samp{exhaustive}.
5984
5985 @item filename
5986 If set then a detailed log of the motion search is written to the
5987 specified file.
5988
5989 @item opencl
5990 If set to 1, specify using OpenCL capabilities, only available if
5991 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
5992
5993 @end table
5994
5995 @section detelecine
5996
5997 Apply an exact inverse of the telecine operation. It requires a predefined
5998 pattern specified using the pattern option which must be the same as that passed
5999 to the telecine filter.
6000
6001 This filter accepts the following options:
6002
6003 @table @option
6004 @item first_field
6005 @table @samp
6006 @item top, t
6007 top field first
6008 @item bottom, b
6009 bottom field first
6010 The default value is @code{top}.
6011 @end table
6012
6013 @item pattern
6014 A string of numbers representing the pulldown pattern you wish to apply.
6015 The default value is @code{23}.
6016
6017 @item start_frame
6018 A number representing position of the first frame with respect to the telecine
6019 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6020 @end table
6021
6022 @section dilation
6023
6024 Apply dilation effect to the video.
6025
6026 This filter replaces the pixel by the local(3x3) maximum.
6027
6028 It accepts the following options:
6029
6030 @table @option
6031 @item threshold0
6032 @item threshold1
6033 @item threshold2
6034 @item threshold3
6035 Limit the maximum change for each plane, default is 65535.
6036 If 0, plane will remain unchanged.
6037
6038 @item coordinates
6039 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6040 pixels are used.
6041
6042 Flags to local 3x3 coordinates maps like this:
6043
6044     1 2 3
6045     4   5
6046     6 7 8
6047 @end table
6048
6049 @section displace
6050
6051 Displace pixels as indicated by second and third input stream.
6052
6053 It takes three input streams and outputs one stream, the first input is the
6054 source, and second and third input are displacement maps.
6055
6056 The second input specifies how much to displace pixels along the
6057 x-axis, while the third input specifies how much to displace pixels
6058 along the y-axis.
6059 If one of displacement map streams terminates, last frame from that
6060 displacement map will be used.
6061
6062 Note that once generated, displacements maps can be reused over and over again.
6063
6064 A description of the accepted options follows.
6065
6066 @table @option
6067 @item edge
6068 Set displace behavior for pixels that are out of range.
6069
6070 Available values are:
6071 @table @samp
6072 @item blank
6073 Missing pixels are replaced by black pixels.
6074
6075 @item smear
6076 Adjacent pixels will spread out to replace missing pixels.
6077
6078 @item wrap
6079 Out of range pixels are wrapped so they point to pixels of other side.
6080 @end table
6081 Default is @samp{smear}.
6082
6083 @end table
6084
6085 @subsection Examples
6086
6087 @itemize
6088 @item
6089 Add ripple effect to rgb input of video size hd720:
6090 @example
6091 ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
6092 @end example
6093
6094 @item
6095 Add wave effect to rgb input of video size hd720:
6096 @example
6097 ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
6098 @end example
6099 @end itemize
6100
6101 @section drawbox
6102
6103 Draw a colored box on the input image.
6104
6105 It accepts the following parameters:
6106
6107 @table @option
6108 @item x
6109 @item y
6110 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6111
6112 @item width, w
6113 @item height, h
6114 The expressions which specify the width and height of the box; if 0 they are interpreted as
6115 the input width and height. It defaults to 0.
6116
6117 @item color, c
6118 Specify the color of the box to write. For the general syntax of this option,
6119 check the "Color" section in the ffmpeg-utils manual. If the special
6120 value @code{invert} is used, the box edge color is the same as the
6121 video with inverted luma.
6122
6123 @item thickness, t
6124 The expression which sets the thickness of the box edge. Default value is @code{3}.
6125
6126 See below for the list of accepted constants.
6127 @end table
6128
6129 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6130 following constants:
6131
6132 @table @option
6133 @item dar
6134 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6135
6136 @item hsub
6137 @item vsub
6138 horizontal and vertical chroma subsample values. For example for the
6139 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6140
6141 @item in_h, ih
6142 @item in_w, iw
6143 The input width and height.
6144
6145 @item sar
6146 The input sample aspect ratio.
6147
6148 @item x
6149 @item y
6150 The x and y offset coordinates where the box is drawn.
6151
6152 @item w
6153 @item h
6154 The width and height of the drawn box.
6155
6156 @item t
6157 The thickness of the drawn box.
6158
6159 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6160 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6161
6162 @end table
6163
6164 @subsection Examples
6165
6166 @itemize
6167 @item
6168 Draw a black box around the edge of the input image:
6169 @example
6170 drawbox
6171 @end example
6172
6173 @item
6174 Draw a box with color red and an opacity of 50%:
6175 @example
6176 drawbox=10:20:200:60:red@@0.5
6177 @end example
6178
6179 The previous example can be specified as:
6180 @example
6181 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6182 @end example
6183
6184 @item
6185 Fill the box with pink color:
6186 @example
6187 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6188 @end example
6189
6190 @item
6191 Draw a 2-pixel red 2.40:1 mask:
6192 @example
6193 drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
6194 @end example
6195 @end itemize
6196
6197 @section drawgraph, adrawgraph
6198
6199 Draw a graph using input video or audio metadata.
6200
6201 It accepts the following parameters:
6202
6203 @table @option
6204 @item m1
6205 Set 1st frame metadata key from which metadata values will be used to draw a graph.
6206
6207 @item fg1
6208 Set 1st foreground color expression.
6209
6210 @item m2
6211 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
6212
6213 @item fg2
6214 Set 2nd foreground color expression.
6215
6216 @item m3
6217 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
6218
6219 @item fg3
6220 Set 3rd foreground color expression.
6221
6222 @item m4
6223 Set 4th frame metadata key from which metadata values will be used to draw a graph.
6224
6225 @item fg4
6226 Set 4th foreground color expression.
6227
6228 @item min
6229 Set minimal value of metadata value.
6230
6231 @item max
6232 Set maximal value of metadata value.
6233
6234 @item bg
6235 Set graph background color. Default is white.
6236
6237 @item mode
6238 Set graph mode.
6239
6240 Available values for mode is:
6241 @table @samp
6242 @item bar
6243 @item dot
6244 @item line
6245 @end table
6246
6247 Default is @code{line}.
6248
6249 @item slide
6250 Set slide mode.
6251
6252 Available values for slide is:
6253 @table @samp
6254 @item frame
6255 Draw new frame when right border is reached.
6256
6257 @item replace
6258 Replace old columns with new ones.
6259
6260 @item scroll
6261 Scroll from right to left.
6262
6263 @item rscroll
6264 Scroll from left to right.
6265 @end table
6266
6267 Default is @code{frame}.
6268
6269 @item size
6270 Set size of graph video. For the syntax of this option, check the
6271 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
6272 The default value is @code{900x256}.
6273
6274 The foreground color expressions can use the following variables:
6275 @table @option
6276 @item MIN
6277 Minimal value of metadata value.
6278
6279 @item MAX
6280 Maximal value of metadata value.
6281
6282 @item VAL
6283 Current metadata key value.
6284 @end table
6285
6286 The color is defined as 0xAABBGGRR.
6287 @end table
6288
6289 Example using metadata from @ref{signalstats} filter:
6290 @example
6291 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
6292 @end example
6293
6294 Example using metadata from @ref{ebur128} filter:
6295 @example
6296 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
6297 @end example
6298
6299 @section drawgrid
6300
6301 Draw a grid on the input image.
6302
6303 It accepts the following parameters:
6304
6305 @table @option
6306 @item x
6307 @item y
6308 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6309
6310 @item width, w
6311 @item height, h
6312 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6313 input width and height, respectively, minus @code{thickness}, so image gets
6314 framed. Default to 0.
6315
6316 @item color, c
6317 Specify the color of the grid. For the general syntax of this option,
6318 check the "Color" section in the ffmpeg-utils manual. If the special
6319 value @code{invert} is used, the grid color is the same as the
6320 video with inverted luma.
6321
6322 @item thickness, t
6323 The expression which sets the thickness of the grid line. Default value is @code{1}.
6324
6325 See below for the list of accepted constants.
6326 @end table
6327
6328 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6329 following constants:
6330
6331 @table @option
6332 @item dar
6333 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6334
6335 @item hsub
6336 @item vsub
6337 horizontal and vertical chroma subsample values. For example for the
6338 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6339
6340 @item in_h, ih
6341 @item in_w, iw
6342 The input grid cell width and height.
6343
6344 @item sar
6345 The input sample aspect ratio.
6346
6347 @item x
6348 @item y
6349 The x and y coordinates of some point of grid intersection (meant to configure offset).
6350
6351 @item w
6352 @item h
6353 The width and height of the drawn cell.
6354
6355 @item t
6356 The thickness of the drawn cell.
6357
6358 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6359 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6360
6361 @end table
6362
6363 @subsection Examples
6364
6365 @itemize
6366 @item
6367 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6368 @example
6369 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6370 @end example
6371
6372 @item
6373 Draw a white 3x3 grid with an opacity of 50%:
6374 @example
6375 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6376 @end example
6377 @end itemize
6378
6379 @anchor{drawtext}
6380 @section drawtext
6381
6382 Draw a text string or text from a specified file on top of a video, using the
6383 libfreetype library.
6384
6385 To enable compilation of this filter, you need to configure FFmpeg with
6386 @code{--enable-libfreetype}.
6387 To enable default font fallback and the @var{font} option you need to
6388 configure FFmpeg with @code{--enable-libfontconfig}.
6389 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6390 @code{--enable-libfribidi}.
6391
6392 @subsection Syntax
6393
6394 It accepts the following parameters:
6395
6396 @table @option
6397
6398 @item box
6399 Used to draw a box around text using the background color.
6400 The value must be either 1 (enable) or 0 (disable).
6401 The default value of @var{box} is 0.
6402
6403 @item boxborderw
6404 Set the width of the border to be drawn around the box using @var{boxcolor}.
6405 The default value of @var{boxborderw} is 0.
6406
6407 @item boxcolor
6408 The color to be used for drawing box around text. For the syntax of this
6409 option, check the "Color" section in the ffmpeg-utils manual.
6410
6411 The default value of @var{boxcolor} is "white".
6412
6413 @item borderw
6414 Set the width of the border to be drawn around the text using @var{bordercolor}.
6415 The default value of @var{borderw} is 0.
6416
6417 @item bordercolor
6418 Set the color to be used for drawing border around text. For the syntax of this
6419 option, check the "Color" section in the ffmpeg-utils manual.
6420
6421 The default value of @var{bordercolor} is "black".
6422
6423 @item expansion
6424 Select how the @var{text} is expanded. Can be either @code{none},
6425 @code{strftime} (deprecated) or
6426 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6427 below for details.
6428
6429 @item fix_bounds
6430 If true, check and fix text coords to avoid clipping.
6431
6432 @item fontcolor
6433 The color to be used for drawing fonts. For the syntax of this option, check
6434 the "Color" section in the ffmpeg-utils manual.
6435
6436 The default value of @var{fontcolor} is "black".
6437
6438 @item fontcolor_expr
6439 String which is expanded the same way as @var{text} to obtain dynamic
6440 @var{fontcolor} value. By default this option has empty value and is not
6441 processed. When this option is set, it overrides @var{fontcolor} option.
6442
6443 @item font
6444 The font family to be used for drawing text. By default Sans.
6445
6446 @item fontfile
6447 The font file to be used for drawing text. The path must be included.
6448 This parameter is mandatory if the fontconfig support is disabled.
6449
6450 @item draw
6451 This option does not exist, please see the timeline system
6452
6453 @item alpha
6454 Draw the text applying alpha blending. The value can
6455 be either a number between 0.0 and 1.0
6456 The expression accepts the same variables @var{x, y} do.
6457 The default value is 1.
6458 Please see fontcolor_expr
6459
6460 @item fontsize
6461 The font size to be used for drawing text.
6462 The default value of @var{fontsize} is 16.
6463
6464 @item text_shaping
6465 If set to 1, attempt to shape the text (for example, reverse the order of
6466 right-to-left text and join Arabic characters) before drawing it.
6467 Otherwise, just draw the text exactly as given.
6468 By default 1 (if supported).
6469
6470 @item ft_load_flags
6471 The flags to be used for loading the fonts.
6472
6473 The flags map the corresponding flags supported by libfreetype, and are
6474 a combination of the following values:
6475 @table @var
6476 @item default
6477 @item no_scale
6478 @item no_hinting
6479 @item render
6480 @item no_bitmap
6481 @item vertical_layout
6482 @item force_autohint
6483 @item crop_bitmap
6484 @item pedantic
6485 @item ignore_global_advance_width
6486 @item no_recurse
6487 @item ignore_transform
6488 @item monochrome
6489 @item linear_design
6490 @item no_autohint
6491 @end table
6492
6493 Default value is "default".
6494
6495 For more information consult the documentation for the FT_LOAD_*
6496 libfreetype flags.
6497
6498 @item shadowcolor
6499 The color to be used for drawing a shadow behind the drawn text. For the
6500 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6501
6502 The default value of @var{shadowcolor} is "black".
6503
6504 @item shadowx
6505 @item shadowy
6506 The x and y offsets for the text shadow position with respect to the
6507 position of the text. They can be either positive or negative
6508 values. The default value for both is "0".
6509
6510 @item start_number
6511 The starting frame number for the n/frame_num variable. The default value
6512 is "0".
6513
6514 @item tabsize
6515 The size in number of spaces to use for rendering the tab.
6516 Default value is 4.
6517
6518 @item timecode
6519 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6520 format. It can be used with or without text parameter. @var{timecode_rate}
6521 option must be specified.
6522
6523 @item timecode_rate, rate, r
6524 Set the timecode frame rate (timecode only).
6525
6526 @item text
6527 The text string to be drawn. The text must be a sequence of UTF-8
6528 encoded characters.
6529 This parameter is mandatory if no file is specified with the parameter
6530 @var{textfile}.
6531
6532 @item textfile
6533 A text file containing text to be drawn. The text must be a sequence
6534 of UTF-8 encoded characters.
6535
6536 This parameter is mandatory if no text string is specified with the
6537 parameter @var{text}.
6538
6539 If both @var{text} and @var{textfile} are specified, an error is thrown.
6540
6541 @item reload
6542 If set to 1, the @var{textfile} will be reloaded before each frame.
6543 Be sure to update it atomically, or it may be read partially, or even fail.
6544
6545 @item x
6546 @item y
6547 The expressions which specify the offsets where text will be drawn
6548 within the video frame. They are relative to the top/left border of the
6549 output image.
6550
6551 The default value of @var{x} and @var{y} is "0".
6552
6553 See below for the list of accepted constants and functions.
6554 @end table
6555
6556 The parameters for @var{x} and @var{y} are expressions containing the
6557 following constants and functions:
6558
6559 @table @option
6560 @item dar
6561 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6562
6563 @item hsub
6564 @item vsub
6565 horizontal and vertical chroma subsample values. For example for the
6566 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6567
6568 @item line_h, lh
6569 the height of each text line
6570
6571 @item main_h, h, H
6572 the input height
6573
6574 @item main_w, w, W
6575 the input width
6576
6577 @item max_glyph_a, ascent
6578 the maximum distance from the baseline to the highest/upper grid
6579 coordinate used to place a glyph outline point, for all the rendered
6580 glyphs.
6581 It is a positive value, due to the grid's orientation with the Y axis
6582 upwards.
6583
6584 @item max_glyph_d, descent
6585 the maximum distance from the baseline to the lowest grid coordinate
6586 used to place a glyph outline point, for all the rendered glyphs.
6587 This is a negative value, due to the grid's orientation, with the Y axis
6588 upwards.
6589
6590 @item max_glyph_h
6591 maximum glyph height, that is the maximum height for all the glyphs
6592 contained in the rendered text, it is equivalent to @var{ascent} -
6593 @var{descent}.
6594
6595 @item max_glyph_w
6596 maximum glyph width, that is the maximum width for all the glyphs
6597 contained in the rendered text
6598
6599 @item n
6600 the number of input frame, starting from 0
6601
6602 @item rand(min, max)
6603 return a random number included between @var{min} and @var{max}
6604
6605 @item sar
6606 The input sample aspect ratio.
6607
6608 @item t
6609 timestamp expressed in seconds, NAN if the input timestamp is unknown
6610
6611 @item text_h, th
6612 the height of the rendered text
6613
6614 @item text_w, tw
6615 the width of the rendered text
6616
6617 @item x
6618 @item y
6619 the x and y offset coordinates where the text is drawn.
6620
6621 These parameters allow the @var{x} and @var{y} expressions to refer
6622 each other, so you can for example specify @code{y=x/dar}.
6623 @end table
6624
6625 @anchor{drawtext_expansion}
6626 @subsection Text expansion
6627
6628 If @option{expansion} is set to @code{strftime},
6629 the filter recognizes strftime() sequences in the provided text and
6630 expands them accordingly. Check the documentation of strftime(). This
6631 feature is deprecated.
6632
6633 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6634
6635 If @option{expansion} is set to @code{normal} (which is the default),
6636 the following expansion mechanism is used.
6637
6638 The backslash character @samp{\}, followed by any character, always expands to
6639 the second character.
6640
6641 Sequence of the form @code{%@{...@}} are expanded. The text between the
6642 braces is a function name, possibly followed by arguments separated by ':'.
6643 If the arguments contain special characters or delimiters (':' or '@}'),
6644 they should be escaped.
6645
6646 Note that they probably must also be escaped as the value for the
6647 @option{text} option in the filter argument string and as the filter
6648 argument in the filtergraph description, and possibly also for the shell,
6649 that makes up to four levels of escaping; using a text file avoids these
6650 problems.
6651
6652 The following functions are available:
6653
6654 @table @command
6655
6656 @item expr, e
6657 The expression evaluation result.
6658
6659 It must take one argument specifying the expression to be evaluated,
6660 which accepts the same constants and functions as the @var{x} and
6661 @var{y} values. Note that not all constants should be used, for
6662 example the text size is not known when evaluating the expression, so
6663 the constants @var{text_w} and @var{text_h} will have an undefined
6664 value.
6665
6666 @item expr_int_format, eif
6667 Evaluate the expression's value and output as formatted integer.
6668
6669 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6670 The second argument specifies the output format. Allowed values are @samp{x},
6671 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6672 @code{printf} function.
6673 The third parameter is optional and sets the number of positions taken by the output.
6674 It can be used to add padding with zeros from the left.
6675
6676 @item gmtime
6677 The time at which the filter is running, expressed in UTC.
6678 It can accept an argument: a strftime() format string.
6679
6680 @item localtime
6681 The time at which the filter is running, expressed in the local time zone.
6682 It can accept an argument: a strftime() format string.
6683
6684 @item metadata
6685 Frame metadata. Takes one or two arguments.
6686
6687 The first argument is mandatory and specifies the metadata key.
6688
6689 The second argument is optional and specifies a default value, used when the
6690 metadata key is not found or empty.
6691
6692 @item n, frame_num
6693 The frame number, starting from 0.
6694
6695 @item pict_type
6696 A 1 character description of the current picture type.
6697
6698 @item pts
6699 The timestamp of the current frame.
6700 It can take up to three arguments.
6701
6702 The first argument is the format of the timestamp; it defaults to @code{flt}
6703 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6704 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6705 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6706 @code{localtime} stands for the timestamp of the frame formatted as
6707 local time zone time.
6708
6709 The second argument is an offset added to the timestamp.
6710
6711 If the format is set to @code{localtime} or @code{gmtime},
6712 a third argument may be supplied: a strftime() format string.
6713 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6714 @end table
6715
6716 @subsection Examples
6717
6718 @itemize
6719 @item
6720 Draw "Test Text" with font FreeSerif, using the default values for the
6721 optional parameters.
6722
6723 @example
6724 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6725 @end example
6726
6727 @item
6728 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6729 and y=50 (counting from the top-left corner of the screen), text is
6730 yellow with a red box around it. Both the text and the box have an
6731 opacity of 20%.
6732
6733 @example
6734 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6735           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6736 @end example
6737
6738 Note that the double quotes are not necessary if spaces are not used
6739 within the parameter list.
6740
6741 @item
6742 Show the text at the center of the video frame:
6743 @example
6744 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6745 @end example
6746
6747 @item
6748 Show the text at a random position, switching to a new position every 30 seconds:
6749 @example
6750 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(t\,30)\,0)\,rand(0\,(h-text_h))\,y)"
6751 @end example
6752
6753 @item
6754 Show a text line sliding from right to left in the last row of the video
6755 frame. The file @file{LONG_LINE} is assumed to contain a single line
6756 with no newlines.
6757 @example
6758 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6759 @end example
6760
6761 @item
6762 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6763 @example
6764 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6765 @end example
6766
6767 @item
6768 Draw a single green letter "g", at the center of the input video.
6769 The glyph baseline is placed at half screen height.
6770 @example
6771 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6772 @end example
6773
6774 @item
6775 Show text for 1 second every 3 seconds:
6776 @example
6777 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6778 @end example
6779
6780 @item
6781 Use fontconfig to set the font. Note that the colons need to be escaped.
6782 @example
6783 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6784 @end example
6785
6786 @item
6787 Print the date of a real-time encoding (see strftime(3)):
6788 @example
6789 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6790 @end example
6791
6792 @item
6793 Show text fading in and out (appearing/disappearing):
6794 @example
6795 #!/bin/sh
6796 DS=1.0 # display start
6797 DE=10.0 # display end
6798 FID=1.5 # fade in duration
6799 FOD=5 # fade out duration
6800 ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
6801 @end example
6802
6803 @end itemize
6804
6805 For more information about libfreetype, check:
6806 @url{http://www.freetype.org/}.
6807
6808 For more information about fontconfig, check:
6809 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6810
6811 For more information about libfribidi, check:
6812 @url{http://fribidi.org/}.
6813
6814 @section edgedetect
6815
6816 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6817
6818 The filter accepts the following options:
6819
6820 @table @option
6821 @item low
6822 @item high
6823 Set low and high threshold values used by the Canny thresholding
6824 algorithm.
6825
6826 The high threshold selects the "strong" edge pixels, which are then
6827 connected through 8-connectivity with the "weak" edge pixels selected
6828 by the low threshold.
6829
6830 @var{low} and @var{high} threshold values must be chosen in the range
6831 [0,1], and @var{low} should be lesser or equal to @var{high}.
6832
6833 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6834 is @code{50/255}.
6835
6836 @item mode
6837 Define the drawing mode.
6838
6839 @table @samp
6840 @item wires
6841 Draw white/gray wires on black background.
6842
6843 @item colormix
6844 Mix the colors to create a paint/cartoon effect.
6845 @end table
6846
6847 Default value is @var{wires}.
6848 @end table
6849
6850 @subsection Examples
6851
6852 @itemize
6853 @item
6854 Standard edge detection with custom values for the hysteresis thresholding:
6855 @example
6856 edgedetect=low=0.1:high=0.4
6857 @end example
6858
6859 @item
6860 Painting effect without thresholding:
6861 @example
6862 edgedetect=mode=colormix:high=0
6863 @end example
6864 @end itemize
6865
6866 @section eq
6867 Set brightness, contrast, saturation and approximate gamma adjustment.
6868
6869 The filter accepts the following options:
6870
6871 @table @option
6872 @item contrast
6873 Set the contrast expression. The value must be a float value in range
6874 @code{-2.0} to @code{2.0}. The default value is "1".
6875
6876 @item brightness
6877 Set the brightness expression. The value must be a float value in
6878 range @code{-1.0} to @code{1.0}. The default value is "0".
6879
6880 @item saturation
6881 Set the saturation expression. The value must be a float in
6882 range @code{0.0} to @code{3.0}. The default value is "1".
6883
6884 @item gamma
6885 Set the gamma expression. The value must be a float in range
6886 @code{0.1} to @code{10.0}.  The default value is "1".
6887
6888 @item gamma_r
6889 Set the gamma expression for red. The value must be a float in
6890 range @code{0.1} to @code{10.0}. The default value is "1".
6891
6892 @item gamma_g
6893 Set the gamma expression for green. The value must be a float in range
6894 @code{0.1} to @code{10.0}. The default value is "1".
6895
6896 @item gamma_b
6897 Set the gamma expression for blue. The value must be a float in range
6898 @code{0.1} to @code{10.0}. The default value is "1".
6899
6900 @item gamma_weight
6901 Set the gamma weight expression. It can be used to reduce the effect
6902 of a high gamma value on bright image areas, e.g. keep them from
6903 getting overamplified and just plain white. The value must be a float
6904 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
6905 gamma correction all the way down while @code{1.0} leaves it at its
6906 full strength. Default is "1".
6907
6908 @item eval
6909 Set when the expressions for brightness, contrast, saturation and
6910 gamma expressions are evaluated.
6911
6912 It accepts the following values:
6913 @table @samp
6914 @item init
6915 only evaluate expressions once during the filter initialization or
6916 when a command is processed
6917
6918 @item frame
6919 evaluate expressions for each incoming frame
6920 @end table
6921
6922 Default value is @samp{init}.
6923 @end table
6924
6925 The expressions accept the following parameters:
6926 @table @option
6927 @item n
6928 frame count of the input frame starting from 0
6929
6930 @item pos
6931 byte position of the corresponding packet in the input file, NAN if
6932 unspecified
6933
6934 @item r
6935 frame rate of the input video, NAN if the input frame rate is unknown
6936
6937 @item t
6938 timestamp expressed in seconds, NAN if the input timestamp is unknown
6939 @end table
6940
6941 @subsection Commands
6942 The filter supports the following commands:
6943
6944 @table @option
6945 @item contrast
6946 Set the contrast expression.
6947
6948 @item brightness
6949 Set the brightness expression.
6950
6951 @item saturation
6952 Set the saturation expression.
6953
6954 @item gamma
6955 Set the gamma expression.
6956
6957 @item gamma_r
6958 Set the gamma_r expression.
6959
6960 @item gamma_g
6961 Set gamma_g expression.
6962
6963 @item gamma_b
6964 Set gamma_b expression.
6965
6966 @item gamma_weight
6967 Set gamma_weight expression.
6968
6969 The command accepts the same syntax of the corresponding option.
6970
6971 If the specified expression is not valid, it is kept at its current
6972 value.
6973
6974 @end table
6975
6976 @section erosion
6977
6978 Apply erosion effect to the video.
6979
6980 This filter replaces the pixel by the local(3x3) minimum.
6981
6982 It accepts the following options:
6983
6984 @table @option
6985 @item threshold0
6986 @item threshold1
6987 @item threshold2
6988 @item threshold3
6989 Limit the maximum change for each plane, default is 65535.
6990 If 0, plane will remain unchanged.
6991
6992 @item coordinates
6993 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6994 pixels are used.
6995
6996 Flags to local 3x3 coordinates maps like this:
6997
6998     1 2 3
6999     4   5
7000     6 7 8
7001 @end table
7002
7003 @section extractplanes
7004
7005 Extract color channel components from input video stream into
7006 separate grayscale video streams.
7007
7008 The filter accepts the following option:
7009
7010 @table @option
7011 @item planes
7012 Set plane(s) to extract.
7013
7014 Available values for planes are:
7015 @table @samp
7016 @item y
7017 @item u
7018 @item v
7019 @item a
7020 @item r
7021 @item g
7022 @item b
7023 @end table
7024
7025 Choosing planes not available in the input will result in an error.
7026 That means you cannot select @code{r}, @code{g}, @code{b} planes
7027 with @code{y}, @code{u}, @code{v} planes at same time.
7028 @end table
7029
7030 @subsection Examples
7031
7032 @itemize
7033 @item
7034 Extract luma, u and v color channel component from input video frame
7035 into 3 grayscale outputs:
7036 @example
7037 ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi
7038 @end example
7039 @end itemize
7040
7041 @section elbg
7042
7043 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7044
7045 For each input image, the filter will compute the optimal mapping from
7046 the input to the output given the codebook length, that is the number
7047 of distinct output colors.
7048
7049 This filter accepts the following options.
7050
7051 @table @option
7052 @item codebook_length, l
7053 Set codebook length. The value must be a positive integer, and
7054 represents the number of distinct output colors. Default value is 256.
7055
7056 @item nb_steps, n
7057 Set the maximum number of iterations to apply for computing the optimal
7058 mapping. The higher the value the better the result and the higher the
7059 computation time. Default value is 1.
7060
7061 @item seed, s
7062 Set a random seed, must be an integer included between 0 and
7063 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7064 will try to use a good random seed on a best effort basis.
7065
7066 @item pal8
7067 Set pal8 output pixel format. This option does not work with codebook
7068 length greater than 256.
7069 @end table
7070
7071 @section fade
7072
7073 Apply a fade-in/out effect to the input video.
7074
7075 It accepts the following parameters:
7076
7077 @table @option
7078 @item type, t
7079 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7080 effect.
7081 Default is @code{in}.
7082
7083 @item start_frame, s
7084 Specify the number of the frame to start applying the fade
7085 effect at. Default is 0.
7086
7087 @item nb_frames, n
7088 The number of frames that the fade effect lasts. At the end of the
7089 fade-in effect, the output video will have the same intensity as the input video.
7090 At the end of the fade-out transition, the output video will be filled with the
7091 selected @option{color}.
7092 Default is 25.
7093
7094 @item alpha
7095 If set to 1, fade only alpha channel, if one exists on the input.
7096 Default value is 0.
7097
7098 @item start_time, st
7099 Specify the timestamp (in seconds) of the frame to start to apply the fade
7100 effect. If both start_frame and start_time are specified, the fade will start at
7101 whichever comes last.  Default is 0.
7102
7103 @item duration, d
7104 The number of seconds for which the fade effect has to last. At the end of the
7105 fade-in effect the output video will have the same intensity as the input video,
7106 at the end of the fade-out transition the output video will be filled with the
7107 selected @option{color}.
7108 If both duration and nb_frames are specified, duration is used. Default is 0
7109 (nb_frames is used by default).
7110
7111 @item color, c
7112 Specify the color of the fade. Default is "black".
7113 @end table
7114
7115 @subsection Examples
7116
7117 @itemize
7118 @item
7119 Fade in the first 30 frames of video:
7120 @example
7121 fade=in:0:30
7122 @end example
7123
7124 The command above is equivalent to:
7125 @example
7126 fade=t=in:s=0:n=30
7127 @end example
7128
7129 @item
7130 Fade out the last 45 frames of a 200-frame video:
7131 @example
7132 fade=out:155:45
7133 fade=type=out:start_frame=155:nb_frames=45
7134 @end example
7135
7136 @item
7137 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7138 @example
7139 fade=in:0:25, fade=out:975:25
7140 @end example
7141
7142 @item
7143 Make the first 5 frames yellow, then fade in from frame 5-24:
7144 @example
7145 fade=in:5:20:color=yellow
7146 @end example
7147
7148 @item
7149 Fade in alpha over first 25 frames of video:
7150 @example
7151 fade=in:0:25:alpha=1
7152 @end example
7153
7154 @item
7155 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7156 @example
7157 fade=t=in:st=5.5:d=0.5
7158 @end example
7159
7160 @end itemize
7161
7162 @section fftfilt
7163 Apply arbitrary expressions to samples in frequency domain
7164
7165 @table @option
7166 @item dc_Y
7167 Adjust the dc value (gain) of the luma plane of the image. The filter
7168 accepts an integer value in range @code{0} to @code{1000}. The default
7169 value is set to @code{0}.
7170
7171 @item dc_U
7172 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7173 filter accepts an integer value in range @code{0} to @code{1000}. The
7174 default value is set to @code{0}.
7175
7176 @item dc_V
7177 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7178 filter accepts an integer value in range @code{0} to @code{1000}. The
7179 default value is set to @code{0}.
7180
7181 @item weight_Y
7182 Set the frequency domain weight expression for the luma plane.
7183
7184 @item weight_U
7185 Set the frequency domain weight expression for the 1st chroma plane.
7186
7187 @item weight_V
7188 Set the frequency domain weight expression for the 2nd chroma plane.
7189
7190 The filter accepts the following variables:
7191 @item X
7192 @item Y
7193 The coordinates of the current sample.
7194
7195 @item W
7196 @item H
7197 The width and height of the image.
7198 @end table
7199
7200 @subsection Examples
7201
7202 @itemize
7203 @item
7204 High-pass:
7205 @example
7206 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7207 @end example
7208
7209 @item
7210 Low-pass:
7211 @example
7212 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7213 @end example
7214
7215 @item
7216 Sharpen:
7217 @example
7218 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7219 @end example
7220
7221 @item
7222 Blur:
7223 @example
7224 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7225 @end example
7226
7227 @end itemize
7228
7229 @section field
7230
7231 Extract a single field from an interlaced image using stride
7232 arithmetic to avoid wasting CPU time. The output frames are marked as
7233 non-interlaced.
7234
7235 The filter accepts the following options:
7236
7237 @table @option
7238 @item type
7239 Specify whether to extract the top (if the value is @code{0} or
7240 @code{top}) or the bottom field (if the value is @code{1} or
7241 @code{bottom}).
7242 @end table
7243
7244 @section fieldhint
7245
7246 Create new frames by copying the top and bottom fields from surrounding frames
7247 supplied as numbers by the hint file.
7248
7249 @table @option
7250 @item hint
7251 Set file containing hints: absolute/relative frame numbers.
7252
7253 There must be one line for each frame in a clip. Each line must contain two
7254 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7255 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7256 is current frame number for @code{absolute} mode or out of [-1, 1] range
7257 for @code{relative} mode. First number tells from which frame to pick up top
7258 field and second number tells from which frame to pick up bottom field.
7259
7260 If optionally followed by @code{+} output frame will be marked as interlaced,
7261 else if followed by @code{-} output frame will be marked as progressive, else
7262 it will be marked same as input frame.
7263 If line starts with @code{#} or @code{;} that line is skipped.
7264
7265 @item mode
7266 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7267 @end table
7268
7269 Example of first several lines of @code{hint} file for @code{relative} mode:
7270 @example
7271 0,0 - # first frame
7272 1,0 - # second frame, use third's frame top field and second's frame bottom field
7273 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7274 1,0 -
7275 0,0 -
7276 0,0 -
7277 1,0 -
7278 1,0 -
7279 1,0 -
7280 0,0 -
7281 0,0 -
7282 1,0 -
7283 1,0 -
7284 1,0 -
7285 0,0 -
7286 @end example
7287
7288 @section fieldmatch
7289
7290 Field matching filter for inverse telecine. It is meant to reconstruct the
7291 progressive frames from a telecined stream. The filter does not drop duplicated
7292 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7293 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7294
7295 The separation of the field matching and the decimation is notably motivated by
7296 the possibility of inserting a de-interlacing filter fallback between the two.
7297 If the source has mixed telecined and real interlaced content,
7298 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7299 But these remaining combed frames will be marked as interlaced, and thus can be
7300 de-interlaced by a later filter such as @ref{yadif} before decimation.
7301
7302 In addition to the various configuration options, @code{fieldmatch} can take an
7303 optional second stream, activated through the @option{ppsrc} option. If
7304 enabled, the frames reconstruction will be based on the fields and frames from
7305 this second stream. This allows the first input to be pre-processed in order to
7306 help the various algorithms of the filter, while keeping the output lossless
7307 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7308 or brightness/contrast adjustments can help.
7309
7310 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7311 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7312 which @code{fieldmatch} is based on. While the semantic and usage are very
7313 close, some behaviour and options names can differ.
7314
7315 The @ref{decimate} filter currently only works for constant frame rate input.
7316 If your input has mixed telecined (30fps) and progressive content with a lower
7317 framerate like 24fps use the following filterchain to produce the necessary cfr
7318 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7319
7320 The filter accepts the following options:
7321
7322 @table @option
7323 @item order
7324 Specify the assumed field order of the input stream. Available values are:
7325
7326 @table @samp
7327 @item auto
7328 Auto detect parity (use FFmpeg's internal parity value).
7329 @item bff
7330 Assume bottom field first.
7331 @item tff
7332 Assume top field first.
7333 @end table
7334
7335 Note that it is sometimes recommended not to trust the parity announced by the
7336 stream.
7337
7338 Default value is @var{auto}.
7339
7340 @item mode
7341 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7342 sense that it won't risk creating jerkiness due to duplicate frames when
7343 possible, but if there are bad edits or blended fields it will end up
7344 outputting combed frames when a good match might actually exist. On the other
7345 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7346 but will almost always find a good frame if there is one. The other values are
7347 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7348 jerkiness and creating duplicate frames versus finding good matches in sections
7349 with bad edits, orphaned fields, blended fields, etc.
7350
7351 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7352
7353 Available values are:
7354
7355 @table @samp
7356 @item pc
7357 2-way matching (p/c)
7358 @item pc_n
7359 2-way matching, and trying 3rd match if still combed (p/c + n)
7360 @item pc_u
7361 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7362 @item pc_n_ub
7363 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7364 still combed (p/c + n + u/b)
7365 @item pcn
7366 3-way matching (p/c/n)
7367 @item pcn_ub
7368 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7369 detected as combed (p/c/n + u/b)
7370 @end table
7371
7372 The parenthesis at the end indicate the matches that would be used for that
7373 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7374 @var{top}).
7375
7376 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7377 the slowest.
7378
7379 Default value is @var{pc_n}.
7380
7381 @item ppsrc
7382 Mark the main input stream as a pre-processed input, and enable the secondary
7383 input stream as the clean source to pick the fields from. See the filter
7384 introduction for more details. It is similar to the @option{clip2} feature from
7385 VFM/TFM.
7386
7387 Default value is @code{0} (disabled).
7388
7389 @item field
7390 Set the field to match from. It is recommended to set this to the same value as
7391 @option{order} unless you experience matching failures with that setting. In
7392 certain circumstances changing the field that is used to match from can have a
7393 large impact on matching performance. Available values are:
7394
7395 @table @samp
7396 @item auto
7397 Automatic (same value as @option{order}).
7398 @item bottom
7399 Match from the bottom field.
7400 @item top
7401 Match from the top field.
7402 @end table
7403
7404 Default value is @var{auto}.
7405
7406 @item mchroma
7407 Set whether or not chroma is included during the match comparisons. In most
7408 cases it is recommended to leave this enabled. You should set this to @code{0}
7409 only if your clip has bad chroma problems such as heavy rainbowing or other
7410 artifacts. Setting this to @code{0} could also be used to speed things up at
7411 the cost of some accuracy.
7412
7413 Default value is @code{1}.
7414
7415 @item y0
7416 @item y1
7417 These define an exclusion band which excludes the lines between @option{y0} and
7418 @option{y1} from being included in the field matching decision. An exclusion
7419 band can be used to ignore subtitles, a logo, or other things that may
7420 interfere with the matching. @option{y0} sets the starting scan line and
7421 @option{y1} sets the ending line; all lines in between @option{y0} and
7422 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7423 @option{y0} and @option{y1} to the same value will disable the feature.
7424 @option{y0} and @option{y1} defaults to @code{0}.
7425
7426 @item scthresh
7427 Set the scene change detection threshold as a percentage of maximum change on
7428 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7429 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7430 @option{scthresh} is @code{[0.0, 100.0]}.
7431
7432 Default value is @code{12.0}.
7433
7434 @item combmatch
7435 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7436 account the combed scores of matches when deciding what match to use as the
7437 final match. Available values are:
7438
7439 @table @samp
7440 @item none
7441 No final matching based on combed scores.
7442 @item sc
7443 Combed scores are only used when a scene change is detected.
7444 @item full
7445 Use combed scores all the time.
7446 @end table
7447
7448 Default is @var{sc}.
7449
7450 @item combdbg
7451 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7452 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7453 Available values are:
7454
7455 @table @samp
7456 @item none
7457 No forced calculation.
7458 @item pcn
7459 Force p/c/n calculations.
7460 @item pcnub
7461 Force p/c/n/u/b calculations.
7462 @end table
7463
7464 Default value is @var{none}.
7465
7466 @item cthresh
7467 This is the area combing threshold used for combed frame detection. This
7468 essentially controls how "strong" or "visible" combing must be to be detected.
7469 Larger values mean combing must be more visible and smaller values mean combing
7470 can be less visible or strong and still be detected. Valid settings are from
7471 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7472 be detected as combed). This is basically a pixel difference value. A good
7473 range is @code{[8, 12]}.
7474
7475 Default value is @code{9}.
7476
7477 @item chroma
7478 Sets whether or not chroma is considered in the combed frame decision.  Only
7479 disable this if your source has chroma problems (rainbowing, etc.) that are
7480 causing problems for the combed frame detection with chroma enabled. Actually,
7481 using @option{chroma}=@var{0} is usually more reliable, except for the case
7482 where there is chroma only combing in the source.
7483
7484 Default value is @code{0}.
7485
7486 @item blockx
7487 @item blocky
7488 Respectively set the x-axis and y-axis size of the window used during combed
7489 frame detection. This has to do with the size of the area in which
7490 @option{combpel} pixels are required to be detected as combed for a frame to be
7491 declared combed. See the @option{combpel} parameter description for more info.
7492 Possible values are any number that is a power of 2 starting at 4 and going up
7493 to 512.
7494
7495 Default value is @code{16}.
7496
7497 @item combpel
7498 The number of combed pixels inside any of the @option{blocky} by
7499 @option{blockx} size blocks on the frame for the frame to be detected as
7500 combed. While @option{cthresh} controls how "visible" the combing must be, this
7501 setting controls "how much" combing there must be in any localized area (a
7502 window defined by the @option{blockx} and @option{blocky} settings) on the
7503 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7504 which point no frames will ever be detected as combed). This setting is known
7505 as @option{MI} in TFM/VFM vocabulary.
7506
7507 Default value is @code{80}.
7508 @end table
7509
7510 @anchor{p/c/n/u/b meaning}
7511 @subsection p/c/n/u/b meaning
7512
7513 @subsubsection p/c/n
7514
7515 We assume the following telecined stream:
7516
7517 @example
7518 Top fields:     1 2 2 3 4
7519 Bottom fields:  1 2 3 4 4
7520 @end example
7521
7522 The numbers correspond to the progressive frame the fields relate to. Here, the
7523 first two frames are progressive, the 3rd and 4th are combed, and so on.
7524
7525 When @code{fieldmatch} is configured to run a matching from bottom
7526 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7527
7528 @example
7529 Input stream:
7530                 T     1 2 2 3 4
7531                 B     1 2 3 4 4   <-- matching reference
7532
7533 Matches:              c c n n c
7534
7535 Output stream:
7536                 T     1 2 3 4 4
7537                 B     1 2 3 4 4
7538 @end example
7539
7540 As a result of the field matching, we can see that some frames get duplicated.
7541 To perform a complete inverse telecine, you need to rely on a decimation filter
7542 after this operation. See for instance the @ref{decimate} filter.
7543
7544 The same operation now matching from top fields (@option{field}=@var{top})
7545 looks like this:
7546
7547 @example
7548 Input stream:
7549                 T     1 2 2 3 4   <-- matching reference
7550                 B     1 2 3 4 4
7551
7552 Matches:              c c p p c
7553
7554 Output stream:
7555                 T     1 2 2 3 4
7556                 B     1 2 2 3 4
7557 @end example
7558
7559 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7560 basically, they refer to the frame and field of the opposite parity:
7561
7562 @itemize
7563 @item @var{p} matches the field of the opposite parity in the previous frame
7564 @item @var{c} matches the field of the opposite parity in the current frame
7565 @item @var{n} matches the field of the opposite parity in the next frame
7566 @end itemize
7567
7568 @subsubsection u/b
7569
7570 The @var{u} and @var{b} matching are a bit special in the sense that they match
7571 from the opposite parity flag. In the following examples, we assume that we are
7572 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7573 'x' is placed above and below each matched fields.
7574
7575 With bottom matching (@option{field}=@var{bottom}):
7576 @example
7577 Match:           c         p           n          b          u
7578
7579                  x       x               x        x          x
7580   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7581   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7582                  x         x           x        x              x
7583
7584 Output frames:
7585                  2          1          2          2          2
7586                  2          2          2          1          3
7587 @end example
7588
7589 With top matching (@option{field}=@var{top}):
7590 @example
7591 Match:           c         p           n          b          u
7592
7593                  x         x           x        x              x
7594   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7595   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7596                  x       x               x        x          x
7597
7598 Output frames:
7599                  2          2          2          1          2
7600                  2          1          3          2          2
7601 @end example
7602
7603 @subsection Examples
7604
7605 Simple IVTC of a top field first telecined stream:
7606 @example
7607 fieldmatch=order=tff:combmatch=none, decimate
7608 @end example
7609
7610 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7611 @example
7612 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7613 @end example
7614
7615 @section fieldorder
7616
7617 Transform the field order of the input video.
7618
7619 It accepts the following parameters:
7620
7621 @table @option
7622
7623 @item order
7624 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7625 for bottom field first.
7626 @end table
7627
7628 The default value is @samp{tff}.
7629
7630 The transformation is done by shifting the picture content up or down
7631 by one line, and filling the remaining line with appropriate picture content.
7632 This method is consistent with most broadcast field order converters.
7633
7634 If the input video is not flagged as being interlaced, or it is already
7635 flagged as being of the required output field order, then this filter does
7636 not alter the incoming video.
7637
7638 It is very useful when converting to or from PAL DV material,
7639 which is bottom field first.
7640
7641 For example:
7642 @example
7643 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7644 @end example
7645
7646 @section fifo, afifo
7647
7648 Buffer input images and send them when they are requested.
7649
7650 It is mainly useful when auto-inserted by the libavfilter
7651 framework.
7652
7653 It does not take parameters.
7654
7655 @section find_rect
7656
7657 Find a rectangular object
7658
7659 It accepts the following options:
7660
7661 @table @option
7662 @item object
7663 Filepath of the object image, needs to be in gray8.
7664
7665 @item threshold
7666 Detection threshold, default is 0.5.
7667
7668 @item mipmaps
7669 Number of mipmaps, default is 3.
7670
7671 @item xmin, ymin, xmax, ymax
7672 Specifies the rectangle in which to search.
7673 @end table
7674
7675 @subsection Examples
7676
7677 @itemize
7678 @item
7679 Generate a representative palette of a given video using @command{ffmpeg}:
7680 @example
7681 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7682 @end example
7683 @end itemize
7684
7685 @section cover_rect
7686
7687 Cover a rectangular object
7688
7689 It accepts the following options:
7690
7691 @table @option
7692 @item cover
7693 Filepath of the optional cover image, needs to be in yuv420.
7694
7695 @item mode
7696 Set covering mode.
7697
7698 It accepts the following values:
7699 @table @samp
7700 @item cover
7701 cover it by the supplied image
7702 @item blur
7703 cover it by interpolating the surrounding pixels
7704 @end table
7705
7706 Default value is @var{blur}.
7707 @end table
7708
7709 @subsection Examples
7710
7711 @itemize
7712 @item
7713 Generate a representative palette of a given video using @command{ffmpeg}:
7714 @example
7715 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7716 @end example
7717 @end itemize
7718
7719 @anchor{format}
7720 @section format
7721
7722 Convert the input video to one of the specified pixel formats.
7723 Libavfilter will try to pick one that is suitable as input to
7724 the next filter.
7725
7726 It accepts the following parameters:
7727 @table @option
7728
7729 @item pix_fmts
7730 A '|'-separated list of pixel format names, such as
7731 "pix_fmts=yuv420p|monow|rgb24".
7732
7733 @end table
7734
7735 @subsection Examples
7736
7737 @itemize
7738 @item
7739 Convert the input video to the @var{yuv420p} format
7740 @example
7741 format=pix_fmts=yuv420p
7742 @end example
7743
7744 Convert the input video to any of the formats in the list
7745 @example
7746 format=pix_fmts=yuv420p|yuv444p|yuv410p
7747 @end example
7748 @end itemize
7749
7750 @anchor{fps}
7751 @section fps
7752
7753 Convert the video to specified constant frame rate by duplicating or dropping
7754 frames as necessary.
7755
7756 It accepts the following parameters:
7757 @table @option
7758
7759 @item fps
7760 The desired output frame rate. The default is @code{25}.
7761
7762 @item round
7763 Rounding method.
7764
7765 Possible values are:
7766 @table @option
7767 @item zero
7768 zero round towards 0
7769 @item inf
7770 round away from 0
7771 @item down
7772 round towards -infinity
7773 @item up
7774 round towards +infinity
7775 @item near
7776 round to nearest
7777 @end table
7778 The default is @code{near}.
7779
7780 @item start_time
7781 Assume the first PTS should be the given value, in seconds. This allows for
7782 padding/trimming at the start of stream. By default, no assumption is made
7783 about the first frame's expected PTS, so no padding or trimming is done.
7784 For example, this could be set to 0 to pad the beginning with duplicates of
7785 the first frame if a video stream starts after the audio stream or to trim any
7786 frames with a negative PTS.
7787
7788 @end table
7789
7790 Alternatively, the options can be specified as a flat string:
7791 @var{fps}[:@var{round}].
7792
7793 See also the @ref{setpts} filter.
7794
7795 @subsection Examples
7796
7797 @itemize
7798 @item
7799 A typical usage in order to set the fps to 25:
7800 @example
7801 fps=fps=25
7802 @end example
7803
7804 @item
7805 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7806 @example
7807 fps=fps=film:round=near
7808 @end example
7809 @end itemize
7810
7811 @section framepack
7812
7813 Pack two different video streams into a stereoscopic video, setting proper
7814 metadata on supported codecs. The two views should have the same size and
7815 framerate and processing will stop when the shorter video ends. Please note
7816 that you may conveniently adjust view properties with the @ref{scale} and
7817 @ref{fps} filters.
7818
7819 It accepts the following parameters:
7820 @table @option
7821
7822 @item format
7823 The desired packing format. Supported values are:
7824
7825 @table @option
7826
7827 @item sbs
7828 The views are next to each other (default).
7829
7830 @item tab
7831 The views are on top of each other.
7832
7833 @item lines
7834 The views are packed by line.
7835
7836 @item columns
7837 The views are packed by column.
7838
7839 @item frameseq
7840 The views are temporally interleaved.
7841
7842 @end table
7843
7844 @end table
7845
7846 Some examples:
7847
7848 @example
7849 # Convert left and right views into a frame-sequential video
7850 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7851
7852 # Convert views into a side-by-side video with the same output resolution as the input
7853 ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
7854 @end example
7855
7856 @section framerate
7857
7858 Change the frame rate by interpolating new video output frames from the source
7859 frames.
7860
7861 This filter is not designed to function correctly with interlaced media. If
7862 you wish to change the frame rate of interlaced media then you are required
7863 to deinterlace before this filter and re-interlace after this filter.
7864
7865 A description of the accepted options follows.
7866
7867 @table @option
7868 @item fps
7869 Specify the output frames per second. This option can also be specified
7870 as a value alone. The default is @code{50}.
7871
7872 @item interp_start
7873 Specify the start of a range where the output frame will be created as a
7874 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7875 the default is @code{15}.
7876
7877 @item interp_end
7878 Specify the end of a range where the output frame will be created as a
7879 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7880 the default is @code{240}.
7881
7882 @item scene
7883 Specify the level at which a scene change is detected as a value between
7884 0 and 100 to indicate a new scene; a low value reflects a low
7885 probability for the current frame to introduce a new scene, while a higher
7886 value means the current frame is more likely to be one.
7887 The default is @code{7}.
7888
7889 @item flags
7890 Specify flags influencing the filter process.
7891
7892 Available value for @var{flags} is:
7893
7894 @table @option
7895 @item scene_change_detect, scd
7896 Enable scene change detection using the value of the option @var{scene}.
7897 This flag is enabled by default.
7898 @end table
7899 @end table
7900
7901 @section framestep
7902
7903 Select one frame every N-th frame.
7904
7905 This filter accepts the following option:
7906 @table @option
7907 @item step
7908 Select frame after every @code{step} frames.
7909 Allowed values are positive integers higher than 0. Default value is @code{1}.
7910 @end table
7911
7912 @anchor{frei0r}
7913 @section frei0r
7914
7915 Apply a frei0r effect to the input video.
7916
7917 To enable the compilation of this filter, you need to install the frei0r
7918 header and configure FFmpeg with @code{--enable-frei0r}.
7919
7920 It accepts the following parameters:
7921
7922 @table @option
7923
7924 @item filter_name
7925 The name of the frei0r effect to load. If the environment variable
7926 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7927 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7928 Otherwise, the standard frei0r paths are searched, in this order:
7929 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7930 @file{/usr/lib/frei0r-1/}.
7931
7932 @item filter_params
7933 A '|'-separated list of parameters to pass to the frei0r effect.
7934
7935 @end table
7936
7937 A frei0r effect parameter can be a boolean (its value is either
7938 "y" or "n"), a double, a color (specified as
7939 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
7940 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
7941 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
7942 @var{X} and @var{Y} are floating point numbers) and/or a string.
7943
7944 The number and types of parameters depend on the loaded effect. If an
7945 effect parameter is not specified, the default value is set.
7946
7947 @subsection Examples
7948
7949 @itemize
7950 @item
7951 Apply the distort0r effect, setting the first two double parameters:
7952 @example
7953 frei0r=filter_name=distort0r:filter_params=0.5|0.01
7954 @end example
7955
7956 @item
7957 Apply the colordistance effect, taking a color as the first parameter:
7958 @example
7959 frei0r=colordistance:0.2/0.3/0.4
7960 frei0r=colordistance:violet
7961 frei0r=colordistance:0x112233
7962 @end example
7963
7964 @item
7965 Apply the perspective effect, specifying the top left and top right image
7966 positions:
7967 @example
7968 frei0r=perspective:0.2/0.2|0.8/0.2
7969 @end example
7970 @end itemize
7971
7972 For more information, see
7973 @url{http://frei0r.dyne.org}
7974
7975 @section fspp
7976
7977 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
7978
7979 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
7980 processing filter, one of them is performed once per block, not per pixel.
7981 This allows for much higher speed.
7982
7983 The filter accepts the following options:
7984
7985 @table @option
7986 @item quality
7987 Set quality. This option defines the number of levels for averaging. It accepts
7988 an integer in the range 4-5. Default value is @code{4}.
7989
7990 @item qp
7991 Force a constant quantization parameter. It accepts an integer in range 0-63.
7992 If not set, the filter will use the QP from the video stream (if available).
7993
7994 @item strength
7995 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
7996 more details but also more artifacts, while higher values make the image smoother
7997 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
7998
7999 @item use_bframe_qp
8000 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8001 option may cause flicker since the B-Frames have often larger QP. Default is
8002 @code{0} (not enabled).
8003
8004 @end table
8005
8006 @section geq
8007
8008 The filter accepts the following options:
8009
8010 @table @option
8011 @item lum_expr, lum
8012 Set the luminance expression.
8013 @item cb_expr, cb
8014 Set the chrominance blue expression.
8015 @item cr_expr, cr
8016 Set the chrominance red expression.
8017 @item alpha_expr, a
8018 Set the alpha expression.
8019 @item red_expr, r
8020 Set the red expression.
8021 @item green_expr, g
8022 Set the green expression.
8023 @item blue_expr, b
8024 Set the blue expression.
8025 @end table
8026
8027 The colorspace is selected according to the specified options. If one
8028 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8029 options is specified, the filter will automatically select a YCbCr
8030 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8031 @option{blue_expr} options is specified, it will select an RGB
8032 colorspace.
8033
8034 If one of the chrominance expression is not defined, it falls back on the other
8035 one. If no alpha expression is specified it will evaluate to opaque value.
8036 If none of chrominance expressions are specified, they will evaluate
8037 to the luminance expression.
8038
8039 The expressions can use the following variables and functions:
8040
8041 @table @option
8042 @item N
8043 The sequential number of the filtered frame, starting from @code{0}.
8044
8045 @item X
8046 @item Y
8047 The coordinates of the current sample.
8048
8049 @item W
8050 @item H
8051 The width and height of the image.
8052
8053 @item SW
8054 @item SH
8055 Width and height scale depending on the currently filtered plane. It is the
8056 ratio between the corresponding luma plane number of pixels and the current
8057 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8058 @code{0.5,0.5} for chroma planes.
8059
8060 @item T
8061 Time of the current frame, expressed in seconds.
8062
8063 @item p(x, y)
8064 Return the value of the pixel at location (@var{x},@var{y}) of the current
8065 plane.
8066
8067 @item lum(x, y)
8068 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8069 plane.
8070
8071 @item cb(x, y)
8072 Return the value of the pixel at location (@var{x},@var{y}) of the
8073 blue-difference chroma plane. Return 0 if there is no such plane.
8074
8075 @item cr(x, y)
8076 Return the value of the pixel at location (@var{x},@var{y}) of the
8077 red-difference chroma plane. Return 0 if there is no such plane.
8078
8079 @item r(x, y)
8080 @item g(x, y)
8081 @item b(x, y)
8082 Return the value of the pixel at location (@var{x},@var{y}) of the
8083 red/green/blue component. Return 0 if there is no such component.
8084
8085 @item alpha(x, y)
8086 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8087 plane. Return 0 if there is no such plane.
8088 @end table
8089
8090 For functions, if @var{x} and @var{y} are outside the area, the value will be
8091 automatically clipped to the closer edge.
8092
8093 @subsection Examples
8094
8095 @itemize
8096 @item
8097 Flip the image horizontally:
8098 @example
8099 geq=p(W-X\,Y)
8100 @end example
8101
8102 @item
8103 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8104 wavelength of 100 pixels:
8105 @example
8106 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8107 @end example
8108
8109 @item
8110 Generate a fancy enigmatic moving light:
8111 @example
8112 nullsrc=s=256x256,geq=random(1)/hypot(X-cos(N*0.07)*W/2-W/2\,Y-sin(N*0.09)*H/2-H/2)^2*1000000*sin(N*0.02):128:128
8113 @end example
8114
8115 @item
8116 Generate a quick emboss effect:
8117 @example
8118 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8119 @end example
8120
8121 @item
8122 Modify RGB components depending on pixel position:
8123 @example
8124 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8125 @end example
8126
8127 @item
8128 Create a radial gradient that is the same size as the input (also see
8129 the @ref{vignette} filter):
8130 @example
8131 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8132 @end example
8133 @end itemize
8134
8135 @section gradfun
8136
8137 Fix the banding artifacts that are sometimes introduced into nearly flat
8138 regions by truncation to 8bit color depth.
8139 Interpolate the gradients that should go where the bands are, and
8140 dither them.
8141
8142 It is designed for playback only.  Do not use it prior to
8143 lossy compression, because compression tends to lose the dither and
8144 bring back the bands.
8145
8146 It accepts the following parameters:
8147
8148 @table @option
8149
8150 @item strength
8151 The maximum amount by which the filter will change any one pixel. This is also
8152 the threshold for detecting nearly flat regions. Acceptable values range from
8153 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8154 valid range.
8155
8156 @item radius
8157 The neighborhood to fit the gradient to. A larger radius makes for smoother
8158 gradients, but also prevents the filter from modifying the pixels near detailed
8159 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8160 values will be clipped to the valid range.
8161
8162 @end table
8163
8164 Alternatively, the options can be specified as a flat string:
8165 @var{strength}[:@var{radius}]
8166
8167 @subsection Examples
8168
8169 @itemize
8170 @item
8171 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8172 @example
8173 gradfun=3.5:8
8174 @end example
8175
8176 @item
8177 Specify radius, omitting the strength (which will fall-back to the default
8178 value):
8179 @example
8180 gradfun=radius=8
8181 @end example
8182
8183 @end itemize
8184
8185 @anchor{haldclut}
8186 @section haldclut
8187
8188 Apply a Hald CLUT to a video stream.
8189
8190 First input is the video stream to process, and second one is the Hald CLUT.
8191 The Hald CLUT input can be a simple picture or a complete video stream.
8192
8193 The filter accepts the following options:
8194
8195 @table @option
8196 @item shortest
8197 Force termination when the shortest input terminates. Default is @code{0}.
8198 @item repeatlast
8199 Continue applying the last CLUT after the end of the stream. A value of
8200 @code{0} disable the filter after the last frame of the CLUT is reached.
8201 Default is @code{1}.
8202 @end table
8203
8204 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8205 filters share the same internals).
8206
8207 More information about the Hald CLUT can be found on Eskil Steenberg's website
8208 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8209
8210 @subsection Workflow examples
8211
8212 @subsubsection Hald CLUT video stream
8213
8214 Generate an identity Hald CLUT stream altered with various effects:
8215 @example
8216 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "hue=H=2*PI*t:s=sin(2*PI*t)+1, curves=cross_process" -t 10 -c:v ffv1 clut.nut
8217 @end example
8218
8219 Note: make sure you use a lossless codec.
8220
8221 Then use it with @code{haldclut} to apply it on some random stream:
8222 @example
8223 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8224 @end example
8225
8226 The Hald CLUT will be applied to the 10 first seconds (duration of
8227 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8228 to the remaining frames of the @code{mandelbrot} stream.
8229
8230 @subsubsection Hald CLUT with preview
8231
8232 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8233 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8234 biggest possible square starting at the top left of the picture. The remaining
8235 padding pixels (bottom or right) will be ignored. This area can be used to add
8236 a preview of the Hald CLUT.
8237
8238 Typically, the following generated Hald CLUT will be supported by the
8239 @code{haldclut} filter:
8240
8241 @example
8242 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8243    pad=iw+320 [padded_clut];
8244    smptebars=s=320x256, split [a][b];
8245    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8246    [main][b] overlay=W-320" -frames:v 1 clut.png
8247 @end example
8248
8249 It contains the original and a preview of the effect of the CLUT: SMPTE color
8250 bars are displayed on the right-top, and below the same color bars processed by
8251 the color changes.
8252
8253 Then, the effect of this Hald CLUT can be visualized with:
8254 @example
8255 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8256 @end example
8257
8258 @section hflip
8259
8260 Flip the input video horizontally.
8261
8262 For example, to horizontally flip the input video with @command{ffmpeg}:
8263 @example
8264 ffmpeg -i in.avi -vf "hflip" out.avi
8265 @end example
8266
8267 @section histeq
8268 This filter applies a global color histogram equalization on a
8269 per-frame basis.
8270
8271 It can be used to correct video that has a compressed range of pixel
8272 intensities.  The filter redistributes the pixel intensities to
8273 equalize their distribution across the intensity range. It may be
8274 viewed as an "automatically adjusting contrast filter". This filter is
8275 useful only for correcting degraded or poorly captured source
8276 video.
8277
8278 The filter accepts the following options:
8279
8280 @table @option
8281 @item strength
8282 Determine the amount of equalization to be applied.  As the strength
8283 is reduced, the distribution of pixel intensities more-and-more
8284 approaches that of the input frame. The value must be a float number
8285 in the range [0,1] and defaults to 0.200.
8286
8287 @item intensity
8288 Set the maximum intensity that can generated and scale the output
8289 values appropriately.  The strength should be set as desired and then
8290 the intensity can be limited if needed to avoid washing-out. The value
8291 must be a float number in the range [0,1] and defaults to 0.210.
8292
8293 @item antibanding
8294 Set the antibanding level. If enabled the filter will randomly vary
8295 the luminance of output pixels by a small amount to avoid banding of
8296 the histogram. Possible values are @code{none}, @code{weak} or
8297 @code{strong}. It defaults to @code{none}.
8298 @end table
8299
8300 @section histogram
8301
8302 Compute and draw a color distribution histogram for the input video.
8303
8304 The computed histogram is a representation of the color component
8305 distribution in an image.
8306
8307 Standard histogram displays the color components distribution in an image.
8308 Displays color graph for each color component. Shows distribution of
8309 the Y, U, V, A or R, G, B components, depending on input format, in the
8310 current frame. Below each graph a color component scale meter is shown.
8311
8312 The filter accepts the following options:
8313
8314 @table @option
8315 @item level_height
8316 Set height of level. Default value is @code{200}.
8317 Allowed range is [50, 2048].
8318
8319 @item scale_height
8320 Set height of color scale. Default value is @code{12}.
8321 Allowed range is [0, 40].
8322
8323 @item display_mode
8324 Set display mode.
8325 It accepts the following values:
8326 @table @samp
8327 @item parade
8328 Per color component graphs are placed below each other.
8329
8330 @item overlay
8331 Presents information identical to that in the @code{parade}, except
8332 that the graphs representing color components are superimposed directly
8333 over one another.
8334 @end table
8335 Default is @code{parade}.
8336
8337 @item levels_mode
8338 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8339 Default is @code{linear}.
8340
8341 @item components
8342 Set what color components to display.
8343 Default is @code{7}.
8344 @end table
8345
8346 @subsection Examples
8347
8348 @itemize
8349
8350 @item
8351 Calculate and draw histogram:
8352 @example
8353 ffplay -i input -vf histogram
8354 @end example
8355
8356 @end itemize
8357
8358 @anchor{hqdn3d}
8359 @section hqdn3d
8360
8361 This is a high precision/quality 3d denoise filter. It aims to reduce
8362 image noise, producing smooth images and making still images really
8363 still. It should enhance compressibility.
8364
8365 It accepts the following optional parameters:
8366
8367 @table @option
8368 @item luma_spatial
8369 A non-negative floating point number which specifies spatial luma strength.
8370 It defaults to 4.0.
8371
8372 @item chroma_spatial
8373 A non-negative floating point number which specifies spatial chroma strength.
8374 It defaults to 3.0*@var{luma_spatial}/4.0.
8375
8376 @item luma_tmp
8377 A floating point number which specifies luma temporal strength. It defaults to
8378 6.0*@var{luma_spatial}/4.0.
8379
8380 @item chroma_tmp
8381 A floating point number which specifies chroma temporal strength. It defaults to
8382 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8383 @end table
8384
8385 @anchor{hwupload_cuda}
8386 @section hwupload_cuda
8387
8388 Upload system memory frames to a CUDA device.
8389
8390 It accepts the following optional parameters:
8391
8392 @table @option
8393 @item device
8394 The number of the CUDA device to use
8395 @end table
8396
8397 @section hqx
8398
8399 Apply a high-quality magnification filter designed for pixel art. This filter
8400 was originally created by Maxim Stepin.
8401
8402 It accepts the following option:
8403
8404 @table @option
8405 @item n
8406 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8407 @code{hq3x} and @code{4} for @code{hq4x}.
8408 Default is @code{3}.
8409 @end table
8410
8411 @section hstack
8412 Stack input videos horizontally.
8413
8414 All streams must be of same pixel format and of same height.
8415
8416 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8417 to create same output.
8418
8419 The filter accept the following option:
8420
8421 @table @option
8422 @item inputs
8423 Set number of input streams. Default is 2.
8424
8425 @item shortest
8426 If set to 1, force the output to terminate when the shortest input
8427 terminates. Default value is 0.
8428 @end table
8429
8430 @section hue
8431
8432 Modify the hue and/or the saturation of the input.
8433
8434 It accepts the following parameters:
8435
8436 @table @option
8437 @item h
8438 Specify the hue angle as a number of degrees. It accepts an expression,
8439 and defaults to "0".
8440
8441 @item s
8442 Specify the saturation in the [-10,10] range. It accepts an expression and
8443 defaults to "1".
8444
8445 @item H
8446 Specify the hue angle as a number of radians. It accepts an
8447 expression, and defaults to "0".
8448
8449 @item b
8450 Specify the brightness in the [-10,10] range. It accepts an expression and
8451 defaults to "0".
8452 @end table
8453
8454 @option{h} and @option{H} are mutually exclusive, and can't be
8455 specified at the same time.
8456
8457 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8458 expressions containing the following constants:
8459
8460 @table @option
8461 @item n
8462 frame count of the input frame starting from 0
8463
8464 @item pts
8465 presentation timestamp of the input frame expressed in time base units
8466
8467 @item r
8468 frame rate of the input video, NAN if the input frame rate is unknown
8469
8470 @item t
8471 timestamp expressed in seconds, NAN if the input timestamp is unknown
8472
8473 @item tb
8474 time base of the input video
8475 @end table
8476
8477 @subsection Examples
8478
8479 @itemize
8480 @item
8481 Set the hue to 90 degrees and the saturation to 1.0:
8482 @example
8483 hue=h=90:s=1
8484 @end example
8485
8486 @item
8487 Same command but expressing the hue in radians:
8488 @example
8489 hue=H=PI/2:s=1
8490 @end example
8491
8492 @item
8493 Rotate hue and make the saturation swing between 0
8494 and 2 over a period of 1 second:
8495 @example
8496 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8497 @end example
8498
8499 @item
8500 Apply a 3 seconds saturation fade-in effect starting at 0:
8501 @example
8502 hue="s=min(t/3\,1)"
8503 @end example
8504
8505 The general fade-in expression can be written as:
8506 @example
8507 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8508 @end example
8509
8510 @item
8511 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8512 @example
8513 hue="s=max(0\, min(1\, (8-t)/3))"
8514 @end example
8515
8516 The general fade-out expression can be written as:
8517 @example
8518 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8519 @end example
8520
8521 @end itemize
8522
8523 @subsection Commands
8524
8525 This filter supports the following commands:
8526 @table @option
8527 @item b
8528 @item s
8529 @item h
8530 @item H
8531 Modify the hue and/or the saturation and/or brightness of the input video.
8532 The command accepts the same syntax of the corresponding option.
8533
8534 If the specified expression is not valid, it is kept at its current
8535 value.
8536 @end table
8537
8538 @section idet
8539
8540 Detect video interlacing type.
8541
8542 This filter tries to detect if the input frames as interlaced, progressive,
8543 top or bottom field first. It will also try and detect fields that are
8544 repeated between adjacent frames (a sign of telecine).
8545
8546 Single frame detection considers only immediately adjacent frames when classifying each frame.
8547 Multiple frame detection incorporates the classification history of previous frames.
8548
8549 The filter will log these metadata values:
8550
8551 @table @option
8552 @item single.current_frame
8553 Detected type of current frame using single-frame detection. One of:
8554 ``tff'' (top field first), ``bff'' (bottom field first),
8555 ``progressive'', or ``undetermined''
8556
8557 @item single.tff
8558 Cumulative number of frames detected as top field first using single-frame detection.
8559
8560 @item multiple.tff
8561 Cumulative number of frames detected as top field first using multiple-frame detection.
8562
8563 @item single.bff
8564 Cumulative number of frames detected as bottom field first using single-frame detection.
8565
8566 @item multiple.current_frame
8567 Detected type of current frame using multiple-frame detection. One of:
8568 ``tff'' (top field first), ``bff'' (bottom field first),
8569 ``progressive'', or ``undetermined''
8570
8571 @item multiple.bff
8572 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8573
8574 @item single.progressive
8575 Cumulative number of frames detected as progressive using single-frame detection.
8576
8577 @item multiple.progressive
8578 Cumulative number of frames detected as progressive using multiple-frame detection.
8579
8580 @item single.undetermined
8581 Cumulative number of frames that could not be classified using single-frame detection.
8582
8583 @item multiple.undetermined
8584 Cumulative number of frames that could not be classified using multiple-frame detection.
8585
8586 @item repeated.current_frame
8587 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8588
8589 @item repeated.neither
8590 Cumulative number of frames with no repeated field.
8591
8592 @item repeated.top
8593 Cumulative number of frames with the top field repeated from the previous frame's top field.
8594
8595 @item repeated.bottom
8596 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8597 @end table
8598
8599 The filter accepts the following options:
8600
8601 @table @option
8602 @item intl_thres
8603 Set interlacing threshold.
8604 @item prog_thres
8605 Set progressive threshold.
8606 @item rep_thres
8607 Threshold for repeated field detection.
8608 @item half_life
8609 Number of frames after which a given frame's contribution to the
8610 statistics is halved (i.e., it contributes only 0.5 to it's
8611 classification). The default of 0 means that all frames seen are given
8612 full weight of 1.0 forever.
8613 @item analyze_interlaced_flag
8614 When this is not 0 then idet will use the specified number of frames to determine
8615 if the interlaced flag is accurate, it will not count undetermined frames.
8616 If the flag is found to be accurate it will be used without any further
8617 computations, if it is found to be inaccurate it will be cleared without any
8618 further computations. This allows inserting the idet filter as a low computational
8619 method to clean up the interlaced flag
8620 @end table
8621
8622 @section il
8623
8624 Deinterleave or interleave fields.
8625
8626 This filter allows one to process interlaced images fields without
8627 deinterlacing them. Deinterleaving splits the input frame into 2
8628 fields (so called half pictures). Odd lines are moved to the top
8629 half of the output image, even lines to the bottom half.
8630 You can process (filter) them independently and then re-interleave them.
8631
8632 The filter accepts the following options:
8633
8634 @table @option
8635 @item luma_mode, l
8636 @item chroma_mode, c
8637 @item alpha_mode, a
8638 Available values for @var{luma_mode}, @var{chroma_mode} and
8639 @var{alpha_mode} are:
8640
8641 @table @samp
8642 @item none
8643 Do nothing.
8644
8645 @item deinterleave, d
8646 Deinterleave fields, placing one above the other.
8647
8648 @item interleave, i
8649 Interleave fields. Reverse the effect of deinterleaving.
8650 @end table
8651 Default value is @code{none}.
8652
8653 @item luma_swap, ls
8654 @item chroma_swap, cs
8655 @item alpha_swap, as
8656 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8657 @end table
8658
8659 @section inflate
8660
8661 Apply inflate effect to the video.
8662
8663 This filter replaces the pixel by the local(3x3) average by taking into account
8664 only values higher than the pixel.
8665
8666 It accepts the following options:
8667
8668 @table @option
8669 @item threshold0
8670 @item threshold1
8671 @item threshold2
8672 @item threshold3
8673 Limit the maximum change for each plane, default is 65535.
8674 If 0, plane will remain unchanged.
8675 @end table
8676
8677 @section interlace
8678
8679 Simple interlacing filter from progressive contents. This interleaves upper (or
8680 lower) lines from odd frames with lower (or upper) lines from even frames,
8681 halving the frame rate and preserving image height.
8682
8683 @example
8684    Original        Original             New Frame
8685    Frame 'j'      Frame 'j+1'             (tff)
8686   ==========      ===========       ==================
8687     Line 0  -------------------->    Frame 'j' Line 0
8688     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8689     Line 2 --------------------->    Frame 'j' Line 2
8690     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8691      ...             ...                   ...
8692 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8693 @end example
8694
8695 It accepts the following optional parameters:
8696
8697 @table @option
8698 @item scan
8699 This determines whether the interlaced frame is taken from the even
8700 (tff - default) or odd (bff) lines of the progressive frame.
8701
8702 @item lowpass
8703 Enable (default) or disable the vertical lowpass filter to avoid twitter
8704 interlacing and reduce moire patterns.
8705 @end table
8706
8707 @section kerndeint
8708
8709 Deinterlace input video by applying Donald Graft's adaptive kernel
8710 deinterling. Work on interlaced parts of a video to produce
8711 progressive frames.
8712
8713 The description of the accepted parameters follows.
8714
8715 @table @option
8716 @item thresh
8717 Set the threshold which affects the filter's tolerance when
8718 determining if a pixel line must be processed. It must be an integer
8719 in the range [0,255] and defaults to 10. A value of 0 will result in
8720 applying the process on every pixels.
8721
8722 @item map
8723 Paint pixels exceeding the threshold value to white if set to 1.
8724 Default is 0.
8725
8726 @item order
8727 Set the fields order. Swap fields if set to 1, leave fields alone if
8728 0. Default is 0.
8729
8730 @item sharp
8731 Enable additional sharpening if set to 1. Default is 0.
8732
8733 @item twoway
8734 Enable twoway sharpening if set to 1. Default is 0.
8735 @end table
8736
8737 @subsection Examples
8738
8739 @itemize
8740 @item
8741 Apply default values:
8742 @example
8743 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8744 @end example
8745
8746 @item
8747 Enable additional sharpening:
8748 @example
8749 kerndeint=sharp=1
8750 @end example
8751
8752 @item
8753 Paint processed pixels in white:
8754 @example
8755 kerndeint=map=1
8756 @end example
8757 @end itemize
8758
8759 @section lenscorrection
8760
8761 Correct radial lens distortion
8762
8763 This filter can be used to correct for radial distortion as can result from the use
8764 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8765 one can use tools available for example as part of opencv or simply trial-and-error.
8766 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8767 and extract the k1 and k2 coefficients from the resulting matrix.
8768
8769 Note that effectively the same filter is available in the open-source tools Krita and
8770 Digikam from the KDE project.
8771
8772 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8773 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8774 brightness distribution, so you may want to use both filters together in certain
8775 cases, though you will have to take care of ordering, i.e. whether vignetting should
8776 be applied before or after lens correction.
8777
8778 @subsection Options
8779
8780 The filter accepts the following options:
8781
8782 @table @option
8783 @item cx
8784 Relative x-coordinate of the focal point of the image, and thereby the center of the
8785 distortion. This value has a range [0,1] and is expressed as fractions of the image
8786 width.
8787 @item cy
8788 Relative y-coordinate of the focal point of the image, and thereby the center of the
8789 distortion. This value has a range [0,1] and is expressed as fractions of the image
8790 height.
8791 @item k1
8792 Coefficient of the quadratic correction term. 0.5 means no correction.
8793 @item k2
8794 Coefficient of the double quadratic correction term. 0.5 means no correction.
8795 @end table
8796
8797 The formula that generates the correction is:
8798
8799 @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)
8800
8801 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8802 distances from the focal point in the source and target images, respectively.
8803
8804 @section loop, aloop
8805
8806 Loop video frames or audio samples.
8807
8808 Those filters accepts the following options:
8809
8810 @table @option
8811 @item loop
8812 Set the number of loops.
8813
8814 @item size
8815 Set maximal size in number of frames for @code{loop} filter or maximal number
8816 of samples in case of @code{aloop} filter.
8817
8818 @item start
8819 Set first frame of loop for @code{loop} filter or first sample of loop in case
8820 of @code{aloop} filter.
8821 @end table
8822
8823 @anchor{lut3d}
8824 @section lut3d
8825
8826 Apply a 3D LUT to an input video.
8827
8828 The filter accepts the following options:
8829
8830 @table @option
8831 @item file
8832 Set the 3D LUT file name.
8833
8834 Currently supported formats:
8835 @table @samp
8836 @item 3dl
8837 AfterEffects
8838 @item cube
8839 Iridas
8840 @item dat
8841 DaVinci
8842 @item m3d
8843 Pandora
8844 @end table
8845 @item interp
8846 Select interpolation mode.
8847
8848 Available values are:
8849
8850 @table @samp
8851 @item nearest
8852 Use values from the nearest defined point.
8853 @item trilinear
8854 Interpolate values using the 8 points defining a cube.
8855 @item tetrahedral
8856 Interpolate values using a tetrahedron.
8857 @end table
8858 @end table
8859
8860 @section lut, lutrgb, lutyuv
8861
8862 Compute a look-up table for binding each pixel component input value
8863 to an output value, and apply it to the input video.
8864
8865 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8866 to an RGB input video.
8867
8868 These filters accept the following parameters:
8869 @table @option
8870 @item c0
8871 set first pixel component expression
8872 @item c1
8873 set second pixel component expression
8874 @item c2
8875 set third pixel component expression
8876 @item c3
8877 set fourth pixel component expression, corresponds to the alpha component
8878
8879 @item r
8880 set red component expression
8881 @item g
8882 set green component expression
8883 @item b
8884 set blue component expression
8885 @item a
8886 alpha component expression
8887
8888 @item y
8889 set Y/luminance component expression
8890 @item u
8891 set U/Cb component expression
8892 @item v
8893 set V/Cr component expression
8894 @end table
8895
8896 Each of them specifies the expression to use for computing the lookup table for
8897 the corresponding pixel component values.
8898
8899 The exact component associated to each of the @var{c*} options depends on the
8900 format in input.
8901
8902 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8903 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8904
8905 The expressions can contain the following constants and functions:
8906
8907 @table @option
8908 @item w
8909 @item h
8910 The input width and height.
8911
8912 @item val
8913 The input value for the pixel component.
8914
8915 @item clipval
8916 The input value, clipped to the @var{minval}-@var{maxval} range.
8917
8918 @item maxval
8919 The maximum value for the pixel component.
8920
8921 @item minval
8922 The minimum value for the pixel component.
8923
8924 @item negval
8925 The negated value for the pixel component value, clipped to the
8926 @var{minval}-@var{maxval} range; it corresponds to the expression
8927 "maxval-clipval+minval".
8928
8929 @item clip(val)
8930 The computed value in @var{val}, clipped to the
8931 @var{minval}-@var{maxval} range.
8932
8933 @item gammaval(gamma)
8934 The computed gamma correction value of the pixel component value,
8935 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
8936 expression
8937 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
8938
8939 @end table
8940
8941 All expressions default to "val".
8942
8943 @subsection Examples
8944
8945 @itemize
8946 @item
8947 Negate input video:
8948 @example
8949 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
8950 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
8951 @end example
8952
8953 The above is the same as:
8954 @example
8955 lutrgb="r=negval:g=negval:b=negval"
8956 lutyuv="y=negval:u=negval:v=negval"
8957 @end example
8958
8959 @item
8960 Negate luminance:
8961 @example
8962 lutyuv=y=negval
8963 @end example
8964
8965 @item
8966 Remove chroma components, turning the video into a graytone image:
8967 @example
8968 lutyuv="u=128:v=128"
8969 @end example
8970
8971 @item
8972 Apply a luma burning effect:
8973 @example
8974 lutyuv="y=2*val"
8975 @end example
8976
8977 @item
8978 Remove green and blue components:
8979 @example
8980 lutrgb="g=0:b=0"
8981 @end example
8982
8983 @item
8984 Set a constant alpha channel value on input:
8985 @example
8986 format=rgba,lutrgb=a="maxval-minval/2"
8987 @end example
8988
8989 @item
8990 Correct luminance gamma by a factor of 0.5:
8991 @example
8992 lutyuv=y=gammaval(0.5)
8993 @end example
8994
8995 @item
8996 Discard least significant bits of luma:
8997 @example
8998 lutyuv=y='bitand(val, 128+64+32)'
8999 @end example
9000 @end itemize
9001
9002 @section maskedmerge
9003
9004 Merge the first input stream with the second input stream using per pixel
9005 weights in the third input stream.
9006
9007 A value of 0 in the third stream pixel component means that pixel component
9008 from first stream is returned unchanged, while maximum value (eg. 255 for
9009 8-bit videos) means that pixel component from second stream is returned
9010 unchanged. Intermediate values define the amount of merging between both
9011 input stream's pixel components.
9012
9013 This filter accepts the following options:
9014 @table @option
9015 @item planes
9016 Set which planes will be processed as bitmap, unprocessed planes will be
9017 copied from first stream.
9018 By default value 0xf, all planes will be processed.
9019 @end table
9020
9021 @section mcdeint
9022
9023 Apply motion-compensation deinterlacing.
9024
9025 It needs one field per frame as input and must thus be used together
9026 with yadif=1/3 or equivalent.
9027
9028 This filter accepts the following options:
9029 @table @option
9030 @item mode
9031 Set the deinterlacing mode.
9032
9033 It accepts one of the following values:
9034 @table @samp
9035 @item fast
9036 @item medium
9037 @item slow
9038 use iterative motion estimation
9039 @item extra_slow
9040 like @samp{slow}, but use multiple reference frames.
9041 @end table
9042 Default value is @samp{fast}.
9043
9044 @item parity
9045 Set the picture field parity assumed for the input video. It must be
9046 one of the following values:
9047
9048 @table @samp
9049 @item 0, tff
9050 assume top field first
9051 @item 1, bff
9052 assume bottom field first
9053 @end table
9054
9055 Default value is @samp{bff}.
9056
9057 @item qp
9058 Set per-block quantization parameter (QP) used by the internal
9059 encoder.
9060
9061 Higher values should result in a smoother motion vector field but less
9062 optimal individual vectors. Default value is 1.
9063 @end table
9064
9065 @section mergeplanes
9066
9067 Merge color channel components from several video streams.
9068
9069 The filter accepts up to 4 input streams, and merge selected input
9070 planes to the output video.
9071
9072 This filter accepts the following options:
9073 @table @option
9074 @item mapping
9075 Set input to output plane mapping. Default is @code{0}.
9076
9077 The mappings is specified as a bitmap. It should be specified as a
9078 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9079 mapping for the first plane of the output stream. 'A' sets the number of
9080 the input stream to use (from 0 to 3), and 'a' the plane number of the
9081 corresponding input to use (from 0 to 3). The rest of the mappings is
9082 similar, 'Bb' describes the mapping for the output stream second
9083 plane, 'Cc' describes the mapping for the output stream third plane and
9084 'Dd' describes the mapping for the output stream fourth plane.
9085
9086 @item format
9087 Set output pixel format. Default is @code{yuva444p}.
9088 @end table
9089
9090 @subsection Examples
9091
9092 @itemize
9093 @item
9094 Merge three gray video streams of same width and height into single video stream:
9095 @example
9096 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9097 @end example
9098
9099 @item
9100 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9101 @example
9102 [a0][a1]mergeplanes=0x00010210:yuva444p
9103 @end example
9104
9105 @item
9106 Swap Y and A plane in yuva444p stream:
9107 @example
9108 format=yuva444p,mergeplanes=0x03010200:yuva444p
9109 @end example
9110
9111 @item
9112 Swap U and V plane in yuv420p stream:
9113 @example
9114 format=yuv420p,mergeplanes=0x000201:yuv420p
9115 @end example
9116
9117 @item
9118 Cast a rgb24 clip to yuv444p:
9119 @example
9120 format=rgb24,mergeplanes=0x000102:yuv444p
9121 @end example
9122 @end itemize
9123
9124 @section metadata, ametadata
9125
9126 Manipulate frame metadata.
9127
9128 This filter accepts the following options:
9129
9130 @table @option
9131 @item mode
9132 Set mode of operation of the filter.
9133
9134 Can be one of the following:
9135
9136 @table @samp
9137 @item select
9138 If both @code{value} and @code{key} is set, select frames
9139 which have such metadata. If only @code{key} is set, select
9140 every frame that has such key in metadata.
9141
9142 @item add
9143 Add new metadata @code{key} and @code{value}. If key is already available
9144 do nothing.
9145
9146 @item modify
9147 Modify value of already present key.
9148
9149 @item delete
9150 If @code{value} is set, delete only keys that have such value.
9151 Otherwise, delete key.
9152
9153 @item print
9154 Print key and its value if metadata was found. If @code{key} is not set print all
9155 metadata values available in frame.
9156 @end table
9157
9158 @item key
9159 Set key used with all modes. Must be set for all modes except @code{print}.
9160
9161 @item value
9162 Set metadata value which will be used. This option is mandatory for
9163 @code{modify} and @code{add} mode.
9164
9165 @item function
9166 Which function to use when comparing metadata value and @code{value}.
9167
9168 Can be one of following:
9169
9170 @table @samp
9171 @item same_str
9172 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
9173
9174 @item starts_with
9175 Values are interpreted as strings, returns true if metadata value starts with
9176 the @code{value} option string.
9177
9178 @item less
9179 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
9180
9181 @item equal
9182 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
9183
9184 @item greater
9185 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
9186
9187 @item expr
9188 Values are interpreted as floats, returns true if expression from option @code{expr}
9189 evaluates to true.
9190 @end table
9191
9192 @item expr
9193 Set expression which is used when @code{function} is set to @code{expr}.
9194 The expression is evaluated through the eval API and can contain the following
9195 constants:
9196
9197 @table @option
9198 @item VALUE1
9199 Float representation of @code{value} from metadata key.
9200
9201 @item VALUE2
9202 Float representation of @code{value} as supplied by user in @code{value} option.
9203 @end table
9204
9205 @item file
9206 If specified in @code{print} mode, output is written to the named file. When
9207 filename equals "-" data is written to standard output.
9208 If @code{file} option is not set, output is written to the log with AV_LOG_INFO
9209 loglevel.
9210 @end table
9211
9212 @subsection Examples
9213
9214 @itemize
9215 @item
9216 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
9217 between 0 and 1.
9218 @example
9219 @end example
9220 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
9221 @end itemize
9222
9223 @section mpdecimate
9224
9225 Drop frames that do not differ greatly from the previous frame in
9226 order to reduce frame rate.
9227
9228 The main use of this filter is for very-low-bitrate encoding
9229 (e.g. streaming over dialup modem), but it could in theory be used for
9230 fixing movies that were inverse-telecined incorrectly.
9231
9232 A description of the accepted options follows.
9233
9234 @table @option
9235 @item max
9236 Set the maximum number of consecutive frames which can be dropped (if
9237 positive), or the minimum interval between dropped frames (if
9238 negative). If the value is 0, the frame is dropped unregarding the
9239 number of previous sequentially dropped frames.
9240
9241 Default value is 0.
9242
9243 @item hi
9244 @item lo
9245 @item frac
9246 Set the dropping threshold values.
9247
9248 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9249 represent actual pixel value differences, so a threshold of 64
9250 corresponds to 1 unit of difference for each pixel, or the same spread
9251 out differently over the block.
9252
9253 A frame is a candidate for dropping if no 8x8 blocks differ by more
9254 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9255 meaning the whole image) differ by more than a threshold of @option{lo}.
9256
9257 Default value for @option{hi} is 64*12, default value for @option{lo} is
9258 64*5, and default value for @option{frac} is 0.33.
9259 @end table
9260
9261
9262 @section negate
9263
9264 Negate input video.
9265
9266 It accepts an integer in input; if non-zero it negates the
9267 alpha component (if available). The default value in input is 0.
9268
9269 @section nnedi
9270
9271 Deinterlace video using neural network edge directed interpolation.
9272
9273 This filter accepts the following options:
9274
9275 @table @option
9276 @item weights
9277 Mandatory option, without binary file filter can not work.
9278 Currently file can be found here:
9279 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9280
9281 @item deint
9282 Set which frames to deinterlace, by default it is @code{all}.
9283 Can be @code{all} or @code{interlaced}.
9284
9285 @item field
9286 Set mode of operation.
9287
9288 Can be one of the following:
9289
9290 @table @samp
9291 @item af
9292 Use frame flags, both fields.
9293 @item a
9294 Use frame flags, single field.
9295 @item t
9296 Use top field only.
9297 @item b
9298 Use bottom field only.
9299 @item tf
9300 Use both fields, top first.
9301 @item bf
9302 Use both fields, bottom first.
9303 @end table
9304
9305 @item planes
9306 Set which planes to process, by default filter process all frames.
9307
9308 @item nsize
9309 Set size of local neighborhood around each pixel, used by the predictor neural
9310 network.
9311
9312 Can be one of the following:
9313
9314 @table @samp
9315 @item s8x6
9316 @item s16x6
9317 @item s32x6
9318 @item s48x6
9319 @item s8x4
9320 @item s16x4
9321 @item s32x4
9322 @end table
9323
9324 @item nns
9325 Set the number of neurons in predicctor neural network.
9326 Can be one of the following:
9327
9328 @table @samp
9329 @item n16
9330 @item n32
9331 @item n64
9332 @item n128
9333 @item n256
9334 @end table
9335
9336 @item qual
9337 Controls the number of different neural network predictions that are blended
9338 together to compute the final output value. Can be @code{fast}, default or
9339 @code{slow}.
9340
9341 @item etype
9342 Set which set of weights to use in the predictor.
9343 Can be one of the following:
9344
9345 @table @samp
9346 @item a
9347 weights trained to minimize absolute error
9348 @item s
9349 weights trained to minimize squared error
9350 @end table
9351
9352 @item pscrn
9353 Controls whether or not the prescreener neural network is used to decide
9354 which pixels should be processed by the predictor neural network and which
9355 can be handled by simple cubic interpolation.
9356 The prescreener is trained to know whether cubic interpolation will be
9357 sufficient for a pixel or whether it should be predicted by the predictor nn.
9358 The computational complexity of the prescreener nn is much less than that of
9359 the predictor nn. Since most pixels can be handled by cubic interpolation,
9360 using the prescreener generally results in much faster processing.
9361 The prescreener is pretty accurate, so the difference between using it and not
9362 using it is almost always unnoticeable.
9363
9364 Can be one of the following:
9365
9366 @table @samp
9367 @item none
9368 @item original
9369 @item new
9370 @end table
9371
9372 Default is @code{new}.
9373
9374 @item fapprox
9375 Set various debugging flags.
9376 @end table
9377
9378 @section noformat
9379
9380 Force libavfilter not to use any of the specified pixel formats for the
9381 input to the next filter.
9382
9383 It accepts the following parameters:
9384 @table @option
9385
9386 @item pix_fmts
9387 A '|'-separated list of pixel format names, such as
9388 apix_fmts=yuv420p|monow|rgb24".
9389
9390 @end table
9391
9392 @subsection Examples
9393
9394 @itemize
9395 @item
9396 Force libavfilter to use a format different from @var{yuv420p} for the
9397 input to the vflip filter:
9398 @example
9399 noformat=pix_fmts=yuv420p,vflip
9400 @end example
9401
9402 @item
9403 Convert the input video to any of the formats not contained in the list:
9404 @example
9405 noformat=yuv420p|yuv444p|yuv410p
9406 @end example
9407 @end itemize
9408
9409 @section noise
9410
9411 Add noise on video input frame.
9412
9413 The filter accepts the following options:
9414
9415 @table @option
9416 @item all_seed
9417 @item c0_seed
9418 @item c1_seed
9419 @item c2_seed
9420 @item c3_seed
9421 Set noise seed for specific pixel component or all pixel components in case
9422 of @var{all_seed}. Default value is @code{123457}.
9423
9424 @item all_strength, alls
9425 @item c0_strength, c0s
9426 @item c1_strength, c1s
9427 @item c2_strength, c2s
9428 @item c3_strength, c3s
9429 Set noise strength for specific pixel component or all pixel components in case
9430 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9431
9432 @item all_flags, allf
9433 @item c0_flags, c0f
9434 @item c1_flags, c1f
9435 @item c2_flags, c2f
9436 @item c3_flags, c3f
9437 Set pixel component flags or set flags for all components if @var{all_flags}.
9438 Available values for component flags are:
9439 @table @samp
9440 @item a
9441 averaged temporal noise (smoother)
9442 @item p
9443 mix random noise with a (semi)regular pattern
9444 @item t
9445 temporal noise (noise pattern changes between frames)
9446 @item u
9447 uniform noise (gaussian otherwise)
9448 @end table
9449 @end table
9450
9451 @subsection Examples
9452
9453 Add temporal and uniform noise to input video:
9454 @example
9455 noise=alls=20:allf=t+u
9456 @end example
9457
9458 @section null
9459
9460 Pass the video source unchanged to the output.
9461
9462 @section ocr
9463 Optical Character Recognition
9464
9465 This filter uses Tesseract for optical character recognition.
9466
9467 It accepts the following options:
9468
9469 @table @option
9470 @item datapath
9471 Set datapath to tesseract data. Default is to use whatever was
9472 set at installation.
9473
9474 @item language
9475 Set language, default is "eng".
9476
9477 @item whitelist
9478 Set character whitelist.
9479
9480 @item blacklist
9481 Set character blacklist.
9482 @end table
9483
9484 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9485
9486 @section ocv
9487
9488 Apply a video transform using libopencv.
9489
9490 To enable this filter, install the libopencv library and headers and
9491 configure FFmpeg with @code{--enable-libopencv}.
9492
9493 It accepts the following parameters:
9494
9495 @table @option
9496
9497 @item filter_name
9498 The name of the libopencv filter to apply.
9499
9500 @item filter_params
9501 The parameters to pass to the libopencv filter. If not specified, the default
9502 values are assumed.
9503
9504 @end table
9505
9506 Refer to the official libopencv documentation for more precise
9507 information:
9508 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9509
9510 Several libopencv filters are supported; see the following subsections.
9511
9512 @anchor{dilate}
9513 @subsection dilate
9514
9515 Dilate an image by using a specific structuring element.
9516 It corresponds to the libopencv function @code{cvDilate}.
9517
9518 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9519
9520 @var{struct_el} represents a structuring element, and has the syntax:
9521 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9522
9523 @var{cols} and @var{rows} represent the number of columns and rows of
9524 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9525 point, and @var{shape} the shape for the structuring element. @var{shape}
9526 must be "rect", "cross", "ellipse", or "custom".
9527
9528 If the value for @var{shape} is "custom", it must be followed by a
9529 string of the form "=@var{filename}". The file with name
9530 @var{filename} is assumed to represent a binary image, with each
9531 printable character corresponding to a bright pixel. When a custom
9532 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9533 or columns and rows of the read file are assumed instead.
9534
9535 The default value for @var{struct_el} is "3x3+0x0/rect".
9536
9537 @var{nb_iterations} specifies the number of times the transform is
9538 applied to the image, and defaults to 1.
9539
9540 Some examples:
9541 @example
9542 # Use the default values
9543 ocv=dilate
9544
9545 # Dilate using a structuring element with a 5x5 cross, iterating two times
9546 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9547
9548 # Read the shape from the file diamond.shape, iterating two times.
9549 # The file diamond.shape may contain a pattern of characters like this
9550 #   *
9551 #  ***
9552 # *****
9553 #  ***
9554 #   *
9555 # The specified columns and rows are ignored
9556 # but the anchor point coordinates are not
9557 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9558 @end example
9559
9560 @subsection erode
9561
9562 Erode an image by using a specific structuring element.
9563 It corresponds to the libopencv function @code{cvErode}.
9564
9565 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9566 with the same syntax and semantics as the @ref{dilate} filter.
9567
9568 @subsection smooth
9569
9570 Smooth the input video.
9571
9572 The filter takes the following parameters:
9573 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9574
9575 @var{type} is the type of smooth filter to apply, and must be one of
9576 the following values: "blur", "blur_no_scale", "median", "gaussian",
9577 or "bilateral". The default value is "gaussian".
9578
9579 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9580 depend on the smooth type. @var{param1} and
9581 @var{param2} accept integer positive values or 0. @var{param3} and
9582 @var{param4} accept floating point values.
9583
9584 The default value for @var{param1} is 3. The default value for the
9585 other parameters is 0.
9586
9587 These parameters correspond to the parameters assigned to the
9588 libopencv function @code{cvSmooth}.
9589
9590 @anchor{overlay}
9591 @section overlay
9592
9593 Overlay one video on top of another.
9594
9595 It takes two inputs and has one output. The first input is the "main"
9596 video on which the second input is overlaid.
9597
9598 It accepts the following parameters:
9599
9600 A description of the accepted options follows.
9601
9602 @table @option
9603 @item x
9604 @item y
9605 Set the expression for the x and y coordinates of the overlaid video
9606 on the main video. Default value is "0" for both expressions. In case
9607 the expression is invalid, it is set to a huge value (meaning that the
9608 overlay will not be displayed within the output visible area).
9609
9610 @item eof_action
9611 The action to take when EOF is encountered on the secondary input; it accepts
9612 one of the following values:
9613
9614 @table @option
9615 @item repeat
9616 Repeat the last frame (the default).
9617 @item endall
9618 End both streams.
9619 @item pass
9620 Pass the main input through.
9621 @end table
9622
9623 @item eval
9624 Set when the expressions for @option{x}, and @option{y} are evaluated.
9625
9626 It accepts the following values:
9627 @table @samp
9628 @item init
9629 only evaluate expressions once during the filter initialization or
9630 when a command is processed
9631
9632 @item frame
9633 evaluate expressions for each incoming frame
9634 @end table
9635
9636 Default value is @samp{frame}.
9637
9638 @item shortest
9639 If set to 1, force the output to terminate when the shortest input
9640 terminates. Default value is 0.
9641
9642 @item format
9643 Set the format for the output video.
9644
9645 It accepts the following values:
9646 @table @samp
9647 @item yuv420
9648 force YUV420 output
9649
9650 @item yuv422
9651 force YUV422 output
9652
9653 @item yuv444
9654 force YUV444 output
9655
9656 @item rgb
9657 force RGB output
9658 @end table
9659
9660 Default value is @samp{yuv420}.
9661
9662 @item rgb @emph{(deprecated)}
9663 If set to 1, force the filter to accept inputs in the RGB
9664 color space. Default value is 0. This option is deprecated, use
9665 @option{format} instead.
9666
9667 @item repeatlast
9668 If set to 1, force the filter to draw the last overlay frame over the
9669 main input until the end of the stream. A value of 0 disables this
9670 behavior. Default value is 1.
9671 @end table
9672
9673 The @option{x}, and @option{y} expressions can contain the following
9674 parameters.
9675
9676 @table @option
9677 @item main_w, W
9678 @item main_h, H
9679 The main input width and height.
9680
9681 @item overlay_w, w
9682 @item overlay_h, h
9683 The overlay input width and height.
9684
9685 @item x
9686 @item y
9687 The computed values for @var{x} and @var{y}. They are evaluated for
9688 each new frame.
9689
9690 @item hsub
9691 @item vsub
9692 horizontal and vertical chroma subsample values of the output
9693 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9694 @var{vsub} is 1.
9695
9696 @item n
9697 the number of input frame, starting from 0
9698
9699 @item pos
9700 the position in the file of the input frame, NAN if unknown
9701
9702 @item t
9703 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9704
9705 @end table
9706
9707 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9708 when evaluation is done @emph{per frame}, and will evaluate to NAN
9709 when @option{eval} is set to @samp{init}.
9710
9711 Be aware that frames are taken from each input video in timestamp
9712 order, hence, if their initial timestamps differ, it is a good idea
9713 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9714 have them begin in the same zero timestamp, as the example for
9715 the @var{movie} filter does.
9716
9717 You can chain together more overlays but you should test the
9718 efficiency of such approach.
9719
9720 @subsection Commands
9721
9722 This filter supports the following commands:
9723 @table @option
9724 @item x
9725 @item y
9726 Modify the x and y of the overlay input.
9727 The command accepts the same syntax of the corresponding option.
9728
9729 If the specified expression is not valid, it is kept at its current
9730 value.
9731 @end table
9732
9733 @subsection Examples
9734
9735 @itemize
9736 @item
9737 Draw the overlay at 10 pixels from the bottom right corner of the main
9738 video:
9739 @example
9740 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9741 @end example
9742
9743 Using named options the example above becomes:
9744 @example
9745 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9746 @end example
9747
9748 @item
9749 Insert a transparent PNG logo in the bottom left corner of the input,
9750 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9751 @example
9752 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9753 @end example
9754
9755 @item
9756 Insert 2 different transparent PNG logos (second logo on bottom
9757 right corner) using the @command{ffmpeg} tool:
9758 @example
9759 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
9760 @end example
9761
9762 @item
9763 Add a transparent color layer on top of the main video; @code{WxH}
9764 must specify the size of the main input to the overlay filter:
9765 @example
9766 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9767 @end example
9768
9769 @item
9770 Play an original video and a filtered version (here with the deshake
9771 filter) side by side using the @command{ffplay} tool:
9772 @example
9773 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9774 @end example
9775
9776 The above command is the same as:
9777 @example
9778 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9779 @end example
9780
9781 @item
9782 Make a sliding overlay appearing from the left to the right top part of the
9783 screen starting since time 2:
9784 @example
9785 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9786 @end example
9787
9788 @item
9789 Compose output by putting two input videos side to side:
9790 @example
9791 ffmpeg -i left.avi -i right.avi -filter_complex "
9792 nullsrc=size=200x100 [background];
9793 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9794 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9795 [background][left]       overlay=shortest=1       [background+left];
9796 [background+left][right] overlay=shortest=1:x=100 [left+right]
9797 "
9798 @end example
9799
9800 @item
9801 Mask 10-20 seconds of a video by applying the delogo filter to a section
9802 @example
9803 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9804 -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]'
9805 masked.avi
9806 @end example
9807
9808 @item
9809 Chain several overlays in cascade:
9810 @example
9811 nullsrc=s=200x200 [bg];
9812 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9813 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9814 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9815 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9816 [in3] null,       [mid2] overlay=100:100 [out0]
9817 @end example
9818
9819 @end itemize
9820
9821 @section owdenoise
9822
9823 Apply Overcomplete Wavelet denoiser.
9824
9825 The filter accepts the following options:
9826
9827 @table @option
9828 @item depth
9829 Set depth.
9830
9831 Larger depth values will denoise lower frequency components more, but
9832 slow down filtering.
9833
9834 Must be an int in the range 8-16, default is @code{8}.
9835
9836 @item luma_strength, ls
9837 Set luma strength.
9838
9839 Must be a double value in the range 0-1000, default is @code{1.0}.
9840
9841 @item chroma_strength, cs
9842 Set chroma strength.
9843
9844 Must be a double value in the range 0-1000, default is @code{1.0}.
9845 @end table
9846
9847 @anchor{pad}
9848 @section pad
9849
9850 Add paddings to the input image, and place the original input at the
9851 provided @var{x}, @var{y} coordinates.
9852
9853 It accepts the following parameters:
9854
9855 @table @option
9856 @item width, w
9857 @item height, h
9858 Specify an expression for the size of the output image with the
9859 paddings added. If the value for @var{width} or @var{height} is 0, the
9860 corresponding input size is used for the output.
9861
9862 The @var{width} expression can reference the value set by the
9863 @var{height} expression, and vice versa.
9864
9865 The default value of @var{width} and @var{height} is 0.
9866
9867 @item x
9868 @item y
9869 Specify the offsets to place the input image at within the padded area,
9870 with respect to the top/left border of the output image.
9871
9872 The @var{x} expression can reference the value set by the @var{y}
9873 expression, and vice versa.
9874
9875 The default value of @var{x} and @var{y} is 0.
9876
9877 @item color
9878 Specify the color of the padded area. For the syntax of this option,
9879 check the "Color" section in the ffmpeg-utils manual.
9880
9881 The default value of @var{color} is "black".
9882 @end table
9883
9884 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
9885 options are expressions containing the following constants:
9886
9887 @table @option
9888 @item in_w
9889 @item in_h
9890 The input video width and height.
9891
9892 @item iw
9893 @item ih
9894 These are the same as @var{in_w} and @var{in_h}.
9895
9896 @item out_w
9897 @item out_h
9898 The output width and height (the size of the padded area), as
9899 specified by the @var{width} and @var{height} expressions.
9900
9901 @item ow
9902 @item oh
9903 These are the same as @var{out_w} and @var{out_h}.
9904
9905 @item x
9906 @item y
9907 The x and y offsets as specified by the @var{x} and @var{y}
9908 expressions, or NAN if not yet specified.
9909
9910 @item a
9911 same as @var{iw} / @var{ih}
9912
9913 @item sar
9914 input sample aspect ratio
9915
9916 @item dar
9917 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
9918
9919 @item hsub
9920 @item vsub
9921 The horizontal and vertical chroma subsample values. For example for the
9922 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9923 @end table
9924
9925 @subsection Examples
9926
9927 @itemize
9928 @item
9929 Add paddings with the color "violet" to the input video. The output video
9930 size is 640x480, and the top-left corner of the input video is placed at
9931 column 0, row 40
9932 @example
9933 pad=640:480:0:40:violet
9934 @end example
9935
9936 The example above is equivalent to the following command:
9937 @example
9938 pad=width=640:height=480:x=0:y=40:color=violet
9939 @end example
9940
9941 @item
9942 Pad the input to get an output with dimensions increased by 3/2,
9943 and put the input video at the center of the padded area:
9944 @example
9945 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
9946 @end example
9947
9948 @item
9949 Pad the input to get a squared output with size equal to the maximum
9950 value between the input width and height, and put the input video at
9951 the center of the padded area:
9952 @example
9953 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
9954 @end example
9955
9956 @item
9957 Pad the input to get a final w/h ratio of 16:9:
9958 @example
9959 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
9960 @end example
9961
9962 @item
9963 In case of anamorphic video, in order to set the output display aspect
9964 correctly, it is necessary to use @var{sar} in the expression,
9965 according to the relation:
9966 @example
9967 (ih * X / ih) * sar = output_dar
9968 X = output_dar / sar
9969 @end example
9970
9971 Thus the previous example needs to be modified to:
9972 @example
9973 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
9974 @end example
9975
9976 @item
9977 Double the output size and put the input video in the bottom-right
9978 corner of the output padded area:
9979 @example
9980 pad="2*iw:2*ih:ow-iw:oh-ih"
9981 @end example
9982 @end itemize
9983
9984 @anchor{palettegen}
9985 @section palettegen
9986
9987 Generate one palette for a whole video stream.
9988
9989 It accepts the following options:
9990
9991 @table @option
9992 @item max_colors
9993 Set the maximum number of colors to quantize in the palette.
9994 Note: the palette will still contain 256 colors; the unused palette entries
9995 will be black.
9996
9997 @item reserve_transparent
9998 Create a palette of 255 colors maximum and reserve the last one for
9999 transparency. Reserving the transparency color is useful for GIF optimization.
10000 If not set, the maximum of colors in the palette will be 256. You probably want
10001 to disable this option for a standalone image.
10002 Set by default.
10003
10004 @item stats_mode
10005 Set statistics mode.
10006
10007 It accepts the following values:
10008 @table @samp
10009 @item full
10010 Compute full frame histograms.
10011 @item diff
10012 Compute histograms only for the part that differs from previous frame. This
10013 might be relevant to give more importance to the moving part of your input if
10014 the background is static.
10015 @end table
10016
10017 Default value is @var{full}.
10018 @end table
10019
10020 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10021 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10022 color quantization of the palette. This information is also visible at
10023 @var{info} logging level.
10024
10025 @subsection Examples
10026
10027 @itemize
10028 @item
10029 Generate a representative palette of a given video using @command{ffmpeg}:
10030 @example
10031 ffmpeg -i input.mkv -vf palettegen palette.png
10032 @end example
10033 @end itemize
10034
10035 @section paletteuse
10036
10037 Use a palette to downsample an input video stream.
10038
10039 The filter takes two inputs: one video stream and a palette. The palette must
10040 be a 256 pixels image.
10041
10042 It accepts the following options:
10043
10044 @table @option
10045 @item dither
10046 Select dithering mode. Available algorithms are:
10047 @table @samp
10048 @item bayer
10049 Ordered 8x8 bayer dithering (deterministic)
10050 @item heckbert
10051 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10052 Note: this dithering is sometimes considered "wrong" and is included as a
10053 reference.
10054 @item floyd_steinberg
10055 Floyd and Steingberg dithering (error diffusion)
10056 @item sierra2
10057 Frankie Sierra dithering v2 (error diffusion)
10058 @item sierra2_4a
10059 Frankie Sierra dithering v2 "Lite" (error diffusion)
10060 @end table
10061
10062 Default is @var{sierra2_4a}.
10063
10064 @item bayer_scale
10065 When @var{bayer} dithering is selected, this option defines the scale of the
10066 pattern (how much the crosshatch pattern is visible). A low value means more
10067 visible pattern for less banding, and higher value means less visible pattern
10068 at the cost of more banding.
10069
10070 The option must be an integer value in the range [0,5]. Default is @var{2}.
10071
10072 @item diff_mode
10073 If set, define the zone to process
10074
10075 @table @samp
10076 @item rectangle
10077 Only the changing rectangle will be reprocessed. This is similar to GIF
10078 cropping/offsetting compression mechanism. This option can be useful for speed
10079 if only a part of the image is changing, and has use cases such as limiting the
10080 scope of the error diffusal @option{dither} to the rectangle that bounds the
10081 moving scene (it leads to more deterministic output if the scene doesn't change
10082 much, and as a result less moving noise and better GIF compression).
10083 @end table
10084
10085 Default is @var{none}.
10086 @end table
10087
10088 @subsection Examples
10089
10090 @itemize
10091 @item
10092 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10093 using @command{ffmpeg}:
10094 @example
10095 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10096 @end example
10097 @end itemize
10098
10099 @section perspective
10100
10101 Correct perspective of video not recorded perpendicular to the screen.
10102
10103 A description of the accepted parameters follows.
10104
10105 @table @option
10106 @item x0
10107 @item y0
10108 @item x1
10109 @item y1
10110 @item x2
10111 @item y2
10112 @item x3
10113 @item y3
10114 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10115 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10116 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10117 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10118 then the corners of the source will be sent to the specified coordinates.
10119
10120 The expressions can use the following variables:
10121
10122 @table @option
10123 @item W
10124 @item H
10125 the width and height of video frame.
10126 @end table
10127
10128 @item interpolation
10129 Set interpolation for perspective correction.
10130
10131 It accepts the following values:
10132 @table @samp
10133 @item linear
10134 @item cubic
10135 @end table
10136
10137 Default value is @samp{linear}.
10138
10139 @item sense
10140 Set interpretation of coordinate options.
10141
10142 It accepts the following values:
10143 @table @samp
10144 @item 0, source
10145
10146 Send point in the source specified by the given coordinates to
10147 the corners of the destination.
10148
10149 @item 1, destination
10150
10151 Send the corners of the source to the point in the destination specified
10152 by the given coordinates.
10153
10154 Default value is @samp{source}.
10155 @end table
10156 @end table
10157
10158 @section phase
10159
10160 Delay interlaced video by one field time so that the field order changes.
10161
10162 The intended use is to fix PAL movies that have been captured with the
10163 opposite field order to the film-to-video transfer.
10164
10165 A description of the accepted parameters follows.
10166
10167 @table @option
10168 @item mode
10169 Set phase mode.
10170
10171 It accepts the following values:
10172 @table @samp
10173 @item t
10174 Capture field order top-first, transfer bottom-first.
10175 Filter will delay the bottom field.
10176
10177 @item b
10178 Capture field order bottom-first, transfer top-first.
10179 Filter will delay the top field.
10180
10181 @item p
10182 Capture and transfer with the same field order. This mode only exists
10183 for the documentation of the other options to refer to, but if you
10184 actually select it, the filter will faithfully do nothing.
10185
10186 @item a
10187 Capture field order determined automatically by field flags, transfer
10188 opposite.
10189 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10190 basis using field flags. If no field information is available,
10191 then this works just like @samp{u}.
10192
10193 @item u
10194 Capture unknown or varying, transfer opposite.
10195 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10196 analyzing the images and selecting the alternative that produces best
10197 match between the fields.
10198
10199 @item T
10200 Capture top-first, transfer unknown or varying.
10201 Filter selects among @samp{t} and @samp{p} using image analysis.
10202
10203 @item B
10204 Capture bottom-first, transfer unknown or varying.
10205 Filter selects among @samp{b} and @samp{p} using image analysis.
10206
10207 @item A
10208 Capture determined by field flags, transfer unknown or varying.
10209 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10210 image analysis. If no field information is available, then this works just
10211 like @samp{U}. This is the default mode.
10212
10213 @item U
10214 Both capture and transfer unknown or varying.
10215 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10216 @end table
10217 @end table
10218
10219 @section pixdesctest
10220
10221 Pixel format descriptor test filter, mainly useful for internal
10222 testing. The output video should be equal to the input video.
10223
10224 For example:
10225 @example
10226 format=monow, pixdesctest
10227 @end example
10228
10229 can be used to test the monowhite pixel format descriptor definition.
10230
10231 @section pp
10232
10233 Enable the specified chain of postprocessing subfilters using libpostproc. This
10234 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10235 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10236 Each subfilter and some options have a short and a long name that can be used
10237 interchangeably, i.e. dr/dering are the same.
10238
10239 The filters accept the following options:
10240
10241 @table @option
10242 @item subfilters
10243 Set postprocessing subfilters string.
10244 @end table
10245
10246 All subfilters share common options to determine their scope:
10247
10248 @table @option
10249 @item a/autoq
10250 Honor the quality commands for this subfilter.
10251
10252 @item c/chrom
10253 Do chrominance filtering, too (default).
10254
10255 @item y/nochrom
10256 Do luminance filtering only (no chrominance).
10257
10258 @item n/noluma
10259 Do chrominance filtering only (no luminance).
10260 @end table
10261
10262 These options can be appended after the subfilter name, separated by a '|'.
10263
10264 Available subfilters are:
10265
10266 @table @option
10267 @item hb/hdeblock[|difference[|flatness]]
10268 Horizontal deblocking filter
10269 @table @option
10270 @item difference
10271 Difference factor where higher values mean more deblocking (default: @code{32}).
10272 @item flatness
10273 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10274 @end table
10275
10276 @item vb/vdeblock[|difference[|flatness]]
10277 Vertical deblocking filter
10278 @table @option
10279 @item difference
10280 Difference factor where higher values mean more deblocking (default: @code{32}).
10281 @item flatness
10282 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10283 @end table
10284
10285 @item ha/hadeblock[|difference[|flatness]]
10286 Accurate horizontal deblocking filter
10287 @table @option
10288 @item difference
10289 Difference factor where higher values mean more deblocking (default: @code{32}).
10290 @item flatness
10291 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10292 @end table
10293
10294 @item va/vadeblock[|difference[|flatness]]
10295 Accurate vertical deblocking filter
10296 @table @option
10297 @item difference
10298 Difference factor where higher values mean more deblocking (default: @code{32}).
10299 @item flatness
10300 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10301 @end table
10302 @end table
10303
10304 The horizontal and vertical deblocking filters share the difference and
10305 flatness values so you cannot set different horizontal and vertical
10306 thresholds.
10307
10308 @table @option
10309 @item h1/x1hdeblock
10310 Experimental horizontal deblocking filter
10311
10312 @item v1/x1vdeblock
10313 Experimental vertical deblocking filter
10314
10315 @item dr/dering
10316 Deringing filter
10317
10318 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10319 @table @option
10320 @item threshold1
10321 larger -> stronger filtering
10322 @item threshold2
10323 larger -> stronger filtering
10324 @item threshold3
10325 larger -> stronger filtering
10326 @end table
10327
10328 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10329 @table @option
10330 @item f/fullyrange
10331 Stretch luminance to @code{0-255}.
10332 @end table
10333
10334 @item lb/linblenddeint
10335 Linear blend deinterlacing filter that deinterlaces the given block by
10336 filtering all lines with a @code{(1 2 1)} filter.
10337
10338 @item li/linipoldeint
10339 Linear interpolating deinterlacing filter that deinterlaces the given block by
10340 linearly interpolating every second line.
10341
10342 @item ci/cubicipoldeint
10343 Cubic interpolating deinterlacing filter deinterlaces the given block by
10344 cubically interpolating every second line.
10345
10346 @item md/mediandeint
10347 Median deinterlacing filter that deinterlaces the given block by applying a
10348 median filter to every second line.
10349
10350 @item fd/ffmpegdeint
10351 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10352 second line with a @code{(-1 4 2 4 -1)} filter.
10353
10354 @item l5/lowpass5
10355 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10356 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10357
10358 @item fq/forceQuant[|quantizer]
10359 Overrides the quantizer table from the input with the constant quantizer you
10360 specify.
10361 @table @option
10362 @item quantizer
10363 Quantizer to use
10364 @end table
10365
10366 @item de/default
10367 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10368
10369 @item fa/fast
10370 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10371
10372 @item ac
10373 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10374 @end table
10375
10376 @subsection Examples
10377
10378 @itemize
10379 @item
10380 Apply horizontal and vertical deblocking, deringing and automatic
10381 brightness/contrast:
10382 @example
10383 pp=hb/vb/dr/al
10384 @end example
10385
10386 @item
10387 Apply default filters without brightness/contrast correction:
10388 @example
10389 pp=de/-al
10390 @end example
10391
10392 @item
10393 Apply default filters and temporal denoiser:
10394 @example
10395 pp=default/tmpnoise|1|2|3
10396 @end example
10397
10398 @item
10399 Apply deblocking on luminance only, and switch vertical deblocking on or off
10400 automatically depending on available CPU time:
10401 @example
10402 pp=hb|y/vb|a
10403 @end example
10404 @end itemize
10405
10406 @section pp7
10407 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10408 similar to spp = 6 with 7 point DCT, where only the center sample is
10409 used after IDCT.
10410
10411 The filter accepts the following options:
10412
10413 @table @option
10414 @item qp
10415 Force a constant quantization parameter. It accepts an integer in range
10416 0 to 63. If not set, the filter will use the QP from the video stream
10417 (if available).
10418
10419 @item mode
10420 Set thresholding mode. Available modes are:
10421
10422 @table @samp
10423 @item hard
10424 Set hard thresholding.
10425 @item soft
10426 Set soft thresholding (better de-ringing effect, but likely blurrier).
10427 @item medium
10428 Set medium thresholding (good results, default).
10429 @end table
10430 @end table
10431
10432 @section psnr
10433
10434 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10435 Ratio) between two input videos.
10436
10437 This filter takes in input two input videos, the first input is
10438 considered the "main" source and is passed unchanged to the
10439 output. The second input is used as a "reference" video for computing
10440 the PSNR.
10441
10442 Both video inputs must have the same resolution and pixel format for
10443 this filter to work correctly. Also it assumes that both inputs
10444 have the same number of frames, which are compared one by one.
10445
10446 The obtained average PSNR is printed through the logging system.
10447
10448 The filter stores the accumulated MSE (mean squared error) of each
10449 frame, and at the end of the processing it is averaged across all frames
10450 equally, and the following formula is applied to obtain the PSNR:
10451
10452 @example
10453 PSNR = 10*log10(MAX^2/MSE)
10454 @end example
10455
10456 Where MAX is the average of the maximum values of each component of the
10457 image.
10458
10459 The description of the accepted parameters follows.
10460
10461 @table @option
10462 @item stats_file, f
10463 If specified the filter will use the named file to save the PSNR of
10464 each individual frame. When filename equals "-" the data is sent to
10465 standard output.
10466 @end table
10467
10468 The file printed if @var{stats_file} is selected, contains a sequence of
10469 key/value pairs of the form @var{key}:@var{value} for each compared
10470 couple of frames.
10471
10472 A description of each shown parameter follows:
10473
10474 @table @option
10475 @item n
10476 sequential number of the input frame, starting from 1
10477
10478 @item mse_avg
10479 Mean Square Error pixel-by-pixel average difference of the compared
10480 frames, averaged over all the image components.
10481
10482 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10483 Mean Square Error pixel-by-pixel average difference of the compared
10484 frames for the component specified by the suffix.
10485
10486 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10487 Peak Signal to Noise ratio of the compared frames for the component
10488 specified by the suffix.
10489 @end table
10490
10491 For example:
10492 @example
10493 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10494 [main][ref] psnr="stats_file=stats.log" [out]
10495 @end example
10496
10497 On this example the input file being processed is compared with the
10498 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10499 is stored in @file{stats.log}.
10500
10501 @anchor{pullup}
10502 @section pullup
10503
10504 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10505 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10506 content.
10507
10508 The pullup filter is designed to take advantage of future context in making
10509 its decisions. This filter is stateless in the sense that it does not lock
10510 onto a pattern to follow, but it instead looks forward to the following
10511 fields in order to identify matches and rebuild progressive frames.
10512
10513 To produce content with an even framerate, insert the fps filter after
10514 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10515 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10516
10517 The filter accepts the following options:
10518
10519 @table @option
10520 @item jl
10521 @item jr
10522 @item jt
10523 @item jb
10524 These options set the amount of "junk" to ignore at the left, right, top, and
10525 bottom of the image, respectively. Left and right are in units of 8 pixels,
10526 while top and bottom are in units of 2 lines.
10527 The default is 8 pixels on each side.
10528
10529 @item sb
10530 Set the strict breaks. Setting this option to 1 will reduce the chances of
10531 filter generating an occasional mismatched frame, but it may also cause an
10532 excessive number of frames to be dropped during high motion sequences.
10533 Conversely, setting it to -1 will make filter match fields more easily.
10534 This may help processing of video where there is slight blurring between
10535 the fields, but may also cause there to be interlaced frames in the output.
10536 Default value is @code{0}.
10537
10538 @item mp
10539 Set the metric plane to use. It accepts the following values:
10540 @table @samp
10541 @item l
10542 Use luma plane.
10543
10544 @item u
10545 Use chroma blue plane.
10546
10547 @item v
10548 Use chroma red plane.
10549 @end table
10550
10551 This option may be set to use chroma plane instead of the default luma plane
10552 for doing filter's computations. This may improve accuracy on very clean
10553 source material, but more likely will decrease accuracy, especially if there
10554 is chroma noise (rainbow effect) or any grayscale video.
10555 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10556 load and make pullup usable in realtime on slow machines.
10557 @end table
10558
10559 For best results (without duplicated frames in the output file) it is
10560 necessary to change the output frame rate. For example, to inverse
10561 telecine NTSC input:
10562 @example
10563 ffmpeg -i input -vf pullup -r 24000/1001 ...
10564 @end example
10565
10566 @section qp
10567
10568 Change video quantization parameters (QP).
10569
10570 The filter accepts the following option:
10571
10572 @table @option
10573 @item qp
10574 Set expression for quantization parameter.
10575 @end table
10576
10577 The expression is evaluated through the eval API and can contain, among others,
10578 the following constants:
10579
10580 @table @var
10581 @item known
10582 1 if index is not 129, 0 otherwise.
10583
10584 @item qp
10585 Sequentional index starting from -129 to 128.
10586 @end table
10587
10588 @subsection Examples
10589
10590 @itemize
10591 @item
10592 Some equation like:
10593 @example
10594 qp=2+2*sin(PI*qp)
10595 @end example
10596 @end itemize
10597
10598 @section random
10599
10600 Flush video frames from internal cache of frames into a random order.
10601 No frame is discarded.
10602 Inspired by @ref{frei0r} nervous filter.
10603
10604 @table @option
10605 @item frames
10606 Set size in number of frames of internal cache, in range from @code{2} to
10607 @code{512}. Default is @code{30}.
10608
10609 @item seed
10610 Set seed for random number generator, must be an integer included between
10611 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10612 less than @code{0}, the filter will try to use a good random seed on a
10613 best effort basis.
10614 @end table
10615
10616 @section remap
10617
10618 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10619
10620 Destination pixel at position (X, Y) will be picked from source (x, y) position
10621 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10622 value for pixel will be used for destination pixel.
10623
10624 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10625 will have Xmap/Ymap video stream dimensions.
10626 Xmap and Ymap input video streams are 16bit depth, single channel.
10627
10628 @section removegrain
10629
10630 The removegrain filter is a spatial denoiser for progressive video.
10631
10632 @table @option
10633 @item m0
10634 Set mode for the first plane.
10635
10636 @item m1
10637 Set mode for the second plane.
10638
10639 @item m2
10640 Set mode for the third plane.
10641
10642 @item m3
10643 Set mode for the fourth plane.
10644 @end table
10645
10646 Range of mode is from 0 to 24. Description of each mode follows:
10647
10648 @table @var
10649 @item 0
10650 Leave input plane unchanged. Default.
10651
10652 @item 1
10653 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10654
10655 @item 2
10656 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10657
10658 @item 3
10659 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10660
10661 @item 4
10662 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10663 This is equivalent to a median filter.
10664
10665 @item 5
10666 Line-sensitive clipping giving the minimal change.
10667
10668 @item 6
10669 Line-sensitive clipping, intermediate.
10670
10671 @item 7
10672 Line-sensitive clipping, intermediate.
10673
10674 @item 8
10675 Line-sensitive clipping, intermediate.
10676
10677 @item 9
10678 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10679
10680 @item 10
10681 Replaces the target pixel with the closest neighbour.
10682
10683 @item 11
10684 [1 2 1] horizontal and vertical kernel blur.
10685
10686 @item 12
10687 Same as mode 11.
10688
10689 @item 13
10690 Bob mode, interpolates top field from the line where the neighbours
10691 pixels are the closest.
10692
10693 @item 14
10694 Bob mode, interpolates bottom field from the line where the neighbours
10695 pixels are the closest.
10696
10697 @item 15
10698 Bob mode, interpolates top field. Same as 13 but with a more complicated
10699 interpolation formula.
10700
10701 @item 16
10702 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10703 interpolation formula.
10704
10705 @item 17
10706 Clips the pixel with the minimum and maximum of respectively the maximum and
10707 minimum of each pair of opposite neighbour pixels.
10708
10709 @item 18
10710 Line-sensitive clipping using opposite neighbours whose greatest distance from
10711 the current pixel is minimal.
10712
10713 @item 19
10714 Replaces the pixel with the average of its 8 neighbours.
10715
10716 @item 20
10717 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10718
10719 @item 21
10720 Clips pixels using the averages of opposite neighbour.
10721
10722 @item 22
10723 Same as mode 21 but simpler and faster.
10724
10725 @item 23
10726 Small edge and halo removal, but reputed useless.
10727
10728 @item 24
10729 Similar as 23.
10730 @end table
10731
10732 @section removelogo
10733
10734 Suppress a TV station logo, using an image file to determine which
10735 pixels comprise the logo. It works by filling in the pixels that
10736 comprise the logo with neighboring pixels.
10737
10738 The filter accepts the following options:
10739
10740 @table @option
10741 @item filename, f
10742 Set the filter bitmap file, which can be any image format supported by
10743 libavformat. The width and height of the image file must match those of the
10744 video stream being processed.
10745 @end table
10746
10747 Pixels in the provided bitmap image with a value of zero are not
10748 considered part of the logo, non-zero pixels are considered part of
10749 the logo. If you use white (255) for the logo and black (0) for the
10750 rest, you will be safe. For making the filter bitmap, it is
10751 recommended to take a screen capture of a black frame with the logo
10752 visible, and then using a threshold filter followed by the erode
10753 filter once or twice.
10754
10755 If needed, little splotches can be fixed manually. Remember that if
10756 logo pixels are not covered, the filter quality will be much
10757 reduced. Marking too many pixels as part of the logo does not hurt as
10758 much, but it will increase the amount of blurring needed to cover over
10759 the image and will destroy more information than necessary, and extra
10760 pixels will slow things down on a large logo.
10761
10762 @section repeatfields
10763
10764 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10765 fields based on its value.
10766
10767 @section reverse, areverse
10768
10769 Reverse a clip.
10770
10771 Warning: This filter requires memory to buffer the entire clip, so trimming
10772 is suggested.
10773
10774 @subsection Examples
10775
10776 @itemize
10777 @item
10778 Take the first 5 seconds of a clip, and reverse it.
10779 @example
10780 trim=end=5,reverse
10781 @end example
10782 @end itemize
10783
10784 @section rotate
10785
10786 Rotate video by an arbitrary angle expressed in radians.
10787
10788 The filter accepts the following options:
10789
10790 A description of the optional parameters follows.
10791 @table @option
10792 @item angle, a
10793 Set an expression for the angle by which to rotate the input video
10794 clockwise, expressed as a number of radians. A negative value will
10795 result in a counter-clockwise rotation. By default it is set to "0".
10796
10797 This expression is evaluated for each frame.
10798
10799 @item out_w, ow
10800 Set the output width expression, default value is "iw".
10801 This expression is evaluated just once during configuration.
10802
10803 @item out_h, oh
10804 Set the output height expression, default value is "ih".
10805 This expression is evaluated just once during configuration.
10806
10807 @item bilinear
10808 Enable bilinear interpolation if set to 1, a value of 0 disables
10809 it. Default value is 1.
10810
10811 @item fillcolor, c
10812 Set the color used to fill the output area not covered by the rotated
10813 image. For the general syntax of this option, check the "Color" section in the
10814 ffmpeg-utils manual. If the special value "none" is selected then no
10815 background is printed (useful for example if the background is never shown).
10816
10817 Default value is "black".
10818 @end table
10819
10820 The expressions for the angle and the output size can contain the
10821 following constants and functions:
10822
10823 @table @option
10824 @item n
10825 sequential number of the input frame, starting from 0. It is always NAN
10826 before the first frame is filtered.
10827
10828 @item t
10829 time in seconds of the input frame, it is set to 0 when the filter is
10830 configured. It is always NAN before the first frame is filtered.
10831
10832 @item hsub
10833 @item vsub
10834 horizontal and vertical chroma subsample values. For example for the
10835 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10836
10837 @item in_w, iw
10838 @item in_h, ih
10839 the input video width and height
10840
10841 @item out_w, ow
10842 @item out_h, oh
10843 the output width and height, that is the size of the padded area as
10844 specified by the @var{width} and @var{height} expressions
10845
10846 @item rotw(a)
10847 @item roth(a)
10848 the minimal width/height required for completely containing the input
10849 video rotated by @var{a} radians.
10850
10851 These are only available when computing the @option{out_w} and
10852 @option{out_h} expressions.
10853 @end table
10854
10855 @subsection Examples
10856
10857 @itemize
10858 @item
10859 Rotate the input by PI/6 radians clockwise:
10860 @example
10861 rotate=PI/6
10862 @end example
10863
10864 @item
10865 Rotate the input by PI/6 radians counter-clockwise:
10866 @example
10867 rotate=-PI/6
10868 @end example
10869
10870 @item
10871 Rotate the input by 45 degrees clockwise:
10872 @example
10873 rotate=45*PI/180
10874 @end example
10875
10876 @item
10877 Apply a constant rotation with period T, starting from an angle of PI/3:
10878 @example
10879 rotate=PI/3+2*PI*t/T
10880 @end example
10881
10882 @item
10883 Make the input video rotation oscillating with a period of T
10884 seconds and an amplitude of A radians:
10885 @example
10886 rotate=A*sin(2*PI/T*t)
10887 @end example
10888
10889 @item
10890 Rotate the video, output size is chosen so that the whole rotating
10891 input video is always completely contained in the output:
10892 @example
10893 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
10894 @end example
10895
10896 @item
10897 Rotate the video, reduce the output size so that no background is ever
10898 shown:
10899 @example
10900 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
10901 @end example
10902 @end itemize
10903
10904 @subsection Commands
10905
10906 The filter supports the following commands:
10907
10908 @table @option
10909 @item a, angle
10910 Set the angle expression.
10911 The command accepts the same syntax of the corresponding option.
10912
10913 If the specified expression is not valid, it is kept at its current
10914 value.
10915 @end table
10916
10917 @section sab
10918
10919 Apply Shape Adaptive Blur.
10920
10921 The filter accepts the following options:
10922
10923 @table @option
10924 @item luma_radius, lr
10925 Set luma blur filter strength, must be a value in range 0.1-4.0, default
10926 value is 1.0. A greater value will result in a more blurred image, and
10927 in slower processing.
10928
10929 @item luma_pre_filter_radius, lpfr
10930 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
10931 value is 1.0.
10932
10933 @item luma_strength, ls
10934 Set luma maximum difference between pixels to still be considered, must
10935 be a value in the 0.1-100.0 range, default value is 1.0.
10936
10937 @item chroma_radius, cr
10938 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
10939 greater value will result in a more blurred image, and in slower
10940 processing.
10941
10942 @item chroma_pre_filter_radius, cpfr
10943 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
10944
10945 @item chroma_strength, cs
10946 Set chroma maximum difference between pixels to still be considered,
10947 must be a value in the 0.1-100.0 range.
10948 @end table
10949
10950 Each chroma option value, if not explicitly specified, is set to the
10951 corresponding luma option value.
10952
10953 @anchor{scale}
10954 @section scale
10955
10956 Scale (resize) the input video, using the libswscale library.
10957
10958 The scale filter forces the output display aspect ratio to be the same
10959 of the input, by changing the output sample aspect ratio.
10960
10961 If the input image format is different from the format requested by
10962 the next filter, the scale filter will convert the input to the
10963 requested format.
10964
10965 @subsection Options
10966 The filter accepts the following options, or any of the options
10967 supported by the libswscale scaler.
10968
10969 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
10970 the complete list of scaler options.
10971
10972 @table @option
10973 @item width, w
10974 @item height, h
10975 Set the output video dimension expression. Default value is the input
10976 dimension.
10977
10978 If the value is 0, the input width is used for the output.
10979
10980 If one of the values is -1, the scale filter will use a value that
10981 maintains the aspect ratio of the input image, calculated from the
10982 other specified dimension. If both of them are -1, the input size is
10983 used
10984
10985 If one of the values is -n with n > 1, the scale filter will also use a value
10986 that maintains the aspect ratio of the input image, calculated from the other
10987 specified dimension. After that it will, however, make sure that the calculated
10988 dimension is divisible by n and adjust the value if necessary.
10989
10990 See below for the list of accepted constants for use in the dimension
10991 expression.
10992
10993 @item eval
10994 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
10995
10996 @table @samp
10997 @item init
10998 Only evaluate expressions once during the filter initialization or when a command is processed.
10999
11000 @item frame
11001 Evaluate expressions for each incoming frame.
11002
11003 @end table
11004
11005 Default value is @samp{init}.
11006
11007
11008 @item interl
11009 Set the interlacing mode. It accepts the following values:
11010
11011 @table @samp
11012 @item 1
11013 Force interlaced aware scaling.
11014
11015 @item 0
11016 Do not apply interlaced scaling.
11017
11018 @item -1
11019 Select interlaced aware scaling depending on whether the source frames
11020 are flagged as interlaced or not.
11021 @end table
11022
11023 Default value is @samp{0}.
11024
11025 @item flags
11026 Set libswscale scaling flags. See
11027 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11028 complete list of values. If not explicitly specified the filter applies
11029 the default flags.
11030
11031
11032 @item param0, param1
11033 Set libswscale input parameters for scaling algorithms that need them. See
11034 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11035 complete documentation. If not explicitly specified the filter applies
11036 empty parameters.
11037
11038
11039
11040 @item size, s
11041 Set the video size. For the syntax of this option, check the
11042 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11043
11044 @item in_color_matrix
11045 @item out_color_matrix
11046 Set in/output YCbCr color space type.
11047
11048 This allows the autodetected value to be overridden as well as allows forcing
11049 a specific value used for the output and encoder.
11050
11051 If not specified, the color space type depends on the pixel format.
11052
11053 Possible values:
11054
11055 @table @samp
11056 @item auto
11057 Choose automatically.
11058
11059 @item bt709
11060 Format conforming to International Telecommunication Union (ITU)
11061 Recommendation BT.709.
11062
11063 @item fcc
11064 Set color space conforming to the United States Federal Communications
11065 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11066
11067 @item bt601
11068 Set color space conforming to:
11069
11070 @itemize
11071 @item
11072 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11073
11074 @item
11075 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11076
11077 @item
11078 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11079
11080 @end itemize
11081
11082 @item smpte240m
11083 Set color space conforming to SMPTE ST 240:1999.
11084 @end table
11085
11086 @item in_range
11087 @item out_range
11088 Set in/output YCbCr sample range.
11089
11090 This allows the autodetected value to be overridden as well as allows forcing
11091 a specific value used for the output and encoder. If not specified, the
11092 range depends on the pixel format. Possible values:
11093
11094 @table @samp
11095 @item auto
11096 Choose automatically.
11097
11098 @item jpeg/full/pc
11099 Set full range (0-255 in case of 8-bit luma).
11100
11101 @item mpeg/tv
11102 Set "MPEG" range (16-235 in case of 8-bit luma).
11103 @end table
11104
11105 @item force_original_aspect_ratio
11106 Enable decreasing or increasing output video width or height if necessary to
11107 keep the original aspect ratio. Possible values:
11108
11109 @table @samp
11110 @item disable
11111 Scale the video as specified and disable this feature.
11112
11113 @item decrease
11114 The output video dimensions will automatically be decreased if needed.
11115
11116 @item increase
11117 The output video dimensions will automatically be increased if needed.
11118
11119 @end table
11120
11121 One useful instance of this option is that when you know a specific device's
11122 maximum allowed resolution, you can use this to limit the output video to
11123 that, while retaining the aspect ratio. For example, device A allows
11124 1280x720 playback, and your video is 1920x800. Using this option (set it to
11125 decrease) and specifying 1280x720 to the command line makes the output
11126 1280x533.
11127
11128 Please note that this is a different thing than specifying -1 for @option{w}
11129 or @option{h}, you still need to specify the output resolution for this option
11130 to work.
11131
11132 @end table
11133
11134 The values of the @option{w} and @option{h} options are expressions
11135 containing the following constants:
11136
11137 @table @var
11138 @item in_w
11139 @item in_h
11140 The input width and height
11141
11142 @item iw
11143 @item ih
11144 These are the same as @var{in_w} and @var{in_h}.
11145
11146 @item out_w
11147 @item out_h
11148 The output (scaled) width and height
11149
11150 @item ow
11151 @item oh
11152 These are the same as @var{out_w} and @var{out_h}
11153
11154 @item a
11155 The same as @var{iw} / @var{ih}
11156
11157 @item sar
11158 input sample aspect ratio
11159
11160 @item dar
11161 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11162
11163 @item hsub
11164 @item vsub
11165 horizontal and vertical input chroma subsample values. For example for the
11166 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11167
11168 @item ohsub
11169 @item ovsub
11170 horizontal and vertical output chroma subsample values. For example for the
11171 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11172 @end table
11173
11174 @subsection Examples
11175
11176 @itemize
11177 @item
11178 Scale the input video to a size of 200x100
11179 @example
11180 scale=w=200:h=100
11181 @end example
11182
11183 This is equivalent to:
11184 @example
11185 scale=200:100
11186 @end example
11187
11188 or:
11189 @example
11190 scale=200x100
11191 @end example
11192
11193 @item
11194 Specify a size abbreviation for the output size:
11195 @example
11196 scale=qcif
11197 @end example
11198
11199 which can also be written as:
11200 @example
11201 scale=size=qcif
11202 @end example
11203
11204 @item
11205 Scale the input to 2x:
11206 @example
11207 scale=w=2*iw:h=2*ih
11208 @end example
11209
11210 @item
11211 The above is the same as:
11212 @example
11213 scale=2*in_w:2*in_h
11214 @end example
11215
11216 @item
11217 Scale the input to 2x with forced interlaced scaling:
11218 @example
11219 scale=2*iw:2*ih:interl=1
11220 @end example
11221
11222 @item
11223 Scale the input to half size:
11224 @example
11225 scale=w=iw/2:h=ih/2
11226 @end example
11227
11228 @item
11229 Increase the width, and set the height to the same size:
11230 @example
11231 scale=3/2*iw:ow
11232 @end example
11233
11234 @item
11235 Seek Greek harmony:
11236 @example
11237 scale=iw:1/PHI*iw
11238 scale=ih*PHI:ih
11239 @end example
11240
11241 @item
11242 Increase the height, and set the width to 3/2 of the height:
11243 @example
11244 scale=w=3/2*oh:h=3/5*ih
11245 @end example
11246
11247 @item
11248 Increase the size, making the size a multiple of the chroma
11249 subsample values:
11250 @example
11251 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11252 @end example
11253
11254 @item
11255 Increase the width to a maximum of 500 pixels,
11256 keeping the same aspect ratio as the input:
11257 @example
11258 scale=w='min(500\, iw*3/2):h=-1'
11259 @end example
11260 @end itemize
11261
11262 @subsection Commands
11263
11264 This filter supports the following commands:
11265 @table @option
11266 @item width, w
11267 @item height, h
11268 Set the output video dimension expression.
11269 The command accepts the same syntax of the corresponding option.
11270
11271 If the specified expression is not valid, it is kept at its current
11272 value.
11273 @end table
11274
11275 @section scale2ref
11276
11277 Scale (resize) the input video, based on a reference video.
11278
11279 See the scale filter for available options, scale2ref supports the same but
11280 uses the reference video instead of the main input as basis.
11281
11282 @subsection Examples
11283
11284 @itemize
11285 @item
11286 Scale a subtitle stream to match the main video in size before overlaying
11287 @example
11288 'scale2ref[b][a];[a][b]overlay'
11289 @end example
11290 @end itemize
11291
11292 @anchor{selectivecolor}
11293 @section selectivecolor
11294
11295 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11296 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11297 by the "purity" of the color (that is, how saturated it already is).
11298
11299 This filter is similar to the Adobe Photoshop Selective Color tool.
11300
11301 The filter accepts the following options:
11302
11303 @table @option
11304 @item correction_method
11305 Select color correction method.
11306
11307 Available values are:
11308 @table @samp
11309 @item absolute
11310 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11311 component value).
11312 @item relative
11313 Specified adjustments are relative to the original component value.
11314 @end table
11315 Default is @code{absolute}.
11316 @item reds
11317 Adjustments for red pixels (pixels where the red component is the maximum)
11318 @item yellows
11319 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11320 @item greens
11321 Adjustments for green pixels (pixels where the green component is the maximum)
11322 @item cyans
11323 Adjustments for cyan pixels (pixels where the red component is the minimum)
11324 @item blues
11325 Adjustments for blue pixels (pixels where the blue component is the maximum)
11326 @item magentas
11327 Adjustments for magenta pixels (pixels where the green component is the minimum)
11328 @item whites
11329 Adjustments for white pixels (pixels where all components are greater than 128)
11330 @item neutrals
11331 Adjustments for all pixels except pure black and pure white
11332 @item blacks
11333 Adjustments for black pixels (pixels where all components are lesser than 128)
11334 @item psfile
11335 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11336 @end table
11337
11338 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11339 4 space separated floating point adjustment values in the [-1,1] range,
11340 respectively to adjust the amount of cyan, magenta, yellow and black for the
11341 pixels of its range.
11342
11343 @subsection Examples
11344
11345 @itemize
11346 @item
11347 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11348 increase magenta by 27% in blue areas:
11349 @example
11350 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11351 @end example
11352
11353 @item
11354 Use a Photoshop selective color preset:
11355 @example
11356 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11357 @end example
11358 @end itemize
11359
11360 @section separatefields
11361
11362 The @code{separatefields} takes a frame-based video input and splits
11363 each frame into its components fields, producing a new half height clip
11364 with twice the frame rate and twice the frame count.
11365
11366 This filter use field-dominance information in frame to decide which
11367 of each pair of fields to place first in the output.
11368 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11369
11370 @section setdar, setsar
11371
11372 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11373 output video.
11374
11375 This is done by changing the specified Sample (aka Pixel) Aspect
11376 Ratio, according to the following equation:
11377 @example
11378 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11379 @end example
11380
11381 Keep in mind that the @code{setdar} filter does not modify the pixel
11382 dimensions of the video frame. Also, the display aspect ratio set by
11383 this filter may be changed by later filters in the filterchain,
11384 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11385 applied.
11386
11387 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11388 the filter output video.
11389
11390 Note that as a consequence of the application of this filter, the
11391 output display aspect ratio will change according to the equation
11392 above.
11393
11394 Keep in mind that the sample aspect ratio set by the @code{setsar}
11395 filter may be changed by later filters in the filterchain, e.g. if
11396 another "setsar" or a "setdar" filter is applied.
11397
11398 It accepts the following parameters:
11399
11400 @table @option
11401 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11402 Set the aspect ratio used by the filter.
11403
11404 The parameter can be a floating point number string, an expression, or
11405 a string of the form @var{num}:@var{den}, where @var{num} and
11406 @var{den} are the numerator and denominator of the aspect ratio. If
11407 the parameter is not specified, it is assumed the value "0".
11408 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11409 should be escaped.
11410
11411 @item max
11412 Set the maximum integer value to use for expressing numerator and
11413 denominator when reducing the expressed aspect ratio to a rational.
11414 Default value is @code{100}.
11415
11416 @end table
11417
11418 The parameter @var{sar} is an expression containing
11419 the following constants:
11420
11421 @table @option
11422 @item E, PI, PHI
11423 These are approximated values for the mathematical constants e
11424 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11425
11426 @item w, h
11427 The input width and height.
11428
11429 @item a
11430 These are the same as @var{w} / @var{h}.
11431
11432 @item sar
11433 The input sample aspect ratio.
11434
11435 @item dar
11436 The input display aspect ratio. It is the same as
11437 (@var{w} / @var{h}) * @var{sar}.
11438
11439 @item hsub, vsub
11440 Horizontal and vertical chroma subsample values. For example, for the
11441 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11442 @end table
11443
11444 @subsection Examples
11445
11446 @itemize
11447
11448 @item
11449 To change the display aspect ratio to 16:9, specify one of the following:
11450 @example
11451 setdar=dar=1.77777
11452 setdar=dar=16/9
11453 setdar=dar=1.77777
11454 @end example
11455
11456 @item
11457 To change the sample aspect ratio to 10:11, specify:
11458 @example
11459 setsar=sar=10/11
11460 @end example
11461
11462 @item
11463 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11464 1000 in the aspect ratio reduction, use the command:
11465 @example
11466 setdar=ratio=16/9:max=1000
11467 @end example
11468
11469 @end itemize
11470
11471 @anchor{setfield}
11472 @section setfield
11473
11474 Force field for the output video frame.
11475
11476 The @code{setfield} filter marks the interlace type field for the
11477 output frames. It does not change the input frame, but only sets the
11478 corresponding property, which affects how the frame is treated by
11479 following filters (e.g. @code{fieldorder} or @code{yadif}).
11480
11481 The filter accepts the following options:
11482
11483 @table @option
11484
11485 @item mode
11486 Available values are:
11487
11488 @table @samp
11489 @item auto
11490 Keep the same field property.
11491
11492 @item bff
11493 Mark the frame as bottom-field-first.
11494
11495 @item tff
11496 Mark the frame as top-field-first.
11497
11498 @item prog
11499 Mark the frame as progressive.
11500 @end table
11501 @end table
11502
11503 @section showinfo
11504
11505 Show a line containing various information for each input video frame.
11506 The input video is not modified.
11507
11508 The shown line contains a sequence of key/value pairs of the form
11509 @var{key}:@var{value}.
11510
11511 The following values are shown in the output:
11512
11513 @table @option
11514 @item n
11515 The (sequential) number of the input frame, starting from 0.
11516
11517 @item pts
11518 The Presentation TimeStamp of the input frame, expressed as a number of
11519 time base units. The time base unit depends on the filter input pad.
11520
11521 @item pts_time
11522 The Presentation TimeStamp of the input frame, expressed as a number of
11523 seconds.
11524
11525 @item pos
11526 The position of the frame in the input stream, or -1 if this information is
11527 unavailable and/or meaningless (for example in case of synthetic video).
11528
11529 @item fmt
11530 The pixel format name.
11531
11532 @item sar
11533 The sample aspect ratio of the input frame, expressed in the form
11534 @var{num}/@var{den}.
11535
11536 @item s
11537 The size of the input frame. For the syntax of this option, check the
11538 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11539
11540 @item i
11541 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11542 for bottom field first).
11543
11544 @item iskey
11545 This is 1 if the frame is a key frame, 0 otherwise.
11546
11547 @item type
11548 The picture type of the input frame ("I" for an I-frame, "P" for a
11549 P-frame, "B" for a B-frame, or "?" for an unknown type).
11550 Also refer to the documentation of the @code{AVPictureType} enum and of
11551 the @code{av_get_picture_type_char} function defined in
11552 @file{libavutil/avutil.h}.
11553
11554 @item checksum
11555 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11556
11557 @item plane_checksum
11558 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11559 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11560 @end table
11561
11562 @section showpalette
11563
11564 Displays the 256 colors palette of each frame. This filter is only relevant for
11565 @var{pal8} pixel format frames.
11566
11567 It accepts the following option:
11568
11569 @table @option
11570 @item s
11571 Set the size of the box used to represent one palette color entry. Default is
11572 @code{30} (for a @code{30x30} pixel box).
11573 @end table
11574
11575 @section shuffleframes
11576
11577 Reorder and/or duplicate video frames.
11578
11579 It accepts the following parameters:
11580
11581 @table @option
11582 @item mapping
11583 Set the destination indexes of input frames.
11584 This is space or '|' separated list of indexes that maps input frames to output
11585 frames. Number of indexes also sets maximal value that each index may have.
11586 @end table
11587
11588 The first frame has the index 0. The default is to keep the input unchanged.
11589
11590 Swap second and third frame of every three frames of the input:
11591 @example
11592 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11593 @end example
11594
11595 @section shuffleplanes
11596
11597 Reorder and/or duplicate video planes.
11598
11599 It accepts the following parameters:
11600
11601 @table @option
11602
11603 @item map0
11604 The index of the input plane to be used as the first output plane.
11605
11606 @item map1
11607 The index of the input plane to be used as the second output plane.
11608
11609 @item map2
11610 The index of the input plane to be used as the third output plane.
11611
11612 @item map3
11613 The index of the input plane to be used as the fourth output plane.
11614
11615 @end table
11616
11617 The first plane has the index 0. The default is to keep the input unchanged.
11618
11619 Swap the second and third planes of the input:
11620 @example
11621 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11622 @end example
11623
11624 @anchor{signalstats}
11625 @section signalstats
11626 Evaluate various visual metrics that assist in determining issues associated
11627 with the digitization of analog video media.
11628
11629 By default the filter will log these metadata values:
11630
11631 @table @option
11632 @item YMIN
11633 Display the minimal Y value contained within the input frame. Expressed in
11634 range of [0-255].
11635
11636 @item YLOW
11637 Display the Y value at the 10% percentile within the input frame. Expressed in
11638 range of [0-255].
11639
11640 @item YAVG
11641 Display the average Y value within the input frame. Expressed in range of
11642 [0-255].
11643
11644 @item YHIGH
11645 Display the Y value at the 90% percentile within the input frame. Expressed in
11646 range of [0-255].
11647
11648 @item YMAX
11649 Display the maximum Y value contained within the input frame. Expressed in
11650 range of [0-255].
11651
11652 @item UMIN
11653 Display the minimal U value contained within the input frame. Expressed in
11654 range of [0-255].
11655
11656 @item ULOW
11657 Display the U value at the 10% percentile within the input frame. Expressed in
11658 range of [0-255].
11659
11660 @item UAVG
11661 Display the average U value within the input frame. Expressed in range of
11662 [0-255].
11663
11664 @item UHIGH
11665 Display the U value at the 90% percentile within the input frame. Expressed in
11666 range of [0-255].
11667
11668 @item UMAX
11669 Display the maximum U value contained within the input frame. Expressed in
11670 range of [0-255].
11671
11672 @item VMIN
11673 Display the minimal V value contained within the input frame. Expressed in
11674 range of [0-255].
11675
11676 @item VLOW
11677 Display the V value at the 10% percentile within the input frame. Expressed in
11678 range of [0-255].
11679
11680 @item VAVG
11681 Display the average V value within the input frame. Expressed in range of
11682 [0-255].
11683
11684 @item VHIGH
11685 Display the V value at the 90% percentile within the input frame. Expressed in
11686 range of [0-255].
11687
11688 @item VMAX
11689 Display the maximum V value contained within the input frame. Expressed in
11690 range of [0-255].
11691
11692 @item SATMIN
11693 Display the minimal saturation value contained within the input frame.
11694 Expressed in range of [0-~181.02].
11695
11696 @item SATLOW
11697 Display the saturation value at the 10% percentile within the input frame.
11698 Expressed in range of [0-~181.02].
11699
11700 @item SATAVG
11701 Display the average saturation value within the input frame. Expressed in range
11702 of [0-~181.02].
11703
11704 @item SATHIGH
11705 Display the saturation value at the 90% percentile within the input frame.
11706 Expressed in range of [0-~181.02].
11707
11708 @item SATMAX
11709 Display the maximum saturation value contained within the input frame.
11710 Expressed in range of [0-~181.02].
11711
11712 @item HUEMED
11713 Display the median value for hue within the input frame. Expressed in range of
11714 [0-360].
11715
11716 @item HUEAVG
11717 Display the average value for hue within the input frame. Expressed in range of
11718 [0-360].
11719
11720 @item YDIF
11721 Display the average of sample value difference between all values of the Y
11722 plane in the current frame and corresponding values of the previous input frame.
11723 Expressed in range of [0-255].
11724
11725 @item UDIF
11726 Display the average of sample value difference between all values of the U
11727 plane in the current frame and corresponding values of the previous input frame.
11728 Expressed in range of [0-255].
11729
11730 @item VDIF
11731 Display the average of sample value difference between all values of the V
11732 plane in the current frame and corresponding values of the previous input frame.
11733 Expressed in range of [0-255].
11734 @end table
11735
11736 The filter accepts the following options:
11737
11738 @table @option
11739 @item stat
11740 @item out
11741
11742 @option{stat} specify an additional form of image analysis.
11743 @option{out} output video with the specified type of pixel highlighted.
11744
11745 Both options accept the following values:
11746
11747 @table @samp
11748 @item tout
11749 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11750 unlike the neighboring pixels of the same field. Examples of temporal outliers
11751 include the results of video dropouts, head clogs, or tape tracking issues.
11752
11753 @item vrep
11754 Identify @var{vertical line repetition}. Vertical line repetition includes
11755 similar rows of pixels within a frame. In born-digital video vertical line
11756 repetition is common, but this pattern is uncommon in video digitized from an
11757 analog source. When it occurs in video that results from the digitization of an
11758 analog source it can indicate concealment from a dropout compensator.
11759
11760 @item brng
11761 Identify pixels that fall outside of legal broadcast range.
11762 @end table
11763
11764 @item color, c
11765 Set the highlight color for the @option{out} option. The default color is
11766 yellow.
11767 @end table
11768
11769 @subsection Examples
11770
11771 @itemize
11772 @item
11773 Output data of various video metrics:
11774 @example
11775 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11776 @end example
11777
11778 @item
11779 Output specific data about the minimum and maximum values of the Y plane per frame:
11780 @example
11781 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11782 @end example
11783
11784 @item
11785 Playback video while highlighting pixels that are outside of broadcast range in red.
11786 @example
11787 ffplay example.mov -vf signalstats="out=brng:color=red"
11788 @end example
11789
11790 @item
11791 Playback video with signalstats metadata drawn over the frame.
11792 @example
11793 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
11794 @end example
11795
11796 The contents of signalstat_drawtext.txt used in the command are:
11797 @example
11798 time %@{pts:hms@}
11799 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
11800 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
11801 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
11802 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
11803
11804 @end example
11805 @end itemize
11806
11807 @anchor{smartblur}
11808 @section smartblur
11809
11810 Blur the input video without impacting the outlines.
11811
11812 It accepts the following options:
11813
11814 @table @option
11815 @item luma_radius, lr
11816 Set the luma radius. The option value must be a float number in
11817 the range [0.1,5.0] that specifies the variance of the gaussian filter
11818 used to blur the image (slower if larger). Default value is 1.0.
11819
11820 @item luma_strength, ls
11821 Set the luma strength. The option value must be a float number
11822 in the range [-1.0,1.0] that configures the blurring. A value included
11823 in [0.0,1.0] will blur the image whereas a value included in
11824 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11825
11826 @item luma_threshold, lt
11827 Set the luma threshold used as a coefficient to determine
11828 whether a pixel should be blurred or not. The option value must be an
11829 integer in the range [-30,30]. A value of 0 will filter all the image,
11830 a value included in [0,30] will filter flat areas and a value included
11831 in [-30,0] will filter edges. Default value is 0.
11832
11833 @item chroma_radius, cr
11834 Set the chroma radius. The option value must be a float number in
11835 the range [0.1,5.0] that specifies the variance of the gaussian filter
11836 used to blur the image (slower if larger). Default value is 1.0.
11837
11838 @item chroma_strength, cs
11839 Set the chroma strength. The option value must be a float number
11840 in the range [-1.0,1.0] that configures the blurring. A value included
11841 in [0.0,1.0] will blur the image whereas a value included in
11842 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11843
11844 @item chroma_threshold, ct
11845 Set the chroma threshold used as a coefficient to determine
11846 whether a pixel should be blurred or not. The option value must be an
11847 integer in the range [-30,30]. A value of 0 will filter all the image,
11848 a value included in [0,30] will filter flat areas and a value included
11849 in [-30,0] will filter edges. Default value is 0.
11850 @end table
11851
11852 If a chroma option is not explicitly set, the corresponding luma value
11853 is set.
11854
11855 @section ssim
11856
11857 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
11858
11859 This filter takes in input two input videos, the first input is
11860 considered the "main" source and is passed unchanged to the
11861 output. The second input is used as a "reference" video for computing
11862 the SSIM.
11863
11864 Both video inputs must have the same resolution and pixel format for
11865 this filter to work correctly. Also it assumes that both inputs
11866 have the same number of frames, which are compared one by one.
11867
11868 The filter stores the calculated SSIM of each frame.
11869
11870 The description of the accepted parameters follows.
11871
11872 @table @option
11873 @item stats_file, f
11874 If specified the filter will use the named file to save the SSIM of
11875 each individual frame. When filename equals "-" the data is sent to
11876 standard output.
11877 @end table
11878
11879 The file printed if @var{stats_file} is selected, contains a sequence of
11880 key/value pairs of the form @var{key}:@var{value} for each compared
11881 couple of frames.
11882
11883 A description of each shown parameter follows:
11884
11885 @table @option
11886 @item n
11887 sequential number of the input frame, starting from 1
11888
11889 @item Y, U, V, R, G, B
11890 SSIM of the compared frames for the component specified by the suffix.
11891
11892 @item All
11893 SSIM of the compared frames for the whole frame.
11894
11895 @item dB
11896 Same as above but in dB representation.
11897 @end table
11898
11899 For example:
11900 @example
11901 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11902 [main][ref] ssim="stats_file=stats.log" [out]
11903 @end example
11904
11905 On this example the input file being processed is compared with the
11906 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
11907 is stored in @file{stats.log}.
11908
11909 Another example with both psnr and ssim at same time:
11910 @example
11911 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
11912 @end example
11913
11914 @section stereo3d
11915
11916 Convert between different stereoscopic image formats.
11917
11918 The filters accept the following options:
11919
11920 @table @option
11921 @item in
11922 Set stereoscopic image format of input.
11923
11924 Available values for input image formats are:
11925 @table @samp
11926 @item sbsl
11927 side by side parallel (left eye left, right eye right)
11928
11929 @item sbsr
11930 side by side crosseye (right eye left, left eye right)
11931
11932 @item sbs2l
11933 side by side parallel with half width resolution
11934 (left eye left, right eye right)
11935
11936 @item sbs2r
11937 side by side crosseye with half width resolution
11938 (right eye left, left eye right)
11939
11940 @item abl
11941 above-below (left eye above, right eye below)
11942
11943 @item abr
11944 above-below (right eye above, left eye below)
11945
11946 @item ab2l
11947 above-below with half height resolution
11948 (left eye above, right eye below)
11949
11950 @item ab2r
11951 above-below with half height resolution
11952 (right eye above, left eye below)
11953
11954 @item al
11955 alternating frames (left eye first, right eye second)
11956
11957 @item ar
11958 alternating frames (right eye first, left eye second)
11959
11960 @item irl
11961 interleaved rows (left eye has top row, right eye starts on next row)
11962
11963 @item irr
11964 interleaved rows (right eye has top row, left eye starts on next row)
11965
11966 @item icl
11967 interleaved columns, left eye first
11968
11969 @item icr
11970 interleaved columns, right eye first
11971
11972 Default value is @samp{sbsl}.
11973 @end table
11974
11975 @item out
11976 Set stereoscopic image format of output.
11977
11978 @table @samp
11979 @item sbsl
11980 side by side parallel (left eye left, right eye right)
11981
11982 @item sbsr
11983 side by side crosseye (right eye left, left eye right)
11984
11985 @item sbs2l
11986 side by side parallel with half width resolution
11987 (left eye left, right eye right)
11988
11989 @item sbs2r
11990 side by side crosseye with half width resolution
11991 (right eye left, left eye right)
11992
11993 @item abl
11994 above-below (left eye above, right eye below)
11995
11996 @item abr
11997 above-below (right eye above, left eye below)
11998
11999 @item ab2l
12000 above-below with half height resolution
12001 (left eye above, right eye below)
12002
12003 @item ab2r
12004 above-below with half height resolution
12005 (right eye above, left eye below)
12006
12007 @item al
12008 alternating frames (left eye first, right eye second)
12009
12010 @item ar
12011 alternating frames (right eye first, left eye second)
12012
12013 @item irl
12014 interleaved rows (left eye has top row, right eye starts on next row)
12015
12016 @item irr
12017 interleaved rows (right eye has top row, left eye starts on next row)
12018
12019 @item arbg
12020 anaglyph red/blue gray
12021 (red filter on left eye, blue filter on right eye)
12022
12023 @item argg
12024 anaglyph red/green gray
12025 (red filter on left eye, green filter on right eye)
12026
12027 @item arcg
12028 anaglyph red/cyan gray
12029 (red filter on left eye, cyan filter on right eye)
12030
12031 @item arch
12032 anaglyph red/cyan half colored
12033 (red filter on left eye, cyan filter on right eye)
12034
12035 @item arcc
12036 anaglyph red/cyan color
12037 (red filter on left eye, cyan filter on right eye)
12038
12039 @item arcd
12040 anaglyph red/cyan color optimized with the least squares projection of dubois
12041 (red filter on left eye, cyan filter on right eye)
12042
12043 @item agmg
12044 anaglyph green/magenta gray
12045 (green filter on left eye, magenta filter on right eye)
12046
12047 @item agmh
12048 anaglyph green/magenta half colored
12049 (green filter on left eye, magenta filter on right eye)
12050
12051 @item agmc
12052 anaglyph green/magenta colored
12053 (green filter on left eye, magenta filter on right eye)
12054
12055 @item agmd
12056 anaglyph green/magenta color optimized with the least squares projection of dubois
12057 (green filter on left eye, magenta filter on right eye)
12058
12059 @item aybg
12060 anaglyph yellow/blue gray
12061 (yellow filter on left eye, blue filter on right eye)
12062
12063 @item aybh
12064 anaglyph yellow/blue half colored
12065 (yellow filter on left eye, blue filter on right eye)
12066
12067 @item aybc
12068 anaglyph yellow/blue colored
12069 (yellow filter on left eye, blue filter on right eye)
12070
12071 @item aybd
12072 anaglyph yellow/blue color optimized with the least squares projection of dubois
12073 (yellow filter on left eye, blue filter on right eye)
12074
12075 @item ml
12076 mono output (left eye only)
12077
12078 @item mr
12079 mono output (right eye only)
12080
12081 @item chl
12082 checkerboard, left eye first
12083
12084 @item chr
12085 checkerboard, right eye first
12086
12087 @item icl
12088 interleaved columns, left eye first
12089
12090 @item icr
12091 interleaved columns, right eye first
12092 @end table
12093
12094 Default value is @samp{arcd}.
12095 @end table
12096
12097 @subsection Examples
12098
12099 @itemize
12100 @item
12101 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12102 @example
12103 stereo3d=sbsl:aybd
12104 @end example
12105
12106 @item
12107 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12108 @example
12109 stereo3d=abl:sbsr
12110 @end example
12111 @end itemize
12112
12113 @section streamselect, astreamselect
12114 Select video or audio streams.
12115
12116 The filter accepts the following options:
12117
12118 @table @option
12119 @item inputs
12120 Set number of inputs. Default is 2.
12121
12122 @item map
12123 Set input indexes to remap to outputs.
12124 @end table
12125
12126 @subsection Commands
12127
12128 The @code{streamselect} and @code{astreamselect} filter supports the following
12129 commands:
12130
12131 @table @option
12132 @item map
12133 Set input indexes to remap to outputs.
12134 @end table
12135
12136 @subsection Examples
12137
12138 @itemize
12139 @item
12140 Select first 5 seconds 1st stream and rest of time 2nd stream:
12141 @example
12142 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12143 @end example
12144
12145 @item
12146 Same as above, but for audio:
12147 @example
12148 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12149 @end example
12150 @end itemize
12151
12152 @anchor{spp}
12153 @section spp
12154
12155 Apply a simple postprocessing filter that compresses and decompresses the image
12156 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12157 and average the results.
12158
12159 The filter accepts the following options:
12160
12161 @table @option
12162 @item quality
12163 Set quality. This option defines the number of levels for averaging. It accepts
12164 an integer in the range 0-6. If set to @code{0}, the filter will have no
12165 effect. A value of @code{6} means the higher quality. For each increment of
12166 that value the speed drops by a factor of approximately 2.  Default value is
12167 @code{3}.
12168
12169 @item qp
12170 Force a constant quantization parameter. If not set, the filter will use the QP
12171 from the video stream (if available).
12172
12173 @item mode
12174 Set thresholding mode. Available modes are:
12175
12176 @table @samp
12177 @item hard
12178 Set hard thresholding (default).
12179 @item soft
12180 Set soft thresholding (better de-ringing effect, but likely blurrier).
12181 @end table
12182
12183 @item use_bframe_qp
12184 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12185 option may cause flicker since the B-Frames have often larger QP. Default is
12186 @code{0} (not enabled).
12187 @end table
12188
12189 @anchor{subtitles}
12190 @section subtitles
12191
12192 Draw subtitles on top of input video using the libass library.
12193
12194 To enable compilation of this filter you need to configure FFmpeg with
12195 @code{--enable-libass}. This filter also requires a build with libavcodec and
12196 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12197 Alpha) subtitles format.
12198
12199 The filter accepts the following options:
12200
12201 @table @option
12202 @item filename, f
12203 Set the filename of the subtitle file to read. It must be specified.
12204
12205 @item original_size
12206 Specify the size of the original video, the video for which the ASS file
12207 was composed. For the syntax of this option, check the
12208 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12209 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12210 correctly scale the fonts if the aspect ratio has been changed.
12211
12212 @item fontsdir
12213 Set a directory path containing fonts that can be used by the filter.
12214 These fonts will be used in addition to whatever the font provider uses.
12215
12216 @item charenc
12217 Set subtitles input character encoding. @code{subtitles} filter only. Only
12218 useful if not UTF-8.
12219
12220 @item stream_index, si
12221 Set subtitles stream index. @code{subtitles} filter only.
12222
12223 @item force_style
12224 Override default style or script info parameters of the subtitles. It accepts a
12225 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12226 @end table
12227
12228 If the first key is not specified, it is assumed that the first value
12229 specifies the @option{filename}.
12230
12231 For example, to render the file @file{sub.srt} on top of the input
12232 video, use the command:
12233 @example
12234 subtitles=sub.srt
12235 @end example
12236
12237 which is equivalent to:
12238 @example
12239 subtitles=filename=sub.srt
12240 @end example
12241
12242 To render the default subtitles stream from file @file{video.mkv}, use:
12243 @example
12244 subtitles=video.mkv
12245 @end example
12246
12247 To render the second subtitles stream from that file, use:
12248 @example
12249 subtitles=video.mkv:si=1
12250 @end example
12251
12252 To make the subtitles stream from @file{sub.srt} appear in transparent green
12253 @code{DejaVu Serif}, use:
12254 @example
12255 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12256 @end example
12257
12258 @section super2xsai
12259
12260 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12261 Interpolate) pixel art scaling algorithm.
12262
12263 Useful for enlarging pixel art images without reducing sharpness.
12264
12265 @section swaprect
12266
12267 Swap two rectangular objects in video.
12268
12269 This filter accepts the following options:
12270
12271 @table @option
12272 @item w
12273 Set object width.
12274
12275 @item h
12276 Set object height.
12277
12278 @item x1
12279 Set 1st rect x coordinate.
12280
12281 @item y1
12282 Set 1st rect y coordinate.
12283
12284 @item x2
12285 Set 2nd rect x coordinate.
12286
12287 @item y2
12288 Set 2nd rect y coordinate.
12289
12290 All expressions are evaluated once for each frame.
12291 @end table
12292
12293 The all options are expressions containing the following constants:
12294
12295 @table @option
12296 @item w
12297 @item h
12298 The input width and height.
12299
12300 @item a
12301 same as @var{w} / @var{h}
12302
12303 @item sar
12304 input sample aspect ratio
12305
12306 @item dar
12307 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12308
12309 @item n
12310 The number of the input frame, starting from 0.
12311
12312 @item t
12313 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12314
12315 @item pos
12316 the position in the file of the input frame, NAN if unknown
12317 @end table
12318
12319 @section swapuv
12320 Swap U & V plane.
12321
12322 @section telecine
12323
12324 Apply telecine process to the video.
12325
12326 This filter accepts the following options:
12327
12328 @table @option
12329 @item first_field
12330 @table @samp
12331 @item top, t
12332 top field first
12333 @item bottom, b
12334 bottom field first
12335 The default value is @code{top}.
12336 @end table
12337
12338 @item pattern
12339 A string of numbers representing the pulldown pattern you wish to apply.
12340 The default value is @code{23}.
12341 @end table
12342
12343 @example
12344 Some typical patterns:
12345
12346 NTSC output (30i):
12347 27.5p: 32222
12348 24p: 23 (classic)
12349 24p: 2332 (preferred)
12350 20p: 33
12351 18p: 334
12352 16p: 3444
12353
12354 PAL output (25i):
12355 27.5p: 12222
12356 24p: 222222222223 ("Euro pulldown")
12357 16.67p: 33
12358 16p: 33333334
12359 @end example
12360
12361 @section thumbnail
12362 Select the most representative frame in a given sequence of consecutive frames.
12363
12364 The filter accepts the following options:
12365
12366 @table @option
12367 @item n
12368 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12369 will pick one of them, and then handle the next batch of @var{n} frames until
12370 the end. Default is @code{100}.
12371 @end table
12372
12373 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12374 value will result in a higher memory usage, so a high value is not recommended.
12375
12376 @subsection Examples
12377
12378 @itemize
12379 @item
12380 Extract one picture each 50 frames:
12381 @example
12382 thumbnail=50
12383 @end example
12384
12385 @item
12386 Complete example of a thumbnail creation with @command{ffmpeg}:
12387 @example
12388 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12389 @end example
12390 @end itemize
12391
12392 @section tile
12393
12394 Tile several successive frames together.
12395
12396 The filter accepts the following options:
12397
12398 @table @option
12399
12400 @item layout
12401 Set the grid size (i.e. the number of lines and columns). For the syntax of
12402 this option, check the
12403 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12404
12405 @item nb_frames
12406 Set the maximum number of frames to render in the given area. It must be less
12407 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12408 the area will be used.
12409
12410 @item margin
12411 Set the outer border margin in pixels.
12412
12413 @item padding
12414 Set the inner border thickness (i.e. the number of pixels between frames). For
12415 more advanced padding options (such as having different values for the edges),
12416 refer to the pad video filter.
12417
12418 @item color
12419 Specify the color of the unused area. For the syntax of this option, check the
12420 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12421 is "black".
12422 @end table
12423
12424 @subsection Examples
12425
12426 @itemize
12427 @item
12428 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12429 @example
12430 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12431 @end example
12432 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12433 duplicating each output frame to accommodate the originally detected frame
12434 rate.
12435
12436 @item
12437 Display @code{5} pictures in an area of @code{3x2} frames,
12438 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12439 mixed flat and named options:
12440 @example
12441 tile=3x2:nb_frames=5:padding=7:margin=2
12442 @end example
12443 @end itemize
12444
12445 @section tinterlace
12446
12447 Perform various types of temporal field interlacing.
12448
12449 Frames are counted starting from 1, so the first input frame is
12450 considered odd.
12451
12452 The filter accepts the following options:
12453
12454 @table @option
12455
12456 @item mode
12457 Specify the mode of the interlacing. This option can also be specified
12458 as a value alone. See below for a list of values for this option.
12459
12460 Available values are:
12461
12462 @table @samp
12463 @item merge, 0
12464 Move odd frames into the upper field, even into the lower field,
12465 generating a double height frame at half frame rate.
12466 @example
12467  ------> time
12468 Input:
12469 Frame 1         Frame 2         Frame 3         Frame 4
12470
12471 11111           22222           33333           44444
12472 11111           22222           33333           44444
12473 11111           22222           33333           44444
12474 11111           22222           33333           44444
12475
12476 Output:
12477 11111                           33333
12478 22222                           44444
12479 11111                           33333
12480 22222                           44444
12481 11111                           33333
12482 22222                           44444
12483 11111                           33333
12484 22222                           44444
12485 @end example
12486
12487 @item drop_odd, 1
12488 Only output even frames, odd frames are dropped, generating a frame with
12489 unchanged height at half frame rate.
12490
12491 @example
12492  ------> time
12493 Input:
12494 Frame 1         Frame 2         Frame 3         Frame 4
12495
12496 11111           22222           33333           44444
12497 11111           22222           33333           44444
12498 11111           22222           33333           44444
12499 11111           22222           33333           44444
12500
12501 Output:
12502                 22222                           44444
12503                 22222                           44444
12504                 22222                           44444
12505                 22222                           44444
12506 @end example
12507
12508 @item drop_even, 2
12509 Only output odd frames, even frames are dropped, generating a frame with
12510 unchanged height at half frame rate.
12511
12512 @example
12513  ------> time
12514 Input:
12515 Frame 1         Frame 2         Frame 3         Frame 4
12516
12517 11111           22222           33333           44444
12518 11111           22222           33333           44444
12519 11111           22222           33333           44444
12520 11111           22222           33333           44444
12521
12522 Output:
12523 11111                           33333
12524 11111                           33333
12525 11111                           33333
12526 11111                           33333
12527 @end example
12528
12529 @item pad, 3
12530 Expand each frame to full height, but pad alternate lines with black,
12531 generating a frame with double height at the same input frame rate.
12532
12533 @example
12534  ------> time
12535 Input:
12536 Frame 1         Frame 2         Frame 3         Frame 4
12537
12538 11111           22222           33333           44444
12539 11111           22222           33333           44444
12540 11111           22222           33333           44444
12541 11111           22222           33333           44444
12542
12543 Output:
12544 11111           .....           33333           .....
12545 .....           22222           .....           44444
12546 11111           .....           33333           .....
12547 .....           22222           .....           44444
12548 11111           .....           33333           .....
12549 .....           22222           .....           44444
12550 11111           .....           33333           .....
12551 .....           22222           .....           44444
12552 @end example
12553
12554
12555 @item interleave_top, 4
12556 Interleave the upper field from odd frames with the lower field from
12557 even frames, generating a frame with unchanged height at half frame rate.
12558
12559 @example
12560  ------> time
12561 Input:
12562 Frame 1         Frame 2         Frame 3         Frame 4
12563
12564 11111<-         22222           33333<-         44444
12565 11111           22222<-         33333           44444<-
12566 11111<-         22222           33333<-         44444
12567 11111           22222<-         33333           44444<-
12568
12569 Output:
12570 11111                           33333
12571 22222                           44444
12572 11111                           33333
12573 22222                           44444
12574 @end example
12575
12576
12577 @item interleave_bottom, 5
12578 Interleave the lower field from odd frames with the upper field from
12579 even frames, generating a frame with unchanged height at half frame rate.
12580
12581 @example
12582  ------> time
12583 Input:
12584 Frame 1         Frame 2         Frame 3         Frame 4
12585
12586 11111           22222<-         33333           44444<-
12587 11111<-         22222           33333<-         44444
12588 11111           22222<-         33333           44444<-
12589 11111<-         22222           33333<-         44444
12590
12591 Output:
12592 22222                           44444
12593 11111                           33333
12594 22222                           44444
12595 11111                           33333
12596 @end example
12597
12598
12599 @item interlacex2, 6
12600 Double frame rate with unchanged height. Frames are inserted each
12601 containing the second temporal field from the previous input frame and
12602 the first temporal field from the next input frame. This mode relies on
12603 the top_field_first flag. Useful for interlaced video displays with no
12604 field synchronisation.
12605
12606 @example
12607  ------> time
12608 Input:
12609 Frame 1         Frame 2         Frame 3         Frame 4
12610
12611 11111           22222           33333           44444
12612  11111           22222           33333           44444
12613 11111           22222           33333           44444
12614  11111           22222           33333           44444
12615
12616 Output:
12617 11111   22222   22222   33333   33333   44444   44444
12618  11111   11111   22222   22222   33333   33333   44444
12619 11111   22222   22222   33333   33333   44444   44444
12620  11111   11111   22222   22222   33333   33333   44444
12621 @end example
12622
12623 @item mergex2, 7
12624 Move odd frames into the upper field, even into the lower field,
12625 generating a double height frame at same frame rate.
12626 @example
12627  ------> time
12628 Input:
12629 Frame 1         Frame 2         Frame 3         Frame 4
12630
12631 11111           22222           33333           44444
12632 11111           22222           33333           44444
12633 11111           22222           33333           44444
12634 11111           22222           33333           44444
12635
12636 Output:
12637 11111           33333           33333           55555
12638 22222           22222           44444           44444
12639 11111           33333           33333           55555
12640 22222           22222           44444           44444
12641 11111           33333           33333           55555
12642 22222           22222           44444           44444
12643 11111           33333           33333           55555
12644 22222           22222           44444           44444
12645 @end example
12646
12647 @end table
12648
12649 Numeric values are deprecated but are accepted for backward
12650 compatibility reasons.
12651
12652 Default mode is @code{merge}.
12653
12654 @item flags
12655 Specify flags influencing the filter process.
12656
12657 Available value for @var{flags} is:
12658
12659 @table @option
12660 @item low_pass_filter, vlfp
12661 Enable vertical low-pass filtering in the filter.
12662 Vertical low-pass filtering is required when creating an interlaced
12663 destination from a progressive source which contains high-frequency
12664 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12665 patterning.
12666
12667 Vertical low-pass filtering can only be enabled for @option{mode}
12668 @var{interleave_top} and @var{interleave_bottom}.
12669
12670 @end table
12671 @end table
12672
12673 @section transpose
12674
12675 Transpose rows with columns in the input video and optionally flip it.
12676
12677 It accepts the following parameters:
12678
12679 @table @option
12680
12681 @item dir
12682 Specify the transposition direction.
12683
12684 Can assume the following values:
12685 @table @samp
12686 @item 0, 4, cclock_flip
12687 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12688 @example
12689 L.R     L.l
12690 . . ->  . .
12691 l.r     R.r
12692 @end example
12693
12694 @item 1, 5, clock
12695 Rotate by 90 degrees clockwise, that is:
12696 @example
12697 L.R     l.L
12698 . . ->  . .
12699 l.r     r.R
12700 @end example
12701
12702 @item 2, 6, cclock
12703 Rotate by 90 degrees counterclockwise, that is:
12704 @example
12705 L.R     R.r
12706 . . ->  . .
12707 l.r     L.l
12708 @end example
12709
12710 @item 3, 7, clock_flip
12711 Rotate by 90 degrees clockwise and vertically flip, that is:
12712 @example
12713 L.R     r.R
12714 . . ->  . .
12715 l.r     l.L
12716 @end example
12717 @end table
12718
12719 For values between 4-7, the transposition is only done if the input
12720 video geometry is portrait and not landscape. These values are
12721 deprecated, the @code{passthrough} option should be used instead.
12722
12723 Numerical values are deprecated, and should be dropped in favor of
12724 symbolic constants.
12725
12726 @item passthrough
12727 Do not apply the transposition if the input geometry matches the one
12728 specified by the specified value. It accepts the following values:
12729 @table @samp
12730 @item none
12731 Always apply transposition.
12732 @item portrait
12733 Preserve portrait geometry (when @var{height} >= @var{width}).
12734 @item landscape
12735 Preserve landscape geometry (when @var{width} >= @var{height}).
12736 @end table
12737
12738 Default value is @code{none}.
12739 @end table
12740
12741 For example to rotate by 90 degrees clockwise and preserve portrait
12742 layout:
12743 @example
12744 transpose=dir=1:passthrough=portrait
12745 @end example
12746
12747 The command above can also be specified as:
12748 @example
12749 transpose=1:portrait
12750 @end example
12751
12752 @section trim
12753 Trim the input so that the output contains one continuous subpart of the input.
12754
12755 It accepts the following parameters:
12756 @table @option
12757 @item start
12758 Specify the time of the start of the kept section, i.e. the frame with the
12759 timestamp @var{start} will be the first frame in the output.
12760
12761 @item end
12762 Specify the time of the first frame that will be dropped, i.e. the frame
12763 immediately preceding the one with the timestamp @var{end} will be the last
12764 frame in the output.
12765
12766 @item start_pts
12767 This is the same as @var{start}, except this option sets the start timestamp
12768 in timebase units instead of seconds.
12769
12770 @item end_pts
12771 This is the same as @var{end}, except this option sets the end timestamp
12772 in timebase units instead of seconds.
12773
12774 @item duration
12775 The maximum duration of the output in seconds.
12776
12777 @item start_frame
12778 The number of the first frame that should be passed to the output.
12779
12780 @item end_frame
12781 The number of the first frame that should be dropped.
12782 @end table
12783
12784 @option{start}, @option{end}, and @option{duration} are expressed as time
12785 duration specifications; see
12786 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12787 for the accepted syntax.
12788
12789 Note that the first two sets of the start/end options and the @option{duration}
12790 option look at the frame timestamp, while the _frame variants simply count the
12791 frames that pass through the filter. Also note that this filter does not modify
12792 the timestamps. If you wish for the output timestamps to start at zero, insert a
12793 setpts filter after the trim filter.
12794
12795 If multiple start or end options are set, this filter tries to be greedy and
12796 keep all the frames that match at least one of the specified constraints. To keep
12797 only the part that matches all the constraints at once, chain multiple trim
12798 filters.
12799
12800 The defaults are such that all the input is kept. So it is possible to set e.g.
12801 just the end values to keep everything before the specified time.
12802
12803 Examples:
12804 @itemize
12805 @item
12806 Drop everything except the second minute of input:
12807 @example
12808 ffmpeg -i INPUT -vf trim=60:120
12809 @end example
12810
12811 @item
12812 Keep only the first second:
12813 @example
12814 ffmpeg -i INPUT -vf trim=duration=1
12815 @end example
12816
12817 @end itemize
12818
12819
12820 @anchor{unsharp}
12821 @section unsharp
12822
12823 Sharpen or blur the input video.
12824
12825 It accepts the following parameters:
12826
12827 @table @option
12828 @item luma_msize_x, lx
12829 Set the luma matrix horizontal size. It must be an odd integer between
12830 3 and 63. The default value is 5.
12831
12832 @item luma_msize_y, ly
12833 Set the luma matrix vertical size. It must be an odd integer between 3
12834 and 63. The default value is 5.
12835
12836 @item luma_amount, la
12837 Set the luma effect strength. It must be a floating point number, reasonable
12838 values lay between -1.5 and 1.5.
12839
12840 Negative values will blur the input video, while positive values will
12841 sharpen it, a value of zero will disable the effect.
12842
12843 Default value is 1.0.
12844
12845 @item chroma_msize_x, cx
12846 Set the chroma matrix horizontal size. It must be an odd integer
12847 between 3 and 63. The default value is 5.
12848
12849 @item chroma_msize_y, cy
12850 Set the chroma matrix vertical size. It must be an odd integer
12851 between 3 and 63. The default value is 5.
12852
12853 @item chroma_amount, ca
12854 Set the chroma effect strength. It must be a floating point number, reasonable
12855 values lay between -1.5 and 1.5.
12856
12857 Negative values will blur the input video, while positive values will
12858 sharpen it, a value of zero will disable the effect.
12859
12860 Default value is 0.0.
12861
12862 @item opencl
12863 If set to 1, specify using OpenCL capabilities, only available if
12864 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
12865
12866 @end table
12867
12868 All parameters are optional and default to the equivalent of the
12869 string '5:5:1.0:5:5:0.0'.
12870
12871 @subsection Examples
12872
12873 @itemize
12874 @item
12875 Apply strong luma sharpen effect:
12876 @example
12877 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
12878 @end example
12879
12880 @item
12881 Apply a strong blur of both luma and chroma parameters:
12882 @example
12883 unsharp=7:7:-2:7:7:-2
12884 @end example
12885 @end itemize
12886
12887 @section uspp
12888
12889 Apply ultra slow/simple postprocessing filter that compresses and decompresses
12890 the image at several (or - in the case of @option{quality} level @code{8} - all)
12891 shifts and average the results.
12892
12893 The way this differs from the behavior of spp is that uspp actually encodes &
12894 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
12895 DCT similar to MJPEG.
12896
12897 The filter accepts the following options:
12898
12899 @table @option
12900 @item quality
12901 Set quality. This option defines the number of levels for averaging. It accepts
12902 an integer in the range 0-8. If set to @code{0}, the filter will have no
12903 effect. A value of @code{8} means the higher quality. For each increment of
12904 that value the speed drops by a factor of approximately 2.  Default value is
12905 @code{3}.
12906
12907 @item qp
12908 Force a constant quantization parameter. If not set, the filter will use the QP
12909 from the video stream (if available).
12910 @end table
12911
12912 @section vectorscope
12913
12914 Display 2 color component values in the two dimensional graph (which is called
12915 a vectorscope).
12916
12917 This filter accepts the following options:
12918
12919 @table @option
12920 @item mode, m
12921 Set vectorscope mode.
12922
12923 It accepts the following values:
12924 @table @samp
12925 @item gray
12926 Gray values are displayed on graph, higher brightness means more pixels have
12927 same component color value on location in graph. This is the default mode.
12928
12929 @item color
12930 Gray values are displayed on graph. Surrounding pixels values which are not
12931 present in video frame are drawn in gradient of 2 color components which are
12932 set by option @code{x} and @code{y}. The 3rd color component is static.
12933
12934 @item color2
12935 Actual color components values present in video frame are displayed on graph.
12936
12937 @item color3
12938 Similar as color2 but higher frequency of same values @code{x} and @code{y}
12939 on graph increases value of another color component, which is luminance by
12940 default values of @code{x} and @code{y}.
12941
12942 @item color4
12943 Actual colors present in video frame are displayed on graph. If two different
12944 colors map to same position on graph then color with higher value of component
12945 not present in graph is picked.
12946
12947 @item color5
12948 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
12949 component picked from radial gradient.
12950 @end table
12951
12952 @item x
12953 Set which color component will be represented on X-axis. Default is @code{1}.
12954
12955 @item y
12956 Set which color component will be represented on Y-axis. Default is @code{2}.
12957
12958 @item intensity, i
12959 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
12960 of color component which represents frequency of (X, Y) location in graph.
12961
12962 @item envelope, e
12963 @table @samp
12964 @item none
12965 No envelope, this is default.
12966
12967 @item instant
12968 Instant envelope, even darkest single pixel will be clearly highlighted.
12969
12970 @item peak
12971 Hold maximum and minimum values presented in graph over time. This way you
12972 can still spot out of range values without constantly looking at vectorscope.
12973
12974 @item peak+instant
12975 Peak and instant envelope combined together.
12976 @end table
12977
12978 @item graticule, g
12979 Set what kind of graticule to draw.
12980 @table @samp
12981 @item none
12982 @item green
12983 @item color
12984 @end table
12985
12986 @item opacity, o
12987 Set graticule opacity.
12988
12989 @item flags, f
12990 Set graticule flags.
12991
12992 @table @samp
12993 @item white
12994 Draw graticule for white point.
12995
12996 @item black
12997 Draw graticule for black point.
12998
12999 @item name
13000 Draw color points short names.
13001 @end table
13002
13003 @item bgopacity, b
13004 Set background opacity.
13005
13006 @item lthreshold, l
13007 Set low threshold for color component not represented on X or Y axis.
13008 Values lower than this value will be ignored. Default is 0.
13009 Note this value is multiplied with actual max possible value one pixel component
13010 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13011 is 0.1 * 255 = 25.
13012
13013 @item hthreshold, h
13014 Set high threshold for color component not represented on X or Y axis.
13015 Values higher than this value will be ignored. Default is 1.
13016 Note this value is multiplied with actual max possible value one pixel component
13017 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13018 is 0.9 * 255 = 230.
13019
13020 @item colorspace, c
13021 Set what kind of colorspace to use when drawing graticule.
13022 @table @samp
13023 @item auto
13024 @item 601
13025 @item 709
13026 @end table
13027 Default is auto.
13028 @end table
13029
13030 @anchor{vidstabdetect}
13031 @section vidstabdetect
13032
13033 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13034 @ref{vidstabtransform} for pass 2.
13035
13036 This filter generates a file with relative translation and rotation
13037 transform information about subsequent frames, which is then used by
13038 the @ref{vidstabtransform} filter.
13039
13040 To enable compilation of this filter you need to configure FFmpeg with
13041 @code{--enable-libvidstab}.
13042
13043 This filter accepts the following options:
13044
13045 @table @option
13046 @item result
13047 Set the path to the file used to write the transforms information.
13048 Default value is @file{transforms.trf}.
13049
13050 @item shakiness
13051 Set how shaky the video is and how quick the camera is. It accepts an
13052 integer in the range 1-10, a value of 1 means little shakiness, a
13053 value of 10 means strong shakiness. Default value is 5.
13054
13055 @item accuracy
13056 Set the accuracy of the detection process. It must be a value in the
13057 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13058 accuracy. Default value is 15.
13059
13060 @item stepsize
13061 Set stepsize of the search process. The region around minimum is
13062 scanned with 1 pixel resolution. Default value is 6.
13063
13064 @item mincontrast
13065 Set minimum contrast. Below this value a local measurement field is
13066 discarded. Must be a floating point value in the range 0-1. Default
13067 value is 0.3.
13068
13069 @item tripod
13070 Set reference frame number for tripod mode.
13071
13072 If enabled, the motion of the frames is compared to a reference frame
13073 in the filtered stream, identified by the specified number. The idea
13074 is to compensate all movements in a more-or-less static scene and keep
13075 the camera view absolutely still.
13076
13077 If set to 0, it is disabled. The frames are counted starting from 1.
13078
13079 @item show
13080 Show fields and transforms in the resulting frames. It accepts an
13081 integer in the range 0-2. Default value is 0, which disables any
13082 visualization.
13083 @end table
13084
13085 @subsection Examples
13086
13087 @itemize
13088 @item
13089 Use default values:
13090 @example
13091 vidstabdetect
13092 @end example
13093
13094 @item
13095 Analyze strongly shaky movie and put the results in file
13096 @file{mytransforms.trf}:
13097 @example
13098 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13099 @end example
13100
13101 @item
13102 Visualize the result of internal transformations in the resulting
13103 video:
13104 @example
13105 vidstabdetect=show=1
13106 @end example
13107
13108 @item
13109 Analyze a video with medium shakiness using @command{ffmpeg}:
13110 @example
13111 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13112 @end example
13113 @end itemize
13114
13115 @anchor{vidstabtransform}
13116 @section vidstabtransform
13117
13118 Video stabilization/deshaking: pass 2 of 2,
13119 see @ref{vidstabdetect} for pass 1.
13120
13121 Read a file with transform information for each frame and
13122 apply/compensate them. Together with the @ref{vidstabdetect}
13123 filter this can be used to deshake videos. See also
13124 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13125 the @ref{unsharp} filter, see below.
13126
13127 To enable compilation of this filter you need to configure FFmpeg with
13128 @code{--enable-libvidstab}.
13129
13130 @subsection Options
13131
13132 @table @option
13133 @item input
13134 Set path to the file used to read the transforms. Default value is
13135 @file{transforms.trf}.
13136
13137 @item smoothing
13138 Set the number of frames (value*2 + 1) used for lowpass filtering the
13139 camera movements. Default value is 10.
13140
13141 For example a number of 10 means that 21 frames are used (10 in the
13142 past and 10 in the future) to smoothen the motion in the video. A
13143 larger value leads to a smoother video, but limits the acceleration of
13144 the camera (pan/tilt movements). 0 is a special case where a static
13145 camera is simulated.
13146
13147 @item optalgo
13148 Set the camera path optimization algorithm.
13149
13150 Accepted values are:
13151 @table @samp
13152 @item gauss
13153 gaussian kernel low-pass filter on camera motion (default)
13154 @item avg
13155 averaging on transformations
13156 @end table
13157
13158 @item maxshift
13159 Set maximal number of pixels to translate frames. Default value is -1,
13160 meaning no limit.
13161
13162 @item maxangle
13163 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13164 value is -1, meaning no limit.
13165
13166 @item crop
13167 Specify how to deal with borders that may be visible due to movement
13168 compensation.
13169
13170 Available values are:
13171 @table @samp
13172 @item keep
13173 keep image information from previous frame (default)
13174 @item black
13175 fill the border black
13176 @end table
13177
13178 @item invert
13179 Invert transforms if set to 1. Default value is 0.
13180
13181 @item relative
13182 Consider transforms as relative to previous frame if set to 1,
13183 absolute if set to 0. Default value is 0.
13184
13185 @item zoom
13186 Set percentage to zoom. A positive value will result in a zoom-in
13187 effect, a negative value in a zoom-out effect. Default value is 0 (no
13188 zoom).
13189
13190 @item optzoom
13191 Set optimal zooming to avoid borders.
13192
13193 Accepted values are:
13194 @table @samp
13195 @item 0
13196 disabled
13197 @item 1
13198 optimal static zoom value is determined (only very strong movements
13199 will lead to visible borders) (default)
13200 @item 2
13201 optimal adaptive zoom value is determined (no borders will be
13202 visible), see @option{zoomspeed}
13203 @end table
13204
13205 Note that the value given at zoom is added to the one calculated here.
13206
13207 @item zoomspeed
13208 Set percent to zoom maximally each frame (enabled when
13209 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13210 0.25.
13211
13212 @item interpol
13213 Specify type of interpolation.
13214
13215 Available values are:
13216 @table @samp
13217 @item no
13218 no interpolation
13219 @item linear
13220 linear only horizontal
13221 @item bilinear
13222 linear in both directions (default)
13223 @item bicubic
13224 cubic in both directions (slow)
13225 @end table
13226
13227 @item tripod
13228 Enable virtual tripod mode if set to 1, which is equivalent to
13229 @code{relative=0:smoothing=0}. Default value is 0.
13230
13231 Use also @code{tripod} option of @ref{vidstabdetect}.
13232
13233 @item debug
13234 Increase log verbosity if set to 1. Also the detected global motions
13235 are written to the temporary file @file{global_motions.trf}. Default
13236 value is 0.
13237 @end table
13238
13239 @subsection Examples
13240
13241 @itemize
13242 @item
13243 Use @command{ffmpeg} for a typical stabilization with default values:
13244 @example
13245 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13246 @end example
13247
13248 Note the use of the @ref{unsharp} filter which is always recommended.
13249
13250 @item
13251 Zoom in a bit more and load transform data from a given file:
13252 @example
13253 vidstabtransform=zoom=5:input="mytransforms.trf"
13254 @end example
13255
13256 @item
13257 Smoothen the video even more:
13258 @example
13259 vidstabtransform=smoothing=30
13260 @end example
13261 @end itemize
13262
13263 @section vflip
13264
13265 Flip the input video vertically.
13266
13267 For example, to vertically flip a video with @command{ffmpeg}:
13268 @example
13269 ffmpeg -i in.avi -vf "vflip" out.avi
13270 @end example
13271
13272 @anchor{vignette}
13273 @section vignette
13274
13275 Make or reverse a natural vignetting effect.
13276
13277 The filter accepts the following options:
13278
13279 @table @option
13280 @item angle, a
13281 Set lens angle expression as a number of radians.
13282
13283 The value is clipped in the @code{[0,PI/2]} range.
13284
13285 Default value: @code{"PI/5"}
13286
13287 @item x0
13288 @item y0
13289 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13290 by default.
13291
13292 @item mode
13293 Set forward/backward mode.
13294
13295 Available modes are:
13296 @table @samp
13297 @item forward
13298 The larger the distance from the central point, the darker the image becomes.
13299
13300 @item backward
13301 The larger the distance from the central point, the brighter the image becomes.
13302 This can be used to reverse a vignette effect, though there is no automatic
13303 detection to extract the lens @option{angle} and other settings (yet). It can
13304 also be used to create a burning effect.
13305 @end table
13306
13307 Default value is @samp{forward}.
13308
13309 @item eval
13310 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13311
13312 It accepts the following values:
13313 @table @samp
13314 @item init
13315 Evaluate expressions only once during the filter initialization.
13316
13317 @item frame
13318 Evaluate expressions for each incoming frame. This is way slower than the
13319 @samp{init} mode since it requires all the scalers to be re-computed, but it
13320 allows advanced dynamic expressions.
13321 @end table
13322
13323 Default value is @samp{init}.
13324
13325 @item dither
13326 Set dithering to reduce the circular banding effects. Default is @code{1}
13327 (enabled).
13328
13329 @item aspect
13330 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13331 Setting this value to the SAR of the input will make a rectangular vignetting
13332 following the dimensions of the video.
13333
13334 Default is @code{1/1}.
13335 @end table
13336
13337 @subsection Expressions
13338
13339 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13340 following parameters.
13341
13342 @table @option
13343 @item w
13344 @item h
13345 input width and height
13346
13347 @item n
13348 the number of input frame, starting from 0
13349
13350 @item pts
13351 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13352 @var{TB} units, NAN if undefined
13353
13354 @item r
13355 frame rate of the input video, NAN if the input frame rate is unknown
13356
13357 @item t
13358 the PTS (Presentation TimeStamp) of the filtered video frame,
13359 expressed in seconds, NAN if undefined
13360
13361 @item tb
13362 time base of the input video
13363 @end table
13364
13365
13366 @subsection Examples
13367
13368 @itemize
13369 @item
13370 Apply simple strong vignetting effect:
13371 @example
13372 vignette=PI/4
13373 @end example
13374
13375 @item
13376 Make a flickering vignetting:
13377 @example
13378 vignette='PI/4+random(1)*PI/50':eval=frame
13379 @end example
13380
13381 @end itemize
13382
13383 @section vstack
13384 Stack input videos vertically.
13385
13386 All streams must be of same pixel format and of same width.
13387
13388 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13389 to create same output.
13390
13391 The filter accept the following option:
13392
13393 @table @option
13394 @item inputs
13395 Set number of input streams. Default is 2.
13396
13397 @item shortest
13398 If set to 1, force the output to terminate when the shortest input
13399 terminates. Default value is 0.
13400 @end table
13401
13402 @section w3fdif
13403
13404 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13405 Deinterlacing Filter").
13406
13407 Based on the process described by Martin Weston for BBC R&D, and
13408 implemented based on the de-interlace algorithm written by Jim
13409 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13410 uses filter coefficients calculated by BBC R&D.
13411
13412 There are two sets of filter coefficients, so called "simple":
13413 and "complex". Which set of filter coefficients is used can
13414 be set by passing an optional parameter:
13415
13416 @table @option
13417 @item filter
13418 Set the interlacing filter coefficients. Accepts one of the following values:
13419
13420 @table @samp
13421 @item simple
13422 Simple filter coefficient set.
13423 @item complex
13424 More-complex filter coefficient set.
13425 @end table
13426 Default value is @samp{complex}.
13427
13428 @item deint
13429 Specify which frames to deinterlace. Accept one of the following values:
13430
13431 @table @samp
13432 @item all
13433 Deinterlace all frames,
13434 @item interlaced
13435 Only deinterlace frames marked as interlaced.
13436 @end table
13437
13438 Default value is @samp{all}.
13439 @end table
13440
13441 @section waveform
13442 Video waveform monitor.
13443
13444 The waveform monitor plots color component intensity. By default luminance
13445 only. Each column of the waveform corresponds to a column of pixels in the
13446 source video.
13447
13448 It accepts the following options:
13449
13450 @table @option
13451 @item mode, m
13452 Can be either @code{row}, or @code{column}. Default is @code{column}.
13453 In row mode, the graph on the left side represents color component value 0 and
13454 the right side represents value = 255. In column mode, the top side represents
13455 color component value = 0 and bottom side represents value = 255.
13456
13457 @item intensity, i
13458 Set intensity. Smaller values are useful to find out how many values of the same
13459 luminance are distributed across input rows/columns.
13460 Default value is @code{0.04}. Allowed range is [0, 1].
13461
13462 @item mirror, r
13463 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13464 In mirrored mode, higher values will be represented on the left
13465 side for @code{row} mode and at the top for @code{column} mode. Default is
13466 @code{1} (mirrored).
13467
13468 @item display, d
13469 Set display mode.
13470 It accepts the following values:
13471 @table @samp
13472 @item overlay
13473 Presents information identical to that in the @code{parade}, except
13474 that the graphs representing color components are superimposed directly
13475 over one another.
13476
13477 This display mode makes it easier to spot relative differences or similarities
13478 in overlapping areas of the color components that are supposed to be identical,
13479 such as neutral whites, grays, or blacks.
13480
13481 @item stack
13482 Display separate graph for the color components side by side in
13483 @code{row} mode or one below the other in @code{column} mode.
13484
13485 @item parade
13486 Display separate graph for the color components side by side in
13487 @code{column} mode or one below the other in @code{row} mode.
13488
13489 Using this display mode makes it easy to spot color casts in the highlights
13490 and shadows of an image, by comparing the contours of the top and the bottom
13491 graphs of each waveform. Since whites, grays, and blacks are characterized
13492 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13493 should display three waveforms of roughly equal width/height. If not, the
13494 correction is easy to perform by making level adjustments the three waveforms.
13495 @end table
13496 Default is @code{stack}.
13497
13498 @item components, c
13499 Set which color components to display. Default is 1, which means only luminance
13500 or red color component if input is in RGB colorspace. If is set for example to
13501 7 it will display all 3 (if) available color components.
13502
13503 @item envelope, e
13504 @table @samp
13505 @item none
13506 No envelope, this is default.
13507
13508 @item instant
13509 Instant envelope, minimum and maximum values presented in graph will be easily
13510 visible even with small @code{step} value.
13511
13512 @item peak
13513 Hold minimum and maximum values presented in graph across time. This way you
13514 can still spot out of range values without constantly looking at waveforms.
13515
13516 @item peak+instant
13517 Peak and instant envelope combined together.
13518 @end table
13519
13520 @item filter, f
13521 @table @samp
13522 @item lowpass
13523 No filtering, this is default.
13524
13525 @item flat
13526 Luma and chroma combined together.
13527
13528 @item aflat
13529 Similar as above, but shows difference between blue and red chroma.
13530
13531 @item chroma
13532 Displays only chroma.
13533
13534 @item color
13535 Displays actual color value on waveform.
13536
13537 @item acolor
13538 Similar as above, but with luma showing frequency of chroma values.
13539 @end table
13540
13541 @item graticule, g
13542 Set which graticule to display.
13543
13544 @table @samp
13545 @item none
13546 Do not display graticule.
13547
13548 @item green
13549 Display green graticule showing legal broadcast ranges.
13550 @end table
13551
13552 @item opacity, o
13553 Set graticule opacity.
13554
13555 @item flags, fl
13556 Set graticule flags.
13557
13558 @table @samp
13559 @item numbers
13560 Draw numbers above lines. By default enabled.
13561
13562 @item dots
13563 Draw dots instead of lines.
13564 @end table
13565
13566 @item scale, s
13567 Set scale used for displaying graticule.
13568
13569 @table @samp
13570 @item digital
13571 @item millivolts
13572 @item ire
13573 @end table
13574 Default is digital.
13575 @end table
13576
13577 @section xbr
13578 Apply the xBR high-quality magnification filter which is designed for pixel
13579 art. It follows a set of edge-detection rules, see
13580 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13581
13582 It accepts the following option:
13583
13584 @table @option
13585 @item n
13586 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13587 @code{3xBR} and @code{4} for @code{4xBR}.
13588 Default is @code{3}.
13589 @end table
13590
13591 @anchor{yadif}
13592 @section yadif
13593
13594 Deinterlace the input video ("yadif" means "yet another deinterlacing
13595 filter").
13596
13597 It accepts the following parameters:
13598
13599
13600 @table @option
13601
13602 @item mode
13603 The interlacing mode to adopt. It accepts one of the following values:
13604
13605 @table @option
13606 @item 0, send_frame
13607 Output one frame for each frame.
13608 @item 1, send_field
13609 Output one frame for each field.
13610 @item 2, send_frame_nospatial
13611 Like @code{send_frame}, but it skips the spatial interlacing check.
13612 @item 3, send_field_nospatial
13613 Like @code{send_field}, but it skips the spatial interlacing check.
13614 @end table
13615
13616 The default value is @code{send_frame}.
13617
13618 @item parity
13619 The picture field parity assumed for the input interlaced video. It accepts one
13620 of the following values:
13621
13622 @table @option
13623 @item 0, tff
13624 Assume the top field is first.
13625 @item 1, bff
13626 Assume the bottom field is first.
13627 @item -1, auto
13628 Enable automatic detection of field parity.
13629 @end table
13630
13631 The default value is @code{auto}.
13632 If the interlacing is unknown or the decoder does not export this information,
13633 top field first will be assumed.
13634
13635 @item deint
13636 Specify which frames to deinterlace. Accept one of the following
13637 values:
13638
13639 @table @option
13640 @item 0, all
13641 Deinterlace all frames.
13642 @item 1, interlaced
13643 Only deinterlace frames marked as interlaced.
13644 @end table
13645
13646 The default value is @code{all}.
13647 @end table
13648
13649 @section zoompan
13650
13651 Apply Zoom & Pan effect.
13652
13653 This filter accepts the following options:
13654
13655 @table @option
13656 @item zoom, z
13657 Set the zoom expression. Default is 1.
13658
13659 @item x
13660 @item y
13661 Set the x and y expression. Default is 0.
13662
13663 @item d
13664 Set the duration expression in number of frames.
13665 This sets for how many number of frames effect will last for
13666 single input image.
13667
13668 @item s
13669 Set the output image size, default is 'hd720'.
13670
13671 @item fps
13672 Set the output frame rate, default is '25'.
13673 @end table
13674
13675 Each expression can contain the following constants:
13676
13677 @table @option
13678 @item in_w, iw
13679 Input width.
13680
13681 @item in_h, ih
13682 Input height.
13683
13684 @item out_w, ow
13685 Output width.
13686
13687 @item out_h, oh
13688 Output height.
13689
13690 @item in
13691 Input frame count.
13692
13693 @item on
13694 Output frame count.
13695
13696 @item x
13697 @item y
13698 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13699 for current input frame.
13700
13701 @item px
13702 @item py
13703 'x' and 'y' of last output frame of previous input frame or 0 when there was
13704 not yet such frame (first input frame).
13705
13706 @item zoom
13707 Last calculated zoom from 'z' expression for current input frame.
13708
13709 @item pzoom
13710 Last calculated zoom of last output frame of previous input frame.
13711
13712 @item duration
13713 Number of output frames for current input frame. Calculated from 'd' expression
13714 for each input frame.
13715
13716 @item pduration
13717 number of output frames created for previous input frame
13718
13719 @item a
13720 Rational number: input width / input height
13721
13722 @item sar
13723 sample aspect ratio
13724
13725 @item dar
13726 display aspect ratio
13727
13728 @end table
13729
13730 @subsection Examples
13731
13732 @itemize
13733 @item
13734 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13735 @example
13736 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
13737 @end example
13738
13739 @item
13740 Zoom-in up to 1.5 and pan always at center of picture:
13741 @example
13742 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13743 @end example
13744 @end itemize
13745
13746 @section zscale
13747 Scale (resize) the input video, using the z.lib library:
13748 https://github.com/sekrit-twc/zimg.
13749
13750 The zscale filter forces the output display aspect ratio to be the same
13751 as the input, by changing the output sample aspect ratio.
13752
13753 If the input image format is different from the format requested by
13754 the next filter, the zscale filter will convert the input to the
13755 requested format.
13756
13757 @subsection Options
13758 The filter accepts the following options.
13759
13760 @table @option
13761 @item width, w
13762 @item height, h
13763 Set the output video dimension expression. Default value is the input
13764 dimension.
13765
13766 If the @var{width} or @var{w} is 0, the input width is used for the output.
13767 If the @var{height} or @var{h} is 0, the input height is used for the output.
13768
13769 If one of the values is -1, the zscale filter will use a value that
13770 maintains the aspect ratio of the input image, calculated from the
13771 other specified dimension. If both of them are -1, the input size is
13772 used
13773
13774 If one of the values is -n with n > 1, the zscale filter will also use a value
13775 that maintains the aspect ratio of the input image, calculated from the other
13776 specified dimension. After that it will, however, make sure that the calculated
13777 dimension is divisible by n and adjust the value if necessary.
13778
13779 See below for the list of accepted constants for use in the dimension
13780 expression.
13781
13782 @item size, s
13783 Set the video size. For the syntax of this option, check the
13784 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13785
13786 @item dither, d
13787 Set the dither type.
13788
13789 Possible values are:
13790 @table @var
13791 @item none
13792 @item ordered
13793 @item random
13794 @item error_diffusion
13795 @end table
13796
13797 Default is none.
13798
13799 @item filter, f
13800 Set the resize filter type.
13801
13802 Possible values are:
13803 @table @var
13804 @item point
13805 @item bilinear
13806 @item bicubic
13807 @item spline16
13808 @item spline36
13809 @item lanczos
13810 @end table
13811
13812 Default is bilinear.
13813
13814 @item range, r
13815 Set the color range.
13816
13817 Possible values are:
13818 @table @var
13819 @item input
13820 @item limited
13821 @item full
13822 @end table
13823
13824 Default is same as input.
13825
13826 @item primaries, p
13827 Set the color primaries.
13828
13829 Possible values are:
13830 @table @var
13831 @item input
13832 @item 709
13833 @item unspecified
13834 @item 170m
13835 @item 240m
13836 @item 2020
13837 @end table
13838
13839 Default is same as input.
13840
13841 @item transfer, t
13842 Set the transfer characteristics.
13843
13844 Possible values are:
13845 @table @var
13846 @item input
13847 @item 709
13848 @item unspecified
13849 @item 601
13850 @item linear
13851 @item 2020_10
13852 @item 2020_12
13853 @end table
13854
13855 Default is same as input.
13856
13857 @item matrix, m
13858 Set the colorspace matrix.
13859
13860 Possible value are:
13861 @table @var
13862 @item input
13863 @item 709
13864 @item unspecified
13865 @item 470bg
13866 @item 170m
13867 @item 2020_ncl
13868 @item 2020_cl
13869 @end table
13870
13871 Default is same as input.
13872
13873 @item rangein, rin
13874 Set the input color range.
13875
13876 Possible values are:
13877 @table @var
13878 @item input
13879 @item limited
13880 @item full
13881 @end table
13882
13883 Default is same as input.
13884
13885 @item primariesin, pin
13886 Set the input color primaries.
13887
13888 Possible values are:
13889 @table @var
13890 @item input
13891 @item 709
13892 @item unspecified
13893 @item 170m
13894 @item 240m
13895 @item 2020
13896 @end table
13897
13898 Default is same as input.
13899
13900 @item transferin, tin
13901 Set the input transfer characteristics.
13902
13903 Possible values are:
13904 @table @var
13905 @item input
13906 @item 709
13907 @item unspecified
13908 @item 601
13909 @item linear
13910 @item 2020_10
13911 @item 2020_12
13912 @end table
13913
13914 Default is same as input.
13915
13916 @item matrixin, min
13917 Set the input colorspace matrix.
13918
13919 Possible value are:
13920 @table @var
13921 @item input
13922 @item 709
13923 @item unspecified
13924 @item 470bg
13925 @item 170m
13926 @item 2020_ncl
13927 @item 2020_cl
13928 @end table
13929 @end table
13930
13931 The values of the @option{w} and @option{h} options are expressions
13932 containing the following constants:
13933
13934 @table @var
13935 @item in_w
13936 @item in_h
13937 The input width and height
13938
13939 @item iw
13940 @item ih
13941 These are the same as @var{in_w} and @var{in_h}.
13942
13943 @item out_w
13944 @item out_h
13945 The output (scaled) width and height
13946
13947 @item ow
13948 @item oh
13949 These are the same as @var{out_w} and @var{out_h}
13950
13951 @item a
13952 The same as @var{iw} / @var{ih}
13953
13954 @item sar
13955 input sample aspect ratio
13956
13957 @item dar
13958 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
13959
13960 @item hsub
13961 @item vsub
13962 horizontal and vertical input chroma subsample values. For example for the
13963 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13964
13965 @item ohsub
13966 @item ovsub
13967 horizontal and vertical output chroma subsample values. For example for the
13968 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13969 @end table
13970
13971 @table @option
13972 @end table
13973
13974 @c man end VIDEO FILTERS
13975
13976 @chapter Video Sources
13977 @c man begin VIDEO SOURCES
13978
13979 Below is a description of the currently available video sources.
13980
13981 @section buffer
13982
13983 Buffer video frames, and make them available to the filter chain.
13984
13985 This source is mainly intended for a programmatic use, in particular
13986 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
13987
13988 It accepts the following parameters:
13989
13990 @table @option
13991
13992 @item video_size
13993 Specify the size (width and height) of the buffered video frames. For the
13994 syntax of this option, check the
13995 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13996
13997 @item width
13998 The input video width.
13999
14000 @item height
14001 The input video height.
14002
14003 @item pix_fmt
14004 A string representing the pixel format of the buffered video frames.
14005 It may be a number corresponding to a pixel format, or a pixel format
14006 name.
14007
14008 @item time_base
14009 Specify the timebase assumed by the timestamps of the buffered frames.
14010
14011 @item frame_rate
14012 Specify the frame rate expected for the video stream.
14013
14014 @item pixel_aspect, sar
14015 The sample (pixel) aspect ratio of the input video.
14016
14017 @item sws_param
14018 Specify the optional parameters to be used for the scale filter which
14019 is automatically inserted when an input change is detected in the
14020 input size or format.
14021
14022 @item hw_frames_ctx
14023 When using a hardware pixel format, this should be a reference to an
14024 AVHWFramesContext describing input frames.
14025 @end table
14026
14027 For example:
14028 @example
14029 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14030 @end example
14031
14032 will instruct the source to accept video frames with size 320x240 and
14033 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14034 square pixels (1:1 sample aspect ratio).
14035 Since the pixel format with name "yuv410p" corresponds to the number 6
14036 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14037 this example corresponds to:
14038 @example
14039 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14040 @end example
14041
14042 Alternatively, the options can be specified as a flat string, but this
14043 syntax is deprecated:
14044
14045 @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}]
14046
14047 @section cellauto
14048
14049 Create a pattern generated by an elementary cellular automaton.
14050
14051 The initial state of the cellular automaton can be defined through the
14052 @option{filename}, and @option{pattern} options. If such options are
14053 not specified an initial state is created randomly.
14054
14055 At each new frame a new row in the video is filled with the result of
14056 the cellular automaton next generation. The behavior when the whole
14057 frame is filled is defined by the @option{scroll} option.
14058
14059 This source accepts the following options:
14060
14061 @table @option
14062 @item filename, f
14063 Read the initial cellular automaton state, i.e. the starting row, from
14064 the specified file.
14065 In the file, each non-whitespace character is considered an alive
14066 cell, a newline will terminate the row, and further characters in the
14067 file will be ignored.
14068
14069 @item pattern, p
14070 Read the initial cellular automaton state, i.e. the starting row, from
14071 the specified string.
14072
14073 Each non-whitespace character in the string is considered an alive
14074 cell, a newline will terminate the row, and further characters in the
14075 string will be ignored.
14076
14077 @item rate, r
14078 Set the video rate, that is the number of frames generated per second.
14079 Default is 25.
14080
14081 @item random_fill_ratio, ratio
14082 Set the random fill ratio for the initial cellular automaton row. It
14083 is a floating point number value ranging from 0 to 1, defaults to
14084 1/PHI.
14085
14086 This option is ignored when a file or a pattern is specified.
14087
14088 @item random_seed, seed
14089 Set the seed for filling randomly the initial row, must be an integer
14090 included between 0 and UINT32_MAX. If not specified, or if explicitly
14091 set to -1, the filter will try to use a good random seed on a best
14092 effort basis.
14093
14094 @item rule
14095 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14096 Default value is 110.
14097
14098 @item size, s
14099 Set the size of the output video. For the syntax of this option, check the
14100 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14101
14102 If @option{filename} or @option{pattern} is specified, the size is set
14103 by default to the width of the specified initial state row, and the
14104 height is set to @var{width} * PHI.
14105
14106 If @option{size} is set, it must contain the width of the specified
14107 pattern string, and the specified pattern will be centered in the
14108 larger row.
14109
14110 If a filename or a pattern string is not specified, the size value
14111 defaults to "320x518" (used for a randomly generated initial state).
14112
14113 @item scroll
14114 If set to 1, scroll the output upward when all the rows in the output
14115 have been already filled. If set to 0, the new generated row will be
14116 written over the top row just after the bottom row is filled.
14117 Defaults to 1.
14118
14119 @item start_full, full
14120 If set to 1, completely fill the output with generated rows before
14121 outputting the first frame.
14122 This is the default behavior, for disabling set the value to 0.
14123
14124 @item stitch
14125 If set to 1, stitch the left and right row edges together.
14126 This is the default behavior, for disabling set the value to 0.
14127 @end table
14128
14129 @subsection Examples
14130
14131 @itemize
14132 @item
14133 Read the initial state from @file{pattern}, and specify an output of
14134 size 200x400.
14135 @example
14136 cellauto=f=pattern:s=200x400
14137 @end example
14138
14139 @item
14140 Generate a random initial row with a width of 200 cells, with a fill
14141 ratio of 2/3:
14142 @example
14143 cellauto=ratio=2/3:s=200x200
14144 @end example
14145
14146 @item
14147 Create a pattern generated by rule 18 starting by a single alive cell
14148 centered on an initial row with width 100:
14149 @example
14150 cellauto=p=@@:s=100x400:full=0:rule=18
14151 @end example
14152
14153 @item
14154 Specify a more elaborated initial pattern:
14155 @example
14156 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14157 @end example
14158
14159 @end itemize
14160
14161 @anchor{coreimagesrc}
14162 @section coreimagesrc
14163 Video source generated on GPU using Apple's CoreImage API on OSX.
14164
14165 This video source is a specialized version of the @ref{coreimage} video filter.
14166 Use a core image generator at the beginning of the applied filterchain to
14167 generate the content.
14168
14169 The coreimagesrc video source accepts the following options:
14170 @table @option
14171 @item list_generators
14172 List all available generators along with all their respective options as well as
14173 possible minimum and maximum values along with the default values.
14174 @example
14175 list_generators=true
14176 @end example
14177
14178 @item size, s
14179 Specify the size of the sourced video. For the syntax of this option, check the
14180 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14181 The default value is @code{320x240}.
14182
14183 @item rate, r
14184 Specify the frame rate of the sourced video, as the number of frames
14185 generated per second. It has to be a string in the format
14186 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14187 number or a valid video frame rate abbreviation. The default value is
14188 "25".
14189
14190 @item sar
14191 Set the sample aspect ratio of the sourced video.
14192
14193 @item duration, d
14194 Set the duration of the sourced video. See
14195 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14196 for the accepted syntax.
14197
14198 If not specified, or the expressed duration is negative, the video is
14199 supposed to be generated forever.
14200 @end table
14201
14202 Additionally, all options of the @ref{coreimage} video filter are accepted.
14203 A complete filterchain can be used for further processing of the
14204 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14205 and examples for details.
14206
14207 @subsection Examples
14208
14209 @itemize
14210
14211 @item
14212 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14213 given as complete and escaped command-line for Apple's standard bash shell:
14214 @example
14215 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14216 @end example
14217 This example is equivalent to the QRCode example of @ref{coreimage} without the
14218 need for a nullsrc video source.
14219 @end itemize
14220
14221
14222 @section mandelbrot
14223
14224 Generate a Mandelbrot set fractal, and progressively zoom towards the
14225 point specified with @var{start_x} and @var{start_y}.
14226
14227 This source accepts the following options:
14228
14229 @table @option
14230
14231 @item end_pts
14232 Set the terminal pts value. Default value is 400.
14233
14234 @item end_scale
14235 Set the terminal scale value.
14236 Must be a floating point value. Default value is 0.3.
14237
14238 @item inner
14239 Set the inner coloring mode, that is the algorithm used to draw the
14240 Mandelbrot fractal internal region.
14241
14242 It shall assume one of the following values:
14243 @table @option
14244 @item black
14245 Set black mode.
14246 @item convergence
14247 Show time until convergence.
14248 @item mincol
14249 Set color based on point closest to the origin of the iterations.
14250 @item period
14251 Set period mode.
14252 @end table
14253
14254 Default value is @var{mincol}.
14255
14256 @item bailout
14257 Set the bailout value. Default value is 10.0.
14258
14259 @item maxiter
14260 Set the maximum of iterations performed by the rendering
14261 algorithm. Default value is 7189.
14262
14263 @item outer
14264 Set outer coloring mode.
14265 It shall assume one of following values:
14266 @table @option
14267 @item iteration_count
14268 Set iteration cound mode.
14269 @item normalized_iteration_count
14270 set normalized iteration count mode.
14271 @end table
14272 Default value is @var{normalized_iteration_count}.
14273
14274 @item rate, r
14275 Set frame rate, expressed as number of frames per second. Default
14276 value is "25".
14277
14278 @item size, s
14279 Set frame size. For the syntax of this option, check the "Video
14280 size" section in the ffmpeg-utils manual. Default value is "640x480".
14281
14282 @item start_scale
14283 Set the initial scale value. Default value is 3.0.
14284
14285 @item start_x
14286 Set the initial x position. Must be a floating point value between
14287 -100 and 100. Default value is -0.743643887037158704752191506114774.
14288
14289 @item start_y
14290 Set the initial y position. Must be a floating point value between
14291 -100 and 100. Default value is -0.131825904205311970493132056385139.
14292 @end table
14293
14294 @section mptestsrc
14295
14296 Generate various test patterns, as generated by the MPlayer test filter.
14297
14298 The size of the generated video is fixed, and is 256x256.
14299 This source is useful in particular for testing encoding features.
14300
14301 This source accepts the following options:
14302
14303 @table @option
14304
14305 @item rate, r
14306 Specify the frame rate of the sourced video, as the number of frames
14307 generated per second. It has to be a string in the format
14308 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14309 number or a valid video frame rate abbreviation. The default value is
14310 "25".
14311
14312 @item duration, d
14313 Set the duration of the sourced video. See
14314 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14315 for the accepted syntax.
14316
14317 If not specified, or the expressed duration is negative, the video is
14318 supposed to be generated forever.
14319
14320 @item test, t
14321
14322 Set the number or the name of the test to perform. Supported tests are:
14323 @table @option
14324 @item dc_luma
14325 @item dc_chroma
14326 @item freq_luma
14327 @item freq_chroma
14328 @item amp_luma
14329 @item amp_chroma
14330 @item cbp
14331 @item mv
14332 @item ring1
14333 @item ring2
14334 @item all
14335
14336 @end table
14337
14338 Default value is "all", which will cycle through the list of all tests.
14339 @end table
14340
14341 Some examples:
14342 @example
14343 mptestsrc=t=dc_luma
14344 @end example
14345
14346 will generate a "dc_luma" test pattern.
14347
14348 @section frei0r_src
14349
14350 Provide a frei0r source.
14351
14352 To enable compilation of this filter you need to install the frei0r
14353 header and configure FFmpeg with @code{--enable-frei0r}.
14354
14355 This source accepts the following parameters:
14356
14357 @table @option
14358
14359 @item size
14360 The size of the video to generate. For the syntax of this option, check the
14361 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14362
14363 @item framerate
14364 The framerate of the generated video. It may be a string of the form
14365 @var{num}/@var{den} or a frame rate abbreviation.
14366
14367 @item filter_name
14368 The name to the frei0r source to load. For more information regarding frei0r and
14369 how to set the parameters, read the @ref{frei0r} section in the video filters
14370 documentation.
14371
14372 @item filter_params
14373 A '|'-separated list of parameters to pass to the frei0r source.
14374
14375 @end table
14376
14377 For example, to generate a frei0r partik0l source with size 200x200
14378 and frame rate 10 which is overlaid on the overlay filter main input:
14379 @example
14380 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14381 @end example
14382
14383 @section life
14384
14385 Generate a life pattern.
14386
14387 This source is based on a generalization of John Conway's life game.
14388
14389 The sourced input represents a life grid, each pixel represents a cell
14390 which can be in one of two possible states, alive or dead. Every cell
14391 interacts with its eight neighbours, which are the cells that are
14392 horizontally, vertically, or diagonally adjacent.
14393
14394 At each interaction the grid evolves according to the adopted rule,
14395 which specifies the number of neighbor alive cells which will make a
14396 cell stay alive or born. The @option{rule} option allows one to specify
14397 the rule to adopt.
14398
14399 This source accepts the following options:
14400
14401 @table @option
14402 @item filename, f
14403 Set the file from which to read the initial grid state. In the file,
14404 each non-whitespace character is considered an alive cell, and newline
14405 is used to delimit the end of each row.
14406
14407 If this option is not specified, the initial grid is generated
14408 randomly.
14409
14410 @item rate, r
14411 Set the video rate, that is the number of frames generated per second.
14412 Default is 25.
14413
14414 @item random_fill_ratio, ratio
14415 Set the random fill ratio for the initial random grid. It is a
14416 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14417 It is ignored when a file is specified.
14418
14419 @item random_seed, seed
14420 Set the seed for filling the initial random grid, must be an integer
14421 included between 0 and UINT32_MAX. If not specified, or if explicitly
14422 set to -1, the filter will try to use a good random seed on a best
14423 effort basis.
14424
14425 @item rule
14426 Set the life rule.
14427
14428 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14429 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14430 @var{NS} specifies the number of alive neighbor cells which make a
14431 live cell stay alive, and @var{NB} the number of alive neighbor cells
14432 which make a dead cell to become alive (i.e. to "born").
14433 "s" and "b" can be used in place of "S" and "B", respectively.
14434
14435 Alternatively a rule can be specified by an 18-bits integer. The 9
14436 high order bits are used to encode the next cell state if it is alive
14437 for each number of neighbor alive cells, the low order bits specify
14438 the rule for "borning" new cells. Higher order bits encode for an
14439 higher number of neighbor cells.
14440 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14441 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14442
14443 Default value is "S23/B3", which is the original Conway's game of life
14444 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14445 cells, and will born a new cell if there are three alive cells around
14446 a dead cell.
14447
14448 @item size, s
14449 Set the size of the output video. For the syntax of this option, check the
14450 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14451
14452 If @option{filename} is specified, the size is set by default to the
14453 same size of the input file. If @option{size} is set, it must contain
14454 the size specified in the input file, and the initial grid defined in
14455 that file is centered in the larger resulting area.
14456
14457 If a filename is not specified, the size value defaults to "320x240"
14458 (used for a randomly generated initial grid).
14459
14460 @item stitch
14461 If set to 1, stitch the left and right grid edges together, and the
14462 top and bottom edges also. Defaults to 1.
14463
14464 @item mold
14465 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14466 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14467 value from 0 to 255.
14468
14469 @item life_color
14470 Set the color of living (or new born) cells.
14471
14472 @item death_color
14473 Set the color of dead cells. If @option{mold} is set, this is the first color
14474 used to represent a dead cell.
14475
14476 @item mold_color
14477 Set mold color, for definitely dead and moldy cells.
14478
14479 For the syntax of these 3 color options, check the "Color" section in the
14480 ffmpeg-utils manual.
14481 @end table
14482
14483 @subsection Examples
14484
14485 @itemize
14486 @item
14487 Read a grid from @file{pattern}, and center it on a grid of size
14488 300x300 pixels:
14489 @example
14490 life=f=pattern:s=300x300
14491 @end example
14492
14493 @item
14494 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14495 @example
14496 life=ratio=2/3:s=200x200
14497 @end example
14498
14499 @item
14500 Specify a custom rule for evolving a randomly generated grid:
14501 @example
14502 life=rule=S14/B34
14503 @end example
14504
14505 @item
14506 Full example with slow death effect (mold) using @command{ffplay}:
14507 @example
14508 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14509 @end example
14510 @end itemize
14511
14512 @anchor{allrgb}
14513 @anchor{allyuv}
14514 @anchor{color}
14515 @anchor{haldclutsrc}
14516 @anchor{nullsrc}
14517 @anchor{rgbtestsrc}
14518 @anchor{smptebars}
14519 @anchor{smptehdbars}
14520 @anchor{testsrc}
14521 @anchor{testsrc2}
14522 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14523
14524 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14525
14526 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14527
14528 The @code{color} source provides an uniformly colored input.
14529
14530 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14531 @ref{haldclut} filter.
14532
14533 The @code{nullsrc} source returns unprocessed video frames. It is
14534 mainly useful to be employed in analysis / debugging tools, or as the
14535 source for filters which ignore the input data.
14536
14537 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14538 detecting RGB vs BGR issues. You should see a red, green and blue
14539 stripe from top to bottom.
14540
14541 The @code{smptebars} source generates a color bars pattern, based on
14542 the SMPTE Engineering Guideline EG 1-1990.
14543
14544 The @code{smptehdbars} source generates a color bars pattern, based on
14545 the SMPTE RP 219-2002.
14546
14547 The @code{testsrc} source generates a test video pattern, showing a
14548 color pattern, a scrolling gradient and a timestamp. This is mainly
14549 intended for testing purposes.
14550
14551 The @code{testsrc2} source is similar to testsrc, but supports more
14552 pixel formats instead of just @code{rgb24}. This allows using it as an
14553 input for other tests without requiring a format conversion.
14554
14555 The sources accept the following parameters:
14556
14557 @table @option
14558
14559 @item color, c
14560 Specify the color of the source, only available in the @code{color}
14561 source. For the syntax of this option, check the "Color" section in the
14562 ffmpeg-utils manual.
14563
14564 @item level
14565 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14566 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14567 pixels to be used as identity matrix for 3D lookup tables. Each component is
14568 coded on a @code{1/(N*N)} scale.
14569
14570 @item size, s
14571 Specify the size of the sourced video. For the syntax of this option, check the
14572 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14573 The default value is @code{320x240}.
14574
14575 This option is not available with the @code{haldclutsrc} filter.
14576
14577 @item rate, r
14578 Specify the frame rate of the sourced video, as the number of frames
14579 generated per second. It has to be a string in the format
14580 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14581 number or a valid video frame rate abbreviation. The default value is
14582 "25".
14583
14584 @item sar
14585 Set the sample aspect ratio of the sourced video.
14586
14587 @item duration, d
14588 Set the duration of the sourced video. See
14589 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14590 for the accepted syntax.
14591
14592 If not specified, or the expressed duration is negative, the video is
14593 supposed to be generated forever.
14594
14595 @item decimals, n
14596 Set the number of decimals to show in the timestamp, only available in the
14597 @code{testsrc} source.
14598
14599 The displayed timestamp value will correspond to the original
14600 timestamp value multiplied by the power of 10 of the specified
14601 value. Default value is 0.
14602 @end table
14603
14604 For example the following:
14605 @example
14606 testsrc=duration=5.3:size=qcif:rate=10
14607 @end example
14608
14609 will generate a video with a duration of 5.3 seconds, with size
14610 176x144 and a frame rate of 10 frames per second.
14611
14612 The following graph description will generate a red source
14613 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14614 frames per second.
14615 @example
14616 color=c=red@@0.2:s=qcif:r=10
14617 @end example
14618
14619 If the input content is to be ignored, @code{nullsrc} can be used. The
14620 following command generates noise in the luminance plane by employing
14621 the @code{geq} filter:
14622 @example
14623 nullsrc=s=256x256, geq=random(1)*255:128:128
14624 @end example
14625
14626 @subsection Commands
14627
14628 The @code{color} source supports the following commands:
14629
14630 @table @option
14631 @item c, color
14632 Set the color of the created image. Accepts the same syntax of the
14633 corresponding @option{color} option.
14634 @end table
14635
14636 @c man end VIDEO SOURCES
14637
14638 @chapter Video Sinks
14639 @c man begin VIDEO SINKS
14640
14641 Below is a description of the currently available video sinks.
14642
14643 @section buffersink
14644
14645 Buffer video frames, and make them available to the end of the filter
14646 graph.
14647
14648 This sink is mainly intended for programmatic use, in particular
14649 through the interface defined in @file{libavfilter/buffersink.h}
14650 or the options system.
14651
14652 It accepts a pointer to an AVBufferSinkContext structure, which
14653 defines the incoming buffers' formats, to be passed as the opaque
14654 parameter to @code{avfilter_init_filter} for initialization.
14655
14656 @section nullsink
14657
14658 Null video sink: do absolutely nothing with the input video. It is
14659 mainly useful as a template and for use in analysis / debugging
14660 tools.
14661
14662 @c man end VIDEO SINKS
14663
14664 @chapter Multimedia Filters
14665 @c man begin MULTIMEDIA FILTERS
14666
14667 Below is a description of the currently available multimedia filters.
14668
14669 @section ahistogram
14670
14671 Convert input audio to a video output, displaying the volume histogram.
14672
14673 The filter accepts the following options:
14674
14675 @table @option
14676 @item dmode
14677 Specify how histogram is calculated.
14678
14679 It accepts the following values:
14680 @table @samp
14681 @item single
14682 Use single histogram for all channels.
14683 @item separate
14684 Use separate histogram for each channel.
14685 @end table
14686 Default is @code{single}.
14687
14688 @item rate, r
14689 Set frame rate, expressed as number of frames per second. Default
14690 value is "25".
14691
14692 @item size, s
14693 Specify the video size for the output. For the syntax of this option, check the
14694 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14695 Default value is @code{hd720}.
14696
14697 @item scale
14698 Set display scale.
14699
14700 It accepts the following values:
14701 @table @samp
14702 @item log
14703 logarithmic
14704 @item sqrt
14705 square root
14706 @item cbrt
14707 cubic root
14708 @item lin
14709 linear
14710 @item rlog
14711 reverse logarithmic
14712 @end table
14713 Default is @code{log}.
14714
14715 @item ascale
14716 Set amplitude scale.
14717
14718 It accepts the following values:
14719 @table @samp
14720 @item log
14721 logarithmic
14722 @item lin
14723 linear
14724 @end table
14725 Default is @code{log}.
14726
14727 @item acount
14728 Set how much frames to accumulate in histogram.
14729 Defauls is 1. Setting this to -1 accumulates all frames.
14730
14731 @item rheight
14732 Set histogram ratio of window height.
14733
14734 @item slide
14735 Set sonogram sliding.
14736
14737 It accepts the following values:
14738 @table @samp
14739 @item replace
14740 replace old rows with new ones.
14741 @item scroll
14742 scroll from top to bottom.
14743 @end table
14744 Default is @code{replace}.
14745 @end table
14746
14747 @section aphasemeter
14748
14749 Convert input audio to a video output, displaying the audio phase.
14750
14751 The filter accepts the following options:
14752
14753 @table @option
14754 @item rate, r
14755 Set the output frame rate. Default value is @code{25}.
14756
14757 @item size, s
14758 Set the video size for the output. For the syntax of this option, check the
14759 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14760 Default value is @code{800x400}.
14761
14762 @item rc
14763 @item gc
14764 @item bc
14765 Specify the red, green, blue contrast. Default values are @code{2},
14766 @code{7} and @code{1}.
14767 Allowed range is @code{[0, 255]}.
14768
14769 @item mpc
14770 Set color which will be used for drawing median phase. If color is
14771 @code{none} which is default, no median phase value will be drawn.
14772 @end table
14773
14774 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
14775 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
14776 The @code{-1} means left and right channels are completely out of phase and
14777 @code{1} means channels are in phase.
14778
14779 @section avectorscope
14780
14781 Convert input audio to a video output, representing the audio vector
14782 scope.
14783
14784 The filter is used to measure the difference between channels of stereo
14785 audio stream. A monoaural signal, consisting of identical left and right
14786 signal, results in straight vertical line. Any stereo separation is visible
14787 as a deviation from this line, creating a Lissajous figure.
14788 If the straight (or deviation from it) but horizontal line appears this
14789 indicates that the left and right channels are out of phase.
14790
14791 The filter accepts the following options:
14792
14793 @table @option
14794 @item mode, m
14795 Set the vectorscope mode.
14796
14797 Available values are:
14798 @table @samp
14799 @item lissajous
14800 Lissajous rotated by 45 degrees.
14801
14802 @item lissajous_xy
14803 Same as above but not rotated.
14804
14805 @item polar
14806 Shape resembling half of circle.
14807 @end table
14808
14809 Default value is @samp{lissajous}.
14810
14811 @item size, s
14812 Set the video size for the output. For the syntax of this option, check the
14813 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14814 Default value is @code{400x400}.
14815
14816 @item rate, r
14817 Set the output frame rate. Default value is @code{25}.
14818
14819 @item rc
14820 @item gc
14821 @item bc
14822 @item ac
14823 Specify the red, green, blue and alpha contrast. Default values are @code{40},
14824 @code{160}, @code{80} and @code{255}.
14825 Allowed range is @code{[0, 255]}.
14826
14827 @item rf
14828 @item gf
14829 @item bf
14830 @item af
14831 Specify the red, green, blue and alpha fade. Default values are @code{15},
14832 @code{10}, @code{5} and @code{5}.
14833 Allowed range is @code{[0, 255]}.
14834
14835 @item zoom
14836 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
14837
14838 @item draw
14839 Set the vectorscope drawing mode.
14840
14841 Available values are:
14842 @table @samp
14843 @item dot
14844 Draw dot for each sample.
14845
14846 @item line
14847 Draw line between previous and current sample.
14848 @end table
14849
14850 Default value is @samp{dot}.
14851 @end table
14852
14853 @subsection Examples
14854
14855 @itemize
14856 @item
14857 Complete example using @command{ffplay}:
14858 @example
14859 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14860              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
14861 @end example
14862 @end itemize
14863
14864 @section bench, abench
14865
14866 Benchmark part of a filtergraph.
14867
14868 The filter accepts the following options:
14869
14870 @table @option
14871 @item action
14872 Start or stop a timer.
14873
14874 Available values are:
14875 @table @samp
14876 @item start
14877 Get the current time, set it as frame metadata (using the key
14878 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
14879
14880 @item stop
14881 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
14882 the input frame metadata to get the time difference. Time difference, average,
14883 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
14884 @code{min}) are then printed. The timestamps are expressed in seconds.
14885 @end table
14886 @end table
14887
14888 @subsection Examples
14889
14890 @itemize
14891 @item
14892 Benchmark @ref{selectivecolor} filter:
14893 @example
14894 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
14895 @end example
14896 @end itemize
14897
14898 @section concat
14899
14900 Concatenate audio and video streams, joining them together one after the
14901 other.
14902
14903 The filter works on segments of synchronized video and audio streams. All
14904 segments must have the same number of streams of each type, and that will
14905 also be the number of streams at output.
14906
14907 The filter accepts the following options:
14908
14909 @table @option
14910
14911 @item n
14912 Set the number of segments. Default is 2.
14913
14914 @item v
14915 Set the number of output video streams, that is also the number of video
14916 streams in each segment. Default is 1.
14917
14918 @item a
14919 Set the number of output audio streams, that is also the number of audio
14920 streams in each segment. Default is 0.
14921
14922 @item unsafe
14923 Activate unsafe mode: do not fail if segments have a different format.
14924
14925 @end table
14926
14927 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
14928 @var{a} audio outputs.
14929
14930 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
14931 segment, in the same order as the outputs, then the inputs for the second
14932 segment, etc.
14933
14934 Related streams do not always have exactly the same duration, for various
14935 reasons including codec frame size or sloppy authoring. For that reason,
14936 related synchronized streams (e.g. a video and its audio track) should be
14937 concatenated at once. The concat filter will use the duration of the longest
14938 stream in each segment (except the last one), and if necessary pad shorter
14939 audio streams with silence.
14940
14941 For this filter to work correctly, all segments must start at timestamp 0.
14942
14943 All corresponding streams must have the same parameters in all segments; the
14944 filtering system will automatically select a common pixel format for video
14945 streams, and a common sample format, sample rate and channel layout for
14946 audio streams, but other settings, such as resolution, must be converted
14947 explicitly by the user.
14948
14949 Different frame rates are acceptable but will result in variable frame rate
14950 at output; be sure to configure the output file to handle it.
14951
14952 @subsection Examples
14953
14954 @itemize
14955 @item
14956 Concatenate an opening, an episode and an ending, all in bilingual version
14957 (video in stream 0, audio in streams 1 and 2):
14958 @example
14959 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
14960   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
14961    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
14962   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
14963 @end example
14964
14965 @item
14966 Concatenate two parts, handling audio and video separately, using the
14967 (a)movie sources, and adjusting the resolution:
14968 @example
14969 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
14970 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
14971 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
14972 @end example
14973 Note that a desync will happen at the stitch if the audio and video streams
14974 do not have exactly the same duration in the first file.
14975
14976 @end itemize
14977
14978 @anchor{ebur128}
14979 @section ebur128
14980
14981 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
14982 it unchanged. By default, it logs a message at a frequency of 10Hz with the
14983 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
14984 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
14985
14986 The filter also has a video output (see the @var{video} option) with a real
14987 time graph to observe the loudness evolution. The graphic contains the logged
14988 message mentioned above, so it is not printed anymore when this option is set,
14989 unless the verbose logging is set. The main graphing area contains the
14990 short-term loudness (3 seconds of analysis), and the gauge on the right is for
14991 the momentary loudness (400 milliseconds).
14992
14993 More information about the Loudness Recommendation EBU R128 on
14994 @url{http://tech.ebu.ch/loudness}.
14995
14996 The filter accepts the following options:
14997
14998 @table @option
14999
15000 @item video
15001 Activate the video output. The audio stream is passed unchanged whether this
15002 option is set or no. The video stream will be the first output stream if
15003 activated. Default is @code{0}.
15004
15005 @item size
15006 Set the video size. This option is for video only. For the syntax of this
15007 option, check the
15008 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15009 Default and minimum resolution is @code{640x480}.
15010
15011 @item meter
15012 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15013 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15014 other integer value between this range is allowed.
15015
15016 @item metadata
15017 Set metadata injection. If set to @code{1}, the audio input will be segmented
15018 into 100ms output frames, each of them containing various loudness information
15019 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15020
15021 Default is @code{0}.
15022
15023 @item framelog
15024 Force the frame logging level.
15025
15026 Available values are:
15027 @table @samp
15028 @item info
15029 information logging level
15030 @item verbose
15031 verbose logging level
15032 @end table
15033
15034 By default, the logging level is set to @var{info}. If the @option{video} or
15035 the @option{metadata} options are set, it switches to @var{verbose}.
15036
15037 @item peak
15038 Set peak mode(s).
15039
15040 Available modes can be cumulated (the option is a @code{flag} type). Possible
15041 values are:
15042 @table @samp
15043 @item none
15044 Disable any peak mode (default).
15045 @item sample
15046 Enable sample-peak mode.
15047
15048 Simple peak mode looking for the higher sample value. It logs a message
15049 for sample-peak (identified by @code{SPK}).
15050 @item true
15051 Enable true-peak mode.
15052
15053 If enabled, the peak lookup is done on an over-sampled version of the input
15054 stream for better peak accuracy. It logs a message for true-peak.
15055 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15056 This mode requires a build with @code{libswresample}.
15057 @end table
15058
15059 @item dualmono
15060 Treat mono input files as "dual mono". If a mono file is intended for playback
15061 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15062 If set to @code{true}, this option will compensate for this effect.
15063 Multi-channel input files are not affected by this option.
15064
15065 @item panlaw
15066 Set a specific pan law to be used for the measurement of dual mono files.
15067 This parameter is optional, and has a default value of -3.01dB.
15068 @end table
15069
15070 @subsection Examples
15071
15072 @itemize
15073 @item
15074 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15075 @example
15076 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15077 @end example
15078
15079 @item
15080 Run an analysis with @command{ffmpeg}:
15081 @example
15082 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15083 @end example
15084 @end itemize
15085
15086 @section interleave, ainterleave
15087
15088 Temporally interleave frames from several inputs.
15089
15090 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15091
15092 These filters read frames from several inputs and send the oldest
15093 queued frame to the output.
15094
15095 Input streams must have a well defined, monotonically increasing frame
15096 timestamp values.
15097
15098 In order to submit one frame to output, these filters need to enqueue
15099 at least one frame for each input, so they cannot work in case one
15100 input is not yet terminated and will not receive incoming frames.
15101
15102 For example consider the case when one input is a @code{select} filter
15103 which always drop input frames. The @code{interleave} filter will keep
15104 reading from that input, but it will never be able to send new frames
15105 to output until the input will send an end-of-stream signal.
15106
15107 Also, depending on inputs synchronization, the filters will drop
15108 frames in case one input receives more frames than the other ones, and
15109 the queue is already filled.
15110
15111 These filters accept the following options:
15112
15113 @table @option
15114 @item nb_inputs, n
15115 Set the number of different inputs, it is 2 by default.
15116 @end table
15117
15118 @subsection Examples
15119
15120 @itemize
15121 @item
15122 Interleave frames belonging to different streams using @command{ffmpeg}:
15123 @example
15124 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15125 @end example
15126
15127 @item
15128 Add flickering blur effect:
15129 @example
15130 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15131 @end example
15132 @end itemize
15133
15134 @section perms, aperms
15135
15136 Set read/write permissions for the output frames.
15137
15138 These filters are mainly aimed at developers to test direct path in the
15139 following filter in the filtergraph.
15140
15141 The filters accept the following options:
15142
15143 @table @option
15144 @item mode
15145 Select the permissions mode.
15146
15147 It accepts the following values:
15148 @table @samp
15149 @item none
15150 Do nothing. This is the default.
15151 @item ro
15152 Set all the output frames read-only.
15153 @item rw
15154 Set all the output frames directly writable.
15155 @item toggle
15156 Make the frame read-only if writable, and writable if read-only.
15157 @item random
15158 Set each output frame read-only or writable randomly.
15159 @end table
15160
15161 @item seed
15162 Set the seed for the @var{random} mode, must be an integer included between
15163 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15164 @code{-1}, the filter will try to use a good random seed on a best effort
15165 basis.
15166 @end table
15167
15168 Note: in case of auto-inserted filter between the permission filter and the
15169 following one, the permission might not be received as expected in that
15170 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15171 perms/aperms filter can avoid this problem.
15172
15173 @section realtime, arealtime
15174
15175 Slow down filtering to match real time approximatively.
15176
15177 These filters will pause the filtering for a variable amount of time to
15178 match the output rate with the input timestamps.
15179 They are similar to the @option{re} option to @code{ffmpeg}.
15180
15181 They accept the following options:
15182
15183 @table @option
15184 @item limit
15185 Time limit for the pauses. Any pause longer than that will be considered
15186 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15187 @end table
15188
15189 @section select, aselect
15190
15191 Select frames to pass in output.
15192
15193 This filter accepts the following options:
15194
15195 @table @option
15196
15197 @item expr, e
15198 Set expression, which is evaluated for each input frame.
15199
15200 If the expression is evaluated to zero, the frame is discarded.
15201
15202 If the evaluation result is negative or NaN, the frame is sent to the
15203 first output; otherwise it is sent to the output with index
15204 @code{ceil(val)-1}, assuming that the input index starts from 0.
15205
15206 For example a value of @code{1.2} corresponds to the output with index
15207 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15208
15209 @item outputs, n
15210 Set the number of outputs. The output to which to send the selected
15211 frame is based on the result of the evaluation. Default value is 1.
15212 @end table
15213
15214 The expression can contain the following constants:
15215
15216 @table @option
15217 @item n
15218 The (sequential) number of the filtered frame, starting from 0.
15219
15220 @item selected_n
15221 The (sequential) number of the selected frame, starting from 0.
15222
15223 @item prev_selected_n
15224 The sequential number of the last selected frame. It's NAN if undefined.
15225
15226 @item TB
15227 The timebase of the input timestamps.
15228
15229 @item pts
15230 The PTS (Presentation TimeStamp) of the filtered video frame,
15231 expressed in @var{TB} units. It's NAN if undefined.
15232
15233 @item t
15234 The PTS of the filtered video frame,
15235 expressed in seconds. It's NAN if undefined.
15236
15237 @item prev_pts
15238 The PTS of the previously filtered video frame. It's NAN if undefined.
15239
15240 @item prev_selected_pts
15241 The PTS of the last previously filtered video frame. It's NAN if undefined.
15242
15243 @item prev_selected_t
15244 The PTS of the last previously selected video frame. It's NAN if undefined.
15245
15246 @item start_pts
15247 The PTS of the first video frame in the video. It's NAN if undefined.
15248
15249 @item start_t
15250 The time of the first video frame in the video. It's NAN if undefined.
15251
15252 @item pict_type @emph{(video only)}
15253 The type of the filtered frame. It can assume one of the following
15254 values:
15255 @table @option
15256 @item I
15257 @item P
15258 @item B
15259 @item S
15260 @item SI
15261 @item SP
15262 @item BI
15263 @end table
15264
15265 @item interlace_type @emph{(video only)}
15266 The frame interlace type. It can assume one of the following values:
15267 @table @option
15268 @item PROGRESSIVE
15269 The frame is progressive (not interlaced).
15270 @item TOPFIRST
15271 The frame is top-field-first.
15272 @item BOTTOMFIRST
15273 The frame is bottom-field-first.
15274 @end table
15275
15276 @item consumed_sample_n @emph{(audio only)}
15277 the number of selected samples before the current frame
15278
15279 @item samples_n @emph{(audio only)}
15280 the number of samples in the current frame
15281
15282 @item sample_rate @emph{(audio only)}
15283 the input sample rate
15284
15285 @item key
15286 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15287
15288 @item pos
15289 the position in the file of the filtered frame, -1 if the information
15290 is not available (e.g. for synthetic video)
15291
15292 @item scene @emph{(video only)}
15293 value between 0 and 1 to indicate a new scene; a low value reflects a low
15294 probability for the current frame to introduce a new scene, while a higher
15295 value means the current frame is more likely to be one (see the example below)
15296
15297 @item concatdec_select
15298 The concat demuxer can select only part of a concat input file by setting an
15299 inpoint and an outpoint, but the output packets may not be entirely contained
15300 in the selected interval. By using this variable, it is possible to skip frames
15301 generated by the concat demuxer which are not exactly contained in the selected
15302 interval.
15303
15304 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15305 and the @var{lavf.concat.duration} packet metadata values which are also
15306 present in the decoded frames.
15307
15308 The @var{concatdec_select} variable is -1 if the frame pts is at least
15309 start_time and either the duration metadata is missing or the frame pts is less
15310 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15311 missing.
15312
15313 That basically means that an input frame is selected if its pts is within the
15314 interval set by the concat demuxer.
15315
15316 @end table
15317
15318 The default value of the select expression is "1".
15319
15320 @subsection Examples
15321
15322 @itemize
15323 @item
15324 Select all frames in input:
15325 @example
15326 select
15327 @end example
15328
15329 The example above is the same as:
15330 @example
15331 select=1
15332 @end example
15333
15334 @item
15335 Skip all frames:
15336 @example
15337 select=0
15338 @end example
15339
15340 @item
15341 Select only I-frames:
15342 @example
15343 select='eq(pict_type\,I)'
15344 @end example
15345
15346 @item
15347 Select one frame every 100:
15348 @example
15349 select='not(mod(n\,100))'
15350 @end example
15351
15352 @item
15353 Select only frames contained in the 10-20 time interval:
15354 @example
15355 select=between(t\,10\,20)
15356 @end example
15357
15358 @item
15359 Select only I frames contained in the 10-20 time interval:
15360 @example
15361 select=between(t\,10\,20)*eq(pict_type\,I)
15362 @end example
15363
15364 @item
15365 Select frames with a minimum distance of 10 seconds:
15366 @example
15367 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15368 @end example
15369
15370 @item
15371 Use aselect to select only audio frames with samples number > 100:
15372 @example
15373 aselect='gt(samples_n\,100)'
15374 @end example
15375
15376 @item
15377 Create a mosaic of the first scenes:
15378 @example
15379 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15380 @end example
15381
15382 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15383 choice.
15384
15385 @item
15386 Send even and odd frames to separate outputs, and compose them:
15387 @example
15388 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15389 @end example
15390
15391 @item
15392 Select useful frames from an ffconcat file which is using inpoints and
15393 outpoints but where the source files are not intra frame only.
15394 @example
15395 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15396 @end example
15397 @end itemize
15398
15399 @section sendcmd, asendcmd
15400
15401 Send commands to filters in the filtergraph.
15402
15403 These filters read commands to be sent to other filters in the
15404 filtergraph.
15405
15406 @code{sendcmd} must be inserted between two video filters,
15407 @code{asendcmd} must be inserted between two audio filters, but apart
15408 from that they act the same way.
15409
15410 The specification of commands can be provided in the filter arguments
15411 with the @var{commands} option, or in a file specified by the
15412 @var{filename} option.
15413
15414 These filters accept the following options:
15415 @table @option
15416 @item commands, c
15417 Set the commands to be read and sent to the other filters.
15418 @item filename, f
15419 Set the filename of the commands to be read and sent to the other
15420 filters.
15421 @end table
15422
15423 @subsection Commands syntax
15424
15425 A commands description consists of a sequence of interval
15426 specifications, comprising a list of commands to be executed when a
15427 particular event related to that interval occurs. The occurring event
15428 is typically the current frame time entering or leaving a given time
15429 interval.
15430
15431 An interval is specified by the following syntax:
15432 @example
15433 @var{START}[-@var{END}] @var{COMMANDS};
15434 @end example
15435
15436 The time interval is specified by the @var{START} and @var{END} times.
15437 @var{END} is optional and defaults to the maximum time.
15438
15439 The current frame time is considered within the specified interval if
15440 it is included in the interval [@var{START}, @var{END}), that is when
15441 the time is greater or equal to @var{START} and is lesser than
15442 @var{END}.
15443
15444 @var{COMMANDS} consists of a sequence of one or more command
15445 specifications, separated by ",", relating to that interval.  The
15446 syntax of a command specification is given by:
15447 @example
15448 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15449 @end example
15450
15451 @var{FLAGS} is optional and specifies the type of events relating to
15452 the time interval which enable sending the specified command, and must
15453 be a non-null sequence of identifier flags separated by "+" or "|" and
15454 enclosed between "[" and "]".
15455
15456 The following flags are recognized:
15457 @table @option
15458 @item enter
15459 The command is sent when the current frame timestamp enters the
15460 specified interval. In other words, the command is sent when the
15461 previous frame timestamp was not in the given interval, and the
15462 current is.
15463
15464 @item leave
15465 The command is sent when the current frame timestamp leaves the
15466 specified interval. In other words, the command is sent when the
15467 previous frame timestamp was in the given interval, and the
15468 current is not.
15469 @end table
15470
15471 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15472 assumed.
15473
15474 @var{TARGET} specifies the target of the command, usually the name of
15475 the filter class or a specific filter instance name.
15476
15477 @var{COMMAND} specifies the name of the command for the target filter.
15478
15479 @var{ARG} is optional and specifies the optional list of argument for
15480 the given @var{COMMAND}.
15481
15482 Between one interval specification and another, whitespaces, or
15483 sequences of characters starting with @code{#} until the end of line,
15484 are ignored and can be used to annotate comments.
15485
15486 A simplified BNF description of the commands specification syntax
15487 follows:
15488 @example
15489 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15490 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15491 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15492 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15493 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15494 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15495 @end example
15496
15497 @subsection Examples
15498
15499 @itemize
15500 @item
15501 Specify audio tempo change at second 4:
15502 @example
15503 asendcmd=c='4.0 atempo tempo 1.5',atempo
15504 @end example
15505
15506 @item
15507 Specify a list of drawtext and hue commands in a file.
15508 @example
15509 # show text in the interval 5-10
15510 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15511          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15512
15513 # desaturate the image in the interval 15-20
15514 15.0-20.0 [enter] hue s 0,
15515           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
15516           [leave] hue s 1,
15517           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
15518
15519 # apply an exponential saturation fade-out effect, starting from time 25
15520 25 [enter] hue s exp(25-t)
15521 @end example
15522
15523 A filtergraph allowing to read and process the above command list
15524 stored in a file @file{test.cmd}, can be specified with:
15525 @example
15526 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
15527 @end example
15528 @end itemize
15529
15530 @anchor{setpts}
15531 @section setpts, asetpts
15532
15533 Change the PTS (presentation timestamp) of the input frames.
15534
15535 @code{setpts} works on video frames, @code{asetpts} on audio frames.
15536
15537 This filter accepts the following options:
15538
15539 @table @option
15540
15541 @item expr
15542 The expression which is evaluated for each frame to construct its timestamp.
15543
15544 @end table
15545
15546 The expression is evaluated through the eval API and can contain the following
15547 constants:
15548
15549 @table @option
15550 @item FRAME_RATE
15551 frame rate, only defined for constant frame-rate video
15552
15553 @item PTS
15554 The presentation timestamp in input
15555
15556 @item N
15557 The count of the input frame for video or the number of consumed samples,
15558 not including the current frame for audio, starting from 0.
15559
15560 @item NB_CONSUMED_SAMPLES
15561 The number of consumed samples, not including the current frame (only
15562 audio)
15563
15564 @item NB_SAMPLES, S
15565 The number of samples in the current frame (only audio)
15566
15567 @item SAMPLE_RATE, SR
15568 The audio sample rate.
15569
15570 @item STARTPTS
15571 The PTS of the first frame.
15572
15573 @item STARTT
15574 the time in seconds of the first frame
15575
15576 @item INTERLACED
15577 State whether the current frame is interlaced.
15578
15579 @item T
15580 the time in seconds of the current frame
15581
15582 @item POS
15583 original position in the file of the frame, or undefined if undefined
15584 for the current frame
15585
15586 @item PREV_INPTS
15587 The previous input PTS.
15588
15589 @item PREV_INT
15590 previous input time in seconds
15591
15592 @item PREV_OUTPTS
15593 The previous output PTS.
15594
15595 @item PREV_OUTT
15596 previous output time in seconds
15597
15598 @item RTCTIME
15599 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
15600 instead.
15601
15602 @item RTCSTART
15603 The wallclock (RTC) time at the start of the movie in microseconds.
15604
15605 @item TB
15606 The timebase of the input timestamps.
15607
15608 @end table
15609
15610 @subsection Examples
15611
15612 @itemize
15613 @item
15614 Start counting PTS from zero
15615 @example
15616 setpts=PTS-STARTPTS
15617 @end example
15618
15619 @item
15620 Apply fast motion effect:
15621 @example
15622 setpts=0.5*PTS
15623 @end example
15624
15625 @item
15626 Apply slow motion effect:
15627 @example
15628 setpts=2.0*PTS
15629 @end example
15630
15631 @item
15632 Set fixed rate of 25 frames per second:
15633 @example
15634 setpts=N/(25*TB)
15635 @end example
15636
15637 @item
15638 Set fixed rate 25 fps with some jitter:
15639 @example
15640 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
15641 @end example
15642
15643 @item
15644 Apply an offset of 10 seconds to the input PTS:
15645 @example
15646 setpts=PTS+10/TB
15647 @end example
15648
15649 @item
15650 Generate timestamps from a "live source" and rebase onto the current timebase:
15651 @example
15652 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
15653 @end example
15654
15655 @item
15656 Generate timestamps by counting samples:
15657 @example
15658 asetpts=N/SR/TB
15659 @end example
15660
15661 @end itemize
15662
15663 @section settb, asettb
15664
15665 Set the timebase to use for the output frames timestamps.
15666 It is mainly useful for testing timebase configuration.
15667
15668 It accepts the following parameters:
15669
15670 @table @option
15671
15672 @item expr, tb
15673 The expression which is evaluated into the output timebase.
15674
15675 @end table
15676
15677 The value for @option{tb} is an arithmetic expression representing a
15678 rational. The expression can contain the constants "AVTB" (the default
15679 timebase), "intb" (the input timebase) and "sr" (the sample rate,
15680 audio only). Default value is "intb".
15681
15682 @subsection Examples
15683
15684 @itemize
15685 @item
15686 Set the timebase to 1/25:
15687 @example
15688 settb=expr=1/25
15689 @end example
15690
15691 @item
15692 Set the timebase to 1/10:
15693 @example
15694 settb=expr=0.1
15695 @end example
15696
15697 @item
15698 Set the timebase to 1001/1000:
15699 @example
15700 settb=1+0.001
15701 @end example
15702
15703 @item
15704 Set the timebase to 2*intb:
15705 @example
15706 settb=2*intb
15707 @end example
15708
15709 @item
15710 Set the default timebase value:
15711 @example
15712 settb=AVTB
15713 @end example
15714 @end itemize
15715
15716 @section showcqt
15717 Convert input audio to a video output representing frequency spectrum
15718 logarithmically using Brown-Puckette constant Q transform algorithm with
15719 direct frequency domain coefficient calculation (but the transform itself
15720 is not really constant Q, instead the Q factor is actually variable/clamped),
15721 with musical tone scale, from E0 to D#10.
15722
15723 The filter accepts the following options:
15724
15725 @table @option
15726 @item size, s
15727 Specify the video size for the output. It must be even. For the syntax of this option,
15728 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15729 Default value is @code{1920x1080}.
15730
15731 @item fps, rate, r
15732 Set the output frame rate. Default value is @code{25}.
15733
15734 @item bar_h
15735 Set the bargraph height. It must be even. Default value is @code{-1} which
15736 computes the bargraph height automatically.
15737
15738 @item axis_h
15739 Set the axis height. It must be even. Default value is @code{-1} which computes
15740 the axis height automatically.
15741
15742 @item sono_h
15743 Set the sonogram height. It must be even. Default value is @code{-1} which
15744 computes the sonogram height automatically.
15745
15746 @item fullhd
15747 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
15748 instead. Default value is @code{1}.
15749
15750 @item sono_v, volume
15751 Specify the sonogram volume expression. It can contain variables:
15752 @table @option
15753 @item bar_v
15754 the @var{bar_v} evaluated expression
15755 @item frequency, freq, f
15756 the frequency where it is evaluated
15757 @item timeclamp, tc
15758 the value of @var{timeclamp} option
15759 @end table
15760 and functions:
15761 @table @option
15762 @item a_weighting(f)
15763 A-weighting of equal loudness
15764 @item b_weighting(f)
15765 B-weighting of equal loudness
15766 @item c_weighting(f)
15767 C-weighting of equal loudness.
15768 @end table
15769 Default value is @code{16}.
15770
15771 @item bar_v, volume2
15772 Specify the bargraph volume expression. It can contain variables:
15773 @table @option
15774 @item sono_v
15775 the @var{sono_v} evaluated expression
15776 @item frequency, freq, f
15777 the frequency where it is evaluated
15778 @item timeclamp, tc
15779 the value of @var{timeclamp} option
15780 @end table
15781 and functions:
15782 @table @option
15783 @item a_weighting(f)
15784 A-weighting of equal loudness
15785 @item b_weighting(f)
15786 B-weighting of equal loudness
15787 @item c_weighting(f)
15788 C-weighting of equal loudness.
15789 @end table
15790 Default value is @code{sono_v}.
15791
15792 @item sono_g, gamma
15793 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
15794 higher gamma makes the spectrum having more range. Default value is @code{3}.
15795 Acceptable range is @code{[1, 7]}.
15796
15797 @item bar_g, gamma2
15798 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
15799 @code{[1, 7]}.
15800
15801 @item timeclamp, tc
15802 Specify the transform timeclamp. At low frequency, there is trade-off between
15803 accuracy in time domain and frequency domain. If timeclamp is lower,
15804 event in time domain is represented more accurately (such as fast bass drum),
15805 otherwise event in frequency domain is represented more accurately
15806 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
15807
15808 @item basefreq
15809 Specify the transform base frequency. Default value is @code{20.01523126408007475},
15810 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
15811
15812 @item endfreq
15813 Specify the transform end frequency. Default value is @code{20495.59681441799654},
15814 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
15815
15816 @item coeffclamp
15817 This option is deprecated and ignored.
15818
15819 @item tlength
15820 Specify the transform length in time domain. Use this option to control accuracy
15821 trade-off between time domain and frequency domain at every frequency sample.
15822 It can contain variables:
15823 @table @option
15824 @item frequency, freq, f
15825 the frequency where it is evaluated
15826 @item timeclamp, tc
15827 the value of @var{timeclamp} option.
15828 @end table
15829 Default value is @code{384*tc/(384+tc*f)}.
15830
15831 @item count
15832 Specify the transform count for every video frame. Default value is @code{6}.
15833 Acceptable range is @code{[1, 30]}.
15834
15835 @item fcount
15836 Specify the transform count for every single pixel. Default value is @code{0},
15837 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
15838
15839 @item fontfile
15840 Specify font file for use with freetype to draw the axis. If not specified,
15841 use embedded font. Note that drawing with font file or embedded font is not
15842 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
15843 option instead.
15844
15845 @item fontcolor
15846 Specify font color expression. This is arithmetic expression that should return
15847 integer value 0xRRGGBB. It can contain variables:
15848 @table @option
15849 @item frequency, freq, f
15850 the frequency where it is evaluated
15851 @item timeclamp, tc
15852 the value of @var{timeclamp} option
15853 @end table
15854 and functions:
15855 @table @option
15856 @item midi(f)
15857 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
15858 @item r(x), g(x), b(x)
15859 red, green, and blue value of intensity x.
15860 @end table
15861 Default value is @code{st(0, (midi(f)-59.5)/12);
15862 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
15863 r(1-ld(1)) + b(ld(1))}.
15864
15865 @item axisfile
15866 Specify image file to draw the axis. This option override @var{fontfile} and
15867 @var{fontcolor} option.
15868
15869 @item axis, text
15870 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
15871 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
15872 Default value is @code{1}.
15873
15874 @end table
15875
15876 @subsection Examples
15877
15878 @itemize
15879 @item
15880 Playing audio while showing the spectrum:
15881 @example
15882 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
15883 @end example
15884
15885 @item
15886 Same as above, but with frame rate 30 fps:
15887 @example
15888 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
15889 @end example
15890
15891 @item
15892 Playing at 1280x720:
15893 @example
15894 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
15895 @end example
15896
15897 @item
15898 Disable sonogram display:
15899 @example
15900 sono_h=0
15901 @end example
15902
15903 @item
15904 A1 and its harmonics: A1, A2, (near)E3, A3:
15905 @example
15906 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),
15907                  asplit[a][out1]; [a] showcqt [out0]'
15908 @end example
15909
15910 @item
15911 Same as above, but with more accuracy in frequency domain:
15912 @example
15913 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),
15914                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
15915 @end example
15916
15917 @item
15918 Custom volume:
15919 @example
15920 bar_v=10:sono_v=bar_v*a_weighting(f)
15921 @end example
15922
15923 @item
15924 Custom gamma, now spectrum is linear to the amplitude.
15925 @example
15926 bar_g=2:sono_g=2
15927 @end example
15928
15929 @item
15930 Custom tlength equation:
15931 @example
15932 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)))'
15933 @end example
15934
15935 @item
15936 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
15937 @example
15938 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
15939 @end example
15940
15941 @item
15942 Custom frequency range with custom axis using image file:
15943 @example
15944 axisfile=myaxis.png:basefreq=40:endfreq=10000
15945 @end example
15946 @end itemize
15947
15948 @section showfreqs
15949
15950 Convert input audio to video output representing the audio power spectrum.
15951 Audio amplitude is on Y-axis while frequency is on X-axis.
15952
15953 The filter accepts the following options:
15954
15955 @table @option
15956 @item size, s
15957 Specify size of video. For the syntax of this option, check the
15958 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15959 Default is @code{1024x512}.
15960
15961 @item mode
15962 Set display mode.
15963 This set how each frequency bin will be represented.
15964
15965 It accepts the following values:
15966 @table @samp
15967 @item line
15968 @item bar
15969 @item dot
15970 @end table
15971 Default is @code{bar}.
15972
15973 @item ascale
15974 Set amplitude scale.
15975
15976 It accepts the following values:
15977 @table @samp
15978 @item lin
15979 Linear scale.
15980
15981 @item sqrt
15982 Square root scale.
15983
15984 @item cbrt
15985 Cubic root scale.
15986
15987 @item log
15988 Logarithmic scale.
15989 @end table
15990 Default is @code{log}.
15991
15992 @item fscale
15993 Set frequency scale.
15994
15995 It accepts the following values:
15996 @table @samp
15997 @item lin
15998 Linear scale.
15999
16000 @item log
16001 Logarithmic scale.
16002
16003 @item rlog
16004 Reverse logarithmic scale.
16005 @end table
16006 Default is @code{lin}.
16007
16008 @item win_size
16009 Set window size.
16010
16011 It accepts the following values:
16012 @table @samp
16013 @item w16
16014 @item w32
16015 @item w64
16016 @item w128
16017 @item w256
16018 @item w512
16019 @item w1024
16020 @item w2048
16021 @item w4096
16022 @item w8192
16023 @item w16384
16024 @item w32768
16025 @item w65536
16026 @end table
16027 Default is @code{w2048}
16028
16029 @item win_func
16030 Set windowing function.
16031
16032 It accepts the following values:
16033 @table @samp
16034 @item rect
16035 @item bartlett
16036 @item hanning
16037 @item hamming
16038 @item blackman
16039 @item welch
16040 @item flattop
16041 @item bharris
16042 @item bnuttall
16043 @item bhann
16044 @item sine
16045 @item nuttall
16046 @item lanczos
16047 @item gauss
16048 @item tukey
16049 @end table
16050 Default is @code{hanning}.
16051
16052 @item overlap
16053 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16054 which means optimal overlap for selected window function will be picked.
16055
16056 @item averaging
16057 Set time averaging. Setting this to 0 will display current maximal peaks.
16058 Default is @code{1}, which means time averaging is disabled.
16059
16060 @item colors
16061 Specify list of colors separated by space or by '|' which will be used to
16062 draw channel frequencies. Unrecognized or missing colors will be replaced
16063 by white color.
16064
16065 @item cmode
16066 Set channel display mode.
16067
16068 It accepts the following values:
16069 @table @samp
16070 @item combined
16071 @item separate
16072 @end table
16073 Default is @code{combined}.
16074
16075 @end table
16076
16077 @anchor{showspectrum}
16078 @section showspectrum
16079
16080 Convert input audio to a video output, representing the audio frequency
16081 spectrum.
16082
16083 The filter accepts the following options:
16084
16085 @table @option
16086 @item size, s
16087 Specify the video size for the output. For the syntax of this option, check the
16088 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16089 Default value is @code{640x512}.
16090
16091 @item slide
16092 Specify how the spectrum should slide along the window.
16093
16094 It accepts the following values:
16095 @table @samp
16096 @item replace
16097 the samples start again on the left when they reach the right
16098 @item scroll
16099 the samples scroll from right to left
16100 @item rscroll
16101 the samples scroll from left to right
16102 @item fullframe
16103 frames are only produced when the samples reach the right
16104 @end table
16105
16106 Default value is @code{replace}.
16107
16108 @item mode
16109 Specify display mode.
16110
16111 It accepts the following values:
16112 @table @samp
16113 @item combined
16114 all channels are displayed in the same row
16115 @item separate
16116 all channels are displayed in separate rows
16117 @end table
16118
16119 Default value is @samp{combined}.
16120
16121 @item color
16122 Specify display color mode.
16123
16124 It accepts the following values:
16125 @table @samp
16126 @item channel
16127 each channel is displayed in a separate color
16128 @item intensity
16129 each channel is displayed using the same color scheme
16130 @item rainbow
16131 each channel is displayed using the rainbow color scheme
16132 @item moreland
16133 each channel is displayed using the moreland color scheme
16134 @item nebulae
16135 each channel is displayed using the nebulae color scheme
16136 @item fire
16137 each channel is displayed using the fire color scheme
16138 @item fiery
16139 each channel is displayed using the fiery color scheme
16140 @item fruit
16141 each channel is displayed using the fruit color scheme
16142 @item cool
16143 each channel is displayed using the cool color scheme
16144 @end table
16145
16146 Default value is @samp{channel}.
16147
16148 @item scale
16149 Specify scale used for calculating intensity color values.
16150
16151 It accepts the following values:
16152 @table @samp
16153 @item lin
16154 linear
16155 @item sqrt
16156 square root, default
16157 @item cbrt
16158 cubic root
16159 @item 4thrt
16160 4th root
16161 @item 5thrt
16162 5th root
16163 @item log
16164 logarithmic
16165 @end table
16166
16167 Default value is @samp{sqrt}.
16168
16169 @item saturation
16170 Set saturation modifier for displayed colors. Negative values provide
16171 alternative color scheme. @code{0} is no saturation at all.
16172 Saturation must be in [-10.0, 10.0] range.
16173 Default value is @code{1}.
16174
16175 @item win_func
16176 Set window function.
16177
16178 It accepts the following values:
16179 @table @samp
16180 @item rect
16181 @item bartlett
16182 @item hann
16183 @item hanning
16184 @item hamming
16185 @item blackman
16186 @item welch
16187 @item flattop
16188 @item bharris
16189 @item bnuttall
16190 @item bhann
16191 @item sine
16192 @item nuttall
16193 @item lanczos
16194 @item gauss
16195 @item tukey
16196 @end table
16197
16198 Default value is @code{hann}.
16199
16200 @item orientation
16201 Set orientation of time vs frequency axis. Can be @code{vertical} or
16202 @code{horizontal}. Default is @code{vertical}.
16203
16204 @item overlap
16205 Set ratio of overlap window. Default value is @code{0}.
16206 When value is @code{1} overlap is set to recommended size for specific
16207 window function currently used.
16208
16209 @item gain
16210 Set scale gain for calculating intensity color values.
16211 Default value is @code{1}.
16212
16213 @item data
16214 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16215 @end table
16216
16217 The usage is very similar to the showwaves filter; see the examples in that
16218 section.
16219
16220 @subsection Examples
16221
16222 @itemize
16223 @item
16224 Large window with logarithmic color scaling:
16225 @example
16226 showspectrum=s=1280x480:scale=log
16227 @end example
16228
16229 @item
16230 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16231 @example
16232 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16233              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16234 @end example
16235 @end itemize
16236
16237 @section showspectrumpic
16238
16239 Convert input audio to a single video frame, representing the audio frequency
16240 spectrum.
16241
16242 The filter accepts the following options:
16243
16244 @table @option
16245 @item size, s
16246 Specify the video size for the output. For the syntax of this option, check the
16247 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16248 Default value is @code{4096x2048}.
16249
16250 @item mode
16251 Specify display mode.
16252
16253 It accepts the following values:
16254 @table @samp
16255 @item combined
16256 all channels are displayed in the same row
16257 @item separate
16258 all channels are displayed in separate rows
16259 @end table
16260 Default value is @samp{combined}.
16261
16262 @item color
16263 Specify display color mode.
16264
16265 It accepts the following values:
16266 @table @samp
16267 @item channel
16268 each channel is displayed in a separate color
16269 @item intensity
16270 each channel is displayed using the same color scheme
16271 @item rainbow
16272 each channel is displayed using the rainbow color scheme
16273 @item moreland
16274 each channel is displayed using the moreland color scheme
16275 @item nebulae
16276 each channel is displayed using the nebulae color scheme
16277 @item fire
16278 each channel is displayed using the fire color scheme
16279 @item fiery
16280 each channel is displayed using the fiery color scheme
16281 @item fruit
16282 each channel is displayed using the fruit color scheme
16283 @item cool
16284 each channel is displayed using the cool color scheme
16285 @end table
16286 Default value is @samp{intensity}.
16287
16288 @item scale
16289 Specify scale used for calculating intensity color values.
16290
16291 It accepts the following values:
16292 @table @samp
16293 @item lin
16294 linear
16295 @item sqrt
16296 square root, default
16297 @item cbrt
16298 cubic root
16299 @item 4thrt
16300 4th root
16301 @item 5thrt
16302 5th root
16303 @item log
16304 logarithmic
16305 @end table
16306 Default value is @samp{log}.
16307
16308 @item saturation
16309 Set saturation modifier for displayed colors. Negative values provide
16310 alternative color scheme. @code{0} is no saturation at all.
16311 Saturation must be in [-10.0, 10.0] range.
16312 Default value is @code{1}.
16313
16314 @item win_func
16315 Set window function.
16316
16317 It accepts the following values:
16318 @table @samp
16319 @item rect
16320 @item bartlett
16321 @item hann
16322 @item hanning
16323 @item hamming
16324 @item blackman
16325 @item welch
16326 @item flattop
16327 @item bharris
16328 @item bnuttall
16329 @item bhann
16330 @item sine
16331 @item nuttall
16332 @item lanczos
16333 @item gauss
16334 @item tukey
16335 @end table
16336 Default value is @code{hann}.
16337
16338 @item orientation
16339 Set orientation of time vs frequency axis. Can be @code{vertical} or
16340 @code{horizontal}. Default is @code{vertical}.
16341
16342 @item gain
16343 Set scale gain for calculating intensity color values.
16344 Default value is @code{1}.
16345
16346 @item legend
16347 Draw time and frequency axes and legends. Default is enabled.
16348 @end table
16349
16350 @subsection Examples
16351
16352 @itemize
16353 @item
16354 Extract an audio spectrogram of a whole audio track
16355 in a 1024x1024 picture using @command{ffmpeg}:
16356 @example
16357 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16358 @end example
16359 @end itemize
16360
16361 @section showvolume
16362
16363 Convert input audio volume to a video output.
16364
16365 The filter accepts the following options:
16366
16367 @table @option
16368 @item rate, r
16369 Set video rate.
16370
16371 @item b
16372 Set border width, allowed range is [0, 5]. Default is 1.
16373
16374 @item w
16375 Set channel width, allowed range is [80, 8192]. Default is 400.
16376
16377 @item h
16378 Set channel height, allowed range is [1, 900]. Default is 20.
16379
16380 @item f
16381 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16382
16383 @item c
16384 Set volume color expression.
16385
16386 The expression can use the following variables:
16387
16388 @table @option
16389 @item VOLUME
16390 Current max volume of channel in dB.
16391
16392 @item CHANNEL
16393 Current channel number, starting from 0.
16394 @end table
16395
16396 @item t
16397 If set, displays channel names. Default is enabled.
16398
16399 @item v
16400 If set, displays volume values. Default is enabled.
16401
16402 @item o
16403 Set orientation, can be @code{horizontal} or @code{vertical},
16404 default is @code{horizontal}.
16405
16406 @item s
16407 Set step size, allowed range s [0, 5]. Default is 0, which means
16408 step is disabled.
16409 @end table
16410
16411 @section showwaves
16412
16413 Convert input audio to a video output, representing the samples waves.
16414
16415 The filter accepts the following options:
16416
16417 @table @option
16418 @item size, s
16419 Specify the video size for the output. For the syntax of this option, check the
16420 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16421 Default value is @code{600x240}.
16422
16423 @item mode
16424 Set display mode.
16425
16426 Available values are:
16427 @table @samp
16428 @item point
16429 Draw a point for each sample.
16430
16431 @item line
16432 Draw a vertical line for each sample.
16433
16434 @item p2p
16435 Draw a point for each sample and a line between them.
16436
16437 @item cline
16438 Draw a centered vertical line for each sample.
16439 @end table
16440
16441 Default value is @code{point}.
16442
16443 @item n
16444 Set the number of samples which are printed on the same column. A
16445 larger value will decrease the frame rate. Must be a positive
16446 integer. This option can be set only if the value for @var{rate}
16447 is not explicitly specified.
16448
16449 @item rate, r
16450 Set the (approximate) output frame rate. This is done by setting the
16451 option @var{n}. Default value is "25".
16452
16453 @item split_channels
16454 Set if channels should be drawn separately or overlap. Default value is 0.
16455
16456 @item colors
16457 Set colors separated by '|' which are going to be used for drawing of each channel.
16458
16459 @item scale
16460 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16461 Default is linear.
16462
16463 @end table
16464
16465 @subsection Examples
16466
16467 @itemize
16468 @item
16469 Output the input file audio and the corresponding video representation
16470 at the same time:
16471 @example
16472 amovie=a.mp3,asplit[out0],showwaves[out1]
16473 @end example
16474
16475 @item
16476 Create a synthetic signal and show it with showwaves, forcing a
16477 frame rate of 30 frames per second:
16478 @example
16479 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
16480 @end example
16481 @end itemize
16482
16483 @section showwavespic
16484
16485 Convert input audio to a single video frame, representing the samples waves.
16486
16487 The filter accepts the following options:
16488
16489 @table @option
16490 @item size, s
16491 Specify the video size for the output. For the syntax of this option, check the
16492 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16493 Default value is @code{600x240}.
16494
16495 @item split_channels
16496 Set if channels should be drawn separately or overlap. Default value is 0.
16497
16498 @item colors
16499 Set colors separated by '|' which are going to be used for drawing of each channel.
16500
16501 @item scale
16502 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16503 Default is linear.
16504 @end table
16505
16506 @subsection Examples
16507
16508 @itemize
16509 @item
16510 Extract a channel split representation of the wave form of a whole audio track
16511 in a 1024x800 picture using @command{ffmpeg}:
16512 @example
16513 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
16514 @end example
16515
16516 @item
16517 Colorize the waveform with colorchannelmixer. This example will make
16518 the waveform a green color approximately RGB(66,217,150). Additional
16519 channels will be shades of this color.
16520 @example
16521 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
16522 @end example
16523 @end itemize
16524
16525 @section spectrumsynth
16526
16527 Sythesize audio from 2 input video spectrums, first input stream represents
16528 magnitude across time and second represents phase across time.
16529 The filter will transform from frequency domain as displayed in videos back
16530 to time domain as presented in audio output.
16531
16532 This filter is primarly created for reversing processed @ref{showspectrum}
16533 filter outputs, but can synthesize sound from other spectrograms too.
16534 But in such case results are going to be poor if the phase data is not
16535 available, because in such cases phase data need to be recreated, usually
16536 its just recreated from random noise.
16537 For best results use gray only output (@code{channel} color mode in
16538 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
16539 @code{lin} scale for phase video. To produce phase, for 2nd video, use
16540 @code{data} option. Inputs videos should generally use @code{fullframe}
16541 slide mode as that saves resources needed for decoding video.
16542
16543 The filter accepts the following options:
16544
16545 @table @option
16546 @item sample_rate
16547 Specify sample rate of output audio, the sample rate of audio from which
16548 spectrum was generated may differ.
16549
16550 @item channels
16551 Set number of channels represented in input video spectrums.
16552
16553 @item scale
16554 Set scale which was used when generating magnitude input spectrum.
16555 Can be @code{lin} or @code{log}. Default is @code{log}.
16556
16557 @item slide
16558 Set slide which was used when generating inputs spectrums.
16559 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
16560 Default is @code{fullframe}.
16561
16562 @item win_func
16563 Set window function used for resynthesis.
16564
16565 @item overlap
16566 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16567 which means optimal overlap for selected window function will be picked.
16568
16569 @item orientation
16570 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
16571 Default is @code{vertical}.
16572 @end table
16573
16574 @subsection Examples
16575
16576 @itemize
16577 @item
16578 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
16579 then resynthesize videos back to audio with spectrumsynth:
16580 @example
16581 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=log:overlap=0.875:color=channel:slide=fullframe:data=magnitude -an -c:v rawvideo magnitude.nut
16582 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=lin:overlap=0.875:color=channel:slide=fullframe:data=phase -an -c:v rawvideo phase.nut
16583 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
16584 @end example
16585 @end itemize
16586
16587 @section split, asplit
16588
16589 Split input into several identical outputs.
16590
16591 @code{asplit} works with audio input, @code{split} with video.
16592
16593 The filter accepts a single parameter which specifies the number of outputs. If
16594 unspecified, it defaults to 2.
16595
16596 @subsection Examples
16597
16598 @itemize
16599 @item
16600 Create two separate outputs from the same input:
16601 @example
16602 [in] split [out0][out1]
16603 @end example
16604
16605 @item
16606 To create 3 or more outputs, you need to specify the number of
16607 outputs, like in:
16608 @example
16609 [in] asplit=3 [out0][out1][out2]
16610 @end example
16611
16612 @item
16613 Create two separate outputs from the same input, one cropped and
16614 one padded:
16615 @example
16616 [in] split [splitout1][splitout2];
16617 [splitout1] crop=100:100:0:0    [cropout];
16618 [splitout2] pad=200:200:100:100 [padout];
16619 @end example
16620
16621 @item
16622 Create 5 copies of the input audio with @command{ffmpeg}:
16623 @example
16624 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
16625 @end example
16626 @end itemize
16627
16628 @section zmq, azmq
16629
16630 Receive commands sent through a libzmq client, and forward them to
16631 filters in the filtergraph.
16632
16633 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
16634 must be inserted between two video filters, @code{azmq} between two
16635 audio filters.
16636
16637 To enable these filters you need to install the libzmq library and
16638 headers and configure FFmpeg with @code{--enable-libzmq}.
16639
16640 For more information about libzmq see:
16641 @url{http://www.zeromq.org/}
16642
16643 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
16644 receives messages sent through a network interface defined by the
16645 @option{bind_address} option.
16646
16647 The received message must be in the form:
16648 @example
16649 @var{TARGET} @var{COMMAND} [@var{ARG}]
16650 @end example
16651
16652 @var{TARGET} specifies the target of the command, usually the name of
16653 the filter class or a specific filter instance name.
16654
16655 @var{COMMAND} specifies the name of the command for the target filter.
16656
16657 @var{ARG} is optional and specifies the optional argument list for the
16658 given @var{COMMAND}.
16659
16660 Upon reception, the message is processed and the corresponding command
16661 is injected into the filtergraph. Depending on the result, the filter
16662 will send a reply to the client, adopting the format:
16663 @example
16664 @var{ERROR_CODE} @var{ERROR_REASON}
16665 @var{MESSAGE}
16666 @end example
16667
16668 @var{MESSAGE} is optional.
16669
16670 @subsection Examples
16671
16672 Look at @file{tools/zmqsend} for an example of a zmq client which can
16673 be used to send commands processed by these filters.
16674
16675 Consider the following filtergraph generated by @command{ffplay}
16676 @example
16677 ffplay -dumpgraph 1 -f lavfi "
16678 color=s=100x100:c=red  [l];
16679 color=s=100x100:c=blue [r];
16680 nullsrc=s=200x100, zmq [bg];
16681 [bg][l]   overlay      [bg+l];
16682 [bg+l][r] overlay=x=100 "
16683 @end example
16684
16685 To change the color of the left side of the video, the following
16686 command can be used:
16687 @example
16688 echo Parsed_color_0 c yellow | tools/zmqsend
16689 @end example
16690
16691 To change the right side:
16692 @example
16693 echo Parsed_color_1 c pink | tools/zmqsend
16694 @end example
16695
16696 @c man end MULTIMEDIA FILTERS
16697
16698 @chapter Multimedia Sources
16699 @c man begin MULTIMEDIA SOURCES
16700
16701 Below is a description of the currently available multimedia sources.
16702
16703 @section amovie
16704
16705 This is the same as @ref{movie} source, except it selects an audio
16706 stream by default.
16707
16708 @anchor{movie}
16709 @section movie
16710
16711 Read audio and/or video stream(s) from a movie container.
16712
16713 It accepts the following parameters:
16714
16715 @table @option
16716 @item filename
16717 The name of the resource to read (not necessarily a file; it can also be a
16718 device or a stream accessed through some protocol).
16719
16720 @item format_name, f
16721 Specifies the format assumed for the movie to read, and can be either
16722 the name of a container or an input device. If not specified, the
16723 format is guessed from @var{movie_name} or by probing.
16724
16725 @item seek_point, sp
16726 Specifies the seek point in seconds. The frames will be output
16727 starting from this seek point. The parameter is evaluated with
16728 @code{av_strtod}, so the numerical value may be suffixed by an IS
16729 postfix. The default value is "0".
16730
16731 @item streams, s
16732 Specifies the streams to read. Several streams can be specified,
16733 separated by "+". The source will then have as many outputs, in the
16734 same order. The syntax is explained in the ``Stream specifiers''
16735 section in the ffmpeg manual. Two special names, "dv" and "da" specify
16736 respectively the default (best suited) video and audio stream. Default
16737 is "dv", or "da" if the filter is called as "amovie".
16738
16739 @item stream_index, si
16740 Specifies the index of the video stream to read. If the value is -1,
16741 the most suitable video stream will be automatically selected. The default
16742 value is "-1". Deprecated. If the filter is called "amovie", it will select
16743 audio instead of video.
16744
16745 @item loop
16746 Specifies how many times to read the stream in sequence.
16747 If the value is less than 1, the stream will be read again and again.
16748 Default value is "1".
16749
16750 Note that when the movie is looped the source timestamps are not
16751 changed, so it will generate non monotonically increasing timestamps.
16752 @end table
16753
16754 It allows overlaying a second video on top of the main input of
16755 a filtergraph, as shown in this graph:
16756 @example
16757 input -----------> deltapts0 --> overlay --> output
16758                                     ^
16759                                     |
16760 movie --> scale--> deltapts1 -------+
16761 @end example
16762 @subsection Examples
16763
16764 @itemize
16765 @item
16766 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
16767 on top of the input labelled "in":
16768 @example
16769 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
16770 [in] setpts=PTS-STARTPTS [main];
16771 [main][over] overlay=16:16 [out]
16772 @end example
16773
16774 @item
16775 Read from a video4linux2 device, and overlay it on top of the input
16776 labelled "in":
16777 @example
16778 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
16779 [in] setpts=PTS-STARTPTS [main];
16780 [main][over] overlay=16:16 [out]
16781 @end example
16782
16783 @item
16784 Read the first video stream and the audio stream with id 0x81 from
16785 dvd.vob; the video is connected to the pad named "video" and the audio is
16786 connected to the pad named "audio":
16787 @example
16788 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
16789 @end example
16790 @end itemize
16791
16792 @c man end MULTIMEDIA SOURCES