]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '44d16df413878588659dd8901bba016b5a869fd1'
[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 loudnorm
2715
2716 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2717 Support for both single pass (livestreams, files) and double pass (files) modes.
2718 This algorithm can target IL, LRA, and maximum true peak.
2719
2720 To enable compilation of this filter you need to configure FFmpeg with
2721 @code{--enable-libebur128}.
2722
2723 The filter accepts the following options:
2724
2725 @table @option
2726 @item I, i
2727 Set integrated loudness target.
2728 Range is -70.0 - -5.0. Default value is -24.0.
2729
2730 @item LRA, lra
2731 Set loudness range target.
2732 Range is 1.0 - 20.0. Default value is 7.0.
2733
2734 @item TP, tp
2735 Set maximum true peak.
2736 Range is -9.0 - +0.0. Default value is -2.0.
2737
2738 @item measured_I, measured_i
2739 Measured IL of input file.
2740 Range is -99.0 - +0.0.
2741
2742 @item measured_LRA, measured_lra
2743 Measured LRA of input file.
2744 Range is  0.0 - 99.0.
2745
2746 @item measured_TP, measured_tp
2747 Measured true peak of input file.
2748 Range is  -99.0 - +99.0.
2749
2750 @item measured_thresh
2751 Measured threshold of input file.
2752 Range is -99.0 - +0.0.
2753
2754 @item offset
2755 Set offset gain. Gain is applied before the true-peak limiter.
2756 Range is  -99.0 - +99.0. Default is +0.0.
2757
2758 @item linear
2759 Normalize linearly if possible.
2760 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2761 to be specified in order to use this mode.
2762 Options are true or false. Default is true.
2763
2764 @item print_format
2765 Set print format for stats. Options are summary, json, or none.
2766 Default value is none.
2767 @end table
2768
2769 @section lowpass
2770
2771 Apply a low-pass filter with 3dB point frequency.
2772 The filter can be either single-pole or double-pole (the default).
2773 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2774
2775 The filter accepts the following options:
2776
2777 @table @option
2778 @item frequency, f
2779 Set frequency in Hz. Default is 500.
2780
2781 @item poles, p
2782 Set number of poles. Default is 2.
2783
2784 @item width_type
2785 Set method to specify band-width of filter.
2786 @table @option
2787 @item h
2788 Hz
2789 @item q
2790 Q-Factor
2791 @item o
2792 octave
2793 @item s
2794 slope
2795 @end table
2796
2797 @item width, w
2798 Specify the band-width of a filter in width_type units.
2799 Applies only to double-pole filter.
2800 The default is 0.707q and gives a Butterworth response.
2801 @end table
2802
2803 @anchor{pan}
2804 @section pan
2805
2806 Mix channels with specific gain levels. The filter accepts the output
2807 channel layout followed by a set of channels definitions.
2808
2809 This filter is also designed to efficiently remap the channels of an audio
2810 stream.
2811
2812 The filter accepts parameters of the form:
2813 "@var{l}|@var{outdef}|@var{outdef}|..."
2814
2815 @table @option
2816 @item l
2817 output channel layout or number of channels
2818
2819 @item outdef
2820 output channel specification, of the form:
2821 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2822
2823 @item out_name
2824 output channel to define, either a channel name (FL, FR, etc.) or a channel
2825 number (c0, c1, etc.)
2826
2827 @item gain
2828 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2829
2830 @item in_name
2831 input channel to use, see out_name for details; it is not possible to mix
2832 named and numbered input channels
2833 @end table
2834
2835 If the `=' in a channel specification is replaced by `<', then the gains for
2836 that specification will be renormalized so that the total is 1, thus
2837 avoiding clipping noise.
2838
2839 @subsection Mixing examples
2840
2841 For example, if you want to down-mix from stereo to mono, but with a bigger
2842 factor for the left channel:
2843 @example
2844 pan=1c|c0=0.9*c0+0.1*c1
2845 @end example
2846
2847 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2848 7-channels surround:
2849 @example
2850 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2851 @end example
2852
2853 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2854 that should be preferred (see "-ac" option) unless you have very specific
2855 needs.
2856
2857 @subsection Remapping examples
2858
2859 The channel remapping will be effective if, and only if:
2860
2861 @itemize
2862 @item gain coefficients are zeroes or ones,
2863 @item only one input per channel output,
2864 @end itemize
2865
2866 If all these conditions are satisfied, the filter will notify the user ("Pure
2867 channel mapping detected"), and use an optimized and lossless method to do the
2868 remapping.
2869
2870 For example, if you have a 5.1 source and want a stereo audio stream by
2871 dropping the extra channels:
2872 @example
2873 pan="stereo| c0=FL | c1=FR"
2874 @end example
2875
2876 Given the same source, you can also switch front left and front right channels
2877 and keep the input channel layout:
2878 @example
2879 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2880 @end example
2881
2882 If the input is a stereo audio stream, you can mute the front left channel (and
2883 still keep the stereo channel layout) with:
2884 @example
2885 pan="stereo|c1=c1"
2886 @end example
2887
2888 Still with a stereo audio stream input, you can copy the right channel in both
2889 front left and right:
2890 @example
2891 pan="stereo| c0=FR | c1=FR"
2892 @end example
2893
2894 @section replaygain
2895
2896 ReplayGain scanner filter. This filter takes an audio stream as an input and
2897 outputs it unchanged.
2898 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2899
2900 @section resample
2901
2902 Convert the audio sample format, sample rate and channel layout. It is
2903 not meant to be used directly.
2904
2905 @section rubberband
2906 Apply time-stretching and pitch-shifting with librubberband.
2907
2908 The filter accepts the following options:
2909
2910 @table @option
2911 @item tempo
2912 Set tempo scale factor.
2913
2914 @item pitch
2915 Set pitch scale factor.
2916
2917 @item transients
2918 Set transients detector.
2919 Possible values are:
2920 @table @var
2921 @item crisp
2922 @item mixed
2923 @item smooth
2924 @end table
2925
2926 @item detector
2927 Set detector.
2928 Possible values are:
2929 @table @var
2930 @item compound
2931 @item percussive
2932 @item soft
2933 @end table
2934
2935 @item phase
2936 Set phase.
2937 Possible values are:
2938 @table @var
2939 @item laminar
2940 @item independent
2941 @end table
2942
2943 @item window
2944 Set processing window size.
2945 Possible values are:
2946 @table @var
2947 @item standard
2948 @item short
2949 @item long
2950 @end table
2951
2952 @item smoothing
2953 Set smoothing.
2954 Possible values are:
2955 @table @var
2956 @item off
2957 @item on
2958 @end table
2959
2960 @item formant
2961 Enable formant preservation when shift pitching.
2962 Possible values are:
2963 @table @var
2964 @item shifted
2965 @item preserved
2966 @end table
2967
2968 @item pitchq
2969 Set pitch quality.
2970 Possible values are:
2971 @table @var
2972 @item quality
2973 @item speed
2974 @item consistency
2975 @end table
2976
2977 @item channels
2978 Set channels.
2979 Possible values are:
2980 @table @var
2981 @item apart
2982 @item together
2983 @end table
2984 @end table
2985
2986 @section sidechaincompress
2987
2988 This filter acts like normal compressor but has the ability to compress
2989 detected signal using second input signal.
2990 It needs two input streams and returns one output stream.
2991 First input stream will be processed depending on second stream signal.
2992 The filtered signal then can be filtered with other filters in later stages of
2993 processing. See @ref{pan} and @ref{amerge} filter.
2994
2995 The filter accepts the following options:
2996
2997 @table @option
2998 @item level_in
2999 Set input gain. Default is 1. Range is between 0.015625 and 64.
3000
3001 @item threshold
3002 If a signal of second stream raises above this level it will affect the gain
3003 reduction of first stream.
3004 By default is 0.125. Range is between 0.00097563 and 1.
3005
3006 @item ratio
3007 Set a ratio about which the signal is reduced. 1:2 means that if the level
3008 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3009 Default is 2. Range is between 1 and 20.
3010
3011 @item attack
3012 Amount of milliseconds the signal has to rise above the threshold before gain
3013 reduction starts. Default is 20. Range is between 0.01 and 2000.
3014
3015 @item release
3016 Amount of milliseconds the signal has to fall below the threshold before
3017 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3018
3019 @item makeup
3020 Set the amount by how much signal will be amplified after processing.
3021 Default is 2. Range is from 1 and 64.
3022
3023 @item knee
3024 Curve the sharp knee around the threshold to enter gain reduction more softly.
3025 Default is 2.82843. Range is between 1 and 8.
3026
3027 @item link
3028 Choose if the @code{average} level between all channels of side-chain stream
3029 or the louder(@code{maximum}) channel of side-chain stream affects the
3030 reduction. Default is @code{average}.
3031
3032 @item detection
3033 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3034 of @code{rms}. Default is @code{rms} which is mainly smoother.
3035
3036 @item level_sc
3037 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3038
3039 @item mix
3040 How much to use compressed signal in output. Default is 1.
3041 Range is between 0 and 1.
3042 @end table
3043
3044 @subsection Examples
3045
3046 @itemize
3047 @item
3048 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3049 depending on the signal of 2nd input and later compressed signal to be
3050 merged with 2nd input:
3051 @example
3052 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3053 @end example
3054 @end itemize
3055
3056 @section sidechaingate
3057
3058 A sidechain gate acts like a normal (wideband) gate but has the ability to
3059 filter the detected signal before sending it to the gain reduction stage.
3060 Normally a gate uses the full range signal to detect a level above the
3061 threshold.
3062 For example: If you cut all lower frequencies from your sidechain signal
3063 the gate will decrease the volume of your track only if not enough highs
3064 appear. With this technique you are able to reduce the resonation of a
3065 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3066 guitar.
3067 It needs two input streams and returns one output stream.
3068 First input stream will be processed depending on second stream signal.
3069
3070 The filter accepts the following options:
3071
3072 @table @option
3073 @item level_in
3074 Set input level before filtering.
3075 Default is 1. Allowed range is from 0.015625 to 64.
3076
3077 @item range
3078 Set the level of gain reduction when the signal is below the threshold.
3079 Default is 0.06125. Allowed range is from 0 to 1.
3080
3081 @item threshold
3082 If a signal rises above this level the gain reduction is released.
3083 Default is 0.125. Allowed range is from 0 to 1.
3084
3085 @item ratio
3086 Set a ratio about which the signal is reduced.
3087 Default is 2. Allowed range is from 1 to 9000.
3088
3089 @item attack
3090 Amount of milliseconds the signal has to rise above the threshold before gain
3091 reduction stops.
3092 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3093
3094 @item release
3095 Amount of milliseconds the signal has to fall below the threshold before the
3096 reduction is increased again. Default is 250 milliseconds.
3097 Allowed range is from 0.01 to 9000.
3098
3099 @item makeup
3100 Set amount of amplification of signal after processing.
3101 Default is 1. Allowed range is from 1 to 64.
3102
3103 @item knee
3104 Curve the sharp knee around the threshold to enter gain reduction more softly.
3105 Default is 2.828427125. Allowed range is from 1 to 8.
3106
3107 @item detection
3108 Choose if exact signal should be taken for detection or an RMS like one.
3109 Default is rms. Can be peak or rms.
3110
3111 @item link
3112 Choose if the average level between all channels or the louder channel affects
3113 the reduction.
3114 Default is average. Can be average or maximum.
3115
3116 @item level_sc
3117 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3118 @end table
3119
3120 @section silencedetect
3121
3122 Detect silence in an audio stream.
3123
3124 This filter logs a message when it detects that the input audio volume is less
3125 or equal to a noise tolerance value for a duration greater or equal to the
3126 minimum detected noise duration.
3127
3128 The printed times and duration are expressed in seconds.
3129
3130 The filter accepts the following options:
3131
3132 @table @option
3133 @item duration, d
3134 Set silence duration until notification (default is 2 seconds).
3135
3136 @item noise, n
3137 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3138 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3139 @end table
3140
3141 @subsection Examples
3142
3143 @itemize
3144 @item
3145 Detect 5 seconds of silence with -50dB noise tolerance:
3146 @example
3147 silencedetect=n=-50dB:d=5
3148 @end example
3149
3150 @item
3151 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3152 tolerance in @file{silence.mp3}:
3153 @example
3154 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3155 @end example
3156 @end itemize
3157
3158 @section silenceremove
3159
3160 Remove silence from the beginning, middle or end of the audio.
3161
3162 The filter accepts the following options:
3163
3164 @table @option
3165 @item start_periods
3166 This value is used to indicate if audio should be trimmed at beginning of
3167 the audio. A value of zero indicates no silence should be trimmed from the
3168 beginning. When specifying a non-zero value, it trims audio up until it
3169 finds non-silence. Normally, when trimming silence from beginning of audio
3170 the @var{start_periods} will be @code{1} but it can be increased to higher
3171 values to trim all audio up to specific count of non-silence periods.
3172 Default value is @code{0}.
3173
3174 @item start_duration
3175 Specify the amount of time that non-silence must be detected before it stops
3176 trimming audio. By increasing the duration, bursts of noises can be treated
3177 as silence and trimmed off. Default value is @code{0}.
3178
3179 @item start_threshold
3180 This indicates what sample value should be treated as silence. For digital
3181 audio, a value of @code{0} may be fine but for audio recorded from analog,
3182 you may wish to increase the value to account for background noise.
3183 Can be specified in dB (in case "dB" is appended to the specified value)
3184 or amplitude ratio. Default value is @code{0}.
3185
3186 @item stop_periods
3187 Set the count for trimming silence from the end of audio.
3188 To remove silence from the middle of a file, specify a @var{stop_periods}
3189 that is negative. This value is then treated as a positive value and is
3190 used to indicate the effect should restart processing as specified by
3191 @var{start_periods}, making it suitable for removing periods of silence
3192 in the middle of the audio.
3193 Default value is @code{0}.
3194
3195 @item stop_duration
3196 Specify a duration of silence that must exist before audio is not copied any
3197 more. By specifying a higher duration, silence that is wanted can be left in
3198 the audio.
3199 Default value is @code{0}.
3200
3201 @item stop_threshold
3202 This is the same as @option{start_threshold} but for trimming silence from
3203 the end of audio.
3204 Can be specified in dB (in case "dB" is appended to the specified value)
3205 or amplitude ratio. Default value is @code{0}.
3206
3207 @item leave_silence
3208 This indicate that @var{stop_duration} length of audio should be left intact
3209 at the beginning of each period of silence.
3210 For example, if you want to remove long pauses between words but do not want
3211 to remove the pauses completely. Default value is @code{0}.
3212
3213 @item detection
3214 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3215 and works better with digital silence which is exactly 0.
3216 Default value is @code{rms}.
3217
3218 @item window
3219 Set ratio used to calculate size of window for detecting silence.
3220 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3221 @end table
3222
3223 @subsection Examples
3224
3225 @itemize
3226 @item
3227 The following example shows how this filter can be used to start a recording
3228 that does not contain the delay at the start which usually occurs between
3229 pressing the record button and the start of the performance:
3230 @example
3231 silenceremove=1:5:0.02
3232 @end example
3233
3234 @item
3235 Trim all silence encountered from begining to end where there is more than 1
3236 second of silence in audio:
3237 @example
3238 silenceremove=0:0:0:-1:1:-90dB
3239 @end example
3240 @end itemize
3241
3242 @section sofalizer
3243
3244 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3245 loudspeakers around the user for binaural listening via headphones (audio
3246 formats up to 9 channels supported).
3247 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3248 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3249 Austrian Academy of Sciences.
3250
3251 To enable compilation of this filter you need to configure FFmpeg with
3252 @code{--enable-netcdf}.
3253
3254 The filter accepts the following options:
3255
3256 @table @option
3257 @item sofa
3258 Set the SOFA file used for rendering.
3259
3260 @item gain
3261 Set gain applied to audio. Value is in dB. Default is 0.
3262
3263 @item rotation
3264 Set rotation of virtual loudspeakers in deg. Default is 0.
3265
3266 @item elevation
3267 Set elevation of virtual speakers in deg. Default is 0.
3268
3269 @item radius
3270 Set distance in meters between loudspeakers and the listener with near-field
3271 HRTFs. Default is 1.
3272
3273 @item type
3274 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3275 processing audio in time domain which is slow.
3276 @var{freq} is processing audio in frequency domain which is fast.
3277 Default is @var{freq}.
3278
3279 @item speakers
3280 Set custom positions of virtual loudspeakers. Syntax for this option is:
3281 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3282 Each virtual loudspeaker is described with short channel name following with
3283 azimuth and elevation in degreees.
3284 Each virtual loudspeaker description is separated by '|'.
3285 For example to override front left and front right channel positions use:
3286 'speakers=FL 45 15|FR 345 15'.
3287 Descriptions with unrecognised channel names are ignored.
3288 @end table
3289
3290 @subsection Examples
3291
3292 @itemize
3293 @item
3294 Using ClubFritz6 sofa file:
3295 @example
3296 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3297 @end example
3298
3299 @item
3300 Using ClubFritz12 sofa file and bigger radius with small rotation:
3301 @example
3302 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3303 @end example
3304
3305 @item
3306 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3307 and also with custom gain:
3308 @example
3309 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3310 @end example
3311 @end itemize
3312
3313 @section stereotools
3314
3315 This filter has some handy utilities to manage stereo signals, for converting
3316 M/S stereo recordings to L/R signal while having control over the parameters
3317 or spreading the stereo image of master track.
3318
3319 The filter accepts the following options:
3320
3321 @table @option
3322 @item level_in
3323 Set input level before filtering for both channels. Defaults is 1.
3324 Allowed range is from 0.015625 to 64.
3325
3326 @item level_out
3327 Set output level after filtering for both channels. Defaults is 1.
3328 Allowed range is from 0.015625 to 64.
3329
3330 @item balance_in
3331 Set input balance between both channels. Default is 0.
3332 Allowed range is from -1 to 1.
3333
3334 @item balance_out
3335 Set output balance between both channels. Default is 0.
3336 Allowed range is from -1 to 1.
3337
3338 @item softclip
3339 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3340 clipping. Disabled by default.
3341
3342 @item mutel
3343 Mute the left channel. Disabled by default.
3344
3345 @item muter
3346 Mute the right channel. Disabled by default.
3347
3348 @item phasel
3349 Change the phase of the left channel. Disabled by default.
3350
3351 @item phaser
3352 Change the phase of the right channel. Disabled by default.
3353
3354 @item mode
3355 Set stereo mode. Available values are:
3356
3357 @table @samp
3358 @item lr>lr
3359 Left/Right to Left/Right, this is default.
3360
3361 @item lr>ms
3362 Left/Right to Mid/Side.
3363
3364 @item ms>lr
3365 Mid/Side to Left/Right.
3366
3367 @item lr>ll
3368 Left/Right to Left/Left.
3369
3370 @item lr>rr
3371 Left/Right to Right/Right.
3372
3373 @item lr>l+r
3374 Left/Right to Left + Right.
3375
3376 @item lr>rl
3377 Left/Right to Right/Left.
3378 @end table
3379
3380 @item slev
3381 Set level of side signal. Default is 1.
3382 Allowed range is from 0.015625 to 64.
3383
3384 @item sbal
3385 Set balance of side signal. Default is 0.
3386 Allowed range is from -1 to 1.
3387
3388 @item mlev
3389 Set level of the middle signal. Default is 1.
3390 Allowed range is from 0.015625 to 64.
3391
3392 @item mpan
3393 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3394
3395 @item base
3396 Set stereo base between mono and inversed channels. Default is 0.
3397 Allowed range is from -1 to 1.
3398
3399 @item delay
3400 Set delay in milliseconds how much to delay left from right channel and
3401 vice versa. Default is 0. Allowed range is from -20 to 20.
3402
3403 @item sclevel
3404 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3405
3406 @item phase
3407 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3408 @end table
3409
3410 @subsection Examples
3411
3412 @itemize
3413 @item
3414 Apply karaoke like effect:
3415 @example
3416 stereotools=mlev=0.015625
3417 @end example
3418
3419 @item
3420 Convert M/S signal to L/R:
3421 @example
3422 "stereotools=mode=ms>lr"
3423 @end example
3424 @end itemize
3425
3426 @section stereowiden
3427
3428 This filter enhance the stereo effect by suppressing signal common to both
3429 channels and by delaying the signal of left into right and vice versa,
3430 thereby widening the stereo effect.
3431
3432 The filter accepts the following options:
3433
3434 @table @option
3435 @item delay
3436 Time in milliseconds of the delay of left signal into right and vice versa.
3437 Default is 20 milliseconds.
3438
3439 @item feedback
3440 Amount of gain in delayed signal into right and vice versa. Gives a delay
3441 effect of left signal in right output and vice versa which gives widening
3442 effect. Default is 0.3.
3443
3444 @item crossfeed
3445 Cross feed of left into right with inverted phase. This helps in suppressing
3446 the mono. If the value is 1 it will cancel all the signal common to both
3447 channels. Default is 0.3.
3448
3449 @item drymix
3450 Set level of input signal of original channel. Default is 0.8.
3451 @end table
3452
3453 @section scale_npp
3454
3455 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
3456 format conversion on CUDA video frames. Setting the output width and height
3457 works in the same way as for the @var{scale} filter.
3458
3459 The following additional options are accepted:
3460 @table @option
3461 @item format
3462 The pixel format of the output CUDA frames. If set to the string "same" (the
3463 default), the input format will be kept. Note that automatic format negotiation
3464 and conversion is not yet supported for hardware frames
3465
3466 @item interp_algo
3467 The interpolation algorithm used for resizing. One of the following:
3468 @table @option
3469 @item nn
3470 Nearest neighbour.
3471
3472 @item linear
3473 @item cubic
3474 @item cubic2p_bspline
3475 2-parameter cubic (B=1, C=0)
3476
3477 @item cubic2p_catmullrom
3478 2-parameter cubic (B=0, C=1/2)
3479
3480 @item cubic2p_b05c03
3481 2-parameter cubic (B=1/2, C=3/10)
3482
3483 @item super
3484 Supersampling
3485
3486 @item lanczos
3487 @end table
3488
3489 @end table
3490
3491 @section select
3492 Select frames to pass in output.
3493
3494 @section treble
3495
3496 Boost or cut treble (upper) frequencies of the audio using a two-pole
3497 shelving filter with a response similar to that of a standard
3498 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3499
3500 The filter accepts the following options:
3501
3502 @table @option
3503 @item gain, g
3504 Give the gain at whichever is the lower of ~22 kHz and the
3505 Nyquist frequency. Its useful range is about -20 (for a large cut)
3506 to +20 (for a large boost). Beware of clipping when using a positive gain.
3507
3508 @item frequency, f
3509 Set the filter's central frequency and so can be used
3510 to extend or reduce the frequency range to be boosted or cut.
3511 The default value is @code{3000} Hz.
3512
3513 @item width_type
3514 Set method to specify band-width of filter.
3515 @table @option
3516 @item h
3517 Hz
3518 @item q
3519 Q-Factor
3520 @item o
3521 octave
3522 @item s
3523 slope
3524 @end table
3525
3526 @item width, w
3527 Determine how steep is the filter's shelf transition.
3528 @end table
3529
3530 @section tremolo
3531
3532 Sinusoidal amplitude modulation.
3533
3534 The filter accepts the following options:
3535
3536 @table @option
3537 @item f
3538 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3539 (20 Hz or lower) will result in a tremolo effect.
3540 This filter may also be used as a ring modulator by specifying
3541 a modulation frequency higher than 20 Hz.
3542 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3543
3544 @item d
3545 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3546 Default value is 0.5.
3547 @end table
3548
3549 @section vibrato
3550
3551 Sinusoidal phase modulation.
3552
3553 The filter accepts the following options:
3554
3555 @table @option
3556 @item f
3557 Modulation frequency in Hertz.
3558 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3559
3560 @item d
3561 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3562 Default value is 0.5.
3563 @end table
3564
3565 @section volume
3566
3567 Adjust the input audio volume.
3568
3569 It accepts the following parameters:
3570 @table @option
3571
3572 @item volume
3573 Set audio volume expression.
3574
3575 Output values are clipped to the maximum value.
3576
3577 The output audio volume is given by the relation:
3578 @example
3579 @var{output_volume} = @var{volume} * @var{input_volume}
3580 @end example
3581
3582 The default value for @var{volume} is "1.0".
3583
3584 @item precision
3585 This parameter represents the mathematical precision.
3586
3587 It determines which input sample formats will be allowed, which affects the
3588 precision of the volume scaling.
3589
3590 @table @option
3591 @item fixed
3592 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3593 @item float
3594 32-bit floating-point; this limits input sample format to FLT. (default)
3595 @item double
3596 64-bit floating-point; this limits input sample format to DBL.
3597 @end table
3598
3599 @item replaygain
3600 Choose the behaviour on encountering ReplayGain side data in input frames.
3601
3602 @table @option
3603 @item drop
3604 Remove ReplayGain side data, ignoring its contents (the default).
3605
3606 @item ignore
3607 Ignore ReplayGain side data, but leave it in the frame.
3608
3609 @item track
3610 Prefer the track gain, if present.
3611
3612 @item album
3613 Prefer the album gain, if present.
3614 @end table
3615
3616 @item replaygain_preamp
3617 Pre-amplification gain in dB to apply to the selected replaygain gain.
3618
3619 Default value for @var{replaygain_preamp} is 0.0.
3620
3621 @item eval
3622 Set when the volume expression is evaluated.
3623
3624 It accepts the following values:
3625 @table @samp
3626 @item once
3627 only evaluate expression once during the filter initialization, or
3628 when the @samp{volume} command is sent
3629
3630 @item frame
3631 evaluate expression for each incoming frame
3632 @end table
3633
3634 Default value is @samp{once}.
3635 @end table
3636
3637 The volume expression can contain the following parameters.
3638
3639 @table @option
3640 @item n
3641 frame number (starting at zero)
3642 @item nb_channels
3643 number of channels
3644 @item nb_consumed_samples
3645 number of samples consumed by the filter
3646 @item nb_samples
3647 number of samples in the current frame
3648 @item pos
3649 original frame position in the file
3650 @item pts
3651 frame PTS
3652 @item sample_rate
3653 sample rate
3654 @item startpts
3655 PTS at start of stream
3656 @item startt
3657 time at start of stream
3658 @item t
3659 frame time
3660 @item tb
3661 timestamp timebase
3662 @item volume
3663 last set volume value
3664 @end table
3665
3666 Note that when @option{eval} is set to @samp{once} only the
3667 @var{sample_rate} and @var{tb} variables are available, all other
3668 variables will evaluate to NAN.
3669
3670 @subsection Commands
3671
3672 This filter supports the following commands:
3673 @table @option
3674 @item volume
3675 Modify the volume expression.
3676 The command accepts the same syntax of the corresponding option.
3677
3678 If the specified expression is not valid, it is kept at its current
3679 value.
3680 @item replaygain_noclip
3681 Prevent clipping by limiting the gain applied.
3682
3683 Default value for @var{replaygain_noclip} is 1.
3684
3685 @end table
3686
3687 @subsection Examples
3688
3689 @itemize
3690 @item
3691 Halve the input audio volume:
3692 @example
3693 volume=volume=0.5
3694 volume=volume=1/2
3695 volume=volume=-6.0206dB
3696 @end example
3697
3698 In all the above example the named key for @option{volume} can be
3699 omitted, for example like in:
3700 @example
3701 volume=0.5
3702 @end example
3703
3704 @item
3705 Increase input audio power by 6 decibels using fixed-point precision:
3706 @example
3707 volume=volume=6dB:precision=fixed
3708 @end example
3709
3710 @item
3711 Fade volume after time 10 with an annihilation period of 5 seconds:
3712 @example
3713 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3714 @end example
3715 @end itemize
3716
3717 @section volumedetect
3718
3719 Detect the volume of the input video.
3720
3721 The filter has no parameters. The input is not modified. Statistics about
3722 the volume will be printed in the log when the input stream end is reached.
3723
3724 In particular it will show the mean volume (root mean square), maximum
3725 volume (on a per-sample basis), and the beginning of a histogram of the
3726 registered volume values (from the maximum value to a cumulated 1/1000 of
3727 the samples).
3728
3729 All volumes are in decibels relative to the maximum PCM value.
3730
3731 @subsection Examples
3732
3733 Here is an excerpt of the output:
3734 @example
3735 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3736 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3737 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3738 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3739 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3740 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3741 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3742 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3743 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3744 @end example
3745
3746 It means that:
3747 @itemize
3748 @item
3749 The mean square energy is approximately -27 dB, or 10^-2.7.
3750 @item
3751 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3752 @item
3753 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3754 @end itemize
3755
3756 In other words, raising the volume by +4 dB does not cause any clipping,
3757 raising it by +5 dB causes clipping for 6 samples, etc.
3758
3759 @c man end AUDIO FILTERS
3760
3761 @chapter Audio Sources
3762 @c man begin AUDIO SOURCES
3763
3764 Below is a description of the currently available audio sources.
3765
3766 @section abuffer
3767
3768 Buffer audio frames, and make them available to the filter chain.
3769
3770 This source is mainly intended for a programmatic use, in particular
3771 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3772
3773 It accepts the following parameters:
3774 @table @option
3775
3776 @item time_base
3777 The timebase which will be used for timestamps of submitted frames. It must be
3778 either a floating-point number or in @var{numerator}/@var{denominator} form.
3779
3780 @item sample_rate
3781 The sample rate of the incoming audio buffers.
3782
3783 @item sample_fmt
3784 The sample format of the incoming audio buffers.
3785 Either a sample format name or its corresponding integer representation from
3786 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3787
3788 @item channel_layout
3789 The channel layout of the incoming audio buffers.
3790 Either a channel layout name from channel_layout_map in
3791 @file{libavutil/channel_layout.c} or its corresponding integer representation
3792 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3793
3794 @item channels
3795 The number of channels of the incoming audio buffers.
3796 If both @var{channels} and @var{channel_layout} are specified, then they
3797 must be consistent.
3798
3799 @end table
3800
3801 @subsection Examples
3802
3803 @example
3804 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3805 @end example
3806
3807 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3808 Since the sample format with name "s16p" corresponds to the number
3809 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3810 equivalent to:
3811 @example
3812 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3813 @end example
3814
3815 @section aevalsrc
3816
3817 Generate an audio signal specified by an expression.
3818
3819 This source accepts in input one or more expressions (one for each
3820 channel), which are evaluated and used to generate a corresponding
3821 audio signal.
3822
3823 This source accepts the following options:
3824
3825 @table @option
3826 @item exprs
3827 Set the '|'-separated expressions list for each separate channel. In case the
3828 @option{channel_layout} option is not specified, the selected channel layout
3829 depends on the number of provided expressions. Otherwise the last
3830 specified expression is applied to the remaining output channels.
3831
3832 @item channel_layout, c
3833 Set the channel layout. The number of channels in the specified layout
3834 must be equal to the number of specified expressions.
3835
3836 @item duration, d
3837 Set the minimum duration of the sourced audio. See
3838 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3839 for the accepted syntax.
3840 Note that the resulting duration may be greater than the specified
3841 duration, as the generated audio is always cut at the end of a
3842 complete frame.
3843
3844 If not specified, or the expressed duration is negative, the audio is
3845 supposed to be generated forever.
3846
3847 @item nb_samples, n
3848 Set the number of samples per channel per each output frame,
3849 default to 1024.
3850
3851 @item sample_rate, s
3852 Specify the sample rate, default to 44100.
3853 @end table
3854
3855 Each expression in @var{exprs} can contain the following constants:
3856
3857 @table @option
3858 @item n
3859 number of the evaluated sample, starting from 0
3860
3861 @item t
3862 time of the evaluated sample expressed in seconds, starting from 0
3863
3864 @item s
3865 sample rate
3866
3867 @end table
3868
3869 @subsection Examples
3870
3871 @itemize
3872 @item
3873 Generate silence:
3874 @example
3875 aevalsrc=0
3876 @end example
3877
3878 @item
3879 Generate a sin signal with frequency of 440 Hz, set sample rate to
3880 8000 Hz:
3881 @example
3882 aevalsrc="sin(440*2*PI*t):s=8000"
3883 @end example
3884
3885 @item
3886 Generate a two channels signal, specify the channel layout (Front
3887 Center + Back Center) explicitly:
3888 @example
3889 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3890 @end example
3891
3892 @item
3893 Generate white noise:
3894 @example
3895 aevalsrc="-2+random(0)"
3896 @end example
3897
3898 @item
3899 Generate an amplitude modulated signal:
3900 @example
3901 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3902 @end example
3903
3904 @item
3905 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3906 @example
3907 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3908 @end example
3909
3910 @end itemize
3911
3912 @section anullsrc
3913
3914 The null audio source, return unprocessed audio frames. It is mainly useful
3915 as a template and to be employed in analysis / debugging tools, or as
3916 the source for filters which ignore the input data (for example the sox
3917 synth filter).
3918
3919 This source accepts the following options:
3920
3921 @table @option
3922
3923 @item channel_layout, cl
3924
3925 Specifies the channel layout, and can be either an integer or a string
3926 representing a channel layout. The default value of @var{channel_layout}
3927 is "stereo".
3928
3929 Check the channel_layout_map definition in
3930 @file{libavutil/channel_layout.c} for the mapping between strings and
3931 channel layout values.
3932
3933 @item sample_rate, r
3934 Specifies the sample rate, and defaults to 44100.
3935
3936 @item nb_samples, n
3937 Set the number of samples per requested frames.
3938
3939 @end table
3940
3941 @subsection Examples
3942
3943 @itemize
3944 @item
3945 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3946 @example
3947 anullsrc=r=48000:cl=4
3948 @end example
3949
3950 @item
3951 Do the same operation with a more obvious syntax:
3952 @example
3953 anullsrc=r=48000:cl=mono
3954 @end example
3955 @end itemize
3956
3957 All the parameters need to be explicitly defined.
3958
3959 @section flite
3960
3961 Synthesize a voice utterance using the libflite library.
3962
3963 To enable compilation of this filter you need to configure FFmpeg with
3964 @code{--enable-libflite}.
3965
3966 Note that the flite library is not thread-safe.
3967
3968 The filter accepts the following options:
3969
3970 @table @option
3971
3972 @item list_voices
3973 If set to 1, list the names of the available voices and exit
3974 immediately. Default value is 0.
3975
3976 @item nb_samples, n
3977 Set the maximum number of samples per frame. Default value is 512.
3978
3979 @item textfile
3980 Set the filename containing the text to speak.
3981
3982 @item text
3983 Set the text to speak.
3984
3985 @item voice, v
3986 Set the voice to use for the speech synthesis. Default value is
3987 @code{kal}. See also the @var{list_voices} option.
3988 @end table
3989
3990 @subsection Examples
3991
3992 @itemize
3993 @item
3994 Read from file @file{speech.txt}, and synthesize the text using the
3995 standard flite voice:
3996 @example
3997 flite=textfile=speech.txt
3998 @end example
3999
4000 @item
4001 Read the specified text selecting the @code{slt} voice:
4002 @example
4003 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4004 @end example
4005
4006 @item
4007 Input text to ffmpeg:
4008 @example
4009 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4010 @end example
4011
4012 @item
4013 Make @file{ffplay} speak the specified text, using @code{flite} and
4014 the @code{lavfi} device:
4015 @example
4016 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4017 @end example
4018 @end itemize
4019
4020 For more information about libflite, check:
4021 @url{http://www.speech.cs.cmu.edu/flite/}
4022
4023 @section anoisesrc
4024
4025 Generate a noise audio signal.
4026
4027 The filter accepts the following options:
4028
4029 @table @option
4030 @item sample_rate, r
4031 Specify the sample rate. Default value is 48000 Hz.
4032
4033 @item amplitude, a
4034 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4035 is 1.0.
4036
4037 @item duration, d
4038 Specify the duration of the generated audio stream. Not specifying this option
4039 results in noise with an infinite length.
4040
4041 @item color, colour, c
4042 Specify the color of noise. Available noise colors are white, pink, and brown.
4043 Default color is white.
4044
4045 @item seed, s
4046 Specify a value used to seed the PRNG.
4047
4048 @item nb_samples, n
4049 Set the number of samples per each output frame, default is 1024.
4050 @end table
4051
4052 @subsection Examples
4053
4054 @itemize
4055
4056 @item
4057 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4058 @example
4059 anoisesrc=d=60:c=pink:r=44100:a=0.5
4060 @end example
4061 @end itemize
4062
4063 @section sine
4064
4065 Generate an audio signal made of a sine wave with amplitude 1/8.
4066
4067 The audio signal is bit-exact.
4068
4069 The filter accepts the following options:
4070
4071 @table @option
4072
4073 @item frequency, f
4074 Set the carrier frequency. Default is 440 Hz.
4075
4076 @item beep_factor, b
4077 Enable a periodic beep every second with frequency @var{beep_factor} times
4078 the carrier frequency. Default is 0, meaning the beep is disabled.
4079
4080 @item sample_rate, r
4081 Specify the sample rate, default is 44100.
4082
4083 @item duration, d
4084 Specify the duration of the generated audio stream.
4085
4086 @item samples_per_frame
4087 Set the number of samples per output frame.
4088
4089 The expression can contain the following constants:
4090
4091 @table @option
4092 @item n
4093 The (sequential) number of the output audio frame, starting from 0.
4094
4095 @item pts
4096 The PTS (Presentation TimeStamp) of the output audio frame,
4097 expressed in @var{TB} units.
4098
4099 @item t
4100 The PTS of the output audio frame, expressed in seconds.
4101
4102 @item TB
4103 The timebase of the output audio frames.
4104 @end table
4105
4106 Default is @code{1024}.
4107 @end table
4108
4109 @subsection Examples
4110
4111 @itemize
4112
4113 @item
4114 Generate a simple 440 Hz sine wave:
4115 @example
4116 sine
4117 @end example
4118
4119 @item
4120 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4121 @example
4122 sine=220:4:d=5
4123 sine=f=220:b=4:d=5
4124 sine=frequency=220:beep_factor=4:duration=5
4125 @end example
4126
4127 @item
4128 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4129 pattern:
4130 @example
4131 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4132 @end example
4133 @end itemize
4134
4135 @c man end AUDIO SOURCES
4136
4137 @chapter Audio Sinks
4138 @c man begin AUDIO SINKS
4139
4140 Below is a description of the currently available audio sinks.
4141
4142 @section abuffersink
4143
4144 Buffer audio frames, and make them available to the end of filter chain.
4145
4146 This sink is mainly intended for programmatic use, in particular
4147 through the interface defined in @file{libavfilter/buffersink.h}
4148 or the options system.
4149
4150 It accepts a pointer to an AVABufferSinkContext structure, which
4151 defines the incoming buffers' formats, to be passed as the opaque
4152 parameter to @code{avfilter_init_filter} for initialization.
4153 @section anullsink
4154
4155 Null audio sink; do absolutely nothing with the input audio. It is
4156 mainly useful as a template and for use in analysis / debugging
4157 tools.
4158
4159 @c man end AUDIO SINKS
4160
4161 @chapter Video Filters
4162 @c man begin VIDEO FILTERS
4163
4164 When you configure your FFmpeg build, you can disable any of the
4165 existing filters using @code{--disable-filters}.
4166 The configure output will show the video filters included in your
4167 build.
4168
4169 Below is a description of the currently available video filters.
4170
4171 @section alphaextract
4172
4173 Extract the alpha component from the input as a grayscale video. This
4174 is especially useful with the @var{alphamerge} filter.
4175
4176 @section alphamerge
4177
4178 Add or replace the alpha component of the primary input with the
4179 grayscale value of a second input. This is intended for use with
4180 @var{alphaextract} to allow the transmission or storage of frame
4181 sequences that have alpha in a format that doesn't support an alpha
4182 channel.
4183
4184 For example, to reconstruct full frames from a normal YUV-encoded video
4185 and a separate video created with @var{alphaextract}, you might use:
4186 @example
4187 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4188 @end example
4189
4190 Since this filter is designed for reconstruction, it operates on frame
4191 sequences without considering timestamps, and terminates when either
4192 input reaches end of stream. This will cause problems if your encoding
4193 pipeline drops frames. If you're trying to apply an image as an
4194 overlay to a video stream, consider the @var{overlay} filter instead.
4195
4196 @section ass
4197
4198 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4199 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4200 Substation Alpha) subtitles files.
4201
4202 This filter accepts the following option in addition to the common options from
4203 the @ref{subtitles} filter:
4204
4205 @table @option
4206 @item shaping
4207 Set the shaping engine
4208
4209 Available values are:
4210 @table @samp
4211 @item auto
4212 The default libass shaping engine, which is the best available.
4213 @item simple
4214 Fast, font-agnostic shaper that can do only substitutions
4215 @item complex
4216 Slower shaper using OpenType for substitutions and positioning
4217 @end table
4218
4219 The default is @code{auto}.
4220 @end table
4221
4222 @section atadenoise
4223 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4224
4225 The filter accepts the following options:
4226
4227 @table @option
4228 @item 0a
4229 Set threshold A for 1st plane. Default is 0.02.
4230 Valid range is 0 to 0.3.
4231
4232 @item 0b
4233 Set threshold B for 1st plane. Default is 0.04.
4234 Valid range is 0 to 5.
4235
4236 @item 1a
4237 Set threshold A for 2nd plane. Default is 0.02.
4238 Valid range is 0 to 0.3.
4239
4240 @item 1b
4241 Set threshold B for 2nd plane. Default is 0.04.
4242 Valid range is 0 to 5.
4243
4244 @item 2a
4245 Set threshold A for 3rd plane. Default is 0.02.
4246 Valid range is 0 to 0.3.
4247
4248 @item 2b
4249 Set threshold B for 3rd plane. Default is 0.04.
4250 Valid range is 0 to 5.
4251
4252 Threshold A is designed to react on abrupt changes in the input signal and
4253 threshold B is designed to react on continuous changes in the input signal.
4254
4255 @item s
4256 Set number of frames filter will use for averaging. Default is 33. Must be odd
4257 number in range [5, 129].
4258 @end table
4259
4260 @section bbox
4261
4262 Compute the bounding box for the non-black pixels in the input frame
4263 luminance plane.
4264
4265 This filter computes the bounding box containing all the pixels with a
4266 luminance value greater than the minimum allowed value.
4267 The parameters describing the bounding box are printed on the filter
4268 log.
4269
4270 The filter accepts the following option:
4271
4272 @table @option
4273 @item min_val
4274 Set the minimal luminance value. Default is @code{16}.
4275 @end table
4276
4277 @section blackdetect
4278
4279 Detect video intervals that are (almost) completely black. Can be
4280 useful to detect chapter transitions, commercials, or invalid
4281 recordings. Output lines contains the time for the start, end and
4282 duration of the detected black interval expressed in seconds.
4283
4284 In order to display the output lines, you need to set the loglevel at
4285 least to the AV_LOG_INFO value.
4286
4287 The filter accepts the following options:
4288
4289 @table @option
4290 @item black_min_duration, d
4291 Set the minimum detected black duration expressed in seconds. It must
4292 be a non-negative floating point number.
4293
4294 Default value is 2.0.
4295
4296 @item picture_black_ratio_th, pic_th
4297 Set the threshold for considering a picture "black".
4298 Express the minimum value for the ratio:
4299 @example
4300 @var{nb_black_pixels} / @var{nb_pixels}
4301 @end example
4302
4303 for which a picture is considered black.
4304 Default value is 0.98.
4305
4306 @item pixel_black_th, pix_th
4307 Set the threshold for considering a pixel "black".
4308
4309 The threshold expresses the maximum pixel luminance value for which a
4310 pixel is considered "black". The provided value is scaled according to
4311 the following equation:
4312 @example
4313 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4314 @end example
4315
4316 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4317 the input video format, the range is [0-255] for YUV full-range
4318 formats and [16-235] for YUV non full-range formats.
4319
4320 Default value is 0.10.
4321 @end table
4322
4323 The following example sets the maximum pixel threshold to the minimum
4324 value, and detects only black intervals of 2 or more seconds:
4325 @example
4326 blackdetect=d=2:pix_th=0.00
4327 @end example
4328
4329 @section blackframe
4330
4331 Detect frames that are (almost) completely black. Can be useful to
4332 detect chapter transitions or commercials. Output lines consist of
4333 the frame number of the detected frame, the percentage of blackness,
4334 the position in the file if known or -1 and the timestamp in seconds.
4335
4336 In order to display the output lines, you need to set the loglevel at
4337 least to the AV_LOG_INFO value.
4338
4339 It accepts the following parameters:
4340
4341 @table @option
4342
4343 @item amount
4344 The percentage of the pixels that have to be below the threshold; it defaults to
4345 @code{98}.
4346
4347 @item threshold, thresh
4348 The threshold below which a pixel value is considered black; it defaults to
4349 @code{32}.
4350
4351 @end table
4352
4353 @section blend, tblend
4354
4355 Blend two video frames into each other.
4356
4357 The @code{blend} filter takes two input streams and outputs one
4358 stream, the first input is the "top" layer and second input is
4359 "bottom" layer.  Output terminates when shortest input terminates.
4360
4361 The @code{tblend} (time blend) filter takes two consecutive frames
4362 from one single stream, and outputs the result obtained by blending
4363 the new frame on top of the old frame.
4364
4365 A description of the accepted options follows.
4366
4367 @table @option
4368 @item c0_mode
4369 @item c1_mode
4370 @item c2_mode
4371 @item c3_mode
4372 @item all_mode
4373 Set blend mode for specific pixel component or all pixel components in case
4374 of @var{all_mode}. Default value is @code{normal}.
4375
4376 Available values for component modes are:
4377 @table @samp
4378 @item addition
4379 @item addition128
4380 @item and
4381 @item average
4382 @item burn
4383 @item darken
4384 @item difference
4385 @item difference128
4386 @item divide
4387 @item dodge
4388 @item freeze
4389 @item exclusion
4390 @item glow
4391 @item hardlight
4392 @item hardmix
4393 @item heat
4394 @item lighten
4395 @item linearlight
4396 @item multiply
4397 @item multiply128
4398 @item negation
4399 @item normal
4400 @item or
4401 @item overlay
4402 @item phoenix
4403 @item pinlight
4404 @item reflect
4405 @item screen
4406 @item softlight
4407 @item subtract
4408 @item vividlight
4409 @item xor
4410 @end table
4411
4412 @item c0_opacity
4413 @item c1_opacity
4414 @item c2_opacity
4415 @item c3_opacity
4416 @item all_opacity
4417 Set blend opacity for specific pixel component or all pixel components in case
4418 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4419
4420 @item c0_expr
4421 @item c1_expr
4422 @item c2_expr
4423 @item c3_expr
4424 @item all_expr
4425 Set blend expression for specific pixel component or all pixel components in case
4426 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4427
4428 The expressions can use the following variables:
4429
4430 @table @option
4431 @item N
4432 The sequential number of the filtered frame, starting from @code{0}.
4433
4434 @item X
4435 @item Y
4436 the coordinates of the current sample
4437
4438 @item W
4439 @item H
4440 the width and height of currently filtered plane
4441
4442 @item SW
4443 @item SH
4444 Width and height scale depending on the currently filtered plane. It is the
4445 ratio between the corresponding luma plane number of pixels and the current
4446 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4447 @code{0.5,0.5} for chroma planes.
4448
4449 @item T
4450 Time of the current frame, expressed in seconds.
4451
4452 @item TOP, A
4453 Value of pixel component at current location for first video frame (top layer).
4454
4455 @item BOTTOM, B
4456 Value of pixel component at current location for second video frame (bottom layer).
4457 @end table
4458
4459 @item shortest
4460 Force termination when the shortest input terminates. Default is
4461 @code{0}. This option is only defined for the @code{blend} filter.
4462
4463 @item repeatlast
4464 Continue applying the last bottom frame after the end of the stream. A value of
4465 @code{0} disable the filter after the last frame of the bottom layer is reached.
4466 Default is @code{1}. This option is only defined for the @code{blend} filter.
4467 @end table
4468
4469 @subsection Examples
4470
4471 @itemize
4472 @item
4473 Apply transition from bottom layer to top layer in first 10 seconds:
4474 @example
4475 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4476 @end example
4477
4478 @item
4479 Apply 1x1 checkerboard effect:
4480 @example
4481 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4482 @end example
4483
4484 @item
4485 Apply uncover left effect:
4486 @example
4487 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4488 @end example
4489
4490 @item
4491 Apply uncover down effect:
4492 @example
4493 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4494 @end example
4495
4496 @item
4497 Apply uncover up-left effect:
4498 @example
4499 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4500 @end example
4501
4502 @item
4503 Split diagonally video and shows top and bottom layer on each side:
4504 @example
4505 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4506 @end example
4507
4508 @item
4509 Display differences between the current and the previous frame:
4510 @example
4511 tblend=all_mode=difference128
4512 @end example
4513 @end itemize
4514
4515 @section bwdif
4516
4517 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4518 Deinterlacing Filter").
4519
4520 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4521 interpolation algorithms.
4522 It accepts the following parameters:
4523
4524 @table @option
4525 @item mode
4526 The interlacing mode to adopt. It accepts one of the following values:
4527
4528 @table @option
4529 @item 0, send_frame
4530 Output one frame for each frame.
4531 @item 1, send_field
4532 Output one frame for each field.
4533 @end table
4534
4535 The default value is @code{send_field}.
4536
4537 @item parity
4538 The picture field parity assumed for the input interlaced video. It accepts one
4539 of the following values:
4540
4541 @table @option
4542 @item 0, tff
4543 Assume the top field is first.
4544 @item 1, bff
4545 Assume the bottom field is first.
4546 @item -1, auto
4547 Enable automatic detection of field parity.
4548 @end table
4549
4550 The default value is @code{auto}.
4551 If the interlacing is unknown or the decoder does not export this information,
4552 top field first will be assumed.
4553
4554 @item deint
4555 Specify which frames to deinterlace. Accept one of the following
4556 values:
4557
4558 @table @option
4559 @item 0, all
4560 Deinterlace all frames.
4561 @item 1, interlaced
4562 Only deinterlace frames marked as interlaced.
4563 @end table
4564
4565 The default value is @code{all}.
4566 @end table
4567
4568 @section boxblur
4569
4570 Apply a boxblur algorithm to the input video.
4571
4572 It accepts the following parameters:
4573
4574 @table @option
4575
4576 @item luma_radius, lr
4577 @item luma_power, lp
4578 @item chroma_radius, cr
4579 @item chroma_power, cp
4580 @item alpha_radius, ar
4581 @item alpha_power, ap
4582
4583 @end table
4584
4585 A description of the accepted options follows.
4586
4587 @table @option
4588 @item luma_radius, lr
4589 @item chroma_radius, cr
4590 @item alpha_radius, ar
4591 Set an expression for the box radius in pixels used for blurring the
4592 corresponding input plane.
4593
4594 The radius value must be a non-negative number, and must not be
4595 greater than the value of the expression @code{min(w,h)/2} for the
4596 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4597 planes.
4598
4599 Default value for @option{luma_radius} is "2". If not specified,
4600 @option{chroma_radius} and @option{alpha_radius} default to the
4601 corresponding value set for @option{luma_radius}.
4602
4603 The expressions can contain the following constants:
4604 @table @option
4605 @item w
4606 @item h
4607 The input width and height in pixels.
4608
4609 @item cw
4610 @item ch
4611 The input chroma image width and height in pixels.
4612
4613 @item hsub
4614 @item vsub
4615 The horizontal and vertical chroma subsample values. For example, for the
4616 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4617 @end table
4618
4619 @item luma_power, lp
4620 @item chroma_power, cp
4621 @item alpha_power, ap
4622 Specify how many times the boxblur filter is applied to the
4623 corresponding plane.
4624
4625 Default value for @option{luma_power} is 2. If not specified,
4626 @option{chroma_power} and @option{alpha_power} default to the
4627 corresponding value set for @option{luma_power}.
4628
4629 A value of 0 will disable the effect.
4630 @end table
4631
4632 @subsection Examples
4633
4634 @itemize
4635 @item
4636 Apply a boxblur filter with the luma, chroma, and alpha radii
4637 set to 2:
4638 @example
4639 boxblur=luma_radius=2:luma_power=1
4640 boxblur=2:1
4641 @end example
4642
4643 @item
4644 Set the luma radius to 2, and alpha and chroma radius to 0:
4645 @example
4646 boxblur=2:1:cr=0:ar=0
4647 @end example
4648
4649 @item
4650 Set the luma and chroma radii to a fraction of the video dimension:
4651 @example
4652 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4653 @end example
4654 @end itemize
4655
4656 @section chromakey
4657 YUV colorspace color/chroma keying.
4658
4659 The filter accepts the following options:
4660
4661 @table @option
4662 @item color
4663 The color which will be replaced with transparency.
4664
4665 @item similarity
4666 Similarity percentage with the key color.
4667
4668 0.01 matches only the exact key color, while 1.0 matches everything.
4669
4670 @item blend
4671 Blend percentage.
4672
4673 0.0 makes pixels either fully transparent, or not transparent at all.
4674
4675 Higher values result in semi-transparent pixels, with a higher transparency
4676 the more similar the pixels color is to the key color.
4677
4678 @item yuv
4679 Signals that the color passed is already in YUV instead of RGB.
4680
4681 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4682 This can be used to pass exact YUV values as hexadecimal numbers.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688 @item
4689 Make every green pixel in the input image transparent:
4690 @example
4691 ffmpeg -i input.png -vf chromakey=green out.png
4692 @end example
4693
4694 @item
4695 Overlay a greenscreen-video on top of a static black background.
4696 @example
4697 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
4698 @end example
4699 @end itemize
4700
4701 @section ciescope
4702
4703 Display CIE color diagram with pixels overlaid onto it.
4704
4705 The filter acccepts the following options:
4706
4707 @table @option
4708 @item system
4709 Set color system.
4710
4711 @table @samp
4712 @item ntsc, 470m
4713 @item ebu, 470bg
4714 @item smpte
4715 @item 240m
4716 @item apple
4717 @item widergb
4718 @item cie1931
4719 @item rec709, hdtv
4720 @item uhdtv, rec2020
4721 @end table
4722
4723 @item cie
4724 Set CIE system.
4725
4726 @table @samp
4727 @item xyy
4728 @item ucs
4729 @item luv
4730 @end table
4731
4732 @item gamuts
4733 Set what gamuts to draw.
4734
4735 See @code{system} option for avaiable values.
4736
4737 @item size, s
4738 Set ciescope size, by default set to 512.
4739
4740 @item intensity, i
4741 Set intensity used to map input pixel values to CIE diagram.
4742
4743 @item contrast
4744 Set contrast used to draw tongue colors that are out of active color system gamut.
4745
4746 @item corrgamma
4747 Correct gamma displayed on scope, by default enabled.
4748
4749 @item showwhite
4750 Show white point on CIE diagram, by default disabled.
4751
4752 @item gamma
4753 Set input gamma. Used only with XYZ input color space.
4754 @end table
4755
4756 @section codecview
4757
4758 Visualize information exported by some codecs.
4759
4760 Some codecs can export information through frames using side-data or other
4761 means. For example, some MPEG based codecs export motion vectors through the
4762 @var{export_mvs} flag in the codec @option{flags2} option.
4763
4764 The filter accepts the following option:
4765
4766 @table @option
4767 @item mv
4768 Set motion vectors to visualize.
4769
4770 Available flags for @var{mv} are:
4771
4772 @table @samp
4773 @item pf
4774 forward predicted MVs of P-frames
4775 @item bf
4776 forward predicted MVs of B-frames
4777 @item bb
4778 backward predicted MVs of B-frames
4779 @end table
4780
4781 @item qp
4782 Display quantization parameters using the chroma planes
4783 @end table
4784
4785 @subsection Examples
4786
4787 @itemize
4788 @item
4789 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4790 @example
4791 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4792 @end example
4793 @end itemize
4794
4795 @section colorbalance
4796 Modify intensity of primary colors (red, green and blue) of input frames.
4797
4798 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4799 regions for the red-cyan, green-magenta or blue-yellow balance.
4800
4801 A positive adjustment value shifts the balance towards the primary color, a negative
4802 value towards the complementary color.
4803
4804 The filter accepts the following options:
4805
4806 @table @option
4807 @item rs
4808 @item gs
4809 @item bs
4810 Adjust red, green and blue shadows (darkest pixels).
4811
4812 @item rm
4813 @item gm
4814 @item bm
4815 Adjust red, green and blue midtones (medium pixels).
4816
4817 @item rh
4818 @item gh
4819 @item bh
4820 Adjust red, green and blue highlights (brightest pixels).
4821
4822 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4823 @end table
4824
4825 @subsection Examples
4826
4827 @itemize
4828 @item
4829 Add red color cast to shadows:
4830 @example
4831 colorbalance=rs=.3
4832 @end example
4833 @end itemize
4834
4835 @section colorkey
4836 RGB colorspace color keying.
4837
4838 The filter accepts the following options:
4839
4840 @table @option
4841 @item color
4842 The color which will be replaced with transparency.
4843
4844 @item similarity
4845 Similarity percentage with the key color.
4846
4847 0.01 matches only the exact key color, while 1.0 matches everything.
4848
4849 @item blend
4850 Blend percentage.
4851
4852 0.0 makes pixels either fully transparent, or not transparent at all.
4853
4854 Higher values result in semi-transparent pixels, with a higher transparency
4855 the more similar the pixels color is to the key color.
4856 @end table
4857
4858 @subsection Examples
4859
4860 @itemize
4861 @item
4862 Make every green pixel in the input image transparent:
4863 @example
4864 ffmpeg -i input.png -vf colorkey=green out.png
4865 @end example
4866
4867 @item
4868 Overlay a greenscreen-video on top of a static background image.
4869 @example
4870 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
4871 @end example
4872 @end itemize
4873
4874 @section colorlevels
4875
4876 Adjust video input frames using levels.
4877
4878 The filter accepts the following options:
4879
4880 @table @option
4881 @item rimin
4882 @item gimin
4883 @item bimin
4884 @item aimin
4885 Adjust red, green, blue and alpha input black point.
4886 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4887
4888 @item rimax
4889 @item gimax
4890 @item bimax
4891 @item aimax
4892 Adjust red, green, blue and alpha input white point.
4893 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4894
4895 Input levels are used to lighten highlights (bright tones), darken shadows
4896 (dark tones), change the balance of bright and dark tones.
4897
4898 @item romin
4899 @item gomin
4900 @item bomin
4901 @item aomin
4902 Adjust red, green, blue and alpha output black point.
4903 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4904
4905 @item romax
4906 @item gomax
4907 @item bomax
4908 @item aomax
4909 Adjust red, green, blue and alpha output white point.
4910 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4911
4912 Output levels allows manual selection of a constrained output level range.
4913 @end table
4914
4915 @subsection Examples
4916
4917 @itemize
4918 @item
4919 Make video output darker:
4920 @example
4921 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4922 @end example
4923
4924 @item
4925 Increase contrast:
4926 @example
4927 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4928 @end example
4929
4930 @item
4931 Make video output lighter:
4932 @example
4933 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4934 @end example
4935
4936 @item
4937 Increase brightness:
4938 @example
4939 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4940 @end example
4941 @end itemize
4942
4943 @section colorchannelmixer
4944
4945 Adjust video input frames by re-mixing color channels.
4946
4947 This filter modifies a color channel by adding the values associated to
4948 the other channels of the same pixels. For example if the value to
4949 modify is red, the output value will be:
4950 @example
4951 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4952 @end example
4953
4954 The filter accepts the following options:
4955
4956 @table @option
4957 @item rr
4958 @item rg
4959 @item rb
4960 @item ra
4961 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4962 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4963
4964 @item gr
4965 @item gg
4966 @item gb
4967 @item ga
4968 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4969 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4970
4971 @item br
4972 @item bg
4973 @item bb
4974 @item ba
4975 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4976 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4977
4978 @item ar
4979 @item ag
4980 @item ab
4981 @item aa
4982 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4983 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4984
4985 Allowed ranges for options are @code{[-2.0, 2.0]}.
4986 @end table
4987
4988 @subsection Examples
4989
4990 @itemize
4991 @item
4992 Convert source to grayscale:
4993 @example
4994 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4995 @end example
4996 @item
4997 Simulate sepia tones:
4998 @example
4999 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5000 @end example
5001 @end itemize
5002
5003 @section colormatrix
5004
5005 Convert color matrix.
5006
5007 The filter accepts the following options:
5008
5009 @table @option
5010 @item src
5011 @item dst
5012 Specify the source and destination color matrix. Both values must be
5013 specified.
5014
5015 The accepted values are:
5016 @table @samp
5017 @item bt709
5018 BT.709
5019
5020 @item bt601
5021 BT.601
5022
5023 @item smpte240m
5024 SMPTE-240M
5025
5026 @item fcc
5027 FCC
5028 @end table
5029 @end table
5030
5031 For example to convert from BT.601 to SMPTE-240M, use the command:
5032 @example
5033 colormatrix=bt601:smpte240m
5034 @end example
5035
5036 @section colorspace
5037
5038 Convert colorspace, transfer characteristics or color primaries.
5039
5040 The filter accepts the following options:
5041
5042 @table @option
5043 @item all
5044 Specify all color properties at once.
5045
5046 The accepted values are:
5047 @table @samp
5048 @item bt470m
5049 BT.470M
5050
5051 @item bt470bg
5052 BT.470BG
5053
5054 @item bt601-6-525
5055 BT.601-6 525
5056
5057 @item bt601-6-625
5058 BT.601-6 625
5059
5060 @item bt709
5061 BT.709
5062
5063 @item smpte170m
5064 SMPTE-170M
5065
5066 @item smpte240m
5067 SMPTE-240M
5068
5069 @item bt2020
5070 BT.2020
5071
5072 @end table
5073
5074 @item space
5075 Specify output colorspace.
5076
5077 The accepted values are:
5078 @table @samp
5079 @item bt709
5080 BT.709
5081
5082 @item fcc
5083 FCC
5084
5085 @item bt470bg
5086 BT.470BG or BT.601-6 625
5087
5088 @item smpte170m
5089 SMPTE-170M or BT.601-6 525
5090
5091 @item smpte240m
5092 SMPTE-240M
5093
5094 @item bt2020ncl
5095 BT.2020 with non-constant luminance
5096
5097 @end table
5098
5099 @item trc
5100 Specify output transfer characteristics.
5101
5102 The accepted values are:
5103 @table @samp
5104 @item bt709
5105 BT.709
5106
5107 @item gamma22
5108 Constant gamma of 2.2
5109
5110 @item gamma28
5111 Constant gamma of 2.8
5112
5113 @item smpte170m
5114 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5115
5116 @item smpte240m
5117 SMPTE-240M
5118
5119 @item bt2020-10
5120 BT.2020 for 10-bits content
5121
5122 @item bt2020-12
5123 BT.2020 for 12-bits content
5124
5125 @end table
5126
5127 @item prm
5128 Specify output color primaries.
5129
5130 The accepted values are:
5131 @table @samp
5132 @item bt709
5133 BT.709
5134
5135 @item bt470m
5136 BT.470M
5137
5138 @item bt470bg
5139 BT.470BG or BT.601-6 625
5140
5141 @item smpte170m
5142 SMPTE-170M or BT.601-6 525
5143
5144 @item smpte240m
5145 SMPTE-240M
5146
5147 @item bt2020
5148 BT.2020
5149
5150 @end table
5151
5152 @item rng
5153 Specify output color range.
5154
5155 The accepted values are:
5156 @table @samp
5157 @item mpeg
5158 MPEG (restricted) range
5159
5160 @item jpeg
5161 JPEG (full) range
5162
5163 @end table
5164
5165 @item format
5166 Specify output color format.
5167
5168 The accepted values are:
5169 @table @samp
5170 @item yuv420p
5171 YUV 4:2:0 planar 8-bits
5172
5173 @item yuv420p10
5174 YUV 4:2:0 planar 10-bits
5175
5176 @item yuv420p12
5177 YUV 4:2:0 planar 12-bits
5178
5179 @item yuv422p
5180 YUV 4:2:2 planar 8-bits
5181
5182 @item yuv422p10
5183 YUV 4:2:2 planar 10-bits
5184
5185 @item yuv422p12
5186 YUV 4:2:2 planar 12-bits
5187
5188 @item yuv444p
5189 YUV 4:4:4 planar 8-bits
5190
5191 @item yuv444p10
5192 YUV 4:4:4 planar 10-bits
5193
5194 @item yuv444p12
5195 YUV 4:4:4 planar 12-bits
5196
5197 @end table
5198
5199 @item fast
5200 Do a fast conversion, which skips gamma/primary correction. This will take
5201 significantly less CPU, but will be mathematically incorrect. To get output
5202 compatible with that produced by the colormatrix filter, use fast=1.
5203
5204 @item dither
5205 Specify dithering mode.
5206
5207 The accepted values are:
5208 @table @samp
5209 @item none
5210 No dithering
5211
5212 @item fsb
5213 Floyd-Steinberg dithering
5214 @end table
5215
5216 @item wpadapt
5217 Whitepoint adaptation mode.
5218
5219 The accepted values are:
5220 @table @samp
5221 @item bradford
5222 Bradford whitepoint adaptation
5223
5224 @item vonkries
5225 von Kries whitepoint adaptation
5226
5227 @item identity
5228 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5229 @end table
5230
5231 @end table
5232
5233 The filter converts the transfer characteristics, color space and color
5234 primaries to the specified user values. The output value, if not specified,
5235 is set to a default value based on the "all" property. If that property is
5236 also not specified, the filter will log an error. The output color range and
5237 format default to the same value as the input color range and format. The
5238 input transfer characteristics, color space, color primaries and color range
5239 should be set on the input data. If any of these are missing, the filter will
5240 log an error and no conversion will take place.
5241
5242 For example to convert the input to SMPTE-240M, use the command:
5243 @example
5244 colorspace=smpte240m
5245 @end example
5246
5247 @section convolution
5248
5249 Apply convolution 3x3 or 5x5 filter.
5250
5251 The filter accepts the following options:
5252
5253 @table @option
5254 @item 0m
5255 @item 1m
5256 @item 2m
5257 @item 3m
5258 Set matrix for each plane.
5259 Matrix is sequence of 9 or 25 signed integers.
5260
5261 @item 0rdiv
5262 @item 1rdiv
5263 @item 2rdiv
5264 @item 3rdiv
5265 Set multiplier for calculated value for each plane.
5266
5267 @item 0bias
5268 @item 1bias
5269 @item 2bias
5270 @item 3bias
5271 Set bias for each plane. This value is added to the result of the multiplication.
5272 Useful for making the overall image brighter or darker. Default is 0.0.
5273 @end table
5274
5275 @subsection Examples
5276
5277 @itemize
5278 @item
5279 Apply sharpen:
5280 @example
5281 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"
5282 @end example
5283
5284 @item
5285 Apply blur:
5286 @example
5287 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"
5288 @end example
5289
5290 @item
5291 Apply edge enhance:
5292 @example
5293 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"
5294 @end example
5295
5296 @item
5297 Apply edge detect:
5298 @example
5299 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"
5300 @end example
5301
5302 @item
5303 Apply emboss:
5304 @example
5305 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"
5306 @end example
5307 @end itemize
5308
5309 @section copy
5310
5311 Copy the input source unchanged to the output. This is mainly useful for
5312 testing purposes.
5313
5314 @anchor{coreimage}
5315 @section coreimage
5316 Video filtering on GPU using Apple's CoreImage API on OSX.
5317
5318 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5319 processed by video hardware. However, software-based OpenGL implementations
5320 exist which means there is no guarantee for hardware processing. It depends on
5321 the respective OSX.
5322
5323 There are many filters and image generators provided by Apple that come with a
5324 large variety of options. The filter has to be referenced by its name along
5325 with its options.
5326
5327 The coreimage filter accepts the following options:
5328 @table @option
5329 @item list_filters
5330 List all available filters and generators along with all their respective
5331 options as well as possible minimum and maximum values along with the default
5332 values.
5333 @example
5334 list_filters=true
5335 @end example
5336
5337 @item filter
5338 Specify all filters by their respective name and options.
5339 Use @var{list_filters} to determine all valid filter names and options.
5340 Numerical options are specified by a float value and are automatically clamped
5341 to their respective value range.  Vector and color options have to be specified
5342 by a list of space separated float values. Character escaping has to be done.
5343 A special option name @code{default} is available to use default options for a
5344 filter.
5345
5346 It is required to specify either @code{default} or at least one of the filter options.
5347 All omitted options are used with their default values.
5348 The syntax of the filter string is as follows:
5349 @example
5350 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5351 @end example
5352
5353 @item output_rect
5354 Specify a rectangle where the output of the filter chain is copied into the
5355 input image. It is given by a list of space separated float values:
5356 @example
5357 output_rect=x\ y\ width\ height
5358 @end example
5359 If not given, the output rectangle equals the dimensions of the input image.
5360 The output rectangle is automatically cropped at the borders of the input
5361 image. Negative values are valid for each component.
5362 @example
5363 output_rect=25\ 25\ 100\ 100
5364 @end example
5365 @end table
5366
5367 Several filters can be chained for successive processing without GPU-HOST
5368 transfers allowing for fast processing of complex filter chains.
5369 Currently, only filters with zero (generators) or exactly one (filters) input
5370 image and one output image are supported. Also, transition filters are not yet
5371 usable as intended.
5372
5373 Some filters generate output images with additional padding depending on the
5374 respective filter kernel. The padding is automatically removed to ensure the
5375 filter output has the same size as the input image.
5376
5377 For image generators, the size of the output image is determined by the
5378 previous output image of the filter chain or the input image of the whole
5379 filterchain, respectively. The generators do not use the pixel information of
5380 this image to generate their output. However, the generated output is
5381 blended onto this image, resulting in partial or complete coverage of the
5382 output image.
5383
5384 The @ref{coreimagesrc} video source can be used for generating input images
5385 which are directly fed into the filter chain. By using it, providing input
5386 images by another video source or an input video is not required.
5387
5388 @subsection Examples
5389
5390 @itemize
5391
5392 @item
5393 List all filters available:
5394 @example
5395 coreimage=list_filters=true
5396 @end example
5397
5398 @item
5399 Use the CIBoxBlur filter with default options to blur an image:
5400 @example
5401 coreimage=filter=CIBoxBlur@@default
5402 @end example
5403
5404 @item
5405 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5406 its center at 100x100 and a radius of 50 pixels:
5407 @example
5408 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5409 @end example
5410
5411 @item
5412 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5413 given as complete and escaped command-line for Apple's standard bash shell:
5414 @example
5415 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5416 @end example
5417 @end itemize
5418
5419 @section crop
5420
5421 Crop the input video to given dimensions.
5422
5423 It accepts the following parameters:
5424
5425 @table @option
5426 @item w, out_w
5427 The width of the output video. It defaults to @code{iw}.
5428 This expression is evaluated only once during the filter
5429 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5430
5431 @item h, out_h
5432 The height of the output video. It defaults to @code{ih}.
5433 This expression is evaluated only once during the filter
5434 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5435
5436 @item x
5437 The horizontal position, in the input video, of the left edge of the output
5438 video. It defaults to @code{(in_w-out_w)/2}.
5439 This expression is evaluated per-frame.
5440
5441 @item y
5442 The vertical position, in the input video, of the top edge of the output video.
5443 It defaults to @code{(in_h-out_h)/2}.
5444 This expression is evaluated per-frame.
5445
5446 @item keep_aspect
5447 If set to 1 will force the output display aspect ratio
5448 to be the same of the input, by changing the output sample aspect
5449 ratio. It defaults to 0.
5450 @end table
5451
5452 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5453 expressions containing the following constants:
5454
5455 @table @option
5456 @item x
5457 @item y
5458 The computed values for @var{x} and @var{y}. They are evaluated for
5459 each new frame.
5460
5461 @item in_w
5462 @item in_h
5463 The input width and height.
5464
5465 @item iw
5466 @item ih
5467 These are the same as @var{in_w} and @var{in_h}.
5468
5469 @item out_w
5470 @item out_h
5471 The output (cropped) width and height.
5472
5473 @item ow
5474 @item oh
5475 These are the same as @var{out_w} and @var{out_h}.
5476
5477 @item a
5478 same as @var{iw} / @var{ih}
5479
5480 @item sar
5481 input sample aspect ratio
5482
5483 @item dar
5484 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5485
5486 @item hsub
5487 @item vsub
5488 horizontal and vertical chroma subsample values. For example for the
5489 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5490
5491 @item n
5492 The number of the input frame, starting from 0.
5493
5494 @item pos
5495 the position in the file of the input frame, NAN if unknown
5496
5497 @item t
5498 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5499
5500 @end table
5501
5502 The expression for @var{out_w} may depend on the value of @var{out_h},
5503 and the expression for @var{out_h} may depend on @var{out_w}, but they
5504 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5505 evaluated after @var{out_w} and @var{out_h}.
5506
5507 The @var{x} and @var{y} parameters specify the expressions for the
5508 position of the top-left corner of the output (non-cropped) area. They
5509 are evaluated for each frame. If the evaluated value is not valid, it
5510 is approximated to the nearest valid value.
5511
5512 The expression for @var{x} may depend on @var{y}, and the expression
5513 for @var{y} may depend on @var{x}.
5514
5515 @subsection Examples
5516
5517 @itemize
5518 @item
5519 Crop area with size 100x100 at position (12,34).
5520 @example
5521 crop=100:100:12:34
5522 @end example
5523
5524 Using named options, the example above becomes:
5525 @example
5526 crop=w=100:h=100:x=12:y=34
5527 @end example
5528
5529 @item
5530 Crop the central input area with size 100x100:
5531 @example
5532 crop=100:100
5533 @end example
5534
5535 @item
5536 Crop the central input area with size 2/3 of the input video:
5537 @example
5538 crop=2/3*in_w:2/3*in_h
5539 @end example
5540
5541 @item
5542 Crop the input video central square:
5543 @example
5544 crop=out_w=in_h
5545 crop=in_h
5546 @end example
5547
5548 @item
5549 Delimit the rectangle with the top-left corner placed at position
5550 100:100 and the right-bottom corner corresponding to the right-bottom
5551 corner of the input image.
5552 @example
5553 crop=in_w-100:in_h-100:100:100
5554 @end example
5555
5556 @item
5557 Crop 10 pixels from the left and right borders, and 20 pixels from
5558 the top and bottom borders
5559 @example
5560 crop=in_w-2*10:in_h-2*20
5561 @end example
5562
5563 @item
5564 Keep only the bottom right quarter of the input image:
5565 @example
5566 crop=in_w/2:in_h/2:in_w/2:in_h/2
5567 @end example
5568
5569 @item
5570 Crop height for getting Greek harmony:
5571 @example
5572 crop=in_w:1/PHI*in_w
5573 @end example
5574
5575 @item
5576 Apply trembling effect:
5577 @example
5578 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)
5579 @end example
5580
5581 @item
5582 Apply erratic camera effect depending on timestamp:
5583 @example
5584 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)"
5585 @end example
5586
5587 @item
5588 Set x depending on the value of y:
5589 @example
5590 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5591 @end example
5592 @end itemize
5593
5594 @subsection Commands
5595
5596 This filter supports the following commands:
5597 @table @option
5598 @item w, out_w
5599 @item h, out_h
5600 @item x
5601 @item y
5602 Set width/height of the output video and the horizontal/vertical position
5603 in the input video.
5604 The command accepts the same syntax of the corresponding option.
5605
5606 If the specified expression is not valid, it is kept at its current
5607 value.
5608 @end table
5609
5610 @section cropdetect
5611
5612 Auto-detect the crop size.
5613
5614 It calculates the necessary cropping parameters and prints the
5615 recommended parameters via the logging system. The detected dimensions
5616 correspond to the non-black area of the input video.
5617
5618 It accepts the following parameters:
5619
5620 @table @option
5621
5622 @item limit
5623 Set higher black value threshold, which can be optionally specified
5624 from nothing (0) to everything (255 for 8bit based formats). An intensity
5625 value greater to the set value is considered non-black. It defaults to 24.
5626 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5627 on the bitdepth of the pixel format.
5628
5629 @item round
5630 The value which the width/height should be divisible by. It defaults to
5631 16. The offset is automatically adjusted to center the video. Use 2 to
5632 get only even dimensions (needed for 4:2:2 video). 16 is best when
5633 encoding to most video codecs.
5634
5635 @item reset_count, reset
5636 Set the counter that determines after how many frames cropdetect will
5637 reset the previously detected largest video area and start over to
5638 detect the current optimal crop area. Default value is 0.
5639
5640 This can be useful when channel logos distort the video area. 0
5641 indicates 'never reset', and returns the largest area encountered during
5642 playback.
5643 @end table
5644
5645 @anchor{curves}
5646 @section curves
5647
5648 Apply color adjustments using curves.
5649
5650 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5651 component (red, green and blue) has its values defined by @var{N} key points
5652 tied from each other using a smooth curve. The x-axis represents the pixel
5653 values from the input frame, and the y-axis the new pixel values to be set for
5654 the output frame.
5655
5656 By default, a component curve is defined by the two points @var{(0;0)} and
5657 @var{(1;1)}. This creates a straight line where each original pixel value is
5658 "adjusted" to its own value, which means no change to the image.
5659
5660 The filter allows you to redefine these two points and add some more. A new
5661 curve (using a natural cubic spline interpolation) will be define to pass
5662 smoothly through all these new coordinates. The new defined points needs to be
5663 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5664 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5665 the vector spaces, the values will be clipped accordingly.
5666
5667 If there is no key point defined in @code{x=0}, the filter will automatically
5668 insert a @var{(0;0)} point. In the same way, if there is no key point defined
5669 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
5670
5671 The filter accepts the following options:
5672
5673 @table @option
5674 @item preset
5675 Select one of the available color presets. This option can be used in addition
5676 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5677 options takes priority on the preset values.
5678 Available presets are:
5679 @table @samp
5680 @item none
5681 @item color_negative
5682 @item cross_process
5683 @item darker
5684 @item increase_contrast
5685 @item lighter
5686 @item linear_contrast
5687 @item medium_contrast
5688 @item negative
5689 @item strong_contrast
5690 @item vintage
5691 @end table
5692 Default is @code{none}.
5693 @item master, m
5694 Set the master key points. These points will define a second pass mapping. It
5695 is sometimes called a "luminance" or "value" mapping. It can be used with
5696 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5697 post-processing LUT.
5698 @item red, r
5699 Set the key points for the red component.
5700 @item green, g
5701 Set the key points for the green component.
5702 @item blue, b
5703 Set the key points for the blue component.
5704 @item all
5705 Set the key points for all components (not including master).
5706 Can be used in addition to the other key points component
5707 options. In this case, the unset component(s) will fallback on this
5708 @option{all} setting.
5709 @item psfile
5710 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5711 @end table
5712
5713 To avoid some filtergraph syntax conflicts, each key points list need to be
5714 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5715
5716 @subsection Examples
5717
5718 @itemize
5719 @item
5720 Increase slightly the middle level of blue:
5721 @example
5722 curves=blue='0.5/0.58'
5723 @end example
5724
5725 @item
5726 Vintage effect:
5727 @example
5728 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
5729 @end example
5730 Here we obtain the following coordinates for each components:
5731 @table @var
5732 @item red
5733 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5734 @item green
5735 @code{(0;0) (0.50;0.48) (1;1)}
5736 @item blue
5737 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5738 @end table
5739
5740 @item
5741 The previous example can also be achieved with the associated built-in preset:
5742 @example
5743 curves=preset=vintage
5744 @end example
5745
5746 @item
5747 Or simply:
5748 @example
5749 curves=vintage
5750 @end example
5751
5752 @item
5753 Use a Photoshop preset and redefine the points of the green component:
5754 @example
5755 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
5756 @end example
5757 @end itemize
5758
5759 @section datascope
5760
5761 Video data analysis filter.
5762
5763 This filter shows hexadecimal pixel values of part of video.
5764
5765 The filter accepts the following options:
5766
5767 @table @option
5768 @item size, s
5769 Set output video size.
5770
5771 @item x
5772 Set x offset from where to pick pixels.
5773
5774 @item y
5775 Set y offset from where to pick pixels.
5776
5777 @item mode
5778 Set scope mode, can be one of the following:
5779 @table @samp
5780 @item mono
5781 Draw hexadecimal pixel values with white color on black background.
5782
5783 @item color
5784 Draw hexadecimal pixel values with input video pixel color on black
5785 background.
5786
5787 @item color2
5788 Draw hexadecimal pixel values on color background picked from input video,
5789 the text color is picked in such way so its always visible.
5790 @end table
5791
5792 @item axis
5793 Draw rows and columns numbers on left and top of video.
5794 @end table
5795
5796 @section dctdnoiz
5797
5798 Denoise frames using 2D DCT (frequency domain filtering).
5799
5800 This filter is not designed for real time.
5801
5802 The filter accepts the following options:
5803
5804 @table @option
5805 @item sigma, s
5806 Set the noise sigma constant.
5807
5808 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5809 coefficient (absolute value) below this threshold with be dropped.
5810
5811 If you need a more advanced filtering, see @option{expr}.
5812
5813 Default is @code{0}.
5814
5815 @item overlap
5816 Set number overlapping pixels for each block. Since the filter can be slow, you
5817 may want to reduce this value, at the cost of a less effective filter and the
5818 risk of various artefacts.
5819
5820 If the overlapping value doesn't permit processing the whole input width or
5821 height, a warning will be displayed and according borders won't be denoised.
5822
5823 Default value is @var{blocksize}-1, which is the best possible setting.
5824
5825 @item expr, e
5826 Set the coefficient factor expression.
5827
5828 For each coefficient of a DCT block, this expression will be evaluated as a
5829 multiplier value for the coefficient.
5830
5831 If this is option is set, the @option{sigma} option will be ignored.
5832
5833 The absolute value of the coefficient can be accessed through the @var{c}
5834 variable.
5835
5836 @item n
5837 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5838 @var{blocksize}, which is the width and height of the processed blocks.
5839
5840 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5841 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5842 on the speed processing. Also, a larger block size does not necessarily means a
5843 better de-noising.
5844 @end table
5845
5846 @subsection Examples
5847
5848 Apply a denoise with a @option{sigma} of @code{4.5}:
5849 @example
5850 dctdnoiz=4.5
5851 @end example
5852
5853 The same operation can be achieved using the expression system:
5854 @example
5855 dctdnoiz=e='gte(c, 4.5*3)'
5856 @end example
5857
5858 Violent denoise using a block size of @code{16x16}:
5859 @example
5860 dctdnoiz=15:n=4
5861 @end example
5862
5863 @section deband
5864
5865 Remove banding artifacts from input video.
5866 It works by replacing banded pixels with average value of referenced pixels.
5867
5868 The filter accepts the following options:
5869
5870 @table @option
5871 @item 1thr
5872 @item 2thr
5873 @item 3thr
5874 @item 4thr
5875 Set banding detection threshold for each plane. Default is 0.02.
5876 Valid range is 0.00003 to 0.5.
5877 If difference between current pixel and reference pixel is less than threshold,
5878 it will be considered as banded.
5879
5880 @item range, r
5881 Banding detection range in pixels. Default is 16. If positive, random number
5882 in range 0 to set value will be used. If negative, exact absolute value
5883 will be used.
5884 The range defines square of four pixels around current pixel.
5885
5886 @item direction, d
5887 Set direction in radians from which four pixel will be compared. If positive,
5888 random direction from 0 to set direction will be picked. If negative, exact of
5889 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5890 will pick only pixels on same row and -PI/2 will pick only pixels on same
5891 column.
5892
5893 @item blur
5894 If enabled, current pixel is compared with average value of all four
5895 surrounding pixels. The default is enabled. If disabled current pixel is
5896 compared with all four surrounding pixels. The pixel is considered banded
5897 if only all four differences with surrounding pixels are less than threshold.
5898 @end table
5899
5900 @anchor{decimate}
5901 @section decimate
5902
5903 Drop duplicated frames at regular intervals.
5904
5905 The filter accepts the following options:
5906
5907 @table @option
5908 @item cycle
5909 Set the number of frames from which one will be dropped. Setting this to
5910 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5911 Default is @code{5}.
5912
5913 @item dupthresh
5914 Set the threshold for duplicate detection. If the difference metric for a frame
5915 is less than or equal to this value, then it is declared as duplicate. Default
5916 is @code{1.1}
5917
5918 @item scthresh
5919 Set scene change threshold. Default is @code{15}.
5920
5921 @item blockx
5922 @item blocky
5923 Set the size of the x and y-axis blocks used during metric calculations.
5924 Larger blocks give better noise suppression, but also give worse detection of
5925 small movements. Must be a power of two. Default is @code{32}.
5926
5927 @item ppsrc
5928 Mark main input as a pre-processed input and activate clean source input
5929 stream. This allows the input to be pre-processed with various filters to help
5930 the metrics calculation while keeping the frame selection lossless. When set to
5931 @code{1}, the first stream is for the pre-processed input, and the second
5932 stream is the clean source from where the kept frames are chosen. Default is
5933 @code{0}.
5934
5935 @item chroma
5936 Set whether or not chroma is considered in the metric calculations. Default is
5937 @code{1}.
5938 @end table
5939
5940 @section deflate
5941
5942 Apply deflate effect to the video.
5943
5944 This filter replaces the pixel by the local(3x3) average by taking into account
5945 only values lower than the pixel.
5946
5947 It accepts the following options:
5948
5949 @table @option
5950 @item threshold0
5951 @item threshold1
5952 @item threshold2
5953 @item threshold3
5954 Limit the maximum change for each plane, default is 65535.
5955 If 0, plane will remain unchanged.
5956 @end table
5957
5958 @section dejudder
5959
5960 Remove judder produced by partially interlaced telecined content.
5961
5962 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5963 source was partially telecined content then the output of @code{pullup,dejudder}
5964 will have a variable frame rate. May change the recorded frame rate of the
5965 container. Aside from that change, this filter will not affect constant frame
5966 rate video.
5967
5968 The option available in this filter is:
5969 @table @option
5970
5971 @item cycle
5972 Specify the length of the window over which the judder repeats.
5973
5974 Accepts any integer greater than 1. Useful values are:
5975 @table @samp
5976
5977 @item 4
5978 If the original was telecined from 24 to 30 fps (Film to NTSC).
5979
5980 @item 5
5981 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5982
5983 @item 20
5984 If a mixture of the two.
5985 @end table
5986
5987 The default is @samp{4}.
5988 @end table
5989
5990 @section delogo
5991
5992 Suppress a TV station logo by a simple interpolation of the surrounding
5993 pixels. Just set a rectangle covering the logo and watch it disappear
5994 (and sometimes something even uglier appear - your mileage may vary).
5995
5996 It accepts the following parameters:
5997 @table @option
5998
5999 @item x
6000 @item y
6001 Specify the top left corner coordinates of the logo. They must be
6002 specified.
6003
6004 @item w
6005 @item h
6006 Specify the width and height of the logo to clear. They must be
6007 specified.
6008
6009 @item band, t
6010 Specify the thickness of the fuzzy edge of the rectangle (added to
6011 @var{w} and @var{h}). The default value is 1. This option is
6012 deprecated, setting higher values should no longer be necessary and
6013 is not recommended.
6014
6015 @item show
6016 When set to 1, a green rectangle is drawn on the screen to simplify
6017 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6018 The default value is 0.
6019
6020 The rectangle is drawn on the outermost pixels which will be (partly)
6021 replaced with interpolated values. The values of the next pixels
6022 immediately outside this rectangle in each direction will be used to
6023 compute the interpolated pixel values inside the rectangle.
6024
6025 @end table
6026
6027 @subsection Examples
6028
6029 @itemize
6030 @item
6031 Set a rectangle covering the area with top left corner coordinates 0,0
6032 and size 100x77, and a band of size 10:
6033 @example
6034 delogo=x=0:y=0:w=100:h=77:band=10
6035 @end example
6036
6037 @end itemize
6038
6039 @section deshake
6040
6041 Attempt to fix small changes in horizontal and/or vertical shift. This
6042 filter helps remove camera shake from hand-holding a camera, bumping a
6043 tripod, moving on a vehicle, etc.
6044
6045 The filter accepts the following options:
6046
6047 @table @option
6048
6049 @item x
6050 @item y
6051 @item w
6052 @item h
6053 Specify a rectangular area where to limit the search for motion
6054 vectors.
6055 If desired the search for motion vectors can be limited to a
6056 rectangular area of the frame defined by its top left corner, width
6057 and height. These parameters have the same meaning as the drawbox
6058 filter which can be used to visualise the position of the bounding
6059 box.
6060
6061 This is useful when simultaneous movement of subjects within the frame
6062 might be confused for camera motion by the motion vector search.
6063
6064 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6065 then the full frame is used. This allows later options to be set
6066 without specifying the bounding box for the motion vector search.
6067
6068 Default - search the whole frame.
6069
6070 @item rx
6071 @item ry
6072 Specify the maximum extent of movement in x and y directions in the
6073 range 0-64 pixels. Default 16.
6074
6075 @item edge
6076 Specify how to generate pixels to fill blanks at the edge of the
6077 frame. Available values are:
6078 @table @samp
6079 @item blank, 0
6080 Fill zeroes at blank locations
6081 @item original, 1
6082 Original image at blank locations
6083 @item clamp, 2
6084 Extruded edge value at blank locations
6085 @item mirror, 3
6086 Mirrored edge at blank locations
6087 @end table
6088 Default value is @samp{mirror}.
6089
6090 @item blocksize
6091 Specify the blocksize to use for motion search. Range 4-128 pixels,
6092 default 8.
6093
6094 @item contrast
6095 Specify the contrast threshold for blocks. Only blocks with more than
6096 the specified contrast (difference between darkest and lightest
6097 pixels) will be considered. Range 1-255, default 125.
6098
6099 @item search
6100 Specify the search strategy. Available values are:
6101 @table @samp
6102 @item exhaustive, 0
6103 Set exhaustive search
6104 @item less, 1
6105 Set less exhaustive search.
6106 @end table
6107 Default value is @samp{exhaustive}.
6108
6109 @item filename
6110 If set then a detailed log of the motion search is written to the
6111 specified file.
6112
6113 @item opencl
6114 If set to 1, specify using OpenCL capabilities, only available if
6115 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6116
6117 @end table
6118
6119 @section detelecine
6120
6121 Apply an exact inverse of the telecine operation. It requires a predefined
6122 pattern specified using the pattern option which must be the same as that passed
6123 to the telecine filter.
6124
6125 This filter accepts the following options:
6126
6127 @table @option
6128 @item first_field
6129 @table @samp
6130 @item top, t
6131 top field first
6132 @item bottom, b
6133 bottom field first
6134 The default value is @code{top}.
6135 @end table
6136
6137 @item pattern
6138 A string of numbers representing the pulldown pattern you wish to apply.
6139 The default value is @code{23}.
6140
6141 @item start_frame
6142 A number representing position of the first frame with respect to the telecine
6143 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6144 @end table
6145
6146 @section dilation
6147
6148 Apply dilation effect to the video.
6149
6150 This filter replaces the pixel by the local(3x3) maximum.
6151
6152 It accepts the following options:
6153
6154 @table @option
6155 @item threshold0
6156 @item threshold1
6157 @item threshold2
6158 @item threshold3
6159 Limit the maximum change for each plane, default is 65535.
6160 If 0, plane will remain unchanged.
6161
6162 @item coordinates
6163 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6164 pixels are used.
6165
6166 Flags to local 3x3 coordinates maps like this:
6167
6168     1 2 3
6169     4   5
6170     6 7 8
6171 @end table
6172
6173 @section displace
6174
6175 Displace pixels as indicated by second and third input stream.
6176
6177 It takes three input streams and outputs one stream, the first input is the
6178 source, and second and third input are displacement maps.
6179
6180 The second input specifies how much to displace pixels along the
6181 x-axis, while the third input specifies how much to displace pixels
6182 along the y-axis.
6183 If one of displacement map streams terminates, last frame from that
6184 displacement map will be used.
6185
6186 Note that once generated, displacements maps can be reused over and over again.
6187
6188 A description of the accepted options follows.
6189
6190 @table @option
6191 @item edge
6192 Set displace behavior for pixels that are out of range.
6193
6194 Available values are:
6195 @table @samp
6196 @item blank
6197 Missing pixels are replaced by black pixels.
6198
6199 @item smear
6200 Adjacent pixels will spread out to replace missing pixels.
6201
6202 @item wrap
6203 Out of range pixels are wrapped so they point to pixels of other side.
6204 @end table
6205 Default is @samp{smear}.
6206
6207 @end table
6208
6209 @subsection Examples
6210
6211 @itemize
6212 @item
6213 Add ripple effect to rgb input of video size hd720:
6214 @example
6215 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
6216 @end example
6217
6218 @item
6219 Add wave effect to rgb input of video size hd720:
6220 @example
6221 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
6222 @end example
6223 @end itemize
6224
6225 @section drawbox
6226
6227 Draw a colored box on the input image.
6228
6229 It accepts the following parameters:
6230
6231 @table @option
6232 @item x
6233 @item y
6234 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6235
6236 @item width, w
6237 @item height, h
6238 The expressions which specify the width and height of the box; if 0 they are interpreted as
6239 the input width and height. It defaults to 0.
6240
6241 @item color, c
6242 Specify the color of the box to write. For the general syntax of this option,
6243 check the "Color" section in the ffmpeg-utils manual. If the special
6244 value @code{invert} is used, the box edge color is the same as the
6245 video with inverted luma.
6246
6247 @item thickness, t
6248 The expression which sets the thickness of the box edge. Default value is @code{3}.
6249
6250 See below for the list of accepted constants.
6251 @end table
6252
6253 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6254 following constants:
6255
6256 @table @option
6257 @item dar
6258 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6259
6260 @item hsub
6261 @item vsub
6262 horizontal and vertical chroma subsample values. For example for the
6263 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6264
6265 @item in_h, ih
6266 @item in_w, iw
6267 The input width and height.
6268
6269 @item sar
6270 The input sample aspect ratio.
6271
6272 @item x
6273 @item y
6274 The x and y offset coordinates where the box is drawn.
6275
6276 @item w
6277 @item h
6278 The width and height of the drawn box.
6279
6280 @item t
6281 The thickness of the drawn box.
6282
6283 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6284 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6285
6286 @end table
6287
6288 @subsection Examples
6289
6290 @itemize
6291 @item
6292 Draw a black box around the edge of the input image:
6293 @example
6294 drawbox
6295 @end example
6296
6297 @item
6298 Draw a box with color red and an opacity of 50%:
6299 @example
6300 drawbox=10:20:200:60:red@@0.5
6301 @end example
6302
6303 The previous example can be specified as:
6304 @example
6305 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6306 @end example
6307
6308 @item
6309 Fill the box with pink color:
6310 @example
6311 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6312 @end example
6313
6314 @item
6315 Draw a 2-pixel red 2.40:1 mask:
6316 @example
6317 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
6318 @end example
6319 @end itemize
6320
6321 @section drawgraph, adrawgraph
6322
6323 Draw a graph using input video or audio metadata.
6324
6325 It accepts the following parameters:
6326
6327 @table @option
6328 @item m1
6329 Set 1st frame metadata key from which metadata values will be used to draw a graph.
6330
6331 @item fg1
6332 Set 1st foreground color expression.
6333
6334 @item m2
6335 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
6336
6337 @item fg2
6338 Set 2nd foreground color expression.
6339
6340 @item m3
6341 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
6342
6343 @item fg3
6344 Set 3rd foreground color expression.
6345
6346 @item m4
6347 Set 4th frame metadata key from which metadata values will be used to draw a graph.
6348
6349 @item fg4
6350 Set 4th foreground color expression.
6351
6352 @item min
6353 Set minimal value of metadata value.
6354
6355 @item max
6356 Set maximal value of metadata value.
6357
6358 @item bg
6359 Set graph background color. Default is white.
6360
6361 @item mode
6362 Set graph mode.
6363
6364 Available values for mode is:
6365 @table @samp
6366 @item bar
6367 @item dot
6368 @item line
6369 @end table
6370
6371 Default is @code{line}.
6372
6373 @item slide
6374 Set slide mode.
6375
6376 Available values for slide is:
6377 @table @samp
6378 @item frame
6379 Draw new frame when right border is reached.
6380
6381 @item replace
6382 Replace old columns with new ones.
6383
6384 @item scroll
6385 Scroll from right to left.
6386
6387 @item rscroll
6388 Scroll from left to right.
6389 @end table
6390
6391 Default is @code{frame}.
6392
6393 @item size
6394 Set size of graph video. For the syntax of this option, check the
6395 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
6396 The default value is @code{900x256}.
6397
6398 The foreground color expressions can use the following variables:
6399 @table @option
6400 @item MIN
6401 Minimal value of metadata value.
6402
6403 @item MAX
6404 Maximal value of metadata value.
6405
6406 @item VAL
6407 Current metadata key value.
6408 @end table
6409
6410 The color is defined as 0xAABBGGRR.
6411 @end table
6412
6413 Example using metadata from @ref{signalstats} filter:
6414 @example
6415 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
6416 @end example
6417
6418 Example using metadata from @ref{ebur128} filter:
6419 @example
6420 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
6421 @end example
6422
6423 @section drawgrid
6424
6425 Draw a grid on the input image.
6426
6427 It accepts the following parameters:
6428
6429 @table @option
6430 @item x
6431 @item y
6432 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6433
6434 @item width, w
6435 @item height, h
6436 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6437 input width and height, respectively, minus @code{thickness}, so image gets
6438 framed. Default to 0.
6439
6440 @item color, c
6441 Specify the color of the grid. For the general syntax of this option,
6442 check the "Color" section in the ffmpeg-utils manual. If the special
6443 value @code{invert} is used, the grid color is the same as the
6444 video with inverted luma.
6445
6446 @item thickness, t
6447 The expression which sets the thickness of the grid line. Default value is @code{1}.
6448
6449 See below for the list of accepted constants.
6450 @end table
6451
6452 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6453 following constants:
6454
6455 @table @option
6456 @item dar
6457 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6458
6459 @item hsub
6460 @item vsub
6461 horizontal and vertical chroma subsample values. For example for the
6462 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6463
6464 @item in_h, ih
6465 @item in_w, iw
6466 The input grid cell width and height.
6467
6468 @item sar
6469 The input sample aspect ratio.
6470
6471 @item x
6472 @item y
6473 The x and y coordinates of some point of grid intersection (meant to configure offset).
6474
6475 @item w
6476 @item h
6477 The width and height of the drawn cell.
6478
6479 @item t
6480 The thickness of the drawn cell.
6481
6482 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6483 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6484
6485 @end table
6486
6487 @subsection Examples
6488
6489 @itemize
6490 @item
6491 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6492 @example
6493 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6494 @end example
6495
6496 @item
6497 Draw a white 3x3 grid with an opacity of 50%:
6498 @example
6499 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6500 @end example
6501 @end itemize
6502
6503 @anchor{drawtext}
6504 @section drawtext
6505
6506 Draw a text string or text from a specified file on top of a video, using the
6507 libfreetype library.
6508
6509 To enable compilation of this filter, you need to configure FFmpeg with
6510 @code{--enable-libfreetype}.
6511 To enable default font fallback and the @var{font} option you need to
6512 configure FFmpeg with @code{--enable-libfontconfig}.
6513 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6514 @code{--enable-libfribidi}.
6515
6516 @subsection Syntax
6517
6518 It accepts the following parameters:
6519
6520 @table @option
6521
6522 @item box
6523 Used to draw a box around text using the background color.
6524 The value must be either 1 (enable) or 0 (disable).
6525 The default value of @var{box} is 0.
6526
6527 @item boxborderw
6528 Set the width of the border to be drawn around the box using @var{boxcolor}.
6529 The default value of @var{boxborderw} is 0.
6530
6531 @item boxcolor
6532 The color to be used for drawing box around text. For the syntax of this
6533 option, check the "Color" section in the ffmpeg-utils manual.
6534
6535 The default value of @var{boxcolor} is "white".
6536
6537 @item borderw
6538 Set the width of the border to be drawn around the text using @var{bordercolor}.
6539 The default value of @var{borderw} is 0.
6540
6541 @item bordercolor
6542 Set the color to be used for drawing border around text. For the syntax of this
6543 option, check the "Color" section in the ffmpeg-utils manual.
6544
6545 The default value of @var{bordercolor} is "black".
6546
6547 @item expansion
6548 Select how the @var{text} is expanded. Can be either @code{none},
6549 @code{strftime} (deprecated) or
6550 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6551 below for details.
6552
6553 @item fix_bounds
6554 If true, check and fix text coords to avoid clipping.
6555
6556 @item fontcolor
6557 The color to be used for drawing fonts. For the syntax of this option, check
6558 the "Color" section in the ffmpeg-utils manual.
6559
6560 The default value of @var{fontcolor} is "black".
6561
6562 @item fontcolor_expr
6563 String which is expanded the same way as @var{text} to obtain dynamic
6564 @var{fontcolor} value. By default this option has empty value and is not
6565 processed. When this option is set, it overrides @var{fontcolor} option.
6566
6567 @item font
6568 The font family to be used for drawing text. By default Sans.
6569
6570 @item fontfile
6571 The font file to be used for drawing text. The path must be included.
6572 This parameter is mandatory if the fontconfig support is disabled.
6573
6574 @item draw
6575 This option does not exist, please see the timeline system
6576
6577 @item alpha
6578 Draw the text applying alpha blending. The value can
6579 be either a number between 0.0 and 1.0
6580 The expression accepts the same variables @var{x, y} do.
6581 The default value is 1.
6582 Please see fontcolor_expr
6583
6584 @item fontsize
6585 The font size to be used for drawing text.
6586 The default value of @var{fontsize} is 16.
6587
6588 @item text_shaping
6589 If set to 1, attempt to shape the text (for example, reverse the order of
6590 right-to-left text and join Arabic characters) before drawing it.
6591 Otherwise, just draw the text exactly as given.
6592 By default 1 (if supported).
6593
6594 @item ft_load_flags
6595 The flags to be used for loading the fonts.
6596
6597 The flags map the corresponding flags supported by libfreetype, and are
6598 a combination of the following values:
6599 @table @var
6600 @item default
6601 @item no_scale
6602 @item no_hinting
6603 @item render
6604 @item no_bitmap
6605 @item vertical_layout
6606 @item force_autohint
6607 @item crop_bitmap
6608 @item pedantic
6609 @item ignore_global_advance_width
6610 @item no_recurse
6611 @item ignore_transform
6612 @item monochrome
6613 @item linear_design
6614 @item no_autohint
6615 @end table
6616
6617 Default value is "default".
6618
6619 For more information consult the documentation for the FT_LOAD_*
6620 libfreetype flags.
6621
6622 @item shadowcolor
6623 The color to be used for drawing a shadow behind the drawn text. For the
6624 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6625
6626 The default value of @var{shadowcolor} is "black".
6627
6628 @item shadowx
6629 @item shadowy
6630 The x and y offsets for the text shadow position with respect to the
6631 position of the text. They can be either positive or negative
6632 values. The default value for both is "0".
6633
6634 @item start_number
6635 The starting frame number for the n/frame_num variable. The default value
6636 is "0".
6637
6638 @item tabsize
6639 The size in number of spaces to use for rendering the tab.
6640 Default value is 4.
6641
6642 @item timecode
6643 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6644 format. It can be used with or without text parameter. @var{timecode_rate}
6645 option must be specified.
6646
6647 @item timecode_rate, rate, r
6648 Set the timecode frame rate (timecode only).
6649
6650 @item text
6651 The text string to be drawn. The text must be a sequence of UTF-8
6652 encoded characters.
6653 This parameter is mandatory if no file is specified with the parameter
6654 @var{textfile}.
6655
6656 @item textfile
6657 A text file containing text to be drawn. The text must be a sequence
6658 of UTF-8 encoded characters.
6659
6660 This parameter is mandatory if no text string is specified with the
6661 parameter @var{text}.
6662
6663 If both @var{text} and @var{textfile} are specified, an error is thrown.
6664
6665 @item reload
6666 If set to 1, the @var{textfile} will be reloaded before each frame.
6667 Be sure to update it atomically, or it may be read partially, or even fail.
6668
6669 @item x
6670 @item y
6671 The expressions which specify the offsets where text will be drawn
6672 within the video frame. They are relative to the top/left border of the
6673 output image.
6674
6675 The default value of @var{x} and @var{y} is "0".
6676
6677 See below for the list of accepted constants and functions.
6678 @end table
6679
6680 The parameters for @var{x} and @var{y} are expressions containing the
6681 following constants and functions:
6682
6683 @table @option
6684 @item dar
6685 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6686
6687 @item hsub
6688 @item vsub
6689 horizontal and vertical chroma subsample values. For example for the
6690 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6691
6692 @item line_h, lh
6693 the height of each text line
6694
6695 @item main_h, h, H
6696 the input height
6697
6698 @item main_w, w, W
6699 the input width
6700
6701 @item max_glyph_a, ascent
6702 the maximum distance from the baseline to the highest/upper grid
6703 coordinate used to place a glyph outline point, for all the rendered
6704 glyphs.
6705 It is a positive value, due to the grid's orientation with the Y axis
6706 upwards.
6707
6708 @item max_glyph_d, descent
6709 the maximum distance from the baseline to the lowest grid coordinate
6710 used to place a glyph outline point, for all the rendered glyphs.
6711 This is a negative value, due to the grid's orientation, with the Y axis
6712 upwards.
6713
6714 @item max_glyph_h
6715 maximum glyph height, that is the maximum height for all the glyphs
6716 contained in the rendered text, it is equivalent to @var{ascent} -
6717 @var{descent}.
6718
6719 @item max_glyph_w
6720 maximum glyph width, that is the maximum width for all the glyphs
6721 contained in the rendered text
6722
6723 @item n
6724 the number of input frame, starting from 0
6725
6726 @item rand(min, max)
6727 return a random number included between @var{min} and @var{max}
6728
6729 @item sar
6730 The input sample aspect ratio.
6731
6732 @item t
6733 timestamp expressed in seconds, NAN if the input timestamp is unknown
6734
6735 @item text_h, th
6736 the height of the rendered text
6737
6738 @item text_w, tw
6739 the width of the rendered text
6740
6741 @item x
6742 @item y
6743 the x and y offset coordinates where the text is drawn.
6744
6745 These parameters allow the @var{x} and @var{y} expressions to refer
6746 each other, so you can for example specify @code{y=x/dar}.
6747 @end table
6748
6749 @anchor{drawtext_expansion}
6750 @subsection Text expansion
6751
6752 If @option{expansion} is set to @code{strftime},
6753 the filter recognizes strftime() sequences in the provided text and
6754 expands them accordingly. Check the documentation of strftime(). This
6755 feature is deprecated.
6756
6757 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6758
6759 If @option{expansion} is set to @code{normal} (which is the default),
6760 the following expansion mechanism is used.
6761
6762 The backslash character @samp{\}, followed by any character, always expands to
6763 the second character.
6764
6765 Sequence of the form @code{%@{...@}} are expanded. The text between the
6766 braces is a function name, possibly followed by arguments separated by ':'.
6767 If the arguments contain special characters or delimiters (':' or '@}'),
6768 they should be escaped.
6769
6770 Note that they probably must also be escaped as the value for the
6771 @option{text} option in the filter argument string and as the filter
6772 argument in the filtergraph description, and possibly also for the shell,
6773 that makes up to four levels of escaping; using a text file avoids these
6774 problems.
6775
6776 The following functions are available:
6777
6778 @table @command
6779
6780 @item expr, e
6781 The expression evaluation result.
6782
6783 It must take one argument specifying the expression to be evaluated,
6784 which accepts the same constants and functions as the @var{x} and
6785 @var{y} values. Note that not all constants should be used, for
6786 example the text size is not known when evaluating the expression, so
6787 the constants @var{text_w} and @var{text_h} will have an undefined
6788 value.
6789
6790 @item expr_int_format, eif
6791 Evaluate the expression's value and output as formatted integer.
6792
6793 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6794 The second argument specifies the output format. Allowed values are @samp{x},
6795 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6796 @code{printf} function.
6797 The third parameter is optional and sets the number of positions taken by the output.
6798 It can be used to add padding with zeros from the left.
6799
6800 @item gmtime
6801 The time at which the filter is running, expressed in UTC.
6802 It can accept an argument: a strftime() format string.
6803
6804 @item localtime
6805 The time at which the filter is running, expressed in the local time zone.
6806 It can accept an argument: a strftime() format string.
6807
6808 @item metadata
6809 Frame metadata. Takes one or two arguments.
6810
6811 The first argument is mandatory and specifies the metadata key.
6812
6813 The second argument is optional and specifies a default value, used when the
6814 metadata key is not found or empty.
6815
6816 @item n, frame_num
6817 The frame number, starting from 0.
6818
6819 @item pict_type
6820 A 1 character description of the current picture type.
6821
6822 @item pts
6823 The timestamp of the current frame.
6824 It can take up to three arguments.
6825
6826 The first argument is the format of the timestamp; it defaults to @code{flt}
6827 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6828 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6829 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6830 @code{localtime} stands for the timestamp of the frame formatted as
6831 local time zone time.
6832
6833 The second argument is an offset added to the timestamp.
6834
6835 If the format is set to @code{localtime} or @code{gmtime},
6836 a third argument may be supplied: a strftime() format string.
6837 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6838 @end table
6839
6840 @subsection Examples
6841
6842 @itemize
6843 @item
6844 Draw "Test Text" with font FreeSerif, using the default values for the
6845 optional parameters.
6846
6847 @example
6848 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6849 @end example
6850
6851 @item
6852 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6853 and y=50 (counting from the top-left corner of the screen), text is
6854 yellow with a red box around it. Both the text and the box have an
6855 opacity of 20%.
6856
6857 @example
6858 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6859           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6860 @end example
6861
6862 Note that the double quotes are not necessary if spaces are not used
6863 within the parameter list.
6864
6865 @item
6866 Show the text at the center of the video frame:
6867 @example
6868 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6869 @end example
6870
6871 @item
6872 Show the text at a random position, switching to a new position every 30 seconds:
6873 @example
6874 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)"
6875 @end example
6876
6877 @item
6878 Show a text line sliding from right to left in the last row of the video
6879 frame. The file @file{LONG_LINE} is assumed to contain a single line
6880 with no newlines.
6881 @example
6882 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6883 @end example
6884
6885 @item
6886 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6887 @example
6888 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6889 @end example
6890
6891 @item
6892 Draw a single green letter "g", at the center of the input video.
6893 The glyph baseline is placed at half screen height.
6894 @example
6895 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6896 @end example
6897
6898 @item
6899 Show text for 1 second every 3 seconds:
6900 @example
6901 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6902 @end example
6903
6904 @item
6905 Use fontconfig to set the font. Note that the colons need to be escaped.
6906 @example
6907 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6908 @end example
6909
6910 @item
6911 Print the date of a real-time encoding (see strftime(3)):
6912 @example
6913 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6914 @end example
6915
6916 @item
6917 Show text fading in and out (appearing/disappearing):
6918 @example
6919 #!/bin/sh
6920 DS=1.0 # display start
6921 DE=10.0 # display end
6922 FID=1.5 # fade in duration
6923 FOD=5 # fade out duration
6924 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 @}"
6925 @end example
6926
6927 @end itemize
6928
6929 For more information about libfreetype, check:
6930 @url{http://www.freetype.org/}.
6931
6932 For more information about fontconfig, check:
6933 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6934
6935 For more information about libfribidi, check:
6936 @url{http://fribidi.org/}.
6937
6938 @section edgedetect
6939
6940 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6941
6942 The filter accepts the following options:
6943
6944 @table @option
6945 @item low
6946 @item high
6947 Set low and high threshold values used by the Canny thresholding
6948 algorithm.
6949
6950 The high threshold selects the "strong" edge pixels, which are then
6951 connected through 8-connectivity with the "weak" edge pixels selected
6952 by the low threshold.
6953
6954 @var{low} and @var{high} threshold values must be chosen in the range
6955 [0,1], and @var{low} should be lesser or equal to @var{high}.
6956
6957 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6958 is @code{50/255}.
6959
6960 @item mode
6961 Define the drawing mode.
6962
6963 @table @samp
6964 @item wires
6965 Draw white/gray wires on black background.
6966
6967 @item colormix
6968 Mix the colors to create a paint/cartoon effect.
6969 @end table
6970
6971 Default value is @var{wires}.
6972 @end table
6973
6974 @subsection Examples
6975
6976 @itemize
6977 @item
6978 Standard edge detection with custom values for the hysteresis thresholding:
6979 @example
6980 edgedetect=low=0.1:high=0.4
6981 @end example
6982
6983 @item
6984 Painting effect without thresholding:
6985 @example
6986 edgedetect=mode=colormix:high=0
6987 @end example
6988 @end itemize
6989
6990 @section eq
6991 Set brightness, contrast, saturation and approximate gamma adjustment.
6992
6993 The filter accepts the following options:
6994
6995 @table @option
6996 @item contrast
6997 Set the contrast expression. The value must be a float value in range
6998 @code{-2.0} to @code{2.0}. The default value is "1".
6999
7000 @item brightness
7001 Set the brightness expression. The value must be a float value in
7002 range @code{-1.0} to @code{1.0}. The default value is "0".
7003
7004 @item saturation
7005 Set the saturation expression. The value must be a float in
7006 range @code{0.0} to @code{3.0}. The default value is "1".
7007
7008 @item gamma
7009 Set the gamma expression. The value must be a float in range
7010 @code{0.1} to @code{10.0}.  The default value is "1".
7011
7012 @item gamma_r
7013 Set the gamma expression for red. The value must be a float in
7014 range @code{0.1} to @code{10.0}. The default value is "1".
7015
7016 @item gamma_g
7017 Set the gamma expression for green. The value must be a float in range
7018 @code{0.1} to @code{10.0}. The default value is "1".
7019
7020 @item gamma_b
7021 Set the gamma expression for blue. The value must be a float in range
7022 @code{0.1} to @code{10.0}. The default value is "1".
7023
7024 @item gamma_weight
7025 Set the gamma weight expression. It can be used to reduce the effect
7026 of a high gamma value on bright image areas, e.g. keep them from
7027 getting overamplified and just plain white. The value must be a float
7028 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7029 gamma correction all the way down while @code{1.0} leaves it at its
7030 full strength. Default is "1".
7031
7032 @item eval
7033 Set when the expressions for brightness, contrast, saturation and
7034 gamma expressions are evaluated.
7035
7036 It accepts the following values:
7037 @table @samp
7038 @item init
7039 only evaluate expressions once during the filter initialization or
7040 when a command is processed
7041
7042 @item frame
7043 evaluate expressions for each incoming frame
7044 @end table
7045
7046 Default value is @samp{init}.
7047 @end table
7048
7049 The expressions accept the following parameters:
7050 @table @option
7051 @item n
7052 frame count of the input frame starting from 0
7053
7054 @item pos
7055 byte position of the corresponding packet in the input file, NAN if
7056 unspecified
7057
7058 @item r
7059 frame rate of the input video, NAN if the input frame rate is unknown
7060
7061 @item t
7062 timestamp expressed in seconds, NAN if the input timestamp is unknown
7063 @end table
7064
7065 @subsection Commands
7066 The filter supports the following commands:
7067
7068 @table @option
7069 @item contrast
7070 Set the contrast expression.
7071
7072 @item brightness
7073 Set the brightness expression.
7074
7075 @item saturation
7076 Set the saturation expression.
7077
7078 @item gamma
7079 Set the gamma expression.
7080
7081 @item gamma_r
7082 Set the gamma_r expression.
7083
7084 @item gamma_g
7085 Set gamma_g expression.
7086
7087 @item gamma_b
7088 Set gamma_b expression.
7089
7090 @item gamma_weight
7091 Set gamma_weight expression.
7092
7093 The command accepts the same syntax of the corresponding option.
7094
7095 If the specified expression is not valid, it is kept at its current
7096 value.
7097
7098 @end table
7099
7100 @section erosion
7101
7102 Apply erosion effect to the video.
7103
7104 This filter replaces the pixel by the local(3x3) minimum.
7105
7106 It accepts the following options:
7107
7108 @table @option
7109 @item threshold0
7110 @item threshold1
7111 @item threshold2
7112 @item threshold3
7113 Limit the maximum change for each plane, default is 65535.
7114 If 0, plane will remain unchanged.
7115
7116 @item coordinates
7117 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7118 pixels are used.
7119
7120 Flags to local 3x3 coordinates maps like this:
7121
7122     1 2 3
7123     4   5
7124     6 7 8
7125 @end table
7126
7127 @section extractplanes
7128
7129 Extract color channel components from input video stream into
7130 separate grayscale video streams.
7131
7132 The filter accepts the following option:
7133
7134 @table @option
7135 @item planes
7136 Set plane(s) to extract.
7137
7138 Available values for planes are:
7139 @table @samp
7140 @item y
7141 @item u
7142 @item v
7143 @item a
7144 @item r
7145 @item g
7146 @item b
7147 @end table
7148
7149 Choosing planes not available in the input will result in an error.
7150 That means you cannot select @code{r}, @code{g}, @code{b} planes
7151 with @code{y}, @code{u}, @code{v} planes at same time.
7152 @end table
7153
7154 @subsection Examples
7155
7156 @itemize
7157 @item
7158 Extract luma, u and v color channel component from input video frame
7159 into 3 grayscale outputs:
7160 @example
7161 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
7162 @end example
7163 @end itemize
7164
7165 @section elbg
7166
7167 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7168
7169 For each input image, the filter will compute the optimal mapping from
7170 the input to the output given the codebook length, that is the number
7171 of distinct output colors.
7172
7173 This filter accepts the following options.
7174
7175 @table @option
7176 @item codebook_length, l
7177 Set codebook length. The value must be a positive integer, and
7178 represents the number of distinct output colors. Default value is 256.
7179
7180 @item nb_steps, n
7181 Set the maximum number of iterations to apply for computing the optimal
7182 mapping. The higher the value the better the result and the higher the
7183 computation time. Default value is 1.
7184
7185 @item seed, s
7186 Set a random seed, must be an integer included between 0 and
7187 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7188 will try to use a good random seed on a best effort basis.
7189
7190 @item pal8
7191 Set pal8 output pixel format. This option does not work with codebook
7192 length greater than 256.
7193 @end table
7194
7195 @section fade
7196
7197 Apply a fade-in/out effect to the input video.
7198
7199 It accepts the following parameters:
7200
7201 @table @option
7202 @item type, t
7203 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7204 effect.
7205 Default is @code{in}.
7206
7207 @item start_frame, s
7208 Specify the number of the frame to start applying the fade
7209 effect at. Default is 0.
7210
7211 @item nb_frames, n
7212 The number of frames that the fade effect lasts. At the end of the
7213 fade-in effect, the output video will have the same intensity as the input video.
7214 At the end of the fade-out transition, the output video will be filled with the
7215 selected @option{color}.
7216 Default is 25.
7217
7218 @item alpha
7219 If set to 1, fade only alpha channel, if one exists on the input.
7220 Default value is 0.
7221
7222 @item start_time, st
7223 Specify the timestamp (in seconds) of the frame to start to apply the fade
7224 effect. If both start_frame and start_time are specified, the fade will start at
7225 whichever comes last.  Default is 0.
7226
7227 @item duration, d
7228 The number of seconds for which the fade effect has to last. At the end of the
7229 fade-in effect the output video will have the same intensity as the input video,
7230 at the end of the fade-out transition the output video will be filled with the
7231 selected @option{color}.
7232 If both duration and nb_frames are specified, duration is used. Default is 0
7233 (nb_frames is used by default).
7234
7235 @item color, c
7236 Specify the color of the fade. Default is "black".
7237 @end table
7238
7239 @subsection Examples
7240
7241 @itemize
7242 @item
7243 Fade in the first 30 frames of video:
7244 @example
7245 fade=in:0:30
7246 @end example
7247
7248 The command above is equivalent to:
7249 @example
7250 fade=t=in:s=0:n=30
7251 @end example
7252
7253 @item
7254 Fade out the last 45 frames of a 200-frame video:
7255 @example
7256 fade=out:155:45
7257 fade=type=out:start_frame=155:nb_frames=45
7258 @end example
7259
7260 @item
7261 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7262 @example
7263 fade=in:0:25, fade=out:975:25
7264 @end example
7265
7266 @item
7267 Make the first 5 frames yellow, then fade in from frame 5-24:
7268 @example
7269 fade=in:5:20:color=yellow
7270 @end example
7271
7272 @item
7273 Fade in alpha over first 25 frames of video:
7274 @example
7275 fade=in:0:25:alpha=1
7276 @end example
7277
7278 @item
7279 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7280 @example
7281 fade=t=in:st=5.5:d=0.5
7282 @end example
7283
7284 @end itemize
7285
7286 @section fftfilt
7287 Apply arbitrary expressions to samples in frequency domain
7288
7289 @table @option
7290 @item dc_Y
7291 Adjust the dc value (gain) of the luma plane of the image. The filter
7292 accepts an integer value in range @code{0} to @code{1000}. The default
7293 value is set to @code{0}.
7294
7295 @item dc_U
7296 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7297 filter accepts an integer value in range @code{0} to @code{1000}. The
7298 default value is set to @code{0}.
7299
7300 @item dc_V
7301 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7302 filter accepts an integer value in range @code{0} to @code{1000}. The
7303 default value is set to @code{0}.
7304
7305 @item weight_Y
7306 Set the frequency domain weight expression for the luma plane.
7307
7308 @item weight_U
7309 Set the frequency domain weight expression for the 1st chroma plane.
7310
7311 @item weight_V
7312 Set the frequency domain weight expression for the 2nd chroma plane.
7313
7314 The filter accepts the following variables:
7315 @item X
7316 @item Y
7317 The coordinates of the current sample.
7318
7319 @item W
7320 @item H
7321 The width and height of the image.
7322 @end table
7323
7324 @subsection Examples
7325
7326 @itemize
7327 @item
7328 High-pass:
7329 @example
7330 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7331 @end example
7332
7333 @item
7334 Low-pass:
7335 @example
7336 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7337 @end example
7338
7339 @item
7340 Sharpen:
7341 @example
7342 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7343 @end example
7344
7345 @item
7346 Blur:
7347 @example
7348 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7349 @end example
7350
7351 @end itemize
7352
7353 @section field
7354
7355 Extract a single field from an interlaced image using stride
7356 arithmetic to avoid wasting CPU time. The output frames are marked as
7357 non-interlaced.
7358
7359 The filter accepts the following options:
7360
7361 @table @option
7362 @item type
7363 Specify whether to extract the top (if the value is @code{0} or
7364 @code{top}) or the bottom field (if the value is @code{1} or
7365 @code{bottom}).
7366 @end table
7367
7368 @section fieldhint
7369
7370 Create new frames by copying the top and bottom fields from surrounding frames
7371 supplied as numbers by the hint file.
7372
7373 @table @option
7374 @item hint
7375 Set file containing hints: absolute/relative frame numbers.
7376
7377 There must be one line for each frame in a clip. Each line must contain two
7378 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7379 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7380 is current frame number for @code{absolute} mode or out of [-1, 1] range
7381 for @code{relative} mode. First number tells from which frame to pick up top
7382 field and second number tells from which frame to pick up bottom field.
7383
7384 If optionally followed by @code{+} output frame will be marked as interlaced,
7385 else if followed by @code{-} output frame will be marked as progressive, else
7386 it will be marked same as input frame.
7387 If line starts with @code{#} or @code{;} that line is skipped.
7388
7389 @item mode
7390 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7391 @end table
7392
7393 Example of first several lines of @code{hint} file for @code{relative} mode:
7394 @example
7395 0,0 - # first frame
7396 1,0 - # second frame, use third's frame top field and second's frame bottom field
7397 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7398 1,0 -
7399 0,0 -
7400 0,0 -
7401 1,0 -
7402 1,0 -
7403 1,0 -
7404 0,0 -
7405 0,0 -
7406 1,0 -
7407 1,0 -
7408 1,0 -
7409 0,0 -
7410 @end example
7411
7412 @section fieldmatch
7413
7414 Field matching filter for inverse telecine. It is meant to reconstruct the
7415 progressive frames from a telecined stream. The filter does not drop duplicated
7416 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7417 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7418
7419 The separation of the field matching and the decimation is notably motivated by
7420 the possibility of inserting a de-interlacing filter fallback between the two.
7421 If the source has mixed telecined and real interlaced content,
7422 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7423 But these remaining combed frames will be marked as interlaced, and thus can be
7424 de-interlaced by a later filter such as @ref{yadif} before decimation.
7425
7426 In addition to the various configuration options, @code{fieldmatch} can take an
7427 optional second stream, activated through the @option{ppsrc} option. If
7428 enabled, the frames reconstruction will be based on the fields and frames from
7429 this second stream. This allows the first input to be pre-processed in order to
7430 help the various algorithms of the filter, while keeping the output lossless
7431 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7432 or brightness/contrast adjustments can help.
7433
7434 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7435 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7436 which @code{fieldmatch} is based on. While the semantic and usage are very
7437 close, some behaviour and options names can differ.
7438
7439 The @ref{decimate} filter currently only works for constant frame rate input.
7440 If your input has mixed telecined (30fps) and progressive content with a lower
7441 framerate like 24fps use the following filterchain to produce the necessary cfr
7442 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7443
7444 The filter accepts the following options:
7445
7446 @table @option
7447 @item order
7448 Specify the assumed field order of the input stream. Available values are:
7449
7450 @table @samp
7451 @item auto
7452 Auto detect parity (use FFmpeg's internal parity value).
7453 @item bff
7454 Assume bottom field first.
7455 @item tff
7456 Assume top field first.
7457 @end table
7458
7459 Note that it is sometimes recommended not to trust the parity announced by the
7460 stream.
7461
7462 Default value is @var{auto}.
7463
7464 @item mode
7465 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7466 sense that it won't risk creating jerkiness due to duplicate frames when
7467 possible, but if there are bad edits or blended fields it will end up
7468 outputting combed frames when a good match might actually exist. On the other
7469 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7470 but will almost always find a good frame if there is one. The other values are
7471 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7472 jerkiness and creating duplicate frames versus finding good matches in sections
7473 with bad edits, orphaned fields, blended fields, etc.
7474
7475 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7476
7477 Available values are:
7478
7479 @table @samp
7480 @item pc
7481 2-way matching (p/c)
7482 @item pc_n
7483 2-way matching, and trying 3rd match if still combed (p/c + n)
7484 @item pc_u
7485 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7486 @item pc_n_ub
7487 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7488 still combed (p/c + n + u/b)
7489 @item pcn
7490 3-way matching (p/c/n)
7491 @item pcn_ub
7492 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7493 detected as combed (p/c/n + u/b)
7494 @end table
7495
7496 The parenthesis at the end indicate the matches that would be used for that
7497 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7498 @var{top}).
7499
7500 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7501 the slowest.
7502
7503 Default value is @var{pc_n}.
7504
7505 @item ppsrc
7506 Mark the main input stream as a pre-processed input, and enable the secondary
7507 input stream as the clean source to pick the fields from. See the filter
7508 introduction for more details. It is similar to the @option{clip2} feature from
7509 VFM/TFM.
7510
7511 Default value is @code{0} (disabled).
7512
7513 @item field
7514 Set the field to match from. It is recommended to set this to the same value as
7515 @option{order} unless you experience matching failures with that setting. In
7516 certain circumstances changing the field that is used to match from can have a
7517 large impact on matching performance. Available values are:
7518
7519 @table @samp
7520 @item auto
7521 Automatic (same value as @option{order}).
7522 @item bottom
7523 Match from the bottom field.
7524 @item top
7525 Match from the top field.
7526 @end table
7527
7528 Default value is @var{auto}.
7529
7530 @item mchroma
7531 Set whether or not chroma is included during the match comparisons. In most
7532 cases it is recommended to leave this enabled. You should set this to @code{0}
7533 only if your clip has bad chroma problems such as heavy rainbowing or other
7534 artifacts. Setting this to @code{0} could also be used to speed things up at
7535 the cost of some accuracy.
7536
7537 Default value is @code{1}.
7538
7539 @item y0
7540 @item y1
7541 These define an exclusion band which excludes the lines between @option{y0} and
7542 @option{y1} from being included in the field matching decision. An exclusion
7543 band can be used to ignore subtitles, a logo, or other things that may
7544 interfere with the matching. @option{y0} sets the starting scan line and
7545 @option{y1} sets the ending line; all lines in between @option{y0} and
7546 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7547 @option{y0} and @option{y1} to the same value will disable the feature.
7548 @option{y0} and @option{y1} defaults to @code{0}.
7549
7550 @item scthresh
7551 Set the scene change detection threshold as a percentage of maximum change on
7552 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7553 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7554 @option{scthresh} is @code{[0.0, 100.0]}.
7555
7556 Default value is @code{12.0}.
7557
7558 @item combmatch
7559 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7560 account the combed scores of matches when deciding what match to use as the
7561 final match. Available values are:
7562
7563 @table @samp
7564 @item none
7565 No final matching based on combed scores.
7566 @item sc
7567 Combed scores are only used when a scene change is detected.
7568 @item full
7569 Use combed scores all the time.
7570 @end table
7571
7572 Default is @var{sc}.
7573
7574 @item combdbg
7575 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7576 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7577 Available values are:
7578
7579 @table @samp
7580 @item none
7581 No forced calculation.
7582 @item pcn
7583 Force p/c/n calculations.
7584 @item pcnub
7585 Force p/c/n/u/b calculations.
7586 @end table
7587
7588 Default value is @var{none}.
7589
7590 @item cthresh
7591 This is the area combing threshold used for combed frame detection. This
7592 essentially controls how "strong" or "visible" combing must be to be detected.
7593 Larger values mean combing must be more visible and smaller values mean combing
7594 can be less visible or strong and still be detected. Valid settings are from
7595 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7596 be detected as combed). This is basically a pixel difference value. A good
7597 range is @code{[8, 12]}.
7598
7599 Default value is @code{9}.
7600
7601 @item chroma
7602 Sets whether or not chroma is considered in the combed frame decision.  Only
7603 disable this if your source has chroma problems (rainbowing, etc.) that are
7604 causing problems for the combed frame detection with chroma enabled. Actually,
7605 using @option{chroma}=@var{0} is usually more reliable, except for the case
7606 where there is chroma only combing in the source.
7607
7608 Default value is @code{0}.
7609
7610 @item blockx
7611 @item blocky
7612 Respectively set the x-axis and y-axis size of the window used during combed
7613 frame detection. This has to do with the size of the area in which
7614 @option{combpel} pixels are required to be detected as combed for a frame to be
7615 declared combed. See the @option{combpel} parameter description for more info.
7616 Possible values are any number that is a power of 2 starting at 4 and going up
7617 to 512.
7618
7619 Default value is @code{16}.
7620
7621 @item combpel
7622 The number of combed pixels inside any of the @option{blocky} by
7623 @option{blockx} size blocks on the frame for the frame to be detected as
7624 combed. While @option{cthresh} controls how "visible" the combing must be, this
7625 setting controls "how much" combing there must be in any localized area (a
7626 window defined by the @option{blockx} and @option{blocky} settings) on the
7627 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7628 which point no frames will ever be detected as combed). This setting is known
7629 as @option{MI} in TFM/VFM vocabulary.
7630
7631 Default value is @code{80}.
7632 @end table
7633
7634 @anchor{p/c/n/u/b meaning}
7635 @subsection p/c/n/u/b meaning
7636
7637 @subsubsection p/c/n
7638
7639 We assume the following telecined stream:
7640
7641 @example
7642 Top fields:     1 2 2 3 4
7643 Bottom fields:  1 2 3 4 4
7644 @end example
7645
7646 The numbers correspond to the progressive frame the fields relate to. Here, the
7647 first two frames are progressive, the 3rd and 4th are combed, and so on.
7648
7649 When @code{fieldmatch} is configured to run a matching from bottom
7650 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7651
7652 @example
7653 Input stream:
7654                 T     1 2 2 3 4
7655                 B     1 2 3 4 4   <-- matching reference
7656
7657 Matches:              c c n n c
7658
7659 Output stream:
7660                 T     1 2 3 4 4
7661                 B     1 2 3 4 4
7662 @end example
7663
7664 As a result of the field matching, we can see that some frames get duplicated.
7665 To perform a complete inverse telecine, you need to rely on a decimation filter
7666 after this operation. See for instance the @ref{decimate} filter.
7667
7668 The same operation now matching from top fields (@option{field}=@var{top})
7669 looks like this:
7670
7671 @example
7672 Input stream:
7673                 T     1 2 2 3 4   <-- matching reference
7674                 B     1 2 3 4 4
7675
7676 Matches:              c c p p c
7677
7678 Output stream:
7679                 T     1 2 2 3 4
7680                 B     1 2 2 3 4
7681 @end example
7682
7683 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7684 basically, they refer to the frame and field of the opposite parity:
7685
7686 @itemize
7687 @item @var{p} matches the field of the opposite parity in the previous frame
7688 @item @var{c} matches the field of the opposite parity in the current frame
7689 @item @var{n} matches the field of the opposite parity in the next frame
7690 @end itemize
7691
7692 @subsubsection u/b
7693
7694 The @var{u} and @var{b} matching are a bit special in the sense that they match
7695 from the opposite parity flag. In the following examples, we assume that we are
7696 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7697 'x' is placed above and below each matched fields.
7698
7699 With bottom matching (@option{field}=@var{bottom}):
7700 @example
7701 Match:           c         p           n          b          u
7702
7703                  x       x               x        x          x
7704   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7705   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7706                  x         x           x        x              x
7707
7708 Output frames:
7709                  2          1          2          2          2
7710                  2          2          2          1          3
7711 @end example
7712
7713 With top matching (@option{field}=@var{top}):
7714 @example
7715 Match:           c         p           n          b          u
7716
7717                  x         x           x        x              x
7718   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7719   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7720                  x       x               x        x          x
7721
7722 Output frames:
7723                  2          2          2          1          2
7724                  2          1          3          2          2
7725 @end example
7726
7727 @subsection Examples
7728
7729 Simple IVTC of a top field first telecined stream:
7730 @example
7731 fieldmatch=order=tff:combmatch=none, decimate
7732 @end example
7733
7734 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7735 @example
7736 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7737 @end example
7738
7739 @section fieldorder
7740
7741 Transform the field order of the input video.
7742
7743 It accepts the following parameters:
7744
7745 @table @option
7746
7747 @item order
7748 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7749 for bottom field first.
7750 @end table
7751
7752 The default value is @samp{tff}.
7753
7754 The transformation is done by shifting the picture content up or down
7755 by one line, and filling the remaining line with appropriate picture content.
7756 This method is consistent with most broadcast field order converters.
7757
7758 If the input video is not flagged as being interlaced, or it is already
7759 flagged as being of the required output field order, then this filter does
7760 not alter the incoming video.
7761
7762 It is very useful when converting to or from PAL DV material,
7763 which is bottom field first.
7764
7765 For example:
7766 @example
7767 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7768 @end example
7769
7770 @section fifo, afifo
7771
7772 Buffer input images and send them when they are requested.
7773
7774 It is mainly useful when auto-inserted by the libavfilter
7775 framework.
7776
7777 It does not take parameters.
7778
7779 @section find_rect
7780
7781 Find a rectangular object
7782
7783 It accepts the following options:
7784
7785 @table @option
7786 @item object
7787 Filepath of the object image, needs to be in gray8.
7788
7789 @item threshold
7790 Detection threshold, default is 0.5.
7791
7792 @item mipmaps
7793 Number of mipmaps, default is 3.
7794
7795 @item xmin, ymin, xmax, ymax
7796 Specifies the rectangle in which to search.
7797 @end table
7798
7799 @subsection Examples
7800
7801 @itemize
7802 @item
7803 Generate a representative palette of a given video using @command{ffmpeg}:
7804 @example
7805 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7806 @end example
7807 @end itemize
7808
7809 @section cover_rect
7810
7811 Cover a rectangular object
7812
7813 It accepts the following options:
7814
7815 @table @option
7816 @item cover
7817 Filepath of the optional cover image, needs to be in yuv420.
7818
7819 @item mode
7820 Set covering mode.
7821
7822 It accepts the following values:
7823 @table @samp
7824 @item cover
7825 cover it by the supplied image
7826 @item blur
7827 cover it by interpolating the surrounding pixels
7828 @end table
7829
7830 Default value is @var{blur}.
7831 @end table
7832
7833 @subsection Examples
7834
7835 @itemize
7836 @item
7837 Generate a representative palette of a given video using @command{ffmpeg}:
7838 @example
7839 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7840 @end example
7841 @end itemize
7842
7843 @anchor{format}
7844 @section format
7845
7846 Convert the input video to one of the specified pixel formats.
7847 Libavfilter will try to pick one that is suitable as input to
7848 the next filter.
7849
7850 It accepts the following parameters:
7851 @table @option
7852
7853 @item pix_fmts
7854 A '|'-separated list of pixel format names, such as
7855 "pix_fmts=yuv420p|monow|rgb24".
7856
7857 @end table
7858
7859 @subsection Examples
7860
7861 @itemize
7862 @item
7863 Convert the input video to the @var{yuv420p} format
7864 @example
7865 format=pix_fmts=yuv420p
7866 @end example
7867
7868 Convert the input video to any of the formats in the list
7869 @example
7870 format=pix_fmts=yuv420p|yuv444p|yuv410p
7871 @end example
7872 @end itemize
7873
7874 @anchor{fps}
7875 @section fps
7876
7877 Convert the video to specified constant frame rate by duplicating or dropping
7878 frames as necessary.
7879
7880 It accepts the following parameters:
7881 @table @option
7882
7883 @item fps
7884 The desired output frame rate. The default is @code{25}.
7885
7886 @item round
7887 Rounding method.
7888
7889 Possible values are:
7890 @table @option
7891 @item zero
7892 zero round towards 0
7893 @item inf
7894 round away from 0
7895 @item down
7896 round towards -infinity
7897 @item up
7898 round towards +infinity
7899 @item near
7900 round to nearest
7901 @end table
7902 The default is @code{near}.
7903
7904 @item start_time
7905 Assume the first PTS should be the given value, in seconds. This allows for
7906 padding/trimming at the start of stream. By default, no assumption is made
7907 about the first frame's expected PTS, so no padding or trimming is done.
7908 For example, this could be set to 0 to pad the beginning with duplicates of
7909 the first frame if a video stream starts after the audio stream or to trim any
7910 frames with a negative PTS.
7911
7912 @end table
7913
7914 Alternatively, the options can be specified as a flat string:
7915 @var{fps}[:@var{round}].
7916
7917 See also the @ref{setpts} filter.
7918
7919 @subsection Examples
7920
7921 @itemize
7922 @item
7923 A typical usage in order to set the fps to 25:
7924 @example
7925 fps=fps=25
7926 @end example
7927
7928 @item
7929 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7930 @example
7931 fps=fps=film:round=near
7932 @end example
7933 @end itemize
7934
7935 @section framepack
7936
7937 Pack two different video streams into a stereoscopic video, setting proper
7938 metadata on supported codecs. The two views should have the same size and
7939 framerate and processing will stop when the shorter video ends. Please note
7940 that you may conveniently adjust view properties with the @ref{scale} and
7941 @ref{fps} filters.
7942
7943 It accepts the following parameters:
7944 @table @option
7945
7946 @item format
7947 The desired packing format. Supported values are:
7948
7949 @table @option
7950
7951 @item sbs
7952 The views are next to each other (default).
7953
7954 @item tab
7955 The views are on top of each other.
7956
7957 @item lines
7958 The views are packed by line.
7959
7960 @item columns
7961 The views are packed by column.
7962
7963 @item frameseq
7964 The views are temporally interleaved.
7965
7966 @end table
7967
7968 @end table
7969
7970 Some examples:
7971
7972 @example
7973 # Convert left and right views into a frame-sequential video
7974 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7975
7976 # Convert views into a side-by-side video with the same output resolution as the input
7977 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
7978 @end example
7979
7980 @section framerate
7981
7982 Change the frame rate by interpolating new video output frames from the source
7983 frames.
7984
7985 This filter is not designed to function correctly with interlaced media. If
7986 you wish to change the frame rate of interlaced media then you are required
7987 to deinterlace before this filter and re-interlace after this filter.
7988
7989 A description of the accepted options follows.
7990
7991 @table @option
7992 @item fps
7993 Specify the output frames per second. This option can also be specified
7994 as a value alone. The default is @code{50}.
7995
7996 @item interp_start
7997 Specify the start of a range where the output frame will be created as a
7998 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7999 the default is @code{15}.
8000
8001 @item interp_end
8002 Specify the end of a range where the output frame will be created as a
8003 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8004 the default is @code{240}.
8005
8006 @item scene
8007 Specify the level at which a scene change is detected as a value between
8008 0 and 100 to indicate a new scene; a low value reflects a low
8009 probability for the current frame to introduce a new scene, while a higher
8010 value means the current frame is more likely to be one.
8011 The default is @code{7}.
8012
8013 @item flags
8014 Specify flags influencing the filter process.
8015
8016 Available value for @var{flags} is:
8017
8018 @table @option
8019 @item scene_change_detect, scd
8020 Enable scene change detection using the value of the option @var{scene}.
8021 This flag is enabled by default.
8022 @end table
8023 @end table
8024
8025 @section framestep
8026
8027 Select one frame every N-th frame.
8028
8029 This filter accepts the following option:
8030 @table @option
8031 @item step
8032 Select frame after every @code{step} frames.
8033 Allowed values are positive integers higher than 0. Default value is @code{1}.
8034 @end table
8035
8036 @anchor{frei0r}
8037 @section frei0r
8038
8039 Apply a frei0r effect to the input video.
8040
8041 To enable the compilation of this filter, you need to install the frei0r
8042 header and configure FFmpeg with @code{--enable-frei0r}.
8043
8044 It accepts the following parameters:
8045
8046 @table @option
8047
8048 @item filter_name
8049 The name of the frei0r effect to load. If the environment variable
8050 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8051 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8052 Otherwise, the standard frei0r paths are searched, in this order:
8053 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8054 @file{/usr/lib/frei0r-1/}.
8055
8056 @item filter_params
8057 A '|'-separated list of parameters to pass to the frei0r effect.
8058
8059 @end table
8060
8061 A frei0r effect parameter can be a boolean (its value is either
8062 "y" or "n"), a double, a color (specified as
8063 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8064 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8065 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8066 @var{X} and @var{Y} are floating point numbers) and/or a string.
8067
8068 The number and types of parameters depend on the loaded effect. If an
8069 effect parameter is not specified, the default value is set.
8070
8071 @subsection Examples
8072
8073 @itemize
8074 @item
8075 Apply the distort0r effect, setting the first two double parameters:
8076 @example
8077 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8078 @end example
8079
8080 @item
8081 Apply the colordistance effect, taking a color as the first parameter:
8082 @example
8083 frei0r=colordistance:0.2/0.3/0.4
8084 frei0r=colordistance:violet
8085 frei0r=colordistance:0x112233
8086 @end example
8087
8088 @item
8089 Apply the perspective effect, specifying the top left and top right image
8090 positions:
8091 @example
8092 frei0r=perspective:0.2/0.2|0.8/0.2
8093 @end example
8094 @end itemize
8095
8096 For more information, see
8097 @url{http://frei0r.dyne.org}
8098
8099 @section fspp
8100
8101 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8102
8103 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8104 processing filter, one of them is performed once per block, not per pixel.
8105 This allows for much higher speed.
8106
8107 The filter accepts the following options:
8108
8109 @table @option
8110 @item quality
8111 Set quality. This option defines the number of levels for averaging. It accepts
8112 an integer in the range 4-5. Default value is @code{4}.
8113
8114 @item qp
8115 Force a constant quantization parameter. It accepts an integer in range 0-63.
8116 If not set, the filter will use the QP from the video stream (if available).
8117
8118 @item strength
8119 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8120 more details but also more artifacts, while higher values make the image smoother
8121 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8122
8123 @item use_bframe_qp
8124 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8125 option may cause flicker since the B-Frames have often larger QP. Default is
8126 @code{0} (not enabled).
8127
8128 @end table
8129
8130 @section geq
8131
8132 The filter accepts the following options:
8133
8134 @table @option
8135 @item lum_expr, lum
8136 Set the luminance expression.
8137 @item cb_expr, cb
8138 Set the chrominance blue expression.
8139 @item cr_expr, cr
8140 Set the chrominance red expression.
8141 @item alpha_expr, a
8142 Set the alpha expression.
8143 @item red_expr, r
8144 Set the red expression.
8145 @item green_expr, g
8146 Set the green expression.
8147 @item blue_expr, b
8148 Set the blue expression.
8149 @end table
8150
8151 The colorspace is selected according to the specified options. If one
8152 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8153 options is specified, the filter will automatically select a YCbCr
8154 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8155 @option{blue_expr} options is specified, it will select an RGB
8156 colorspace.
8157
8158 If one of the chrominance expression is not defined, it falls back on the other
8159 one. If no alpha expression is specified it will evaluate to opaque value.
8160 If none of chrominance expressions are specified, they will evaluate
8161 to the luminance expression.
8162
8163 The expressions can use the following variables and functions:
8164
8165 @table @option
8166 @item N
8167 The sequential number of the filtered frame, starting from @code{0}.
8168
8169 @item X
8170 @item Y
8171 The coordinates of the current sample.
8172
8173 @item W
8174 @item H
8175 The width and height of the image.
8176
8177 @item SW
8178 @item SH
8179 Width and height scale depending on the currently filtered plane. It is the
8180 ratio between the corresponding luma plane number of pixels and the current
8181 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8182 @code{0.5,0.5} for chroma planes.
8183
8184 @item T
8185 Time of the current frame, expressed in seconds.
8186
8187 @item p(x, y)
8188 Return the value of the pixel at location (@var{x},@var{y}) of the current
8189 plane.
8190
8191 @item lum(x, y)
8192 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8193 plane.
8194
8195 @item cb(x, y)
8196 Return the value of the pixel at location (@var{x},@var{y}) of the
8197 blue-difference chroma plane. Return 0 if there is no such plane.
8198
8199 @item cr(x, y)
8200 Return the value of the pixel at location (@var{x},@var{y}) of the
8201 red-difference chroma plane. Return 0 if there is no such plane.
8202
8203 @item r(x, y)
8204 @item g(x, y)
8205 @item b(x, y)
8206 Return the value of the pixel at location (@var{x},@var{y}) of the
8207 red/green/blue component. Return 0 if there is no such component.
8208
8209 @item alpha(x, y)
8210 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8211 plane. Return 0 if there is no such plane.
8212 @end table
8213
8214 For functions, if @var{x} and @var{y} are outside the area, the value will be
8215 automatically clipped to the closer edge.
8216
8217 @subsection Examples
8218
8219 @itemize
8220 @item
8221 Flip the image horizontally:
8222 @example
8223 geq=p(W-X\,Y)
8224 @end example
8225
8226 @item
8227 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8228 wavelength of 100 pixels:
8229 @example
8230 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8231 @end example
8232
8233 @item
8234 Generate a fancy enigmatic moving light:
8235 @example
8236 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
8237 @end example
8238
8239 @item
8240 Generate a quick emboss effect:
8241 @example
8242 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8243 @end example
8244
8245 @item
8246 Modify RGB components depending on pixel position:
8247 @example
8248 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8249 @end example
8250
8251 @item
8252 Create a radial gradient that is the same size as the input (also see
8253 the @ref{vignette} filter):
8254 @example
8255 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8256 @end example
8257 @end itemize
8258
8259 @section gradfun
8260
8261 Fix the banding artifacts that are sometimes introduced into nearly flat
8262 regions by truncation to 8bit color depth.
8263 Interpolate the gradients that should go where the bands are, and
8264 dither them.
8265
8266 It is designed for playback only.  Do not use it prior to
8267 lossy compression, because compression tends to lose the dither and
8268 bring back the bands.
8269
8270 It accepts the following parameters:
8271
8272 @table @option
8273
8274 @item strength
8275 The maximum amount by which the filter will change any one pixel. This is also
8276 the threshold for detecting nearly flat regions. Acceptable values range from
8277 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8278 valid range.
8279
8280 @item radius
8281 The neighborhood to fit the gradient to. A larger radius makes for smoother
8282 gradients, but also prevents the filter from modifying the pixels near detailed
8283 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8284 values will be clipped to the valid range.
8285
8286 @end table
8287
8288 Alternatively, the options can be specified as a flat string:
8289 @var{strength}[:@var{radius}]
8290
8291 @subsection Examples
8292
8293 @itemize
8294 @item
8295 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8296 @example
8297 gradfun=3.5:8
8298 @end example
8299
8300 @item
8301 Specify radius, omitting the strength (which will fall-back to the default
8302 value):
8303 @example
8304 gradfun=radius=8
8305 @end example
8306
8307 @end itemize
8308
8309 @anchor{haldclut}
8310 @section haldclut
8311
8312 Apply a Hald CLUT to a video stream.
8313
8314 First input is the video stream to process, and second one is the Hald CLUT.
8315 The Hald CLUT input can be a simple picture or a complete video stream.
8316
8317 The filter accepts the following options:
8318
8319 @table @option
8320 @item shortest
8321 Force termination when the shortest input terminates. Default is @code{0}.
8322 @item repeatlast
8323 Continue applying the last CLUT after the end of the stream. A value of
8324 @code{0} disable the filter after the last frame of the CLUT is reached.
8325 Default is @code{1}.
8326 @end table
8327
8328 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8329 filters share the same internals).
8330
8331 More information about the Hald CLUT can be found on Eskil Steenberg's website
8332 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8333
8334 @subsection Workflow examples
8335
8336 @subsubsection Hald CLUT video stream
8337
8338 Generate an identity Hald CLUT stream altered with various effects:
8339 @example
8340 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
8341 @end example
8342
8343 Note: make sure you use a lossless codec.
8344
8345 Then use it with @code{haldclut} to apply it on some random stream:
8346 @example
8347 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8348 @end example
8349
8350 The Hald CLUT will be applied to the 10 first seconds (duration of
8351 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8352 to the remaining frames of the @code{mandelbrot} stream.
8353
8354 @subsubsection Hald CLUT with preview
8355
8356 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8357 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8358 biggest possible square starting at the top left of the picture. The remaining
8359 padding pixels (bottom or right) will be ignored. This area can be used to add
8360 a preview of the Hald CLUT.
8361
8362 Typically, the following generated Hald CLUT will be supported by the
8363 @code{haldclut} filter:
8364
8365 @example
8366 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8367    pad=iw+320 [padded_clut];
8368    smptebars=s=320x256, split [a][b];
8369    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8370    [main][b] overlay=W-320" -frames:v 1 clut.png
8371 @end example
8372
8373 It contains the original and a preview of the effect of the CLUT: SMPTE color
8374 bars are displayed on the right-top, and below the same color bars processed by
8375 the color changes.
8376
8377 Then, the effect of this Hald CLUT can be visualized with:
8378 @example
8379 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8380 @end example
8381
8382 @section hdcd
8383
8384 Decodes high definition audio cd data. 16-Bit PCM stream containing hdcd flags
8385 is converted to 20-bit PCM stream.
8386
8387 @section hflip
8388
8389 Flip the input video horizontally.
8390
8391 For example, to horizontally flip the input video with @command{ffmpeg}:
8392 @example
8393 ffmpeg -i in.avi -vf "hflip" out.avi
8394 @end example
8395
8396 @section histeq
8397 This filter applies a global color histogram equalization on a
8398 per-frame basis.
8399
8400 It can be used to correct video that has a compressed range of pixel
8401 intensities.  The filter redistributes the pixel intensities to
8402 equalize their distribution across the intensity range. It may be
8403 viewed as an "automatically adjusting contrast filter". This filter is
8404 useful only for correcting degraded or poorly captured source
8405 video.
8406
8407 The filter accepts the following options:
8408
8409 @table @option
8410 @item strength
8411 Determine the amount of equalization to be applied.  As the strength
8412 is reduced, the distribution of pixel intensities more-and-more
8413 approaches that of the input frame. The value must be a float number
8414 in the range [0,1] and defaults to 0.200.
8415
8416 @item intensity
8417 Set the maximum intensity that can generated and scale the output
8418 values appropriately.  The strength should be set as desired and then
8419 the intensity can be limited if needed to avoid washing-out. The value
8420 must be a float number in the range [0,1] and defaults to 0.210.
8421
8422 @item antibanding
8423 Set the antibanding level. If enabled the filter will randomly vary
8424 the luminance of output pixels by a small amount to avoid banding of
8425 the histogram. Possible values are @code{none}, @code{weak} or
8426 @code{strong}. It defaults to @code{none}.
8427 @end table
8428
8429 @section histogram
8430
8431 Compute and draw a color distribution histogram for the input video.
8432
8433 The computed histogram is a representation of the color component
8434 distribution in an image.
8435
8436 Standard histogram displays the color components distribution in an image.
8437 Displays color graph for each color component. Shows distribution of
8438 the Y, U, V, A or R, G, B components, depending on input format, in the
8439 current frame. Below each graph a color component scale meter is shown.
8440
8441 The filter accepts the following options:
8442
8443 @table @option
8444 @item level_height
8445 Set height of level. Default value is @code{200}.
8446 Allowed range is [50, 2048].
8447
8448 @item scale_height
8449 Set height of color scale. Default value is @code{12}.
8450 Allowed range is [0, 40].
8451
8452 @item display_mode
8453 Set display mode.
8454 It accepts the following values:
8455 @table @samp
8456 @item parade
8457 Per color component graphs are placed below each other.
8458
8459 @item overlay
8460 Presents information identical to that in the @code{parade}, except
8461 that the graphs representing color components are superimposed directly
8462 over one another.
8463 @end table
8464 Default is @code{parade}.
8465
8466 @item levels_mode
8467 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8468 Default is @code{linear}.
8469
8470 @item components
8471 Set what color components to display.
8472 Default is @code{7}.
8473 @end table
8474
8475 @subsection Examples
8476
8477 @itemize
8478
8479 @item
8480 Calculate and draw histogram:
8481 @example
8482 ffplay -i input -vf histogram
8483 @end example
8484
8485 @end itemize
8486
8487 @anchor{hqdn3d}
8488 @section hqdn3d
8489
8490 This is a high precision/quality 3d denoise filter. It aims to reduce
8491 image noise, producing smooth images and making still images really
8492 still. It should enhance compressibility.
8493
8494 It accepts the following optional parameters:
8495
8496 @table @option
8497 @item luma_spatial
8498 A non-negative floating point number which specifies spatial luma strength.
8499 It defaults to 4.0.
8500
8501 @item chroma_spatial
8502 A non-negative floating point number which specifies spatial chroma strength.
8503 It defaults to 3.0*@var{luma_spatial}/4.0.
8504
8505 @item luma_tmp
8506 A floating point number which specifies luma temporal strength. It defaults to
8507 6.0*@var{luma_spatial}/4.0.
8508
8509 @item chroma_tmp
8510 A floating point number which specifies chroma temporal strength. It defaults to
8511 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8512 @end table
8513
8514 @anchor{hwupload_cuda}
8515 @section hwupload_cuda
8516
8517 Upload system memory frames to a CUDA device.
8518
8519 It accepts the following optional parameters:
8520
8521 @table @option
8522 @item device
8523 The number of the CUDA device to use
8524 @end table
8525
8526 @section hqx
8527
8528 Apply a high-quality magnification filter designed for pixel art. This filter
8529 was originally created by Maxim Stepin.
8530
8531 It accepts the following option:
8532
8533 @table @option
8534 @item n
8535 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8536 @code{hq3x} and @code{4} for @code{hq4x}.
8537 Default is @code{3}.
8538 @end table
8539
8540 @section hstack
8541 Stack input videos horizontally.
8542
8543 All streams must be of same pixel format and of same height.
8544
8545 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8546 to create same output.
8547
8548 The filter accept the following option:
8549
8550 @table @option
8551 @item inputs
8552 Set number of input streams. Default is 2.
8553
8554 @item shortest
8555 If set to 1, force the output to terminate when the shortest input
8556 terminates. Default value is 0.
8557 @end table
8558
8559 @section hue
8560
8561 Modify the hue and/or the saturation of the input.
8562
8563 It accepts the following parameters:
8564
8565 @table @option
8566 @item h
8567 Specify the hue angle as a number of degrees. It accepts an expression,
8568 and defaults to "0".
8569
8570 @item s
8571 Specify the saturation in the [-10,10] range. It accepts an expression and
8572 defaults to "1".
8573
8574 @item H
8575 Specify the hue angle as a number of radians. It accepts an
8576 expression, and defaults to "0".
8577
8578 @item b
8579 Specify the brightness in the [-10,10] range. It accepts an expression and
8580 defaults to "0".
8581 @end table
8582
8583 @option{h} and @option{H} are mutually exclusive, and can't be
8584 specified at the same time.
8585
8586 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8587 expressions containing the following constants:
8588
8589 @table @option
8590 @item n
8591 frame count of the input frame starting from 0
8592
8593 @item pts
8594 presentation timestamp of the input frame expressed in time base units
8595
8596 @item r
8597 frame rate of the input video, NAN if the input frame rate is unknown
8598
8599 @item t
8600 timestamp expressed in seconds, NAN if the input timestamp is unknown
8601
8602 @item tb
8603 time base of the input video
8604 @end table
8605
8606 @subsection Examples
8607
8608 @itemize
8609 @item
8610 Set the hue to 90 degrees and the saturation to 1.0:
8611 @example
8612 hue=h=90:s=1
8613 @end example
8614
8615 @item
8616 Same command but expressing the hue in radians:
8617 @example
8618 hue=H=PI/2:s=1
8619 @end example
8620
8621 @item
8622 Rotate hue and make the saturation swing between 0
8623 and 2 over a period of 1 second:
8624 @example
8625 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8626 @end example
8627
8628 @item
8629 Apply a 3 seconds saturation fade-in effect starting at 0:
8630 @example
8631 hue="s=min(t/3\,1)"
8632 @end example
8633
8634 The general fade-in expression can be written as:
8635 @example
8636 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8637 @end example
8638
8639 @item
8640 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8641 @example
8642 hue="s=max(0\, min(1\, (8-t)/3))"
8643 @end example
8644
8645 The general fade-out expression can be written as:
8646 @example
8647 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8648 @end example
8649
8650 @end itemize
8651
8652 @subsection Commands
8653
8654 This filter supports the following commands:
8655 @table @option
8656 @item b
8657 @item s
8658 @item h
8659 @item H
8660 Modify the hue and/or the saturation and/or brightness of the input video.
8661 The command accepts the same syntax of the corresponding option.
8662
8663 If the specified expression is not valid, it is kept at its current
8664 value.
8665 @end table
8666
8667 @section idet
8668
8669 Detect video interlacing type.
8670
8671 This filter tries to detect if the input frames as interlaced, progressive,
8672 top or bottom field first. It will also try and detect fields that are
8673 repeated between adjacent frames (a sign of telecine).
8674
8675 Single frame detection considers only immediately adjacent frames when classifying each frame.
8676 Multiple frame detection incorporates the classification history of previous frames.
8677
8678 The filter will log these metadata values:
8679
8680 @table @option
8681 @item single.current_frame
8682 Detected type of current frame using single-frame detection. One of:
8683 ``tff'' (top field first), ``bff'' (bottom field first),
8684 ``progressive'', or ``undetermined''
8685
8686 @item single.tff
8687 Cumulative number of frames detected as top field first using single-frame detection.
8688
8689 @item multiple.tff
8690 Cumulative number of frames detected as top field first using multiple-frame detection.
8691
8692 @item single.bff
8693 Cumulative number of frames detected as bottom field first using single-frame detection.
8694
8695 @item multiple.current_frame
8696 Detected type of current frame using multiple-frame detection. One of:
8697 ``tff'' (top field first), ``bff'' (bottom field first),
8698 ``progressive'', or ``undetermined''
8699
8700 @item multiple.bff
8701 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8702
8703 @item single.progressive
8704 Cumulative number of frames detected as progressive using single-frame detection.
8705
8706 @item multiple.progressive
8707 Cumulative number of frames detected as progressive using multiple-frame detection.
8708
8709 @item single.undetermined
8710 Cumulative number of frames that could not be classified using single-frame detection.
8711
8712 @item multiple.undetermined
8713 Cumulative number of frames that could not be classified using multiple-frame detection.
8714
8715 @item repeated.current_frame
8716 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8717
8718 @item repeated.neither
8719 Cumulative number of frames with no repeated field.
8720
8721 @item repeated.top
8722 Cumulative number of frames with the top field repeated from the previous frame's top field.
8723
8724 @item repeated.bottom
8725 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8726 @end table
8727
8728 The filter accepts the following options:
8729
8730 @table @option
8731 @item intl_thres
8732 Set interlacing threshold.
8733 @item prog_thres
8734 Set progressive threshold.
8735 @item rep_thres
8736 Threshold for repeated field detection.
8737 @item half_life
8738 Number of frames after which a given frame's contribution to the
8739 statistics is halved (i.e., it contributes only 0.5 to it's
8740 classification). The default of 0 means that all frames seen are given
8741 full weight of 1.0 forever.
8742 @item analyze_interlaced_flag
8743 When this is not 0 then idet will use the specified number of frames to determine
8744 if the interlaced flag is accurate, it will not count undetermined frames.
8745 If the flag is found to be accurate it will be used without any further
8746 computations, if it is found to be inaccurate it will be cleared without any
8747 further computations. This allows inserting the idet filter as a low computational
8748 method to clean up the interlaced flag
8749 @end table
8750
8751 @section il
8752
8753 Deinterleave or interleave fields.
8754
8755 This filter allows one to process interlaced images fields without
8756 deinterlacing them. Deinterleaving splits the input frame into 2
8757 fields (so called half pictures). Odd lines are moved to the top
8758 half of the output image, even lines to the bottom half.
8759 You can process (filter) them independently and then re-interleave them.
8760
8761 The filter accepts the following options:
8762
8763 @table @option
8764 @item luma_mode, l
8765 @item chroma_mode, c
8766 @item alpha_mode, a
8767 Available values for @var{luma_mode}, @var{chroma_mode} and
8768 @var{alpha_mode} are:
8769
8770 @table @samp
8771 @item none
8772 Do nothing.
8773
8774 @item deinterleave, d
8775 Deinterleave fields, placing one above the other.
8776
8777 @item interleave, i
8778 Interleave fields. Reverse the effect of deinterleaving.
8779 @end table
8780 Default value is @code{none}.
8781
8782 @item luma_swap, ls
8783 @item chroma_swap, cs
8784 @item alpha_swap, as
8785 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8786 @end table
8787
8788 @section inflate
8789
8790 Apply inflate effect to the video.
8791
8792 This filter replaces the pixel by the local(3x3) average by taking into account
8793 only values higher than the pixel.
8794
8795 It accepts the following options:
8796
8797 @table @option
8798 @item threshold0
8799 @item threshold1
8800 @item threshold2
8801 @item threshold3
8802 Limit the maximum change for each plane, default is 65535.
8803 If 0, plane will remain unchanged.
8804 @end table
8805
8806 @section interlace
8807
8808 Simple interlacing filter from progressive contents. This interleaves upper (or
8809 lower) lines from odd frames with lower (or upper) lines from even frames,
8810 halving the frame rate and preserving image height.
8811
8812 @example
8813    Original        Original             New Frame
8814    Frame 'j'      Frame 'j+1'             (tff)
8815   ==========      ===========       ==================
8816     Line 0  -------------------->    Frame 'j' Line 0
8817     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8818     Line 2 --------------------->    Frame 'j' Line 2
8819     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8820      ...             ...                   ...
8821 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8822 @end example
8823
8824 It accepts the following optional parameters:
8825
8826 @table @option
8827 @item scan
8828 This determines whether the interlaced frame is taken from the even
8829 (tff - default) or odd (bff) lines of the progressive frame.
8830
8831 @item lowpass
8832 Enable (default) or disable the vertical lowpass filter to avoid twitter
8833 interlacing and reduce moire patterns.
8834 @end table
8835
8836 @section kerndeint
8837
8838 Deinterlace input video by applying Donald Graft's adaptive kernel
8839 deinterling. Work on interlaced parts of a video to produce
8840 progressive frames.
8841
8842 The description of the accepted parameters follows.
8843
8844 @table @option
8845 @item thresh
8846 Set the threshold which affects the filter's tolerance when
8847 determining if a pixel line must be processed. It must be an integer
8848 in the range [0,255] and defaults to 10. A value of 0 will result in
8849 applying the process on every pixels.
8850
8851 @item map
8852 Paint pixels exceeding the threshold value to white if set to 1.
8853 Default is 0.
8854
8855 @item order
8856 Set the fields order. Swap fields if set to 1, leave fields alone if
8857 0. Default is 0.
8858
8859 @item sharp
8860 Enable additional sharpening if set to 1. Default is 0.
8861
8862 @item twoway
8863 Enable twoway sharpening if set to 1. Default is 0.
8864 @end table
8865
8866 @subsection Examples
8867
8868 @itemize
8869 @item
8870 Apply default values:
8871 @example
8872 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8873 @end example
8874
8875 @item
8876 Enable additional sharpening:
8877 @example
8878 kerndeint=sharp=1
8879 @end example
8880
8881 @item
8882 Paint processed pixels in white:
8883 @example
8884 kerndeint=map=1
8885 @end example
8886 @end itemize
8887
8888 @section lenscorrection
8889
8890 Correct radial lens distortion
8891
8892 This filter can be used to correct for radial distortion as can result from the use
8893 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8894 one can use tools available for example as part of opencv or simply trial-and-error.
8895 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8896 and extract the k1 and k2 coefficients from the resulting matrix.
8897
8898 Note that effectively the same filter is available in the open-source tools Krita and
8899 Digikam from the KDE project.
8900
8901 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8902 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8903 brightness distribution, so you may want to use both filters together in certain
8904 cases, though you will have to take care of ordering, i.e. whether vignetting should
8905 be applied before or after lens correction.
8906
8907 @subsection Options
8908
8909 The filter accepts the following options:
8910
8911 @table @option
8912 @item cx
8913 Relative x-coordinate of the focal point of the image, and thereby the center of the
8914 distortion. This value has a range [0,1] and is expressed as fractions of the image
8915 width.
8916 @item cy
8917 Relative y-coordinate of the focal point of the image, and thereby the center of the
8918 distortion. This value has a range [0,1] and is expressed as fractions of the image
8919 height.
8920 @item k1
8921 Coefficient of the quadratic correction term. 0.5 means no correction.
8922 @item k2
8923 Coefficient of the double quadratic correction term. 0.5 means no correction.
8924 @end table
8925
8926 The formula that generates the correction is:
8927
8928 @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)
8929
8930 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8931 distances from the focal point in the source and target images, respectively.
8932
8933 @section loop, aloop
8934
8935 Loop video frames or audio samples.
8936
8937 Those filters accepts the following options:
8938
8939 @table @option
8940 @item loop
8941 Set the number of loops.
8942
8943 @item size
8944 Set maximal size in number of frames for @code{loop} filter or maximal number
8945 of samples in case of @code{aloop} filter.
8946
8947 @item start
8948 Set first frame of loop for @code{loop} filter or first sample of loop in case
8949 of @code{aloop} filter.
8950 @end table
8951
8952 @anchor{lut3d}
8953 @section lut3d
8954
8955 Apply a 3D LUT to an input video.
8956
8957 The filter accepts the following options:
8958
8959 @table @option
8960 @item file
8961 Set the 3D LUT file name.
8962
8963 Currently supported formats:
8964 @table @samp
8965 @item 3dl
8966 AfterEffects
8967 @item cube
8968 Iridas
8969 @item dat
8970 DaVinci
8971 @item m3d
8972 Pandora
8973 @end table
8974 @item interp
8975 Select interpolation mode.
8976
8977 Available values are:
8978
8979 @table @samp
8980 @item nearest
8981 Use values from the nearest defined point.
8982 @item trilinear
8983 Interpolate values using the 8 points defining a cube.
8984 @item tetrahedral
8985 Interpolate values using a tetrahedron.
8986 @end table
8987 @end table
8988
8989 @section lut, lutrgb, lutyuv
8990
8991 Compute a look-up table for binding each pixel component input value
8992 to an output value, and apply it to the input video.
8993
8994 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8995 to an RGB input video.
8996
8997 These filters accept the following parameters:
8998 @table @option
8999 @item c0
9000 set first pixel component expression
9001 @item c1
9002 set second pixel component expression
9003 @item c2
9004 set third pixel component expression
9005 @item c3
9006 set fourth pixel component expression, corresponds to the alpha component
9007
9008 @item r
9009 set red component expression
9010 @item g
9011 set green component expression
9012 @item b
9013 set blue component expression
9014 @item a
9015 alpha component expression
9016
9017 @item y
9018 set Y/luminance component expression
9019 @item u
9020 set U/Cb component expression
9021 @item v
9022 set V/Cr component expression
9023 @end table
9024
9025 Each of them specifies the expression to use for computing the lookup table for
9026 the corresponding pixel component values.
9027
9028 The exact component associated to each of the @var{c*} options depends on the
9029 format in input.
9030
9031 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9032 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9033
9034 The expressions can contain the following constants and functions:
9035
9036 @table @option
9037 @item w
9038 @item h
9039 The input width and height.
9040
9041 @item val
9042 The input value for the pixel component.
9043
9044 @item clipval
9045 The input value, clipped to the @var{minval}-@var{maxval} range.
9046
9047 @item maxval
9048 The maximum value for the pixel component.
9049
9050 @item minval
9051 The minimum value for the pixel component.
9052
9053 @item negval
9054 The negated value for the pixel component value, clipped to the
9055 @var{minval}-@var{maxval} range; it corresponds to the expression
9056 "maxval-clipval+minval".
9057
9058 @item clip(val)
9059 The computed value in @var{val}, clipped to the
9060 @var{minval}-@var{maxval} range.
9061
9062 @item gammaval(gamma)
9063 The computed gamma correction value of the pixel component value,
9064 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9065 expression
9066 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9067
9068 @end table
9069
9070 All expressions default to "val".
9071
9072 @subsection Examples
9073
9074 @itemize
9075 @item
9076 Negate input video:
9077 @example
9078 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9079 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9080 @end example
9081
9082 The above is the same as:
9083 @example
9084 lutrgb="r=negval:g=negval:b=negval"
9085 lutyuv="y=negval:u=negval:v=negval"
9086 @end example
9087
9088 @item
9089 Negate luminance:
9090 @example
9091 lutyuv=y=negval
9092 @end example
9093
9094 @item
9095 Remove chroma components, turning the video into a graytone image:
9096 @example
9097 lutyuv="u=128:v=128"
9098 @end example
9099
9100 @item
9101 Apply a luma burning effect:
9102 @example
9103 lutyuv="y=2*val"
9104 @end example
9105
9106 @item
9107 Remove green and blue components:
9108 @example
9109 lutrgb="g=0:b=0"
9110 @end example
9111
9112 @item
9113 Set a constant alpha channel value on input:
9114 @example
9115 format=rgba,lutrgb=a="maxval-minval/2"
9116 @end example
9117
9118 @item
9119 Correct luminance gamma by a factor of 0.5:
9120 @example
9121 lutyuv=y=gammaval(0.5)
9122 @end example
9123
9124 @item
9125 Discard least significant bits of luma:
9126 @example
9127 lutyuv=y='bitand(val, 128+64+32)'
9128 @end example
9129 @end itemize
9130
9131 @section maskedmerge
9132
9133 Merge the first input stream with the second input stream using per pixel
9134 weights in the third input stream.
9135
9136 A value of 0 in the third stream pixel component means that pixel component
9137 from first stream is returned unchanged, while maximum value (eg. 255 for
9138 8-bit videos) means that pixel component from second stream is returned
9139 unchanged. Intermediate values define the amount of merging between both
9140 input stream's pixel components.
9141
9142 This filter accepts the following options:
9143 @table @option
9144 @item planes
9145 Set which planes will be processed as bitmap, unprocessed planes will be
9146 copied from first stream.
9147 By default value 0xf, all planes will be processed.
9148 @end table
9149
9150 @section mcdeint
9151
9152 Apply motion-compensation deinterlacing.
9153
9154 It needs one field per frame as input and must thus be used together
9155 with yadif=1/3 or equivalent.
9156
9157 This filter accepts the following options:
9158 @table @option
9159 @item mode
9160 Set the deinterlacing mode.
9161
9162 It accepts one of the following values:
9163 @table @samp
9164 @item fast
9165 @item medium
9166 @item slow
9167 use iterative motion estimation
9168 @item extra_slow
9169 like @samp{slow}, but use multiple reference frames.
9170 @end table
9171 Default value is @samp{fast}.
9172
9173 @item parity
9174 Set the picture field parity assumed for the input video. It must be
9175 one of the following values:
9176
9177 @table @samp
9178 @item 0, tff
9179 assume top field first
9180 @item 1, bff
9181 assume bottom field first
9182 @end table
9183
9184 Default value is @samp{bff}.
9185
9186 @item qp
9187 Set per-block quantization parameter (QP) used by the internal
9188 encoder.
9189
9190 Higher values should result in a smoother motion vector field but less
9191 optimal individual vectors. Default value is 1.
9192 @end table
9193
9194 @section mergeplanes
9195
9196 Merge color channel components from several video streams.
9197
9198 The filter accepts up to 4 input streams, and merge selected input
9199 planes to the output video.
9200
9201 This filter accepts the following options:
9202 @table @option
9203 @item mapping
9204 Set input to output plane mapping. Default is @code{0}.
9205
9206 The mappings is specified as a bitmap. It should be specified as a
9207 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9208 mapping for the first plane of the output stream. 'A' sets the number of
9209 the input stream to use (from 0 to 3), and 'a' the plane number of the
9210 corresponding input to use (from 0 to 3). The rest of the mappings is
9211 similar, 'Bb' describes the mapping for the output stream second
9212 plane, 'Cc' describes the mapping for the output stream third plane and
9213 'Dd' describes the mapping for the output stream fourth plane.
9214
9215 @item format
9216 Set output pixel format. Default is @code{yuva444p}.
9217 @end table
9218
9219 @subsection Examples
9220
9221 @itemize
9222 @item
9223 Merge three gray video streams of same width and height into single video stream:
9224 @example
9225 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9226 @end example
9227
9228 @item
9229 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9230 @example
9231 [a0][a1]mergeplanes=0x00010210:yuva444p
9232 @end example
9233
9234 @item
9235 Swap Y and A plane in yuva444p stream:
9236 @example
9237 format=yuva444p,mergeplanes=0x03010200:yuva444p
9238 @end example
9239
9240 @item
9241 Swap U and V plane in yuv420p stream:
9242 @example
9243 format=yuv420p,mergeplanes=0x000201:yuv420p
9244 @end example
9245
9246 @item
9247 Cast a rgb24 clip to yuv444p:
9248 @example
9249 format=rgb24,mergeplanes=0x000102:yuv444p
9250 @end example
9251 @end itemize
9252
9253 @section metadata, ametadata
9254
9255 Manipulate frame metadata.
9256
9257 This filter accepts the following options:
9258
9259 @table @option
9260 @item mode
9261 Set mode of operation of the filter.
9262
9263 Can be one of the following:
9264
9265 @table @samp
9266 @item select
9267 If both @code{value} and @code{key} is set, select frames
9268 which have such metadata. If only @code{key} is set, select
9269 every frame that has such key in metadata.
9270
9271 @item add
9272 Add new metadata @code{key} and @code{value}. If key is already available
9273 do nothing.
9274
9275 @item modify
9276 Modify value of already present key.
9277
9278 @item delete
9279 If @code{value} is set, delete only keys that have such value.
9280 Otherwise, delete key.
9281
9282 @item print
9283 Print key and its value if metadata was found. If @code{key} is not set print all
9284 metadata values available in frame.
9285 @end table
9286
9287 @item key
9288 Set key used with all modes. Must be set for all modes except @code{print}.
9289
9290 @item value
9291 Set metadata value which will be used. This option is mandatory for
9292 @code{modify} and @code{add} mode.
9293
9294 @item function
9295 Which function to use when comparing metadata value and @code{value}.
9296
9297 Can be one of following:
9298
9299 @table @samp
9300 @item same_str
9301 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
9302
9303 @item starts_with
9304 Values are interpreted as strings, returns true if metadata value starts with
9305 the @code{value} option string.
9306
9307 @item less
9308 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
9309
9310 @item equal
9311 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
9312
9313 @item greater
9314 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
9315
9316 @item expr
9317 Values are interpreted as floats, returns true if expression from option @code{expr}
9318 evaluates to true.
9319 @end table
9320
9321 @item expr
9322 Set expression which is used when @code{function} is set to @code{expr}.
9323 The expression is evaluated through the eval API and can contain the following
9324 constants:
9325
9326 @table @option
9327 @item VALUE1
9328 Float representation of @code{value} from metadata key.
9329
9330 @item VALUE2
9331 Float representation of @code{value} as supplied by user in @code{value} option.
9332 @end table
9333
9334 @item file
9335 If specified in @code{print} mode, output is written to the named file. When
9336 filename equals "-" data is written to standard output.
9337 If @code{file} option is not set, output is written to the log with AV_LOG_INFO
9338 loglevel.
9339 @end table
9340
9341 @subsection Examples
9342
9343 @itemize
9344 @item
9345 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
9346 between 0 and 1.
9347 @example
9348 @end example
9349 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
9350 @end itemize
9351
9352 @section mpdecimate
9353
9354 Drop frames that do not differ greatly from the previous frame in
9355 order to reduce frame rate.
9356
9357 The main use of this filter is for very-low-bitrate encoding
9358 (e.g. streaming over dialup modem), but it could in theory be used for
9359 fixing movies that were inverse-telecined incorrectly.
9360
9361 A description of the accepted options follows.
9362
9363 @table @option
9364 @item max
9365 Set the maximum number of consecutive frames which can be dropped (if
9366 positive), or the minimum interval between dropped frames (if
9367 negative). If the value is 0, the frame is dropped unregarding the
9368 number of previous sequentially dropped frames.
9369
9370 Default value is 0.
9371
9372 @item hi
9373 @item lo
9374 @item frac
9375 Set the dropping threshold values.
9376
9377 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9378 represent actual pixel value differences, so a threshold of 64
9379 corresponds to 1 unit of difference for each pixel, or the same spread
9380 out differently over the block.
9381
9382 A frame is a candidate for dropping if no 8x8 blocks differ by more
9383 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9384 meaning the whole image) differ by more than a threshold of @option{lo}.
9385
9386 Default value for @option{hi} is 64*12, default value for @option{lo} is
9387 64*5, and default value for @option{frac} is 0.33.
9388 @end table
9389
9390
9391 @section negate
9392
9393 Negate input video.
9394
9395 It accepts an integer in input; if non-zero it negates the
9396 alpha component (if available). The default value in input is 0.
9397
9398 @section nnedi
9399
9400 Deinterlace video using neural network edge directed interpolation.
9401
9402 This filter accepts the following options:
9403
9404 @table @option
9405 @item weights
9406 Mandatory option, without binary file filter can not work.
9407 Currently file can be found here:
9408 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9409
9410 @item deint
9411 Set which frames to deinterlace, by default it is @code{all}.
9412 Can be @code{all} or @code{interlaced}.
9413
9414 @item field
9415 Set mode of operation.
9416
9417 Can be one of the following:
9418
9419 @table @samp
9420 @item af
9421 Use frame flags, both fields.
9422 @item a
9423 Use frame flags, single field.
9424 @item t
9425 Use top field only.
9426 @item b
9427 Use bottom field only.
9428 @item tf
9429 Use both fields, top first.
9430 @item bf
9431 Use both fields, bottom first.
9432 @end table
9433
9434 @item planes
9435 Set which planes to process, by default filter process all frames.
9436
9437 @item nsize
9438 Set size of local neighborhood around each pixel, used by the predictor neural
9439 network.
9440
9441 Can be one of the following:
9442
9443 @table @samp
9444 @item s8x6
9445 @item s16x6
9446 @item s32x6
9447 @item s48x6
9448 @item s8x4
9449 @item s16x4
9450 @item s32x4
9451 @end table
9452
9453 @item nns
9454 Set the number of neurons in predicctor neural network.
9455 Can be one of the following:
9456
9457 @table @samp
9458 @item n16
9459 @item n32
9460 @item n64
9461 @item n128
9462 @item n256
9463 @end table
9464
9465 @item qual
9466 Controls the number of different neural network predictions that are blended
9467 together to compute the final output value. Can be @code{fast}, default or
9468 @code{slow}.
9469
9470 @item etype
9471 Set which set of weights to use in the predictor.
9472 Can be one of the following:
9473
9474 @table @samp
9475 @item a
9476 weights trained to minimize absolute error
9477 @item s
9478 weights trained to minimize squared error
9479 @end table
9480
9481 @item pscrn
9482 Controls whether or not the prescreener neural network is used to decide
9483 which pixels should be processed by the predictor neural network and which
9484 can be handled by simple cubic interpolation.
9485 The prescreener is trained to know whether cubic interpolation will be
9486 sufficient for a pixel or whether it should be predicted by the predictor nn.
9487 The computational complexity of the prescreener nn is much less than that of
9488 the predictor nn. Since most pixels can be handled by cubic interpolation,
9489 using the prescreener generally results in much faster processing.
9490 The prescreener is pretty accurate, so the difference between using it and not
9491 using it is almost always unnoticeable.
9492
9493 Can be one of the following:
9494
9495 @table @samp
9496 @item none
9497 @item original
9498 @item new
9499 @end table
9500
9501 Default is @code{new}.
9502
9503 @item fapprox
9504 Set various debugging flags.
9505 @end table
9506
9507 @section noformat
9508
9509 Force libavfilter not to use any of the specified pixel formats for the
9510 input to the next filter.
9511
9512 It accepts the following parameters:
9513 @table @option
9514
9515 @item pix_fmts
9516 A '|'-separated list of pixel format names, such as
9517 apix_fmts=yuv420p|monow|rgb24".
9518
9519 @end table
9520
9521 @subsection Examples
9522
9523 @itemize
9524 @item
9525 Force libavfilter to use a format different from @var{yuv420p} for the
9526 input to the vflip filter:
9527 @example
9528 noformat=pix_fmts=yuv420p,vflip
9529 @end example
9530
9531 @item
9532 Convert the input video to any of the formats not contained in the list:
9533 @example
9534 noformat=yuv420p|yuv444p|yuv410p
9535 @end example
9536 @end itemize
9537
9538 @section noise
9539
9540 Add noise on video input frame.
9541
9542 The filter accepts the following options:
9543
9544 @table @option
9545 @item all_seed
9546 @item c0_seed
9547 @item c1_seed
9548 @item c2_seed
9549 @item c3_seed
9550 Set noise seed for specific pixel component or all pixel components in case
9551 of @var{all_seed}. Default value is @code{123457}.
9552
9553 @item all_strength, alls
9554 @item c0_strength, c0s
9555 @item c1_strength, c1s
9556 @item c2_strength, c2s
9557 @item c3_strength, c3s
9558 Set noise strength for specific pixel component or all pixel components in case
9559 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9560
9561 @item all_flags, allf
9562 @item c0_flags, c0f
9563 @item c1_flags, c1f
9564 @item c2_flags, c2f
9565 @item c3_flags, c3f
9566 Set pixel component flags or set flags for all components if @var{all_flags}.
9567 Available values for component flags are:
9568 @table @samp
9569 @item a
9570 averaged temporal noise (smoother)
9571 @item p
9572 mix random noise with a (semi)regular pattern
9573 @item t
9574 temporal noise (noise pattern changes between frames)
9575 @item u
9576 uniform noise (gaussian otherwise)
9577 @end table
9578 @end table
9579
9580 @subsection Examples
9581
9582 Add temporal and uniform noise to input video:
9583 @example
9584 noise=alls=20:allf=t+u
9585 @end example
9586
9587 @section null
9588
9589 Pass the video source unchanged to the output.
9590
9591 @section ocr
9592 Optical Character Recognition
9593
9594 This filter uses Tesseract for optical character recognition.
9595
9596 It accepts the following options:
9597
9598 @table @option
9599 @item datapath
9600 Set datapath to tesseract data. Default is to use whatever was
9601 set at installation.
9602
9603 @item language
9604 Set language, default is "eng".
9605
9606 @item whitelist
9607 Set character whitelist.
9608
9609 @item blacklist
9610 Set character blacklist.
9611 @end table
9612
9613 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9614
9615 @section ocv
9616
9617 Apply a video transform using libopencv.
9618
9619 To enable this filter, install the libopencv library and headers and
9620 configure FFmpeg with @code{--enable-libopencv}.
9621
9622 It accepts the following parameters:
9623
9624 @table @option
9625
9626 @item filter_name
9627 The name of the libopencv filter to apply.
9628
9629 @item filter_params
9630 The parameters to pass to the libopencv filter. If not specified, the default
9631 values are assumed.
9632
9633 @end table
9634
9635 Refer to the official libopencv documentation for more precise
9636 information:
9637 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9638
9639 Several libopencv filters are supported; see the following subsections.
9640
9641 @anchor{dilate}
9642 @subsection dilate
9643
9644 Dilate an image by using a specific structuring element.
9645 It corresponds to the libopencv function @code{cvDilate}.
9646
9647 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9648
9649 @var{struct_el} represents a structuring element, and has the syntax:
9650 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9651
9652 @var{cols} and @var{rows} represent the number of columns and rows of
9653 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9654 point, and @var{shape} the shape for the structuring element. @var{shape}
9655 must be "rect", "cross", "ellipse", or "custom".
9656
9657 If the value for @var{shape} is "custom", it must be followed by a
9658 string of the form "=@var{filename}". The file with name
9659 @var{filename} is assumed to represent a binary image, with each
9660 printable character corresponding to a bright pixel. When a custom
9661 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9662 or columns and rows of the read file are assumed instead.
9663
9664 The default value for @var{struct_el} is "3x3+0x0/rect".
9665
9666 @var{nb_iterations} specifies the number of times the transform is
9667 applied to the image, and defaults to 1.
9668
9669 Some examples:
9670 @example
9671 # Use the default values
9672 ocv=dilate
9673
9674 # Dilate using a structuring element with a 5x5 cross, iterating two times
9675 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9676
9677 # Read the shape from the file diamond.shape, iterating two times.
9678 # The file diamond.shape may contain a pattern of characters like this
9679 #   *
9680 #  ***
9681 # *****
9682 #  ***
9683 #   *
9684 # The specified columns and rows are ignored
9685 # but the anchor point coordinates are not
9686 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9687 @end example
9688
9689 @subsection erode
9690
9691 Erode an image by using a specific structuring element.
9692 It corresponds to the libopencv function @code{cvErode}.
9693
9694 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9695 with the same syntax and semantics as the @ref{dilate} filter.
9696
9697 @subsection smooth
9698
9699 Smooth the input video.
9700
9701 The filter takes the following parameters:
9702 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9703
9704 @var{type} is the type of smooth filter to apply, and must be one of
9705 the following values: "blur", "blur_no_scale", "median", "gaussian",
9706 or "bilateral". The default value is "gaussian".
9707
9708 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9709 depend on the smooth type. @var{param1} and
9710 @var{param2} accept integer positive values or 0. @var{param3} and
9711 @var{param4} accept floating point values.
9712
9713 The default value for @var{param1} is 3. The default value for the
9714 other parameters is 0.
9715
9716 These parameters correspond to the parameters assigned to the
9717 libopencv function @code{cvSmooth}.
9718
9719 @anchor{overlay}
9720 @section overlay
9721
9722 Overlay one video on top of another.
9723
9724 It takes two inputs and has one output. The first input is the "main"
9725 video on which the second input is overlaid.
9726
9727 It accepts the following parameters:
9728
9729 A description of the accepted options follows.
9730
9731 @table @option
9732 @item x
9733 @item y
9734 Set the expression for the x and y coordinates of the overlaid video
9735 on the main video. Default value is "0" for both expressions. In case
9736 the expression is invalid, it is set to a huge value (meaning that the
9737 overlay will not be displayed within the output visible area).
9738
9739 @item eof_action
9740 The action to take when EOF is encountered on the secondary input; it accepts
9741 one of the following values:
9742
9743 @table @option
9744 @item repeat
9745 Repeat the last frame (the default).
9746 @item endall
9747 End both streams.
9748 @item pass
9749 Pass the main input through.
9750 @end table
9751
9752 @item eval
9753 Set when the expressions for @option{x}, and @option{y} are evaluated.
9754
9755 It accepts the following values:
9756 @table @samp
9757 @item init
9758 only evaluate expressions once during the filter initialization or
9759 when a command is processed
9760
9761 @item frame
9762 evaluate expressions for each incoming frame
9763 @end table
9764
9765 Default value is @samp{frame}.
9766
9767 @item shortest
9768 If set to 1, force the output to terminate when the shortest input
9769 terminates. Default value is 0.
9770
9771 @item format
9772 Set the format for the output video.
9773
9774 It accepts the following values:
9775 @table @samp
9776 @item yuv420
9777 force YUV420 output
9778
9779 @item yuv422
9780 force YUV422 output
9781
9782 @item yuv444
9783 force YUV444 output
9784
9785 @item rgb
9786 force RGB output
9787 @end table
9788
9789 Default value is @samp{yuv420}.
9790
9791 @item rgb @emph{(deprecated)}
9792 If set to 1, force the filter to accept inputs in the RGB
9793 color space. Default value is 0. This option is deprecated, use
9794 @option{format} instead.
9795
9796 @item repeatlast
9797 If set to 1, force the filter to draw the last overlay frame over the
9798 main input until the end of the stream. A value of 0 disables this
9799 behavior. Default value is 1.
9800 @end table
9801
9802 The @option{x}, and @option{y} expressions can contain the following
9803 parameters.
9804
9805 @table @option
9806 @item main_w, W
9807 @item main_h, H
9808 The main input width and height.
9809
9810 @item overlay_w, w
9811 @item overlay_h, h
9812 The overlay input width and height.
9813
9814 @item x
9815 @item y
9816 The computed values for @var{x} and @var{y}. They are evaluated for
9817 each new frame.
9818
9819 @item hsub
9820 @item vsub
9821 horizontal and vertical chroma subsample values of the output
9822 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9823 @var{vsub} is 1.
9824
9825 @item n
9826 the number of input frame, starting from 0
9827
9828 @item pos
9829 the position in the file of the input frame, NAN if unknown
9830
9831 @item t
9832 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9833
9834 @end table
9835
9836 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9837 when evaluation is done @emph{per frame}, and will evaluate to NAN
9838 when @option{eval} is set to @samp{init}.
9839
9840 Be aware that frames are taken from each input video in timestamp
9841 order, hence, if their initial timestamps differ, it is a good idea
9842 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9843 have them begin in the same zero timestamp, as the example for
9844 the @var{movie} filter does.
9845
9846 You can chain together more overlays but you should test the
9847 efficiency of such approach.
9848
9849 @subsection Commands
9850
9851 This filter supports the following commands:
9852 @table @option
9853 @item x
9854 @item y
9855 Modify the x and y of the overlay input.
9856 The command accepts the same syntax of the corresponding option.
9857
9858 If the specified expression is not valid, it is kept at its current
9859 value.
9860 @end table
9861
9862 @subsection Examples
9863
9864 @itemize
9865 @item
9866 Draw the overlay at 10 pixels from the bottom right corner of the main
9867 video:
9868 @example
9869 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9870 @end example
9871
9872 Using named options the example above becomes:
9873 @example
9874 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9875 @end example
9876
9877 @item
9878 Insert a transparent PNG logo in the bottom left corner of the input,
9879 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9880 @example
9881 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9882 @end example
9883
9884 @item
9885 Insert 2 different transparent PNG logos (second logo on bottom
9886 right corner) using the @command{ffmpeg} tool:
9887 @example
9888 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
9889 @end example
9890
9891 @item
9892 Add a transparent color layer on top of the main video; @code{WxH}
9893 must specify the size of the main input to the overlay filter:
9894 @example
9895 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9896 @end example
9897
9898 @item
9899 Play an original video and a filtered version (here with the deshake
9900 filter) side by side using the @command{ffplay} tool:
9901 @example
9902 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9903 @end example
9904
9905 The above command is the same as:
9906 @example
9907 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9908 @end example
9909
9910 @item
9911 Make a sliding overlay appearing from the left to the right top part of the
9912 screen starting since time 2:
9913 @example
9914 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9915 @end example
9916
9917 @item
9918 Compose output by putting two input videos side to side:
9919 @example
9920 ffmpeg -i left.avi -i right.avi -filter_complex "
9921 nullsrc=size=200x100 [background];
9922 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9923 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9924 [background][left]       overlay=shortest=1       [background+left];
9925 [background+left][right] overlay=shortest=1:x=100 [left+right]
9926 "
9927 @end example
9928
9929 @item
9930 Mask 10-20 seconds of a video by applying the delogo filter to a section
9931 @example
9932 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9933 -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]'
9934 masked.avi
9935 @end example
9936
9937 @item
9938 Chain several overlays in cascade:
9939 @example
9940 nullsrc=s=200x200 [bg];
9941 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9942 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9943 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9944 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9945 [in3] null,       [mid2] overlay=100:100 [out0]
9946 @end example
9947
9948 @end itemize
9949
9950 @section owdenoise
9951
9952 Apply Overcomplete Wavelet denoiser.
9953
9954 The filter accepts the following options:
9955
9956 @table @option
9957 @item depth
9958 Set depth.
9959
9960 Larger depth values will denoise lower frequency components more, but
9961 slow down filtering.
9962
9963 Must be an int in the range 8-16, default is @code{8}.
9964
9965 @item luma_strength, ls
9966 Set luma strength.
9967
9968 Must be a double value in the range 0-1000, default is @code{1.0}.
9969
9970 @item chroma_strength, cs
9971 Set chroma strength.
9972
9973 Must be a double value in the range 0-1000, default is @code{1.0}.
9974 @end table
9975
9976 @anchor{pad}
9977 @section pad
9978
9979 Add paddings to the input image, and place the original input at the
9980 provided @var{x}, @var{y} coordinates.
9981
9982 It accepts the following parameters:
9983
9984 @table @option
9985 @item width, w
9986 @item height, h
9987 Specify an expression for the size of the output image with the
9988 paddings added. If the value for @var{width} or @var{height} is 0, the
9989 corresponding input size is used for the output.
9990
9991 The @var{width} expression can reference the value set by the
9992 @var{height} expression, and vice versa.
9993
9994 The default value of @var{width} and @var{height} is 0.
9995
9996 @item x
9997 @item y
9998 Specify the offsets to place the input image at within the padded area,
9999 with respect to the top/left border of the output image.
10000
10001 The @var{x} expression can reference the value set by the @var{y}
10002 expression, and vice versa.
10003
10004 The default value of @var{x} and @var{y} is 0.
10005
10006 @item color
10007 Specify the color of the padded area. For the syntax of this option,
10008 check the "Color" section in the ffmpeg-utils manual.
10009
10010 The default value of @var{color} is "black".
10011 @end table
10012
10013 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10014 options are expressions containing the following constants:
10015
10016 @table @option
10017 @item in_w
10018 @item in_h
10019 The input video width and height.
10020
10021 @item iw
10022 @item ih
10023 These are the same as @var{in_w} and @var{in_h}.
10024
10025 @item out_w
10026 @item out_h
10027 The output width and height (the size of the padded area), as
10028 specified by the @var{width} and @var{height} expressions.
10029
10030 @item ow
10031 @item oh
10032 These are the same as @var{out_w} and @var{out_h}.
10033
10034 @item x
10035 @item y
10036 The x and y offsets as specified by the @var{x} and @var{y}
10037 expressions, or NAN if not yet specified.
10038
10039 @item a
10040 same as @var{iw} / @var{ih}
10041
10042 @item sar
10043 input sample aspect ratio
10044
10045 @item dar
10046 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10047
10048 @item hsub
10049 @item vsub
10050 The horizontal and vertical chroma subsample values. For example for the
10051 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10052 @end table
10053
10054 @subsection Examples
10055
10056 @itemize
10057 @item
10058 Add paddings with the color "violet" to the input video. The output video
10059 size is 640x480, and the top-left corner of the input video is placed at
10060 column 0, row 40
10061 @example
10062 pad=640:480:0:40:violet
10063 @end example
10064
10065 The example above is equivalent to the following command:
10066 @example
10067 pad=width=640:height=480:x=0:y=40:color=violet
10068 @end example
10069
10070 @item
10071 Pad the input to get an output with dimensions increased by 3/2,
10072 and put the input video at the center of the padded area:
10073 @example
10074 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10075 @end example
10076
10077 @item
10078 Pad the input to get a squared output with size equal to the maximum
10079 value between the input width and height, and put the input video at
10080 the center of the padded area:
10081 @example
10082 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10083 @end example
10084
10085 @item
10086 Pad the input to get a final w/h ratio of 16:9:
10087 @example
10088 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10089 @end example
10090
10091 @item
10092 In case of anamorphic video, in order to set the output display aspect
10093 correctly, it is necessary to use @var{sar} in the expression,
10094 according to the relation:
10095 @example
10096 (ih * X / ih) * sar = output_dar
10097 X = output_dar / sar
10098 @end example
10099
10100 Thus the previous example needs to be modified to:
10101 @example
10102 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10103 @end example
10104
10105 @item
10106 Double the output size and put the input video in the bottom-right
10107 corner of the output padded area:
10108 @example
10109 pad="2*iw:2*ih:ow-iw:oh-ih"
10110 @end example
10111 @end itemize
10112
10113 @anchor{palettegen}
10114 @section palettegen
10115
10116 Generate one palette for a whole video stream.
10117
10118 It accepts the following options:
10119
10120 @table @option
10121 @item max_colors
10122 Set the maximum number of colors to quantize in the palette.
10123 Note: the palette will still contain 256 colors; the unused palette entries
10124 will be black.
10125
10126 @item reserve_transparent
10127 Create a palette of 255 colors maximum and reserve the last one for
10128 transparency. Reserving the transparency color is useful for GIF optimization.
10129 If not set, the maximum of colors in the palette will be 256. You probably want
10130 to disable this option for a standalone image.
10131 Set by default.
10132
10133 @item stats_mode
10134 Set statistics mode.
10135
10136 It accepts the following values:
10137 @table @samp
10138 @item full
10139 Compute full frame histograms.
10140 @item diff
10141 Compute histograms only for the part that differs from previous frame. This
10142 might be relevant to give more importance to the moving part of your input if
10143 the background is static.
10144 @end table
10145
10146 Default value is @var{full}.
10147 @end table
10148
10149 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10150 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10151 color quantization of the palette. This information is also visible at
10152 @var{info} logging level.
10153
10154 @subsection Examples
10155
10156 @itemize
10157 @item
10158 Generate a representative palette of a given video using @command{ffmpeg}:
10159 @example
10160 ffmpeg -i input.mkv -vf palettegen palette.png
10161 @end example
10162 @end itemize
10163
10164 @section paletteuse
10165
10166 Use a palette to downsample an input video stream.
10167
10168 The filter takes two inputs: one video stream and a palette. The palette must
10169 be a 256 pixels image.
10170
10171 It accepts the following options:
10172
10173 @table @option
10174 @item dither
10175 Select dithering mode. Available algorithms are:
10176 @table @samp
10177 @item bayer
10178 Ordered 8x8 bayer dithering (deterministic)
10179 @item heckbert
10180 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10181 Note: this dithering is sometimes considered "wrong" and is included as a
10182 reference.
10183 @item floyd_steinberg
10184 Floyd and Steingberg dithering (error diffusion)
10185 @item sierra2
10186 Frankie Sierra dithering v2 (error diffusion)
10187 @item sierra2_4a
10188 Frankie Sierra dithering v2 "Lite" (error diffusion)
10189 @end table
10190
10191 Default is @var{sierra2_4a}.
10192
10193 @item bayer_scale
10194 When @var{bayer} dithering is selected, this option defines the scale of the
10195 pattern (how much the crosshatch pattern is visible). A low value means more
10196 visible pattern for less banding, and higher value means less visible pattern
10197 at the cost of more banding.
10198
10199 The option must be an integer value in the range [0,5]. Default is @var{2}.
10200
10201 @item diff_mode
10202 If set, define the zone to process
10203
10204 @table @samp
10205 @item rectangle
10206 Only the changing rectangle will be reprocessed. This is similar to GIF
10207 cropping/offsetting compression mechanism. This option can be useful for speed
10208 if only a part of the image is changing, and has use cases such as limiting the
10209 scope of the error diffusal @option{dither} to the rectangle that bounds the
10210 moving scene (it leads to more deterministic output if the scene doesn't change
10211 much, and as a result less moving noise and better GIF compression).
10212 @end table
10213
10214 Default is @var{none}.
10215 @end table
10216
10217 @subsection Examples
10218
10219 @itemize
10220 @item
10221 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10222 using @command{ffmpeg}:
10223 @example
10224 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10225 @end example
10226 @end itemize
10227
10228 @section perspective
10229
10230 Correct perspective of video not recorded perpendicular to the screen.
10231
10232 A description of the accepted parameters follows.
10233
10234 @table @option
10235 @item x0
10236 @item y0
10237 @item x1
10238 @item y1
10239 @item x2
10240 @item y2
10241 @item x3
10242 @item y3
10243 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10244 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10245 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10246 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10247 then the corners of the source will be sent to the specified coordinates.
10248
10249 The expressions can use the following variables:
10250
10251 @table @option
10252 @item W
10253 @item H
10254 the width and height of video frame.
10255 @item in
10256 Input frame count.
10257 @item on
10258 Output frame count.
10259 @end table
10260
10261 @item interpolation
10262 Set interpolation for perspective correction.
10263
10264 It accepts the following values:
10265 @table @samp
10266 @item linear
10267 @item cubic
10268 @end table
10269
10270 Default value is @samp{linear}.
10271
10272 @item sense
10273 Set interpretation of coordinate options.
10274
10275 It accepts the following values:
10276 @table @samp
10277 @item 0, source
10278
10279 Send point in the source specified by the given coordinates to
10280 the corners of the destination.
10281
10282 @item 1, destination
10283
10284 Send the corners of the source to the point in the destination specified
10285 by the given coordinates.
10286
10287 Default value is @samp{source}.
10288 @end table
10289
10290 @item eval
10291 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10292
10293 It accepts the following values:
10294 @table @samp
10295 @item init
10296 only evaluate expressions once during the filter initialization or
10297 when a command is processed
10298
10299 @item frame
10300 evaluate expressions for each incoming frame
10301 @end table
10302
10303 Default value is @samp{init}.
10304 @end table
10305
10306 @section phase
10307
10308 Delay interlaced video by one field time so that the field order changes.
10309
10310 The intended use is to fix PAL movies that have been captured with the
10311 opposite field order to the film-to-video transfer.
10312
10313 A description of the accepted parameters follows.
10314
10315 @table @option
10316 @item mode
10317 Set phase mode.
10318
10319 It accepts the following values:
10320 @table @samp
10321 @item t
10322 Capture field order top-first, transfer bottom-first.
10323 Filter will delay the bottom field.
10324
10325 @item b
10326 Capture field order bottom-first, transfer top-first.
10327 Filter will delay the top field.
10328
10329 @item p
10330 Capture and transfer with the same field order. This mode only exists
10331 for the documentation of the other options to refer to, but if you
10332 actually select it, the filter will faithfully do nothing.
10333
10334 @item a
10335 Capture field order determined automatically by field flags, transfer
10336 opposite.
10337 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10338 basis using field flags. If no field information is available,
10339 then this works just like @samp{u}.
10340
10341 @item u
10342 Capture unknown or varying, transfer opposite.
10343 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10344 analyzing the images and selecting the alternative that produces best
10345 match between the fields.
10346
10347 @item T
10348 Capture top-first, transfer unknown or varying.
10349 Filter selects among @samp{t} and @samp{p} using image analysis.
10350
10351 @item B
10352 Capture bottom-first, transfer unknown or varying.
10353 Filter selects among @samp{b} and @samp{p} using image analysis.
10354
10355 @item A
10356 Capture determined by field flags, transfer unknown or varying.
10357 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10358 image analysis. If no field information is available, then this works just
10359 like @samp{U}. This is the default mode.
10360
10361 @item U
10362 Both capture and transfer unknown or varying.
10363 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10364 @end table
10365 @end table
10366
10367 @section pixdesctest
10368
10369 Pixel format descriptor test filter, mainly useful for internal
10370 testing. The output video should be equal to the input video.
10371
10372 For example:
10373 @example
10374 format=monow, pixdesctest
10375 @end example
10376
10377 can be used to test the monowhite pixel format descriptor definition.
10378
10379 @section pp
10380
10381 Enable the specified chain of postprocessing subfilters using libpostproc. This
10382 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10383 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10384 Each subfilter and some options have a short and a long name that can be used
10385 interchangeably, i.e. dr/dering are the same.
10386
10387 The filters accept the following options:
10388
10389 @table @option
10390 @item subfilters
10391 Set postprocessing subfilters string.
10392 @end table
10393
10394 All subfilters share common options to determine their scope:
10395
10396 @table @option
10397 @item a/autoq
10398 Honor the quality commands for this subfilter.
10399
10400 @item c/chrom
10401 Do chrominance filtering, too (default).
10402
10403 @item y/nochrom
10404 Do luminance filtering only (no chrominance).
10405
10406 @item n/noluma
10407 Do chrominance filtering only (no luminance).
10408 @end table
10409
10410 These options can be appended after the subfilter name, separated by a '|'.
10411
10412 Available subfilters are:
10413
10414 @table @option
10415 @item hb/hdeblock[|difference[|flatness]]
10416 Horizontal deblocking filter
10417 @table @option
10418 @item difference
10419 Difference factor where higher values mean more deblocking (default: @code{32}).
10420 @item flatness
10421 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10422 @end table
10423
10424 @item vb/vdeblock[|difference[|flatness]]
10425 Vertical deblocking filter
10426 @table @option
10427 @item difference
10428 Difference factor where higher values mean more deblocking (default: @code{32}).
10429 @item flatness
10430 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10431 @end table
10432
10433 @item ha/hadeblock[|difference[|flatness]]
10434 Accurate horizontal deblocking filter
10435 @table @option
10436 @item difference
10437 Difference factor where higher values mean more deblocking (default: @code{32}).
10438 @item flatness
10439 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10440 @end table
10441
10442 @item va/vadeblock[|difference[|flatness]]
10443 Accurate vertical deblocking filter
10444 @table @option
10445 @item difference
10446 Difference factor where higher values mean more deblocking (default: @code{32}).
10447 @item flatness
10448 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10449 @end table
10450 @end table
10451
10452 The horizontal and vertical deblocking filters share the difference and
10453 flatness values so you cannot set different horizontal and vertical
10454 thresholds.
10455
10456 @table @option
10457 @item h1/x1hdeblock
10458 Experimental horizontal deblocking filter
10459
10460 @item v1/x1vdeblock
10461 Experimental vertical deblocking filter
10462
10463 @item dr/dering
10464 Deringing filter
10465
10466 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10467 @table @option
10468 @item threshold1
10469 larger -> stronger filtering
10470 @item threshold2
10471 larger -> stronger filtering
10472 @item threshold3
10473 larger -> stronger filtering
10474 @end table
10475
10476 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10477 @table @option
10478 @item f/fullyrange
10479 Stretch luminance to @code{0-255}.
10480 @end table
10481
10482 @item lb/linblenddeint
10483 Linear blend deinterlacing filter that deinterlaces the given block by
10484 filtering all lines with a @code{(1 2 1)} filter.
10485
10486 @item li/linipoldeint
10487 Linear interpolating deinterlacing filter that deinterlaces the given block by
10488 linearly interpolating every second line.
10489
10490 @item ci/cubicipoldeint
10491 Cubic interpolating deinterlacing filter deinterlaces the given block by
10492 cubically interpolating every second line.
10493
10494 @item md/mediandeint
10495 Median deinterlacing filter that deinterlaces the given block by applying a
10496 median filter to every second line.
10497
10498 @item fd/ffmpegdeint
10499 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10500 second line with a @code{(-1 4 2 4 -1)} filter.
10501
10502 @item l5/lowpass5
10503 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10504 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10505
10506 @item fq/forceQuant[|quantizer]
10507 Overrides the quantizer table from the input with the constant quantizer you
10508 specify.
10509 @table @option
10510 @item quantizer
10511 Quantizer to use
10512 @end table
10513
10514 @item de/default
10515 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10516
10517 @item fa/fast
10518 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10519
10520 @item ac
10521 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10522 @end table
10523
10524 @subsection Examples
10525
10526 @itemize
10527 @item
10528 Apply horizontal and vertical deblocking, deringing and automatic
10529 brightness/contrast:
10530 @example
10531 pp=hb/vb/dr/al
10532 @end example
10533
10534 @item
10535 Apply default filters without brightness/contrast correction:
10536 @example
10537 pp=de/-al
10538 @end example
10539
10540 @item
10541 Apply default filters and temporal denoiser:
10542 @example
10543 pp=default/tmpnoise|1|2|3
10544 @end example
10545
10546 @item
10547 Apply deblocking on luminance only, and switch vertical deblocking on or off
10548 automatically depending on available CPU time:
10549 @example
10550 pp=hb|y/vb|a
10551 @end example
10552 @end itemize
10553
10554 @section pp7
10555 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10556 similar to spp = 6 with 7 point DCT, where only the center sample is
10557 used after IDCT.
10558
10559 The filter accepts the following options:
10560
10561 @table @option
10562 @item qp
10563 Force a constant quantization parameter. It accepts an integer in range
10564 0 to 63. If not set, the filter will use the QP from the video stream
10565 (if available).
10566
10567 @item mode
10568 Set thresholding mode. Available modes are:
10569
10570 @table @samp
10571 @item hard
10572 Set hard thresholding.
10573 @item soft
10574 Set soft thresholding (better de-ringing effect, but likely blurrier).
10575 @item medium
10576 Set medium thresholding (good results, default).
10577 @end table
10578 @end table
10579
10580 @section psnr
10581
10582 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10583 Ratio) between two input videos.
10584
10585 This filter takes in input two input videos, the first input is
10586 considered the "main" source and is passed unchanged to the
10587 output. The second input is used as a "reference" video for computing
10588 the PSNR.
10589
10590 Both video inputs must have the same resolution and pixel format for
10591 this filter to work correctly. Also it assumes that both inputs
10592 have the same number of frames, which are compared one by one.
10593
10594 The obtained average PSNR is printed through the logging system.
10595
10596 The filter stores the accumulated MSE (mean squared error) of each
10597 frame, and at the end of the processing it is averaged across all frames
10598 equally, and the following formula is applied to obtain the PSNR:
10599
10600 @example
10601 PSNR = 10*log10(MAX^2/MSE)
10602 @end example
10603
10604 Where MAX is the average of the maximum values of each component of the
10605 image.
10606
10607 The description of the accepted parameters follows.
10608
10609 @table @option
10610 @item stats_file, f
10611 If specified the filter will use the named file to save the PSNR of
10612 each individual frame. When filename equals "-" the data is sent to
10613 standard output.
10614 @end table
10615
10616 The file printed if @var{stats_file} is selected, contains a sequence of
10617 key/value pairs of the form @var{key}:@var{value} for each compared
10618 couple of frames.
10619
10620 A description of each shown parameter follows:
10621
10622 @table @option
10623 @item n
10624 sequential number of the input frame, starting from 1
10625
10626 @item mse_avg
10627 Mean Square Error pixel-by-pixel average difference of the compared
10628 frames, averaged over all the image components.
10629
10630 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10631 Mean Square Error pixel-by-pixel average difference of the compared
10632 frames for the component specified by the suffix.
10633
10634 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10635 Peak Signal to Noise ratio of the compared frames for the component
10636 specified by the suffix.
10637 @end table
10638
10639 For example:
10640 @example
10641 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10642 [main][ref] psnr="stats_file=stats.log" [out]
10643 @end example
10644
10645 On this example the input file being processed is compared with the
10646 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10647 is stored in @file{stats.log}.
10648
10649 @anchor{pullup}
10650 @section pullup
10651
10652 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10653 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10654 content.
10655
10656 The pullup filter is designed to take advantage of future context in making
10657 its decisions. This filter is stateless in the sense that it does not lock
10658 onto a pattern to follow, but it instead looks forward to the following
10659 fields in order to identify matches and rebuild progressive frames.
10660
10661 To produce content with an even framerate, insert the fps filter after
10662 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10663 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10664
10665 The filter accepts the following options:
10666
10667 @table @option
10668 @item jl
10669 @item jr
10670 @item jt
10671 @item jb
10672 These options set the amount of "junk" to ignore at the left, right, top, and
10673 bottom of the image, respectively. Left and right are in units of 8 pixels,
10674 while top and bottom are in units of 2 lines.
10675 The default is 8 pixels on each side.
10676
10677 @item sb
10678 Set the strict breaks. Setting this option to 1 will reduce the chances of
10679 filter generating an occasional mismatched frame, but it may also cause an
10680 excessive number of frames to be dropped during high motion sequences.
10681 Conversely, setting it to -1 will make filter match fields more easily.
10682 This may help processing of video where there is slight blurring between
10683 the fields, but may also cause there to be interlaced frames in the output.
10684 Default value is @code{0}.
10685
10686 @item mp
10687 Set the metric plane to use. It accepts the following values:
10688 @table @samp
10689 @item l
10690 Use luma plane.
10691
10692 @item u
10693 Use chroma blue plane.
10694
10695 @item v
10696 Use chroma red plane.
10697 @end table
10698
10699 This option may be set to use chroma plane instead of the default luma plane
10700 for doing filter's computations. This may improve accuracy on very clean
10701 source material, but more likely will decrease accuracy, especially if there
10702 is chroma noise (rainbow effect) or any grayscale video.
10703 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10704 load and make pullup usable in realtime on slow machines.
10705 @end table
10706
10707 For best results (without duplicated frames in the output file) it is
10708 necessary to change the output frame rate. For example, to inverse
10709 telecine NTSC input:
10710 @example
10711 ffmpeg -i input -vf pullup -r 24000/1001 ...
10712 @end example
10713
10714 @section qp
10715
10716 Change video quantization parameters (QP).
10717
10718 The filter accepts the following option:
10719
10720 @table @option
10721 @item qp
10722 Set expression for quantization parameter.
10723 @end table
10724
10725 The expression is evaluated through the eval API and can contain, among others,
10726 the following constants:
10727
10728 @table @var
10729 @item known
10730 1 if index is not 129, 0 otherwise.
10731
10732 @item qp
10733 Sequentional index starting from -129 to 128.
10734 @end table
10735
10736 @subsection Examples
10737
10738 @itemize
10739 @item
10740 Some equation like:
10741 @example
10742 qp=2+2*sin(PI*qp)
10743 @end example
10744 @end itemize
10745
10746 @section random
10747
10748 Flush video frames from internal cache of frames into a random order.
10749 No frame is discarded.
10750 Inspired by @ref{frei0r} nervous filter.
10751
10752 @table @option
10753 @item frames
10754 Set size in number of frames of internal cache, in range from @code{2} to
10755 @code{512}. Default is @code{30}.
10756
10757 @item seed
10758 Set seed for random number generator, must be an integer included between
10759 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10760 less than @code{0}, the filter will try to use a good random seed on a
10761 best effort basis.
10762 @end table
10763
10764 @section readvitc
10765
10766 Read vertical interval timecode (VITC) information from the top lines of a
10767 video frame.
10768
10769 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
10770 timecode value, if a valid timecode has been detected. Further metadata key
10771 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
10772 timecode data has been found or not.
10773
10774 This filter accepts the following options:
10775
10776 @table @option
10777 @item scan_max
10778 Set the maximum number of lines to scan for VITC data. If the value is set to
10779 @code{-1} the full video frame is scanned. Default is @code{45}.
10780
10781 @item thr_b
10782 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
10783 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
10784
10785 @item thr_w
10786 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
10787 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
10788 @end table
10789
10790 @subsection Examples
10791
10792 @itemize
10793 @item
10794 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
10795 draw @code{--:--:--:--} as a placeholder:
10796 @example
10797 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
10798 @end example
10799 @end itemize
10800
10801 @section remap
10802
10803 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10804
10805 Destination pixel at position (X, Y) will be picked from source (x, y) position
10806 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10807 value for pixel will be used for destination pixel.
10808
10809 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10810 will have Xmap/Ymap video stream dimensions.
10811 Xmap and Ymap input video streams are 16bit depth, single channel.
10812
10813 @section removegrain
10814
10815 The removegrain filter is a spatial denoiser for progressive video.
10816
10817 @table @option
10818 @item m0
10819 Set mode for the first plane.
10820
10821 @item m1
10822 Set mode for the second plane.
10823
10824 @item m2
10825 Set mode for the third plane.
10826
10827 @item m3
10828 Set mode for the fourth plane.
10829 @end table
10830
10831 Range of mode is from 0 to 24. Description of each mode follows:
10832
10833 @table @var
10834 @item 0
10835 Leave input plane unchanged. Default.
10836
10837 @item 1
10838 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10839
10840 @item 2
10841 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10842
10843 @item 3
10844 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10845
10846 @item 4
10847 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10848 This is equivalent to a median filter.
10849
10850 @item 5
10851 Line-sensitive clipping giving the minimal change.
10852
10853 @item 6
10854 Line-sensitive clipping, intermediate.
10855
10856 @item 7
10857 Line-sensitive clipping, intermediate.
10858
10859 @item 8
10860 Line-sensitive clipping, intermediate.
10861
10862 @item 9
10863 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10864
10865 @item 10
10866 Replaces the target pixel with the closest neighbour.
10867
10868 @item 11
10869 [1 2 1] horizontal and vertical kernel blur.
10870
10871 @item 12
10872 Same as mode 11.
10873
10874 @item 13
10875 Bob mode, interpolates top field from the line where the neighbours
10876 pixels are the closest.
10877
10878 @item 14
10879 Bob mode, interpolates bottom field from the line where the neighbours
10880 pixels are the closest.
10881
10882 @item 15
10883 Bob mode, interpolates top field. Same as 13 but with a more complicated
10884 interpolation formula.
10885
10886 @item 16
10887 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10888 interpolation formula.
10889
10890 @item 17
10891 Clips the pixel with the minimum and maximum of respectively the maximum and
10892 minimum of each pair of opposite neighbour pixels.
10893
10894 @item 18
10895 Line-sensitive clipping using opposite neighbours whose greatest distance from
10896 the current pixel is minimal.
10897
10898 @item 19
10899 Replaces the pixel with the average of its 8 neighbours.
10900
10901 @item 20
10902 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10903
10904 @item 21
10905 Clips pixels using the averages of opposite neighbour.
10906
10907 @item 22
10908 Same as mode 21 but simpler and faster.
10909
10910 @item 23
10911 Small edge and halo removal, but reputed useless.
10912
10913 @item 24
10914 Similar as 23.
10915 @end table
10916
10917 @section removelogo
10918
10919 Suppress a TV station logo, using an image file to determine which
10920 pixels comprise the logo. It works by filling in the pixels that
10921 comprise the logo with neighboring pixels.
10922
10923 The filter accepts the following options:
10924
10925 @table @option
10926 @item filename, f
10927 Set the filter bitmap file, which can be any image format supported by
10928 libavformat. The width and height of the image file must match those of the
10929 video stream being processed.
10930 @end table
10931
10932 Pixels in the provided bitmap image with a value of zero are not
10933 considered part of the logo, non-zero pixels are considered part of
10934 the logo. If you use white (255) for the logo and black (0) for the
10935 rest, you will be safe. For making the filter bitmap, it is
10936 recommended to take a screen capture of a black frame with the logo
10937 visible, and then using a threshold filter followed by the erode
10938 filter once or twice.
10939
10940 If needed, little splotches can be fixed manually. Remember that if
10941 logo pixels are not covered, the filter quality will be much
10942 reduced. Marking too many pixels as part of the logo does not hurt as
10943 much, but it will increase the amount of blurring needed to cover over
10944 the image and will destroy more information than necessary, and extra
10945 pixels will slow things down on a large logo.
10946
10947 @section repeatfields
10948
10949 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10950 fields based on its value.
10951
10952 @section reverse, areverse
10953
10954 Reverse a clip.
10955
10956 Warning: This filter requires memory to buffer the entire clip, so trimming
10957 is suggested.
10958
10959 @subsection Examples
10960
10961 @itemize
10962 @item
10963 Take the first 5 seconds of a clip, and reverse it.
10964 @example
10965 trim=end=5,reverse
10966 @end example
10967 @end itemize
10968
10969 @section rotate
10970
10971 Rotate video by an arbitrary angle expressed in radians.
10972
10973 The filter accepts the following options:
10974
10975 A description of the optional parameters follows.
10976 @table @option
10977 @item angle, a
10978 Set an expression for the angle by which to rotate the input video
10979 clockwise, expressed as a number of radians. A negative value will
10980 result in a counter-clockwise rotation. By default it is set to "0".
10981
10982 This expression is evaluated for each frame.
10983
10984 @item out_w, ow
10985 Set the output width expression, default value is "iw".
10986 This expression is evaluated just once during configuration.
10987
10988 @item out_h, oh
10989 Set the output height expression, default value is "ih".
10990 This expression is evaluated just once during configuration.
10991
10992 @item bilinear
10993 Enable bilinear interpolation if set to 1, a value of 0 disables
10994 it. Default value is 1.
10995
10996 @item fillcolor, c
10997 Set the color used to fill the output area not covered by the rotated
10998 image. For the general syntax of this option, check the "Color" section in the
10999 ffmpeg-utils manual. If the special value "none" is selected then no
11000 background is printed (useful for example if the background is never shown).
11001
11002 Default value is "black".
11003 @end table
11004
11005 The expressions for the angle and the output size can contain the
11006 following constants and functions:
11007
11008 @table @option
11009 @item n
11010 sequential number of the input frame, starting from 0. It is always NAN
11011 before the first frame is filtered.
11012
11013 @item t
11014 time in seconds of the input frame, it is set to 0 when the filter is
11015 configured. It is always NAN before the first frame is filtered.
11016
11017 @item hsub
11018 @item vsub
11019 horizontal and vertical chroma subsample values. For example for the
11020 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11021
11022 @item in_w, iw
11023 @item in_h, ih
11024 the input video width and height
11025
11026 @item out_w, ow
11027 @item out_h, oh
11028 the output width and height, that is the size of the padded area as
11029 specified by the @var{width} and @var{height} expressions
11030
11031 @item rotw(a)
11032 @item roth(a)
11033 the minimal width/height required for completely containing the input
11034 video rotated by @var{a} radians.
11035
11036 These are only available when computing the @option{out_w} and
11037 @option{out_h} expressions.
11038 @end table
11039
11040 @subsection Examples
11041
11042 @itemize
11043 @item
11044 Rotate the input by PI/6 radians clockwise:
11045 @example
11046 rotate=PI/6
11047 @end example
11048
11049 @item
11050 Rotate the input by PI/6 radians counter-clockwise:
11051 @example
11052 rotate=-PI/6
11053 @end example
11054
11055 @item
11056 Rotate the input by 45 degrees clockwise:
11057 @example
11058 rotate=45*PI/180
11059 @end example
11060
11061 @item
11062 Apply a constant rotation with period T, starting from an angle of PI/3:
11063 @example
11064 rotate=PI/3+2*PI*t/T
11065 @end example
11066
11067 @item
11068 Make the input video rotation oscillating with a period of T
11069 seconds and an amplitude of A radians:
11070 @example
11071 rotate=A*sin(2*PI/T*t)
11072 @end example
11073
11074 @item
11075 Rotate the video, output size is chosen so that the whole rotating
11076 input video is always completely contained in the output:
11077 @example
11078 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11079 @end example
11080
11081 @item
11082 Rotate the video, reduce the output size so that no background is ever
11083 shown:
11084 @example
11085 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11086 @end example
11087 @end itemize
11088
11089 @subsection Commands
11090
11091 The filter supports the following commands:
11092
11093 @table @option
11094 @item a, angle
11095 Set the angle expression.
11096 The command accepts the same syntax of the corresponding option.
11097
11098 If the specified expression is not valid, it is kept at its current
11099 value.
11100 @end table
11101
11102 @section sab
11103
11104 Apply Shape Adaptive Blur.
11105
11106 The filter accepts the following options:
11107
11108 @table @option
11109 @item luma_radius, lr
11110 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11111 value is 1.0. A greater value will result in a more blurred image, and
11112 in slower processing.
11113
11114 @item luma_pre_filter_radius, lpfr
11115 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11116 value is 1.0.
11117
11118 @item luma_strength, ls
11119 Set luma maximum difference between pixels to still be considered, must
11120 be a value in the 0.1-100.0 range, default value is 1.0.
11121
11122 @item chroma_radius, cr
11123 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
11124 greater value will result in a more blurred image, and in slower
11125 processing.
11126
11127 @item chroma_pre_filter_radius, cpfr
11128 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
11129
11130 @item chroma_strength, cs
11131 Set chroma maximum difference between pixels to still be considered,
11132 must be a value in the 0.1-100.0 range.
11133 @end table
11134
11135 Each chroma option value, if not explicitly specified, is set to the
11136 corresponding luma option value.
11137
11138 @anchor{scale}
11139 @section scale
11140
11141 Scale (resize) the input video, using the libswscale library.
11142
11143 The scale filter forces the output display aspect ratio to be the same
11144 of the input, by changing the output sample aspect ratio.
11145
11146 If the input image format is different from the format requested by
11147 the next filter, the scale filter will convert the input to the
11148 requested format.
11149
11150 @subsection Options
11151 The filter accepts the following options, or any of the options
11152 supported by the libswscale scaler.
11153
11154 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11155 the complete list of scaler options.
11156
11157 @table @option
11158 @item width, w
11159 @item height, h
11160 Set the output video dimension expression. Default value is the input
11161 dimension.
11162
11163 If the value is 0, the input width is used for the output.
11164
11165 If one of the values is -1, the scale filter will use a value that
11166 maintains the aspect ratio of the input image, calculated from the
11167 other specified dimension. If both of them are -1, the input size is
11168 used
11169
11170 If one of the values is -n with n > 1, the scale filter will also use a value
11171 that maintains the aspect ratio of the input image, calculated from the other
11172 specified dimension. After that it will, however, make sure that the calculated
11173 dimension is divisible by n and adjust the value if necessary.
11174
11175 See below for the list of accepted constants for use in the dimension
11176 expression.
11177
11178 @item eval
11179 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11180
11181 @table @samp
11182 @item init
11183 Only evaluate expressions once during the filter initialization or when a command is processed.
11184
11185 @item frame
11186 Evaluate expressions for each incoming frame.
11187
11188 @end table
11189
11190 Default value is @samp{init}.
11191
11192
11193 @item interl
11194 Set the interlacing mode. It accepts the following values:
11195
11196 @table @samp
11197 @item 1
11198 Force interlaced aware scaling.
11199
11200 @item 0
11201 Do not apply interlaced scaling.
11202
11203 @item -1
11204 Select interlaced aware scaling depending on whether the source frames
11205 are flagged as interlaced or not.
11206 @end table
11207
11208 Default value is @samp{0}.
11209
11210 @item flags
11211 Set libswscale scaling flags. See
11212 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11213 complete list of values. If not explicitly specified the filter applies
11214 the default flags.
11215
11216
11217 @item param0, param1
11218 Set libswscale input parameters for scaling algorithms that need them. See
11219 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11220 complete documentation. If not explicitly specified the filter applies
11221 empty parameters.
11222
11223
11224
11225 @item size, s
11226 Set the video size. For the syntax of this option, check the
11227 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11228
11229 @item in_color_matrix
11230 @item out_color_matrix
11231 Set in/output YCbCr color space type.
11232
11233 This allows the autodetected value to be overridden as well as allows forcing
11234 a specific value used for the output and encoder.
11235
11236 If not specified, the color space type depends on the pixel format.
11237
11238 Possible values:
11239
11240 @table @samp
11241 @item auto
11242 Choose automatically.
11243
11244 @item bt709
11245 Format conforming to International Telecommunication Union (ITU)
11246 Recommendation BT.709.
11247
11248 @item fcc
11249 Set color space conforming to the United States Federal Communications
11250 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11251
11252 @item bt601
11253 Set color space conforming to:
11254
11255 @itemize
11256 @item
11257 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11258
11259 @item
11260 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11261
11262 @item
11263 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11264
11265 @end itemize
11266
11267 @item smpte240m
11268 Set color space conforming to SMPTE ST 240:1999.
11269 @end table
11270
11271 @item in_range
11272 @item out_range
11273 Set in/output YCbCr sample range.
11274
11275 This allows the autodetected value to be overridden as well as allows forcing
11276 a specific value used for the output and encoder. If not specified, the
11277 range depends on the pixel format. Possible values:
11278
11279 @table @samp
11280 @item auto
11281 Choose automatically.
11282
11283 @item jpeg/full/pc
11284 Set full range (0-255 in case of 8-bit luma).
11285
11286 @item mpeg/tv
11287 Set "MPEG" range (16-235 in case of 8-bit luma).
11288 @end table
11289
11290 @item force_original_aspect_ratio
11291 Enable decreasing or increasing output video width or height if necessary to
11292 keep the original aspect ratio. Possible values:
11293
11294 @table @samp
11295 @item disable
11296 Scale the video as specified and disable this feature.
11297
11298 @item decrease
11299 The output video dimensions will automatically be decreased if needed.
11300
11301 @item increase
11302 The output video dimensions will automatically be increased if needed.
11303
11304 @end table
11305
11306 One useful instance of this option is that when you know a specific device's
11307 maximum allowed resolution, you can use this to limit the output video to
11308 that, while retaining the aspect ratio. For example, device A allows
11309 1280x720 playback, and your video is 1920x800. Using this option (set it to
11310 decrease) and specifying 1280x720 to the command line makes the output
11311 1280x533.
11312
11313 Please note that this is a different thing than specifying -1 for @option{w}
11314 or @option{h}, you still need to specify the output resolution for this option
11315 to work.
11316
11317 @end table
11318
11319 The values of the @option{w} and @option{h} options are expressions
11320 containing the following constants:
11321
11322 @table @var
11323 @item in_w
11324 @item in_h
11325 The input width and height
11326
11327 @item iw
11328 @item ih
11329 These are the same as @var{in_w} and @var{in_h}.
11330
11331 @item out_w
11332 @item out_h
11333 The output (scaled) width and height
11334
11335 @item ow
11336 @item oh
11337 These are the same as @var{out_w} and @var{out_h}
11338
11339 @item a
11340 The same as @var{iw} / @var{ih}
11341
11342 @item sar
11343 input sample aspect ratio
11344
11345 @item dar
11346 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11347
11348 @item hsub
11349 @item vsub
11350 horizontal and vertical input chroma subsample values. For example for the
11351 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11352
11353 @item ohsub
11354 @item ovsub
11355 horizontal and vertical output chroma subsample values. For example for the
11356 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11357 @end table
11358
11359 @subsection Examples
11360
11361 @itemize
11362 @item
11363 Scale the input video to a size of 200x100
11364 @example
11365 scale=w=200:h=100
11366 @end example
11367
11368 This is equivalent to:
11369 @example
11370 scale=200:100
11371 @end example
11372
11373 or:
11374 @example
11375 scale=200x100
11376 @end example
11377
11378 @item
11379 Specify a size abbreviation for the output size:
11380 @example
11381 scale=qcif
11382 @end example
11383
11384 which can also be written as:
11385 @example
11386 scale=size=qcif
11387 @end example
11388
11389 @item
11390 Scale the input to 2x:
11391 @example
11392 scale=w=2*iw:h=2*ih
11393 @end example
11394
11395 @item
11396 The above is the same as:
11397 @example
11398 scale=2*in_w:2*in_h
11399 @end example
11400
11401 @item
11402 Scale the input to 2x with forced interlaced scaling:
11403 @example
11404 scale=2*iw:2*ih:interl=1
11405 @end example
11406
11407 @item
11408 Scale the input to half size:
11409 @example
11410 scale=w=iw/2:h=ih/2
11411 @end example
11412
11413 @item
11414 Increase the width, and set the height to the same size:
11415 @example
11416 scale=3/2*iw:ow
11417 @end example
11418
11419 @item
11420 Seek Greek harmony:
11421 @example
11422 scale=iw:1/PHI*iw
11423 scale=ih*PHI:ih
11424 @end example
11425
11426 @item
11427 Increase the height, and set the width to 3/2 of the height:
11428 @example
11429 scale=w=3/2*oh:h=3/5*ih
11430 @end example
11431
11432 @item
11433 Increase the size, making the size a multiple of the chroma
11434 subsample values:
11435 @example
11436 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11437 @end example
11438
11439 @item
11440 Increase the width to a maximum of 500 pixels,
11441 keeping the same aspect ratio as the input:
11442 @example
11443 scale=w='min(500\, iw*3/2):h=-1'
11444 @end example
11445 @end itemize
11446
11447 @subsection Commands
11448
11449 This filter supports the following commands:
11450 @table @option
11451 @item width, w
11452 @item height, h
11453 Set the output video dimension expression.
11454 The command accepts the same syntax of the corresponding option.
11455
11456 If the specified expression is not valid, it is kept at its current
11457 value.
11458 @end table
11459
11460 @section scale2ref
11461
11462 Scale (resize) the input video, based on a reference video.
11463
11464 See the scale filter for available options, scale2ref supports the same but
11465 uses the reference video instead of the main input as basis.
11466
11467 @subsection Examples
11468
11469 @itemize
11470 @item
11471 Scale a subtitle stream to match the main video in size before overlaying
11472 @example
11473 'scale2ref[b][a];[a][b]overlay'
11474 @end example
11475 @end itemize
11476
11477 @anchor{selectivecolor}
11478 @section selectivecolor
11479
11480 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11481 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11482 by the "purity" of the color (that is, how saturated it already is).
11483
11484 This filter is similar to the Adobe Photoshop Selective Color tool.
11485
11486 The filter accepts the following options:
11487
11488 @table @option
11489 @item correction_method
11490 Select color correction method.
11491
11492 Available values are:
11493 @table @samp
11494 @item absolute
11495 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11496 component value).
11497 @item relative
11498 Specified adjustments are relative to the original component value.
11499 @end table
11500 Default is @code{absolute}.
11501 @item reds
11502 Adjustments for red pixels (pixels where the red component is the maximum)
11503 @item yellows
11504 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11505 @item greens
11506 Adjustments for green pixels (pixels where the green component is the maximum)
11507 @item cyans
11508 Adjustments for cyan pixels (pixels where the red component is the minimum)
11509 @item blues
11510 Adjustments for blue pixels (pixels where the blue component is the maximum)
11511 @item magentas
11512 Adjustments for magenta pixels (pixels where the green component is the minimum)
11513 @item whites
11514 Adjustments for white pixels (pixels where all components are greater than 128)
11515 @item neutrals
11516 Adjustments for all pixels except pure black and pure white
11517 @item blacks
11518 Adjustments for black pixels (pixels where all components are lesser than 128)
11519 @item psfile
11520 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11521 @end table
11522
11523 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11524 4 space separated floating point adjustment values in the [-1,1] range,
11525 respectively to adjust the amount of cyan, magenta, yellow and black for the
11526 pixels of its range.
11527
11528 @subsection Examples
11529
11530 @itemize
11531 @item
11532 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11533 increase magenta by 27% in blue areas:
11534 @example
11535 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11536 @end example
11537
11538 @item
11539 Use a Photoshop selective color preset:
11540 @example
11541 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11542 @end example
11543 @end itemize
11544
11545 @section separatefields
11546
11547 The @code{separatefields} takes a frame-based video input and splits
11548 each frame into its components fields, producing a new half height clip
11549 with twice the frame rate and twice the frame count.
11550
11551 This filter use field-dominance information in frame to decide which
11552 of each pair of fields to place first in the output.
11553 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11554
11555 @section setdar, setsar
11556
11557 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11558 output video.
11559
11560 This is done by changing the specified Sample (aka Pixel) Aspect
11561 Ratio, according to the following equation:
11562 @example
11563 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11564 @end example
11565
11566 Keep in mind that the @code{setdar} filter does not modify the pixel
11567 dimensions of the video frame. Also, the display aspect ratio set by
11568 this filter may be changed by later filters in the filterchain,
11569 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11570 applied.
11571
11572 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11573 the filter output video.
11574
11575 Note that as a consequence of the application of this filter, the
11576 output display aspect ratio will change according to the equation
11577 above.
11578
11579 Keep in mind that the sample aspect ratio set by the @code{setsar}
11580 filter may be changed by later filters in the filterchain, e.g. if
11581 another "setsar" or a "setdar" filter is applied.
11582
11583 It accepts the following parameters:
11584
11585 @table @option
11586 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11587 Set the aspect ratio used by the filter.
11588
11589 The parameter can be a floating point number string, an expression, or
11590 a string of the form @var{num}:@var{den}, where @var{num} and
11591 @var{den} are the numerator and denominator of the aspect ratio. If
11592 the parameter is not specified, it is assumed the value "0".
11593 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11594 should be escaped.
11595
11596 @item max
11597 Set the maximum integer value to use for expressing numerator and
11598 denominator when reducing the expressed aspect ratio to a rational.
11599 Default value is @code{100}.
11600
11601 @end table
11602
11603 The parameter @var{sar} is an expression containing
11604 the following constants:
11605
11606 @table @option
11607 @item E, PI, PHI
11608 These are approximated values for the mathematical constants e
11609 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11610
11611 @item w, h
11612 The input width and height.
11613
11614 @item a
11615 These are the same as @var{w} / @var{h}.
11616
11617 @item sar
11618 The input sample aspect ratio.
11619
11620 @item dar
11621 The input display aspect ratio. It is the same as
11622 (@var{w} / @var{h}) * @var{sar}.
11623
11624 @item hsub, vsub
11625 Horizontal and vertical chroma subsample values. For example, for the
11626 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11627 @end table
11628
11629 @subsection Examples
11630
11631 @itemize
11632
11633 @item
11634 To change the display aspect ratio to 16:9, specify one of the following:
11635 @example
11636 setdar=dar=1.77777
11637 setdar=dar=16/9
11638 setdar=dar=1.77777
11639 @end example
11640
11641 @item
11642 To change the sample aspect ratio to 10:11, specify:
11643 @example
11644 setsar=sar=10/11
11645 @end example
11646
11647 @item
11648 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11649 1000 in the aspect ratio reduction, use the command:
11650 @example
11651 setdar=ratio=16/9:max=1000
11652 @end example
11653
11654 @end itemize
11655
11656 @anchor{setfield}
11657 @section setfield
11658
11659 Force field for the output video frame.
11660
11661 The @code{setfield} filter marks the interlace type field for the
11662 output frames. It does not change the input frame, but only sets the
11663 corresponding property, which affects how the frame is treated by
11664 following filters (e.g. @code{fieldorder} or @code{yadif}).
11665
11666 The filter accepts the following options:
11667
11668 @table @option
11669
11670 @item mode
11671 Available values are:
11672
11673 @table @samp
11674 @item auto
11675 Keep the same field property.
11676
11677 @item bff
11678 Mark the frame as bottom-field-first.
11679
11680 @item tff
11681 Mark the frame as top-field-first.
11682
11683 @item prog
11684 Mark the frame as progressive.
11685 @end table
11686 @end table
11687
11688 @section showinfo
11689
11690 Show a line containing various information for each input video frame.
11691 The input video is not modified.
11692
11693 The shown line contains a sequence of key/value pairs of the form
11694 @var{key}:@var{value}.
11695
11696 The following values are shown in the output:
11697
11698 @table @option
11699 @item n
11700 The (sequential) number of the input frame, starting from 0.
11701
11702 @item pts
11703 The Presentation TimeStamp of the input frame, expressed as a number of
11704 time base units. The time base unit depends on the filter input pad.
11705
11706 @item pts_time
11707 The Presentation TimeStamp of the input frame, expressed as a number of
11708 seconds.
11709
11710 @item pos
11711 The position of the frame in the input stream, or -1 if this information is
11712 unavailable and/or meaningless (for example in case of synthetic video).
11713
11714 @item fmt
11715 The pixel format name.
11716
11717 @item sar
11718 The sample aspect ratio of the input frame, expressed in the form
11719 @var{num}/@var{den}.
11720
11721 @item s
11722 The size of the input frame. For the syntax of this option, check the
11723 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11724
11725 @item i
11726 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11727 for bottom field first).
11728
11729 @item iskey
11730 This is 1 if the frame is a key frame, 0 otherwise.
11731
11732 @item type
11733 The picture type of the input frame ("I" for an I-frame, "P" for a
11734 P-frame, "B" for a B-frame, or "?" for an unknown type).
11735 Also refer to the documentation of the @code{AVPictureType} enum and of
11736 the @code{av_get_picture_type_char} function defined in
11737 @file{libavutil/avutil.h}.
11738
11739 @item checksum
11740 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11741
11742 @item plane_checksum
11743 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11744 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11745 @end table
11746
11747 @section showpalette
11748
11749 Displays the 256 colors palette of each frame. This filter is only relevant for
11750 @var{pal8} pixel format frames.
11751
11752 It accepts the following option:
11753
11754 @table @option
11755 @item s
11756 Set the size of the box used to represent one palette color entry. Default is
11757 @code{30} (for a @code{30x30} pixel box).
11758 @end table
11759
11760 @section shuffleframes
11761
11762 Reorder and/or duplicate video frames.
11763
11764 It accepts the following parameters:
11765
11766 @table @option
11767 @item mapping
11768 Set the destination indexes of input frames.
11769 This is space or '|' separated list of indexes that maps input frames to output
11770 frames. Number of indexes also sets maximal value that each index may have.
11771 @end table
11772
11773 The first frame has the index 0. The default is to keep the input unchanged.
11774
11775 Swap second and third frame of every three frames of the input:
11776 @example
11777 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11778 @end example
11779
11780 @section shuffleplanes
11781
11782 Reorder and/or duplicate video planes.
11783
11784 It accepts the following parameters:
11785
11786 @table @option
11787
11788 @item map0
11789 The index of the input plane to be used as the first output plane.
11790
11791 @item map1
11792 The index of the input plane to be used as the second output plane.
11793
11794 @item map2
11795 The index of the input plane to be used as the third output plane.
11796
11797 @item map3
11798 The index of the input plane to be used as the fourth output plane.
11799
11800 @end table
11801
11802 The first plane has the index 0. The default is to keep the input unchanged.
11803
11804 Swap the second and third planes of the input:
11805 @example
11806 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11807 @end example
11808
11809 @anchor{signalstats}
11810 @section signalstats
11811 Evaluate various visual metrics that assist in determining issues associated
11812 with the digitization of analog video media.
11813
11814 By default the filter will log these metadata values:
11815
11816 @table @option
11817 @item YMIN
11818 Display the minimal Y value contained within the input frame. Expressed in
11819 range of [0-255].
11820
11821 @item YLOW
11822 Display the Y value at the 10% percentile within the input frame. Expressed in
11823 range of [0-255].
11824
11825 @item YAVG
11826 Display the average Y value within the input frame. Expressed in range of
11827 [0-255].
11828
11829 @item YHIGH
11830 Display the Y value at the 90% percentile within the input frame. Expressed in
11831 range of [0-255].
11832
11833 @item YMAX
11834 Display the maximum Y value contained within the input frame. Expressed in
11835 range of [0-255].
11836
11837 @item UMIN
11838 Display the minimal U value contained within the input frame. Expressed in
11839 range of [0-255].
11840
11841 @item ULOW
11842 Display the U value at the 10% percentile within the input frame. Expressed in
11843 range of [0-255].
11844
11845 @item UAVG
11846 Display the average U value within the input frame. Expressed in range of
11847 [0-255].
11848
11849 @item UHIGH
11850 Display the U value at the 90% percentile within the input frame. Expressed in
11851 range of [0-255].
11852
11853 @item UMAX
11854 Display the maximum U value contained within the input frame. Expressed in
11855 range of [0-255].
11856
11857 @item VMIN
11858 Display the minimal V value contained within the input frame. Expressed in
11859 range of [0-255].
11860
11861 @item VLOW
11862 Display the V value at the 10% percentile within the input frame. Expressed in
11863 range of [0-255].
11864
11865 @item VAVG
11866 Display the average V value within the input frame. Expressed in range of
11867 [0-255].
11868
11869 @item VHIGH
11870 Display the V value at the 90% percentile within the input frame. Expressed in
11871 range of [0-255].
11872
11873 @item VMAX
11874 Display the maximum V value contained within the input frame. Expressed in
11875 range of [0-255].
11876
11877 @item SATMIN
11878 Display the minimal saturation value contained within the input frame.
11879 Expressed in range of [0-~181.02].
11880
11881 @item SATLOW
11882 Display the saturation value at the 10% percentile within the input frame.
11883 Expressed in range of [0-~181.02].
11884
11885 @item SATAVG
11886 Display the average saturation value within the input frame. Expressed in range
11887 of [0-~181.02].
11888
11889 @item SATHIGH
11890 Display the saturation value at the 90% percentile within the input frame.
11891 Expressed in range of [0-~181.02].
11892
11893 @item SATMAX
11894 Display the maximum saturation value contained within the input frame.
11895 Expressed in range of [0-~181.02].
11896
11897 @item HUEMED
11898 Display the median value for hue within the input frame. Expressed in range of
11899 [0-360].
11900
11901 @item HUEAVG
11902 Display the average value for hue within the input frame. Expressed in range of
11903 [0-360].
11904
11905 @item YDIF
11906 Display the average of sample value difference between all values of the Y
11907 plane in the current frame and corresponding values of the previous input frame.
11908 Expressed in range of [0-255].
11909
11910 @item UDIF
11911 Display the average of sample value difference between all values of the U
11912 plane in the current frame and corresponding values of the previous input frame.
11913 Expressed in range of [0-255].
11914
11915 @item VDIF
11916 Display the average of sample value difference between all values of the V
11917 plane in the current frame and corresponding values of the previous input frame.
11918 Expressed in range of [0-255].
11919 @end table
11920
11921 The filter accepts the following options:
11922
11923 @table @option
11924 @item stat
11925 @item out
11926
11927 @option{stat} specify an additional form of image analysis.
11928 @option{out} output video with the specified type of pixel highlighted.
11929
11930 Both options accept the following values:
11931
11932 @table @samp
11933 @item tout
11934 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11935 unlike the neighboring pixels of the same field. Examples of temporal outliers
11936 include the results of video dropouts, head clogs, or tape tracking issues.
11937
11938 @item vrep
11939 Identify @var{vertical line repetition}. Vertical line repetition includes
11940 similar rows of pixels within a frame. In born-digital video vertical line
11941 repetition is common, but this pattern is uncommon in video digitized from an
11942 analog source. When it occurs in video that results from the digitization of an
11943 analog source it can indicate concealment from a dropout compensator.
11944
11945 @item brng
11946 Identify pixels that fall outside of legal broadcast range.
11947 @end table
11948
11949 @item color, c
11950 Set the highlight color for the @option{out} option. The default color is
11951 yellow.
11952 @end table
11953
11954 @subsection Examples
11955
11956 @itemize
11957 @item
11958 Output data of various video metrics:
11959 @example
11960 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11961 @end example
11962
11963 @item
11964 Output specific data about the minimum and maximum values of the Y plane per frame:
11965 @example
11966 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11967 @end example
11968
11969 @item
11970 Playback video while highlighting pixels that are outside of broadcast range in red.
11971 @example
11972 ffplay example.mov -vf signalstats="out=brng:color=red"
11973 @end example
11974
11975 @item
11976 Playback video with signalstats metadata drawn over the frame.
11977 @example
11978 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
11979 @end example
11980
11981 The contents of signalstat_drawtext.txt used in the command are:
11982 @example
11983 time %@{pts:hms@}
11984 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
11985 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
11986 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
11987 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
11988
11989 @end example
11990 @end itemize
11991
11992 @anchor{smartblur}
11993 @section smartblur
11994
11995 Blur the input video without impacting the outlines.
11996
11997 It accepts the following options:
11998
11999 @table @option
12000 @item luma_radius, lr
12001 Set the luma radius. The option value must be a float number in
12002 the range [0.1,5.0] that specifies the variance of the gaussian filter
12003 used to blur the image (slower if larger). Default value is 1.0.
12004
12005 @item luma_strength, ls
12006 Set the luma strength. The option value must be a float number
12007 in the range [-1.0,1.0] that configures the blurring. A value included
12008 in [0.0,1.0] will blur the image whereas a value included in
12009 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12010
12011 @item luma_threshold, lt
12012 Set the luma threshold used as a coefficient to determine
12013 whether a pixel should be blurred or not. The option value must be an
12014 integer in the range [-30,30]. A value of 0 will filter all the image,
12015 a value included in [0,30] will filter flat areas and a value included
12016 in [-30,0] will filter edges. Default value is 0.
12017
12018 @item chroma_radius, cr
12019 Set the chroma radius. The option value must be a float number in
12020 the range [0.1,5.0] that specifies the variance of the gaussian filter
12021 used to blur the image (slower if larger). Default value is 1.0.
12022
12023 @item chroma_strength, cs
12024 Set the chroma strength. The option value must be a float number
12025 in the range [-1.0,1.0] that configures the blurring. A value included
12026 in [0.0,1.0] will blur the image whereas a value included in
12027 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12028
12029 @item chroma_threshold, ct
12030 Set the chroma threshold used as a coefficient to determine
12031 whether a pixel should be blurred or not. The option value must be an
12032 integer in the range [-30,30]. A value of 0 will filter all the image,
12033 a value included in [0,30] will filter flat areas and a value included
12034 in [-30,0] will filter edges. Default value is 0.
12035 @end table
12036
12037 If a chroma option is not explicitly set, the corresponding luma value
12038 is set.
12039
12040 @section ssim
12041
12042 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12043
12044 This filter takes in input two input videos, the first input is
12045 considered the "main" source and is passed unchanged to the
12046 output. The second input is used as a "reference" video for computing
12047 the SSIM.
12048
12049 Both video inputs must have the same resolution and pixel format for
12050 this filter to work correctly. Also it assumes that both inputs
12051 have the same number of frames, which are compared one by one.
12052
12053 The filter stores the calculated SSIM of each frame.
12054
12055 The description of the accepted parameters follows.
12056
12057 @table @option
12058 @item stats_file, f
12059 If specified the filter will use the named file to save the SSIM of
12060 each individual frame. When filename equals "-" the data is sent to
12061 standard output.
12062 @end table
12063
12064 The file printed if @var{stats_file} is selected, contains a sequence of
12065 key/value pairs of the form @var{key}:@var{value} for each compared
12066 couple of frames.
12067
12068 A description of each shown parameter follows:
12069
12070 @table @option
12071 @item n
12072 sequential number of the input frame, starting from 1
12073
12074 @item Y, U, V, R, G, B
12075 SSIM of the compared frames for the component specified by the suffix.
12076
12077 @item All
12078 SSIM of the compared frames for the whole frame.
12079
12080 @item dB
12081 Same as above but in dB representation.
12082 @end table
12083
12084 For example:
12085 @example
12086 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12087 [main][ref] ssim="stats_file=stats.log" [out]
12088 @end example
12089
12090 On this example the input file being processed is compared with the
12091 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12092 is stored in @file{stats.log}.
12093
12094 Another example with both psnr and ssim at same time:
12095 @example
12096 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12097 @end example
12098
12099 @section stereo3d
12100
12101 Convert between different stereoscopic image formats.
12102
12103 The filters accept the following options:
12104
12105 @table @option
12106 @item in
12107 Set stereoscopic image format of input.
12108
12109 Available values for input image formats are:
12110 @table @samp
12111 @item sbsl
12112 side by side parallel (left eye left, right eye right)
12113
12114 @item sbsr
12115 side by side crosseye (right eye left, left eye right)
12116
12117 @item sbs2l
12118 side by side parallel with half width resolution
12119 (left eye left, right eye right)
12120
12121 @item sbs2r
12122 side by side crosseye with half width resolution
12123 (right eye left, left eye right)
12124
12125 @item abl
12126 above-below (left eye above, right eye below)
12127
12128 @item abr
12129 above-below (right eye above, left eye below)
12130
12131 @item ab2l
12132 above-below with half height resolution
12133 (left eye above, right eye below)
12134
12135 @item ab2r
12136 above-below with half height resolution
12137 (right eye above, left eye below)
12138
12139 @item al
12140 alternating frames (left eye first, right eye second)
12141
12142 @item ar
12143 alternating frames (right eye first, left eye second)
12144
12145 @item irl
12146 interleaved rows (left eye has top row, right eye starts on next row)
12147
12148 @item irr
12149 interleaved rows (right eye has top row, left eye starts on next row)
12150
12151 @item icl
12152 interleaved columns, left eye first
12153
12154 @item icr
12155 interleaved columns, right eye first
12156
12157 Default value is @samp{sbsl}.
12158 @end table
12159
12160 @item out
12161 Set stereoscopic image format of output.
12162
12163 @table @samp
12164 @item sbsl
12165 side by side parallel (left eye left, right eye right)
12166
12167 @item sbsr
12168 side by side crosseye (right eye left, left eye right)
12169
12170 @item sbs2l
12171 side by side parallel with half width resolution
12172 (left eye left, right eye right)
12173
12174 @item sbs2r
12175 side by side crosseye with half width resolution
12176 (right eye left, left eye right)
12177
12178 @item abl
12179 above-below (left eye above, right eye below)
12180
12181 @item abr
12182 above-below (right eye above, left eye below)
12183
12184 @item ab2l
12185 above-below with half height resolution
12186 (left eye above, right eye below)
12187
12188 @item ab2r
12189 above-below with half height resolution
12190 (right eye above, left eye below)
12191
12192 @item al
12193 alternating frames (left eye first, right eye second)
12194
12195 @item ar
12196 alternating frames (right eye first, left eye second)
12197
12198 @item irl
12199 interleaved rows (left eye has top row, right eye starts on next row)
12200
12201 @item irr
12202 interleaved rows (right eye has top row, left eye starts on next row)
12203
12204 @item arbg
12205 anaglyph red/blue gray
12206 (red filter on left eye, blue filter on right eye)
12207
12208 @item argg
12209 anaglyph red/green gray
12210 (red filter on left eye, green filter on right eye)
12211
12212 @item arcg
12213 anaglyph red/cyan gray
12214 (red filter on left eye, cyan filter on right eye)
12215
12216 @item arch
12217 anaglyph red/cyan half colored
12218 (red filter on left eye, cyan filter on right eye)
12219
12220 @item arcc
12221 anaglyph red/cyan color
12222 (red filter on left eye, cyan filter on right eye)
12223
12224 @item arcd
12225 anaglyph red/cyan color optimized with the least squares projection of dubois
12226 (red filter on left eye, cyan filter on right eye)
12227
12228 @item agmg
12229 anaglyph green/magenta gray
12230 (green filter on left eye, magenta filter on right eye)
12231
12232 @item agmh
12233 anaglyph green/magenta half colored
12234 (green filter on left eye, magenta filter on right eye)
12235
12236 @item agmc
12237 anaglyph green/magenta colored
12238 (green filter on left eye, magenta filter on right eye)
12239
12240 @item agmd
12241 anaglyph green/magenta color optimized with the least squares projection of dubois
12242 (green filter on left eye, magenta filter on right eye)
12243
12244 @item aybg
12245 anaglyph yellow/blue gray
12246 (yellow filter on left eye, blue filter on right eye)
12247
12248 @item aybh
12249 anaglyph yellow/blue half colored
12250 (yellow filter on left eye, blue filter on right eye)
12251
12252 @item aybc
12253 anaglyph yellow/blue colored
12254 (yellow filter on left eye, blue filter on right eye)
12255
12256 @item aybd
12257 anaglyph yellow/blue color optimized with the least squares projection of dubois
12258 (yellow filter on left eye, blue filter on right eye)
12259
12260 @item ml
12261 mono output (left eye only)
12262
12263 @item mr
12264 mono output (right eye only)
12265
12266 @item chl
12267 checkerboard, left eye first
12268
12269 @item chr
12270 checkerboard, right eye first
12271
12272 @item icl
12273 interleaved columns, left eye first
12274
12275 @item icr
12276 interleaved columns, right eye first
12277 @end table
12278
12279 Default value is @samp{arcd}.
12280 @end table
12281
12282 @subsection Examples
12283
12284 @itemize
12285 @item
12286 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12287 @example
12288 stereo3d=sbsl:aybd
12289 @end example
12290
12291 @item
12292 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12293 @example
12294 stereo3d=abl:sbsr
12295 @end example
12296 @end itemize
12297
12298 @section streamselect, astreamselect
12299 Select video or audio streams.
12300
12301 The filter accepts the following options:
12302
12303 @table @option
12304 @item inputs
12305 Set number of inputs. Default is 2.
12306
12307 @item map
12308 Set input indexes to remap to outputs.
12309 @end table
12310
12311 @subsection Commands
12312
12313 The @code{streamselect} and @code{astreamselect} filter supports the following
12314 commands:
12315
12316 @table @option
12317 @item map
12318 Set input indexes to remap to outputs.
12319 @end table
12320
12321 @subsection Examples
12322
12323 @itemize
12324 @item
12325 Select first 5 seconds 1st stream and rest of time 2nd stream:
12326 @example
12327 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12328 @end example
12329
12330 @item
12331 Same as above, but for audio:
12332 @example
12333 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12334 @end example
12335 @end itemize
12336
12337 @anchor{spp}
12338 @section spp
12339
12340 Apply a simple postprocessing filter that compresses and decompresses the image
12341 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12342 and average the results.
12343
12344 The filter accepts the following options:
12345
12346 @table @option
12347 @item quality
12348 Set quality. This option defines the number of levels for averaging. It accepts
12349 an integer in the range 0-6. If set to @code{0}, the filter will have no
12350 effect. A value of @code{6} means the higher quality. For each increment of
12351 that value the speed drops by a factor of approximately 2.  Default value is
12352 @code{3}.
12353
12354 @item qp
12355 Force a constant quantization parameter. If not set, the filter will use the QP
12356 from the video stream (if available).
12357
12358 @item mode
12359 Set thresholding mode. Available modes are:
12360
12361 @table @samp
12362 @item hard
12363 Set hard thresholding (default).
12364 @item soft
12365 Set soft thresholding (better de-ringing effect, but likely blurrier).
12366 @end table
12367
12368 @item use_bframe_qp
12369 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12370 option may cause flicker since the B-Frames have often larger QP. Default is
12371 @code{0} (not enabled).
12372 @end table
12373
12374 @anchor{subtitles}
12375 @section subtitles
12376
12377 Draw subtitles on top of input video using the libass library.
12378
12379 To enable compilation of this filter you need to configure FFmpeg with
12380 @code{--enable-libass}. This filter also requires a build with libavcodec and
12381 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12382 Alpha) subtitles format.
12383
12384 The filter accepts the following options:
12385
12386 @table @option
12387 @item filename, f
12388 Set the filename of the subtitle file to read. It must be specified.
12389
12390 @item original_size
12391 Specify the size of the original video, the video for which the ASS file
12392 was composed. For the syntax of this option, check the
12393 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12394 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12395 correctly scale the fonts if the aspect ratio has been changed.
12396
12397 @item fontsdir
12398 Set a directory path containing fonts that can be used by the filter.
12399 These fonts will be used in addition to whatever the font provider uses.
12400
12401 @item charenc
12402 Set subtitles input character encoding. @code{subtitles} filter only. Only
12403 useful if not UTF-8.
12404
12405 @item stream_index, si
12406 Set subtitles stream index. @code{subtitles} filter only.
12407
12408 @item force_style
12409 Override default style or script info parameters of the subtitles. It accepts a
12410 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12411 @end table
12412
12413 If the first key is not specified, it is assumed that the first value
12414 specifies the @option{filename}.
12415
12416 For example, to render the file @file{sub.srt} on top of the input
12417 video, use the command:
12418 @example
12419 subtitles=sub.srt
12420 @end example
12421
12422 which is equivalent to:
12423 @example
12424 subtitles=filename=sub.srt
12425 @end example
12426
12427 To render the default subtitles stream from file @file{video.mkv}, use:
12428 @example
12429 subtitles=video.mkv
12430 @end example
12431
12432 To render the second subtitles stream from that file, use:
12433 @example
12434 subtitles=video.mkv:si=1
12435 @end example
12436
12437 To make the subtitles stream from @file{sub.srt} appear in transparent green
12438 @code{DejaVu Serif}, use:
12439 @example
12440 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12441 @end example
12442
12443 @section super2xsai
12444
12445 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12446 Interpolate) pixel art scaling algorithm.
12447
12448 Useful for enlarging pixel art images without reducing sharpness.
12449
12450 @section swaprect
12451
12452 Swap two rectangular objects in video.
12453
12454 This filter accepts the following options:
12455
12456 @table @option
12457 @item w
12458 Set object width.
12459
12460 @item h
12461 Set object height.
12462
12463 @item x1
12464 Set 1st rect x coordinate.
12465
12466 @item y1
12467 Set 1st rect y coordinate.
12468
12469 @item x2
12470 Set 2nd rect x coordinate.
12471
12472 @item y2
12473 Set 2nd rect y coordinate.
12474
12475 All expressions are evaluated once for each frame.
12476 @end table
12477
12478 The all options are expressions containing the following constants:
12479
12480 @table @option
12481 @item w
12482 @item h
12483 The input width and height.
12484
12485 @item a
12486 same as @var{w} / @var{h}
12487
12488 @item sar
12489 input sample aspect ratio
12490
12491 @item dar
12492 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12493
12494 @item n
12495 The number of the input frame, starting from 0.
12496
12497 @item t
12498 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12499
12500 @item pos
12501 the position in the file of the input frame, NAN if unknown
12502 @end table
12503
12504 @section swapuv
12505 Swap U & V plane.
12506
12507 @section telecine
12508
12509 Apply telecine process to the video.
12510
12511 This filter accepts the following options:
12512
12513 @table @option
12514 @item first_field
12515 @table @samp
12516 @item top, t
12517 top field first
12518 @item bottom, b
12519 bottom field first
12520 The default value is @code{top}.
12521 @end table
12522
12523 @item pattern
12524 A string of numbers representing the pulldown pattern you wish to apply.
12525 The default value is @code{23}.
12526 @end table
12527
12528 @example
12529 Some typical patterns:
12530
12531 NTSC output (30i):
12532 27.5p: 32222
12533 24p: 23 (classic)
12534 24p: 2332 (preferred)
12535 20p: 33
12536 18p: 334
12537 16p: 3444
12538
12539 PAL output (25i):
12540 27.5p: 12222
12541 24p: 222222222223 ("Euro pulldown")
12542 16.67p: 33
12543 16p: 33333334
12544 @end example
12545
12546 @section thumbnail
12547 Select the most representative frame in a given sequence of consecutive frames.
12548
12549 The filter accepts the following options:
12550
12551 @table @option
12552 @item n
12553 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12554 will pick one of them, and then handle the next batch of @var{n} frames until
12555 the end. Default is @code{100}.
12556 @end table
12557
12558 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12559 value will result in a higher memory usage, so a high value is not recommended.
12560
12561 @subsection Examples
12562
12563 @itemize
12564 @item
12565 Extract one picture each 50 frames:
12566 @example
12567 thumbnail=50
12568 @end example
12569
12570 @item
12571 Complete example of a thumbnail creation with @command{ffmpeg}:
12572 @example
12573 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12574 @end example
12575 @end itemize
12576
12577 @section tile
12578
12579 Tile several successive frames together.
12580
12581 The filter accepts the following options:
12582
12583 @table @option
12584
12585 @item layout
12586 Set the grid size (i.e. the number of lines and columns). For the syntax of
12587 this option, check the
12588 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12589
12590 @item nb_frames
12591 Set the maximum number of frames to render in the given area. It must be less
12592 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12593 the area will be used.
12594
12595 @item margin
12596 Set the outer border margin in pixels.
12597
12598 @item padding
12599 Set the inner border thickness (i.e. the number of pixels between frames). For
12600 more advanced padding options (such as having different values for the edges),
12601 refer to the pad video filter.
12602
12603 @item color
12604 Specify the color of the unused area. For the syntax of this option, check the
12605 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12606 is "black".
12607 @end table
12608
12609 @subsection Examples
12610
12611 @itemize
12612 @item
12613 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12614 @example
12615 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12616 @end example
12617 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12618 duplicating each output frame to accommodate the originally detected frame
12619 rate.
12620
12621 @item
12622 Display @code{5} pictures in an area of @code{3x2} frames,
12623 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12624 mixed flat and named options:
12625 @example
12626 tile=3x2:nb_frames=5:padding=7:margin=2
12627 @end example
12628 @end itemize
12629
12630 @section tinterlace
12631
12632 Perform various types of temporal field interlacing.
12633
12634 Frames are counted starting from 1, so the first input frame is
12635 considered odd.
12636
12637 The filter accepts the following options:
12638
12639 @table @option
12640
12641 @item mode
12642 Specify the mode of the interlacing. This option can also be specified
12643 as a value alone. See below for a list of values for this option.
12644
12645 Available values are:
12646
12647 @table @samp
12648 @item merge, 0
12649 Move odd frames into the upper field, even into the lower field,
12650 generating a double height frame at half frame rate.
12651 @example
12652  ------> time
12653 Input:
12654 Frame 1         Frame 2         Frame 3         Frame 4
12655
12656 11111           22222           33333           44444
12657 11111           22222           33333           44444
12658 11111           22222           33333           44444
12659 11111           22222           33333           44444
12660
12661 Output:
12662 11111                           33333
12663 22222                           44444
12664 11111                           33333
12665 22222                           44444
12666 11111                           33333
12667 22222                           44444
12668 11111                           33333
12669 22222                           44444
12670 @end example
12671
12672 @item drop_even, 1
12673 Only output odd frames, even frames are dropped, generating a frame with
12674 unchanged height at half frame rate.
12675
12676 @example
12677  ------> time
12678 Input:
12679 Frame 1         Frame 2         Frame 3         Frame 4
12680
12681 11111           22222           33333           44444
12682 11111           22222           33333           44444
12683 11111           22222           33333           44444
12684 11111           22222           33333           44444
12685
12686 Output:
12687 11111                           33333
12688 11111                           33333
12689 11111                           33333
12690 11111                           33333
12691 @end example
12692
12693 @item drop_odd, 2
12694 Only output even frames, odd frames are dropped, generating a frame with
12695 unchanged height at half frame rate.
12696
12697 @example
12698  ------> time
12699 Input:
12700 Frame 1         Frame 2         Frame 3         Frame 4
12701
12702 11111           22222           33333           44444
12703 11111           22222           33333           44444
12704 11111           22222           33333           44444
12705 11111           22222           33333           44444
12706
12707 Output:
12708                 22222                           44444
12709                 22222                           44444
12710                 22222                           44444
12711                 22222                           44444
12712 @end example
12713
12714 @item pad, 3
12715 Expand each frame to full height, but pad alternate lines with black,
12716 generating a frame with double height at the same input frame rate.
12717
12718 @example
12719  ------> time
12720 Input:
12721 Frame 1         Frame 2         Frame 3         Frame 4
12722
12723 11111           22222           33333           44444
12724 11111           22222           33333           44444
12725 11111           22222           33333           44444
12726 11111           22222           33333           44444
12727
12728 Output:
12729 11111           .....           33333           .....
12730 .....           22222           .....           44444
12731 11111           .....           33333           .....
12732 .....           22222           .....           44444
12733 11111           .....           33333           .....
12734 .....           22222           .....           44444
12735 11111           .....           33333           .....
12736 .....           22222           .....           44444
12737 @end example
12738
12739
12740 @item interleave_top, 4
12741 Interleave the upper field from odd frames with the lower field from
12742 even frames, generating a frame with unchanged height at half frame rate.
12743
12744 @example
12745  ------> time
12746 Input:
12747 Frame 1         Frame 2         Frame 3         Frame 4
12748
12749 11111<-         22222           33333<-         44444
12750 11111           22222<-         33333           44444<-
12751 11111<-         22222           33333<-         44444
12752 11111           22222<-         33333           44444<-
12753
12754 Output:
12755 11111                           33333
12756 22222                           44444
12757 11111                           33333
12758 22222                           44444
12759 @end example
12760
12761
12762 @item interleave_bottom, 5
12763 Interleave the lower field from odd frames with the upper field from
12764 even frames, generating a frame with unchanged height at half frame rate.
12765
12766 @example
12767  ------> time
12768 Input:
12769 Frame 1         Frame 2         Frame 3         Frame 4
12770
12771 11111           22222<-         33333           44444<-
12772 11111<-         22222           33333<-         44444
12773 11111           22222<-         33333           44444<-
12774 11111<-         22222           33333<-         44444
12775
12776 Output:
12777 22222                           44444
12778 11111                           33333
12779 22222                           44444
12780 11111                           33333
12781 @end example
12782
12783
12784 @item interlacex2, 6
12785 Double frame rate with unchanged height. Frames are inserted each
12786 containing the second temporal field from the previous input frame and
12787 the first temporal field from the next input frame. This mode relies on
12788 the top_field_first flag. Useful for interlaced video displays with no
12789 field synchronisation.
12790
12791 @example
12792  ------> time
12793 Input:
12794 Frame 1         Frame 2         Frame 3         Frame 4
12795
12796 11111           22222           33333           44444
12797  11111           22222           33333           44444
12798 11111           22222           33333           44444
12799  11111           22222           33333           44444
12800
12801 Output:
12802 11111   22222   22222   33333   33333   44444   44444
12803  11111   11111   22222   22222   33333   33333   44444
12804 11111   22222   22222   33333   33333   44444   44444
12805  11111   11111   22222   22222   33333   33333   44444
12806 @end example
12807
12808
12809 @item mergex2, 7
12810 Move odd frames into the upper field, even into the lower field,
12811 generating a double height frame at same frame rate.
12812
12813 @example
12814  ------> time
12815 Input:
12816 Frame 1         Frame 2         Frame 3         Frame 4
12817
12818 11111           22222           33333           44444
12819 11111           22222           33333           44444
12820 11111           22222           33333           44444
12821 11111           22222           33333           44444
12822
12823 Output:
12824 11111           33333           33333           55555
12825 22222           22222           44444           44444
12826 11111           33333           33333           55555
12827 22222           22222           44444           44444
12828 11111           33333           33333           55555
12829 22222           22222           44444           44444
12830 11111           33333           33333           55555
12831 22222           22222           44444           44444
12832 @end example
12833
12834 @end table
12835
12836 Numeric values are deprecated but are accepted for backward
12837 compatibility reasons.
12838
12839 Default mode is @code{merge}.
12840
12841 @item flags
12842 Specify flags influencing the filter process.
12843
12844 Available value for @var{flags} is:
12845
12846 @table @option
12847 @item low_pass_filter, vlfp
12848 Enable vertical low-pass filtering in the filter.
12849 Vertical low-pass filtering is required when creating an interlaced
12850 destination from a progressive source which contains high-frequency
12851 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12852 patterning.
12853
12854 Vertical low-pass filtering can only be enabled for @option{mode}
12855 @var{interleave_top} and @var{interleave_bottom}.
12856
12857 @end table
12858 @end table
12859
12860 @section transpose
12861
12862 Transpose rows with columns in the input video and optionally flip it.
12863
12864 It accepts the following parameters:
12865
12866 @table @option
12867
12868 @item dir
12869 Specify the transposition direction.
12870
12871 Can assume the following values:
12872 @table @samp
12873 @item 0, 4, cclock_flip
12874 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12875 @example
12876 L.R     L.l
12877 . . ->  . .
12878 l.r     R.r
12879 @end example
12880
12881 @item 1, 5, clock
12882 Rotate by 90 degrees clockwise, that is:
12883 @example
12884 L.R     l.L
12885 . . ->  . .
12886 l.r     r.R
12887 @end example
12888
12889 @item 2, 6, cclock
12890 Rotate by 90 degrees counterclockwise, that is:
12891 @example
12892 L.R     R.r
12893 . . ->  . .
12894 l.r     L.l
12895 @end example
12896
12897 @item 3, 7, clock_flip
12898 Rotate by 90 degrees clockwise and vertically flip, that is:
12899 @example
12900 L.R     r.R
12901 . . ->  . .
12902 l.r     l.L
12903 @end example
12904 @end table
12905
12906 For values between 4-7, the transposition is only done if the input
12907 video geometry is portrait and not landscape. These values are
12908 deprecated, the @code{passthrough} option should be used instead.
12909
12910 Numerical values are deprecated, and should be dropped in favor of
12911 symbolic constants.
12912
12913 @item passthrough
12914 Do not apply the transposition if the input geometry matches the one
12915 specified by the specified value. It accepts the following values:
12916 @table @samp
12917 @item none
12918 Always apply transposition.
12919 @item portrait
12920 Preserve portrait geometry (when @var{height} >= @var{width}).
12921 @item landscape
12922 Preserve landscape geometry (when @var{width} >= @var{height}).
12923 @end table
12924
12925 Default value is @code{none}.
12926 @end table
12927
12928 For example to rotate by 90 degrees clockwise and preserve portrait
12929 layout:
12930 @example
12931 transpose=dir=1:passthrough=portrait
12932 @end example
12933
12934 The command above can also be specified as:
12935 @example
12936 transpose=1:portrait
12937 @end example
12938
12939 @section trim
12940 Trim the input so that the output contains one continuous subpart of the input.
12941
12942 It accepts the following parameters:
12943 @table @option
12944 @item start
12945 Specify the time of the start of the kept section, i.e. the frame with the
12946 timestamp @var{start} will be the first frame in the output.
12947
12948 @item end
12949 Specify the time of the first frame that will be dropped, i.e. the frame
12950 immediately preceding the one with the timestamp @var{end} will be the last
12951 frame in the output.
12952
12953 @item start_pts
12954 This is the same as @var{start}, except this option sets the start timestamp
12955 in timebase units instead of seconds.
12956
12957 @item end_pts
12958 This is the same as @var{end}, except this option sets the end timestamp
12959 in timebase units instead of seconds.
12960
12961 @item duration
12962 The maximum duration of the output in seconds.
12963
12964 @item start_frame
12965 The number of the first frame that should be passed to the output.
12966
12967 @item end_frame
12968 The number of the first frame that should be dropped.
12969 @end table
12970
12971 @option{start}, @option{end}, and @option{duration} are expressed as time
12972 duration specifications; see
12973 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12974 for the accepted syntax.
12975
12976 Note that the first two sets of the start/end options and the @option{duration}
12977 option look at the frame timestamp, while the _frame variants simply count the
12978 frames that pass through the filter. Also note that this filter does not modify
12979 the timestamps. If you wish for the output timestamps to start at zero, insert a
12980 setpts filter after the trim filter.
12981
12982 If multiple start or end options are set, this filter tries to be greedy and
12983 keep all the frames that match at least one of the specified constraints. To keep
12984 only the part that matches all the constraints at once, chain multiple trim
12985 filters.
12986
12987 The defaults are such that all the input is kept. So it is possible to set e.g.
12988 just the end values to keep everything before the specified time.
12989
12990 Examples:
12991 @itemize
12992 @item
12993 Drop everything except the second minute of input:
12994 @example
12995 ffmpeg -i INPUT -vf trim=60:120
12996 @end example
12997
12998 @item
12999 Keep only the first second:
13000 @example
13001 ffmpeg -i INPUT -vf trim=duration=1
13002 @end example
13003
13004 @end itemize
13005
13006
13007 @anchor{unsharp}
13008 @section unsharp
13009
13010 Sharpen or blur the input video.
13011
13012 It accepts the following parameters:
13013
13014 @table @option
13015 @item luma_msize_x, lx
13016 Set the luma matrix horizontal size. It must be an odd integer between
13017 3 and 63. The default value is 5.
13018
13019 @item luma_msize_y, ly
13020 Set the luma matrix vertical size. It must be an odd integer between 3
13021 and 63. The default value is 5.
13022
13023 @item luma_amount, la
13024 Set the luma effect strength. It must be a floating point number, reasonable
13025 values lay between -1.5 and 1.5.
13026
13027 Negative values will blur the input video, while positive values will
13028 sharpen it, a value of zero will disable the effect.
13029
13030 Default value is 1.0.
13031
13032 @item chroma_msize_x, cx
13033 Set the chroma matrix horizontal size. It must be an odd integer
13034 between 3 and 63. The default value is 5.
13035
13036 @item chroma_msize_y, cy
13037 Set the chroma matrix vertical size. It must be an odd integer
13038 between 3 and 63. The default value is 5.
13039
13040 @item chroma_amount, ca
13041 Set the chroma effect strength. It must be a floating point number, reasonable
13042 values lay between -1.5 and 1.5.
13043
13044 Negative values will blur the input video, while positive values will
13045 sharpen it, a value of zero will disable the effect.
13046
13047 Default value is 0.0.
13048
13049 @item opencl
13050 If set to 1, specify using OpenCL capabilities, only available if
13051 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13052
13053 @end table
13054
13055 All parameters are optional and default to the equivalent of the
13056 string '5:5:1.0:5:5:0.0'.
13057
13058 @subsection Examples
13059
13060 @itemize
13061 @item
13062 Apply strong luma sharpen effect:
13063 @example
13064 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13065 @end example
13066
13067 @item
13068 Apply a strong blur of both luma and chroma parameters:
13069 @example
13070 unsharp=7:7:-2:7:7:-2
13071 @end example
13072 @end itemize
13073
13074 @section uspp
13075
13076 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13077 the image at several (or - in the case of @option{quality} level @code{8} - all)
13078 shifts and average the results.
13079
13080 The way this differs from the behavior of spp is that uspp actually encodes &
13081 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13082 DCT similar to MJPEG.
13083
13084 The filter accepts the following options:
13085
13086 @table @option
13087 @item quality
13088 Set quality. This option defines the number of levels for averaging. It accepts
13089 an integer in the range 0-8. If set to @code{0}, the filter will have no
13090 effect. A value of @code{8} means the higher quality. For each increment of
13091 that value the speed drops by a factor of approximately 2.  Default value is
13092 @code{3}.
13093
13094 @item qp
13095 Force a constant quantization parameter. If not set, the filter will use the QP
13096 from the video stream (if available).
13097 @end table
13098
13099 @section vectorscope
13100
13101 Display 2 color component values in the two dimensional graph (which is called
13102 a vectorscope).
13103
13104 This filter accepts the following options:
13105
13106 @table @option
13107 @item mode, m
13108 Set vectorscope mode.
13109
13110 It accepts the following values:
13111 @table @samp
13112 @item gray
13113 Gray values are displayed on graph, higher brightness means more pixels have
13114 same component color value on location in graph. This is the default mode.
13115
13116 @item color
13117 Gray values are displayed on graph. Surrounding pixels values which are not
13118 present in video frame are drawn in gradient of 2 color components which are
13119 set by option @code{x} and @code{y}. The 3rd color component is static.
13120
13121 @item color2
13122 Actual color components values present in video frame are displayed on graph.
13123
13124 @item color3
13125 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13126 on graph increases value of another color component, which is luminance by
13127 default values of @code{x} and @code{y}.
13128
13129 @item color4
13130 Actual colors present in video frame are displayed on graph. If two different
13131 colors map to same position on graph then color with higher value of component
13132 not present in graph is picked.
13133
13134 @item color5
13135 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13136 component picked from radial gradient.
13137 @end table
13138
13139 @item x
13140 Set which color component will be represented on X-axis. Default is @code{1}.
13141
13142 @item y
13143 Set which color component will be represented on Y-axis. Default is @code{2}.
13144
13145 @item intensity, i
13146 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13147 of color component which represents frequency of (X, Y) location in graph.
13148
13149 @item envelope, e
13150 @table @samp
13151 @item none
13152 No envelope, this is default.
13153
13154 @item instant
13155 Instant envelope, even darkest single pixel will be clearly highlighted.
13156
13157 @item peak
13158 Hold maximum and minimum values presented in graph over time. This way you
13159 can still spot out of range values without constantly looking at vectorscope.
13160
13161 @item peak+instant
13162 Peak and instant envelope combined together.
13163 @end table
13164
13165 @item graticule, g
13166 Set what kind of graticule to draw.
13167 @table @samp
13168 @item none
13169 @item green
13170 @item color
13171 @end table
13172
13173 @item opacity, o
13174 Set graticule opacity.
13175
13176 @item flags, f
13177 Set graticule flags.
13178
13179 @table @samp
13180 @item white
13181 Draw graticule for white point.
13182
13183 @item black
13184 Draw graticule for black point.
13185
13186 @item name
13187 Draw color points short names.
13188 @end table
13189
13190 @item bgopacity, b
13191 Set background opacity.
13192
13193 @item lthreshold, l
13194 Set low threshold for color component not represented on X or Y axis.
13195 Values lower than this value will be ignored. Default is 0.
13196 Note this value is multiplied with actual max possible value one pixel component
13197 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13198 is 0.1 * 255 = 25.
13199
13200 @item hthreshold, h
13201 Set high threshold for color component not represented on X or Y axis.
13202 Values higher than this value will be ignored. Default is 1.
13203 Note this value is multiplied with actual max possible value one pixel component
13204 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13205 is 0.9 * 255 = 230.
13206
13207 @item colorspace, c
13208 Set what kind of colorspace to use when drawing graticule.
13209 @table @samp
13210 @item auto
13211 @item 601
13212 @item 709
13213 @end table
13214 Default is auto.
13215 @end table
13216
13217 @anchor{vidstabdetect}
13218 @section vidstabdetect
13219
13220 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13221 @ref{vidstabtransform} for pass 2.
13222
13223 This filter generates a file with relative translation and rotation
13224 transform information about subsequent frames, which is then used by
13225 the @ref{vidstabtransform} filter.
13226
13227 To enable compilation of this filter you need to configure FFmpeg with
13228 @code{--enable-libvidstab}.
13229
13230 This filter accepts the following options:
13231
13232 @table @option
13233 @item result
13234 Set the path to the file used to write the transforms information.
13235 Default value is @file{transforms.trf}.
13236
13237 @item shakiness
13238 Set how shaky the video is and how quick the camera is. It accepts an
13239 integer in the range 1-10, a value of 1 means little shakiness, a
13240 value of 10 means strong shakiness. Default value is 5.
13241
13242 @item accuracy
13243 Set the accuracy of the detection process. It must be a value in the
13244 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13245 accuracy. Default value is 15.
13246
13247 @item stepsize
13248 Set stepsize of the search process. The region around minimum is
13249 scanned with 1 pixel resolution. Default value is 6.
13250
13251 @item mincontrast
13252 Set minimum contrast. Below this value a local measurement field is
13253 discarded. Must be a floating point value in the range 0-1. Default
13254 value is 0.3.
13255
13256 @item tripod
13257 Set reference frame number for tripod mode.
13258
13259 If enabled, the motion of the frames is compared to a reference frame
13260 in the filtered stream, identified by the specified number. The idea
13261 is to compensate all movements in a more-or-less static scene and keep
13262 the camera view absolutely still.
13263
13264 If set to 0, it is disabled. The frames are counted starting from 1.
13265
13266 @item show
13267 Show fields and transforms in the resulting frames. It accepts an
13268 integer in the range 0-2. Default value is 0, which disables any
13269 visualization.
13270 @end table
13271
13272 @subsection Examples
13273
13274 @itemize
13275 @item
13276 Use default values:
13277 @example
13278 vidstabdetect
13279 @end example
13280
13281 @item
13282 Analyze strongly shaky movie and put the results in file
13283 @file{mytransforms.trf}:
13284 @example
13285 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13286 @end example
13287
13288 @item
13289 Visualize the result of internal transformations in the resulting
13290 video:
13291 @example
13292 vidstabdetect=show=1
13293 @end example
13294
13295 @item
13296 Analyze a video with medium shakiness using @command{ffmpeg}:
13297 @example
13298 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13299 @end example
13300 @end itemize
13301
13302 @anchor{vidstabtransform}
13303 @section vidstabtransform
13304
13305 Video stabilization/deshaking: pass 2 of 2,
13306 see @ref{vidstabdetect} for pass 1.
13307
13308 Read a file with transform information for each frame and
13309 apply/compensate them. Together with the @ref{vidstabdetect}
13310 filter this can be used to deshake videos. See also
13311 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13312 the @ref{unsharp} filter, see below.
13313
13314 To enable compilation of this filter you need to configure FFmpeg with
13315 @code{--enable-libvidstab}.
13316
13317 @subsection Options
13318
13319 @table @option
13320 @item input
13321 Set path to the file used to read the transforms. Default value is
13322 @file{transforms.trf}.
13323
13324 @item smoothing
13325 Set the number of frames (value*2 + 1) used for lowpass filtering the
13326 camera movements. Default value is 10.
13327
13328 For example a number of 10 means that 21 frames are used (10 in the
13329 past and 10 in the future) to smoothen the motion in the video. A
13330 larger value leads to a smoother video, but limits the acceleration of
13331 the camera (pan/tilt movements). 0 is a special case where a static
13332 camera is simulated.
13333
13334 @item optalgo
13335 Set the camera path optimization algorithm.
13336
13337 Accepted values are:
13338 @table @samp
13339 @item gauss
13340 gaussian kernel low-pass filter on camera motion (default)
13341 @item avg
13342 averaging on transformations
13343 @end table
13344
13345 @item maxshift
13346 Set maximal number of pixels to translate frames. Default value is -1,
13347 meaning no limit.
13348
13349 @item maxangle
13350 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13351 value is -1, meaning no limit.
13352
13353 @item crop
13354 Specify how to deal with borders that may be visible due to movement
13355 compensation.
13356
13357 Available values are:
13358 @table @samp
13359 @item keep
13360 keep image information from previous frame (default)
13361 @item black
13362 fill the border black
13363 @end table
13364
13365 @item invert
13366 Invert transforms if set to 1. Default value is 0.
13367
13368 @item relative
13369 Consider transforms as relative to previous frame if set to 1,
13370 absolute if set to 0. Default value is 0.
13371
13372 @item zoom
13373 Set percentage to zoom. A positive value will result in a zoom-in
13374 effect, a negative value in a zoom-out effect. Default value is 0 (no
13375 zoom).
13376
13377 @item optzoom
13378 Set optimal zooming to avoid borders.
13379
13380 Accepted values are:
13381 @table @samp
13382 @item 0
13383 disabled
13384 @item 1
13385 optimal static zoom value is determined (only very strong movements
13386 will lead to visible borders) (default)
13387 @item 2
13388 optimal adaptive zoom value is determined (no borders will be
13389 visible), see @option{zoomspeed}
13390 @end table
13391
13392 Note that the value given at zoom is added to the one calculated here.
13393
13394 @item zoomspeed
13395 Set percent to zoom maximally each frame (enabled when
13396 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13397 0.25.
13398
13399 @item interpol
13400 Specify type of interpolation.
13401
13402 Available values are:
13403 @table @samp
13404 @item no
13405 no interpolation
13406 @item linear
13407 linear only horizontal
13408 @item bilinear
13409 linear in both directions (default)
13410 @item bicubic
13411 cubic in both directions (slow)
13412 @end table
13413
13414 @item tripod
13415 Enable virtual tripod mode if set to 1, which is equivalent to
13416 @code{relative=0:smoothing=0}. Default value is 0.
13417
13418 Use also @code{tripod} option of @ref{vidstabdetect}.
13419
13420 @item debug
13421 Increase log verbosity if set to 1. Also the detected global motions
13422 are written to the temporary file @file{global_motions.trf}. Default
13423 value is 0.
13424 @end table
13425
13426 @subsection Examples
13427
13428 @itemize
13429 @item
13430 Use @command{ffmpeg} for a typical stabilization with default values:
13431 @example
13432 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13433 @end example
13434
13435 Note the use of the @ref{unsharp} filter which is always recommended.
13436
13437 @item
13438 Zoom in a bit more and load transform data from a given file:
13439 @example
13440 vidstabtransform=zoom=5:input="mytransforms.trf"
13441 @end example
13442
13443 @item
13444 Smoothen the video even more:
13445 @example
13446 vidstabtransform=smoothing=30
13447 @end example
13448 @end itemize
13449
13450 @section vflip
13451
13452 Flip the input video vertically.
13453
13454 For example, to vertically flip a video with @command{ffmpeg}:
13455 @example
13456 ffmpeg -i in.avi -vf "vflip" out.avi
13457 @end example
13458
13459 @anchor{vignette}
13460 @section vignette
13461
13462 Make or reverse a natural vignetting effect.
13463
13464 The filter accepts the following options:
13465
13466 @table @option
13467 @item angle, a
13468 Set lens angle expression as a number of radians.
13469
13470 The value is clipped in the @code{[0,PI/2]} range.
13471
13472 Default value: @code{"PI/5"}
13473
13474 @item x0
13475 @item y0
13476 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13477 by default.
13478
13479 @item mode
13480 Set forward/backward mode.
13481
13482 Available modes are:
13483 @table @samp
13484 @item forward
13485 The larger the distance from the central point, the darker the image becomes.
13486
13487 @item backward
13488 The larger the distance from the central point, the brighter the image becomes.
13489 This can be used to reverse a vignette effect, though there is no automatic
13490 detection to extract the lens @option{angle} and other settings (yet). It can
13491 also be used to create a burning effect.
13492 @end table
13493
13494 Default value is @samp{forward}.
13495
13496 @item eval
13497 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13498
13499 It accepts the following values:
13500 @table @samp
13501 @item init
13502 Evaluate expressions only once during the filter initialization.
13503
13504 @item frame
13505 Evaluate expressions for each incoming frame. This is way slower than the
13506 @samp{init} mode since it requires all the scalers to be re-computed, but it
13507 allows advanced dynamic expressions.
13508 @end table
13509
13510 Default value is @samp{init}.
13511
13512 @item dither
13513 Set dithering to reduce the circular banding effects. Default is @code{1}
13514 (enabled).
13515
13516 @item aspect
13517 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13518 Setting this value to the SAR of the input will make a rectangular vignetting
13519 following the dimensions of the video.
13520
13521 Default is @code{1/1}.
13522 @end table
13523
13524 @subsection Expressions
13525
13526 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13527 following parameters.
13528
13529 @table @option
13530 @item w
13531 @item h
13532 input width and height
13533
13534 @item n
13535 the number of input frame, starting from 0
13536
13537 @item pts
13538 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13539 @var{TB} units, NAN if undefined
13540
13541 @item r
13542 frame rate of the input video, NAN if the input frame rate is unknown
13543
13544 @item t
13545 the PTS (Presentation TimeStamp) of the filtered video frame,
13546 expressed in seconds, NAN if undefined
13547
13548 @item tb
13549 time base of the input video
13550 @end table
13551
13552
13553 @subsection Examples
13554
13555 @itemize
13556 @item
13557 Apply simple strong vignetting effect:
13558 @example
13559 vignette=PI/4
13560 @end example
13561
13562 @item
13563 Make a flickering vignetting:
13564 @example
13565 vignette='PI/4+random(1)*PI/50':eval=frame
13566 @end example
13567
13568 @end itemize
13569
13570 @section vstack
13571 Stack input videos vertically.
13572
13573 All streams must be of same pixel format and of same width.
13574
13575 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13576 to create same output.
13577
13578 The filter accept the following option:
13579
13580 @table @option
13581 @item inputs
13582 Set number of input streams. Default is 2.
13583
13584 @item shortest
13585 If set to 1, force the output to terminate when the shortest input
13586 terminates. Default value is 0.
13587 @end table
13588
13589 @section w3fdif
13590
13591 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13592 Deinterlacing Filter").
13593
13594 Based on the process described by Martin Weston for BBC R&D, and
13595 implemented based on the de-interlace algorithm written by Jim
13596 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13597 uses filter coefficients calculated by BBC R&D.
13598
13599 There are two sets of filter coefficients, so called "simple":
13600 and "complex". Which set of filter coefficients is used can
13601 be set by passing an optional parameter:
13602
13603 @table @option
13604 @item filter
13605 Set the interlacing filter coefficients. Accepts one of the following values:
13606
13607 @table @samp
13608 @item simple
13609 Simple filter coefficient set.
13610 @item complex
13611 More-complex filter coefficient set.
13612 @end table
13613 Default value is @samp{complex}.
13614
13615 @item deint
13616 Specify which frames to deinterlace. Accept one of the following values:
13617
13618 @table @samp
13619 @item all
13620 Deinterlace all frames,
13621 @item interlaced
13622 Only deinterlace frames marked as interlaced.
13623 @end table
13624
13625 Default value is @samp{all}.
13626 @end table
13627
13628 @section waveform
13629 Video waveform monitor.
13630
13631 The waveform monitor plots color component intensity. By default luminance
13632 only. Each column of the waveform corresponds to a column of pixels in the
13633 source video.
13634
13635 It accepts the following options:
13636
13637 @table @option
13638 @item mode, m
13639 Can be either @code{row}, or @code{column}. Default is @code{column}.
13640 In row mode, the graph on the left side represents color component value 0 and
13641 the right side represents value = 255. In column mode, the top side represents
13642 color component value = 0 and bottom side represents value = 255.
13643
13644 @item intensity, i
13645 Set intensity. Smaller values are useful to find out how many values of the same
13646 luminance are distributed across input rows/columns.
13647 Default value is @code{0.04}. Allowed range is [0, 1].
13648
13649 @item mirror, r
13650 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13651 In mirrored mode, higher values will be represented on the left
13652 side for @code{row} mode and at the top for @code{column} mode. Default is
13653 @code{1} (mirrored).
13654
13655 @item display, d
13656 Set display mode.
13657 It accepts the following values:
13658 @table @samp
13659 @item overlay
13660 Presents information identical to that in the @code{parade}, except
13661 that the graphs representing color components are superimposed directly
13662 over one another.
13663
13664 This display mode makes it easier to spot relative differences or similarities
13665 in overlapping areas of the color components that are supposed to be identical,
13666 such as neutral whites, grays, or blacks.
13667
13668 @item stack
13669 Display separate graph for the color components side by side in
13670 @code{row} mode or one below the other in @code{column} mode.
13671
13672 @item parade
13673 Display separate graph for the color components side by side in
13674 @code{column} mode or one below the other in @code{row} mode.
13675
13676 Using this display mode makes it easy to spot color casts in the highlights
13677 and shadows of an image, by comparing the contours of the top and the bottom
13678 graphs of each waveform. Since whites, grays, and blacks are characterized
13679 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13680 should display three waveforms of roughly equal width/height. If not, the
13681 correction is easy to perform by making level adjustments the three waveforms.
13682 @end table
13683 Default is @code{stack}.
13684
13685 @item components, c
13686 Set which color components to display. Default is 1, which means only luminance
13687 or red color component if input is in RGB colorspace. If is set for example to
13688 7 it will display all 3 (if) available color components.
13689
13690 @item envelope, e
13691 @table @samp
13692 @item none
13693 No envelope, this is default.
13694
13695 @item instant
13696 Instant envelope, minimum and maximum values presented in graph will be easily
13697 visible even with small @code{step} value.
13698
13699 @item peak
13700 Hold minimum and maximum values presented in graph across time. This way you
13701 can still spot out of range values without constantly looking at waveforms.
13702
13703 @item peak+instant
13704 Peak and instant envelope combined together.
13705 @end table
13706
13707 @item filter, f
13708 @table @samp
13709 @item lowpass
13710 No filtering, this is default.
13711
13712 @item flat
13713 Luma and chroma combined together.
13714
13715 @item aflat
13716 Similar as above, but shows difference between blue and red chroma.
13717
13718 @item chroma
13719 Displays only chroma.
13720
13721 @item color
13722 Displays actual color value on waveform.
13723
13724 @item acolor
13725 Similar as above, but with luma showing frequency of chroma values.
13726 @end table
13727
13728 @item graticule, g
13729 Set which graticule to display.
13730
13731 @table @samp
13732 @item none
13733 Do not display graticule.
13734
13735 @item green
13736 Display green graticule showing legal broadcast ranges.
13737 @end table
13738
13739 @item opacity, o
13740 Set graticule opacity.
13741
13742 @item flags, fl
13743 Set graticule flags.
13744
13745 @table @samp
13746 @item numbers
13747 Draw numbers above lines. By default enabled.
13748
13749 @item dots
13750 Draw dots instead of lines.
13751 @end table
13752
13753 @item scale, s
13754 Set scale used for displaying graticule.
13755
13756 @table @samp
13757 @item digital
13758 @item millivolts
13759 @item ire
13760 @end table
13761 Default is digital.
13762 @end table
13763
13764 @section xbr
13765 Apply the xBR high-quality magnification filter which is designed for pixel
13766 art. It follows a set of edge-detection rules, see
13767 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13768
13769 It accepts the following option:
13770
13771 @table @option
13772 @item n
13773 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13774 @code{3xBR} and @code{4} for @code{4xBR}.
13775 Default is @code{3}.
13776 @end table
13777
13778 @anchor{yadif}
13779 @section yadif
13780
13781 Deinterlace the input video ("yadif" means "yet another deinterlacing
13782 filter").
13783
13784 It accepts the following parameters:
13785
13786
13787 @table @option
13788
13789 @item mode
13790 The interlacing mode to adopt. It accepts one of the following values:
13791
13792 @table @option
13793 @item 0, send_frame
13794 Output one frame for each frame.
13795 @item 1, send_field
13796 Output one frame for each field.
13797 @item 2, send_frame_nospatial
13798 Like @code{send_frame}, but it skips the spatial interlacing check.
13799 @item 3, send_field_nospatial
13800 Like @code{send_field}, but it skips the spatial interlacing check.
13801 @end table
13802
13803 The default value is @code{send_frame}.
13804
13805 @item parity
13806 The picture field parity assumed for the input interlaced video. It accepts one
13807 of the following values:
13808
13809 @table @option
13810 @item 0, tff
13811 Assume the top field is first.
13812 @item 1, bff
13813 Assume the bottom field is first.
13814 @item -1, auto
13815 Enable automatic detection of field parity.
13816 @end table
13817
13818 The default value is @code{auto}.
13819 If the interlacing is unknown or the decoder does not export this information,
13820 top field first will be assumed.
13821
13822 @item deint
13823 Specify which frames to deinterlace. Accept one of the following
13824 values:
13825
13826 @table @option
13827 @item 0, all
13828 Deinterlace all frames.
13829 @item 1, interlaced
13830 Only deinterlace frames marked as interlaced.
13831 @end table
13832
13833 The default value is @code{all}.
13834 @end table
13835
13836 @section zoompan
13837
13838 Apply Zoom & Pan effect.
13839
13840 This filter accepts the following options:
13841
13842 @table @option
13843 @item zoom, z
13844 Set the zoom expression. Default is 1.
13845
13846 @item x
13847 @item y
13848 Set the x and y expression. Default is 0.
13849
13850 @item d
13851 Set the duration expression in number of frames.
13852 This sets for how many number of frames effect will last for
13853 single input image.
13854
13855 @item s
13856 Set the output image size, default is 'hd720'.
13857
13858 @item fps
13859 Set the output frame rate, default is '25'.
13860 @end table
13861
13862 Each expression can contain the following constants:
13863
13864 @table @option
13865 @item in_w, iw
13866 Input width.
13867
13868 @item in_h, ih
13869 Input height.
13870
13871 @item out_w, ow
13872 Output width.
13873
13874 @item out_h, oh
13875 Output height.
13876
13877 @item in
13878 Input frame count.
13879
13880 @item on
13881 Output frame count.
13882
13883 @item x
13884 @item y
13885 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13886 for current input frame.
13887
13888 @item px
13889 @item py
13890 'x' and 'y' of last output frame of previous input frame or 0 when there was
13891 not yet such frame (first input frame).
13892
13893 @item zoom
13894 Last calculated zoom from 'z' expression for current input frame.
13895
13896 @item pzoom
13897 Last calculated zoom of last output frame of previous input frame.
13898
13899 @item duration
13900 Number of output frames for current input frame. Calculated from 'd' expression
13901 for each input frame.
13902
13903 @item pduration
13904 number of output frames created for previous input frame
13905
13906 @item a
13907 Rational number: input width / input height
13908
13909 @item sar
13910 sample aspect ratio
13911
13912 @item dar
13913 display aspect ratio
13914
13915 @end table
13916
13917 @subsection Examples
13918
13919 @itemize
13920 @item
13921 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13922 @example
13923 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
13924 @end example
13925
13926 @item
13927 Zoom-in up to 1.5 and pan always at center of picture:
13928 @example
13929 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13930 @end example
13931 @end itemize
13932
13933 @section zscale
13934 Scale (resize) the input video, using the z.lib library:
13935 https://github.com/sekrit-twc/zimg.
13936
13937 The zscale filter forces the output display aspect ratio to be the same
13938 as the input, by changing the output sample aspect ratio.
13939
13940 If the input image format is different from the format requested by
13941 the next filter, the zscale filter will convert the input to the
13942 requested format.
13943
13944 @subsection Options
13945 The filter accepts the following options.
13946
13947 @table @option
13948 @item width, w
13949 @item height, h
13950 Set the output video dimension expression. Default value is the input
13951 dimension.
13952
13953 If the @var{width} or @var{w} is 0, the input width is used for the output.
13954 If the @var{height} or @var{h} is 0, the input height is used for the output.
13955
13956 If one of the values is -1, the zscale filter will use a value that
13957 maintains the aspect ratio of the input image, calculated from the
13958 other specified dimension. If both of them are -1, the input size is
13959 used
13960
13961 If one of the values is -n with n > 1, the zscale filter will also use a value
13962 that maintains the aspect ratio of the input image, calculated from the other
13963 specified dimension. After that it will, however, make sure that the calculated
13964 dimension is divisible by n and adjust the value if necessary.
13965
13966 See below for the list of accepted constants for use in the dimension
13967 expression.
13968
13969 @item size, s
13970 Set the video size. For the syntax of this option, check the
13971 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13972
13973 @item dither, d
13974 Set the dither type.
13975
13976 Possible values are:
13977 @table @var
13978 @item none
13979 @item ordered
13980 @item random
13981 @item error_diffusion
13982 @end table
13983
13984 Default is none.
13985
13986 @item filter, f
13987 Set the resize filter type.
13988
13989 Possible values are:
13990 @table @var
13991 @item point
13992 @item bilinear
13993 @item bicubic
13994 @item spline16
13995 @item spline36
13996 @item lanczos
13997 @end table
13998
13999 Default is bilinear.
14000
14001 @item range, r
14002 Set the color range.
14003
14004 Possible values are:
14005 @table @var
14006 @item input
14007 @item limited
14008 @item full
14009 @end table
14010
14011 Default is same as input.
14012
14013 @item primaries, p
14014 Set the color primaries.
14015
14016 Possible values are:
14017 @table @var
14018 @item input
14019 @item 709
14020 @item unspecified
14021 @item 170m
14022 @item 240m
14023 @item 2020
14024 @end table
14025
14026 Default is same as input.
14027
14028 @item transfer, t
14029 Set the transfer characteristics.
14030
14031 Possible values are:
14032 @table @var
14033 @item input
14034 @item 709
14035 @item unspecified
14036 @item 601
14037 @item linear
14038 @item 2020_10
14039 @item 2020_12
14040 @end table
14041
14042 Default is same as input.
14043
14044 @item matrix, m
14045 Set the colorspace matrix.
14046
14047 Possible value are:
14048 @table @var
14049 @item input
14050 @item 709
14051 @item unspecified
14052 @item 470bg
14053 @item 170m
14054 @item 2020_ncl
14055 @item 2020_cl
14056 @end table
14057
14058 Default is same as input.
14059
14060 @item rangein, rin
14061 Set the input color range.
14062
14063 Possible values are:
14064 @table @var
14065 @item input
14066 @item limited
14067 @item full
14068 @end table
14069
14070 Default is same as input.
14071
14072 @item primariesin, pin
14073 Set the input color primaries.
14074
14075 Possible values are:
14076 @table @var
14077 @item input
14078 @item 709
14079 @item unspecified
14080 @item 170m
14081 @item 240m
14082 @item 2020
14083 @end table
14084
14085 Default is same as input.
14086
14087 @item transferin, tin
14088 Set the input transfer characteristics.
14089
14090 Possible values are:
14091 @table @var
14092 @item input
14093 @item 709
14094 @item unspecified
14095 @item 601
14096 @item linear
14097 @item 2020_10
14098 @item 2020_12
14099 @end table
14100
14101 Default is same as input.
14102
14103 @item matrixin, min
14104 Set the input colorspace matrix.
14105
14106 Possible value are:
14107 @table @var
14108 @item input
14109 @item 709
14110 @item unspecified
14111 @item 470bg
14112 @item 170m
14113 @item 2020_ncl
14114 @item 2020_cl
14115 @end table
14116 @end table
14117
14118 The values of the @option{w} and @option{h} options are expressions
14119 containing the following constants:
14120
14121 @table @var
14122 @item in_w
14123 @item in_h
14124 The input width and height
14125
14126 @item iw
14127 @item ih
14128 These are the same as @var{in_w} and @var{in_h}.
14129
14130 @item out_w
14131 @item out_h
14132 The output (scaled) width and height
14133
14134 @item ow
14135 @item oh
14136 These are the same as @var{out_w} and @var{out_h}
14137
14138 @item a
14139 The same as @var{iw} / @var{ih}
14140
14141 @item sar
14142 input sample aspect ratio
14143
14144 @item dar
14145 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14146
14147 @item hsub
14148 @item vsub
14149 horizontal and vertical input chroma subsample values. For example for the
14150 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14151
14152 @item ohsub
14153 @item ovsub
14154 horizontal and vertical output chroma subsample values. For example for the
14155 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14156 @end table
14157
14158 @table @option
14159 @end table
14160
14161 @c man end VIDEO FILTERS
14162
14163 @chapter Video Sources
14164 @c man begin VIDEO SOURCES
14165
14166 Below is a description of the currently available video sources.
14167
14168 @section buffer
14169
14170 Buffer video frames, and make them available to the filter chain.
14171
14172 This source is mainly intended for a programmatic use, in particular
14173 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14174
14175 It accepts the following parameters:
14176
14177 @table @option
14178
14179 @item video_size
14180 Specify the size (width and height) of the buffered video frames. For the
14181 syntax of this option, check the
14182 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14183
14184 @item width
14185 The input video width.
14186
14187 @item height
14188 The input video height.
14189
14190 @item pix_fmt
14191 A string representing the pixel format of the buffered video frames.
14192 It may be a number corresponding to a pixel format, or a pixel format
14193 name.
14194
14195 @item time_base
14196 Specify the timebase assumed by the timestamps of the buffered frames.
14197
14198 @item frame_rate
14199 Specify the frame rate expected for the video stream.
14200
14201 @item pixel_aspect, sar
14202 The sample (pixel) aspect ratio of the input video.
14203
14204 @item sws_param
14205 Specify the optional parameters to be used for the scale filter which
14206 is automatically inserted when an input change is detected in the
14207 input size or format.
14208
14209 @item hw_frames_ctx
14210 When using a hardware pixel format, this should be a reference to an
14211 AVHWFramesContext describing input frames.
14212 @end table
14213
14214 For example:
14215 @example
14216 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14217 @end example
14218
14219 will instruct the source to accept video frames with size 320x240 and
14220 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14221 square pixels (1:1 sample aspect ratio).
14222 Since the pixel format with name "yuv410p" corresponds to the number 6
14223 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14224 this example corresponds to:
14225 @example
14226 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14227 @end example
14228
14229 Alternatively, the options can be specified as a flat string, but this
14230 syntax is deprecated:
14231
14232 @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}]
14233
14234 @section cellauto
14235
14236 Create a pattern generated by an elementary cellular automaton.
14237
14238 The initial state of the cellular automaton can be defined through the
14239 @option{filename}, and @option{pattern} options. If such options are
14240 not specified an initial state is created randomly.
14241
14242 At each new frame a new row in the video is filled with the result of
14243 the cellular automaton next generation. The behavior when the whole
14244 frame is filled is defined by the @option{scroll} option.
14245
14246 This source accepts the following options:
14247
14248 @table @option
14249 @item filename, f
14250 Read the initial cellular automaton state, i.e. the starting row, from
14251 the specified file.
14252 In the file, each non-whitespace character is considered an alive
14253 cell, a newline will terminate the row, and further characters in the
14254 file will be ignored.
14255
14256 @item pattern, p
14257 Read the initial cellular automaton state, i.e. the starting row, from
14258 the specified string.
14259
14260 Each non-whitespace character in the string is considered an alive
14261 cell, a newline will terminate the row, and further characters in the
14262 string will be ignored.
14263
14264 @item rate, r
14265 Set the video rate, that is the number of frames generated per second.
14266 Default is 25.
14267
14268 @item random_fill_ratio, ratio
14269 Set the random fill ratio for the initial cellular automaton row. It
14270 is a floating point number value ranging from 0 to 1, defaults to
14271 1/PHI.
14272
14273 This option is ignored when a file or a pattern is specified.
14274
14275 @item random_seed, seed
14276 Set the seed for filling randomly the initial row, must be an integer
14277 included between 0 and UINT32_MAX. If not specified, or if explicitly
14278 set to -1, the filter will try to use a good random seed on a best
14279 effort basis.
14280
14281 @item rule
14282 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14283 Default value is 110.
14284
14285 @item size, s
14286 Set the size of the output video. For the syntax of this option, check the
14287 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14288
14289 If @option{filename} or @option{pattern} is specified, the size is set
14290 by default to the width of the specified initial state row, and the
14291 height is set to @var{width} * PHI.
14292
14293 If @option{size} is set, it must contain the width of the specified
14294 pattern string, and the specified pattern will be centered in the
14295 larger row.
14296
14297 If a filename or a pattern string is not specified, the size value
14298 defaults to "320x518" (used for a randomly generated initial state).
14299
14300 @item scroll
14301 If set to 1, scroll the output upward when all the rows in the output
14302 have been already filled. If set to 0, the new generated row will be
14303 written over the top row just after the bottom row is filled.
14304 Defaults to 1.
14305
14306 @item start_full, full
14307 If set to 1, completely fill the output with generated rows before
14308 outputting the first frame.
14309 This is the default behavior, for disabling set the value to 0.
14310
14311 @item stitch
14312 If set to 1, stitch the left and right row edges together.
14313 This is the default behavior, for disabling set the value to 0.
14314 @end table
14315
14316 @subsection Examples
14317
14318 @itemize
14319 @item
14320 Read the initial state from @file{pattern}, and specify an output of
14321 size 200x400.
14322 @example
14323 cellauto=f=pattern:s=200x400
14324 @end example
14325
14326 @item
14327 Generate a random initial row with a width of 200 cells, with a fill
14328 ratio of 2/3:
14329 @example
14330 cellauto=ratio=2/3:s=200x200
14331 @end example
14332
14333 @item
14334 Create a pattern generated by rule 18 starting by a single alive cell
14335 centered on an initial row with width 100:
14336 @example
14337 cellauto=p=@@:s=100x400:full=0:rule=18
14338 @end example
14339
14340 @item
14341 Specify a more elaborated initial pattern:
14342 @example
14343 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14344 @end example
14345
14346 @end itemize
14347
14348 @anchor{coreimagesrc}
14349 @section coreimagesrc
14350 Video source generated on GPU using Apple's CoreImage API on OSX.
14351
14352 This video source is a specialized version of the @ref{coreimage} video filter.
14353 Use a core image generator at the beginning of the applied filterchain to
14354 generate the content.
14355
14356 The coreimagesrc video source accepts the following options:
14357 @table @option
14358 @item list_generators
14359 List all available generators along with all their respective options as well as
14360 possible minimum and maximum values along with the default values.
14361 @example
14362 list_generators=true
14363 @end example
14364
14365 @item size, s
14366 Specify the size of the sourced video. For the syntax of this option, check the
14367 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14368 The default value is @code{320x240}.
14369
14370 @item rate, r
14371 Specify the frame rate of the sourced video, as the number of frames
14372 generated per second. It has to be a string in the format
14373 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14374 number or a valid video frame rate abbreviation. The default value is
14375 "25".
14376
14377 @item sar
14378 Set the sample aspect ratio of the sourced video.
14379
14380 @item duration, d
14381 Set the duration of the sourced video. See
14382 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14383 for the accepted syntax.
14384
14385 If not specified, or the expressed duration is negative, the video is
14386 supposed to be generated forever.
14387 @end table
14388
14389 Additionally, all options of the @ref{coreimage} video filter are accepted.
14390 A complete filterchain can be used for further processing of the
14391 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14392 and examples for details.
14393
14394 @subsection Examples
14395
14396 @itemize
14397
14398 @item
14399 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14400 given as complete and escaped command-line for Apple's standard bash shell:
14401 @example
14402 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14403 @end example
14404 This example is equivalent to the QRCode example of @ref{coreimage} without the
14405 need for a nullsrc video source.
14406 @end itemize
14407
14408
14409 @section mandelbrot
14410
14411 Generate a Mandelbrot set fractal, and progressively zoom towards the
14412 point specified with @var{start_x} and @var{start_y}.
14413
14414 This source accepts the following options:
14415
14416 @table @option
14417
14418 @item end_pts
14419 Set the terminal pts value. Default value is 400.
14420
14421 @item end_scale
14422 Set the terminal scale value.
14423 Must be a floating point value. Default value is 0.3.
14424
14425 @item inner
14426 Set the inner coloring mode, that is the algorithm used to draw the
14427 Mandelbrot fractal internal region.
14428
14429 It shall assume one of the following values:
14430 @table @option
14431 @item black
14432 Set black mode.
14433 @item convergence
14434 Show time until convergence.
14435 @item mincol
14436 Set color based on point closest to the origin of the iterations.
14437 @item period
14438 Set period mode.
14439 @end table
14440
14441 Default value is @var{mincol}.
14442
14443 @item bailout
14444 Set the bailout value. Default value is 10.0.
14445
14446 @item maxiter
14447 Set the maximum of iterations performed by the rendering
14448 algorithm. Default value is 7189.
14449
14450 @item outer
14451 Set outer coloring mode.
14452 It shall assume one of following values:
14453 @table @option
14454 @item iteration_count
14455 Set iteration cound mode.
14456 @item normalized_iteration_count
14457 set normalized iteration count mode.
14458 @end table
14459 Default value is @var{normalized_iteration_count}.
14460
14461 @item rate, r
14462 Set frame rate, expressed as number of frames per second. Default
14463 value is "25".
14464
14465 @item size, s
14466 Set frame size. For the syntax of this option, check the "Video
14467 size" section in the ffmpeg-utils manual. Default value is "640x480".
14468
14469 @item start_scale
14470 Set the initial scale value. Default value is 3.0.
14471
14472 @item start_x
14473 Set the initial x position. Must be a floating point value between
14474 -100 and 100. Default value is -0.743643887037158704752191506114774.
14475
14476 @item start_y
14477 Set the initial y position. Must be a floating point value between
14478 -100 and 100. Default value is -0.131825904205311970493132056385139.
14479 @end table
14480
14481 @section mptestsrc
14482
14483 Generate various test patterns, as generated by the MPlayer test filter.
14484
14485 The size of the generated video is fixed, and is 256x256.
14486 This source is useful in particular for testing encoding features.
14487
14488 This source accepts the following options:
14489
14490 @table @option
14491
14492 @item rate, r
14493 Specify the frame rate of the sourced video, as the number of frames
14494 generated per second. It has to be a string in the format
14495 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14496 number or a valid video frame rate abbreviation. The default value is
14497 "25".
14498
14499 @item duration, d
14500 Set the duration of the sourced video. See
14501 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14502 for the accepted syntax.
14503
14504 If not specified, or the expressed duration is negative, the video is
14505 supposed to be generated forever.
14506
14507 @item test, t
14508
14509 Set the number or the name of the test to perform. Supported tests are:
14510 @table @option
14511 @item dc_luma
14512 @item dc_chroma
14513 @item freq_luma
14514 @item freq_chroma
14515 @item amp_luma
14516 @item amp_chroma
14517 @item cbp
14518 @item mv
14519 @item ring1
14520 @item ring2
14521 @item all
14522
14523 @end table
14524
14525 Default value is "all", which will cycle through the list of all tests.
14526 @end table
14527
14528 Some examples:
14529 @example
14530 mptestsrc=t=dc_luma
14531 @end example
14532
14533 will generate a "dc_luma" test pattern.
14534
14535 @section frei0r_src
14536
14537 Provide a frei0r source.
14538
14539 To enable compilation of this filter you need to install the frei0r
14540 header and configure FFmpeg with @code{--enable-frei0r}.
14541
14542 This source accepts the following parameters:
14543
14544 @table @option
14545
14546 @item size
14547 The size of the video to generate. For the syntax of this option, check the
14548 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14549
14550 @item framerate
14551 The framerate of the generated video. It may be a string of the form
14552 @var{num}/@var{den} or a frame rate abbreviation.
14553
14554 @item filter_name
14555 The name to the frei0r source to load. For more information regarding frei0r and
14556 how to set the parameters, read the @ref{frei0r} section in the video filters
14557 documentation.
14558
14559 @item filter_params
14560 A '|'-separated list of parameters to pass to the frei0r source.
14561
14562 @end table
14563
14564 For example, to generate a frei0r partik0l source with size 200x200
14565 and frame rate 10 which is overlaid on the overlay filter main input:
14566 @example
14567 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14568 @end example
14569
14570 @section life
14571
14572 Generate a life pattern.
14573
14574 This source is based on a generalization of John Conway's life game.
14575
14576 The sourced input represents a life grid, each pixel represents a cell
14577 which can be in one of two possible states, alive or dead. Every cell
14578 interacts with its eight neighbours, which are the cells that are
14579 horizontally, vertically, or diagonally adjacent.
14580
14581 At each interaction the grid evolves according to the adopted rule,
14582 which specifies the number of neighbor alive cells which will make a
14583 cell stay alive or born. The @option{rule} option allows one to specify
14584 the rule to adopt.
14585
14586 This source accepts the following options:
14587
14588 @table @option
14589 @item filename, f
14590 Set the file from which to read the initial grid state. In the file,
14591 each non-whitespace character is considered an alive cell, and newline
14592 is used to delimit the end of each row.
14593
14594 If this option is not specified, the initial grid is generated
14595 randomly.
14596
14597 @item rate, r
14598 Set the video rate, that is the number of frames generated per second.
14599 Default is 25.
14600
14601 @item random_fill_ratio, ratio
14602 Set the random fill ratio for the initial random grid. It is a
14603 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14604 It is ignored when a file is specified.
14605
14606 @item random_seed, seed
14607 Set the seed for filling the initial random grid, must be an integer
14608 included between 0 and UINT32_MAX. If not specified, or if explicitly
14609 set to -1, the filter will try to use a good random seed on a best
14610 effort basis.
14611
14612 @item rule
14613 Set the life rule.
14614
14615 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14616 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14617 @var{NS} specifies the number of alive neighbor cells which make a
14618 live cell stay alive, and @var{NB} the number of alive neighbor cells
14619 which make a dead cell to become alive (i.e. to "born").
14620 "s" and "b" can be used in place of "S" and "B", respectively.
14621
14622 Alternatively a rule can be specified by an 18-bits integer. The 9
14623 high order bits are used to encode the next cell state if it is alive
14624 for each number of neighbor alive cells, the low order bits specify
14625 the rule for "borning" new cells. Higher order bits encode for an
14626 higher number of neighbor cells.
14627 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14628 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14629
14630 Default value is "S23/B3", which is the original Conway's game of life
14631 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14632 cells, and will born a new cell if there are three alive cells around
14633 a dead cell.
14634
14635 @item size, s
14636 Set the size of the output video. For the syntax of this option, check the
14637 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14638
14639 If @option{filename} is specified, the size is set by default to the
14640 same size of the input file. If @option{size} is set, it must contain
14641 the size specified in the input file, and the initial grid defined in
14642 that file is centered in the larger resulting area.
14643
14644 If a filename is not specified, the size value defaults to "320x240"
14645 (used for a randomly generated initial grid).
14646
14647 @item stitch
14648 If set to 1, stitch the left and right grid edges together, and the
14649 top and bottom edges also. Defaults to 1.
14650
14651 @item mold
14652 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14653 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14654 value from 0 to 255.
14655
14656 @item life_color
14657 Set the color of living (or new born) cells.
14658
14659 @item death_color
14660 Set the color of dead cells. If @option{mold} is set, this is the first color
14661 used to represent a dead cell.
14662
14663 @item mold_color
14664 Set mold color, for definitely dead and moldy cells.
14665
14666 For the syntax of these 3 color options, check the "Color" section in the
14667 ffmpeg-utils manual.
14668 @end table
14669
14670 @subsection Examples
14671
14672 @itemize
14673 @item
14674 Read a grid from @file{pattern}, and center it on a grid of size
14675 300x300 pixels:
14676 @example
14677 life=f=pattern:s=300x300
14678 @end example
14679
14680 @item
14681 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14682 @example
14683 life=ratio=2/3:s=200x200
14684 @end example
14685
14686 @item
14687 Specify a custom rule for evolving a randomly generated grid:
14688 @example
14689 life=rule=S14/B34
14690 @end example
14691
14692 @item
14693 Full example with slow death effect (mold) using @command{ffplay}:
14694 @example
14695 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14696 @end example
14697 @end itemize
14698
14699 @anchor{allrgb}
14700 @anchor{allyuv}
14701 @anchor{color}
14702 @anchor{haldclutsrc}
14703 @anchor{nullsrc}
14704 @anchor{rgbtestsrc}
14705 @anchor{smptebars}
14706 @anchor{smptehdbars}
14707 @anchor{testsrc}
14708 @anchor{testsrc2}
14709 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14710
14711 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14712
14713 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14714
14715 The @code{color} source provides an uniformly colored input.
14716
14717 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14718 @ref{haldclut} filter.
14719
14720 The @code{nullsrc} source returns unprocessed video frames. It is
14721 mainly useful to be employed in analysis / debugging tools, or as the
14722 source for filters which ignore the input data.
14723
14724 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14725 detecting RGB vs BGR issues. You should see a red, green and blue
14726 stripe from top to bottom.
14727
14728 The @code{smptebars} source generates a color bars pattern, based on
14729 the SMPTE Engineering Guideline EG 1-1990.
14730
14731 The @code{smptehdbars} source generates a color bars pattern, based on
14732 the SMPTE RP 219-2002.
14733
14734 The @code{testsrc} source generates a test video pattern, showing a
14735 color pattern, a scrolling gradient and a timestamp. This is mainly
14736 intended for testing purposes.
14737
14738 The @code{testsrc2} source is similar to testsrc, but supports more
14739 pixel formats instead of just @code{rgb24}. This allows using it as an
14740 input for other tests without requiring a format conversion.
14741
14742 The sources accept the following parameters:
14743
14744 @table @option
14745
14746 @item color, c
14747 Specify the color of the source, only available in the @code{color}
14748 source. For the syntax of this option, check the "Color" section in the
14749 ffmpeg-utils manual.
14750
14751 @item level
14752 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14753 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14754 pixels to be used as identity matrix for 3D lookup tables. Each component is
14755 coded on a @code{1/(N*N)} scale.
14756
14757 @item size, s
14758 Specify the size of the sourced video. For the syntax of this option, check the
14759 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14760 The default value is @code{320x240}.
14761
14762 This option is not available with the @code{haldclutsrc} filter.
14763
14764 @item rate, r
14765 Specify the frame rate of the sourced video, as the number of frames
14766 generated per second. It has to be a string in the format
14767 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14768 number or a valid video frame rate abbreviation. The default value is
14769 "25".
14770
14771 @item sar
14772 Set the sample aspect ratio of the sourced video.
14773
14774 @item duration, d
14775 Set the duration of the sourced video. See
14776 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14777 for the accepted syntax.
14778
14779 If not specified, or the expressed duration is negative, the video is
14780 supposed to be generated forever.
14781
14782 @item decimals, n
14783 Set the number of decimals to show in the timestamp, only available in the
14784 @code{testsrc} source.
14785
14786 The displayed timestamp value will correspond to the original
14787 timestamp value multiplied by the power of 10 of the specified
14788 value. Default value is 0.
14789 @end table
14790
14791 For example the following:
14792 @example
14793 testsrc=duration=5.3:size=qcif:rate=10
14794 @end example
14795
14796 will generate a video with a duration of 5.3 seconds, with size
14797 176x144 and a frame rate of 10 frames per second.
14798
14799 The following graph description will generate a red source
14800 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14801 frames per second.
14802 @example
14803 color=c=red@@0.2:s=qcif:r=10
14804 @end example
14805
14806 If the input content is to be ignored, @code{nullsrc} can be used. The
14807 following command generates noise in the luminance plane by employing
14808 the @code{geq} filter:
14809 @example
14810 nullsrc=s=256x256, geq=random(1)*255:128:128
14811 @end example
14812
14813 @subsection Commands
14814
14815 The @code{color} source supports the following commands:
14816
14817 @table @option
14818 @item c, color
14819 Set the color of the created image. Accepts the same syntax of the
14820 corresponding @option{color} option.
14821 @end table
14822
14823 @c man end VIDEO SOURCES
14824
14825 @chapter Video Sinks
14826 @c man begin VIDEO SINKS
14827
14828 Below is a description of the currently available video sinks.
14829
14830 @section buffersink
14831
14832 Buffer video frames, and make them available to the end of the filter
14833 graph.
14834
14835 This sink is mainly intended for programmatic use, in particular
14836 through the interface defined in @file{libavfilter/buffersink.h}
14837 or the options system.
14838
14839 It accepts a pointer to an AVBufferSinkContext structure, which
14840 defines the incoming buffers' formats, to be passed as the opaque
14841 parameter to @code{avfilter_init_filter} for initialization.
14842
14843 @section nullsink
14844
14845 Null video sink: do absolutely nothing with the input video. It is
14846 mainly useful as a template and for use in analysis / debugging
14847 tools.
14848
14849 @c man end VIDEO SINKS
14850
14851 @chapter Multimedia Filters
14852 @c man begin MULTIMEDIA FILTERS
14853
14854 Below is a description of the currently available multimedia filters.
14855
14856 @section ahistogram
14857
14858 Convert input audio to a video output, displaying the volume histogram.
14859
14860 The filter accepts the following options:
14861
14862 @table @option
14863 @item dmode
14864 Specify how histogram is calculated.
14865
14866 It accepts the following values:
14867 @table @samp
14868 @item single
14869 Use single histogram for all channels.
14870 @item separate
14871 Use separate histogram for each channel.
14872 @end table
14873 Default is @code{single}.
14874
14875 @item rate, r
14876 Set frame rate, expressed as number of frames per second. Default
14877 value is "25".
14878
14879 @item size, s
14880 Specify the video size for the output. For the syntax of this option, check the
14881 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14882 Default value is @code{hd720}.
14883
14884 @item scale
14885 Set display scale.
14886
14887 It accepts the following values:
14888 @table @samp
14889 @item log
14890 logarithmic
14891 @item sqrt
14892 square root
14893 @item cbrt
14894 cubic root
14895 @item lin
14896 linear
14897 @item rlog
14898 reverse logarithmic
14899 @end table
14900 Default is @code{log}.
14901
14902 @item ascale
14903 Set amplitude scale.
14904
14905 It accepts the following values:
14906 @table @samp
14907 @item log
14908 logarithmic
14909 @item lin
14910 linear
14911 @end table
14912 Default is @code{log}.
14913
14914 @item acount
14915 Set how much frames to accumulate in histogram.
14916 Defauls is 1. Setting this to -1 accumulates all frames.
14917
14918 @item rheight
14919 Set histogram ratio of window height.
14920
14921 @item slide
14922 Set sonogram sliding.
14923
14924 It accepts the following values:
14925 @table @samp
14926 @item replace
14927 replace old rows with new ones.
14928 @item scroll
14929 scroll from top to bottom.
14930 @end table
14931 Default is @code{replace}.
14932 @end table
14933
14934 @section aphasemeter
14935
14936 Convert input audio to a video output, displaying the audio phase.
14937
14938 The filter accepts the following options:
14939
14940 @table @option
14941 @item rate, r
14942 Set the output frame rate. Default value is @code{25}.
14943
14944 @item size, s
14945 Set the video size for the output. For the syntax of this option, check the
14946 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14947 Default value is @code{800x400}.
14948
14949 @item rc
14950 @item gc
14951 @item bc
14952 Specify the red, green, blue contrast. Default values are @code{2},
14953 @code{7} and @code{1}.
14954 Allowed range is @code{[0, 255]}.
14955
14956 @item mpc
14957 Set color which will be used for drawing median phase. If color is
14958 @code{none} which is default, no median phase value will be drawn.
14959 @end table
14960
14961 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
14962 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
14963 The @code{-1} means left and right channels are completely out of phase and
14964 @code{1} means channels are in phase.
14965
14966 @section avectorscope
14967
14968 Convert input audio to a video output, representing the audio vector
14969 scope.
14970
14971 The filter is used to measure the difference between channels of stereo
14972 audio stream. A monoaural signal, consisting of identical left and right
14973 signal, results in straight vertical line. Any stereo separation is visible
14974 as a deviation from this line, creating a Lissajous figure.
14975 If the straight (or deviation from it) but horizontal line appears this
14976 indicates that the left and right channels are out of phase.
14977
14978 The filter accepts the following options:
14979
14980 @table @option
14981 @item mode, m
14982 Set the vectorscope mode.
14983
14984 Available values are:
14985 @table @samp
14986 @item lissajous
14987 Lissajous rotated by 45 degrees.
14988
14989 @item lissajous_xy
14990 Same as above but not rotated.
14991
14992 @item polar
14993 Shape resembling half of circle.
14994 @end table
14995
14996 Default value is @samp{lissajous}.
14997
14998 @item size, s
14999 Set the video size for the output. For the syntax of this option, check the
15000 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15001 Default value is @code{400x400}.
15002
15003 @item rate, r
15004 Set the output frame rate. Default value is @code{25}.
15005
15006 @item rc
15007 @item gc
15008 @item bc
15009 @item ac
15010 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15011 @code{160}, @code{80} and @code{255}.
15012 Allowed range is @code{[0, 255]}.
15013
15014 @item rf
15015 @item gf
15016 @item bf
15017 @item af
15018 Specify the red, green, blue and alpha fade. Default values are @code{15},
15019 @code{10}, @code{5} and @code{5}.
15020 Allowed range is @code{[0, 255]}.
15021
15022 @item zoom
15023 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15024
15025 @item draw
15026 Set the vectorscope drawing mode.
15027
15028 Available values are:
15029 @table @samp
15030 @item dot
15031 Draw dot for each sample.
15032
15033 @item line
15034 Draw line between previous and current sample.
15035 @end table
15036
15037 Default value is @samp{dot}.
15038 @end table
15039
15040 @subsection Examples
15041
15042 @itemize
15043 @item
15044 Complete example using @command{ffplay}:
15045 @example
15046 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15047              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15048 @end example
15049 @end itemize
15050
15051 @section bench, abench
15052
15053 Benchmark part of a filtergraph.
15054
15055 The filter accepts the following options:
15056
15057 @table @option
15058 @item action
15059 Start or stop a timer.
15060
15061 Available values are:
15062 @table @samp
15063 @item start
15064 Get the current time, set it as frame metadata (using the key
15065 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15066
15067 @item stop
15068 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15069 the input frame metadata to get the time difference. Time difference, average,
15070 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15071 @code{min}) are then printed. The timestamps are expressed in seconds.
15072 @end table
15073 @end table
15074
15075 @subsection Examples
15076
15077 @itemize
15078 @item
15079 Benchmark @ref{selectivecolor} filter:
15080 @example
15081 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15082 @end example
15083 @end itemize
15084
15085 @section concat
15086
15087 Concatenate audio and video streams, joining them together one after the
15088 other.
15089
15090 The filter works on segments of synchronized video and audio streams. All
15091 segments must have the same number of streams of each type, and that will
15092 also be the number of streams at output.
15093
15094 The filter accepts the following options:
15095
15096 @table @option
15097
15098 @item n
15099 Set the number of segments. Default is 2.
15100
15101 @item v
15102 Set the number of output video streams, that is also the number of video
15103 streams in each segment. Default is 1.
15104
15105 @item a
15106 Set the number of output audio streams, that is also the number of audio
15107 streams in each segment. Default is 0.
15108
15109 @item unsafe
15110 Activate unsafe mode: do not fail if segments have a different format.
15111
15112 @end table
15113
15114 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15115 @var{a} audio outputs.
15116
15117 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15118 segment, in the same order as the outputs, then the inputs for the second
15119 segment, etc.
15120
15121 Related streams do not always have exactly the same duration, for various
15122 reasons including codec frame size or sloppy authoring. For that reason,
15123 related synchronized streams (e.g. a video and its audio track) should be
15124 concatenated at once. The concat filter will use the duration of the longest
15125 stream in each segment (except the last one), and if necessary pad shorter
15126 audio streams with silence.
15127
15128 For this filter to work correctly, all segments must start at timestamp 0.
15129
15130 All corresponding streams must have the same parameters in all segments; the
15131 filtering system will automatically select a common pixel format for video
15132 streams, and a common sample format, sample rate and channel layout for
15133 audio streams, but other settings, such as resolution, must be converted
15134 explicitly by the user.
15135
15136 Different frame rates are acceptable but will result in variable frame rate
15137 at output; be sure to configure the output file to handle it.
15138
15139 @subsection Examples
15140
15141 @itemize
15142 @item
15143 Concatenate an opening, an episode and an ending, all in bilingual version
15144 (video in stream 0, audio in streams 1 and 2):
15145 @example
15146 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15147   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15148    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15149   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15150 @end example
15151
15152 @item
15153 Concatenate two parts, handling audio and video separately, using the
15154 (a)movie sources, and adjusting the resolution:
15155 @example
15156 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15157 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15158 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15159 @end example
15160 Note that a desync will happen at the stitch if the audio and video streams
15161 do not have exactly the same duration in the first file.
15162
15163 @end itemize
15164
15165 @anchor{ebur128}
15166 @section ebur128
15167
15168 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15169 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15170 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15171 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15172
15173 The filter also has a video output (see the @var{video} option) with a real
15174 time graph to observe the loudness evolution. The graphic contains the logged
15175 message mentioned above, so it is not printed anymore when this option is set,
15176 unless the verbose logging is set. The main graphing area contains the
15177 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15178 the momentary loudness (400 milliseconds).
15179
15180 More information about the Loudness Recommendation EBU R128 on
15181 @url{http://tech.ebu.ch/loudness}.
15182
15183 The filter accepts the following options:
15184
15185 @table @option
15186
15187 @item video
15188 Activate the video output. The audio stream is passed unchanged whether this
15189 option is set or no. The video stream will be the first output stream if
15190 activated. Default is @code{0}.
15191
15192 @item size
15193 Set the video size. This option is for video only. For the syntax of this
15194 option, check the
15195 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15196 Default and minimum resolution is @code{640x480}.
15197
15198 @item meter
15199 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15200 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15201 other integer value between this range is allowed.
15202
15203 @item metadata
15204 Set metadata injection. If set to @code{1}, the audio input will be segmented
15205 into 100ms output frames, each of them containing various loudness information
15206 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15207
15208 Default is @code{0}.
15209
15210 @item framelog
15211 Force the frame logging level.
15212
15213 Available values are:
15214 @table @samp
15215 @item info
15216 information logging level
15217 @item verbose
15218 verbose logging level
15219 @end table
15220
15221 By default, the logging level is set to @var{info}. If the @option{video} or
15222 the @option{metadata} options are set, it switches to @var{verbose}.
15223
15224 @item peak
15225 Set peak mode(s).
15226
15227 Available modes can be cumulated (the option is a @code{flag} type). Possible
15228 values are:
15229 @table @samp
15230 @item none
15231 Disable any peak mode (default).
15232 @item sample
15233 Enable sample-peak mode.
15234
15235 Simple peak mode looking for the higher sample value. It logs a message
15236 for sample-peak (identified by @code{SPK}).
15237 @item true
15238 Enable true-peak mode.
15239
15240 If enabled, the peak lookup is done on an over-sampled version of the input
15241 stream for better peak accuracy. It logs a message for true-peak.
15242 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15243 This mode requires a build with @code{libswresample}.
15244 @end table
15245
15246 @item dualmono
15247 Treat mono input files as "dual mono". If a mono file is intended for playback
15248 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15249 If set to @code{true}, this option will compensate for this effect.
15250 Multi-channel input files are not affected by this option.
15251
15252 @item panlaw
15253 Set a specific pan law to be used for the measurement of dual mono files.
15254 This parameter is optional, and has a default value of -3.01dB.
15255 @end table
15256
15257 @subsection Examples
15258
15259 @itemize
15260 @item
15261 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15262 @example
15263 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15264 @end example
15265
15266 @item
15267 Run an analysis with @command{ffmpeg}:
15268 @example
15269 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15270 @end example
15271 @end itemize
15272
15273 @section interleave, ainterleave
15274
15275 Temporally interleave frames from several inputs.
15276
15277 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15278
15279 These filters read frames from several inputs and send the oldest
15280 queued frame to the output.
15281
15282 Input streams must have a well defined, monotonically increasing frame
15283 timestamp values.
15284
15285 In order to submit one frame to output, these filters need to enqueue
15286 at least one frame for each input, so they cannot work in case one
15287 input is not yet terminated and will not receive incoming frames.
15288
15289 For example consider the case when one input is a @code{select} filter
15290 which always drop input frames. The @code{interleave} filter will keep
15291 reading from that input, but it will never be able to send new frames
15292 to output until the input will send an end-of-stream signal.
15293
15294 Also, depending on inputs synchronization, the filters will drop
15295 frames in case one input receives more frames than the other ones, and
15296 the queue is already filled.
15297
15298 These filters accept the following options:
15299
15300 @table @option
15301 @item nb_inputs, n
15302 Set the number of different inputs, it is 2 by default.
15303 @end table
15304
15305 @subsection Examples
15306
15307 @itemize
15308 @item
15309 Interleave frames belonging to different streams using @command{ffmpeg}:
15310 @example
15311 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15312 @end example
15313
15314 @item
15315 Add flickering blur effect:
15316 @example
15317 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15318 @end example
15319 @end itemize
15320
15321 @section perms, aperms
15322
15323 Set read/write permissions for the output frames.
15324
15325 These filters are mainly aimed at developers to test direct path in the
15326 following filter in the filtergraph.
15327
15328 The filters accept the following options:
15329
15330 @table @option
15331 @item mode
15332 Select the permissions mode.
15333
15334 It accepts the following values:
15335 @table @samp
15336 @item none
15337 Do nothing. This is the default.
15338 @item ro
15339 Set all the output frames read-only.
15340 @item rw
15341 Set all the output frames directly writable.
15342 @item toggle
15343 Make the frame read-only if writable, and writable if read-only.
15344 @item random
15345 Set each output frame read-only or writable randomly.
15346 @end table
15347
15348 @item seed
15349 Set the seed for the @var{random} mode, must be an integer included between
15350 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15351 @code{-1}, the filter will try to use a good random seed on a best effort
15352 basis.
15353 @end table
15354
15355 Note: in case of auto-inserted filter between the permission filter and the
15356 following one, the permission might not be received as expected in that
15357 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15358 perms/aperms filter can avoid this problem.
15359
15360 @section realtime, arealtime
15361
15362 Slow down filtering to match real time approximatively.
15363
15364 These filters will pause the filtering for a variable amount of time to
15365 match the output rate with the input timestamps.
15366 They are similar to the @option{re} option to @code{ffmpeg}.
15367
15368 They accept the following options:
15369
15370 @table @option
15371 @item limit
15372 Time limit for the pauses. Any pause longer than that will be considered
15373 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15374 @end table
15375
15376 @section select, aselect
15377
15378 Select frames to pass in output.
15379
15380 This filter accepts the following options:
15381
15382 @table @option
15383
15384 @item expr, e
15385 Set expression, which is evaluated for each input frame.
15386
15387 If the expression is evaluated to zero, the frame is discarded.
15388
15389 If the evaluation result is negative or NaN, the frame is sent to the
15390 first output; otherwise it is sent to the output with index
15391 @code{ceil(val)-1}, assuming that the input index starts from 0.
15392
15393 For example a value of @code{1.2} corresponds to the output with index
15394 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15395
15396 @item outputs, n
15397 Set the number of outputs. The output to which to send the selected
15398 frame is based on the result of the evaluation. Default value is 1.
15399 @end table
15400
15401 The expression can contain the following constants:
15402
15403 @table @option
15404 @item n
15405 The (sequential) number of the filtered frame, starting from 0.
15406
15407 @item selected_n
15408 The (sequential) number of the selected frame, starting from 0.
15409
15410 @item prev_selected_n
15411 The sequential number of the last selected frame. It's NAN if undefined.
15412
15413 @item TB
15414 The timebase of the input timestamps.
15415
15416 @item pts
15417 The PTS (Presentation TimeStamp) of the filtered video frame,
15418 expressed in @var{TB} units. It's NAN if undefined.
15419
15420 @item t
15421 The PTS of the filtered video frame,
15422 expressed in seconds. It's NAN if undefined.
15423
15424 @item prev_pts
15425 The PTS of the previously filtered video frame. It's NAN if undefined.
15426
15427 @item prev_selected_pts
15428 The PTS of the last previously filtered video frame. It's NAN if undefined.
15429
15430 @item prev_selected_t
15431 The PTS of the last previously selected video frame. It's NAN if undefined.
15432
15433 @item start_pts
15434 The PTS of the first video frame in the video. It's NAN if undefined.
15435
15436 @item start_t
15437 The time of the first video frame in the video. It's NAN if undefined.
15438
15439 @item pict_type @emph{(video only)}
15440 The type of the filtered frame. It can assume one of the following
15441 values:
15442 @table @option
15443 @item I
15444 @item P
15445 @item B
15446 @item S
15447 @item SI
15448 @item SP
15449 @item BI
15450 @end table
15451
15452 @item interlace_type @emph{(video only)}
15453 The frame interlace type. It can assume one of the following values:
15454 @table @option
15455 @item PROGRESSIVE
15456 The frame is progressive (not interlaced).
15457 @item TOPFIRST
15458 The frame is top-field-first.
15459 @item BOTTOMFIRST
15460 The frame is bottom-field-first.
15461 @end table
15462
15463 @item consumed_sample_n @emph{(audio only)}
15464 the number of selected samples before the current frame
15465
15466 @item samples_n @emph{(audio only)}
15467 the number of samples in the current frame
15468
15469 @item sample_rate @emph{(audio only)}
15470 the input sample rate
15471
15472 @item key
15473 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15474
15475 @item pos
15476 the position in the file of the filtered frame, -1 if the information
15477 is not available (e.g. for synthetic video)
15478
15479 @item scene @emph{(video only)}
15480 value between 0 and 1 to indicate a new scene; a low value reflects a low
15481 probability for the current frame to introduce a new scene, while a higher
15482 value means the current frame is more likely to be one (see the example below)
15483
15484 @item concatdec_select
15485 The concat demuxer can select only part of a concat input file by setting an
15486 inpoint and an outpoint, but the output packets may not be entirely contained
15487 in the selected interval. By using this variable, it is possible to skip frames
15488 generated by the concat demuxer which are not exactly contained in the selected
15489 interval.
15490
15491 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15492 and the @var{lavf.concat.duration} packet metadata values which are also
15493 present in the decoded frames.
15494
15495 The @var{concatdec_select} variable is -1 if the frame pts is at least
15496 start_time and either the duration metadata is missing or the frame pts is less
15497 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15498 missing.
15499
15500 That basically means that an input frame is selected if its pts is within the
15501 interval set by the concat demuxer.
15502
15503 @end table
15504
15505 The default value of the select expression is "1".
15506
15507 @subsection Examples
15508
15509 @itemize
15510 @item
15511 Select all frames in input:
15512 @example
15513 select
15514 @end example
15515
15516 The example above is the same as:
15517 @example
15518 select=1
15519 @end example
15520
15521 @item
15522 Skip all frames:
15523 @example
15524 select=0
15525 @end example
15526
15527 @item
15528 Select only I-frames:
15529 @example
15530 select='eq(pict_type\,I)'
15531 @end example
15532
15533 @item
15534 Select one frame every 100:
15535 @example
15536 select='not(mod(n\,100))'
15537 @end example
15538
15539 @item
15540 Select only frames contained in the 10-20 time interval:
15541 @example
15542 select=between(t\,10\,20)
15543 @end example
15544
15545 @item
15546 Select only I frames contained in the 10-20 time interval:
15547 @example
15548 select=between(t\,10\,20)*eq(pict_type\,I)
15549 @end example
15550
15551 @item
15552 Select frames with a minimum distance of 10 seconds:
15553 @example
15554 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15555 @end example
15556
15557 @item
15558 Use aselect to select only audio frames with samples number > 100:
15559 @example
15560 aselect='gt(samples_n\,100)'
15561 @end example
15562
15563 @item
15564 Create a mosaic of the first scenes:
15565 @example
15566 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15567 @end example
15568
15569 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15570 choice.
15571
15572 @item
15573 Send even and odd frames to separate outputs, and compose them:
15574 @example
15575 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15576 @end example
15577
15578 @item
15579 Select useful frames from an ffconcat file which is using inpoints and
15580 outpoints but where the source files are not intra frame only.
15581 @example
15582 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15583 @end example
15584 @end itemize
15585
15586 @section sendcmd, asendcmd
15587
15588 Send commands to filters in the filtergraph.
15589
15590 These filters read commands to be sent to other filters in the
15591 filtergraph.
15592
15593 @code{sendcmd} must be inserted between two video filters,
15594 @code{asendcmd} must be inserted between two audio filters, but apart
15595 from that they act the same way.
15596
15597 The specification of commands can be provided in the filter arguments
15598 with the @var{commands} option, or in a file specified by the
15599 @var{filename} option.
15600
15601 These filters accept the following options:
15602 @table @option
15603 @item commands, c
15604 Set the commands to be read and sent to the other filters.
15605 @item filename, f
15606 Set the filename of the commands to be read and sent to the other
15607 filters.
15608 @end table
15609
15610 @subsection Commands syntax
15611
15612 A commands description consists of a sequence of interval
15613 specifications, comprising a list of commands to be executed when a
15614 particular event related to that interval occurs. The occurring event
15615 is typically the current frame time entering or leaving a given time
15616 interval.
15617
15618 An interval is specified by the following syntax:
15619 @example
15620 @var{START}[-@var{END}] @var{COMMANDS};
15621 @end example
15622
15623 The time interval is specified by the @var{START} and @var{END} times.
15624 @var{END} is optional and defaults to the maximum time.
15625
15626 The current frame time is considered within the specified interval if
15627 it is included in the interval [@var{START}, @var{END}), that is when
15628 the time is greater or equal to @var{START} and is lesser than
15629 @var{END}.
15630
15631 @var{COMMANDS} consists of a sequence of one or more command
15632 specifications, separated by ",", relating to that interval.  The
15633 syntax of a command specification is given by:
15634 @example
15635 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15636 @end example
15637
15638 @var{FLAGS} is optional and specifies the type of events relating to
15639 the time interval which enable sending the specified command, and must
15640 be a non-null sequence of identifier flags separated by "+" or "|" and
15641 enclosed between "[" and "]".
15642
15643 The following flags are recognized:
15644 @table @option
15645 @item enter
15646 The command is sent when the current frame timestamp enters the
15647 specified interval. In other words, the command is sent when the
15648 previous frame timestamp was not in the given interval, and the
15649 current is.
15650
15651 @item leave
15652 The command is sent when the current frame timestamp leaves the
15653 specified interval. In other words, the command is sent when the
15654 previous frame timestamp was in the given interval, and the
15655 current is not.
15656 @end table
15657
15658 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15659 assumed.
15660
15661 @var{TARGET} specifies the target of the command, usually the name of
15662 the filter class or a specific filter instance name.
15663
15664 @var{COMMAND} specifies the name of the command for the target filter.
15665
15666 @var{ARG} is optional and specifies the optional list of argument for
15667 the given @var{COMMAND}.
15668
15669 Between one interval specification and another, whitespaces, or
15670 sequences of characters starting with @code{#} until the end of line,
15671 are ignored and can be used to annotate comments.
15672
15673 A simplified BNF description of the commands specification syntax
15674 follows:
15675 @example
15676 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15677 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15678 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15679 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15680 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15681 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15682 @end example
15683
15684 @subsection Examples
15685
15686 @itemize
15687 @item
15688 Specify audio tempo change at second 4:
15689 @example
15690 asendcmd=c='4.0 atempo tempo 1.5',atempo
15691 @end example
15692
15693 @item
15694 Specify a list of drawtext and hue commands in a file.
15695 @example
15696 # show text in the interval 5-10
15697 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15698          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15699
15700 # desaturate the image in the interval 15-20
15701 15.0-20.0 [enter] hue s 0,
15702           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
15703           [leave] hue s 1,
15704           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
15705
15706 # apply an exponential saturation fade-out effect, starting from time 25
15707 25 [enter] hue s exp(25-t)
15708 @end example
15709
15710 A filtergraph allowing to read and process the above command list
15711 stored in a file @file{test.cmd}, can be specified with:
15712 @example
15713 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
15714 @end example
15715 @end itemize
15716
15717 @anchor{setpts}
15718 @section setpts, asetpts
15719
15720 Change the PTS (presentation timestamp) of the input frames.
15721
15722 @code{setpts} works on video frames, @code{asetpts} on audio frames.
15723
15724 This filter accepts the following options:
15725
15726 @table @option
15727
15728 @item expr
15729 The expression which is evaluated for each frame to construct its timestamp.
15730
15731 @end table
15732
15733 The expression is evaluated through the eval API and can contain the following
15734 constants:
15735
15736 @table @option
15737 @item FRAME_RATE
15738 frame rate, only defined for constant frame-rate video
15739
15740 @item PTS
15741 The presentation timestamp in input
15742
15743 @item N
15744 The count of the input frame for video or the number of consumed samples,
15745 not including the current frame for audio, starting from 0.
15746
15747 @item NB_CONSUMED_SAMPLES
15748 The number of consumed samples, not including the current frame (only
15749 audio)
15750
15751 @item NB_SAMPLES, S
15752 The number of samples in the current frame (only audio)
15753
15754 @item SAMPLE_RATE, SR
15755 The audio sample rate.
15756
15757 @item STARTPTS
15758 The PTS of the first frame.
15759
15760 @item STARTT
15761 the time in seconds of the first frame
15762
15763 @item INTERLACED
15764 State whether the current frame is interlaced.
15765
15766 @item T
15767 the time in seconds of the current frame
15768
15769 @item POS
15770 original position in the file of the frame, or undefined if undefined
15771 for the current frame
15772
15773 @item PREV_INPTS
15774 The previous input PTS.
15775
15776 @item PREV_INT
15777 previous input time in seconds
15778
15779 @item PREV_OUTPTS
15780 The previous output PTS.
15781
15782 @item PREV_OUTT
15783 previous output time in seconds
15784
15785 @item RTCTIME
15786 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
15787 instead.
15788
15789 @item RTCSTART
15790 The wallclock (RTC) time at the start of the movie in microseconds.
15791
15792 @item TB
15793 The timebase of the input timestamps.
15794
15795 @end table
15796
15797 @subsection Examples
15798
15799 @itemize
15800 @item
15801 Start counting PTS from zero
15802 @example
15803 setpts=PTS-STARTPTS
15804 @end example
15805
15806 @item
15807 Apply fast motion effect:
15808 @example
15809 setpts=0.5*PTS
15810 @end example
15811
15812 @item
15813 Apply slow motion effect:
15814 @example
15815 setpts=2.0*PTS
15816 @end example
15817
15818 @item
15819 Set fixed rate of 25 frames per second:
15820 @example
15821 setpts=N/(25*TB)
15822 @end example
15823
15824 @item
15825 Set fixed rate 25 fps with some jitter:
15826 @example
15827 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
15828 @end example
15829
15830 @item
15831 Apply an offset of 10 seconds to the input PTS:
15832 @example
15833 setpts=PTS+10/TB
15834 @end example
15835
15836 @item
15837 Generate timestamps from a "live source" and rebase onto the current timebase:
15838 @example
15839 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
15840 @end example
15841
15842 @item
15843 Generate timestamps by counting samples:
15844 @example
15845 asetpts=N/SR/TB
15846 @end example
15847
15848 @end itemize
15849
15850 @section settb, asettb
15851
15852 Set the timebase to use for the output frames timestamps.
15853 It is mainly useful for testing timebase configuration.
15854
15855 It accepts the following parameters:
15856
15857 @table @option
15858
15859 @item expr, tb
15860 The expression which is evaluated into the output timebase.
15861
15862 @end table
15863
15864 The value for @option{tb} is an arithmetic expression representing a
15865 rational. The expression can contain the constants "AVTB" (the default
15866 timebase), "intb" (the input timebase) and "sr" (the sample rate,
15867 audio only). Default value is "intb".
15868
15869 @subsection Examples
15870
15871 @itemize
15872 @item
15873 Set the timebase to 1/25:
15874 @example
15875 settb=expr=1/25
15876 @end example
15877
15878 @item
15879 Set the timebase to 1/10:
15880 @example
15881 settb=expr=0.1
15882 @end example
15883
15884 @item
15885 Set the timebase to 1001/1000:
15886 @example
15887 settb=1+0.001
15888 @end example
15889
15890 @item
15891 Set the timebase to 2*intb:
15892 @example
15893 settb=2*intb
15894 @end example
15895
15896 @item
15897 Set the default timebase value:
15898 @example
15899 settb=AVTB
15900 @end example
15901 @end itemize
15902
15903 @section showcqt
15904 Convert input audio to a video output representing frequency spectrum
15905 logarithmically using Brown-Puckette constant Q transform algorithm with
15906 direct frequency domain coefficient calculation (but the transform itself
15907 is not really constant Q, instead the Q factor is actually variable/clamped),
15908 with musical tone scale, from E0 to D#10.
15909
15910 The filter accepts the following options:
15911
15912 @table @option
15913 @item size, s
15914 Specify the video size for the output. It must be even. For the syntax of this option,
15915 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15916 Default value is @code{1920x1080}.
15917
15918 @item fps, rate, r
15919 Set the output frame rate. Default value is @code{25}.
15920
15921 @item bar_h
15922 Set the bargraph height. It must be even. Default value is @code{-1} which
15923 computes the bargraph height automatically.
15924
15925 @item axis_h
15926 Set the axis height. It must be even. Default value is @code{-1} which computes
15927 the axis height automatically.
15928
15929 @item sono_h
15930 Set the sonogram height. It must be even. Default value is @code{-1} which
15931 computes the sonogram height automatically.
15932
15933 @item fullhd
15934 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
15935 instead. Default value is @code{1}.
15936
15937 @item sono_v, volume
15938 Specify the sonogram volume expression. It can contain variables:
15939 @table @option
15940 @item bar_v
15941 the @var{bar_v} evaluated expression
15942 @item frequency, freq, f
15943 the frequency where it is evaluated
15944 @item timeclamp, tc
15945 the value of @var{timeclamp} option
15946 @end table
15947 and functions:
15948 @table @option
15949 @item a_weighting(f)
15950 A-weighting of equal loudness
15951 @item b_weighting(f)
15952 B-weighting of equal loudness
15953 @item c_weighting(f)
15954 C-weighting of equal loudness.
15955 @end table
15956 Default value is @code{16}.
15957
15958 @item bar_v, volume2
15959 Specify the bargraph volume expression. It can contain variables:
15960 @table @option
15961 @item sono_v
15962 the @var{sono_v} evaluated expression
15963 @item frequency, freq, f
15964 the frequency where it is evaluated
15965 @item timeclamp, tc
15966 the value of @var{timeclamp} option
15967 @end table
15968 and functions:
15969 @table @option
15970 @item a_weighting(f)
15971 A-weighting of equal loudness
15972 @item b_weighting(f)
15973 B-weighting of equal loudness
15974 @item c_weighting(f)
15975 C-weighting of equal loudness.
15976 @end table
15977 Default value is @code{sono_v}.
15978
15979 @item sono_g, gamma
15980 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
15981 higher gamma makes the spectrum having more range. Default value is @code{3}.
15982 Acceptable range is @code{[1, 7]}.
15983
15984 @item bar_g, gamma2
15985 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
15986 @code{[1, 7]}.
15987
15988 @item timeclamp, tc
15989 Specify the transform timeclamp. At low frequency, there is trade-off between
15990 accuracy in time domain and frequency domain. If timeclamp is lower,
15991 event in time domain is represented more accurately (such as fast bass drum),
15992 otherwise event in frequency domain is represented more accurately
15993 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
15994
15995 @item basefreq
15996 Specify the transform base frequency. Default value is @code{20.01523126408007475},
15997 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
15998
15999 @item endfreq
16000 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16001 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16002
16003 @item coeffclamp
16004 This option is deprecated and ignored.
16005
16006 @item tlength
16007 Specify the transform length in time domain. Use this option to control accuracy
16008 trade-off between time domain and frequency domain at every frequency sample.
16009 It can contain variables:
16010 @table @option
16011 @item frequency, freq, f
16012 the frequency where it is evaluated
16013 @item timeclamp, tc
16014 the value of @var{timeclamp} option.
16015 @end table
16016 Default value is @code{384*tc/(384+tc*f)}.
16017
16018 @item count
16019 Specify the transform count for every video frame. Default value is @code{6}.
16020 Acceptable range is @code{[1, 30]}.
16021
16022 @item fcount
16023 Specify the transform count for every single pixel. Default value is @code{0},
16024 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16025
16026 @item fontfile
16027 Specify font file for use with freetype to draw the axis. If not specified,
16028 use embedded font. Note that drawing with font file or embedded font is not
16029 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16030 option instead.
16031
16032 @item fontcolor
16033 Specify font color expression. This is arithmetic expression that should return
16034 integer value 0xRRGGBB. It can contain variables:
16035 @table @option
16036 @item frequency, freq, f
16037 the frequency where it is evaluated
16038 @item timeclamp, tc
16039 the value of @var{timeclamp} option
16040 @end table
16041 and functions:
16042 @table @option
16043 @item midi(f)
16044 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16045 @item r(x), g(x), b(x)
16046 red, green, and blue value of intensity x.
16047 @end table
16048 Default value is @code{st(0, (midi(f)-59.5)/12);
16049 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16050 r(1-ld(1)) + b(ld(1))}.
16051
16052 @item axisfile
16053 Specify image file to draw the axis. This option override @var{fontfile} and
16054 @var{fontcolor} option.
16055
16056 @item axis, text
16057 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16058 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16059 Default value is @code{1}.
16060
16061 @end table
16062
16063 @subsection Examples
16064
16065 @itemize
16066 @item
16067 Playing audio while showing the spectrum:
16068 @example
16069 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16070 @end example
16071
16072 @item
16073 Same as above, but with frame rate 30 fps:
16074 @example
16075 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16076 @end example
16077
16078 @item
16079 Playing at 1280x720:
16080 @example
16081 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16082 @end example
16083
16084 @item
16085 Disable sonogram display:
16086 @example
16087 sono_h=0
16088 @end example
16089
16090 @item
16091 A1 and its harmonics: A1, A2, (near)E3, A3:
16092 @example
16093 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),
16094                  asplit[a][out1]; [a] showcqt [out0]'
16095 @end example
16096
16097 @item
16098 Same as above, but with more accuracy in frequency domain:
16099 @example
16100 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),
16101                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16102 @end example
16103
16104 @item
16105 Custom volume:
16106 @example
16107 bar_v=10:sono_v=bar_v*a_weighting(f)
16108 @end example
16109
16110 @item
16111 Custom gamma, now spectrum is linear to the amplitude.
16112 @example
16113 bar_g=2:sono_g=2
16114 @end example
16115
16116 @item
16117 Custom tlength equation:
16118 @example
16119 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)))'
16120 @end example
16121
16122 @item
16123 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16124 @example
16125 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16126 @end example
16127
16128 @item
16129 Custom frequency range with custom axis using image file:
16130 @example
16131 axisfile=myaxis.png:basefreq=40:endfreq=10000
16132 @end example
16133 @end itemize
16134
16135 @section showfreqs
16136
16137 Convert input audio to video output representing the audio power spectrum.
16138 Audio amplitude is on Y-axis while frequency is on X-axis.
16139
16140 The filter accepts the following options:
16141
16142 @table @option
16143 @item size, s
16144 Specify size of video. For the syntax of this option, check the
16145 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16146 Default is @code{1024x512}.
16147
16148 @item mode
16149 Set display mode.
16150 This set how each frequency bin will be represented.
16151
16152 It accepts the following values:
16153 @table @samp
16154 @item line
16155 @item bar
16156 @item dot
16157 @end table
16158 Default is @code{bar}.
16159
16160 @item ascale
16161 Set amplitude scale.
16162
16163 It accepts the following values:
16164 @table @samp
16165 @item lin
16166 Linear scale.
16167
16168 @item sqrt
16169 Square root scale.
16170
16171 @item cbrt
16172 Cubic root scale.
16173
16174 @item log
16175 Logarithmic scale.
16176 @end table
16177 Default is @code{log}.
16178
16179 @item fscale
16180 Set frequency scale.
16181
16182 It accepts the following values:
16183 @table @samp
16184 @item lin
16185 Linear scale.
16186
16187 @item log
16188 Logarithmic scale.
16189
16190 @item rlog
16191 Reverse logarithmic scale.
16192 @end table
16193 Default is @code{lin}.
16194
16195 @item win_size
16196 Set window size.
16197
16198 It accepts the following values:
16199 @table @samp
16200 @item w16
16201 @item w32
16202 @item w64
16203 @item w128
16204 @item w256
16205 @item w512
16206 @item w1024
16207 @item w2048
16208 @item w4096
16209 @item w8192
16210 @item w16384
16211 @item w32768
16212 @item w65536
16213 @end table
16214 Default is @code{w2048}
16215
16216 @item win_func
16217 Set windowing function.
16218
16219 It accepts the following values:
16220 @table @samp
16221 @item rect
16222 @item bartlett
16223 @item hanning
16224 @item hamming
16225 @item blackman
16226 @item welch
16227 @item flattop
16228 @item bharris
16229 @item bnuttall
16230 @item bhann
16231 @item sine
16232 @item nuttall
16233 @item lanczos
16234 @item gauss
16235 @item tukey
16236 @end table
16237 Default is @code{hanning}.
16238
16239 @item overlap
16240 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16241 which means optimal overlap for selected window function will be picked.
16242
16243 @item averaging
16244 Set time averaging. Setting this to 0 will display current maximal peaks.
16245 Default is @code{1}, which means time averaging is disabled.
16246
16247 @item colors
16248 Specify list of colors separated by space or by '|' which will be used to
16249 draw channel frequencies. Unrecognized or missing colors will be replaced
16250 by white color.
16251
16252 @item cmode
16253 Set channel display mode.
16254
16255 It accepts the following values:
16256 @table @samp
16257 @item combined
16258 @item separate
16259 @end table
16260 Default is @code{combined}.
16261
16262 @end table
16263
16264 @anchor{showspectrum}
16265 @section showspectrum
16266
16267 Convert input audio to a video output, representing the audio frequency
16268 spectrum.
16269
16270 The filter accepts the following options:
16271
16272 @table @option
16273 @item size, s
16274 Specify the video size for the output. For the syntax of this option, check the
16275 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16276 Default value is @code{640x512}.
16277
16278 @item slide
16279 Specify how the spectrum should slide along the window.
16280
16281 It accepts the following values:
16282 @table @samp
16283 @item replace
16284 the samples start again on the left when they reach the right
16285 @item scroll
16286 the samples scroll from right to left
16287 @item rscroll
16288 the samples scroll from left to right
16289 @item fullframe
16290 frames are only produced when the samples reach the right
16291 @end table
16292
16293 Default value is @code{replace}.
16294
16295 @item mode
16296 Specify display mode.
16297
16298 It accepts the following values:
16299 @table @samp
16300 @item combined
16301 all channels are displayed in the same row
16302 @item separate
16303 all channels are displayed in separate rows
16304 @end table
16305
16306 Default value is @samp{combined}.
16307
16308 @item color
16309 Specify display color mode.
16310
16311 It accepts the following values:
16312 @table @samp
16313 @item channel
16314 each channel is displayed in a separate color
16315 @item intensity
16316 each channel is displayed using the same color scheme
16317 @item rainbow
16318 each channel is displayed using the rainbow color scheme
16319 @item moreland
16320 each channel is displayed using the moreland color scheme
16321 @item nebulae
16322 each channel is displayed using the nebulae color scheme
16323 @item fire
16324 each channel is displayed using the fire color scheme
16325 @item fiery
16326 each channel is displayed using the fiery color scheme
16327 @item fruit
16328 each channel is displayed using the fruit color scheme
16329 @item cool
16330 each channel is displayed using the cool color scheme
16331 @end table
16332
16333 Default value is @samp{channel}.
16334
16335 @item scale
16336 Specify scale used for calculating intensity color values.
16337
16338 It accepts the following values:
16339 @table @samp
16340 @item lin
16341 linear
16342 @item sqrt
16343 square root, default
16344 @item cbrt
16345 cubic root
16346 @item 4thrt
16347 4th root
16348 @item 5thrt
16349 5th root
16350 @item log
16351 logarithmic
16352 @end table
16353
16354 Default value is @samp{sqrt}.
16355
16356 @item saturation
16357 Set saturation modifier for displayed colors. Negative values provide
16358 alternative color scheme. @code{0} is no saturation at all.
16359 Saturation must be in [-10.0, 10.0] range.
16360 Default value is @code{1}.
16361
16362 @item win_func
16363 Set window function.
16364
16365 It accepts the following values:
16366 @table @samp
16367 @item rect
16368 @item bartlett
16369 @item hann
16370 @item hanning
16371 @item hamming
16372 @item blackman
16373 @item welch
16374 @item flattop
16375 @item bharris
16376 @item bnuttall
16377 @item bhann
16378 @item sine
16379 @item nuttall
16380 @item lanczos
16381 @item gauss
16382 @item tukey
16383 @end table
16384
16385 Default value is @code{hann}.
16386
16387 @item orientation
16388 Set orientation of time vs frequency axis. Can be @code{vertical} or
16389 @code{horizontal}. Default is @code{vertical}.
16390
16391 @item overlap
16392 Set ratio of overlap window. Default value is @code{0}.
16393 When value is @code{1} overlap is set to recommended size for specific
16394 window function currently used.
16395
16396 @item gain
16397 Set scale gain for calculating intensity color values.
16398 Default value is @code{1}.
16399
16400 @item data
16401 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16402 @end table
16403
16404 The usage is very similar to the showwaves filter; see the examples in that
16405 section.
16406
16407 @subsection Examples
16408
16409 @itemize
16410 @item
16411 Large window with logarithmic color scaling:
16412 @example
16413 showspectrum=s=1280x480:scale=log
16414 @end example
16415
16416 @item
16417 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16418 @example
16419 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16420              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16421 @end example
16422 @end itemize
16423
16424 @section showspectrumpic
16425
16426 Convert input audio to a single video frame, representing the audio frequency
16427 spectrum.
16428
16429 The filter accepts the following options:
16430
16431 @table @option
16432 @item size, s
16433 Specify the video size for the output. For the syntax of this option, check the
16434 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16435 Default value is @code{4096x2048}.
16436
16437 @item mode
16438 Specify display mode.
16439
16440 It accepts the following values:
16441 @table @samp
16442 @item combined
16443 all channels are displayed in the same row
16444 @item separate
16445 all channels are displayed in separate rows
16446 @end table
16447 Default value is @samp{combined}.
16448
16449 @item color
16450 Specify display color mode.
16451
16452 It accepts the following values:
16453 @table @samp
16454 @item channel
16455 each channel is displayed in a separate color
16456 @item intensity
16457 each channel is displayed using the same color scheme
16458 @item rainbow
16459 each channel is displayed using the rainbow color scheme
16460 @item moreland
16461 each channel is displayed using the moreland color scheme
16462 @item nebulae
16463 each channel is displayed using the nebulae color scheme
16464 @item fire
16465 each channel is displayed using the fire color scheme
16466 @item fiery
16467 each channel is displayed using the fiery color scheme
16468 @item fruit
16469 each channel is displayed using the fruit color scheme
16470 @item cool
16471 each channel is displayed using the cool color scheme
16472 @end table
16473 Default value is @samp{intensity}.
16474
16475 @item scale
16476 Specify scale used for calculating intensity color values.
16477
16478 It accepts the following values:
16479 @table @samp
16480 @item lin
16481 linear
16482 @item sqrt
16483 square root, default
16484 @item cbrt
16485 cubic root
16486 @item 4thrt
16487 4th root
16488 @item 5thrt
16489 5th root
16490 @item log
16491 logarithmic
16492 @end table
16493 Default value is @samp{log}.
16494
16495 @item saturation
16496 Set saturation modifier for displayed colors. Negative values provide
16497 alternative color scheme. @code{0} is no saturation at all.
16498 Saturation must be in [-10.0, 10.0] range.
16499 Default value is @code{1}.
16500
16501 @item win_func
16502 Set window function.
16503
16504 It accepts the following values:
16505 @table @samp
16506 @item rect
16507 @item bartlett
16508 @item hann
16509 @item hanning
16510 @item hamming
16511 @item blackman
16512 @item welch
16513 @item flattop
16514 @item bharris
16515 @item bnuttall
16516 @item bhann
16517 @item sine
16518 @item nuttall
16519 @item lanczos
16520 @item gauss
16521 @item tukey
16522 @end table
16523 Default value is @code{hann}.
16524
16525 @item orientation
16526 Set orientation of time vs frequency axis. Can be @code{vertical} or
16527 @code{horizontal}. Default is @code{vertical}.
16528
16529 @item gain
16530 Set scale gain for calculating intensity color values.
16531 Default value is @code{1}.
16532
16533 @item legend
16534 Draw time and frequency axes and legends. Default is enabled.
16535 @end table
16536
16537 @subsection Examples
16538
16539 @itemize
16540 @item
16541 Extract an audio spectrogram of a whole audio track
16542 in a 1024x1024 picture using @command{ffmpeg}:
16543 @example
16544 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16545 @end example
16546 @end itemize
16547
16548 @section showvolume
16549
16550 Convert input audio volume to a video output.
16551
16552 The filter accepts the following options:
16553
16554 @table @option
16555 @item rate, r
16556 Set video rate.
16557
16558 @item b
16559 Set border width, allowed range is [0, 5]. Default is 1.
16560
16561 @item w
16562 Set channel width, allowed range is [80, 8192]. Default is 400.
16563
16564 @item h
16565 Set channel height, allowed range is [1, 900]. Default is 20.
16566
16567 @item f
16568 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16569
16570 @item c
16571 Set volume color expression.
16572
16573 The expression can use the following variables:
16574
16575 @table @option
16576 @item VOLUME
16577 Current max volume of channel in dB.
16578
16579 @item CHANNEL
16580 Current channel number, starting from 0.
16581 @end table
16582
16583 @item t
16584 If set, displays channel names. Default is enabled.
16585
16586 @item v
16587 If set, displays volume values. Default is enabled.
16588
16589 @item o
16590 Set orientation, can be @code{horizontal} or @code{vertical},
16591 default is @code{horizontal}.
16592
16593 @item s
16594 Set step size, allowed range s [0, 5]. Default is 0, which means
16595 step is disabled.
16596 @end table
16597
16598 @section showwaves
16599
16600 Convert input audio to a video output, representing the samples waves.
16601
16602 The filter accepts the following options:
16603
16604 @table @option
16605 @item size, s
16606 Specify the video size for the output. For the syntax of this option, check the
16607 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16608 Default value is @code{600x240}.
16609
16610 @item mode
16611 Set display mode.
16612
16613 Available values are:
16614 @table @samp
16615 @item point
16616 Draw a point for each sample.
16617
16618 @item line
16619 Draw a vertical line for each sample.
16620
16621 @item p2p
16622 Draw a point for each sample and a line between them.
16623
16624 @item cline
16625 Draw a centered vertical line for each sample.
16626 @end table
16627
16628 Default value is @code{point}.
16629
16630 @item n
16631 Set the number of samples which are printed on the same column. A
16632 larger value will decrease the frame rate. Must be a positive
16633 integer. This option can be set only if the value for @var{rate}
16634 is not explicitly specified.
16635
16636 @item rate, r
16637 Set the (approximate) output frame rate. This is done by setting the
16638 option @var{n}. Default value is "25".
16639
16640 @item split_channels
16641 Set if channels should be drawn separately or overlap. Default value is 0.
16642
16643 @item colors
16644 Set colors separated by '|' which are going to be used for drawing of each channel.
16645
16646 @item scale
16647 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16648 Default is linear.
16649
16650 @end table
16651
16652 @subsection Examples
16653
16654 @itemize
16655 @item
16656 Output the input file audio and the corresponding video representation
16657 at the same time:
16658 @example
16659 amovie=a.mp3,asplit[out0],showwaves[out1]
16660 @end example
16661
16662 @item
16663 Create a synthetic signal and show it with showwaves, forcing a
16664 frame rate of 30 frames per second:
16665 @example
16666 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
16667 @end example
16668 @end itemize
16669
16670 @section showwavespic
16671
16672 Convert input audio to a single video frame, representing the samples waves.
16673
16674 The filter accepts the following options:
16675
16676 @table @option
16677 @item size, s
16678 Specify the video size for the output. For the syntax of this option, check the
16679 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16680 Default value is @code{600x240}.
16681
16682 @item split_channels
16683 Set if channels should be drawn separately or overlap. Default value is 0.
16684
16685 @item colors
16686 Set colors separated by '|' which are going to be used for drawing of each channel.
16687
16688 @item scale
16689 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16690 Default is linear.
16691 @end table
16692
16693 @subsection Examples
16694
16695 @itemize
16696 @item
16697 Extract a channel split representation of the wave form of a whole audio track
16698 in a 1024x800 picture using @command{ffmpeg}:
16699 @example
16700 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
16701 @end example
16702
16703 @item
16704 Colorize the waveform with colorchannelmixer. This example will make
16705 the waveform a green color approximately RGB(66,217,150). Additional
16706 channels will be shades of this color.
16707 @example
16708 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
16709 @end example
16710 @end itemize
16711
16712 @section spectrumsynth
16713
16714 Sythesize audio from 2 input video spectrums, first input stream represents
16715 magnitude across time and second represents phase across time.
16716 The filter will transform from frequency domain as displayed in videos back
16717 to time domain as presented in audio output.
16718
16719 This filter is primarly created for reversing processed @ref{showspectrum}
16720 filter outputs, but can synthesize sound from other spectrograms too.
16721 But in such case results are going to be poor if the phase data is not
16722 available, because in such cases phase data need to be recreated, usually
16723 its just recreated from random noise.
16724 For best results use gray only output (@code{channel} color mode in
16725 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
16726 @code{lin} scale for phase video. To produce phase, for 2nd video, use
16727 @code{data} option. Inputs videos should generally use @code{fullframe}
16728 slide mode as that saves resources needed for decoding video.
16729
16730 The filter accepts the following options:
16731
16732 @table @option
16733 @item sample_rate
16734 Specify sample rate of output audio, the sample rate of audio from which
16735 spectrum was generated may differ.
16736
16737 @item channels
16738 Set number of channels represented in input video spectrums.
16739
16740 @item scale
16741 Set scale which was used when generating magnitude input spectrum.
16742 Can be @code{lin} or @code{log}. Default is @code{log}.
16743
16744 @item slide
16745 Set slide which was used when generating inputs spectrums.
16746 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
16747 Default is @code{fullframe}.
16748
16749 @item win_func
16750 Set window function used for resynthesis.
16751
16752 @item overlap
16753 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16754 which means optimal overlap for selected window function will be picked.
16755
16756 @item orientation
16757 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
16758 Default is @code{vertical}.
16759 @end table
16760
16761 @subsection Examples
16762
16763 @itemize
16764 @item
16765 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
16766 then resynthesize videos back to audio with spectrumsynth:
16767 @example
16768 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
16769 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
16770 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
16771 @end example
16772 @end itemize
16773
16774 @section split, asplit
16775
16776 Split input into several identical outputs.
16777
16778 @code{asplit} works with audio input, @code{split} with video.
16779
16780 The filter accepts a single parameter which specifies the number of outputs. If
16781 unspecified, it defaults to 2.
16782
16783 @subsection Examples
16784
16785 @itemize
16786 @item
16787 Create two separate outputs from the same input:
16788 @example
16789 [in] split [out0][out1]
16790 @end example
16791
16792 @item
16793 To create 3 or more outputs, you need to specify the number of
16794 outputs, like in:
16795 @example
16796 [in] asplit=3 [out0][out1][out2]
16797 @end example
16798
16799 @item
16800 Create two separate outputs from the same input, one cropped and
16801 one padded:
16802 @example
16803 [in] split [splitout1][splitout2];
16804 [splitout1] crop=100:100:0:0    [cropout];
16805 [splitout2] pad=200:200:100:100 [padout];
16806 @end example
16807
16808 @item
16809 Create 5 copies of the input audio with @command{ffmpeg}:
16810 @example
16811 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
16812 @end example
16813 @end itemize
16814
16815 @section zmq, azmq
16816
16817 Receive commands sent through a libzmq client, and forward them to
16818 filters in the filtergraph.
16819
16820 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
16821 must be inserted between two video filters, @code{azmq} between two
16822 audio filters.
16823
16824 To enable these filters you need to install the libzmq library and
16825 headers and configure FFmpeg with @code{--enable-libzmq}.
16826
16827 For more information about libzmq see:
16828 @url{http://www.zeromq.org/}
16829
16830 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
16831 receives messages sent through a network interface defined by the
16832 @option{bind_address} option.
16833
16834 The received message must be in the form:
16835 @example
16836 @var{TARGET} @var{COMMAND} [@var{ARG}]
16837 @end example
16838
16839 @var{TARGET} specifies the target of the command, usually the name of
16840 the filter class or a specific filter instance name.
16841
16842 @var{COMMAND} specifies the name of the command for the target filter.
16843
16844 @var{ARG} is optional and specifies the optional argument list for the
16845 given @var{COMMAND}.
16846
16847 Upon reception, the message is processed and the corresponding command
16848 is injected into the filtergraph. Depending on the result, the filter
16849 will send a reply to the client, adopting the format:
16850 @example
16851 @var{ERROR_CODE} @var{ERROR_REASON}
16852 @var{MESSAGE}
16853 @end example
16854
16855 @var{MESSAGE} is optional.
16856
16857 @subsection Examples
16858
16859 Look at @file{tools/zmqsend} for an example of a zmq client which can
16860 be used to send commands processed by these filters.
16861
16862 Consider the following filtergraph generated by @command{ffplay}
16863 @example
16864 ffplay -dumpgraph 1 -f lavfi "
16865 color=s=100x100:c=red  [l];
16866 color=s=100x100:c=blue [r];
16867 nullsrc=s=200x100, zmq [bg];
16868 [bg][l]   overlay      [bg+l];
16869 [bg+l][r] overlay=x=100 "
16870 @end example
16871
16872 To change the color of the left side of the video, the following
16873 command can be used:
16874 @example
16875 echo Parsed_color_0 c yellow | tools/zmqsend
16876 @end example
16877
16878 To change the right side:
16879 @example
16880 echo Parsed_color_1 c pink | tools/zmqsend
16881 @end example
16882
16883 @c man end MULTIMEDIA FILTERS
16884
16885 @chapter Multimedia Sources
16886 @c man begin MULTIMEDIA SOURCES
16887
16888 Below is a description of the currently available multimedia sources.
16889
16890 @section amovie
16891
16892 This is the same as @ref{movie} source, except it selects an audio
16893 stream by default.
16894
16895 @anchor{movie}
16896 @section movie
16897
16898 Read audio and/or video stream(s) from a movie container.
16899
16900 It accepts the following parameters:
16901
16902 @table @option
16903 @item filename
16904 The name of the resource to read (not necessarily a file; it can also be a
16905 device or a stream accessed through some protocol).
16906
16907 @item format_name, f
16908 Specifies the format assumed for the movie to read, and can be either
16909 the name of a container or an input device. If not specified, the
16910 format is guessed from @var{movie_name} or by probing.
16911
16912 @item seek_point, sp
16913 Specifies the seek point in seconds. The frames will be output
16914 starting from this seek point. The parameter is evaluated with
16915 @code{av_strtod}, so the numerical value may be suffixed by an IS
16916 postfix. The default value is "0".
16917
16918 @item streams, s
16919 Specifies the streams to read. Several streams can be specified,
16920 separated by "+". The source will then have as many outputs, in the
16921 same order. The syntax is explained in the ``Stream specifiers''
16922 section in the ffmpeg manual. Two special names, "dv" and "da" specify
16923 respectively the default (best suited) video and audio stream. Default
16924 is "dv", or "da" if the filter is called as "amovie".
16925
16926 @item stream_index, si
16927 Specifies the index of the video stream to read. If the value is -1,
16928 the most suitable video stream will be automatically selected. The default
16929 value is "-1". Deprecated. If the filter is called "amovie", it will select
16930 audio instead of video.
16931
16932 @item loop
16933 Specifies how many times to read the stream in sequence.
16934 If the value is less than 1, the stream will be read again and again.
16935 Default value is "1".
16936
16937 Note that when the movie is looped the source timestamps are not
16938 changed, so it will generate non monotonically increasing timestamps.
16939 @end table
16940
16941 It allows overlaying a second video on top of the main input of
16942 a filtergraph, as shown in this graph:
16943 @example
16944 input -----------> deltapts0 --> overlay --> output
16945                                     ^
16946                                     |
16947 movie --> scale--> deltapts1 -------+
16948 @end example
16949 @subsection Examples
16950
16951 @itemize
16952 @item
16953 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
16954 on top of the input labelled "in":
16955 @example
16956 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
16957 [in] setpts=PTS-STARTPTS [main];
16958 [main][over] overlay=16:16 [out]
16959 @end example
16960
16961 @item
16962 Read from a video4linux2 device, and overlay it on top of the input
16963 labelled "in":
16964 @example
16965 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
16966 [in] setpts=PTS-STARTPTS [main];
16967 [main][over] overlay=16:16 [out]
16968 @end example
16969
16970 @item
16971 Read the first video stream and the audio stream with id 0x81 from
16972 dvd.vob; the video is connected to the pad named "video" and the audio is
16973 connected to the pad named "audio":
16974 @example
16975 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
16976 @end example
16977 @end itemize
16978
16979 @subsection Commands
16980
16981 Both movie and amovie support the following commands:
16982 @table @option
16983 @item seek
16984 Perform seek using "av_seek_frame".
16985 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
16986 @itemize
16987 @item
16988 @var{stream_index}: If stream_index is -1, a default
16989 stream is selected, and @var{timestamp} is automatically converted
16990 from AV_TIME_BASE units to the stream specific time_base.
16991 @item
16992 @var{timestamp}: Timestamp in AVStream.time_base units
16993 or, if no stream is specified, in AV_TIME_BASE units.
16994 @item
16995 @var{flags}: Flags which select direction and seeking mode.
16996 @end itemize
16997
16998 @item get_duration
16999 Get movie duration in AV_TIME_BASE units.
17000
17001 @end table
17002
17003 @c man end MULTIMEDIA SOURCES