]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_convolution: add support for commands
[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{id}=@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 optionally followed by "@@@var{id}".
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{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @section acue
644
645 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
646 filter.
647
648 @section adeclick
649 Remove impulsive noise from input audio.
650
651 Samples detected as impulsive noise are replaced by interpolated samples using
652 autoregressive modelling.
653
654 @table @option
655 @item w
656 Set window size, in milliseconds. Allowed range is from @code{10} to
657 @code{100}. Default value is @code{55} milliseconds.
658 This sets size of window which will be processed at once.
659
660 @item o
661 Set window overlap, in percentage of window size. Allowed range is from
662 @code{50} to @code{95}. Default value is @code{75} percent.
663 Setting this to a very high value increases impulsive noise removal but makes
664 whole process much slower.
665
666 @item a
667 Set autoregression order, in percentage of window size. Allowed range is from
668 @code{0} to @code{25}. Default value is @code{2} percent. This option also
669 controls quality of interpolated samples using neighbour good samples.
670
671 @item t
672 Set threshold value. Allowed range is from @code{1} to @code{100}.
673 Default value is @code{2}.
674 This controls the strength of impulsive noise which is going to be removed.
675 The lower value, the more samples will be detected as impulsive noise.
676
677 @item b
678 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
679 @code{10}. Default value is @code{2}.
680 If any two samples detected as noise are spaced less than this value then any
681 sample between those two samples will be also detected as noise.
682
683 @item m
684 Set overlap method.
685
686 It accepts the following values:
687 @table @option
688 @item a
689 Select overlap-add method. Even not interpolated samples are slightly
690 changed with this method.
691
692 @item s
693 Select overlap-save method. Not interpolated samples remain unchanged.
694 @end table
695
696 Default value is @code{a}.
697 @end table
698
699 @section adeclip
700 Remove clipped samples from input audio.
701
702 Samples detected as clipped are replaced by interpolated samples using
703 autoregressive modelling.
704
705 @table @option
706 @item w
707 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
708 Default value is @code{55} milliseconds.
709 This sets size of window which will be processed at once.
710
711 @item o
712 Set window overlap, in percentage of window size. Allowed range is from @code{50}
713 to @code{95}. Default value is @code{75} percent.
714
715 @item a
716 Set autoregression order, in percentage of window size. Allowed range is from
717 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
718 quality of interpolated samples using neighbour good samples.
719
720 @item t
721 Set threshold value. Allowed range is from @code{1} to @code{100}.
722 Default value is @code{10}. Higher values make clip detection less aggressive.
723
724 @item n
725 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
726 Default value is @code{1000}. Higher values make clip detection less aggressive.
727
728 @item m
729 Set overlap method.
730
731 It accepts the following values:
732 @table @option
733 @item a
734 Select overlap-add method. Even not interpolated samples are slightly changed
735 with this method.
736
737 @item s
738 Select overlap-save method. Not interpolated samples remain unchanged.
739 @end table
740
741 Default value is @code{a}.
742 @end table
743
744 @section adelay
745
746 Delay one or more audio channels.
747
748 Samples in delayed channel are filled with silence.
749
750 The filter accepts the following option:
751
752 @table @option
753 @item delays
754 Set list of delays in milliseconds for each channel separated by '|'.
755 Unused delays will be silently ignored. If number of given delays is
756 smaller than number of channels all remaining channels will not be delayed.
757 If you want to delay exact number of samples, append 'S' to number.
758 If you want instead to delay in seconds, append 's' to number.
759
760 @item all
761 Use last set delay for all remaining channels. By default is disabled.
762 This option if enabled changes how option @code{delays} is interpreted.
763 @end table
764
765 @subsection Examples
766
767 @itemize
768 @item
769 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
770 the second channel (and any other channels that may be present) unchanged.
771 @example
772 adelay=1500|0|500
773 @end example
774
775 @item
776 Delay second channel by 500 samples, the third channel by 700 samples and leave
777 the first channel (and any other channels that may be present) unchanged.
778 @example
779 adelay=0|500S|700S
780 @end example
781
782 @item
783 Delay all channels by same number of samples:
784 @example
785 adelay=delays=64S:all=1
786 @end example
787 @end itemize
788
789 @section adenorm
790 Remedy denormals in audio by adding extremely low-level noise.
791
792 This filter shall be placed before any filter that can produce denormals.
793
794 A description of the accepted parameters follows.
795
796 @table @option
797 @item level
798 Set level of added noise in dB. Default is @code{-351}.
799 Allowed range is from -451 to -90.
800
801 @item type
802 Set type of added noise.
803
804 @table @option
805 @item dc
806 Add DC signal.
807 @item ac
808 Add AC signal.
809 @item square
810 Add square signal.
811 @item pulse
812 Add pulse signal.
813 @end table
814
815 Default is @code{dc}.
816 @end table
817
818 @subsection Commands
819
820 This filter supports the all above options as @ref{commands}.
821
822 @section aderivative, aintegral
823
824 Compute derivative/integral of audio stream.
825
826 Applying both filters one after another produces original audio.
827
828 @section aecho
829
830 Apply echoing to the input audio.
831
832 Echoes are reflected sound and can occur naturally amongst mountains
833 (and sometimes large buildings) when talking or shouting; digital echo
834 effects emulate this behaviour and are often used to help fill out the
835 sound of a single instrument or vocal. The time difference between the
836 original signal and the reflection is the @code{delay}, and the
837 loudness of the reflected signal is the @code{decay}.
838 Multiple echoes can have different delays and decays.
839
840 A description of the accepted parameters follows.
841
842 @table @option
843 @item in_gain
844 Set input gain of reflected signal. Default is @code{0.6}.
845
846 @item out_gain
847 Set output gain of reflected signal. Default is @code{0.3}.
848
849 @item delays
850 Set list of time intervals in milliseconds between original signal and reflections
851 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
852 Default is @code{1000}.
853
854 @item decays
855 Set list of loudness of reflected signals separated by '|'.
856 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
857 Default is @code{0.5}.
858 @end table
859
860 @subsection Examples
861
862 @itemize
863 @item
864 Make it sound as if there are twice as many instruments as are actually playing:
865 @example
866 aecho=0.8:0.88:60:0.4
867 @end example
868
869 @item
870 If delay is very short, then it sounds like a (metallic) robot playing music:
871 @example
872 aecho=0.8:0.88:6:0.4
873 @end example
874
875 @item
876 A longer delay will sound like an open air concert in the mountains:
877 @example
878 aecho=0.8:0.9:1000:0.3
879 @end example
880
881 @item
882 Same as above but with one more mountain:
883 @example
884 aecho=0.8:0.9:1000|1800:0.3|0.25
885 @end example
886 @end itemize
887
888 @section aemphasis
889 Audio emphasis filter creates or restores material directly taken from LPs or
890 emphased CDs with different filter curves. E.g. to store music on vinyl the
891 signal has to be altered by a filter first to even out the disadvantages of
892 this recording medium.
893 Once the material is played back the inverse filter has to be applied to
894 restore the distortion of the frequency response.
895
896 The filter accepts the following options:
897
898 @table @option
899 @item level_in
900 Set input gain.
901
902 @item level_out
903 Set output gain.
904
905 @item mode
906 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
907 use @code{production} mode. Default is @code{reproduction} mode.
908
909 @item type
910 Set filter type. Selects medium. Can be one of the following:
911
912 @table @option
913 @item col
914 select Columbia.
915 @item emi
916 select EMI.
917 @item bsi
918 select BSI (78RPM).
919 @item riaa
920 select RIAA.
921 @item cd
922 select Compact Disc (CD).
923 @item 50fm
924 select 50µs (FM).
925 @item 75fm
926 select 75µs (FM).
927 @item 50kf
928 select 50µs (FM-KF).
929 @item 75kf
930 select 75µs (FM-KF).
931 @end table
932 @end table
933
934 @subsection Commands
935
936 This filter supports the all above options as @ref{commands}.
937
938 @section aeval
939
940 Modify an audio signal according to the specified expressions.
941
942 This filter accepts one or more expressions (one for each channel),
943 which are evaluated and used to modify a corresponding audio signal.
944
945 It accepts the following parameters:
946
947 @table @option
948 @item exprs
949 Set the '|'-separated expressions list for each separate channel. If
950 the number of input channels is greater than the number of
951 expressions, the last specified expression is used for the remaining
952 output channels.
953
954 @item channel_layout, c
955 Set output channel layout. If not specified, the channel layout is
956 specified by the number of expressions. If set to @samp{same}, it will
957 use by default the same input channel layout.
958 @end table
959
960 Each expression in @var{exprs} can contain the following constants and functions:
961
962 @table @option
963 @item ch
964 channel number of the current expression
965
966 @item n
967 number of the evaluated sample, starting from 0
968
969 @item s
970 sample rate
971
972 @item t
973 time of the evaluated sample expressed in seconds
974
975 @item nb_in_channels
976 @item nb_out_channels
977 input and output number of channels
978
979 @item val(CH)
980 the value of input channel with number @var{CH}
981 @end table
982
983 Note: this filter is slow. For faster processing you should use a
984 dedicated filter.
985
986 @subsection Examples
987
988 @itemize
989 @item
990 Half volume:
991 @example
992 aeval=val(ch)/2:c=same
993 @end example
994
995 @item
996 Invert phase of the second channel:
997 @example
998 aeval=val(0)|-val(1)
999 @end example
1000 @end itemize
1001
1002 @anchor{afade}
1003 @section afade
1004
1005 Apply fade-in/out effect to input audio.
1006
1007 A description of the accepted parameters follows.
1008
1009 @table @option
1010 @item type, t
1011 Specify the effect type, can be either @code{in} for fade-in, or
1012 @code{out} for a fade-out effect. Default is @code{in}.
1013
1014 @item start_sample, ss
1015 Specify the number of the start sample for starting to apply the fade
1016 effect. Default is 0.
1017
1018 @item nb_samples, ns
1019 Specify the number of samples for which the fade effect has to last. At
1020 the end of the fade-in effect the output audio will have the same
1021 volume as the input audio, at the end of the fade-out transition
1022 the output audio will be silence. Default is 44100.
1023
1024 @item start_time, st
1025 Specify the start time of the fade effect. Default is 0.
1026 The value must be specified as a time duration; see
1027 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1028 for the accepted syntax.
1029 If set this option is used instead of @var{start_sample}.
1030
1031 @item duration, d
1032 Specify the duration of the fade effect. See
1033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1034 for the accepted syntax.
1035 At the end of the fade-in effect the output audio will have the same
1036 volume as the input audio, at the end of the fade-out transition
1037 the output audio will be silence.
1038 By default the duration is determined by @var{nb_samples}.
1039 If set this option is used instead of @var{nb_samples}.
1040
1041 @item curve
1042 Set curve for fade transition.
1043
1044 It accepts the following values:
1045 @table @option
1046 @item tri
1047 select triangular, linear slope (default)
1048 @item qsin
1049 select quarter of sine wave
1050 @item hsin
1051 select half of sine wave
1052 @item esin
1053 select exponential sine wave
1054 @item log
1055 select logarithmic
1056 @item ipar
1057 select inverted parabola
1058 @item qua
1059 select quadratic
1060 @item cub
1061 select cubic
1062 @item squ
1063 select square root
1064 @item cbr
1065 select cubic root
1066 @item par
1067 select parabola
1068 @item exp
1069 select exponential
1070 @item iqsin
1071 select inverted quarter of sine wave
1072 @item ihsin
1073 select inverted half of sine wave
1074 @item dese
1075 select double-exponential seat
1076 @item desi
1077 select double-exponential sigmoid
1078 @item losi
1079 select logistic sigmoid
1080 @item sinc
1081 select sine cardinal function
1082 @item isinc
1083 select inverted sine cardinal function
1084 @item nofade
1085 no fade applied
1086 @end table
1087 @end table
1088
1089 @subsection Examples
1090
1091 @itemize
1092 @item
1093 Fade in first 15 seconds of audio:
1094 @example
1095 afade=t=in:ss=0:d=15
1096 @end example
1097
1098 @item
1099 Fade out last 25 seconds of a 900 seconds audio:
1100 @example
1101 afade=t=out:st=875:d=25
1102 @end example
1103 @end itemize
1104
1105 @section afftdn
1106 Denoise audio samples with FFT.
1107
1108 A description of the accepted parameters follows.
1109
1110 @table @option
1111 @item nr
1112 Set the noise reduction in dB, allowed range is 0.01 to 97.
1113 Default value is 12 dB.
1114
1115 @item nf
1116 Set the noise floor in dB, allowed range is -80 to -20.
1117 Default value is -50 dB.
1118
1119 @item nt
1120 Set the noise type.
1121
1122 It accepts the following values:
1123 @table @option
1124 @item w
1125 Select white noise.
1126
1127 @item v
1128 Select vinyl noise.
1129
1130 @item s
1131 Select shellac noise.
1132
1133 @item c
1134 Select custom noise, defined in @code{bn} option.
1135
1136 Default value is white noise.
1137 @end table
1138
1139 @item bn
1140 Set custom band noise for every one of 15 bands.
1141 Bands are separated by ' ' or '|'.
1142
1143 @item rf
1144 Set the residual floor in dB, allowed range is -80 to -20.
1145 Default value is -38 dB.
1146
1147 @item tn
1148 Enable noise tracking. By default is disabled.
1149 With this enabled, noise floor is automatically adjusted.
1150
1151 @item tr
1152 Enable residual tracking. By default is disabled.
1153
1154 @item om
1155 Set the output mode.
1156
1157 It accepts the following values:
1158 @table @option
1159 @item i
1160 Pass input unchanged.
1161
1162 @item o
1163 Pass noise filtered out.
1164
1165 @item n
1166 Pass only noise.
1167
1168 Default value is @var{o}.
1169 @end table
1170 @end table
1171
1172 @subsection Commands
1173
1174 This filter supports the following commands:
1175 @table @option
1176 @item sample_noise, sn
1177 Start or stop measuring noise profile.
1178 Syntax for the command is : "start" or "stop" string.
1179 After measuring noise profile is stopped it will be
1180 automatically applied in filtering.
1181
1182 @item noise_reduction, nr
1183 Change noise reduction. Argument is single float number.
1184 Syntax for the command is : "@var{noise_reduction}"
1185
1186 @item noise_floor, nf
1187 Change noise floor. Argument is single float number.
1188 Syntax for the command is : "@var{noise_floor}"
1189
1190 @item output_mode, om
1191 Change output mode operation.
1192 Syntax for the command is : "i", "o" or "n" string.
1193 @end table
1194
1195 @section afftfilt
1196 Apply arbitrary expressions to samples in frequency domain.
1197
1198 @table @option
1199 @item real
1200 Set frequency domain real expression for each separate channel separated
1201 by '|'. Default is "re".
1202 If the number of input channels is greater than the number of
1203 expressions, the last specified expression is used for the remaining
1204 output channels.
1205
1206 @item imag
1207 Set frequency domain imaginary expression for each separate channel
1208 separated by '|'. Default is "im".
1209
1210 Each expression in @var{real} and @var{imag} can contain the following
1211 constants and functions:
1212
1213 @table @option
1214 @item sr
1215 sample rate
1216
1217 @item b
1218 current frequency bin number
1219
1220 @item nb
1221 number of available bins
1222
1223 @item ch
1224 channel number of the current expression
1225
1226 @item chs
1227 number of channels
1228
1229 @item pts
1230 current frame pts
1231
1232 @item re
1233 current real part of frequency bin of current channel
1234
1235 @item im
1236 current imaginary part of frequency bin of current channel
1237
1238 @item real(b, ch)
1239 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1240
1241 @item imag(b, ch)
1242 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1243 @end table
1244
1245 @item win_size
1246 Set window size. Allowed range is from 16 to 131072.
1247 Default is @code{4096}
1248
1249 @item win_func
1250 Set window function. Default is @code{hann}.
1251
1252 @item overlap
1253 Set window overlap. If set to 1, the recommended overlap for selected
1254 window function will be picked. Default is @code{0.75}.
1255 @end table
1256
1257 @subsection Examples
1258
1259 @itemize
1260 @item
1261 Leave almost only low frequencies in audio:
1262 @example
1263 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1264 @end example
1265
1266 @item
1267 Apply robotize effect:
1268 @example
1269 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1270 @end example
1271
1272 @item
1273 Apply whisper effect:
1274 @example
1275 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1276 @end example
1277 @end itemize
1278
1279 @anchor{afir}
1280 @section afir
1281
1282 Apply an arbitrary Finite Impulse Response filter.
1283
1284 This filter is designed for applying long FIR filters,
1285 up to 60 seconds long.
1286
1287 It can be used as component for digital crossover filters,
1288 room equalization, cross talk cancellation, wavefield synthesis,
1289 auralization, ambiophonics, ambisonics and spatialization.
1290
1291 This filter uses the streams higher than first one as FIR coefficients.
1292 If the non-first stream holds a single channel, it will be used
1293 for all input channels in the first stream, otherwise
1294 the number of channels in the non-first stream must be same as
1295 the number of channels in the first stream.
1296
1297 It accepts the following parameters:
1298
1299 @table @option
1300 @item dry
1301 Set dry gain. This sets input gain.
1302
1303 @item wet
1304 Set wet gain. This sets final output gain.
1305
1306 @item length
1307 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1308
1309 @item gtype
1310 Enable applying gain measured from power of IR.
1311
1312 Set which approach to use for auto gain measurement.
1313
1314 @table @option
1315 @item none
1316 Do not apply any gain.
1317
1318 @item peak
1319 select peak gain, very conservative approach. This is default value.
1320
1321 @item dc
1322 select DC gain, limited application.
1323
1324 @item gn
1325 select gain to noise approach, this is most popular one.
1326 @end table
1327
1328 @item irgain
1329 Set gain to be applied to IR coefficients before filtering.
1330 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1331
1332 @item irfmt
1333 Set format of IR stream. Can be @code{mono} or @code{input}.
1334 Default is @code{input}.
1335
1336 @item maxir
1337 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1338 Allowed range is 0.1 to 60 seconds.
1339
1340 @item response
1341 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1342 By default it is disabled.
1343
1344 @item channel
1345 Set for which IR channel to display frequency response. By default is first channel
1346 displayed. This option is used only when @var{response} is enabled.
1347
1348 @item size
1349 Set video stream size. This option is used only when @var{response} is enabled.
1350
1351 @item rate
1352 Set video stream frame rate. This option is used only when @var{response} is enabled.
1353
1354 @item minp
1355 Set minimal partition size used for convolution. Default is @var{8192}.
1356 Allowed range is from @var{1} to @var{32768}.
1357 Lower values decreases latency at cost of higher CPU usage.
1358
1359 @item maxp
1360 Set maximal partition size used for convolution. Default is @var{8192}.
1361 Allowed range is from @var{8} to @var{32768}.
1362 Lower values may increase CPU usage.
1363
1364 @item nbirs
1365 Set number of input impulse responses streams which will be switchable at runtime.
1366 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1367
1368 @item ir
1369 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1370 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1371 This option can be changed at runtime via @ref{commands}.
1372 @end table
1373
1374 @subsection Examples
1375
1376 @itemize
1377 @item
1378 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1379 @example
1380 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1381 @end example
1382 @end itemize
1383
1384 @anchor{aformat}
1385 @section aformat
1386
1387 Set output format constraints for the input audio. The framework will
1388 negotiate the most appropriate format to minimize conversions.
1389
1390 It accepts the following parameters:
1391 @table @option
1392
1393 @item sample_fmts, f
1394 A '|'-separated list of requested sample formats.
1395
1396 @item sample_rates, r
1397 A '|'-separated list of requested sample rates.
1398
1399 @item channel_layouts, cl
1400 A '|'-separated list of requested channel layouts.
1401
1402 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1403 for the required syntax.
1404 @end table
1405
1406 If a parameter is omitted, all values are allowed.
1407
1408 Force the output to either unsigned 8-bit or signed 16-bit stereo
1409 @example
1410 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1411 @end example
1412
1413 @section afreqshift
1414 Apply frequency shift to input audio samples.
1415
1416 The filter accepts the following options:
1417
1418 @table @option
1419 @item shift
1420 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1421 Default value is 0.0.
1422
1423 @item level
1424 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1425 Default value is 1.0.
1426 @end table
1427
1428 @subsection Commands
1429
1430 This filter supports the all above options as @ref{commands}.
1431
1432 @section agate
1433
1434 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1435 processing reduces disturbing noise between useful signals.
1436
1437 Gating is done by detecting the volume below a chosen level @var{threshold}
1438 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1439 floor is set via @var{range}. Because an exact manipulation of the signal
1440 would cause distortion of the waveform the reduction can be levelled over
1441 time. This is done by setting @var{attack} and @var{release}.
1442
1443 @var{attack} determines how long the signal has to fall below the threshold
1444 before any reduction will occur and @var{release} sets the time the signal
1445 has to rise above the threshold to reduce the reduction again.
1446 Shorter signals than the chosen attack time will be left untouched.
1447
1448 @table @option
1449 @item level_in
1450 Set input level before filtering.
1451 Default is 1. Allowed range is from 0.015625 to 64.
1452
1453 @item mode
1454 Set the mode of operation. Can be @code{upward} or @code{downward}.
1455 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1456 will be amplified, expanding dynamic range in upward direction.
1457 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1458
1459 @item range
1460 Set the level of gain reduction when the signal is below the threshold.
1461 Default is 0.06125. Allowed range is from 0 to 1.
1462 Setting this to 0 disables reduction and then filter behaves like expander.
1463
1464 @item threshold
1465 If a signal rises above this level the gain reduction is released.
1466 Default is 0.125. Allowed range is from 0 to 1.
1467
1468 @item ratio
1469 Set a ratio by which the signal is reduced.
1470 Default is 2. Allowed range is from 1 to 9000.
1471
1472 @item attack
1473 Amount of milliseconds the signal has to rise above the threshold before gain
1474 reduction stops.
1475 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1476
1477 @item release
1478 Amount of milliseconds the signal has to fall below the threshold before the
1479 reduction is increased again. Default is 250 milliseconds.
1480 Allowed range is from 0.01 to 9000.
1481
1482 @item makeup
1483 Set amount of amplification of signal after processing.
1484 Default is 1. Allowed range is from 1 to 64.
1485
1486 @item knee
1487 Curve the sharp knee around the threshold to enter gain reduction more softly.
1488 Default is 2.828427125. Allowed range is from 1 to 8.
1489
1490 @item detection
1491 Choose if exact signal should be taken for detection or an RMS like one.
1492 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1493
1494 @item link
1495 Choose if the average level between all channels or the louder channel affects
1496 the reduction.
1497 Default is @code{average}. Can be @code{average} or @code{maximum}.
1498 @end table
1499
1500 @subsection Commands
1501
1502 This filter supports the all above options as @ref{commands}.
1503
1504 @section aiir
1505
1506 Apply an arbitrary Infinite Impulse Response filter.
1507
1508 It accepts the following parameters:
1509
1510 @table @option
1511 @item zeros, z
1512 Set B/numerator/zeros/reflection coefficients.
1513
1514 @item poles, p
1515 Set A/denominator/poles/ladder coefficients.
1516
1517 @item gains, k
1518 Set channels gains.
1519
1520 @item dry_gain
1521 Set input gain.
1522
1523 @item wet_gain
1524 Set output gain.
1525
1526 @item format, f
1527 Set coefficients format.
1528
1529 @table @samp
1530 @item ll
1531 lattice-ladder function
1532 @item sf
1533 analog transfer function
1534 @item tf
1535 digital transfer function
1536 @item zp
1537 Z-plane zeros/poles, cartesian (default)
1538 @item pr
1539 Z-plane zeros/poles, polar radians
1540 @item pd
1541 Z-plane zeros/poles, polar degrees
1542 @item sp
1543 S-plane zeros/poles
1544 @end table
1545
1546 @item process, r
1547 Set type of processing.
1548
1549 @table @samp
1550 @item d
1551 direct processing
1552 @item s
1553 serial processing
1554 @item p
1555 parallel processing
1556 @end table
1557
1558 @item precision, e
1559 Set filtering precision.
1560
1561 @table @samp
1562 @item dbl
1563 double-precision floating-point (default)
1564 @item flt
1565 single-precision floating-point
1566 @item i32
1567 32-bit integers
1568 @item i16
1569 16-bit integers
1570 @end table
1571
1572 @item normalize, n
1573 Normalize filter coefficients, by default is enabled.
1574 Enabling it will normalize magnitude response at DC to 0dB.
1575
1576 @item mix
1577 How much to use filtered signal in output. Default is 1.
1578 Range is between 0 and 1.
1579
1580 @item response
1581 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1582 By default it is disabled.
1583
1584 @item channel
1585 Set for which IR channel to display frequency response. By default is first channel
1586 displayed. This option is used only when @var{response} is enabled.
1587
1588 @item size
1589 Set video stream size. This option is used only when @var{response} is enabled.
1590 @end table
1591
1592 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1593 order.
1594
1595 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1596 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1597 imaginary unit.
1598
1599 Different coefficients and gains can be provided for every channel, in such case
1600 use '|' to separate coefficients or gains. Last provided coefficients will be
1601 used for all remaining channels.
1602
1603 @subsection Examples
1604
1605 @itemize
1606 @item
1607 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1608 @example
1609 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1610 @end example
1611
1612 @item
1613 Same as above but in @code{zp} format:
1614 @example
1615 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1616 @end example
1617
1618 @item
1619 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1620 @example
1621 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1622 @end example
1623 @end itemize
1624
1625 @section alimiter
1626
1627 The limiter prevents an input signal from rising over a desired threshold.
1628 This limiter uses lookahead technology to prevent your signal from distorting.
1629 It means that there is a small delay after the signal is processed. Keep in mind
1630 that the delay it produces is the attack time you set.
1631
1632 The filter accepts the following options:
1633
1634 @table @option
1635 @item level_in
1636 Set input gain. Default is 1.
1637
1638 @item level_out
1639 Set output gain. Default is 1.
1640
1641 @item limit
1642 Don't let signals above this level pass the limiter. Default is 1.
1643
1644 @item attack
1645 The limiter will reach its attenuation level in this amount of time in
1646 milliseconds. Default is 5 milliseconds.
1647
1648 @item release
1649 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1650 Default is 50 milliseconds.
1651
1652 @item asc
1653 When gain reduction is always needed ASC takes care of releasing to an
1654 average reduction level rather than reaching a reduction of 0 in the release
1655 time.
1656
1657 @item asc_level
1658 Select how much the release time is affected by ASC, 0 means nearly no changes
1659 in release time while 1 produces higher release times.
1660
1661 @item level
1662 Auto level output signal. Default is enabled.
1663 This normalizes audio back to 0dB if enabled.
1664 @end table
1665
1666 Depending on picked setting it is recommended to upsample input 2x or 4x times
1667 with @ref{aresample} before applying this filter.
1668
1669 @section allpass
1670
1671 Apply a two-pole all-pass filter with central frequency (in Hz)
1672 @var{frequency}, and filter-width @var{width}.
1673 An all-pass filter changes the audio's frequency to phase relationship
1674 without changing its frequency to amplitude relationship.
1675
1676 The filter accepts the following options:
1677
1678 @table @option
1679 @item frequency, f
1680 Set frequency in Hz.
1681
1682 @item width_type, t
1683 Set method to specify band-width of filter.
1684 @table @option
1685 @item h
1686 Hz
1687 @item q
1688 Q-Factor
1689 @item o
1690 octave
1691 @item s
1692 slope
1693 @item k
1694 kHz
1695 @end table
1696
1697 @item width, w
1698 Specify the band-width of a filter in width_type units.
1699
1700 @item mix, m
1701 How much to use filtered signal in output. Default is 1.
1702 Range is between 0 and 1.
1703
1704 @item channels, c
1705 Specify which channels to filter, by default all available are filtered.
1706
1707 @item normalize, n
1708 Normalize biquad coefficients, by default is disabled.
1709 Enabling it will normalize magnitude response at DC to 0dB.
1710
1711 @item order, o
1712 Set the filter order, can be 1 or 2. Default is 2.
1713
1714 @item transform, a
1715 Set transform type of IIR filter.
1716 @table @option
1717 @item di
1718 @item dii
1719 @item tdii
1720 @item latt
1721 @end table
1722
1723 @item precision, r
1724 Set precison of filtering.
1725 @table @option
1726 @item auto
1727 Pick automatic sample format depending on surround filters.
1728 @item s16
1729 Always use signed 16-bit.
1730 @item s32
1731 Always use signed 32-bit.
1732 @item f32
1733 Always use float 32-bit.
1734 @item f64
1735 Always use float 64-bit.
1736 @end table
1737 @end table
1738
1739 @subsection Commands
1740
1741 This filter supports the following commands:
1742 @table @option
1743 @item frequency, f
1744 Change allpass frequency.
1745 Syntax for the command is : "@var{frequency}"
1746
1747 @item width_type, t
1748 Change allpass width_type.
1749 Syntax for the command is : "@var{width_type}"
1750
1751 @item width, w
1752 Change allpass width.
1753 Syntax for the command is : "@var{width}"
1754
1755 @item mix, m
1756 Change allpass mix.
1757 Syntax for the command is : "@var{mix}"
1758 @end table
1759
1760 @section aloop
1761
1762 Loop audio samples.
1763
1764 The filter accepts the following options:
1765
1766 @table @option
1767 @item loop
1768 Set the number of loops. Setting this value to -1 will result in infinite loops.
1769 Default is 0.
1770
1771 @item size
1772 Set maximal number of samples. Default is 0.
1773
1774 @item start
1775 Set first sample of loop. Default is 0.
1776 @end table
1777
1778 @anchor{amerge}
1779 @section amerge
1780
1781 Merge two or more audio streams into a single multi-channel stream.
1782
1783 The filter accepts the following options:
1784
1785 @table @option
1786
1787 @item inputs
1788 Set the number of inputs. Default is 2.
1789
1790 @end table
1791
1792 If the channel layouts of the inputs are disjoint, and therefore compatible,
1793 the channel layout of the output will be set accordingly and the channels
1794 will be reordered as necessary. If the channel layouts of the inputs are not
1795 disjoint, the output will have all the channels of the first input then all
1796 the channels of the second input, in that order, and the channel layout of
1797 the output will be the default value corresponding to the total number of
1798 channels.
1799
1800 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1801 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1802 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1803 first input, b1 is the first channel of the second input).
1804
1805 On the other hand, if both input are in stereo, the output channels will be
1806 in the default order: a1, a2, b1, b2, and the channel layout will be
1807 arbitrarily set to 4.0, which may or may not be the expected value.
1808
1809 All inputs must have the same sample rate, and format.
1810
1811 If inputs do not have the same duration, the output will stop with the
1812 shortest.
1813
1814 @subsection Examples
1815
1816 @itemize
1817 @item
1818 Merge two mono files into a stereo stream:
1819 @example
1820 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1821 @end example
1822
1823 @item
1824 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1825 @example
1826 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
1827 @end example
1828 @end itemize
1829
1830 @section amix
1831
1832 Mixes multiple audio inputs into a single output.
1833
1834 Note that this filter only supports float samples (the @var{amerge}
1835 and @var{pan} audio filters support many formats). If the @var{amix}
1836 input has integer samples then @ref{aresample} will be automatically
1837 inserted to perform the conversion to float samples.
1838
1839 For example
1840 @example
1841 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1842 @end example
1843 will mix 3 input audio streams to a single output with the same duration as the
1844 first input and a dropout transition time of 3 seconds.
1845
1846 It accepts the following parameters:
1847 @table @option
1848
1849 @item inputs
1850 The number of inputs. If unspecified, it defaults to 2.
1851
1852 @item duration
1853 How to determine the end-of-stream.
1854 @table @option
1855
1856 @item longest
1857 The duration of the longest input. (default)
1858
1859 @item shortest
1860 The duration of the shortest input.
1861
1862 @item first
1863 The duration of the first input.
1864
1865 @end table
1866
1867 @item dropout_transition
1868 The transition time, in seconds, for volume renormalization when an input
1869 stream ends. The default value is 2 seconds.
1870
1871 @item weights
1872 Specify weight of each input audio stream as sequence.
1873 Each weight is separated by space. By default all inputs have same weight.
1874 @end table
1875
1876 @subsection Commands
1877
1878 This filter supports the following commands:
1879 @table @option
1880 @item weights
1881 Syntax is same as option with same name.
1882 @end table
1883
1884 @section amultiply
1885
1886 Multiply first audio stream with second audio stream and store result
1887 in output audio stream. Multiplication is done by multiplying each
1888 sample from first stream with sample at same position from second stream.
1889
1890 With this element-wise multiplication one can create amplitude fades and
1891 amplitude modulations.
1892
1893 @section anequalizer
1894
1895 High-order parametric multiband equalizer for each channel.
1896
1897 It accepts the following parameters:
1898 @table @option
1899 @item params
1900
1901 This option string is in format:
1902 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1903 Each equalizer band is separated by '|'.
1904
1905 @table @option
1906 @item chn
1907 Set channel number to which equalization will be applied.
1908 If input doesn't have that channel the entry is ignored.
1909
1910 @item f
1911 Set central frequency for band.
1912 If input doesn't have that frequency the entry is ignored.
1913
1914 @item w
1915 Set band width in Hertz.
1916
1917 @item g
1918 Set band gain in dB.
1919
1920 @item t
1921 Set filter type for band, optional, can be:
1922
1923 @table @samp
1924 @item 0
1925 Butterworth, this is default.
1926
1927 @item 1
1928 Chebyshev type 1.
1929
1930 @item 2
1931 Chebyshev type 2.
1932 @end table
1933 @end table
1934
1935 @item curves
1936 With this option activated frequency response of anequalizer is displayed
1937 in video stream.
1938
1939 @item size
1940 Set video stream size. Only useful if curves option is activated.
1941
1942 @item mgain
1943 Set max gain that will be displayed. Only useful if curves option is activated.
1944 Setting this to a reasonable value makes it possible to display gain which is derived from
1945 neighbour bands which are too close to each other and thus produce higher gain
1946 when both are activated.
1947
1948 @item fscale
1949 Set frequency scale used to draw frequency response in video output.
1950 Can be linear or logarithmic. Default is logarithmic.
1951
1952 @item colors
1953 Set color for each channel curve which is going to be displayed in video stream.
1954 This is list of color names separated by space or by '|'.
1955 Unrecognised or missing colors will be replaced by white color.
1956 @end table
1957
1958 @subsection Examples
1959
1960 @itemize
1961 @item
1962 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1963 for first 2 channels using Chebyshev type 1 filter:
1964 @example
1965 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1966 @end example
1967 @end itemize
1968
1969 @subsection Commands
1970
1971 This filter supports the following commands:
1972 @table @option
1973 @item change
1974 Alter existing filter parameters.
1975 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1976
1977 @var{fN} is existing filter number, starting from 0, if no such filter is available
1978 error is returned.
1979 @var{freq} set new frequency parameter.
1980 @var{width} set new width parameter in Hertz.
1981 @var{gain} set new gain parameter in dB.
1982
1983 Full filter invocation with asendcmd may look like this:
1984 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1985 @end table
1986
1987 @section anlmdn
1988
1989 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1990
1991 Each sample is adjusted by looking for other samples with similar contexts. This
1992 context similarity is defined by comparing their surrounding patches of size
1993 @option{p}. Patches are searched in an area of @option{r} around the sample.
1994
1995 The filter accepts the following options:
1996
1997 @table @option
1998 @item s
1999 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2000
2001 @item p
2002 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2003 Default value is 2 milliseconds.
2004
2005 @item r
2006 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2007 Default value is 6 milliseconds.
2008
2009 @item o
2010 Set the output mode.
2011
2012 It accepts the following values:
2013 @table @option
2014 @item i
2015 Pass input unchanged.
2016
2017 @item o
2018 Pass noise filtered out.
2019
2020 @item n
2021 Pass only noise.
2022
2023 Default value is @var{o}.
2024 @end table
2025
2026 @item m
2027 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2028 @end table
2029
2030 @subsection Commands
2031
2032 This filter supports the all above options as @ref{commands}.
2033
2034 @section anlms
2035 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2036
2037 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2038 relate to producing the least mean square of the error signal (difference between the desired,
2039 2nd input audio stream and the actual signal, the 1st input audio stream).
2040
2041 A description of the accepted options follows.
2042
2043 @table @option
2044 @item order
2045 Set filter order.
2046
2047 @item mu
2048 Set filter mu.
2049
2050 @item eps
2051 Set the filter eps.
2052
2053 @item leakage
2054 Set the filter leakage.
2055
2056 @item out_mode
2057 It accepts the following values:
2058 @table @option
2059 @item i
2060 Pass the 1st input.
2061
2062 @item d
2063 Pass the 2nd input.
2064
2065 @item o
2066 Pass filtered samples.
2067
2068 @item n
2069 Pass difference between desired and filtered samples.
2070
2071 Default value is @var{o}.
2072 @end table
2073 @end table
2074
2075 @subsection Examples
2076
2077 @itemize
2078 @item
2079 One of many usages of this filter is noise reduction, input audio is filtered
2080 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2081 @example
2082 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2083 @end example
2084 @end itemize
2085
2086 @subsection Commands
2087
2088 This filter supports the same commands as options, excluding option @code{order}.
2089
2090 @section anull
2091
2092 Pass the audio source unchanged to the output.
2093
2094 @section apad
2095
2096 Pad the end of an audio stream with silence.
2097
2098 This can be used together with @command{ffmpeg} @option{-shortest} to
2099 extend audio streams to the same length as the video stream.
2100
2101 A description of the accepted options follows.
2102
2103 @table @option
2104 @item packet_size
2105 Set silence packet size. Default value is 4096.
2106
2107 @item pad_len
2108 Set the number of samples of silence to add to the end. After the
2109 value is reached, the stream is terminated. This option is mutually
2110 exclusive with @option{whole_len}.
2111
2112 @item whole_len
2113 Set the minimum total number of samples in the output audio stream. If
2114 the value is longer than the input audio length, silence is added to
2115 the end, until the value is reached. This option is mutually exclusive
2116 with @option{pad_len}.
2117
2118 @item pad_dur
2119 Specify the duration of samples of silence to add. See
2120 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2121 for the accepted syntax. Used only if set to non-zero value.
2122
2123 @item whole_dur
2124 Specify the minimum total duration in the output audio stream. See
2125 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2126 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2127 the input audio length, silence is added to the end, until the value is reached.
2128 This option is mutually exclusive with @option{pad_dur}
2129 @end table
2130
2131 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2132 nor @option{whole_dur} option is set, the filter will add silence to the end of
2133 the input stream indefinitely.
2134
2135 @subsection Examples
2136
2137 @itemize
2138 @item
2139 Add 1024 samples of silence to the end of the input:
2140 @example
2141 apad=pad_len=1024
2142 @end example
2143
2144 @item
2145 Make sure the audio output will contain at least 10000 samples, pad
2146 the input with silence if required:
2147 @example
2148 apad=whole_len=10000
2149 @end example
2150
2151 @item
2152 Use @command{ffmpeg} to pad the audio input with silence, so that the
2153 video stream will always result the shortest and will be converted
2154 until the end in the output file when using the @option{shortest}
2155 option:
2156 @example
2157 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2158 @end example
2159 @end itemize
2160
2161 @section aphaser
2162 Add a phasing effect to the input audio.
2163
2164 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2165 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2166
2167 A description of the accepted parameters follows.
2168
2169 @table @option
2170 @item in_gain
2171 Set input gain. Default is 0.4.
2172
2173 @item out_gain
2174 Set output gain. Default is 0.74
2175
2176 @item delay
2177 Set delay in milliseconds. Default is 3.0.
2178
2179 @item decay
2180 Set decay. Default is 0.4.
2181
2182 @item speed
2183 Set modulation speed in Hz. Default is 0.5.
2184
2185 @item type
2186 Set modulation type. Default is triangular.
2187
2188 It accepts the following values:
2189 @table @samp
2190 @item triangular, t
2191 @item sinusoidal, s
2192 @end table
2193 @end table
2194
2195 @section aphaseshift
2196 Apply phase shift to input audio samples.
2197
2198 The filter accepts the following options:
2199
2200 @table @option
2201 @item shift
2202 Specify phase shift. Allowed range is from -1.0 to 1.0.
2203 Default value is 0.0.
2204
2205 @item level
2206 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2207 Default value is 1.0.
2208 @end table
2209
2210 @subsection Commands
2211
2212 This filter supports the all above options as @ref{commands}.
2213
2214 @section apulsator
2215
2216 Audio pulsator is something between an autopanner and a tremolo.
2217 But it can produce funny stereo effects as well. Pulsator changes the volume
2218 of the left and right channel based on a LFO (low frequency oscillator) with
2219 different waveforms and shifted phases.
2220 This filter have the ability to define an offset between left and right
2221 channel. An offset of 0 means that both LFO shapes match each other.
2222 The left and right channel are altered equally - a conventional tremolo.
2223 An offset of 50% means that the shape of the right channel is exactly shifted
2224 in phase (or moved backwards about half of the frequency) - pulsator acts as
2225 an autopanner. At 1 both curves match again. Every setting in between moves the
2226 phase shift gapless between all stages and produces some "bypassing" sounds with
2227 sine and triangle waveforms. The more you set the offset near 1 (starting from
2228 the 0.5) the faster the signal passes from the left to the right speaker.
2229
2230 The filter accepts the following options:
2231
2232 @table @option
2233 @item level_in
2234 Set input gain. By default it is 1. Range is [0.015625 - 64].
2235
2236 @item level_out
2237 Set output gain. By default it is 1. Range is [0.015625 - 64].
2238
2239 @item mode
2240 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2241 sawup or sawdown. Default is sine.
2242
2243 @item amount
2244 Set modulation. Define how much of original signal is affected by the LFO.
2245
2246 @item offset_l
2247 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2248
2249 @item offset_r
2250 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2251
2252 @item width
2253 Set pulse width. Default is 1. Allowed range is [0 - 2].
2254
2255 @item timing
2256 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2257
2258 @item bpm
2259 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2260 is set to bpm.
2261
2262 @item ms
2263 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2264 is set to ms.
2265
2266 @item hz
2267 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2268 if timing is set to hz.
2269 @end table
2270
2271 @anchor{aresample}
2272 @section aresample
2273
2274 Resample the input audio to the specified parameters, using the
2275 libswresample library. If none are specified then the filter will
2276 automatically convert between its input and output.
2277
2278 This filter is also able to stretch/squeeze the audio data to make it match
2279 the timestamps or to inject silence / cut out audio to make it match the
2280 timestamps, do a combination of both or do neither.
2281
2282 The filter accepts the syntax
2283 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2284 expresses a sample rate and @var{resampler_options} is a list of
2285 @var{key}=@var{value} pairs, separated by ":". See the
2286 @ref{Resampler Options,,"Resampler Options" section in the
2287 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2288 for the complete list of supported options.
2289
2290 @subsection Examples
2291
2292 @itemize
2293 @item
2294 Resample the input audio to 44100Hz:
2295 @example
2296 aresample=44100
2297 @end example
2298
2299 @item
2300 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2301 samples per second compensation:
2302 @example
2303 aresample=async=1000
2304 @end example
2305 @end itemize
2306
2307 @section areverse
2308
2309 Reverse an audio clip.
2310
2311 Warning: This filter requires memory to buffer the entire clip, so trimming
2312 is suggested.
2313
2314 @subsection Examples
2315
2316 @itemize
2317 @item
2318 Take the first 5 seconds of a clip, and reverse it.
2319 @example
2320 atrim=end=5,areverse
2321 @end example
2322 @end itemize
2323
2324 @section arnndn
2325
2326 Reduce noise from speech using Recurrent Neural Networks.
2327
2328 This filter accepts the following options:
2329
2330 @table @option
2331 @item model, m
2332 Set train model file to load. This option is always required.
2333
2334 @item mix
2335 Set how much to mix filtered samples into final output.
2336 Allowed range is from -1 to 1. Default value is 1.
2337 Negative values are special, they set how much to keep filtered noise
2338 in the final filter output. Set this option to -1 to hear actual
2339 noise removed from input signal.
2340 @end table
2341
2342 @section asetnsamples
2343
2344 Set the number of samples per each output audio frame.
2345
2346 The last output packet may contain a different number of samples, as
2347 the filter will flush all the remaining samples when the input audio
2348 signals its end.
2349
2350 The filter accepts the following options:
2351
2352 @table @option
2353
2354 @item nb_out_samples, n
2355 Set the number of frames per each output audio frame. The number is
2356 intended as the number of samples @emph{per each channel}.
2357 Default value is 1024.
2358
2359 @item pad, p
2360 If set to 1, the filter will pad the last audio frame with zeroes, so
2361 that the last frame will contain the same number of samples as the
2362 previous ones. Default value is 1.
2363 @end table
2364
2365 For example, to set the number of per-frame samples to 1234 and
2366 disable padding for the last frame, use:
2367 @example
2368 asetnsamples=n=1234:p=0
2369 @end example
2370
2371 @section asetrate
2372
2373 Set the sample rate without altering the PCM data.
2374 This will result in a change of speed and pitch.
2375
2376 The filter accepts the following options:
2377
2378 @table @option
2379 @item sample_rate, r
2380 Set the output sample rate. Default is 44100 Hz.
2381 @end table
2382
2383 @section ashowinfo
2384
2385 Show a line containing various information for each input audio frame.
2386 The input audio is not modified.
2387
2388 The shown line contains a sequence of key/value pairs of the form
2389 @var{key}:@var{value}.
2390
2391 The following values are shown in the output:
2392
2393 @table @option
2394 @item n
2395 The (sequential) number of the input frame, starting from 0.
2396
2397 @item pts
2398 The presentation timestamp of the input frame, in time base units; the time base
2399 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2400
2401 @item pts_time
2402 The presentation timestamp of the input frame in seconds.
2403
2404 @item pos
2405 position of the frame in the input stream, -1 if this information in
2406 unavailable and/or meaningless (for example in case of synthetic audio)
2407
2408 @item fmt
2409 The sample format.
2410
2411 @item chlayout
2412 The channel layout.
2413
2414 @item rate
2415 The sample rate for the audio frame.
2416
2417 @item nb_samples
2418 The number of samples (per channel) in the frame.
2419
2420 @item checksum
2421 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2422 audio, the data is treated as if all the planes were concatenated.
2423
2424 @item plane_checksums
2425 A list of Adler-32 checksums for each data plane.
2426 @end table
2427
2428 @section asoftclip
2429 Apply audio soft clipping.
2430
2431 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2432 along a smooth curve, rather than the abrupt shape of hard-clipping.
2433
2434 This filter accepts the following options:
2435
2436 @table @option
2437 @item type
2438 Set type of soft-clipping.
2439
2440 It accepts the following values:
2441 @table @option
2442 @item hard
2443 @item tanh
2444 @item atan
2445 @item cubic
2446 @item exp
2447 @item alg
2448 @item quintic
2449 @item sin
2450 @item erf
2451 @end table
2452
2453 @item param
2454 Set additional parameter which controls sigmoid function.
2455
2456 @item oversample
2457 Set oversampling factor.
2458 @end table
2459
2460 @subsection Commands
2461
2462 This filter supports the all above options as @ref{commands}.
2463
2464 @section asr
2465 Automatic Speech Recognition
2466
2467 This filter uses PocketSphinx for speech recognition. To enable
2468 compilation of this filter, you need to configure FFmpeg with
2469 @code{--enable-pocketsphinx}.
2470
2471 It accepts the following options:
2472
2473 @table @option
2474 @item rate
2475 Set sampling rate of input audio. Defaults is @code{16000}.
2476 This need to match speech models, otherwise one will get poor results.
2477
2478 @item hmm
2479 Set dictionary containing acoustic model files.
2480
2481 @item dict
2482 Set pronunciation dictionary.
2483
2484 @item lm
2485 Set language model file.
2486
2487 @item lmctl
2488 Set language model set.
2489
2490 @item lmname
2491 Set which language model to use.
2492
2493 @item logfn
2494 Set output for log messages.
2495 @end table
2496
2497 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2498
2499 @anchor{astats}
2500 @section astats
2501
2502 Display time domain statistical information about the audio channels.
2503 Statistics are calculated and displayed for each audio channel and,
2504 where applicable, an overall figure is also given.
2505
2506 It accepts the following option:
2507 @table @option
2508 @item length
2509 Short window length in seconds, used for peak and trough RMS measurement.
2510 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2511
2512 @item metadata
2513
2514 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2515 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2516 disabled.
2517
2518 Available keys for each channel are:
2519 DC_offset
2520 Min_level
2521 Max_level
2522 Min_difference
2523 Max_difference
2524 Mean_difference
2525 RMS_difference
2526 Peak_level
2527 RMS_peak
2528 RMS_trough
2529 Crest_factor
2530 Flat_factor
2531 Peak_count
2532 Noise_floor
2533 Noise_floor_count
2534 Bit_depth
2535 Dynamic_range
2536 Zero_crossings
2537 Zero_crossings_rate
2538 Number_of_NaNs
2539 Number_of_Infs
2540 Number_of_denormals
2541
2542 and for Overall:
2543 DC_offset
2544 Min_level
2545 Max_level
2546 Min_difference
2547 Max_difference
2548 Mean_difference
2549 RMS_difference
2550 Peak_level
2551 RMS_level
2552 RMS_peak
2553 RMS_trough
2554 Flat_factor
2555 Peak_count
2556 Noise_floor
2557 Noise_floor_count
2558 Bit_depth
2559 Number_of_samples
2560 Number_of_NaNs
2561 Number_of_Infs
2562 Number_of_denormals
2563
2564 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2565 this @code{lavfi.astats.Overall.Peak_count}.
2566
2567 For description what each key means read below.
2568
2569 @item reset
2570 Set number of frame after which stats are going to be recalculated.
2571 Default is disabled.
2572
2573 @item measure_perchannel
2574 Select the entries which need to be measured per channel. The metadata keys can
2575 be used as flags, default is @option{all} which measures everything.
2576 @option{none} disables all per channel measurement.
2577
2578 @item measure_overall
2579 Select the entries which need to be measured overall. The metadata keys can
2580 be used as flags, default is @option{all} which measures everything.
2581 @option{none} disables all overall measurement.
2582
2583 @end table
2584
2585 A description of each shown parameter follows:
2586
2587 @table @option
2588 @item DC offset
2589 Mean amplitude displacement from zero.
2590
2591 @item Min level
2592 Minimal sample level.
2593
2594 @item Max level
2595 Maximal sample level.
2596
2597 @item Min difference
2598 Minimal difference between two consecutive samples.
2599
2600 @item Max difference
2601 Maximal difference between two consecutive samples.
2602
2603 @item Mean difference
2604 Mean difference between two consecutive samples.
2605 The average of each difference between two consecutive samples.
2606
2607 @item RMS difference
2608 Root Mean Square difference between two consecutive samples.
2609
2610 @item Peak level dB
2611 @item RMS level dB
2612 Standard peak and RMS level measured in dBFS.
2613
2614 @item RMS peak dB
2615 @item RMS trough dB
2616 Peak and trough values for RMS level measured over a short window.
2617
2618 @item Crest factor
2619 Standard ratio of peak to RMS level (note: not in dB).
2620
2621 @item Flat factor
2622 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2623 (i.e. either @var{Min level} or @var{Max level}).
2624
2625 @item Peak count
2626 Number of occasions (not the number of samples) that the signal attained either
2627 @var{Min level} or @var{Max level}.
2628
2629 @item Noise floor dB
2630 Minimum local peak measured in dBFS over a short window.
2631
2632 @item Noise floor count
2633 Number of occasions (not the number of samples) that the signal attained
2634 @var{Noise floor}.
2635
2636 @item Bit depth
2637 Overall bit depth of audio. Number of bits used for each sample.
2638
2639 @item Dynamic range
2640 Measured dynamic range of audio in dB.
2641
2642 @item Zero crossings
2643 Number of points where the waveform crosses the zero level axis.
2644
2645 @item Zero crossings rate
2646 Rate of Zero crossings and number of audio samples.
2647 @end table
2648
2649 @section asubboost
2650 Boost subwoofer frequencies.
2651
2652 The filter accepts the following options:
2653
2654 @table @option
2655 @item dry
2656 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2657 Default value is 0.7.
2658
2659 @item wet
2660 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2661 Default value is 0.7.
2662
2663 @item decay
2664 Set delay line decay gain value. Allowed range is from 0 to 1.
2665 Default value is 0.7.
2666
2667 @item feedback
2668 Set delay line feedback gain value. Allowed range is from 0 to 1.
2669 Default value is 0.9.
2670
2671 @item cutoff
2672 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2673 Default value is 100.
2674
2675 @item slope
2676 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2677 Default value is 0.5.
2678
2679 @item delay
2680 Set delay. Allowed range is from 1 to 100.
2681 Default value is 20.
2682 @end table
2683
2684 @subsection Commands
2685
2686 This filter supports the all above options as @ref{commands}.
2687
2688 @section asubcut
2689 Cut subwoofer frequencies.
2690
2691 This filter allows to set custom, steeper
2692 roll off than highpass filter, and thus is able to more attenuate
2693 frequency content in stop-band.
2694
2695 The filter accepts the following options:
2696
2697 @table @option
2698 @item cutoff
2699 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2700 Default value is 20.
2701
2702 @item order
2703 Set filter order. Available values are from 3 to 20.
2704 Default value is 10.
2705
2706 @item level
2707 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2708 @end table
2709
2710 @subsection Commands
2711
2712 This filter supports the all above options as @ref{commands}.
2713
2714 @section asupercut
2715 Cut super frequencies.
2716
2717 The filter accepts the following options:
2718
2719 @table @option
2720 @item cutoff
2721 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2722 Default value is 20000.
2723
2724 @item order
2725 Set filter order. Available values are from 3 to 20.
2726 Default value is 10.
2727
2728 @item level
2729 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2730 @end table
2731
2732 @subsection Commands
2733
2734 This filter supports the all above options as @ref{commands}.
2735
2736 @section asuperpass
2737 Apply high order Butterworth band-pass filter.
2738
2739 The filter accepts the following options:
2740
2741 @table @option
2742 @item centerf
2743 Set center frequency in Hertz. Allowed range is 2 to 999999.
2744 Default value is 1000.
2745
2746 @item order
2747 Set filter order. Available values are from 4 to 20.
2748 Default value is 4.
2749
2750 @item qfactor
2751 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2752
2753 @item level
2754 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2755 @end table
2756
2757 @subsection Commands
2758
2759 This filter supports the all above options as @ref{commands}.
2760
2761 @section asuperstop
2762 Apply high order Butterworth band-stop filter.
2763
2764 The filter accepts the following options:
2765
2766 @table @option
2767 @item centerf
2768 Set center frequency in Hertz. Allowed range is 2 to 999999.
2769 Default value is 1000.
2770
2771 @item order
2772 Set filter order. Available values are from 4 to 20.
2773 Default value is 4.
2774
2775 @item qfactor
2776 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2777
2778 @item level
2779 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2780 @end table
2781
2782 @subsection Commands
2783
2784 This filter supports the all above options as @ref{commands}.
2785
2786 @section atempo
2787
2788 Adjust audio tempo.
2789
2790 The filter accepts exactly one parameter, the audio tempo. If not
2791 specified then the filter will assume nominal 1.0 tempo. Tempo must
2792 be in the [0.5, 100.0] range.
2793
2794 Note that tempo greater than 2 will skip some samples rather than
2795 blend them in.  If for any reason this is a concern it is always
2796 possible to daisy-chain several instances of atempo to achieve the
2797 desired product tempo.
2798
2799 @subsection Examples
2800
2801 @itemize
2802 @item
2803 Slow down audio to 80% tempo:
2804 @example
2805 atempo=0.8
2806 @end example
2807
2808 @item
2809 To speed up audio to 300% tempo:
2810 @example
2811 atempo=3
2812 @end example
2813
2814 @item
2815 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2816 @example
2817 atempo=sqrt(3),atempo=sqrt(3)
2818 @end example
2819 @end itemize
2820
2821 @subsection Commands
2822
2823 This filter supports the following commands:
2824 @table @option
2825 @item tempo
2826 Change filter tempo scale factor.
2827 Syntax for the command is : "@var{tempo}"
2828 @end table
2829
2830 @section atrim
2831
2832 Trim the input so that the output contains one continuous subpart of the input.
2833
2834 It accepts the following parameters:
2835 @table @option
2836 @item start
2837 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2838 sample with the timestamp @var{start} will be the first sample in the output.
2839
2840 @item end
2841 Specify time of the first audio sample that will be dropped, i.e. the
2842 audio sample immediately preceding the one with the timestamp @var{end} will be
2843 the last sample in the output.
2844
2845 @item start_pts
2846 Same as @var{start}, except this option sets the start timestamp in samples
2847 instead of seconds.
2848
2849 @item end_pts
2850 Same as @var{end}, except this option sets the end timestamp in samples instead
2851 of seconds.
2852
2853 @item duration
2854 The maximum duration of the output in seconds.
2855
2856 @item start_sample
2857 The number of the first sample that should be output.
2858
2859 @item end_sample
2860 The number of the first sample that should be dropped.
2861 @end table
2862
2863 @option{start}, @option{end}, and @option{duration} are expressed as time
2864 duration specifications; see
2865 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2866
2867 Note that the first two sets of the start/end options and the @option{duration}
2868 option look at the frame timestamp, while the _sample options simply count the
2869 samples that pass through the filter. So start/end_pts and start/end_sample will
2870 give different results when the timestamps are wrong, inexact or do not start at
2871 zero. Also note that this filter does not modify the timestamps. If you wish
2872 to have the output timestamps start at zero, insert the asetpts filter after the
2873 atrim filter.
2874
2875 If multiple start or end options are set, this filter tries to be greedy and
2876 keep all samples that match at least one of the specified constraints. To keep
2877 only the part that matches all the constraints at once, chain multiple atrim
2878 filters.
2879
2880 The defaults are such that all the input is kept. So it is possible to set e.g.
2881 just the end values to keep everything before the specified time.
2882
2883 Examples:
2884 @itemize
2885 @item
2886 Drop everything except the second minute of input:
2887 @example
2888 ffmpeg -i INPUT -af atrim=60:120
2889 @end example
2890
2891 @item
2892 Keep only the first 1000 samples:
2893 @example
2894 ffmpeg -i INPUT -af atrim=end_sample=1000
2895 @end example
2896
2897 @end itemize
2898
2899 @section axcorrelate
2900 Calculate normalized cross-correlation between two input audio streams.
2901
2902 Resulted samples are always between -1 and 1 inclusive.
2903 If result is 1 it means two input samples are highly correlated in that selected segment.
2904 Result 0 means they are not correlated at all.
2905 If result is -1 it means two input samples are out of phase, which means they cancel each
2906 other.
2907
2908 The filter accepts the following options:
2909
2910 @table @option
2911 @item size
2912 Set size of segment over which cross-correlation is calculated.
2913 Default is 256. Allowed range is from 2 to 131072.
2914
2915 @item algo
2916 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2917 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2918 are always zero and thus need much less calculations to make.
2919 This is generally not true, but is valid for typical audio streams.
2920 @end table
2921
2922 @subsection Examples
2923
2924 @itemize
2925 @item
2926 Calculate correlation between channels in stereo audio stream:
2927 @example
2928 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2929 @end example
2930 @end itemize
2931
2932 @section bandpass
2933
2934 Apply a two-pole Butterworth band-pass filter with central
2935 frequency @var{frequency}, and (3dB-point) band-width width.
2936 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2937 instead of the default: constant 0dB peak gain.
2938 The filter roll off at 6dB per octave (20dB per decade).
2939
2940 The filter accepts the following options:
2941
2942 @table @option
2943 @item frequency, f
2944 Set the filter's central frequency. Default is @code{3000}.
2945
2946 @item csg
2947 Constant skirt gain if set to 1. Defaults to 0.
2948
2949 @item width_type, t
2950 Set method to specify band-width of filter.
2951 @table @option
2952 @item h
2953 Hz
2954 @item q
2955 Q-Factor
2956 @item o
2957 octave
2958 @item s
2959 slope
2960 @item k
2961 kHz
2962 @end table
2963
2964 @item width, w
2965 Specify the band-width of a filter in width_type units.
2966
2967 @item mix, m
2968 How much to use filtered signal in output. Default is 1.
2969 Range is between 0 and 1.
2970
2971 @item channels, c
2972 Specify which channels to filter, by default all available are filtered.
2973
2974 @item normalize, n
2975 Normalize biquad coefficients, by default is disabled.
2976 Enabling it will normalize magnitude response at DC to 0dB.
2977
2978 @item transform, a
2979 Set transform type of IIR filter.
2980 @table @option
2981 @item di
2982 @item dii
2983 @item tdii
2984 @item latt
2985 @end table
2986
2987 @item precision, r
2988 Set precison of filtering.
2989 @table @option
2990 @item auto
2991 Pick automatic sample format depending on surround filters.
2992 @item s16
2993 Always use signed 16-bit.
2994 @item s32
2995 Always use signed 32-bit.
2996 @item f32
2997 Always use float 32-bit.
2998 @item f64
2999 Always use float 64-bit.
3000 @end table
3001 @end table
3002
3003 @subsection Commands
3004
3005 This filter supports the following commands:
3006 @table @option
3007 @item frequency, f
3008 Change bandpass frequency.
3009 Syntax for the command is : "@var{frequency}"
3010
3011 @item width_type, t
3012 Change bandpass width_type.
3013 Syntax for the command is : "@var{width_type}"
3014
3015 @item width, w
3016 Change bandpass width.
3017 Syntax for the command is : "@var{width}"
3018
3019 @item mix, m
3020 Change bandpass mix.
3021 Syntax for the command is : "@var{mix}"
3022 @end table
3023
3024 @section bandreject
3025
3026 Apply a two-pole Butterworth band-reject filter with central
3027 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3028 The filter roll off at 6dB per octave (20dB per decade).
3029
3030 The filter accepts the following options:
3031
3032 @table @option
3033 @item frequency, f
3034 Set the filter's central frequency. Default is @code{3000}.
3035
3036 @item width_type, t
3037 Set method to specify band-width of filter.
3038 @table @option
3039 @item h
3040 Hz
3041 @item q
3042 Q-Factor
3043 @item o
3044 octave
3045 @item s
3046 slope
3047 @item k
3048 kHz
3049 @end table
3050
3051 @item width, w
3052 Specify the band-width of a filter in width_type units.
3053
3054 @item mix, m
3055 How much to use filtered signal in output. Default is 1.
3056 Range is between 0 and 1.
3057
3058 @item channels, c
3059 Specify which channels to filter, by default all available are filtered.
3060
3061 @item normalize, n
3062 Normalize biquad coefficients, by default is disabled.
3063 Enabling it will normalize magnitude response at DC to 0dB.
3064
3065 @item transform, a
3066 Set transform type of IIR filter.
3067 @table @option
3068 @item di
3069 @item dii
3070 @item tdii
3071 @item latt
3072 @end table
3073
3074 @item precision, r
3075 Set precison of filtering.
3076 @table @option
3077 @item auto
3078 Pick automatic sample format depending on surround filters.
3079 @item s16
3080 Always use signed 16-bit.
3081 @item s32
3082 Always use signed 32-bit.
3083 @item f32
3084 Always use float 32-bit.
3085 @item f64
3086 Always use float 64-bit.
3087 @end table
3088 @end table
3089
3090 @subsection Commands
3091
3092 This filter supports the following commands:
3093 @table @option
3094 @item frequency, f
3095 Change bandreject frequency.
3096 Syntax for the command is : "@var{frequency}"
3097
3098 @item width_type, t
3099 Change bandreject width_type.
3100 Syntax for the command is : "@var{width_type}"
3101
3102 @item width, w
3103 Change bandreject width.
3104 Syntax for the command is : "@var{width}"
3105
3106 @item mix, m
3107 Change bandreject mix.
3108 Syntax for the command is : "@var{mix}"
3109 @end table
3110
3111 @section bass, lowshelf
3112
3113 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3114 shelving filter with a response similar to that of a standard
3115 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3116
3117 The filter accepts the following options:
3118
3119 @table @option
3120 @item gain, g
3121 Give the gain at 0 Hz. Its useful range is about -20
3122 (for a large cut) to +20 (for a large boost).
3123 Beware of clipping when using a positive gain.
3124
3125 @item frequency, f
3126 Set the filter's central frequency and so can be used
3127 to extend or reduce the frequency range to be boosted or cut.
3128 The default value is @code{100} Hz.
3129
3130 @item width_type, t
3131 Set method to specify band-width of filter.
3132 @table @option
3133 @item h
3134 Hz
3135 @item q
3136 Q-Factor
3137 @item o
3138 octave
3139 @item s
3140 slope
3141 @item k
3142 kHz
3143 @end table
3144
3145 @item width, w
3146 Determine how steep is the filter's shelf transition.
3147
3148 @item mix, m
3149 How much to use filtered signal in output. Default is 1.
3150 Range is between 0 and 1.
3151
3152 @item channels, c
3153 Specify which channels to filter, by default all available are filtered.
3154
3155 @item normalize, n
3156 Normalize biquad coefficients, by default is disabled.
3157 Enabling it will normalize magnitude response at DC to 0dB.
3158
3159 @item transform, a
3160 Set transform type of IIR filter.
3161 @table @option
3162 @item di
3163 @item dii
3164 @item tdii
3165 @item latt
3166 @end table
3167
3168 @item precision, r
3169 Set precison of filtering.
3170 @table @option
3171 @item auto
3172 Pick automatic sample format depending on surround filters.
3173 @item s16
3174 Always use signed 16-bit.
3175 @item s32
3176 Always use signed 32-bit.
3177 @item f32
3178 Always use float 32-bit.
3179 @item f64
3180 Always use float 64-bit.
3181 @end table
3182 @end table
3183
3184 @subsection Commands
3185
3186 This filter supports the following commands:
3187 @table @option
3188 @item frequency, f
3189 Change bass frequency.
3190 Syntax for the command is : "@var{frequency}"
3191
3192 @item width_type, t
3193 Change bass width_type.
3194 Syntax for the command is : "@var{width_type}"
3195
3196 @item width, w
3197 Change bass width.
3198 Syntax for the command is : "@var{width}"
3199
3200 @item gain, g
3201 Change bass gain.
3202 Syntax for the command is : "@var{gain}"
3203
3204 @item mix, m
3205 Change bass mix.
3206 Syntax for the command is : "@var{mix}"
3207 @end table
3208
3209 @section biquad
3210
3211 Apply a biquad IIR filter with the given coefficients.
3212 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3213 are the numerator and denominator coefficients respectively.
3214 and @var{channels}, @var{c} specify which channels to filter, by default all
3215 available are filtered.
3216
3217 @subsection Commands
3218
3219 This filter supports the following commands:
3220 @table @option
3221 @item a0
3222 @item a1
3223 @item a2
3224 @item b0
3225 @item b1
3226 @item b2
3227 Change biquad parameter.
3228 Syntax for the command is : "@var{value}"
3229
3230 @item mix, m
3231 How much to use filtered signal in output. Default is 1.
3232 Range is between 0 and 1.
3233
3234 @item channels, c
3235 Specify which channels to filter, by default all available are filtered.
3236
3237 @item normalize, n
3238 Normalize biquad coefficients, by default is disabled.
3239 Enabling it will normalize magnitude response at DC to 0dB.
3240
3241 @item transform, a
3242 Set transform type of IIR filter.
3243 @table @option
3244 @item di
3245 @item dii
3246 @item tdii
3247 @item latt
3248 @end table
3249
3250 @item precision, r
3251 Set precison of filtering.
3252 @table @option
3253 @item auto
3254 Pick automatic sample format depending on surround filters.
3255 @item s16
3256 Always use signed 16-bit.
3257 @item s32
3258 Always use signed 32-bit.
3259 @item f32
3260 Always use float 32-bit.
3261 @item f64
3262 Always use float 64-bit.
3263 @end table
3264 @end table
3265
3266 @section bs2b
3267 Bauer stereo to binaural transformation, which improves headphone listening of
3268 stereo audio records.
3269
3270 To enable compilation of this filter you need to configure FFmpeg with
3271 @code{--enable-libbs2b}.
3272
3273 It accepts the following parameters:
3274 @table @option
3275
3276 @item profile
3277 Pre-defined crossfeed level.
3278 @table @option
3279
3280 @item default
3281 Default level (fcut=700, feed=50).
3282
3283 @item cmoy
3284 Chu Moy circuit (fcut=700, feed=60).
3285
3286 @item jmeier
3287 Jan Meier circuit (fcut=650, feed=95).
3288
3289 @end table
3290
3291 @item fcut
3292 Cut frequency (in Hz).
3293
3294 @item feed
3295 Feed level (in Hz).
3296
3297 @end table
3298
3299 @section channelmap
3300
3301 Remap input channels to new locations.
3302
3303 It accepts the following parameters:
3304 @table @option
3305 @item map
3306 Map channels from input to output. The argument is a '|'-separated list of
3307 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3308 @var{in_channel} form. @var{in_channel} can be either the name of the input
3309 channel (e.g. FL for front left) or its index in the input channel layout.
3310 @var{out_channel} is the name of the output channel or its index in the output
3311 channel layout. If @var{out_channel} is not given then it is implicitly an
3312 index, starting with zero and increasing by one for each mapping.
3313
3314 @item channel_layout
3315 The channel layout of the output stream.
3316 @end table
3317
3318 If no mapping is present, the filter will implicitly map input channels to
3319 output channels, preserving indices.
3320
3321 @subsection Examples
3322
3323 @itemize
3324 @item
3325 For example, assuming a 5.1+downmix input MOV file,
3326 @example
3327 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3328 @end example
3329 will create an output WAV file tagged as stereo from the downmix channels of
3330 the input.
3331
3332 @item
3333 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3334 @example
3335 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3336 @end example
3337 @end itemize
3338
3339 @section channelsplit
3340
3341 Split each channel from an input audio stream into a separate output stream.
3342
3343 It accepts the following parameters:
3344 @table @option
3345 @item channel_layout
3346 The channel layout of the input stream. The default is "stereo".
3347 @item channels
3348 A channel layout describing the channels to be extracted as separate output streams
3349 or "all" to extract each input channel as a separate stream. The default is "all".
3350
3351 Choosing channels not present in channel layout in the input will result in an error.
3352 @end table
3353
3354 @subsection Examples
3355
3356 @itemize
3357 @item
3358 For example, assuming a stereo input MP3 file,
3359 @example
3360 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3361 @end example
3362 will create an output Matroska file with two audio streams, one containing only
3363 the left channel and the other the right channel.
3364
3365 @item
3366 Split a 5.1 WAV file into per-channel files:
3367 @example
3368 ffmpeg -i in.wav -filter_complex
3369 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3370 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3371 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3372 side_right.wav
3373 @end example
3374
3375 @item
3376 Extract only LFE from a 5.1 WAV file:
3377 @example
3378 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3379 -map '[LFE]' lfe.wav
3380 @end example
3381 @end itemize
3382
3383 @section chorus
3384 Add a chorus effect to the audio.
3385
3386 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3387
3388 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3389 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3390 The modulation depth defines the range the modulated delay is played before or after
3391 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3392 sound tuned around the original one, like in a chorus where some vocals are slightly
3393 off key.
3394
3395 It accepts the following parameters:
3396 @table @option
3397 @item in_gain
3398 Set input gain. Default is 0.4.
3399
3400 @item out_gain
3401 Set output gain. Default is 0.4.
3402
3403 @item delays
3404 Set delays. A typical delay is around 40ms to 60ms.
3405
3406 @item decays
3407 Set decays.
3408
3409 @item speeds
3410 Set speeds.
3411
3412 @item depths
3413 Set depths.
3414 @end table
3415
3416 @subsection Examples
3417
3418 @itemize
3419 @item
3420 A single delay:
3421 @example
3422 chorus=0.7:0.9:55:0.4:0.25:2
3423 @end example
3424
3425 @item
3426 Two delays:
3427 @example
3428 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3429 @end example
3430
3431 @item
3432 Fuller sounding chorus with three delays:
3433 @example
3434 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
3435 @end example
3436 @end itemize
3437
3438 @section compand
3439 Compress or expand the audio's dynamic range.
3440
3441 It accepts the following parameters:
3442
3443 @table @option
3444
3445 @item attacks
3446 @item decays
3447 A list of times in seconds for each channel over which the instantaneous level
3448 of the input signal is averaged to determine its volume. @var{attacks} refers to
3449 increase of volume and @var{decays} refers to decrease of volume. For most
3450 situations, the attack time (response to the audio getting louder) should be
3451 shorter than the decay time, because the human ear is more sensitive to sudden
3452 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3453 a typical value for decay is 0.8 seconds.
3454 If specified number of attacks & decays is lower than number of channels, the last
3455 set attack/decay will be used for all remaining channels.
3456
3457 @item points
3458 A list of points for the transfer function, specified in dB relative to the
3459 maximum possible signal amplitude. Each key points list must be defined using
3460 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3461 @code{x0/y0 x1/y1 x2/y2 ....}
3462
3463 The input values must be in strictly increasing order but the transfer function
3464 does not have to be monotonically rising. The point @code{0/0} is assumed but
3465 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3466 function are @code{-70/-70|-60/-20|1/0}.
3467
3468 @item soft-knee
3469 Set the curve radius in dB for all joints. It defaults to 0.01.
3470
3471 @item gain
3472 Set the additional gain in dB to be applied at all points on the transfer
3473 function. This allows for easy adjustment of the overall gain.
3474 It defaults to 0.
3475
3476 @item volume
3477 Set an initial volume, in dB, to be assumed for each channel when filtering
3478 starts. This permits the user to supply a nominal level initially, so that, for
3479 example, a very large gain is not applied to initial signal levels before the
3480 companding has begun to operate. A typical value for audio which is initially
3481 quiet is -90 dB. It defaults to 0.
3482
3483 @item delay
3484 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3485 delayed before being fed to the volume adjuster. Specifying a delay
3486 approximately equal to the attack/decay times allows the filter to effectively
3487 operate in predictive rather than reactive mode. It defaults to 0.
3488
3489 @end table
3490
3491 @subsection Examples
3492
3493 @itemize
3494 @item
3495 Make music with both quiet and loud passages suitable for listening to in a
3496 noisy environment:
3497 @example
3498 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3499 @end example
3500
3501 Another example for audio with whisper and explosion parts:
3502 @example
3503 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3504 @end example
3505
3506 @item
3507 A noise gate for when the noise is at a lower level than the signal:
3508 @example
3509 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3510 @end example
3511
3512 @item
3513 Here is another noise gate, this time for when the noise is at a higher level
3514 than the signal (making it, in some ways, similar to squelch):
3515 @example
3516 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3517 @end example
3518
3519 @item
3520 2:1 compression starting at -6dB:
3521 @example
3522 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3523 @end example
3524
3525 @item
3526 2:1 compression starting at -9dB:
3527 @example
3528 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3529 @end example
3530
3531 @item
3532 2:1 compression starting at -12dB:
3533 @example
3534 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3535 @end example
3536
3537 @item
3538 2:1 compression starting at -18dB:
3539 @example
3540 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3541 @end example
3542
3543 @item
3544 3:1 compression starting at -15dB:
3545 @example
3546 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3547 @end example
3548
3549 @item
3550 Compressor/Gate:
3551 @example
3552 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3553 @end example
3554
3555 @item
3556 Expander:
3557 @example
3558 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
3559 @end example
3560
3561 @item
3562 Hard limiter at -6dB:
3563 @example
3564 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3565 @end example
3566
3567 @item
3568 Hard limiter at -12dB:
3569 @example
3570 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3571 @end example
3572
3573 @item
3574 Hard noise gate at -35 dB:
3575 @example
3576 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3577 @end example
3578
3579 @item
3580 Soft limiter:
3581 @example
3582 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3583 @end example
3584 @end itemize
3585
3586 @section compensationdelay
3587
3588 Compensation Delay Line is a metric based delay to compensate differing
3589 positions of microphones or speakers.
3590
3591 For example, you have recorded guitar with two microphones placed in
3592 different locations. Because the front of sound wave has fixed speed in
3593 normal conditions, the phasing of microphones can vary and depends on
3594 their location and interposition. The best sound mix can be achieved when
3595 these microphones are in phase (synchronized). Note that a distance of
3596 ~30 cm between microphones makes one microphone capture the signal in
3597 antiphase to the other microphone. That makes the final mix sound moody.
3598 This filter helps to solve phasing problems by adding different delays
3599 to each microphone track and make them synchronized.
3600
3601 The best result can be reached when you take one track as base and
3602 synchronize other tracks one by one with it.
3603 Remember that synchronization/delay tolerance depends on sample rate, too.
3604 Higher sample rates will give more tolerance.
3605
3606 The filter accepts the following parameters:
3607
3608 @table @option
3609 @item mm
3610 Set millimeters distance. This is compensation distance for fine tuning.
3611 Default is 0.
3612
3613 @item cm
3614 Set cm distance. This is compensation distance for tightening distance setup.
3615 Default is 0.
3616
3617 @item m
3618 Set meters distance. This is compensation distance for hard distance setup.
3619 Default is 0.
3620
3621 @item dry
3622 Set dry amount. Amount of unprocessed (dry) signal.
3623 Default is 0.
3624
3625 @item wet
3626 Set wet amount. Amount of processed (wet) signal.
3627 Default is 1.
3628
3629 @item temp
3630 Set temperature in degrees Celsius. This is the temperature of the environment.
3631 Default is 20.
3632 @end table
3633
3634 @section crossfeed
3635 Apply headphone crossfeed filter.
3636
3637 Crossfeed is the process of blending the left and right channels of stereo
3638 audio recording.
3639 It is mainly used to reduce extreme stereo separation of low frequencies.
3640
3641 The intent is to produce more speaker like sound to the listener.
3642
3643 The filter accepts the following options:
3644
3645 @table @option
3646 @item strength
3647 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3648 This sets gain of low shelf filter for side part of stereo image.
3649 Default is -6dB. Max allowed is -30db when strength is set to 1.
3650
3651 @item range
3652 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3653 This sets cut off frequency of low shelf filter. Default is cut off near
3654 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3655
3656 @item slope
3657 Set curve slope of low shelf filter. Default is 0.5.
3658 Allowed range is from 0.01 to 1.
3659
3660 @item level_in
3661 Set input gain. Default is 0.9.
3662
3663 @item level_out
3664 Set output gain. Default is 1.
3665 @end table
3666
3667 @subsection Commands
3668
3669 This filter supports the all above options as @ref{commands}.
3670
3671 @section crystalizer
3672 Simple algorithm to expand audio dynamic range.
3673
3674 The filter accepts the following options:
3675
3676 @table @option
3677 @item i
3678 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3679 (unchanged sound) to 10.0 (maximum effect).
3680
3681 @item c
3682 Enable clipping. By default is enabled.
3683 @end table
3684
3685 @subsection Commands
3686
3687 This filter supports the all above options as @ref{commands}.
3688
3689 @section dcshift
3690 Apply a DC shift to the audio.
3691
3692 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3693 in the recording chain) from the audio. The effect of a DC offset is reduced
3694 headroom and hence volume. The @ref{astats} filter can be used to determine if
3695 a signal has a DC offset.
3696
3697 @table @option
3698 @item shift
3699 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3700 the audio.
3701
3702 @item limitergain
3703 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3704 used to prevent clipping.
3705 @end table
3706
3707 @section deesser
3708
3709 Apply de-essing to the audio samples.
3710
3711 @table @option
3712 @item i
3713 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3714 Default is 0.
3715
3716 @item m
3717 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3718 Default is 0.5.
3719
3720 @item f
3721 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3722 Default is 0.5.
3723
3724 @item s
3725 Set the output mode.
3726
3727 It accepts the following values:
3728 @table @option
3729 @item i
3730 Pass input unchanged.
3731
3732 @item o
3733 Pass ess filtered out.
3734
3735 @item e
3736 Pass only ess.
3737
3738 Default value is @var{o}.
3739 @end table
3740
3741 @end table
3742
3743 @section drmeter
3744 Measure audio dynamic range.
3745
3746 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3747 is found in transition material. And anything less that 8 have very poor dynamics
3748 and is very compressed.
3749
3750 The filter accepts the following options:
3751
3752 @table @option
3753 @item length
3754 Set window length in seconds used to split audio into segments of equal length.
3755 Default is 3 seconds.
3756 @end table
3757
3758 @section dynaudnorm
3759 Dynamic Audio Normalizer.
3760
3761 This filter applies a certain amount of gain to the input audio in order
3762 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3763 contrast to more "simple" normalization algorithms, the Dynamic Audio
3764 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3765 This allows for applying extra gain to the "quiet" sections of the audio
3766 while avoiding distortions or clipping the "loud" sections. In other words:
3767 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3768 sections, in the sense that the volume of each section is brought to the
3769 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3770 this goal *without* applying "dynamic range compressing". It will retain 100%
3771 of the dynamic range *within* each section of the audio file.
3772
3773 @table @option
3774 @item framelen, f
3775 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3776 Default is 500 milliseconds.
3777 The Dynamic Audio Normalizer processes the input audio in small chunks,
3778 referred to as frames. This is required, because a peak magnitude has no
3779 meaning for just a single sample value. Instead, we need to determine the
3780 peak magnitude for a contiguous sequence of sample values. While a "standard"
3781 normalizer would simply use the peak magnitude of the complete file, the
3782 Dynamic Audio Normalizer determines the peak magnitude individually for each
3783 frame. The length of a frame is specified in milliseconds. By default, the
3784 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3785 been found to give good results with most files.
3786 Note that the exact frame length, in number of samples, will be determined
3787 automatically, based on the sampling rate of the individual input audio file.
3788
3789 @item gausssize, g
3790 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3791 number. Default is 31.
3792 Probably the most important parameter of the Dynamic Audio Normalizer is the
3793 @code{window size} of the Gaussian smoothing filter. The filter's window size
3794 is specified in frames, centered around the current frame. For the sake of
3795 simplicity, this must be an odd number. Consequently, the default value of 31
3796 takes into account the current frame, as well as the 15 preceding frames and
3797 the 15 subsequent frames. Using a larger window results in a stronger
3798 smoothing effect and thus in less gain variation, i.e. slower gain
3799 adaptation. Conversely, using a smaller window results in a weaker smoothing
3800 effect and thus in more gain variation, i.e. faster gain adaptation.
3801 In other words, the more you increase this value, the more the Dynamic Audio
3802 Normalizer will behave like a "traditional" normalization filter. On the
3803 contrary, the more you decrease this value, the more the Dynamic Audio
3804 Normalizer will behave like a dynamic range compressor.
3805
3806 @item peak, p
3807 Set the target peak value. This specifies the highest permissible magnitude
3808 level for the normalized audio input. This filter will try to approach the
3809 target peak magnitude as closely as possible, but at the same time it also
3810 makes sure that the normalized signal will never exceed the peak magnitude.
3811 A frame's maximum local gain factor is imposed directly by the target peak
3812 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3813 It is not recommended to go above this value.
3814
3815 @item maxgain, m
3816 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3817 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3818 factor for each input frame, i.e. the maximum gain factor that does not
3819 result in clipping or distortion. The maximum gain factor is determined by
3820 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3821 additionally bounds the frame's maximum gain factor by a predetermined
3822 (global) maximum gain factor. This is done in order to avoid excessive gain
3823 factors in "silent" or almost silent frames. By default, the maximum gain
3824 factor is 10.0, For most inputs the default value should be sufficient and
3825 it usually is not recommended to increase this value. Though, for input
3826 with an extremely low overall volume level, it may be necessary to allow even
3827 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3828 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3829 Instead, a "sigmoid" threshold function will be applied. This way, the
3830 gain factors will smoothly approach the threshold value, but never exceed that
3831 value.
3832
3833 @item targetrms, r
3834 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3835 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3836 This means that the maximum local gain factor for each frame is defined
3837 (only) by the frame's highest magnitude sample. This way, the samples can
3838 be amplified as much as possible without exceeding the maximum signal
3839 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3840 Normalizer can also take into account the frame's root mean square,
3841 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3842 determine the power of a time-varying signal. It is therefore considered
3843 that the RMS is a better approximation of the "perceived loudness" than
3844 just looking at the signal's peak magnitude. Consequently, by adjusting all
3845 frames to a constant RMS value, a uniform "perceived loudness" can be
3846 established. If a target RMS value has been specified, a frame's local gain
3847 factor is defined as the factor that would result in exactly that RMS value.
3848 Note, however, that the maximum local gain factor is still restricted by the
3849 frame's highest magnitude sample, in order to prevent clipping.
3850
3851 @item coupling, n
3852 Enable channels coupling. By default is enabled.
3853 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3854 amount. This means the same gain factor will be applied to all channels, i.e.
3855 the maximum possible gain factor is determined by the "loudest" channel.
3856 However, in some recordings, it may happen that the volume of the different
3857 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3858 In this case, this option can be used to disable the channel coupling. This way,
3859 the gain factor will be determined independently for each channel, depending
3860 only on the individual channel's highest magnitude sample. This allows for
3861 harmonizing the volume of the different channels.
3862
3863 @item correctdc, c
3864 Enable DC bias correction. By default is disabled.
3865 An audio signal (in the time domain) is a sequence of sample values.
3866 In the Dynamic Audio Normalizer these sample values are represented in the
3867 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3868 audio signal, or "waveform", should be centered around the zero point.
3869 That means if we calculate the mean value of all samples in a file, or in a
3870 single frame, then the result should be 0.0 or at least very close to that
3871 value. If, however, there is a significant deviation of the mean value from
3872 0.0, in either positive or negative direction, this is referred to as a
3873 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3874 Audio Normalizer provides optional DC bias correction.
3875 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3876 the mean value, or "DC correction" offset, of each input frame and subtract
3877 that value from all of the frame's sample values which ensures those samples
3878 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3879 boundaries, the DC correction offset values will be interpolated smoothly
3880 between neighbouring frames.
3881
3882 @item altboundary, b
3883 Enable alternative boundary mode. By default is disabled.
3884 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3885 around each frame. This includes the preceding frames as well as the
3886 subsequent frames. However, for the "boundary" frames, located at the very
3887 beginning and at the very end of the audio file, not all neighbouring
3888 frames are available. In particular, for the first few frames in the audio
3889 file, the preceding frames are not known. And, similarly, for the last few
3890 frames in the audio file, the subsequent frames are not known. Thus, the
3891 question arises which gain factors should be assumed for the missing frames
3892 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3893 to deal with this situation. The default boundary mode assumes a gain factor
3894 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3895 "fade out" at the beginning and at the end of the input, respectively.
3896
3897 @item compress, s
3898 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3899 By default, the Dynamic Audio Normalizer does not apply "traditional"
3900 compression. This means that signal peaks will not be pruned and thus the
3901 full dynamic range will be retained within each local neighbourhood. However,
3902 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3903 normalization algorithm with a more "traditional" compression.
3904 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3905 (thresholding) function. If (and only if) the compression feature is enabled,
3906 all input frames will be processed by a soft knee thresholding function prior
3907 to the actual normalization process. Put simply, the thresholding function is
3908 going to prune all samples whose magnitude exceeds a certain threshold value.
3909 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3910 value. Instead, the threshold value will be adjusted for each individual
3911 frame.
3912 In general, smaller parameters result in stronger compression, and vice versa.
3913 Values below 3.0 are not recommended, because audible distortion may appear.
3914
3915 @item threshold, t
3916 Set the target threshold value. This specifies the lowest permissible
3917 magnitude level for the audio input which will be normalized.
3918 If input frame volume is above this value frame will be normalized.
3919 Otherwise frame may not be normalized at all. The default value is set
3920 to 0, which means all input frames will be normalized.
3921 This option is mostly useful if digital noise is not wanted to be amplified.
3922 @end table
3923
3924 @subsection Commands
3925
3926 This filter supports the all above options as @ref{commands}.
3927
3928 @section earwax
3929
3930 Make audio easier to listen to on headphones.
3931
3932 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3933 so that when listened to on headphones the stereo image is moved from
3934 inside your head (standard for headphones) to outside and in front of
3935 the listener (standard for speakers).
3936
3937 Ported from SoX.
3938
3939 @section equalizer
3940
3941 Apply a two-pole peaking equalisation (EQ) filter. With this
3942 filter, the signal-level at and around a selected frequency can
3943 be increased or decreased, whilst (unlike bandpass and bandreject
3944 filters) that at all other frequencies is unchanged.
3945
3946 In order to produce complex equalisation curves, this filter can
3947 be given several times, each with a different central frequency.
3948
3949 The filter accepts the following options:
3950
3951 @table @option
3952 @item frequency, f
3953 Set the filter's central frequency in Hz.
3954
3955 @item width_type, t
3956 Set method to specify band-width of filter.
3957 @table @option
3958 @item h
3959 Hz
3960 @item q
3961 Q-Factor
3962 @item o
3963 octave
3964 @item s
3965 slope
3966 @item k
3967 kHz
3968 @end table
3969
3970 @item width, w
3971 Specify the band-width of a filter in width_type units.
3972
3973 @item gain, g
3974 Set the required gain or attenuation in dB.
3975 Beware of clipping when using a positive gain.
3976
3977 @item mix, m
3978 How much to use filtered signal in output. Default is 1.
3979 Range is between 0 and 1.
3980
3981 @item channels, c
3982 Specify which channels to filter, by default all available are filtered.
3983
3984 @item normalize, n
3985 Normalize biquad coefficients, by default is disabled.
3986 Enabling it will normalize magnitude response at DC to 0dB.
3987
3988 @item transform, a
3989 Set transform type of IIR filter.
3990 @table @option
3991 @item di
3992 @item dii
3993 @item tdii
3994 @item latt
3995 @end table
3996
3997 @item precision, r
3998 Set precison of filtering.
3999 @table @option
4000 @item auto
4001 Pick automatic sample format depending on surround filters.
4002 @item s16
4003 Always use signed 16-bit.
4004 @item s32
4005 Always use signed 32-bit.
4006 @item f32
4007 Always use float 32-bit.
4008 @item f64
4009 Always use float 64-bit.
4010 @end table
4011 @end table
4012
4013 @subsection Examples
4014 @itemize
4015 @item
4016 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4017 @example
4018 equalizer=f=1000:t=h:width=200:g=-10
4019 @end example
4020
4021 @item
4022 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4023 @example
4024 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4025 @end example
4026 @end itemize
4027
4028 @subsection Commands
4029
4030 This filter supports the following commands:
4031 @table @option
4032 @item frequency, f
4033 Change equalizer frequency.
4034 Syntax for the command is : "@var{frequency}"
4035
4036 @item width_type, t
4037 Change equalizer width_type.
4038 Syntax for the command is : "@var{width_type}"
4039
4040 @item width, w
4041 Change equalizer width.
4042 Syntax for the command is : "@var{width}"
4043
4044 @item gain, g
4045 Change equalizer gain.
4046 Syntax for the command is : "@var{gain}"
4047
4048 @item mix, m
4049 Change equalizer mix.
4050 Syntax for the command is : "@var{mix}"
4051 @end table
4052
4053 @section extrastereo
4054
4055 Linearly increases the difference between left and right channels which
4056 adds some sort of "live" effect to playback.
4057
4058 The filter accepts the following options:
4059
4060 @table @option
4061 @item m
4062 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4063 (average of both channels), with 1.0 sound will be unchanged, with
4064 -1.0 left and right channels will be swapped.
4065
4066 @item c
4067 Enable clipping. By default is enabled.
4068 @end table
4069
4070 @subsection Commands
4071
4072 This filter supports the all above options as @ref{commands}.
4073
4074 @section firequalizer
4075 Apply FIR Equalization using arbitrary frequency response.
4076
4077 The filter accepts the following option:
4078
4079 @table @option
4080 @item gain
4081 Set gain curve equation (in dB). The expression can contain variables:
4082 @table @option
4083 @item f
4084 the evaluated frequency
4085 @item sr
4086 sample rate
4087 @item ch
4088 channel number, set to 0 when multichannels evaluation is disabled
4089 @item chid
4090 channel id, see libavutil/channel_layout.h, set to the first channel id when
4091 multichannels evaluation is disabled
4092 @item chs
4093 number of channels
4094 @item chlayout
4095 channel_layout, see libavutil/channel_layout.h
4096
4097 @end table
4098 and functions:
4099 @table @option
4100 @item gain_interpolate(f)
4101 interpolate gain on frequency f based on gain_entry
4102 @item cubic_interpolate(f)
4103 same as gain_interpolate, but smoother
4104 @end table
4105 This option is also available as command. Default is @code{gain_interpolate(f)}.
4106
4107 @item gain_entry
4108 Set gain entry for gain_interpolate function. The expression can
4109 contain functions:
4110 @table @option
4111 @item entry(f, g)
4112 store gain entry at frequency f with value g
4113 @end table
4114 This option is also available as command.
4115
4116 @item delay
4117 Set filter delay in seconds. Higher value means more accurate.
4118 Default is @code{0.01}.
4119
4120 @item accuracy
4121 Set filter accuracy in Hz. Lower value means more accurate.
4122 Default is @code{5}.
4123
4124 @item wfunc
4125 Set window function. Acceptable values are:
4126 @table @option
4127 @item rectangular
4128 rectangular window, useful when gain curve is already smooth
4129 @item hann
4130 hann window (default)
4131 @item hamming
4132 hamming window
4133 @item blackman
4134 blackman window
4135 @item nuttall3
4136 3-terms continuous 1st derivative nuttall window
4137 @item mnuttall3
4138 minimum 3-terms discontinuous nuttall window
4139 @item nuttall
4140 4-terms continuous 1st derivative nuttall window
4141 @item bnuttall
4142 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4143 @item bharris
4144 blackman-harris window
4145 @item tukey
4146 tukey window
4147 @end table
4148
4149 @item fixed
4150 If enabled, use fixed number of audio samples. This improves speed when
4151 filtering with large delay. Default is disabled.
4152
4153 @item multi
4154 Enable multichannels evaluation on gain. Default is disabled.
4155
4156 @item zero_phase
4157 Enable zero phase mode by subtracting timestamp to compensate delay.
4158 Default is disabled.
4159
4160 @item scale
4161 Set scale used by gain. Acceptable values are:
4162 @table @option
4163 @item linlin
4164 linear frequency, linear gain
4165 @item linlog
4166 linear frequency, logarithmic (in dB) gain (default)
4167 @item loglin
4168 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4169 @item loglog
4170 logarithmic frequency, logarithmic gain
4171 @end table
4172
4173 @item dumpfile
4174 Set file for dumping, suitable for gnuplot.
4175
4176 @item dumpscale
4177 Set scale for dumpfile. Acceptable values are same with scale option.
4178 Default is linlog.
4179
4180 @item fft2
4181 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4182 Default is disabled.
4183
4184 @item min_phase
4185 Enable minimum phase impulse response. Default is disabled.
4186 @end table
4187
4188 @subsection Examples
4189 @itemize
4190 @item
4191 lowpass at 1000 Hz:
4192 @example
4193 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4194 @end example
4195 @item
4196 lowpass at 1000 Hz with gain_entry:
4197 @example
4198 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4199 @end example
4200 @item
4201 custom equalization:
4202 @example
4203 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4204 @end example
4205 @item
4206 higher delay with zero phase to compensate delay:
4207 @example
4208 firequalizer=delay=0.1:fixed=on:zero_phase=on
4209 @end example
4210 @item
4211 lowpass on left channel, highpass on right channel:
4212 @example
4213 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4214 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4215 @end example
4216 @end itemize
4217
4218 @section flanger
4219 Apply a flanging effect to the audio.
4220
4221 The filter accepts the following options:
4222
4223 @table @option
4224 @item delay
4225 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4226
4227 @item depth
4228 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4229
4230 @item regen
4231 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4232 Default value is 0.
4233
4234 @item width
4235 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4236 Default value is 71.
4237
4238 @item speed
4239 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4240
4241 @item shape
4242 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4243 Default value is @var{sinusoidal}.
4244
4245 @item phase
4246 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4247 Default value is 25.
4248
4249 @item interp
4250 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4251 Default is @var{linear}.
4252 @end table
4253
4254 @section haas
4255 Apply Haas effect to audio.
4256
4257 Note that this makes most sense to apply on mono signals.
4258 With this filter applied to mono signals it give some directionality and
4259 stretches its stereo image.
4260
4261 The filter accepts the following options:
4262
4263 @table @option
4264 @item level_in
4265 Set input level. By default is @var{1}, or 0dB
4266
4267 @item level_out
4268 Set output level. By default is @var{1}, or 0dB.
4269
4270 @item side_gain
4271 Set gain applied to side part of signal. By default is @var{1}.
4272
4273 @item middle_source
4274 Set kind of middle source. Can be one of the following:
4275
4276 @table @samp
4277 @item left
4278 Pick left channel.
4279
4280 @item right
4281 Pick right channel.
4282
4283 @item mid
4284 Pick middle part signal of stereo image.
4285
4286 @item side
4287 Pick side part signal of stereo image.
4288 @end table
4289
4290 @item middle_phase
4291 Change middle phase. By default is disabled.
4292
4293 @item left_delay
4294 Set left channel delay. By default is @var{2.05} milliseconds.
4295
4296 @item left_balance
4297 Set left channel balance. By default is @var{-1}.
4298
4299 @item left_gain
4300 Set left channel gain. By default is @var{1}.
4301
4302 @item left_phase
4303 Change left phase. By default is disabled.
4304
4305 @item right_delay
4306 Set right channel delay. By defaults is @var{2.12} milliseconds.
4307
4308 @item right_balance
4309 Set right channel balance. By default is @var{1}.
4310
4311 @item right_gain
4312 Set right channel gain. By default is @var{1}.
4313
4314 @item right_phase
4315 Change right phase. By default is enabled.
4316 @end table
4317
4318 @section hdcd
4319
4320 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4321 embedded HDCD codes is expanded into a 20-bit PCM stream.
4322
4323 The filter supports the Peak Extend and Low-level Gain Adjustment features
4324 of HDCD, and detects the Transient Filter flag.
4325
4326 @example
4327 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4328 @end example
4329
4330 When using the filter with wav, note the default encoding for wav is 16-bit,
4331 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4332 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4333 @example
4334 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4335 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4336 @end example
4337
4338 The filter accepts the following options:
4339
4340 @table @option
4341 @item disable_autoconvert
4342 Disable any automatic format conversion or resampling in the filter graph.
4343
4344 @item process_stereo
4345 Process the stereo channels together. If target_gain does not match between
4346 channels, consider it invalid and use the last valid target_gain.
4347
4348 @item cdt_ms
4349 Set the code detect timer period in ms.
4350
4351 @item force_pe
4352 Always extend peaks above -3dBFS even if PE isn't signaled.
4353
4354 @item analyze_mode
4355 Replace audio with a solid tone and adjust the amplitude to signal some
4356 specific aspect of the decoding process. The output file can be loaded in
4357 an audio editor alongside the original to aid analysis.
4358
4359 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4360
4361 Modes are:
4362 @table @samp
4363 @item 0, off
4364 Disabled
4365 @item 1, lle
4366 Gain adjustment level at each sample
4367 @item 2, pe
4368 Samples where peak extend occurs
4369 @item 3, cdt
4370 Samples where the code detect timer is active
4371 @item 4, tgm
4372 Samples where the target gain does not match between channels
4373 @end table
4374 @end table
4375
4376 @section headphone
4377
4378 Apply head-related transfer functions (HRTFs) to create virtual
4379 loudspeakers around the user for binaural listening via headphones.
4380 The HRIRs are provided via additional streams, for each channel
4381 one stereo input stream is needed.
4382
4383 The filter accepts the following options:
4384
4385 @table @option
4386 @item map
4387 Set mapping of input streams for convolution.
4388 The argument is a '|'-separated list of channel names in order as they
4389 are given as additional stream inputs for filter.
4390 This also specify number of input streams. Number of input streams
4391 must be not less than number of channels in first stream plus one.
4392
4393 @item gain
4394 Set gain applied to audio. Value is in dB. Default is 0.
4395
4396 @item type
4397 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4398 processing audio in time domain which is slow.
4399 @var{freq} is processing audio in frequency domain which is fast.
4400 Default is @var{freq}.
4401
4402 @item lfe
4403 Set custom gain for LFE channels. Value is in dB. Default is 0.
4404
4405 @item size
4406 Set size of frame in number of samples which will be processed at once.
4407 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4408
4409 @item hrir
4410 Set format of hrir stream.
4411 Default value is @var{stereo}. Alternative value is @var{multich}.
4412 If value is set to @var{stereo}, number of additional streams should
4413 be greater or equal to number of input channels in first input stream.
4414 Also each additional stream should have stereo number of channels.
4415 If value is set to @var{multich}, number of additional streams should
4416 be exactly one. Also number of input channels of additional stream
4417 should be equal or greater than twice number of channels of first input
4418 stream.
4419 @end table
4420
4421 @subsection Examples
4422
4423 @itemize
4424 @item
4425 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4426 each amovie filter use stereo file with IR coefficients as input.
4427 The files give coefficients for each position of virtual loudspeaker:
4428 @example
4429 ffmpeg -i input.wav
4430 -filter_complex "amovie=azi_270_ele_0_DFC.wav[sr];amovie=azi_90_ele_0_DFC.wav[sl];amovie=azi_225_ele_0_DFC.wav[br];amovie=azi_135_ele_0_DFC.wav[bl];amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe];amovie=azi_35_ele_0_DFC.wav[fl];amovie=azi_325_ele_0_DFC.wav[fr];[0:a][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
4431 output.wav
4432 @end example
4433
4434 @item
4435 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4436 but now in @var{multich} @var{hrir} format.
4437 @example
4438 ffmpeg -i input.wav -filter_complex "amovie=minp.wav[hrirs];[0:a][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
4439 output.wav
4440 @end example
4441 @end itemize
4442
4443 @section highpass
4444
4445 Apply a high-pass filter with 3dB point frequency.
4446 The filter can be either single-pole, or double-pole (the default).
4447 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4448
4449 The filter accepts the following options:
4450
4451 @table @option
4452 @item frequency, f
4453 Set frequency in Hz. Default is 3000.
4454
4455 @item poles, p
4456 Set number of poles. Default is 2.
4457
4458 @item width_type, t
4459 Set method to specify band-width of filter.
4460 @table @option
4461 @item h
4462 Hz
4463 @item q
4464 Q-Factor
4465 @item o
4466 octave
4467 @item s
4468 slope
4469 @item k
4470 kHz
4471 @end table
4472
4473 @item width, w
4474 Specify the band-width of a filter in width_type units.
4475 Applies only to double-pole filter.
4476 The default is 0.707q and gives a Butterworth response.
4477
4478 @item mix, m
4479 How much to use filtered signal in output. Default is 1.
4480 Range is between 0 and 1.
4481
4482 @item channels, c
4483 Specify which channels to filter, by default all available are filtered.
4484
4485 @item normalize, n
4486 Normalize biquad coefficients, by default is disabled.
4487 Enabling it will normalize magnitude response at DC to 0dB.
4488
4489 @item transform, a
4490 Set transform type of IIR filter.
4491 @table @option
4492 @item di
4493 @item dii
4494 @item tdii
4495 @item latt
4496 @end table
4497
4498 @item precision, r
4499 Set precison of filtering.
4500 @table @option
4501 @item auto
4502 Pick automatic sample format depending on surround filters.
4503 @item s16
4504 Always use signed 16-bit.
4505 @item s32
4506 Always use signed 32-bit.
4507 @item f32
4508 Always use float 32-bit.
4509 @item f64
4510 Always use float 64-bit.
4511 @end table
4512 @end table
4513
4514 @subsection Commands
4515
4516 This filter supports the following commands:
4517 @table @option
4518 @item frequency, f
4519 Change highpass frequency.
4520 Syntax for the command is : "@var{frequency}"
4521
4522 @item width_type, t
4523 Change highpass width_type.
4524 Syntax for the command is : "@var{width_type}"
4525
4526 @item width, w
4527 Change highpass width.
4528 Syntax for the command is : "@var{width}"
4529
4530 @item mix, m
4531 Change highpass mix.
4532 Syntax for the command is : "@var{mix}"
4533 @end table
4534
4535 @section join
4536
4537 Join multiple input streams into one multi-channel stream.
4538
4539 It accepts the following parameters:
4540 @table @option
4541
4542 @item inputs
4543 The number of input streams. It defaults to 2.
4544
4545 @item channel_layout
4546 The desired output channel layout. It defaults to stereo.
4547
4548 @item map
4549 Map channels from inputs to output. The argument is a '|'-separated list of
4550 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4551 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4552 can be either the name of the input channel (e.g. FL for front left) or its
4553 index in the specified input stream. @var{out_channel} is the name of the output
4554 channel.
4555 @end table
4556
4557 The filter will attempt to guess the mappings when they are not specified
4558 explicitly. It does so by first trying to find an unused matching input channel
4559 and if that fails it picks the first unused input channel.
4560
4561 Join 3 inputs (with properly set channel layouts):
4562 @example
4563 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4564 @end example
4565
4566 Build a 5.1 output from 6 single-channel streams:
4567 @example
4568 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4569 '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'
4570 out
4571 @end example
4572
4573 @section ladspa
4574
4575 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4576
4577 To enable compilation of this filter you need to configure FFmpeg with
4578 @code{--enable-ladspa}.
4579
4580 @table @option
4581 @item file, f
4582 Specifies the name of LADSPA plugin library to load. If the environment
4583 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4584 each one of the directories specified by the colon separated list in
4585 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4586 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4587 @file{/usr/lib/ladspa/}.
4588
4589 @item plugin, p
4590 Specifies the plugin within the library. Some libraries contain only
4591 one plugin, but others contain many of them. If this is not set filter
4592 will list all available plugins within the specified library.
4593
4594 @item controls, c
4595 Set the '|' separated list of controls which are zero or more floating point
4596 values that determine the behavior of the loaded plugin (for example delay,
4597 threshold or gain).
4598 Controls need to be defined using the following syntax:
4599 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4600 @var{valuei} is the value set on the @var{i}-th control.
4601 Alternatively they can be also defined using the following syntax:
4602 @var{value0}|@var{value1}|@var{value2}|..., where
4603 @var{valuei} is the value set on the @var{i}-th control.
4604 If @option{controls} is set to @code{help}, all available controls and
4605 their valid ranges are printed.
4606
4607 @item sample_rate, s
4608 Specify the sample rate, default to 44100. Only used if plugin have
4609 zero inputs.
4610
4611 @item nb_samples, n
4612 Set the number of samples per channel per each output frame, default
4613 is 1024. Only used if plugin have zero inputs.
4614
4615 @item duration, d
4616 Set the minimum duration of the sourced audio. See
4617 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4618 for the accepted syntax.
4619 Note that the resulting duration may be greater than the specified duration,
4620 as the generated audio is always cut at the end of a complete frame.
4621 If not specified, or the expressed duration is negative, the audio is
4622 supposed to be generated forever.
4623 Only used if plugin have zero inputs.
4624
4625 @item latency, l
4626 Enable latency compensation, by default is disabled.
4627 Only used if plugin have inputs.
4628 @end table
4629
4630 @subsection Examples
4631
4632 @itemize
4633 @item
4634 List all available plugins within amp (LADSPA example plugin) library:
4635 @example
4636 ladspa=file=amp
4637 @end example
4638
4639 @item
4640 List all available controls and their valid ranges for @code{vcf_notch}
4641 plugin from @code{VCF} library:
4642 @example
4643 ladspa=f=vcf:p=vcf_notch:c=help
4644 @end example
4645
4646 @item
4647 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4648 plugin library:
4649 @example
4650 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4651 @end example
4652
4653 @item
4654 Add reverberation to the audio using TAP-plugins
4655 (Tom's Audio Processing plugins):
4656 @example
4657 ladspa=file=tap_reverb:tap_reverb
4658 @end example
4659
4660 @item
4661 Generate white noise, with 0.2 amplitude:
4662 @example
4663 ladspa=file=cmt:noise_source_white:c=c0=.2
4664 @end example
4665
4666 @item
4667 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4668 @code{C* Audio Plugin Suite} (CAPS) library:
4669 @example
4670 ladspa=file=caps:Click:c=c1=20'
4671 @end example
4672
4673 @item
4674 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4675 @example
4676 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4677 @end example
4678
4679 @item
4680 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4681 @code{SWH Plugins} collection:
4682 @example
4683 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4684 @end example
4685
4686 @item
4687 Attenuate low frequencies using Multiband EQ from Steve Harris
4688 @code{SWH Plugins} collection:
4689 @example
4690 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4691 @end example
4692
4693 @item
4694 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4695 (CAPS) library:
4696 @example
4697 ladspa=caps:Narrower
4698 @end example
4699
4700 @item
4701 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4702 @example
4703 ladspa=caps:White:.2
4704 @end example
4705
4706 @item
4707 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4708 @example
4709 ladspa=caps:Fractal:c=c1=1
4710 @end example
4711
4712 @item
4713 Dynamic volume normalization using @code{VLevel} plugin:
4714 @example
4715 ladspa=vlevel-ladspa:vlevel_mono
4716 @end example
4717 @end itemize
4718
4719 @subsection Commands
4720
4721 This filter supports the following commands:
4722 @table @option
4723 @item cN
4724 Modify the @var{N}-th control value.
4725
4726 If the specified value is not valid, it is ignored and prior one is kept.
4727 @end table
4728
4729 @section loudnorm
4730
4731 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4732 Support for both single pass (livestreams, files) and double pass (files) modes.
4733 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4734 detect true peaks, the audio stream will be upsampled to 192 kHz.
4735 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4736
4737 The filter accepts the following options:
4738
4739 @table @option
4740 @item I, i
4741 Set integrated loudness target.
4742 Range is -70.0 - -5.0. Default value is -24.0.
4743
4744 @item LRA, lra
4745 Set loudness range target.
4746 Range is 1.0 - 20.0. Default value is 7.0.
4747
4748 @item TP, tp
4749 Set maximum true peak.
4750 Range is -9.0 - +0.0. Default value is -2.0.
4751
4752 @item measured_I, measured_i
4753 Measured IL of input file.
4754 Range is -99.0 - +0.0.
4755
4756 @item measured_LRA, measured_lra
4757 Measured LRA of input file.
4758 Range is  0.0 - 99.0.
4759
4760 @item measured_TP, measured_tp
4761 Measured true peak of input file.
4762 Range is  -99.0 - +99.0.
4763
4764 @item measured_thresh
4765 Measured threshold of input file.
4766 Range is -99.0 - +0.0.
4767
4768 @item offset
4769 Set offset gain. Gain is applied before the true-peak limiter.
4770 Range is  -99.0 - +99.0. Default is +0.0.
4771
4772 @item linear
4773 Normalize by linearly scaling the source audio.
4774 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4775 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4776 be lower than source LRA and the change in integrated loudness shouldn't
4777 result in a true peak which exceeds the target TP. If any of these
4778 conditions aren't met, normalization mode will revert to @var{dynamic}.
4779 Options are @code{true} or @code{false}. Default is @code{true}.
4780
4781 @item dual_mono
4782 Treat mono input files as "dual-mono". If a mono file is intended for playback
4783 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4784 If set to @code{true}, this option will compensate for this effect.
4785 Multi-channel input files are not affected by this option.
4786 Options are true or false. Default is false.
4787
4788 @item print_format
4789 Set print format for stats. Options are summary, json, or none.
4790 Default value is none.
4791 @end table
4792
4793 @section lowpass
4794
4795 Apply a low-pass filter with 3dB point frequency.
4796 The filter can be either single-pole or double-pole (the default).
4797 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4798
4799 The filter accepts the following options:
4800
4801 @table @option
4802 @item frequency, f
4803 Set frequency in Hz. Default is 500.
4804
4805 @item poles, p
4806 Set number of poles. Default is 2.
4807
4808 @item width_type, t
4809 Set method to specify band-width of filter.
4810 @table @option
4811 @item h
4812 Hz
4813 @item q
4814 Q-Factor
4815 @item o
4816 octave
4817 @item s
4818 slope
4819 @item k
4820 kHz
4821 @end table
4822
4823 @item width, w
4824 Specify the band-width of a filter in width_type units.
4825 Applies only to double-pole filter.
4826 The default is 0.707q and gives a Butterworth response.
4827
4828 @item mix, m
4829 How much to use filtered signal in output. Default is 1.
4830 Range is between 0 and 1.
4831
4832 @item channels, c
4833 Specify which channels to filter, by default all available are filtered.
4834
4835 @item normalize, n
4836 Normalize biquad coefficients, by default is disabled.
4837 Enabling it will normalize magnitude response at DC to 0dB.
4838
4839 @item transform, a
4840 Set transform type of IIR filter.
4841 @table @option
4842 @item di
4843 @item dii
4844 @item tdii
4845 @item latt
4846 @end table
4847
4848 @item precision, r
4849 Set precison of filtering.
4850 @table @option
4851 @item auto
4852 Pick automatic sample format depending on surround filters.
4853 @item s16
4854 Always use signed 16-bit.
4855 @item s32
4856 Always use signed 32-bit.
4857 @item f32
4858 Always use float 32-bit.
4859 @item f64
4860 Always use float 64-bit.
4861 @end table
4862 @end table
4863
4864 @subsection Examples
4865 @itemize
4866 @item
4867 Lowpass only LFE channel, it LFE is not present it does nothing:
4868 @example
4869 lowpass=c=LFE
4870 @end example
4871 @end itemize
4872
4873 @subsection Commands
4874
4875 This filter supports the following commands:
4876 @table @option
4877 @item frequency, f
4878 Change lowpass frequency.
4879 Syntax for the command is : "@var{frequency}"
4880
4881 @item width_type, t
4882 Change lowpass width_type.
4883 Syntax for the command is : "@var{width_type}"
4884
4885 @item width, w
4886 Change lowpass width.
4887 Syntax for the command is : "@var{width}"
4888
4889 @item mix, m
4890 Change lowpass mix.
4891 Syntax for the command is : "@var{mix}"
4892 @end table
4893
4894 @section lv2
4895
4896 Load a LV2 (LADSPA Version 2) plugin.
4897
4898 To enable compilation of this filter you need to configure FFmpeg with
4899 @code{--enable-lv2}.
4900
4901 @table @option
4902 @item plugin, p
4903 Specifies the plugin URI. You may need to escape ':'.
4904
4905 @item controls, c
4906 Set the '|' separated list of controls which are zero or more floating point
4907 values that determine the behavior of the loaded plugin (for example delay,
4908 threshold or gain).
4909 If @option{controls} is set to @code{help}, all available controls and
4910 their valid ranges are printed.
4911
4912 @item sample_rate, s
4913 Specify the sample rate, default to 44100. Only used if plugin have
4914 zero inputs.
4915
4916 @item nb_samples, n
4917 Set the number of samples per channel per each output frame, default
4918 is 1024. Only used if plugin have zero inputs.
4919
4920 @item duration, d
4921 Set the minimum duration of the sourced audio. See
4922 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4923 for the accepted syntax.
4924 Note that the resulting duration may be greater than the specified duration,
4925 as the generated audio is always cut at the end of a complete frame.
4926 If not specified, or the expressed duration is negative, the audio is
4927 supposed to be generated forever.
4928 Only used if plugin have zero inputs.
4929 @end table
4930
4931 @subsection Examples
4932
4933 @itemize
4934 @item
4935 Apply bass enhancer plugin from Calf:
4936 @example
4937 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4938 @end example
4939
4940 @item
4941 Apply vinyl plugin from Calf:
4942 @example
4943 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4944 @end example
4945
4946 @item
4947 Apply bit crusher plugin from ArtyFX:
4948 @example
4949 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4950 @end example
4951 @end itemize
4952
4953 @section mcompand
4954 Multiband Compress or expand the audio's dynamic range.
4955
4956 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4957 This is akin to the crossover of a loudspeaker, and results in flat frequency
4958 response when absent compander action.
4959
4960 It accepts the following parameters:
4961
4962 @table @option
4963 @item args
4964 This option syntax is:
4965 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4966 For explanation of each item refer to compand filter documentation.
4967 @end table
4968
4969 @anchor{pan}
4970 @section pan
4971
4972 Mix channels with specific gain levels. The filter accepts the output
4973 channel layout followed by a set of channels definitions.
4974
4975 This filter is also designed to efficiently remap the channels of an audio
4976 stream.
4977
4978 The filter accepts parameters of the form:
4979 "@var{l}|@var{outdef}|@var{outdef}|..."
4980
4981 @table @option
4982 @item l
4983 output channel layout or number of channels
4984
4985 @item outdef
4986 output channel specification, of the form:
4987 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4988
4989 @item out_name
4990 output channel to define, either a channel name (FL, FR, etc.) or a channel
4991 number (c0, c1, etc.)
4992
4993 @item gain
4994 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4995
4996 @item in_name
4997 input channel to use, see out_name for details; it is not possible to mix
4998 named and numbered input channels
4999 @end table
5000
5001 If the `=' in a channel specification is replaced by `<', then the gains for
5002 that specification will be renormalized so that the total is 1, thus
5003 avoiding clipping noise.
5004
5005 @subsection Mixing examples
5006
5007 For example, if you want to down-mix from stereo to mono, but with a bigger
5008 factor for the left channel:
5009 @example
5010 pan=1c|c0=0.9*c0+0.1*c1
5011 @end example
5012
5013 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5014 7-channels surround:
5015 @example
5016 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5017 @end example
5018
5019 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5020 that should be preferred (see "-ac" option) unless you have very specific
5021 needs.
5022
5023 @subsection Remapping examples
5024
5025 The channel remapping will be effective if, and only if:
5026
5027 @itemize
5028 @item gain coefficients are zeroes or ones,
5029 @item only one input per channel output,
5030 @end itemize
5031
5032 If all these conditions are satisfied, the filter will notify the user ("Pure
5033 channel mapping detected"), and use an optimized and lossless method to do the
5034 remapping.
5035
5036 For example, if you have a 5.1 source and want a stereo audio stream by
5037 dropping the extra channels:
5038 @example
5039 pan="stereo| c0=FL | c1=FR"
5040 @end example
5041
5042 Given the same source, you can also switch front left and front right channels
5043 and keep the input channel layout:
5044 @example
5045 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5046 @end example
5047
5048 If the input is a stereo audio stream, you can mute the front left channel (and
5049 still keep the stereo channel layout) with:
5050 @example
5051 pan="stereo|c1=c1"
5052 @end example
5053
5054 Still with a stereo audio stream input, you can copy the right channel in both
5055 front left and right:
5056 @example
5057 pan="stereo| c0=FR | c1=FR"
5058 @end example
5059
5060 @section replaygain
5061
5062 ReplayGain scanner filter. This filter takes an audio stream as an input and
5063 outputs it unchanged.
5064 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5065
5066 @section resample
5067
5068 Convert the audio sample format, sample rate and channel layout. It is
5069 not meant to be used directly.
5070
5071 @section rubberband
5072 Apply time-stretching and pitch-shifting with librubberband.
5073
5074 To enable compilation of this filter, you need to configure FFmpeg with
5075 @code{--enable-librubberband}.
5076
5077 The filter accepts the following options:
5078
5079 @table @option
5080 @item tempo
5081 Set tempo scale factor.
5082
5083 @item pitch
5084 Set pitch scale factor.
5085
5086 @item transients
5087 Set transients detector.
5088 Possible values are:
5089 @table @var
5090 @item crisp
5091 @item mixed
5092 @item smooth
5093 @end table
5094
5095 @item detector
5096 Set detector.
5097 Possible values are:
5098 @table @var
5099 @item compound
5100 @item percussive
5101 @item soft
5102 @end table
5103
5104 @item phase
5105 Set phase.
5106 Possible values are:
5107 @table @var
5108 @item laminar
5109 @item independent
5110 @end table
5111
5112 @item window
5113 Set processing window size.
5114 Possible values are:
5115 @table @var
5116 @item standard
5117 @item short
5118 @item long
5119 @end table
5120
5121 @item smoothing
5122 Set smoothing.
5123 Possible values are:
5124 @table @var
5125 @item off
5126 @item on
5127 @end table
5128
5129 @item formant
5130 Enable formant preservation when shift pitching.
5131 Possible values are:
5132 @table @var
5133 @item shifted
5134 @item preserved
5135 @end table
5136
5137 @item pitchq
5138 Set pitch quality.
5139 Possible values are:
5140 @table @var
5141 @item quality
5142 @item speed
5143 @item consistency
5144 @end table
5145
5146 @item channels
5147 Set channels.
5148 Possible values are:
5149 @table @var
5150 @item apart
5151 @item together
5152 @end table
5153 @end table
5154
5155 @subsection Commands
5156
5157 This filter supports the following commands:
5158 @table @option
5159 @item tempo
5160 Change filter tempo scale factor.
5161 Syntax for the command is : "@var{tempo}"
5162
5163 @item pitch
5164 Change filter pitch scale factor.
5165 Syntax for the command is : "@var{pitch}"
5166 @end table
5167
5168 @section sidechaincompress
5169
5170 This filter acts like normal compressor but has the ability to compress
5171 detected signal using second input signal.
5172 It needs two input streams and returns one output stream.
5173 First input stream will be processed depending on second stream signal.
5174 The filtered signal then can be filtered with other filters in later stages of
5175 processing. See @ref{pan} and @ref{amerge} filter.
5176
5177 The filter accepts the following options:
5178
5179 @table @option
5180 @item level_in
5181 Set input gain. Default is 1. Range is between 0.015625 and 64.
5182
5183 @item mode
5184 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5185 Default is @code{downward}.
5186
5187 @item threshold
5188 If a signal of second stream raises above this level it will affect the gain
5189 reduction of first stream.
5190 By default is 0.125. Range is between 0.00097563 and 1.
5191
5192 @item ratio
5193 Set a ratio about which the signal is reduced. 1:2 means that if the level
5194 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5195 Default is 2. Range is between 1 and 20.
5196
5197 @item attack
5198 Amount of milliseconds the signal has to rise above the threshold before gain
5199 reduction starts. Default is 20. Range is between 0.01 and 2000.
5200
5201 @item release
5202 Amount of milliseconds the signal has to fall below the threshold before
5203 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5204
5205 @item makeup
5206 Set the amount by how much signal will be amplified after processing.
5207 Default is 1. Range is from 1 to 64.
5208
5209 @item knee
5210 Curve the sharp knee around the threshold to enter gain reduction more softly.
5211 Default is 2.82843. Range is between 1 and 8.
5212
5213 @item link
5214 Choose if the @code{average} level between all channels of side-chain stream
5215 or the louder(@code{maximum}) channel of side-chain stream affects the
5216 reduction. Default is @code{average}.
5217
5218 @item detection
5219 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5220 of @code{rms}. Default is @code{rms} which is mainly smoother.
5221
5222 @item level_sc
5223 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5224
5225 @item mix
5226 How much to use compressed signal in output. Default is 1.
5227 Range is between 0 and 1.
5228 @end table
5229
5230 @subsection Commands
5231
5232 This filter supports the all above options as @ref{commands}.
5233
5234 @subsection Examples
5235
5236 @itemize
5237 @item
5238 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5239 depending on the signal of 2nd input and later compressed signal to be
5240 merged with 2nd input:
5241 @example
5242 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5243 @end example
5244 @end itemize
5245
5246 @section sidechaingate
5247
5248 A sidechain gate acts like a normal (wideband) gate but has the ability to
5249 filter the detected signal before sending it to the gain reduction stage.
5250 Normally a gate uses the full range signal to detect a level above the
5251 threshold.
5252 For example: If you cut all lower frequencies from your sidechain signal
5253 the gate will decrease the volume of your track only if not enough highs
5254 appear. With this technique you are able to reduce the resonation of a
5255 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5256 guitar.
5257 It needs two input streams and returns one output stream.
5258 First input stream will be processed depending on second stream signal.
5259
5260 The filter accepts the following options:
5261
5262 @table @option
5263 @item level_in
5264 Set input level before filtering.
5265 Default is 1. Allowed range is from 0.015625 to 64.
5266
5267 @item mode
5268 Set the mode of operation. Can be @code{upward} or @code{downward}.
5269 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5270 will be amplified, expanding dynamic range in upward direction.
5271 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5272
5273 @item range
5274 Set the level of gain reduction when the signal is below the threshold.
5275 Default is 0.06125. Allowed range is from 0 to 1.
5276 Setting this to 0 disables reduction and then filter behaves like expander.
5277
5278 @item threshold
5279 If a signal rises above this level the gain reduction is released.
5280 Default is 0.125. Allowed range is from 0 to 1.
5281
5282 @item ratio
5283 Set a ratio about which the signal is reduced.
5284 Default is 2. Allowed range is from 1 to 9000.
5285
5286 @item attack
5287 Amount of milliseconds the signal has to rise above the threshold before gain
5288 reduction stops.
5289 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5290
5291 @item release
5292 Amount of milliseconds the signal has to fall below the threshold before the
5293 reduction is increased again. Default is 250 milliseconds.
5294 Allowed range is from 0.01 to 9000.
5295
5296 @item makeup
5297 Set amount of amplification of signal after processing.
5298 Default is 1. Allowed range is from 1 to 64.
5299
5300 @item knee
5301 Curve the sharp knee around the threshold to enter gain reduction more softly.
5302 Default is 2.828427125. Allowed range is from 1 to 8.
5303
5304 @item detection
5305 Choose if exact signal should be taken for detection or an RMS like one.
5306 Default is rms. Can be peak or rms.
5307
5308 @item link
5309 Choose if the average level between all channels or the louder channel affects
5310 the reduction.
5311 Default is average. Can be average or maximum.
5312
5313 @item level_sc
5314 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5315 @end table
5316
5317 @subsection Commands
5318
5319 This filter supports the all above options as @ref{commands}.
5320
5321 @section silencedetect
5322
5323 Detect silence in an audio stream.
5324
5325 This filter logs a message when it detects that the input audio volume is less
5326 or equal to a noise tolerance value for a duration greater or equal to the
5327 minimum detected noise duration.
5328
5329 The printed times and duration are expressed in seconds. The
5330 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5331 is set on the first frame whose timestamp equals or exceeds the detection
5332 duration and it contains the timestamp of the first frame of the silence.
5333
5334 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5335 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5336 keys are set on the first frame after the silence. If @option{mono} is
5337 enabled, and each channel is evaluated separately, the @code{.X}
5338 suffixed keys are used, and @code{X} corresponds to the channel number.
5339
5340 The filter accepts the following options:
5341
5342 @table @option
5343 @item noise, n
5344 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5345 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5346
5347 @item duration, d
5348 Set silence duration until notification (default is 2 seconds). See
5349 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5350 for the accepted syntax.
5351
5352 @item mono, m
5353 Process each channel separately, instead of combined. By default is disabled.
5354 @end table
5355
5356 @subsection Examples
5357
5358 @itemize
5359 @item
5360 Detect 5 seconds of silence with -50dB noise tolerance:
5361 @example
5362 silencedetect=n=-50dB:d=5
5363 @end example
5364
5365 @item
5366 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5367 tolerance in @file{silence.mp3}:
5368 @example
5369 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5370 @end example
5371 @end itemize
5372
5373 @section silenceremove
5374
5375 Remove silence from the beginning, middle or end of the audio.
5376
5377 The filter accepts the following options:
5378
5379 @table @option
5380 @item start_periods
5381 This value is used to indicate if audio should be trimmed at beginning of
5382 the audio. A value of zero indicates no silence should be trimmed from the
5383 beginning. When specifying a non-zero value, it trims audio up until it
5384 finds non-silence. Normally, when trimming silence from beginning of audio
5385 the @var{start_periods} will be @code{1} but it can be increased to higher
5386 values to trim all audio up to specific count of non-silence periods.
5387 Default value is @code{0}.
5388
5389 @item start_duration
5390 Specify the amount of time that non-silence must be detected before it stops
5391 trimming audio. By increasing the duration, bursts of noises can be treated
5392 as silence and trimmed off. Default value is @code{0}.
5393
5394 @item start_threshold
5395 This indicates what sample value should be treated as silence. For digital
5396 audio, a value of @code{0} may be fine but for audio recorded from analog,
5397 you may wish to increase the value to account for background noise.
5398 Can be specified in dB (in case "dB" is appended to the specified value)
5399 or amplitude ratio. Default value is @code{0}.
5400
5401 @item start_silence
5402 Specify max duration of silence at beginning that will be kept after
5403 trimming. Default is 0, which is equal to trimming all samples detected
5404 as silence.
5405
5406 @item start_mode
5407 Specify mode of detection of silence end in start of multi-channel audio.
5408 Can be @var{any} or @var{all}. Default is @var{any}.
5409 With @var{any}, any sample that is detected as non-silence will cause
5410 stopped trimming of silence.
5411 With @var{all}, only if all channels are detected as non-silence will cause
5412 stopped trimming of silence.
5413
5414 @item stop_periods
5415 Set the count for trimming silence from the end of audio.
5416 To remove silence from the middle of a file, specify a @var{stop_periods}
5417 that is negative. This value is then treated as a positive value and is
5418 used to indicate the effect should restart processing as specified by
5419 @var{start_periods}, making it suitable for removing periods of silence
5420 in the middle of the audio.
5421 Default value is @code{0}.
5422
5423 @item stop_duration
5424 Specify a duration of silence that must exist before audio is not copied any
5425 more. By specifying a higher duration, silence that is wanted can be left in
5426 the audio.
5427 Default value is @code{0}.
5428
5429 @item stop_threshold
5430 This is the same as @option{start_threshold} but for trimming silence from
5431 the end of audio.
5432 Can be specified in dB (in case "dB" is appended to the specified value)
5433 or amplitude ratio. Default value is @code{0}.
5434
5435 @item stop_silence
5436 Specify max duration of silence at end that will be kept after
5437 trimming. Default is 0, which is equal to trimming all samples detected
5438 as silence.
5439
5440 @item stop_mode
5441 Specify mode of detection of silence start in end of multi-channel audio.
5442 Can be @var{any} or @var{all}. Default is @var{any}.
5443 With @var{any}, any sample that is detected as non-silence will cause
5444 stopped trimming of silence.
5445 With @var{all}, only if all channels are detected as non-silence will cause
5446 stopped trimming of silence.
5447
5448 @item detection
5449 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5450 and works better with digital silence which is exactly 0.
5451 Default value is @code{rms}.
5452
5453 @item window
5454 Set duration in number of seconds used to calculate size of window in number
5455 of samples for detecting silence.
5456 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5457 @end table
5458
5459 @subsection Examples
5460
5461 @itemize
5462 @item
5463 The following example shows how this filter can be used to start a recording
5464 that does not contain the delay at the start which usually occurs between
5465 pressing the record button and the start of the performance:
5466 @example
5467 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5468 @end example
5469
5470 @item
5471 Trim all silence encountered from beginning to end where there is more than 1
5472 second of silence in audio:
5473 @example
5474 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5475 @end example
5476
5477 @item
5478 Trim all digital silence samples, using peak detection, from beginning to end
5479 where there is more than 0 samples of digital silence in audio and digital
5480 silence is detected in all channels at same positions in stream:
5481 @example
5482 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5483 @end example
5484 @end itemize
5485
5486 @section sofalizer
5487
5488 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5489 loudspeakers around the user for binaural listening via headphones (audio
5490 formats up to 9 channels supported).
5491 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5492 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5493 Austrian Academy of Sciences.
5494
5495 To enable compilation of this filter you need to configure FFmpeg with
5496 @code{--enable-libmysofa}.
5497
5498 The filter accepts the following options:
5499
5500 @table @option
5501 @item sofa
5502 Set the SOFA file used for rendering.
5503
5504 @item gain
5505 Set gain applied to audio. Value is in dB. Default is 0.
5506
5507 @item rotation
5508 Set rotation of virtual loudspeakers in deg. Default is 0.
5509
5510 @item elevation
5511 Set elevation of virtual speakers in deg. Default is 0.
5512
5513 @item radius
5514 Set distance in meters between loudspeakers and the listener with near-field
5515 HRTFs. Default is 1.
5516
5517 @item type
5518 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5519 processing audio in time domain which is slow.
5520 @var{freq} is processing audio in frequency domain which is fast.
5521 Default is @var{freq}.
5522
5523 @item speakers
5524 Set custom positions of virtual loudspeakers. Syntax for this option is:
5525 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5526 Each virtual loudspeaker is described with short channel name following with
5527 azimuth and elevation in degrees.
5528 Each virtual loudspeaker description is separated by '|'.
5529 For example to override front left and front right channel positions use:
5530 'speakers=FL 45 15|FR 345 15'.
5531 Descriptions with unrecognised channel names are ignored.
5532
5533 @item lfegain
5534 Set custom gain for LFE channels. Value is in dB. Default is 0.
5535
5536 @item framesize
5537 Set custom frame size in number of samples. Default is 1024.
5538 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5539 is set to @var{freq}.
5540
5541 @item normalize
5542 Should all IRs be normalized upon importing SOFA file.
5543 By default is enabled.
5544
5545 @item interpolate
5546 Should nearest IRs be interpolated with neighbor IRs if exact position
5547 does not match. By default is disabled.
5548
5549 @item minphase
5550 Minphase all IRs upon loading of SOFA file. By default is disabled.
5551
5552 @item anglestep
5553 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5554
5555 @item radstep
5556 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5557 @end table
5558
5559 @subsection Examples
5560
5561 @itemize
5562 @item
5563 Using ClubFritz6 sofa file:
5564 @example
5565 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5566 @end example
5567
5568 @item
5569 Using ClubFritz12 sofa file and bigger radius with small rotation:
5570 @example
5571 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5572 @end example
5573
5574 @item
5575 Similar as above but with custom speaker positions for front left, front right, back left and back right
5576 and also with custom gain:
5577 @example
5578 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5579 @end example
5580 @end itemize
5581
5582 @section speechnorm
5583 Speech Normalizer.
5584
5585 This filter expands or compresses each half-cycle of audio samples
5586 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5587 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5588
5589 The filter accepts the following options:
5590
5591 @table @option
5592 @item peak, p
5593 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5594 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5595
5596 @item expansion, e
5597 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5598 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5599 would be such that local peak value reaches target peak value but never to surpass it and that
5600 ratio between new and previous peak value does not surpass this option value.
5601
5602 @item compression, c
5603 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5604 This option controls maximum local half-cycle of samples compression. This option is used
5605 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5606 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5607 that peak's half-cycle will be compressed by current compression factor.
5608
5609 @item threshold, t
5610 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5611 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5612 Any half-cycle samples with their local peak value below or same as this option value will be
5613 compressed by current compression factor, otherwise, if greater than threshold value they will be
5614 expanded with expansion factor so that it could reach peak target value but never surpass it.
5615
5616 @item raise, r
5617 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5618 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5619 each new half-cycle until it reaches @option{expansion} value.
5620 Setting this options too high may lead to distortions.
5621
5622 @item fall, f
5623 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5624 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5625 each new half-cycle until it reaches @option{compression} value.
5626
5627 @item channels, h
5628 Specify which channels to filter, by default all available channels are filtered.
5629
5630 @item invert, i
5631 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5632 option. When enabled any half-cycle of samples with their local peak value below or same as
5633 @option{threshold} option will be expanded otherwise it will be compressed.
5634
5635 @item link, l
5636 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5637 When disabled each filtered channel gain calculation is independent, otherwise when this option
5638 is enabled the minimum of all possible gains for each filtered channel is used.
5639 @end table
5640
5641 @subsection Commands
5642
5643 This filter supports the all above options as @ref{commands}.
5644
5645 @section stereotools
5646
5647 This filter has some handy utilities to manage stereo signals, for converting
5648 M/S stereo recordings to L/R signal while having control over the parameters
5649 or spreading the stereo image of master track.
5650
5651 The filter accepts the following options:
5652
5653 @table @option
5654 @item level_in
5655 Set input level before filtering for both channels. Defaults is 1.
5656 Allowed range is from 0.015625 to 64.
5657
5658 @item level_out
5659 Set output level after filtering for both channels. Defaults is 1.
5660 Allowed range is from 0.015625 to 64.
5661
5662 @item balance_in
5663 Set input balance between both channels. Default is 0.
5664 Allowed range is from -1 to 1.
5665
5666 @item balance_out
5667 Set output balance between both channels. Default is 0.
5668 Allowed range is from -1 to 1.
5669
5670 @item softclip
5671 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5672 clipping. Disabled by default.
5673
5674 @item mutel
5675 Mute the left channel. Disabled by default.
5676
5677 @item muter
5678 Mute the right channel. Disabled by default.
5679
5680 @item phasel
5681 Change the phase of the left channel. Disabled by default.
5682
5683 @item phaser
5684 Change the phase of the right channel. Disabled by default.
5685
5686 @item mode
5687 Set stereo mode. Available values are:
5688
5689 @table @samp
5690 @item lr>lr
5691 Left/Right to Left/Right, this is default.
5692
5693 @item lr>ms
5694 Left/Right to Mid/Side.
5695
5696 @item ms>lr
5697 Mid/Side to Left/Right.
5698
5699 @item lr>ll
5700 Left/Right to Left/Left.
5701
5702 @item lr>rr
5703 Left/Right to Right/Right.
5704
5705 @item lr>l+r
5706 Left/Right to Left + Right.
5707
5708 @item lr>rl
5709 Left/Right to Right/Left.
5710
5711 @item ms>ll
5712 Mid/Side to Left/Left.
5713
5714 @item ms>rr
5715 Mid/Side to Right/Right.
5716
5717 @item ms>rl
5718 Mid/Side to Right/Left.
5719
5720 @item lr>l-r
5721 Left/Right to Left - Right.
5722 @end table
5723
5724 @item slev
5725 Set level of side signal. Default is 1.
5726 Allowed range is from 0.015625 to 64.
5727
5728 @item sbal
5729 Set balance of side signal. Default is 0.
5730 Allowed range is from -1 to 1.
5731
5732 @item mlev
5733 Set level of the middle signal. Default is 1.
5734 Allowed range is from 0.015625 to 64.
5735
5736 @item mpan
5737 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5738
5739 @item base
5740 Set stereo base between mono and inversed channels. Default is 0.
5741 Allowed range is from -1 to 1.
5742
5743 @item delay
5744 Set delay in milliseconds how much to delay left from right channel and
5745 vice versa. Default is 0. Allowed range is from -20 to 20.
5746
5747 @item sclevel
5748 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5749
5750 @item phase
5751 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5752
5753 @item bmode_in, bmode_out
5754 Set balance mode for balance_in/balance_out option.
5755
5756 Can be one of the following:
5757
5758 @table @samp
5759 @item balance
5760 Classic balance mode. Attenuate one channel at time.
5761 Gain is raised up to 1.
5762
5763 @item amplitude
5764 Similar as classic mode above but gain is raised up to 2.
5765
5766 @item power
5767 Equal power distribution, from -6dB to +6dB range.
5768 @end table
5769 @end table
5770
5771 @subsection Commands
5772
5773 This filter supports the all above options as @ref{commands}.
5774
5775 @subsection Examples
5776
5777 @itemize
5778 @item
5779 Apply karaoke like effect:
5780 @example
5781 stereotools=mlev=0.015625
5782 @end example
5783
5784 @item
5785 Convert M/S signal to L/R:
5786 @example
5787 "stereotools=mode=ms>lr"
5788 @end example
5789 @end itemize
5790
5791 @section stereowiden
5792
5793 This filter enhance the stereo effect by suppressing signal common to both
5794 channels and by delaying the signal of left into right and vice versa,
5795 thereby widening the stereo effect.
5796
5797 The filter accepts the following options:
5798
5799 @table @option
5800 @item delay
5801 Time in milliseconds of the delay of left signal into right and vice versa.
5802 Default is 20 milliseconds.
5803
5804 @item feedback
5805 Amount of gain in delayed signal into right and vice versa. Gives a delay
5806 effect of left signal in right output and vice versa which gives widening
5807 effect. Default is 0.3.
5808
5809 @item crossfeed
5810 Cross feed of left into right with inverted phase. This helps in suppressing
5811 the mono. If the value is 1 it will cancel all the signal common to both
5812 channels. Default is 0.3.
5813
5814 @item drymix
5815 Set level of input signal of original channel. Default is 0.8.
5816 @end table
5817
5818 @subsection Commands
5819
5820 This filter supports the all above options except @code{delay} as @ref{commands}.
5821
5822 @section superequalizer
5823 Apply 18 band equalizer.
5824
5825 The filter accepts the following options:
5826 @table @option
5827 @item 1b
5828 Set 65Hz band gain.
5829 @item 2b
5830 Set 92Hz band gain.
5831 @item 3b
5832 Set 131Hz band gain.
5833 @item 4b
5834 Set 185Hz band gain.
5835 @item 5b
5836 Set 262Hz band gain.
5837 @item 6b
5838 Set 370Hz band gain.
5839 @item 7b
5840 Set 523Hz band gain.
5841 @item 8b
5842 Set 740Hz band gain.
5843 @item 9b
5844 Set 1047Hz band gain.
5845 @item 10b
5846 Set 1480Hz band gain.
5847 @item 11b
5848 Set 2093Hz band gain.
5849 @item 12b
5850 Set 2960Hz band gain.
5851 @item 13b
5852 Set 4186Hz band gain.
5853 @item 14b
5854 Set 5920Hz band gain.
5855 @item 15b
5856 Set 8372Hz band gain.
5857 @item 16b
5858 Set 11840Hz band gain.
5859 @item 17b
5860 Set 16744Hz band gain.
5861 @item 18b
5862 Set 20000Hz band gain.
5863 @end table
5864
5865 @section surround
5866 Apply audio surround upmix filter.
5867
5868 This filter allows to produce multichannel output from audio stream.
5869
5870 The filter accepts the following options:
5871
5872 @table @option
5873 @item chl_out
5874 Set output channel layout. By default, this is @var{5.1}.
5875
5876 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5877 for the required syntax.
5878
5879 @item chl_in
5880 Set input channel layout. By default, this is @var{stereo}.
5881
5882 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5883 for the required syntax.
5884
5885 @item level_in
5886 Set input volume level. By default, this is @var{1}.
5887
5888 @item level_out
5889 Set output volume level. By default, this is @var{1}.
5890
5891 @item lfe
5892 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5893
5894 @item lfe_low
5895 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5896
5897 @item lfe_high
5898 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5899
5900 @item lfe_mode
5901 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5902 In @var{add} mode, LFE channel is created from input audio and added to output.
5903 In @var{sub} mode, LFE channel is created from input audio and added to output but
5904 also all non-LFE output channels are subtracted with output LFE channel.
5905
5906 @item angle
5907 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5908 Default is @var{90}.
5909
5910 @item fc_in
5911 Set front center input volume. By default, this is @var{1}.
5912
5913 @item fc_out
5914 Set front center output volume. By default, this is @var{1}.
5915
5916 @item fl_in
5917 Set front left input volume. By default, this is @var{1}.
5918
5919 @item fl_out
5920 Set front left output volume. By default, this is @var{1}.
5921
5922 @item fr_in
5923 Set front right input volume. By default, this is @var{1}.
5924
5925 @item fr_out
5926 Set front right output volume. By default, this is @var{1}.
5927
5928 @item sl_in
5929 Set side left input volume. By default, this is @var{1}.
5930
5931 @item sl_out
5932 Set side left output volume. By default, this is @var{1}.
5933
5934 @item sr_in
5935 Set side right input volume. By default, this is @var{1}.
5936
5937 @item sr_out
5938 Set side right output volume. By default, this is @var{1}.
5939
5940 @item bl_in
5941 Set back left input volume. By default, this is @var{1}.
5942
5943 @item bl_out
5944 Set back left output volume. By default, this is @var{1}.
5945
5946 @item br_in
5947 Set back right input volume. By default, this is @var{1}.
5948
5949 @item br_out
5950 Set back right output volume. By default, this is @var{1}.
5951
5952 @item bc_in
5953 Set back center input volume. By default, this is @var{1}.
5954
5955 @item bc_out
5956 Set back center output volume. By default, this is @var{1}.
5957
5958 @item lfe_in
5959 Set LFE input volume. By default, this is @var{1}.
5960
5961 @item lfe_out
5962 Set LFE output volume. By default, this is @var{1}.
5963
5964 @item allx
5965 Set spread usage of stereo image across X axis for all channels.
5966
5967 @item ally
5968 Set spread usage of stereo image across Y axis for all channels.
5969
5970 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5971 Set spread usage of stereo image across X axis for each channel.
5972
5973 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5974 Set spread usage of stereo image across Y axis for each channel.
5975
5976 @item win_size
5977 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5978
5979 @item win_func
5980 Set window function.
5981
5982 It accepts the following values:
5983 @table @samp
5984 @item rect
5985 @item bartlett
5986 @item hann, hanning
5987 @item hamming
5988 @item blackman
5989 @item welch
5990 @item flattop
5991 @item bharris
5992 @item bnuttall
5993 @item bhann
5994 @item sine
5995 @item nuttall
5996 @item lanczos
5997 @item gauss
5998 @item tukey
5999 @item dolph
6000 @item cauchy
6001 @item parzen
6002 @item poisson
6003 @item bohman
6004 @end table
6005 Default is @code{hann}.
6006
6007 @item overlap
6008 Set window overlap. If set to 1, the recommended overlap for selected
6009 window function will be picked. Default is @code{0.5}.
6010 @end table
6011
6012 @section treble, highshelf
6013
6014 Boost or cut treble (upper) frequencies of the audio using a two-pole
6015 shelving filter with a response similar to that of a standard
6016 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6017
6018 The filter accepts the following options:
6019
6020 @table @option
6021 @item gain, g
6022 Give the gain at whichever is the lower of ~22 kHz and the
6023 Nyquist frequency. Its useful range is about -20 (for a large cut)
6024 to +20 (for a large boost). Beware of clipping when using a positive gain.
6025
6026 @item frequency, f
6027 Set the filter's central frequency and so can be used
6028 to extend or reduce the frequency range to be boosted or cut.
6029 The default value is @code{3000} Hz.
6030
6031 @item width_type, t
6032 Set method to specify band-width of filter.
6033 @table @option
6034 @item h
6035 Hz
6036 @item q
6037 Q-Factor
6038 @item o
6039 octave
6040 @item s
6041 slope
6042 @item k
6043 kHz
6044 @end table
6045
6046 @item width, w
6047 Determine how steep is the filter's shelf transition.
6048
6049 @item mix, m
6050 How much to use filtered signal in output. Default is 1.
6051 Range is between 0 and 1.
6052
6053 @item channels, c
6054 Specify which channels to filter, by default all available are filtered.
6055
6056 @item normalize, n
6057 Normalize biquad coefficients, by default is disabled.
6058 Enabling it will normalize magnitude response at DC to 0dB.
6059
6060 @item transform, a
6061 Set transform type of IIR filter.
6062 @table @option
6063 @item di
6064 @item dii
6065 @item tdii
6066 @item latt
6067 @end table
6068
6069 @item precision, r
6070 Set precison of filtering.
6071 @table @option
6072 @item auto
6073 Pick automatic sample format depending on surround filters.
6074 @item s16
6075 Always use signed 16-bit.
6076 @item s32
6077 Always use signed 32-bit.
6078 @item f32
6079 Always use float 32-bit.
6080 @item f64
6081 Always use float 64-bit.
6082 @end table
6083 @end table
6084
6085 @subsection Commands
6086
6087 This filter supports the following commands:
6088 @table @option
6089 @item frequency, f
6090 Change treble frequency.
6091 Syntax for the command is : "@var{frequency}"
6092
6093 @item width_type, t
6094 Change treble width_type.
6095 Syntax for the command is : "@var{width_type}"
6096
6097 @item width, w
6098 Change treble width.
6099 Syntax for the command is : "@var{width}"
6100
6101 @item gain, g
6102 Change treble gain.
6103 Syntax for the command is : "@var{gain}"
6104
6105 @item mix, m
6106 Change treble mix.
6107 Syntax for the command is : "@var{mix}"
6108 @end table
6109
6110 @section tremolo
6111
6112 Sinusoidal amplitude modulation.
6113
6114 The filter accepts the following options:
6115
6116 @table @option
6117 @item f
6118 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6119 (20 Hz or lower) will result in a tremolo effect.
6120 This filter may also be used as a ring modulator by specifying
6121 a modulation frequency higher than 20 Hz.
6122 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6123
6124 @item d
6125 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6126 Default value is 0.5.
6127 @end table
6128
6129 @section vibrato
6130
6131 Sinusoidal phase modulation.
6132
6133 The filter accepts the following options:
6134
6135 @table @option
6136 @item f
6137 Modulation frequency in Hertz.
6138 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6139
6140 @item d
6141 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6142 Default value is 0.5.
6143 @end table
6144
6145 @section volume
6146
6147 Adjust the input audio volume.
6148
6149 It accepts the following parameters:
6150 @table @option
6151
6152 @item volume
6153 Set audio volume expression.
6154
6155 Output values are clipped to the maximum value.
6156
6157 The output audio volume is given by the relation:
6158 @example
6159 @var{output_volume} = @var{volume} * @var{input_volume}
6160 @end example
6161
6162 The default value for @var{volume} is "1.0".
6163
6164 @item precision
6165 This parameter represents the mathematical precision.
6166
6167 It determines which input sample formats will be allowed, which affects the
6168 precision of the volume scaling.
6169
6170 @table @option
6171 @item fixed
6172 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6173 @item float
6174 32-bit floating-point; this limits input sample format to FLT. (default)
6175 @item double
6176 64-bit floating-point; this limits input sample format to DBL.
6177 @end table
6178
6179 @item replaygain
6180 Choose the behaviour on encountering ReplayGain side data in input frames.
6181
6182 @table @option
6183 @item drop
6184 Remove ReplayGain side data, ignoring its contents (the default).
6185
6186 @item ignore
6187 Ignore ReplayGain side data, but leave it in the frame.
6188
6189 @item track
6190 Prefer the track gain, if present.
6191
6192 @item album
6193 Prefer the album gain, if present.
6194 @end table
6195
6196 @item replaygain_preamp
6197 Pre-amplification gain in dB to apply to the selected replaygain gain.
6198
6199 Default value for @var{replaygain_preamp} is 0.0.
6200
6201 @item replaygain_noclip
6202 Prevent clipping by limiting the gain applied.
6203
6204 Default value for @var{replaygain_noclip} is 1.
6205
6206 @item eval
6207 Set when the volume expression is evaluated.
6208
6209 It accepts the following values:
6210 @table @samp
6211 @item once
6212 only evaluate expression once during the filter initialization, or
6213 when the @samp{volume} command is sent
6214
6215 @item frame
6216 evaluate expression for each incoming frame
6217 @end table
6218
6219 Default value is @samp{once}.
6220 @end table
6221
6222 The volume expression can contain the following parameters.
6223
6224 @table @option
6225 @item n
6226 frame number (starting at zero)
6227 @item nb_channels
6228 number of channels
6229 @item nb_consumed_samples
6230 number of samples consumed by the filter
6231 @item nb_samples
6232 number of samples in the current frame
6233 @item pos
6234 original frame position in the file
6235 @item pts
6236 frame PTS
6237 @item sample_rate
6238 sample rate
6239 @item startpts
6240 PTS at start of stream
6241 @item startt
6242 time at start of stream
6243 @item t
6244 frame time
6245 @item tb
6246 timestamp timebase
6247 @item volume
6248 last set volume value
6249 @end table
6250
6251 Note that when @option{eval} is set to @samp{once} only the
6252 @var{sample_rate} and @var{tb} variables are available, all other
6253 variables will evaluate to NAN.
6254
6255 @subsection Commands
6256
6257 This filter supports the following commands:
6258 @table @option
6259 @item volume
6260 Modify the volume expression.
6261 The command accepts the same syntax of the corresponding option.
6262
6263 If the specified expression is not valid, it is kept at its current
6264 value.
6265 @end table
6266
6267 @subsection Examples
6268
6269 @itemize
6270 @item
6271 Halve the input audio volume:
6272 @example
6273 volume=volume=0.5
6274 volume=volume=1/2
6275 volume=volume=-6.0206dB
6276 @end example
6277
6278 In all the above example the named key for @option{volume} can be
6279 omitted, for example like in:
6280 @example
6281 volume=0.5
6282 @end example
6283
6284 @item
6285 Increase input audio power by 6 decibels using fixed-point precision:
6286 @example
6287 volume=volume=6dB:precision=fixed
6288 @end example
6289
6290 @item
6291 Fade volume after time 10 with an annihilation period of 5 seconds:
6292 @example
6293 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6294 @end example
6295 @end itemize
6296
6297 @section volumedetect
6298
6299 Detect the volume of the input video.
6300
6301 The filter has no parameters. The input is not modified. Statistics about
6302 the volume will be printed in the log when the input stream end is reached.
6303
6304 In particular it will show the mean volume (root mean square), maximum
6305 volume (on a per-sample basis), and the beginning of a histogram of the
6306 registered volume values (from the maximum value to a cumulated 1/1000 of
6307 the samples).
6308
6309 All volumes are in decibels relative to the maximum PCM value.
6310
6311 @subsection Examples
6312
6313 Here is an excerpt of the output:
6314 @example
6315 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6316 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6317 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6318 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6319 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6320 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6321 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6322 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6323 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6324 @end example
6325
6326 It means that:
6327 @itemize
6328 @item
6329 The mean square energy is approximately -27 dB, or 10^-2.7.
6330 @item
6331 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6332 @item
6333 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6334 @end itemize
6335
6336 In other words, raising the volume by +4 dB does not cause any clipping,
6337 raising it by +5 dB causes clipping for 6 samples, etc.
6338
6339 @c man end AUDIO FILTERS
6340
6341 @chapter Audio Sources
6342 @c man begin AUDIO SOURCES
6343
6344 Below is a description of the currently available audio sources.
6345
6346 @section abuffer
6347
6348 Buffer audio frames, and make them available to the filter chain.
6349
6350 This source is mainly intended for a programmatic use, in particular
6351 through the interface defined in @file{libavfilter/buffersrc.h}.
6352
6353 It accepts the following parameters:
6354 @table @option
6355
6356 @item time_base
6357 The timebase which will be used for timestamps of submitted frames. It must be
6358 either a floating-point number or in @var{numerator}/@var{denominator} form.
6359
6360 @item sample_rate
6361 The sample rate of the incoming audio buffers.
6362
6363 @item sample_fmt
6364 The sample format of the incoming audio buffers.
6365 Either a sample format name or its corresponding integer representation from
6366 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6367
6368 @item channel_layout
6369 The channel layout of the incoming audio buffers.
6370 Either a channel layout name from channel_layout_map in
6371 @file{libavutil/channel_layout.c} or its corresponding integer representation
6372 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6373
6374 @item channels
6375 The number of channels of the incoming audio buffers.
6376 If both @var{channels} and @var{channel_layout} are specified, then they
6377 must be consistent.
6378
6379 @end table
6380
6381 @subsection Examples
6382
6383 @example
6384 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6385 @end example
6386
6387 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6388 Since the sample format with name "s16p" corresponds to the number
6389 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6390 equivalent to:
6391 @example
6392 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6393 @end example
6394
6395 @section aevalsrc
6396
6397 Generate an audio signal specified by an expression.
6398
6399 This source accepts in input one or more expressions (one for each
6400 channel), which are evaluated and used to generate a corresponding
6401 audio signal.
6402
6403 This source accepts the following options:
6404
6405 @table @option
6406 @item exprs
6407 Set the '|'-separated expressions list for each separate channel. In case the
6408 @option{channel_layout} option is not specified, the selected channel layout
6409 depends on the number of provided expressions. Otherwise the last
6410 specified expression is applied to the remaining output channels.
6411
6412 @item channel_layout, c
6413 Set the channel layout. The number of channels in the specified layout
6414 must be equal to the number of specified expressions.
6415
6416 @item duration, d
6417 Set the minimum duration of the sourced audio. See
6418 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6419 for the accepted syntax.
6420 Note that the resulting duration may be greater than the specified
6421 duration, as the generated audio is always cut at the end of a
6422 complete frame.
6423
6424 If not specified, or the expressed duration is negative, the audio is
6425 supposed to be generated forever.
6426
6427 @item nb_samples, n
6428 Set the number of samples per channel per each output frame,
6429 default to 1024.
6430
6431 @item sample_rate, s
6432 Specify the sample rate, default to 44100.
6433 @end table
6434
6435 Each expression in @var{exprs} can contain the following constants:
6436
6437 @table @option
6438 @item n
6439 number of the evaluated sample, starting from 0
6440
6441 @item t
6442 time of the evaluated sample expressed in seconds, starting from 0
6443
6444 @item s
6445 sample rate
6446
6447 @end table
6448
6449 @subsection Examples
6450
6451 @itemize
6452 @item
6453 Generate silence:
6454 @example
6455 aevalsrc=0
6456 @end example
6457
6458 @item
6459 Generate a sin signal with frequency of 440 Hz, set sample rate to
6460 8000 Hz:
6461 @example
6462 aevalsrc="sin(440*2*PI*t):s=8000"
6463 @end example
6464
6465 @item
6466 Generate a two channels signal, specify the channel layout (Front
6467 Center + Back Center) explicitly:
6468 @example
6469 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6470 @end example
6471
6472 @item
6473 Generate white noise:
6474 @example
6475 aevalsrc="-2+random(0)"
6476 @end example
6477
6478 @item
6479 Generate an amplitude modulated signal:
6480 @example
6481 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6482 @end example
6483
6484 @item
6485 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6486 @example
6487 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6488 @end example
6489
6490 @end itemize
6491
6492 @section afirsrc
6493
6494 Generate a FIR coefficients using frequency sampling method.
6495
6496 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6497
6498 The filter accepts the following options:
6499
6500 @table @option
6501 @item taps, t
6502 Set number of filter coefficents in output audio stream.
6503 Default value is 1025.
6504
6505 @item frequency, f
6506 Set frequency points from where magnitude and phase are set.
6507 This must be in non decreasing order, and first element must be 0, while last element
6508 must be 1. Elements are separated by white spaces.
6509
6510 @item magnitude, m
6511 Set magnitude value for every frequency point set by @option{frequency}.
6512 Number of values must be same as number of frequency points.
6513 Values are separated by white spaces.
6514
6515 @item phase, p
6516 Set phase value for every frequency point set by @option{frequency}.
6517 Number of values must be same as number of frequency points.
6518 Values are separated by white spaces.
6519
6520 @item sample_rate, r
6521 Set sample rate, default is 44100.
6522
6523 @item nb_samples, n
6524 Set number of samples per each frame. Default is 1024.
6525
6526 @item win_func, w
6527 Set window function. Default is blackman.
6528 @end table
6529
6530 @section anullsrc
6531
6532 The null audio source, return unprocessed audio frames. It is mainly useful
6533 as a template and to be employed in analysis / debugging tools, or as
6534 the source for filters which ignore the input data (for example the sox
6535 synth filter).
6536
6537 This source accepts the following options:
6538
6539 @table @option
6540
6541 @item channel_layout, cl
6542
6543 Specifies the channel layout, and can be either an integer or a string
6544 representing a channel layout. The default value of @var{channel_layout}
6545 is "stereo".
6546
6547 Check the channel_layout_map definition in
6548 @file{libavutil/channel_layout.c} for the mapping between strings and
6549 channel layout values.
6550
6551 @item sample_rate, r
6552 Specifies the sample rate, and defaults to 44100.
6553
6554 @item nb_samples, n
6555 Set the number of samples per requested frames.
6556
6557 @item duration, d
6558 Set the duration of the sourced audio. See
6559 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6560 for the accepted syntax.
6561
6562 If not specified, or the expressed duration is negative, the audio is
6563 supposed to be generated forever.
6564 @end table
6565
6566 @subsection Examples
6567
6568 @itemize
6569 @item
6570 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6571 @example
6572 anullsrc=r=48000:cl=4
6573 @end example
6574
6575 @item
6576 Do the same operation with a more obvious syntax:
6577 @example
6578 anullsrc=r=48000:cl=mono
6579 @end example
6580 @end itemize
6581
6582 All the parameters need to be explicitly defined.
6583
6584 @section flite
6585
6586 Synthesize a voice utterance using the libflite library.
6587
6588 To enable compilation of this filter you need to configure FFmpeg with
6589 @code{--enable-libflite}.
6590
6591 Note that versions of the flite library prior to 2.0 are not thread-safe.
6592
6593 The filter accepts the following options:
6594
6595 @table @option
6596
6597 @item list_voices
6598 If set to 1, list the names of the available voices and exit
6599 immediately. Default value is 0.
6600
6601 @item nb_samples, n
6602 Set the maximum number of samples per frame. Default value is 512.
6603
6604 @item textfile
6605 Set the filename containing the text to speak.
6606
6607 @item text
6608 Set the text to speak.
6609
6610 @item voice, v
6611 Set the voice to use for the speech synthesis. Default value is
6612 @code{kal}. See also the @var{list_voices} option.
6613 @end table
6614
6615 @subsection Examples
6616
6617 @itemize
6618 @item
6619 Read from file @file{speech.txt}, and synthesize the text using the
6620 standard flite voice:
6621 @example
6622 flite=textfile=speech.txt
6623 @end example
6624
6625 @item
6626 Read the specified text selecting the @code{slt} voice:
6627 @example
6628 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6629 @end example
6630
6631 @item
6632 Input text to ffmpeg:
6633 @example
6634 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6635 @end example
6636
6637 @item
6638 Make @file{ffplay} speak the specified text, using @code{flite} and
6639 the @code{lavfi} device:
6640 @example
6641 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6642 @end example
6643 @end itemize
6644
6645 For more information about libflite, check:
6646 @url{http://www.festvox.org/flite/}
6647
6648 @section anoisesrc
6649
6650 Generate a noise audio signal.
6651
6652 The filter accepts the following options:
6653
6654 @table @option
6655 @item sample_rate, r
6656 Specify the sample rate. Default value is 48000 Hz.
6657
6658 @item amplitude, a
6659 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6660 is 1.0.
6661
6662 @item duration, d
6663 Specify the duration of the generated audio stream. Not specifying this option
6664 results in noise with an infinite length.
6665
6666 @item color, colour, c
6667 Specify the color of noise. Available noise colors are white, pink, brown,
6668 blue, violet and velvet. Default color is white.
6669
6670 @item seed, s
6671 Specify a value used to seed the PRNG.
6672
6673 @item nb_samples, n
6674 Set the number of samples per each output frame, default is 1024.
6675 @end table
6676
6677 @subsection Examples
6678
6679 @itemize
6680
6681 @item
6682 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6683 @example
6684 anoisesrc=d=60:c=pink:r=44100:a=0.5
6685 @end example
6686 @end itemize
6687
6688 @section hilbert
6689
6690 Generate odd-tap Hilbert transform FIR coefficients.
6691
6692 The resulting stream can be used with @ref{afir} filter for phase-shifting
6693 the signal by 90 degrees.
6694
6695 This is used in many matrix coding schemes and for analytic signal generation.
6696 The process is often written as a multiplication by i (or j), the imaginary unit.
6697
6698 The filter accepts the following options:
6699
6700 @table @option
6701
6702 @item sample_rate, s
6703 Set sample rate, default is 44100.
6704
6705 @item taps, t
6706 Set length of FIR filter, default is 22051.
6707
6708 @item nb_samples, n
6709 Set number of samples per each frame.
6710
6711 @item win_func, w
6712 Set window function to be used when generating FIR coefficients.
6713 @end table
6714
6715 @section sinc
6716
6717 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6718
6719 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6720
6721 The filter accepts the following options:
6722
6723 @table @option
6724 @item sample_rate, r
6725 Set sample rate, default is 44100.
6726
6727 @item nb_samples, n
6728 Set number of samples per each frame. Default is 1024.
6729
6730 @item hp
6731 Set high-pass frequency. Default is 0.
6732
6733 @item lp
6734 Set low-pass frequency. Default is 0.
6735 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6736 is higher than 0 then filter will create band-pass filter coefficients,
6737 otherwise band-reject filter coefficients.
6738
6739 @item phase
6740 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6741
6742 @item beta
6743 Set Kaiser window beta.
6744
6745 @item att
6746 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6747
6748 @item round
6749 Enable rounding, by default is disabled.
6750
6751 @item hptaps
6752 Set number of taps for high-pass filter.
6753
6754 @item lptaps
6755 Set number of taps for low-pass filter.
6756 @end table
6757
6758 @section sine
6759
6760 Generate an audio signal made of a sine wave with amplitude 1/8.
6761
6762 The audio signal is bit-exact.
6763
6764 The filter accepts the following options:
6765
6766 @table @option
6767
6768 @item frequency, f
6769 Set the carrier frequency. Default is 440 Hz.
6770
6771 @item beep_factor, b
6772 Enable a periodic beep every second with frequency @var{beep_factor} times
6773 the carrier frequency. Default is 0, meaning the beep is disabled.
6774
6775 @item sample_rate, r
6776 Specify the sample rate, default is 44100.
6777
6778 @item duration, d
6779 Specify the duration of the generated audio stream.
6780
6781 @item samples_per_frame
6782 Set the number of samples per output frame.
6783
6784 The expression can contain the following constants:
6785
6786 @table @option
6787 @item n
6788 The (sequential) number of the output audio frame, starting from 0.
6789
6790 @item pts
6791 The PTS (Presentation TimeStamp) of the output audio frame,
6792 expressed in @var{TB} units.
6793
6794 @item t
6795 The PTS of the output audio frame, expressed in seconds.
6796
6797 @item TB
6798 The timebase of the output audio frames.
6799 @end table
6800
6801 Default is @code{1024}.
6802 @end table
6803
6804 @subsection Examples
6805
6806 @itemize
6807
6808 @item
6809 Generate a simple 440 Hz sine wave:
6810 @example
6811 sine
6812 @end example
6813
6814 @item
6815 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6816 @example
6817 sine=220:4:d=5
6818 sine=f=220:b=4:d=5
6819 sine=frequency=220:beep_factor=4:duration=5
6820 @end example
6821
6822 @item
6823 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6824 pattern:
6825 @example
6826 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6827 @end example
6828 @end itemize
6829
6830 @c man end AUDIO SOURCES
6831
6832 @chapter Audio Sinks
6833 @c man begin AUDIO SINKS
6834
6835 Below is a description of the currently available audio sinks.
6836
6837 @section abuffersink
6838
6839 Buffer audio frames, and make them available to the end of filter chain.
6840
6841 This sink is mainly intended for programmatic use, in particular
6842 through the interface defined in @file{libavfilter/buffersink.h}
6843 or the options system.
6844
6845 It accepts a pointer to an AVABufferSinkContext structure, which
6846 defines the incoming buffers' formats, to be passed as the opaque
6847 parameter to @code{avfilter_init_filter} for initialization.
6848 @section anullsink
6849
6850 Null audio sink; do absolutely nothing with the input audio. It is
6851 mainly useful as a template and for use in analysis / debugging
6852 tools.
6853
6854 @c man end AUDIO SINKS
6855
6856 @chapter Video Filters
6857 @c man begin VIDEO FILTERS
6858
6859 When you configure your FFmpeg build, you can disable any of the
6860 existing filters using @code{--disable-filters}.
6861 The configure output will show the video filters included in your
6862 build.
6863
6864 Below is a description of the currently available video filters.
6865
6866 @section addroi
6867
6868 Mark a region of interest in a video frame.
6869
6870 The frame data is passed through unchanged, but metadata is attached
6871 to the frame indicating regions of interest which can affect the
6872 behaviour of later encoding.  Multiple regions can be marked by
6873 applying the filter multiple times.
6874
6875 @table @option
6876 @item x
6877 Region distance in pixels from the left edge of the frame.
6878 @item y
6879 Region distance in pixels from the top edge of the frame.
6880 @item w
6881 Region width in pixels.
6882 @item h
6883 Region height in pixels.
6884
6885 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6886 and may contain the following variables:
6887 @table @option
6888 @item iw
6889 Width of the input frame.
6890 @item ih
6891 Height of the input frame.
6892 @end table
6893
6894 @item qoffset
6895 Quantisation offset to apply within the region.
6896
6897 This must be a real value in the range -1 to +1.  A value of zero
6898 indicates no quality change.  A negative value asks for better quality
6899 (less quantisation), while a positive value asks for worse quality
6900 (greater quantisation).
6901
6902 The range is calibrated so that the extreme values indicate the
6903 largest possible offset - if the rest of the frame is encoded with the
6904 worst possible quality, an offset of -1 indicates that this region
6905 should be encoded with the best possible quality anyway.  Intermediate
6906 values are then interpolated in some codec-dependent way.
6907
6908 For example, in 10-bit H.264 the quantisation parameter varies between
6909 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6910 this region should be encoded with a QP around one-tenth of the full
6911 range better than the rest of the frame.  So, if most of the frame
6912 were to be encoded with a QP of around 30, this region would get a QP
6913 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6914 An extreme value of -1 would indicate that this region should be
6915 encoded with the best possible quality regardless of the treatment of
6916 the rest of the frame - that is, should be encoded at a QP of -12.
6917 @item clear
6918 If set to true, remove any existing regions of interest marked on the
6919 frame before adding the new one.
6920 @end table
6921
6922 @subsection Examples
6923
6924 @itemize
6925 @item
6926 Mark the centre quarter of the frame as interesting.
6927 @example
6928 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6929 @end example
6930 @item
6931 Mark the 100-pixel-wide region on the left edge of the frame as very
6932 uninteresting (to be encoded at much lower quality than the rest of
6933 the frame).
6934 @example
6935 addroi=0:0:100:ih:+1/5
6936 @end example
6937 @end itemize
6938
6939 @section alphaextract
6940
6941 Extract the alpha component from the input as a grayscale video. This
6942 is especially useful with the @var{alphamerge} filter.
6943
6944 @section alphamerge
6945
6946 Add or replace the alpha component of the primary input with the
6947 grayscale value of a second input. This is intended for use with
6948 @var{alphaextract} to allow the transmission or storage of frame
6949 sequences that have alpha in a format that doesn't support an alpha
6950 channel.
6951
6952 For example, to reconstruct full frames from a normal YUV-encoded video
6953 and a separate video created with @var{alphaextract}, you might use:
6954 @example
6955 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6956 @end example
6957
6958 @section amplify
6959
6960 Amplify differences between current pixel and pixels of adjacent frames in
6961 same pixel location.
6962
6963 This filter accepts the following options:
6964
6965 @table @option
6966 @item radius
6967 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6968 For example radius of 3 will instruct filter to calculate average of 7 frames.
6969
6970 @item factor
6971 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6972
6973 @item threshold
6974 Set threshold for difference amplification. Any difference greater or equal to
6975 this value will not alter source pixel. Default is 10.
6976 Allowed range is from 0 to 65535.
6977
6978 @item tolerance
6979 Set tolerance for difference amplification. Any difference lower to
6980 this value will not alter source pixel. Default is 0.
6981 Allowed range is from 0 to 65535.
6982
6983 @item low
6984 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6985 This option controls maximum possible value that will decrease source pixel value.
6986
6987 @item high
6988 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6989 This option controls maximum possible value that will increase source pixel value.
6990
6991 @item planes
6992 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6993 @end table
6994
6995 @subsection Commands
6996
6997 This filter supports the following @ref{commands} that corresponds to option of same name:
6998 @table @option
6999 @item factor
7000 @item threshold
7001 @item tolerance
7002 @item low
7003 @item high
7004 @item planes
7005 @end table
7006
7007 @section ass
7008
7009 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7010 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7011 Substation Alpha) subtitles files.
7012
7013 This filter accepts the following option in addition to the common options from
7014 the @ref{subtitles} filter:
7015
7016 @table @option
7017 @item shaping
7018 Set the shaping engine
7019
7020 Available values are:
7021 @table @samp
7022 @item auto
7023 The default libass shaping engine, which is the best available.
7024 @item simple
7025 Fast, font-agnostic shaper that can do only substitutions
7026 @item complex
7027 Slower shaper using OpenType for substitutions and positioning
7028 @end table
7029
7030 The default is @code{auto}.
7031 @end table
7032
7033 @section atadenoise
7034 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7035
7036 The filter accepts the following options:
7037
7038 @table @option
7039 @item 0a
7040 Set threshold A for 1st plane. Default is 0.02.
7041 Valid range is 0 to 0.3.
7042
7043 @item 0b
7044 Set threshold B for 1st plane. Default is 0.04.
7045 Valid range is 0 to 5.
7046
7047 @item 1a
7048 Set threshold A for 2nd plane. Default is 0.02.
7049 Valid range is 0 to 0.3.
7050
7051 @item 1b
7052 Set threshold B for 2nd plane. Default is 0.04.
7053 Valid range is 0 to 5.
7054
7055 @item 2a
7056 Set threshold A for 3rd plane. Default is 0.02.
7057 Valid range is 0 to 0.3.
7058
7059 @item 2b
7060 Set threshold B for 3rd plane. Default is 0.04.
7061 Valid range is 0 to 5.
7062
7063 Threshold A is designed to react on abrupt changes in the input signal and
7064 threshold B is designed to react on continuous changes in the input signal.
7065
7066 @item s
7067 Set number of frames filter will use for averaging. Default is 9. Must be odd
7068 number in range [5, 129].
7069
7070 @item p
7071 Set what planes of frame filter will use for averaging. Default is all.
7072
7073 @item a
7074 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7075 Alternatively can be set to @code{s} serial.
7076
7077 Parallel can be faster then serial, while other way around is never true.
7078 Parallel will abort early on first change being greater then thresholds, while serial
7079 will continue processing other side of frames if they are equal or below thresholds.
7080 @end table
7081
7082 @subsection Commands
7083 This filter supports same @ref{commands} as options except option @code{s}.
7084 The command accepts the same syntax of the corresponding option.
7085
7086 @section avgblur
7087
7088 Apply average blur filter.
7089
7090 The filter accepts the following options:
7091
7092 @table @option
7093 @item sizeX
7094 Set horizontal radius size.
7095
7096 @item planes
7097 Set which planes to filter. By default all planes are filtered.
7098
7099 @item sizeY
7100 Set vertical radius size, if zero it will be same as @code{sizeX}.
7101 Default is @code{0}.
7102 @end table
7103
7104 @subsection Commands
7105 This filter supports same commands as options.
7106 The command accepts the same syntax of the corresponding option.
7107
7108 If the specified expression is not valid, it is kept at its current
7109 value.
7110
7111 @section bbox
7112
7113 Compute the bounding box for the non-black pixels in the input frame
7114 luminance plane.
7115
7116 This filter computes the bounding box containing all the pixels with a
7117 luminance value greater than the minimum allowed value.
7118 The parameters describing the bounding box are printed on the filter
7119 log.
7120
7121 The filter accepts the following option:
7122
7123 @table @option
7124 @item min_val
7125 Set the minimal luminance value. Default is @code{16}.
7126 @end table
7127
7128 @section bilateral
7129 Apply bilateral filter, spatial smoothing while preserving edges.
7130
7131 The filter accepts the following options:
7132 @table @option
7133 @item sigmaS
7134 Set sigma of gaussian function to calculate spatial weight.
7135 Allowed range is 0 to 512. Default is 0.1.
7136
7137 @item sigmaR
7138 Set sigma of gaussian function to calculate range weight.
7139 Allowed range is 0 to 1. Default is 0.1.
7140
7141 @item planes
7142 Set planes to filter. Default is first only.
7143 @end table
7144
7145 @section bitplanenoise
7146
7147 Show and measure bit plane noise.
7148
7149 The filter accepts the following options:
7150
7151 @table @option
7152 @item bitplane
7153 Set which plane to analyze. Default is @code{1}.
7154
7155 @item filter
7156 Filter out noisy pixels from @code{bitplane} set above.
7157 Default is disabled.
7158 @end table
7159
7160 @section blackdetect
7161
7162 Detect video intervals that are (almost) completely black. Can be
7163 useful to detect chapter transitions, commercials, or invalid
7164 recordings.
7165
7166 The filter outputs its detection analysis to both the log as well as
7167 frame metadata. If a black segment of at least the specified minimum
7168 duration is found, a line with the start and end timestamps as well
7169 as duration is printed to the log with level @code{info}. In addition,
7170 a log line with level @code{debug} is printed per frame showing the
7171 black amount detected for that frame.
7172
7173 The filter also attaches metadata to the first frame of a black
7174 segment with key @code{lavfi.black_start} and to the first frame
7175 after the black segment ends with key @code{lavfi.black_end}. The
7176 value is the frame's timestamp. This metadata is added regardless
7177 of the minimum duration specified.
7178
7179 The filter accepts the following options:
7180
7181 @table @option
7182 @item black_min_duration, d
7183 Set the minimum detected black duration expressed in seconds. It must
7184 be a non-negative floating point number.
7185
7186 Default value is 2.0.
7187
7188 @item picture_black_ratio_th, pic_th
7189 Set the threshold for considering a picture "black".
7190 Express the minimum value for the ratio:
7191 @example
7192 @var{nb_black_pixels} / @var{nb_pixels}
7193 @end example
7194
7195 for which a picture is considered black.
7196 Default value is 0.98.
7197
7198 @item pixel_black_th, pix_th
7199 Set the threshold for considering a pixel "black".
7200
7201 The threshold expresses the maximum pixel luminance value for which a
7202 pixel is considered "black". The provided value is scaled according to
7203 the following equation:
7204 @example
7205 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7206 @end example
7207
7208 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7209 the input video format, the range is [0-255] for YUV full-range
7210 formats and [16-235] for YUV non full-range formats.
7211
7212 Default value is 0.10.
7213 @end table
7214
7215 The following example sets the maximum pixel threshold to the minimum
7216 value, and detects only black intervals of 2 or more seconds:
7217 @example
7218 blackdetect=d=2:pix_th=0.00
7219 @end example
7220
7221 @section blackframe
7222
7223 Detect frames that are (almost) completely black. Can be useful to
7224 detect chapter transitions or commercials. Output lines consist of
7225 the frame number of the detected frame, the percentage of blackness,
7226 the position in the file if known or -1 and the timestamp in seconds.
7227
7228 In order to display the output lines, you need to set the loglevel at
7229 least to the AV_LOG_INFO value.
7230
7231 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7232 The value represents the percentage of pixels in the picture that
7233 are below the threshold value.
7234
7235 It accepts the following parameters:
7236
7237 @table @option
7238
7239 @item amount
7240 The percentage of the pixels that have to be below the threshold; it defaults to
7241 @code{98}.
7242
7243 @item threshold, thresh
7244 The threshold below which a pixel value is considered black; it defaults to
7245 @code{32}.
7246
7247 @end table
7248
7249 @anchor{blend}
7250 @section blend
7251
7252 Blend two video frames into each other.
7253
7254 The @code{blend} filter takes two input streams and outputs one
7255 stream, the first input is the "top" layer and second input is
7256 "bottom" layer.  By default, the output terminates when the longest input terminates.
7257
7258 The @code{tblend} (time blend) filter takes two consecutive frames
7259 from one single stream, and outputs the result obtained by blending
7260 the new frame on top of the old frame.
7261
7262 A description of the accepted options follows.
7263
7264 @table @option
7265 @item c0_mode
7266 @item c1_mode
7267 @item c2_mode
7268 @item c3_mode
7269 @item all_mode
7270 Set blend mode for specific pixel component or all pixel components in case
7271 of @var{all_mode}. Default value is @code{normal}.
7272
7273 Available values for component modes are:
7274 @table @samp
7275 @item addition
7276 @item grainmerge
7277 @item and
7278 @item average
7279 @item burn
7280 @item darken
7281 @item difference
7282 @item grainextract
7283 @item divide
7284 @item dodge
7285 @item freeze
7286 @item exclusion
7287 @item extremity
7288 @item glow
7289 @item hardlight
7290 @item hardmix
7291 @item heat
7292 @item lighten
7293 @item linearlight
7294 @item multiply
7295 @item multiply128
7296 @item negation
7297 @item normal
7298 @item or
7299 @item overlay
7300 @item phoenix
7301 @item pinlight
7302 @item reflect
7303 @item screen
7304 @item softlight
7305 @item subtract
7306 @item vividlight
7307 @item xor
7308 @end table
7309
7310 @item c0_opacity
7311 @item c1_opacity
7312 @item c2_opacity
7313 @item c3_opacity
7314 @item all_opacity
7315 Set blend opacity for specific pixel component or all pixel components in case
7316 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7317
7318 @item c0_expr
7319 @item c1_expr
7320 @item c2_expr
7321 @item c3_expr
7322 @item all_expr
7323 Set blend expression for specific pixel component or all pixel components in case
7324 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7325
7326 The expressions can use the following variables:
7327
7328 @table @option
7329 @item N
7330 The sequential number of the filtered frame, starting from @code{0}.
7331
7332 @item X
7333 @item Y
7334 the coordinates of the current sample
7335
7336 @item W
7337 @item H
7338 the width and height of currently filtered plane
7339
7340 @item SW
7341 @item SH
7342 Width and height scale for the plane being filtered. It is the
7343 ratio between the dimensions of the current plane to the luma plane,
7344 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7345 the luma plane and @code{0.5,0.5} for the chroma planes.
7346
7347 @item T
7348 Time of the current frame, expressed in seconds.
7349
7350 @item TOP, A
7351 Value of pixel component at current location for first video frame (top layer).
7352
7353 @item BOTTOM, B
7354 Value of pixel component at current location for second video frame (bottom layer).
7355 @end table
7356 @end table
7357
7358 The @code{blend} filter also supports the @ref{framesync} options.
7359
7360 @subsection Examples
7361
7362 @itemize
7363 @item
7364 Apply transition from bottom layer to top layer in first 10 seconds:
7365 @example
7366 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7367 @end example
7368
7369 @item
7370 Apply linear horizontal transition from top layer to bottom layer:
7371 @example
7372 blend=all_expr='A*(X/W)+B*(1-X/W)'
7373 @end example
7374
7375 @item
7376 Apply 1x1 checkerboard effect:
7377 @example
7378 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7379 @end example
7380
7381 @item
7382 Apply uncover left effect:
7383 @example
7384 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7385 @end example
7386
7387 @item
7388 Apply uncover down effect:
7389 @example
7390 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7391 @end example
7392
7393 @item
7394 Apply uncover up-left effect:
7395 @example
7396 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7397 @end example
7398
7399 @item
7400 Split diagonally video and shows top and bottom layer on each side:
7401 @example
7402 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7403 @end example
7404
7405 @item
7406 Display differences between the current and the previous frame:
7407 @example
7408 tblend=all_mode=grainextract
7409 @end example
7410 @end itemize
7411
7412 @section bm3d
7413
7414 Denoise frames using Block-Matching 3D algorithm.
7415
7416 The filter accepts the following options.
7417
7418 @table @option
7419 @item sigma
7420 Set denoising strength. Default value is 1.
7421 Allowed range is from 0 to 999.9.
7422 The denoising algorithm is very sensitive to sigma, so adjust it
7423 according to the source.
7424
7425 @item block
7426 Set local patch size. This sets dimensions in 2D.
7427
7428 @item bstep
7429 Set sliding step for processing blocks. Default value is 4.
7430 Allowed range is from 1 to 64.
7431 Smaller values allows processing more reference blocks and is slower.
7432
7433 @item group
7434 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7435 When set to 1, no block matching is done. Larger values allows more blocks
7436 in single group.
7437 Allowed range is from 1 to 256.
7438
7439 @item range
7440 Set radius for search block matching. Default is 9.
7441 Allowed range is from 1 to INT32_MAX.
7442
7443 @item mstep
7444 Set step between two search locations for block matching. Default is 1.
7445 Allowed range is from 1 to 64. Smaller is slower.
7446
7447 @item thmse
7448 Set threshold of mean square error for block matching. Valid range is 0 to
7449 INT32_MAX.
7450
7451 @item hdthr
7452 Set thresholding parameter for hard thresholding in 3D transformed domain.
7453 Larger values results in stronger hard-thresholding filtering in frequency
7454 domain.
7455
7456 @item estim
7457 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7458 Default is @code{basic}.
7459
7460 @item ref
7461 If enabled, filter will use 2nd stream for block matching.
7462 Default is disabled for @code{basic} value of @var{estim} option,
7463 and always enabled if value of @var{estim} is @code{final}.
7464
7465 @item planes
7466 Set planes to filter. Default is all available except alpha.
7467 @end table
7468
7469 @subsection Examples
7470
7471 @itemize
7472 @item
7473 Basic filtering with bm3d:
7474 @example
7475 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7476 @end example
7477
7478 @item
7479 Same as above, but filtering only luma:
7480 @example
7481 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7482 @end example
7483
7484 @item
7485 Same as above, but with both estimation modes:
7486 @example
7487 split[a][b],[a]bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic[a],[b][a]bm3d=sigma=3:block=4:bstep=2:group=16:estim=final:ref=1
7488 @end example
7489
7490 @item
7491 Same as above, but prefilter with @ref{nlmeans} filter instead:
7492 @example
7493 split[a][b],[a]nlmeans=s=3:r=7:p=3[a],[b][a]bm3d=sigma=3:block=4:bstep=2:group=16:estim=final:ref=1
7494 @end example
7495 @end itemize
7496
7497 @section boxblur
7498
7499 Apply a boxblur algorithm to the input video.
7500
7501 It accepts the following parameters:
7502
7503 @table @option
7504
7505 @item luma_radius, lr
7506 @item luma_power, lp
7507 @item chroma_radius, cr
7508 @item chroma_power, cp
7509 @item alpha_radius, ar
7510 @item alpha_power, ap
7511
7512 @end table
7513
7514 A description of the accepted options follows.
7515
7516 @table @option
7517 @item luma_radius, lr
7518 @item chroma_radius, cr
7519 @item alpha_radius, ar
7520 Set an expression for the box radius in pixels used for blurring the
7521 corresponding input plane.
7522
7523 The radius value must be a non-negative number, and must not be
7524 greater than the value of the expression @code{min(w,h)/2} for the
7525 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7526 planes.
7527
7528 Default value for @option{luma_radius} is "2". If not specified,
7529 @option{chroma_radius} and @option{alpha_radius} default to the
7530 corresponding value set for @option{luma_radius}.
7531
7532 The expressions can contain the following constants:
7533 @table @option
7534 @item w
7535 @item h
7536 The input width and height in pixels.
7537
7538 @item cw
7539 @item ch
7540 The input chroma image width and height in pixels.
7541
7542 @item hsub
7543 @item vsub
7544 The horizontal and vertical chroma subsample values. For example, for the
7545 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7546 @end table
7547
7548 @item luma_power, lp
7549 @item chroma_power, cp
7550 @item alpha_power, ap
7551 Specify how many times the boxblur filter is applied to the
7552 corresponding plane.
7553
7554 Default value for @option{luma_power} is 2. If not specified,
7555 @option{chroma_power} and @option{alpha_power} default to the
7556 corresponding value set for @option{luma_power}.
7557
7558 A value of 0 will disable the effect.
7559 @end table
7560
7561 @subsection Examples
7562
7563 @itemize
7564 @item
7565 Apply a boxblur filter with the luma, chroma, and alpha radii
7566 set to 2:
7567 @example
7568 boxblur=luma_radius=2:luma_power=1
7569 boxblur=2:1
7570 @end example
7571
7572 @item
7573 Set the luma radius to 2, and alpha and chroma radius to 0:
7574 @example
7575 boxblur=2:1:cr=0:ar=0
7576 @end example
7577
7578 @item
7579 Set the luma and chroma radii to a fraction of the video dimension:
7580 @example
7581 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7582 @end example
7583 @end itemize
7584
7585 @section bwdif
7586
7587 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7588 Deinterlacing Filter").
7589
7590 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7591 interpolation algorithms.
7592 It accepts the following parameters:
7593
7594 @table @option
7595 @item mode
7596 The interlacing mode to adopt. It accepts one of the following values:
7597
7598 @table @option
7599 @item 0, send_frame
7600 Output one frame for each frame.
7601 @item 1, send_field
7602 Output one frame for each field.
7603 @end table
7604
7605 The default value is @code{send_field}.
7606
7607 @item parity
7608 The picture field parity assumed for the input interlaced video. It accepts one
7609 of the following values:
7610
7611 @table @option
7612 @item 0, tff
7613 Assume the top field is first.
7614 @item 1, bff
7615 Assume the bottom field is first.
7616 @item -1, auto
7617 Enable automatic detection of field parity.
7618 @end table
7619
7620 The default value is @code{auto}.
7621 If the interlacing is unknown or the decoder does not export this information,
7622 top field first will be assumed.
7623
7624 @item deint
7625 Specify which frames to deinterlace. Accepts one of the following
7626 values:
7627
7628 @table @option
7629 @item 0, all
7630 Deinterlace all frames.
7631 @item 1, interlaced
7632 Only deinterlace frames marked as interlaced.
7633 @end table
7634
7635 The default value is @code{all}.
7636 @end table
7637
7638 @section cas
7639
7640 Apply Contrast Adaptive Sharpen filter to video stream.
7641
7642 The filter accepts the following options:
7643
7644 @table @option
7645 @item strength
7646 Set the sharpening strength. Default value is 0.
7647
7648 @item planes
7649 Set planes to filter. Default value is to filter all
7650 planes except alpha plane.
7651 @end table
7652
7653 @section chromahold
7654 Remove all color information for all colors except for certain one.
7655
7656 The filter accepts the following options:
7657
7658 @table @option
7659 @item color
7660 The color which will not be replaced with neutral chroma.
7661
7662 @item similarity
7663 Similarity percentage with the above color.
7664 0.01 matches only the exact key color, while 1.0 matches everything.
7665
7666 @item blend
7667 Blend percentage.
7668 0.0 makes pixels either fully gray, or not gray at all.
7669 Higher values result in more preserved color.
7670
7671 @item yuv
7672 Signals that the color passed is already in YUV instead of RGB.
7673
7674 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7675 This can be used to pass exact YUV values as hexadecimal numbers.
7676 @end table
7677
7678 @subsection Commands
7679 This filter supports same @ref{commands} as options.
7680 The command accepts the same syntax of the corresponding option.
7681
7682 If the specified expression is not valid, it is kept at its current
7683 value.
7684
7685 @section chromakey
7686 YUV colorspace color/chroma keying.
7687
7688 The filter accepts the following options:
7689
7690 @table @option
7691 @item color
7692 The color which will be replaced with transparency.
7693
7694 @item similarity
7695 Similarity percentage with the key color.
7696
7697 0.01 matches only the exact key color, while 1.0 matches everything.
7698
7699 @item blend
7700 Blend percentage.
7701
7702 0.0 makes pixels either fully transparent, or not transparent at all.
7703
7704 Higher values result in semi-transparent pixels, with a higher transparency
7705 the more similar the pixels color is to the key color.
7706
7707 @item yuv
7708 Signals that the color passed is already in YUV instead of RGB.
7709
7710 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7711 This can be used to pass exact YUV values as hexadecimal numbers.
7712 @end table
7713
7714 @subsection Commands
7715 This filter supports same @ref{commands} as options.
7716 The command accepts the same syntax of the corresponding option.
7717
7718 If the specified expression is not valid, it is kept at its current
7719 value.
7720
7721 @subsection Examples
7722
7723 @itemize
7724 @item
7725 Make every green pixel in the input image transparent:
7726 @example
7727 ffmpeg -i input.png -vf chromakey=green out.png
7728 @end example
7729
7730 @item
7731 Overlay a greenscreen-video on top of a static black background.
7732 @example
7733 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
7734 @end example
7735 @end itemize
7736
7737 @section chromanr
7738 Reduce chrominance noise.
7739
7740 The filter accepts the following options:
7741
7742 @table @option
7743 @item thres
7744 Set threshold for averaging chrominance values.
7745 Sum of absolute difference of Y, U and V pixel components of current
7746 pixel and neighbour pixels lower than this threshold will be used in
7747 averaging. Luma component is left unchanged and is copied to output.
7748 Default value is 30. Allowed range is from 1 to 200.
7749
7750 @item sizew
7751 Set horizontal radius of rectangle used for averaging.
7752 Allowed range is from 1 to 100. Default value is 5.
7753
7754 @item sizeh
7755 Set vertical radius of rectangle used for averaging.
7756 Allowed range is from 1 to 100. Default value is 5.
7757
7758 @item stepw
7759 Set horizontal step when averaging. Default value is 1.
7760 Allowed range is from 1 to 50.
7761 Mostly useful to speed-up filtering.
7762
7763 @item steph
7764 Set vertical step when averaging. Default value is 1.
7765 Allowed range is from 1 to 50.
7766 Mostly useful to speed-up filtering.
7767
7768 @item threy
7769 Set Y threshold for averaging chrominance values.
7770 Set finer control for max allowed difference between Y components
7771 of current pixel and neigbour pixels.
7772 Default value is 200. Allowed range is from 1 to 200.
7773
7774 @item threu
7775 Set U threshold for averaging chrominance values.
7776 Set finer control for max allowed difference between U components
7777 of current pixel and neigbour pixels.
7778 Default value is 200. Allowed range is from 1 to 200.
7779
7780 @item threv
7781 Set V threshold for averaging chrominance values.
7782 Set finer control for max allowed difference between V components
7783 of current pixel and neigbour pixels.
7784 Default value is 200. Allowed range is from 1 to 200.
7785 @end table
7786
7787 @subsection Commands
7788 This filter supports same @ref{commands} as options.
7789 The command accepts the same syntax of the corresponding option.
7790
7791 @section chromashift
7792 Shift chroma pixels horizontally and/or vertically.
7793
7794 The filter accepts the following options:
7795 @table @option
7796 @item cbh
7797 Set amount to shift chroma-blue horizontally.
7798 @item cbv
7799 Set amount to shift chroma-blue vertically.
7800 @item crh
7801 Set amount to shift chroma-red horizontally.
7802 @item crv
7803 Set amount to shift chroma-red vertically.
7804 @item edge
7805 Set edge mode, can be @var{smear}, default, or @var{warp}.
7806 @end table
7807
7808 @subsection Commands
7809
7810 This filter supports the all above options as @ref{commands}.
7811
7812 @section ciescope
7813
7814 Display CIE color diagram with pixels overlaid onto it.
7815
7816 The filter accepts the following options:
7817
7818 @table @option
7819 @item system
7820 Set color system.
7821
7822 @table @samp
7823 @item ntsc, 470m
7824 @item ebu, 470bg
7825 @item smpte
7826 @item 240m
7827 @item apple
7828 @item widergb
7829 @item cie1931
7830 @item rec709, hdtv
7831 @item uhdtv, rec2020
7832 @item dcip3
7833 @end table
7834
7835 @item cie
7836 Set CIE system.
7837
7838 @table @samp
7839 @item xyy
7840 @item ucs
7841 @item luv
7842 @end table
7843
7844 @item gamuts
7845 Set what gamuts to draw.
7846
7847 See @code{system} option for available values.
7848
7849 @item size, s
7850 Set ciescope size, by default set to 512.
7851
7852 @item intensity, i
7853 Set intensity used to map input pixel values to CIE diagram.
7854
7855 @item contrast
7856 Set contrast used to draw tongue colors that are out of active color system gamut.
7857
7858 @item corrgamma
7859 Correct gamma displayed on scope, by default enabled.
7860
7861 @item showwhite
7862 Show white point on CIE diagram, by default disabled.
7863
7864 @item gamma
7865 Set input gamma. Used only with XYZ input color space.
7866 @end table
7867
7868 @section codecview
7869
7870 Visualize information exported by some codecs.
7871
7872 Some codecs can export information through frames using side-data or other
7873 means. For example, some MPEG based codecs export motion vectors through the
7874 @var{export_mvs} flag in the codec @option{flags2} option.
7875
7876 The filter accepts the following option:
7877
7878 @table @option
7879 @item mv
7880 Set motion vectors to visualize.
7881
7882 Available flags for @var{mv} are:
7883
7884 @table @samp
7885 @item pf
7886 forward predicted MVs of P-frames
7887 @item bf
7888 forward predicted MVs of B-frames
7889 @item bb
7890 backward predicted MVs of B-frames
7891 @end table
7892
7893 @item qp
7894 Display quantization parameters using the chroma planes.
7895
7896 @item mv_type, mvt
7897 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7898
7899 Available flags for @var{mv_type} are:
7900
7901 @table @samp
7902 @item fp
7903 forward predicted MVs
7904 @item bp
7905 backward predicted MVs
7906 @end table
7907
7908 @item frame_type, ft
7909 Set frame type to visualize motion vectors of.
7910
7911 Available flags for @var{frame_type} are:
7912
7913 @table @samp
7914 @item if
7915 intra-coded frames (I-frames)
7916 @item pf
7917 predicted frames (P-frames)
7918 @item bf
7919 bi-directionally predicted frames (B-frames)
7920 @end table
7921 @end table
7922
7923 @subsection Examples
7924
7925 @itemize
7926 @item
7927 Visualize forward predicted MVs of all frames using @command{ffplay}:
7928 @example
7929 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7930 @end example
7931
7932 @item
7933 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7934 @example
7935 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7936 @end example
7937 @end itemize
7938
7939 @section colorbalance
7940 Modify intensity of primary colors (red, green and blue) of input frames.
7941
7942 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7943 regions for the red-cyan, green-magenta or blue-yellow balance.
7944
7945 A positive adjustment value shifts the balance towards the primary color, a negative
7946 value towards the complementary color.
7947
7948 The filter accepts the following options:
7949
7950 @table @option
7951 @item rs
7952 @item gs
7953 @item bs
7954 Adjust red, green and blue shadows (darkest pixels).
7955
7956 @item rm
7957 @item gm
7958 @item bm
7959 Adjust red, green and blue midtones (medium pixels).
7960
7961 @item rh
7962 @item gh
7963 @item bh
7964 Adjust red, green and blue highlights (brightest pixels).
7965
7966 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7967
7968 @item pl
7969 Preserve lightness when changing color balance. Default is disabled.
7970 @end table
7971
7972 @subsection Examples
7973
7974 @itemize
7975 @item
7976 Add red color cast to shadows:
7977 @example
7978 colorbalance=rs=.3
7979 @end example
7980 @end itemize
7981
7982 @subsection Commands
7983
7984 This filter supports the all above options as @ref{commands}.
7985
7986 @section colorchannelmixer
7987
7988 Adjust video input frames by re-mixing color channels.
7989
7990 This filter modifies a color channel by adding the values associated to
7991 the other channels of the same pixels. For example if the value to
7992 modify is red, the output value will be:
7993 @example
7994 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7995 @end example
7996
7997 The filter accepts the following options:
7998
7999 @table @option
8000 @item rr
8001 @item rg
8002 @item rb
8003 @item ra
8004 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8005 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8006
8007 @item gr
8008 @item gg
8009 @item gb
8010 @item ga
8011 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8012 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8013
8014 @item br
8015 @item bg
8016 @item bb
8017 @item ba
8018 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8019 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8020
8021 @item ar
8022 @item ag
8023 @item ab
8024 @item aa
8025 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8026 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8027
8028 Allowed ranges for options are @code{[-2.0, 2.0]}.
8029 @end table
8030
8031 @subsection Examples
8032
8033 @itemize
8034 @item
8035 Convert source to grayscale:
8036 @example
8037 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8038 @end example
8039 @item
8040 Simulate sepia tones:
8041 @example
8042 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8043 @end example
8044 @end itemize
8045
8046 @subsection Commands
8047
8048 This filter supports the all above options as @ref{commands}.
8049
8050 @section colorkey
8051 RGB colorspace color keying.
8052
8053 The filter accepts the following options:
8054
8055 @table @option
8056 @item color
8057 The color which will be replaced with transparency.
8058
8059 @item similarity
8060 Similarity percentage with the key color.
8061
8062 0.01 matches only the exact key color, while 1.0 matches everything.
8063
8064 @item blend
8065 Blend percentage.
8066
8067 0.0 makes pixels either fully transparent, or not transparent at all.
8068
8069 Higher values result in semi-transparent pixels, with a higher transparency
8070 the more similar the pixels color is to the key color.
8071 @end table
8072
8073 @subsection Examples
8074
8075 @itemize
8076 @item
8077 Make every green pixel in the input image transparent:
8078 @example
8079 ffmpeg -i input.png -vf colorkey=green out.png
8080 @end example
8081
8082 @item
8083 Overlay a greenscreen-video on top of a static background image.
8084 @example
8085 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
8086 @end example
8087 @end itemize
8088
8089 @subsection Commands
8090 This filter supports same @ref{commands} as options.
8091 The command accepts the same syntax of the corresponding option.
8092
8093 If the specified expression is not valid, it is kept at its current
8094 value.
8095
8096 @section colorhold
8097 Remove all color information for all RGB colors except for certain one.
8098
8099 The filter accepts the following options:
8100
8101 @table @option
8102 @item color
8103 The color which will not be replaced with neutral gray.
8104
8105 @item similarity
8106 Similarity percentage with the above color.
8107 0.01 matches only the exact key color, while 1.0 matches everything.
8108
8109 @item blend
8110 Blend percentage. 0.0 makes pixels fully gray.
8111 Higher values result in more preserved color.
8112 @end table
8113
8114 @subsection Commands
8115 This filter supports same @ref{commands} as options.
8116 The command accepts the same syntax of the corresponding option.
8117
8118 If the specified expression is not valid, it is kept at its current
8119 value.
8120
8121 @section colorlevels
8122
8123 Adjust video input frames using levels.
8124
8125 The filter accepts the following options:
8126
8127 @table @option
8128 @item rimin
8129 @item gimin
8130 @item bimin
8131 @item aimin
8132 Adjust red, green, blue and alpha input black point.
8133 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8134
8135 @item rimax
8136 @item gimax
8137 @item bimax
8138 @item aimax
8139 Adjust red, green, blue and alpha input white point.
8140 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8141
8142 Input levels are used to lighten highlights (bright tones), darken shadows
8143 (dark tones), change the balance of bright and dark tones.
8144
8145 @item romin
8146 @item gomin
8147 @item bomin
8148 @item aomin
8149 Adjust red, green, blue and alpha output black point.
8150 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8151
8152 @item romax
8153 @item gomax
8154 @item bomax
8155 @item aomax
8156 Adjust red, green, blue and alpha output white point.
8157 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8158
8159 Output levels allows manual selection of a constrained output level range.
8160 @end table
8161
8162 @subsection Examples
8163
8164 @itemize
8165 @item
8166 Make video output darker:
8167 @example
8168 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8169 @end example
8170
8171 @item
8172 Increase contrast:
8173 @example
8174 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8175 @end example
8176
8177 @item
8178 Make video output lighter:
8179 @example
8180 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8181 @end example
8182
8183 @item
8184 Increase brightness:
8185 @example
8186 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8187 @end example
8188 @end itemize
8189
8190 @subsection Commands
8191
8192 This filter supports the all above options as @ref{commands}.
8193
8194 @section colormatrix
8195
8196 Convert color matrix.
8197
8198 The filter accepts the following options:
8199
8200 @table @option
8201 @item src
8202 @item dst
8203 Specify the source and destination color matrix. Both values must be
8204 specified.
8205
8206 The accepted values are:
8207 @table @samp
8208 @item bt709
8209 BT.709
8210
8211 @item fcc
8212 FCC
8213
8214 @item bt601
8215 BT.601
8216
8217 @item bt470
8218 BT.470
8219
8220 @item bt470bg
8221 BT.470BG
8222
8223 @item smpte170m
8224 SMPTE-170M
8225
8226 @item smpte240m
8227 SMPTE-240M
8228
8229 @item bt2020
8230 BT.2020
8231 @end table
8232 @end table
8233
8234 For example to convert from BT.601 to SMPTE-240M, use the command:
8235 @example
8236 colormatrix=bt601:smpte240m
8237 @end example
8238
8239 @section colorspace
8240
8241 Convert colorspace, transfer characteristics or color primaries.
8242 Input video needs to have an even size.
8243
8244 The filter accepts the following options:
8245
8246 @table @option
8247 @anchor{all}
8248 @item all
8249 Specify all color properties at once.
8250
8251 The accepted values are:
8252 @table @samp
8253 @item bt470m
8254 BT.470M
8255
8256 @item bt470bg
8257 BT.470BG
8258
8259 @item bt601-6-525
8260 BT.601-6 525
8261
8262 @item bt601-6-625
8263 BT.601-6 625
8264
8265 @item bt709
8266 BT.709
8267
8268 @item smpte170m
8269 SMPTE-170M
8270
8271 @item smpte240m
8272 SMPTE-240M
8273
8274 @item bt2020
8275 BT.2020
8276
8277 @end table
8278
8279 @anchor{space}
8280 @item space
8281 Specify output colorspace.
8282
8283 The accepted values are:
8284 @table @samp
8285 @item bt709
8286 BT.709
8287
8288 @item fcc
8289 FCC
8290
8291 @item bt470bg
8292 BT.470BG or BT.601-6 625
8293
8294 @item smpte170m
8295 SMPTE-170M or BT.601-6 525
8296
8297 @item smpte240m
8298 SMPTE-240M
8299
8300 @item ycgco
8301 YCgCo
8302
8303 @item bt2020ncl
8304 BT.2020 with non-constant luminance
8305
8306 @end table
8307
8308 @anchor{trc}
8309 @item trc
8310 Specify output transfer characteristics.
8311
8312 The accepted values are:
8313 @table @samp
8314 @item bt709
8315 BT.709
8316
8317 @item bt470m
8318 BT.470M
8319
8320 @item bt470bg
8321 BT.470BG
8322
8323 @item gamma22
8324 Constant gamma of 2.2
8325
8326 @item gamma28
8327 Constant gamma of 2.8
8328
8329 @item smpte170m
8330 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8331
8332 @item smpte240m
8333 SMPTE-240M
8334
8335 @item srgb
8336 SRGB
8337
8338 @item iec61966-2-1
8339 iec61966-2-1
8340
8341 @item iec61966-2-4
8342 iec61966-2-4
8343
8344 @item xvycc
8345 xvycc
8346
8347 @item bt2020-10
8348 BT.2020 for 10-bits content
8349
8350 @item bt2020-12
8351 BT.2020 for 12-bits content
8352
8353 @end table
8354
8355 @anchor{primaries}
8356 @item primaries
8357 Specify output color primaries.
8358
8359 The accepted values are:
8360 @table @samp
8361 @item bt709
8362 BT.709
8363
8364 @item bt470m
8365 BT.470M
8366
8367 @item bt470bg
8368 BT.470BG or BT.601-6 625
8369
8370 @item smpte170m
8371 SMPTE-170M or BT.601-6 525
8372
8373 @item smpte240m
8374 SMPTE-240M
8375
8376 @item film
8377 film
8378
8379 @item smpte431
8380 SMPTE-431
8381
8382 @item smpte432
8383 SMPTE-432
8384
8385 @item bt2020
8386 BT.2020
8387
8388 @item jedec-p22
8389 JEDEC P22 phosphors
8390
8391 @end table
8392
8393 @anchor{range}
8394 @item range
8395 Specify output color range.
8396
8397 The accepted values are:
8398 @table @samp
8399 @item tv
8400 TV (restricted) range
8401
8402 @item mpeg
8403 MPEG (restricted) range
8404
8405 @item pc
8406 PC (full) range
8407
8408 @item jpeg
8409 JPEG (full) range
8410
8411 @end table
8412
8413 @item format
8414 Specify output color format.
8415
8416 The accepted values are:
8417 @table @samp
8418 @item yuv420p
8419 YUV 4:2:0 planar 8-bits
8420
8421 @item yuv420p10
8422 YUV 4:2:0 planar 10-bits
8423
8424 @item yuv420p12
8425 YUV 4:2:0 planar 12-bits
8426
8427 @item yuv422p
8428 YUV 4:2:2 planar 8-bits
8429
8430 @item yuv422p10
8431 YUV 4:2:2 planar 10-bits
8432
8433 @item yuv422p12
8434 YUV 4:2:2 planar 12-bits
8435
8436 @item yuv444p
8437 YUV 4:4:4 planar 8-bits
8438
8439 @item yuv444p10
8440 YUV 4:4:4 planar 10-bits
8441
8442 @item yuv444p12
8443 YUV 4:4:4 planar 12-bits
8444
8445 @end table
8446
8447 @item fast
8448 Do a fast conversion, which skips gamma/primary correction. This will take
8449 significantly less CPU, but will be mathematically incorrect. To get output
8450 compatible with that produced by the colormatrix filter, use fast=1.
8451
8452 @item dither
8453 Specify dithering mode.
8454
8455 The accepted values are:
8456 @table @samp
8457 @item none
8458 No dithering
8459
8460 @item fsb
8461 Floyd-Steinberg dithering
8462 @end table
8463
8464 @item wpadapt
8465 Whitepoint adaptation mode.
8466
8467 The accepted values are:
8468 @table @samp
8469 @item bradford
8470 Bradford whitepoint adaptation
8471
8472 @item vonkries
8473 von Kries whitepoint adaptation
8474
8475 @item identity
8476 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8477 @end table
8478
8479 @item iall
8480 Override all input properties at once. Same accepted values as @ref{all}.
8481
8482 @item ispace
8483 Override input colorspace. Same accepted values as @ref{space}.
8484
8485 @item iprimaries
8486 Override input color primaries. Same accepted values as @ref{primaries}.
8487
8488 @item itrc
8489 Override input transfer characteristics. Same accepted values as @ref{trc}.
8490
8491 @item irange
8492 Override input color range. Same accepted values as @ref{range}.
8493
8494 @end table
8495
8496 The filter converts the transfer characteristics, color space and color
8497 primaries to the specified user values. The output value, if not specified,
8498 is set to a default value based on the "all" property. If that property is
8499 also not specified, the filter will log an error. The output color range and
8500 format default to the same value as the input color range and format. The
8501 input transfer characteristics, color space, color primaries and color range
8502 should be set on the input data. If any of these are missing, the filter will
8503 log an error and no conversion will take place.
8504
8505 For example to convert the input to SMPTE-240M, use the command:
8506 @example
8507 colorspace=smpte240m
8508 @end example
8509
8510 @section convolution
8511
8512 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8513
8514 The filter accepts the following options:
8515
8516 @table @option
8517 @item 0m
8518 @item 1m
8519 @item 2m
8520 @item 3m
8521 Set matrix for each plane.
8522 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8523 and from 1 to 49 odd number of signed integers in @var{row} mode.
8524
8525 @item 0rdiv
8526 @item 1rdiv
8527 @item 2rdiv
8528 @item 3rdiv
8529 Set multiplier for calculated value for each plane.
8530 If unset or 0, it will be sum of all matrix elements.
8531
8532 @item 0bias
8533 @item 1bias
8534 @item 2bias
8535 @item 3bias
8536 Set bias for each plane. This value is added to the result of the multiplication.
8537 Useful for making the overall image brighter or darker. Default is 0.0.
8538
8539 @item 0mode
8540 @item 1mode
8541 @item 2mode
8542 @item 3mode
8543 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8544 Default is @var{square}.
8545 @end table
8546
8547 @subsection Commands
8548
8549 This filter supports the all above options as @ref{commands}.
8550
8551 @subsection Examples
8552
8553 @itemize
8554 @item
8555 Apply sharpen:
8556 @example
8557 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"
8558 @end example
8559
8560 @item
8561 Apply blur:
8562 @example
8563 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"
8564 @end example
8565
8566 @item
8567 Apply edge enhance:
8568 @example
8569 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"
8570 @end example
8571
8572 @item
8573 Apply edge detect:
8574 @example
8575 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"
8576 @end example
8577
8578 @item
8579 Apply laplacian edge detector which includes diagonals:
8580 @example
8581 convolution="1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:5:5:5:1:0:128:128:0"
8582 @end example
8583
8584 @item
8585 Apply emboss:
8586 @example
8587 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"
8588 @end example
8589 @end itemize
8590
8591 @section convolve
8592
8593 Apply 2D convolution of video stream in frequency domain using second stream
8594 as impulse.
8595
8596 The filter accepts the following options:
8597
8598 @table @option
8599 @item planes
8600 Set which planes to process.
8601
8602 @item impulse
8603 Set which impulse video frames will be processed, can be @var{first}
8604 or @var{all}. Default is @var{all}.
8605 @end table
8606
8607 The @code{convolve} filter also supports the @ref{framesync} options.
8608
8609 @section copy
8610
8611 Copy the input video source unchanged to the output. This is mainly useful for
8612 testing purposes.
8613
8614 @anchor{coreimage}
8615 @section coreimage
8616 Video filtering on GPU using Apple's CoreImage API on OSX.
8617
8618 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8619 processed by video hardware. However, software-based OpenGL implementations
8620 exist which means there is no guarantee for hardware processing. It depends on
8621 the respective OSX.
8622
8623 There are many filters and image generators provided by Apple that come with a
8624 large variety of options. The filter has to be referenced by its name along
8625 with its options.
8626
8627 The coreimage filter accepts the following options:
8628 @table @option
8629 @item list_filters
8630 List all available filters and generators along with all their respective
8631 options as well as possible minimum and maximum values along with the default
8632 values.
8633 @example
8634 list_filters=true
8635 @end example
8636
8637 @item filter
8638 Specify all filters by their respective name and options.
8639 Use @var{list_filters} to determine all valid filter names and options.
8640 Numerical options are specified by a float value and are automatically clamped
8641 to their respective value range.  Vector and color options have to be specified
8642 by a list of space separated float values. Character escaping has to be done.
8643 A special option name @code{default} is available to use default options for a
8644 filter.
8645
8646 It is required to specify either @code{default} or at least one of the filter options.
8647 All omitted options are used with their default values.
8648 The syntax of the filter string is as follows:
8649 @example
8650 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8651 @end example
8652
8653 @item output_rect
8654 Specify a rectangle where the output of the filter chain is copied into the
8655 input image. It is given by a list of space separated float values:
8656 @example
8657 output_rect=x\ y\ width\ height
8658 @end example
8659 If not given, the output rectangle equals the dimensions of the input image.
8660 The output rectangle is automatically cropped at the borders of the input
8661 image. Negative values are valid for each component.
8662 @example
8663 output_rect=25\ 25\ 100\ 100
8664 @end example
8665 @end table
8666
8667 Several filters can be chained for successive processing without GPU-HOST
8668 transfers allowing for fast processing of complex filter chains.
8669 Currently, only filters with zero (generators) or exactly one (filters) input
8670 image and one output image are supported. Also, transition filters are not yet
8671 usable as intended.
8672
8673 Some filters generate output images with additional padding depending on the
8674 respective filter kernel. The padding is automatically removed to ensure the
8675 filter output has the same size as the input image.
8676
8677 For image generators, the size of the output image is determined by the
8678 previous output image of the filter chain or the input image of the whole
8679 filterchain, respectively. The generators do not use the pixel information of
8680 this image to generate their output. However, the generated output is
8681 blended onto this image, resulting in partial or complete coverage of the
8682 output image.
8683
8684 The @ref{coreimagesrc} video source can be used for generating input images
8685 which are directly fed into the filter chain. By using it, providing input
8686 images by another video source or an input video is not required.
8687
8688 @subsection Examples
8689
8690 @itemize
8691
8692 @item
8693 List all filters available:
8694 @example
8695 coreimage=list_filters=true
8696 @end example
8697
8698 @item
8699 Use the CIBoxBlur filter with default options to blur an image:
8700 @example
8701 coreimage=filter=CIBoxBlur@@default
8702 @end example
8703
8704 @item
8705 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8706 its center at 100x100 and a radius of 50 pixels:
8707 @example
8708 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8709 @end example
8710
8711 @item
8712 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8713 given as complete and escaped command-line for Apple's standard bash shell:
8714 @example
8715 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8716 @end example
8717 @end itemize
8718
8719 @section cover_rect
8720
8721 Cover a rectangular object
8722
8723 It accepts the following options:
8724
8725 @table @option
8726 @item cover
8727 Filepath of the optional cover image, needs to be in yuv420.
8728
8729 @item mode
8730 Set covering mode.
8731
8732 It accepts the following values:
8733 @table @samp
8734 @item cover
8735 cover it by the supplied image
8736 @item blur
8737 cover it by interpolating the surrounding pixels
8738 @end table
8739
8740 Default value is @var{blur}.
8741 @end table
8742
8743 @subsection Examples
8744
8745 @itemize
8746 @item
8747 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8748 @example
8749 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8750 @end example
8751 @end itemize
8752
8753 @section crop
8754
8755 Crop the input video to given dimensions.
8756
8757 It accepts the following parameters:
8758
8759 @table @option
8760 @item w, out_w
8761 The width of the output video. It defaults to @code{iw}.
8762 This expression is evaluated only once during the filter
8763 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8764
8765 @item h, out_h
8766 The height of the output video. It defaults to @code{ih}.
8767 This expression is evaluated only once during the filter
8768 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8769
8770 @item x
8771 The horizontal position, in the input video, of the left edge of the output
8772 video. It defaults to @code{(in_w-out_w)/2}.
8773 This expression is evaluated per-frame.
8774
8775 @item y
8776 The vertical position, in the input video, of the top edge of the output video.
8777 It defaults to @code{(in_h-out_h)/2}.
8778 This expression is evaluated per-frame.
8779
8780 @item keep_aspect
8781 If set to 1 will force the output display aspect ratio
8782 to be the same of the input, by changing the output sample aspect
8783 ratio. It defaults to 0.
8784
8785 @item exact
8786 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8787 width/height/x/y as specified and will not be rounded to nearest smaller value.
8788 It defaults to 0.
8789 @end table
8790
8791 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8792 expressions containing the following constants:
8793
8794 @table @option
8795 @item x
8796 @item y
8797 The computed values for @var{x} and @var{y}. They are evaluated for
8798 each new frame.
8799
8800 @item in_w
8801 @item in_h
8802 The input width and height.
8803
8804 @item iw
8805 @item ih
8806 These are the same as @var{in_w} and @var{in_h}.
8807
8808 @item out_w
8809 @item out_h
8810 The output (cropped) width and height.
8811
8812 @item ow
8813 @item oh
8814 These are the same as @var{out_w} and @var{out_h}.
8815
8816 @item a
8817 same as @var{iw} / @var{ih}
8818
8819 @item sar
8820 input sample aspect ratio
8821
8822 @item dar
8823 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8824
8825 @item hsub
8826 @item vsub
8827 horizontal and vertical chroma subsample values. For example for the
8828 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8829
8830 @item n
8831 The number of the input frame, starting from 0.
8832
8833 @item pos
8834 the position in the file of the input frame, NAN if unknown
8835
8836 @item t
8837 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8838
8839 @end table
8840
8841 The expression for @var{out_w} may depend on the value of @var{out_h},
8842 and the expression for @var{out_h} may depend on @var{out_w}, but they
8843 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8844 evaluated after @var{out_w} and @var{out_h}.
8845
8846 The @var{x} and @var{y} parameters specify the expressions for the
8847 position of the top-left corner of the output (non-cropped) area. They
8848 are evaluated for each frame. If the evaluated value is not valid, it
8849 is approximated to the nearest valid value.
8850
8851 The expression for @var{x} may depend on @var{y}, and the expression
8852 for @var{y} may depend on @var{x}.
8853
8854 @subsection Examples
8855
8856 @itemize
8857 @item
8858 Crop area with size 100x100 at position (12,34).
8859 @example
8860 crop=100:100:12:34
8861 @end example
8862
8863 Using named options, the example above becomes:
8864 @example
8865 crop=w=100:h=100:x=12:y=34
8866 @end example
8867
8868 @item
8869 Crop the central input area with size 100x100:
8870 @example
8871 crop=100:100
8872 @end example
8873
8874 @item
8875 Crop the central input area with size 2/3 of the input video:
8876 @example
8877 crop=2/3*in_w:2/3*in_h
8878 @end example
8879
8880 @item
8881 Crop the input video central square:
8882 @example
8883 crop=out_w=in_h
8884 crop=in_h
8885 @end example
8886
8887 @item
8888 Delimit the rectangle with the top-left corner placed at position
8889 100:100 and the right-bottom corner corresponding to the right-bottom
8890 corner of the input image.
8891 @example
8892 crop=in_w-100:in_h-100:100:100
8893 @end example
8894
8895 @item
8896 Crop 10 pixels from the left and right borders, and 20 pixels from
8897 the top and bottom borders
8898 @example
8899 crop=in_w-2*10:in_h-2*20
8900 @end example
8901
8902 @item
8903 Keep only the bottom right quarter of the input image:
8904 @example
8905 crop=in_w/2:in_h/2:in_w/2:in_h/2
8906 @end example
8907
8908 @item
8909 Crop height for getting Greek harmony:
8910 @example
8911 crop=in_w:1/PHI*in_w
8912 @end example
8913
8914 @item
8915 Apply trembling effect:
8916 @example
8917 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)
8918 @end example
8919
8920 @item
8921 Apply erratic camera effect depending on timestamp:
8922 @example
8923 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)"
8924 @end example
8925
8926 @item
8927 Set x depending on the value of y:
8928 @example
8929 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8930 @end example
8931 @end itemize
8932
8933 @subsection Commands
8934
8935 This filter supports the following commands:
8936 @table @option
8937 @item w, out_w
8938 @item h, out_h
8939 @item x
8940 @item y
8941 Set width/height of the output video and the horizontal/vertical position
8942 in the input video.
8943 The command accepts the same syntax of the corresponding option.
8944
8945 If the specified expression is not valid, it is kept at its current
8946 value.
8947 @end table
8948
8949 @section cropdetect
8950
8951 Auto-detect the crop size.
8952
8953 It calculates the necessary cropping parameters and prints the
8954 recommended parameters via the logging system. The detected dimensions
8955 correspond to the non-black area of the input video.
8956
8957 It accepts the following parameters:
8958
8959 @table @option
8960
8961 @item limit
8962 Set higher black value threshold, which can be optionally specified
8963 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8964 value greater to the set value is considered non-black. It defaults to 24.
8965 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8966 on the bitdepth of the pixel format.
8967
8968 @item round
8969 The value which the width/height should be divisible by. It defaults to
8970 16. The offset is automatically adjusted to center the video. Use 2 to
8971 get only even dimensions (needed for 4:2:2 video). 16 is best when
8972 encoding to most video codecs.
8973
8974 @item skip
8975 Set the number of initial frames for which evaluation is skipped.
8976 Default is 2. Range is 0 to INT_MAX.
8977
8978 @item reset_count, reset
8979 Set the counter that determines after how many frames cropdetect will
8980 reset the previously detected largest video area and start over to
8981 detect the current optimal crop area. Default value is 0.
8982
8983 This can be useful when channel logos distort the video area. 0
8984 indicates 'never reset', and returns the largest area encountered during
8985 playback.
8986 @end table
8987
8988 @anchor{cue}
8989 @section cue
8990
8991 Delay video filtering until a given wallclock timestamp. The filter first
8992 passes on @option{preroll} amount of frames, then it buffers at most
8993 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8994 it forwards the buffered frames and also any subsequent frames coming in its
8995 input.
8996
8997 The filter can be used synchronize the output of multiple ffmpeg processes for
8998 realtime output devices like decklink. By putting the delay in the filtering
8999 chain and pre-buffering frames the process can pass on data to output almost
9000 immediately after the target wallclock timestamp is reached.
9001
9002 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9003 some use cases.
9004
9005 @table @option
9006
9007 @item cue
9008 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9009
9010 @item preroll
9011 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9012
9013 @item buffer
9014 The maximum duration of content to buffer before waiting for the cue expressed
9015 in seconds. Default is 0.
9016
9017 @end table
9018
9019 @anchor{curves}
9020 @section curves
9021
9022 Apply color adjustments using curves.
9023
9024 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9025 component (red, green and blue) has its values defined by @var{N} key points
9026 tied from each other using a smooth curve. The x-axis represents the pixel
9027 values from the input frame, and the y-axis the new pixel values to be set for
9028 the output frame.
9029
9030 By default, a component curve is defined by the two points @var{(0;0)} and
9031 @var{(1;1)}. This creates a straight line where each original pixel value is
9032 "adjusted" to its own value, which means no change to the image.
9033
9034 The filter allows you to redefine these two points and add some more. A new
9035 curve (using a natural cubic spline interpolation) will be define to pass
9036 smoothly through all these new coordinates. The new defined points needs to be
9037 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9038 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9039 the vector spaces, the values will be clipped accordingly.
9040
9041 The filter accepts the following options:
9042
9043 @table @option
9044 @item preset
9045 Select one of the available color presets. This option can be used in addition
9046 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9047 options takes priority on the preset values.
9048 Available presets are:
9049 @table @samp
9050 @item none
9051 @item color_negative
9052 @item cross_process
9053 @item darker
9054 @item increase_contrast
9055 @item lighter
9056 @item linear_contrast
9057 @item medium_contrast
9058 @item negative
9059 @item strong_contrast
9060 @item vintage
9061 @end table
9062 Default is @code{none}.
9063 @item master, m
9064 Set the master key points. These points will define a second pass mapping. It
9065 is sometimes called a "luminance" or "value" mapping. It can be used with
9066 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9067 post-processing LUT.
9068 @item red, r
9069 Set the key points for the red component.
9070 @item green, g
9071 Set the key points for the green component.
9072 @item blue, b
9073 Set the key points for the blue component.
9074 @item all
9075 Set the key points for all components (not including master).
9076 Can be used in addition to the other key points component
9077 options. In this case, the unset component(s) will fallback on this
9078 @option{all} setting.
9079 @item psfile
9080 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9081 @item plot
9082 Save Gnuplot script of the curves in specified file.
9083 @end table
9084
9085 To avoid some filtergraph syntax conflicts, each key points list need to be
9086 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9087
9088 @subsection Examples
9089
9090 @itemize
9091 @item
9092 Increase slightly the middle level of blue:
9093 @example
9094 curves=blue='0/0 0.5/0.58 1/1'
9095 @end example
9096
9097 @item
9098 Vintage effect:
9099 @example
9100 curves=r='0/0.11 .42/.51 1/0.95':g='0/0 0.50/0.48 1/1':b='0/0.22 .49/.44 1/0.8'
9101 @end example
9102 Here we obtain the following coordinates for each components:
9103 @table @var
9104 @item red
9105 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9106 @item green
9107 @code{(0;0) (0.50;0.48) (1;1)}
9108 @item blue
9109 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9110 @end table
9111
9112 @item
9113 The previous example can also be achieved with the associated built-in preset:
9114 @example
9115 curves=preset=vintage
9116 @end example
9117
9118 @item
9119 Or simply:
9120 @example
9121 curves=vintage
9122 @end example
9123
9124 @item
9125 Use a Photoshop preset and redefine the points of the green component:
9126 @example
9127 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9128 @end example
9129
9130 @item
9131 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9132 and @command{gnuplot}:
9133 @example
9134 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9135 gnuplot -p /tmp/curves.plt
9136 @end example
9137 @end itemize
9138
9139 @section datascope
9140
9141 Video data analysis filter.
9142
9143 This filter shows hexadecimal pixel values of part of video.
9144
9145 The filter accepts the following options:
9146
9147 @table @option
9148 @item size, s
9149 Set output video size.
9150
9151 @item x
9152 Set x offset from where to pick pixels.
9153
9154 @item y
9155 Set y offset from where to pick pixels.
9156
9157 @item mode
9158 Set scope mode, can be one of the following:
9159 @table @samp
9160 @item mono
9161 Draw hexadecimal pixel values with white color on black background.
9162
9163 @item color
9164 Draw hexadecimal pixel values with input video pixel color on black
9165 background.
9166
9167 @item color2
9168 Draw hexadecimal pixel values on color background picked from input video,
9169 the text color is picked in such way so its always visible.
9170 @end table
9171
9172 @item axis
9173 Draw rows and columns numbers on left and top of video.
9174
9175 @item opacity
9176 Set background opacity.
9177
9178 @item format
9179 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9180 @end table
9181
9182 @section dblur
9183 Apply Directional blur filter.
9184
9185 The filter accepts the following options:
9186
9187 @table @option
9188 @item angle
9189 Set angle of directional blur. Default is @code{45}.
9190
9191 @item radius
9192 Set radius of directional blur. Default is @code{5}.
9193
9194 @item planes
9195 Set which planes to filter. By default all planes are filtered.
9196 @end table
9197
9198 @subsection Commands
9199 This filter supports same @ref{commands} as options.
9200 The command accepts the same syntax of the corresponding option.
9201
9202 If the specified expression is not valid, it is kept at its current
9203 value.
9204
9205 @section dctdnoiz
9206
9207 Denoise frames using 2D DCT (frequency domain filtering).
9208
9209 This filter is not designed for real time.
9210
9211 The filter accepts the following options:
9212
9213 @table @option
9214 @item sigma, s
9215 Set the noise sigma constant.
9216
9217 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9218 coefficient (absolute value) below this threshold with be dropped.
9219
9220 If you need a more advanced filtering, see @option{expr}.
9221
9222 Default is @code{0}.
9223
9224 @item overlap
9225 Set number overlapping pixels for each block. Since the filter can be slow, you
9226 may want to reduce this value, at the cost of a less effective filter and the
9227 risk of various artefacts.
9228
9229 If the overlapping value doesn't permit processing the whole input width or
9230 height, a warning will be displayed and according borders won't be denoised.
9231
9232 Default value is @var{blocksize}-1, which is the best possible setting.
9233
9234 @item expr, e
9235 Set the coefficient factor expression.
9236
9237 For each coefficient of a DCT block, this expression will be evaluated as a
9238 multiplier value for the coefficient.
9239
9240 If this is option is set, the @option{sigma} option will be ignored.
9241
9242 The absolute value of the coefficient can be accessed through the @var{c}
9243 variable.
9244
9245 @item n
9246 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9247 @var{blocksize}, which is the width and height of the processed blocks.
9248
9249 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9250 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9251 on the speed processing. Also, a larger block size does not necessarily means a
9252 better de-noising.
9253 @end table
9254
9255 @subsection Examples
9256
9257 Apply a denoise with a @option{sigma} of @code{4.5}:
9258 @example
9259 dctdnoiz=4.5
9260 @end example
9261
9262 The same operation can be achieved using the expression system:
9263 @example
9264 dctdnoiz=e='gte(c, 4.5*3)'
9265 @end example
9266
9267 Violent denoise using a block size of @code{16x16}:
9268 @example
9269 dctdnoiz=15:n=4
9270 @end example
9271
9272 @section deband
9273
9274 Remove banding artifacts from input video.
9275 It works by replacing banded pixels with average value of referenced pixels.
9276
9277 The filter accepts the following options:
9278
9279 @table @option
9280 @item 1thr
9281 @item 2thr
9282 @item 3thr
9283 @item 4thr
9284 Set banding detection threshold for each plane. Default is 0.02.
9285 Valid range is 0.00003 to 0.5.
9286 If difference between current pixel and reference pixel is less than threshold,
9287 it will be considered as banded.
9288
9289 @item range, r
9290 Banding detection range in pixels. Default is 16. If positive, random number
9291 in range 0 to set value will be used. If negative, exact absolute value
9292 will be used.
9293 The range defines square of four pixels around current pixel.
9294
9295 @item direction, d
9296 Set direction in radians from which four pixel will be compared. If positive,
9297 random direction from 0 to set direction will be picked. If negative, exact of
9298 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9299 will pick only pixels on same row and -PI/2 will pick only pixels on same
9300 column.
9301
9302 @item blur, b
9303 If enabled, current pixel is compared with average value of all four
9304 surrounding pixels. The default is enabled. If disabled current pixel is
9305 compared with all four surrounding pixels. The pixel is considered banded
9306 if only all four differences with surrounding pixels are less than threshold.
9307
9308 @item coupling, c
9309 If enabled, current pixel is changed if and only if all pixel components are banded,
9310 e.g. banding detection threshold is triggered for all color components.
9311 The default is disabled.
9312 @end table
9313
9314 @section deblock
9315
9316 Remove blocking artifacts from input video.
9317
9318 The filter accepts the following options:
9319
9320 @table @option
9321 @item filter
9322 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9323 This controls what kind of deblocking is applied.
9324
9325 @item block
9326 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9327
9328 @item alpha
9329 @item beta
9330 @item gamma
9331 @item delta
9332 Set blocking detection thresholds. Allowed range is 0 to 1.
9333 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9334 Using higher threshold gives more deblocking strength.
9335 Setting @var{alpha} controls threshold detection at exact edge of block.
9336 Remaining options controls threshold detection near the edge. Each one for
9337 below/above or left/right. Setting any of those to @var{0} disables
9338 deblocking.
9339
9340 @item planes
9341 Set planes to filter. Default is to filter all available planes.
9342 @end table
9343
9344 @subsection Examples
9345
9346 @itemize
9347 @item
9348 Deblock using weak filter and block size of 4 pixels.
9349 @example
9350 deblock=filter=weak:block=4
9351 @end example
9352
9353 @item
9354 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9355 deblocking more edges.
9356 @example
9357 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9358 @end example
9359
9360 @item
9361 Similar as above, but filter only first plane.
9362 @example
9363 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9364 @end example
9365
9366 @item
9367 Similar as above, but filter only second and third plane.
9368 @example
9369 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9370 @end example
9371 @end itemize
9372
9373 @anchor{decimate}
9374 @section decimate
9375
9376 Drop duplicated frames at regular intervals.
9377
9378 The filter accepts the following options:
9379
9380 @table @option
9381 @item cycle
9382 Set the number of frames from which one will be dropped. Setting this to
9383 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9384 Default is @code{5}.
9385
9386 @item dupthresh
9387 Set the threshold for duplicate detection. If the difference metric for a frame
9388 is less than or equal to this value, then it is declared as duplicate. Default
9389 is @code{1.1}
9390
9391 @item scthresh
9392 Set scene change threshold. Default is @code{15}.
9393
9394 @item blockx
9395 @item blocky
9396 Set the size of the x and y-axis blocks used during metric calculations.
9397 Larger blocks give better noise suppression, but also give worse detection of
9398 small movements. Must be a power of two. Default is @code{32}.
9399
9400 @item ppsrc
9401 Mark main input as a pre-processed input and activate clean source input
9402 stream. This allows the input to be pre-processed with various filters to help
9403 the metrics calculation while keeping the frame selection lossless. When set to
9404 @code{1}, the first stream is for the pre-processed input, and the second
9405 stream is the clean source from where the kept frames are chosen. Default is
9406 @code{0}.
9407
9408 @item chroma
9409 Set whether or not chroma is considered in the metric calculations. Default is
9410 @code{1}.
9411 @end table
9412
9413 @section deconvolve
9414
9415 Apply 2D deconvolution of video stream in frequency domain using second stream
9416 as impulse.
9417
9418 The filter accepts the following options:
9419
9420 @table @option
9421 @item planes
9422 Set which planes to process.
9423
9424 @item impulse
9425 Set which impulse video frames will be processed, can be @var{first}
9426 or @var{all}. Default is @var{all}.
9427
9428 @item noise
9429 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9430 and height are not same and not power of 2 or if stream prior to convolving
9431 had noise.
9432 @end table
9433
9434 The @code{deconvolve} filter also supports the @ref{framesync} options.
9435
9436 @section dedot
9437
9438 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9439
9440 It accepts the following options:
9441
9442 @table @option
9443 @item m
9444 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9445 @var{rainbows} for cross-color reduction.
9446
9447 @item lt
9448 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9449
9450 @item tl
9451 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9452
9453 @item tc
9454 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9455
9456 @item ct
9457 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9458 @end table
9459
9460 @section deflate
9461
9462 Apply deflate effect to the video.
9463
9464 This filter replaces the pixel by the local(3x3) average by taking into account
9465 only values lower than the pixel.
9466
9467 It accepts the following options:
9468
9469 @table @option
9470 @item threshold0
9471 @item threshold1
9472 @item threshold2
9473 @item threshold3
9474 Limit the maximum change for each plane, default is 65535.
9475 If 0, plane will remain unchanged.
9476 @end table
9477
9478 @subsection Commands
9479
9480 This filter supports the all above options as @ref{commands}.
9481
9482 @section deflicker
9483
9484 Remove temporal frame luminance variations.
9485
9486 It accepts the following options:
9487
9488 @table @option
9489 @item size, s
9490 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9491
9492 @item mode, m
9493 Set averaging mode to smooth temporal luminance variations.
9494
9495 Available values are:
9496 @table @samp
9497 @item am
9498 Arithmetic mean
9499
9500 @item gm
9501 Geometric mean
9502
9503 @item hm
9504 Harmonic mean
9505
9506 @item qm
9507 Quadratic mean
9508
9509 @item cm
9510 Cubic mean
9511
9512 @item pm
9513 Power mean
9514
9515 @item median
9516 Median
9517 @end table
9518
9519 @item bypass
9520 Do not actually modify frame. Useful when one only wants metadata.
9521 @end table
9522
9523 @section dejudder
9524
9525 Remove judder produced by partially interlaced telecined content.
9526
9527 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9528 source was partially telecined content then the output of @code{pullup,dejudder}
9529 will have a variable frame rate. May change the recorded frame rate of the
9530 container. Aside from that change, this filter will not affect constant frame
9531 rate video.
9532
9533 The option available in this filter is:
9534 @table @option
9535
9536 @item cycle
9537 Specify the length of the window over which the judder repeats.
9538
9539 Accepts any integer greater than 1. Useful values are:
9540 @table @samp
9541
9542 @item 4
9543 If the original was telecined from 24 to 30 fps (Film to NTSC).
9544
9545 @item 5
9546 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9547
9548 @item 20
9549 If a mixture of the two.
9550 @end table
9551
9552 The default is @samp{4}.
9553 @end table
9554
9555 @section delogo
9556
9557 Suppress a TV station logo by a simple interpolation of the surrounding
9558 pixels. Just set a rectangle covering the logo and watch it disappear
9559 (and sometimes something even uglier appear - your mileage may vary).
9560
9561 It accepts the following parameters:
9562 @table @option
9563
9564 @item x
9565 @item y
9566 Specify the top left corner coordinates of the logo. They must be
9567 specified.
9568
9569 @item w
9570 @item h
9571 Specify the width and height of the logo to clear. They must be
9572 specified.
9573
9574 @item band, t
9575 Specify the thickness of the fuzzy edge of the rectangle (added to
9576 @var{w} and @var{h}). The default value is 1. This option is
9577 deprecated, setting higher values should no longer be necessary and
9578 is not recommended.
9579
9580 @item show
9581 When set to 1, a green rectangle is drawn on the screen to simplify
9582 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9583 The default value is 0.
9584
9585 The rectangle is drawn on the outermost pixels which will be (partly)
9586 replaced with interpolated values. The values of the next pixels
9587 immediately outside this rectangle in each direction will be used to
9588 compute the interpolated pixel values inside the rectangle.
9589
9590 @end table
9591
9592 @subsection Examples
9593
9594 @itemize
9595 @item
9596 Set a rectangle covering the area with top left corner coordinates 0,0
9597 and size 100x77, and a band of size 10:
9598 @example
9599 delogo=x=0:y=0:w=100:h=77:band=10
9600 @end example
9601
9602 @end itemize
9603
9604 @anchor{derain}
9605 @section derain
9606
9607 Remove the rain in the input image/video by applying the derain methods based on
9608 convolutional neural networks. Supported models:
9609
9610 @itemize
9611 @item
9612 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9613 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9614 @end itemize
9615
9616 Training as well as model generation scripts are provided in
9617 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9618
9619 Native model files (.model) can be generated from TensorFlow model
9620 files (.pb) by using tools/python/convert.py
9621
9622 The filter accepts the following options:
9623
9624 @table @option
9625 @item filter_type
9626 Specify which filter to use. This option accepts the following values:
9627
9628 @table @samp
9629 @item derain
9630 Derain filter. To conduct derain filter, you need to use a derain model.
9631
9632 @item dehaze
9633 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9634 @end table
9635 Default value is @samp{derain}.
9636
9637 @item dnn_backend
9638 Specify which DNN backend to use for model loading and execution. This option accepts
9639 the following values:
9640
9641 @table @samp
9642 @item native
9643 Native implementation of DNN loading and execution.
9644
9645 @item tensorflow
9646 TensorFlow backend. To enable this backend you
9647 need to install the TensorFlow for C library (see
9648 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9649 @code{--enable-libtensorflow}
9650 @end table
9651 Default value is @samp{native}.
9652
9653 @item model
9654 Set path to model file specifying network architecture and its parameters.
9655 Note that different backends use different file formats. TensorFlow and native
9656 backend can load files for only its format.
9657 @end table
9658
9659 It can also be finished with @ref{dnn_processing} filter.
9660
9661 @section deshake
9662
9663 Attempt to fix small changes in horizontal and/or vertical shift. This
9664 filter helps remove camera shake from hand-holding a camera, bumping a
9665 tripod, moving on a vehicle, etc.
9666
9667 The filter accepts the following options:
9668
9669 @table @option
9670
9671 @item x
9672 @item y
9673 @item w
9674 @item h
9675 Specify a rectangular area where to limit the search for motion
9676 vectors.
9677 If desired the search for motion vectors can be limited to a
9678 rectangular area of the frame defined by its top left corner, width
9679 and height. These parameters have the same meaning as the drawbox
9680 filter which can be used to visualise the position of the bounding
9681 box.
9682
9683 This is useful when simultaneous movement of subjects within the frame
9684 might be confused for camera motion by the motion vector search.
9685
9686 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9687 then the full frame is used. This allows later options to be set
9688 without specifying the bounding box for the motion vector search.
9689
9690 Default - search the whole frame.
9691
9692 @item rx
9693 @item ry
9694 Specify the maximum extent of movement in x and y directions in the
9695 range 0-64 pixels. Default 16.
9696
9697 @item edge
9698 Specify how to generate pixels to fill blanks at the edge of the
9699 frame. Available values are:
9700 @table @samp
9701 @item blank, 0
9702 Fill zeroes at blank locations
9703 @item original, 1
9704 Original image at blank locations
9705 @item clamp, 2
9706 Extruded edge value at blank locations
9707 @item mirror, 3
9708 Mirrored edge at blank locations
9709 @end table
9710 Default value is @samp{mirror}.
9711
9712 @item blocksize
9713 Specify the blocksize to use for motion search. Range 4-128 pixels,
9714 default 8.
9715
9716 @item contrast
9717 Specify the contrast threshold for blocks. Only blocks with more than
9718 the specified contrast (difference between darkest and lightest
9719 pixels) will be considered. Range 1-255, default 125.
9720
9721 @item search
9722 Specify the search strategy. Available values are:
9723 @table @samp
9724 @item exhaustive, 0
9725 Set exhaustive search
9726 @item less, 1
9727 Set less exhaustive search.
9728 @end table
9729 Default value is @samp{exhaustive}.
9730
9731 @item filename
9732 If set then a detailed log of the motion search is written to the
9733 specified file.
9734
9735 @end table
9736
9737 @section despill
9738
9739 Remove unwanted contamination of foreground colors, caused by reflected color of
9740 greenscreen or bluescreen.
9741
9742 This filter accepts the following options:
9743
9744 @table @option
9745 @item type
9746 Set what type of despill to use.
9747
9748 @item mix
9749 Set how spillmap will be generated.
9750
9751 @item expand
9752 Set how much to get rid of still remaining spill.
9753
9754 @item red
9755 Controls amount of red in spill area.
9756
9757 @item green
9758 Controls amount of green in spill area.
9759 Should be -1 for greenscreen.
9760
9761 @item blue
9762 Controls amount of blue in spill area.
9763 Should be -1 for bluescreen.
9764
9765 @item brightness
9766 Controls brightness of spill area, preserving colors.
9767
9768 @item alpha
9769 Modify alpha from generated spillmap.
9770 @end table
9771
9772 @subsection Commands
9773
9774 This filter supports the all above options as @ref{commands}.
9775
9776 @section detelecine
9777
9778 Apply an exact inverse of the telecine operation. It requires a predefined
9779 pattern specified using the pattern option which must be the same as that passed
9780 to the telecine filter.
9781
9782 This filter accepts the following options:
9783
9784 @table @option
9785 @item first_field
9786 @table @samp
9787 @item top, t
9788 top field first
9789 @item bottom, b
9790 bottom field first
9791 The default value is @code{top}.
9792 @end table
9793
9794 @item pattern
9795 A string of numbers representing the pulldown pattern you wish to apply.
9796 The default value is @code{23}.
9797
9798 @item start_frame
9799 A number representing position of the first frame with respect to the telecine
9800 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9801 @end table
9802
9803 @section dilation
9804
9805 Apply dilation effect to the video.
9806
9807 This filter replaces the pixel by the local(3x3) maximum.
9808
9809 It accepts the following options:
9810
9811 @table @option
9812 @item threshold0
9813 @item threshold1
9814 @item threshold2
9815 @item threshold3
9816 Limit the maximum change for each plane, default is 65535.
9817 If 0, plane will remain unchanged.
9818
9819 @item coordinates
9820 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9821 pixels are used.
9822
9823 Flags to local 3x3 coordinates maps like this:
9824
9825     1 2 3
9826     4   5
9827     6 7 8
9828 @end table
9829
9830 @subsection Commands
9831
9832 This filter supports the all above options as @ref{commands}.
9833
9834 @section displace
9835
9836 Displace pixels as indicated by second and third input stream.
9837
9838 It takes three input streams and outputs one stream, the first input is the
9839 source, and second and third input are displacement maps.
9840
9841 The second input specifies how much to displace pixels along the
9842 x-axis, while the third input specifies how much to displace pixels
9843 along the y-axis.
9844 If one of displacement map streams terminates, last frame from that
9845 displacement map will be used.
9846
9847 Note that once generated, displacements maps can be reused over and over again.
9848
9849 A description of the accepted options follows.
9850
9851 @table @option
9852 @item edge
9853 Set displace behavior for pixels that are out of range.
9854
9855 Available values are:
9856 @table @samp
9857 @item blank
9858 Missing pixels are replaced by black pixels.
9859
9860 @item smear
9861 Adjacent pixels will spread out to replace missing pixels.
9862
9863 @item wrap
9864 Out of range pixels are wrapped so they point to pixels of other side.
9865
9866 @item mirror
9867 Out of range pixels will be replaced with mirrored pixels.
9868 @end table
9869 Default is @samp{smear}.
9870
9871 @end table
9872
9873 @subsection Examples
9874
9875 @itemize
9876 @item
9877 Add ripple effect to rgb input of video size hd720:
9878 @example
9879 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
9880 @end example
9881
9882 @item
9883 Add wave effect to rgb input of video size hd720:
9884 @example
9885 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
9886 @end example
9887 @end itemize
9888
9889 @anchor{dnn_processing}
9890 @section dnn_processing
9891
9892 Do image processing with deep neural networks. It works together with another filter
9893 which converts the pixel format of the Frame to what the dnn network requires.
9894
9895 The filter accepts the following options:
9896
9897 @table @option
9898 @item dnn_backend
9899 Specify which DNN backend to use for model loading and execution. This option accepts
9900 the following values:
9901
9902 @table @samp
9903 @item native
9904 Native implementation of DNN loading and execution.
9905
9906 @item tensorflow
9907 TensorFlow backend. To enable this backend you
9908 need to install the TensorFlow for C library (see
9909 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9910 @code{--enable-libtensorflow}
9911
9912 @item openvino
9913 OpenVINO backend. To enable this backend you
9914 need to build and install the OpenVINO for C library (see
9915 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9916 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9917 be needed if the header files and libraries are not installed into system path)
9918
9919 @end table
9920
9921 Default value is @samp{native}.
9922
9923 @item model
9924 Set path to model file specifying network architecture and its parameters.
9925 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9926 backend can load files for only its format.
9927
9928 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9929
9930 @item input
9931 Set the input name of the dnn network.
9932
9933 @item output
9934 Set the output name of the dnn network.
9935
9936 @end table
9937
9938 @subsection Examples
9939
9940 @itemize
9941 @item
9942 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9943 @example
9944 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9945 @end example
9946
9947 @item
9948 Halve the pixel value of the frame with format gray32f:
9949 @example
9950 ffmpeg -i input.jpg -vf format=grayf32,dnn_processing=model=halve_gray_float.model:input=dnn_in:output=dnn_out:dnn_backend=native -y out.native.png
9951 @end example
9952
9953 @item
9954 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9955 @example
9956 ./ffmpeg -i 480p.jpg -vf format=yuv420p,scale=w=iw*2:h=ih*2,dnn_processing=dnn_backend=tensorflow:model=srcnn.pb:input=x:output=y -y srcnn.jpg
9957 @end example
9958
9959 @item
9960 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9961 @example
9962 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9963 @end example
9964
9965 @end itemize
9966
9967 @section drawbox
9968
9969 Draw a colored box on the input image.
9970
9971 It accepts the following parameters:
9972
9973 @table @option
9974 @item x
9975 @item y
9976 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9977
9978 @item width, w
9979 @item height, h
9980 The expressions which specify the width and height of the box; if 0 they are interpreted as
9981 the input width and height. It defaults to 0.
9982
9983 @item color, c
9984 Specify the color of the box to write. For the general syntax of this option,
9985 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9986 value @code{invert} is used, the box edge color is the same as the
9987 video with inverted luma.
9988
9989 @item thickness, t
9990 The expression which sets the thickness of the box edge.
9991 A value of @code{fill} will create a filled box. Default value is @code{3}.
9992
9993 See below for the list of accepted constants.
9994
9995 @item replace
9996 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9997 will overwrite the video's color and alpha pixels.
9998 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9999 @end table
10000
10001 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10002 following constants:
10003
10004 @table @option
10005 @item dar
10006 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10007
10008 @item hsub
10009 @item vsub
10010 horizontal and vertical chroma subsample values. For example for the
10011 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10012
10013 @item in_h, ih
10014 @item in_w, iw
10015 The input width and height.
10016
10017 @item sar
10018 The input sample aspect ratio.
10019
10020 @item x
10021 @item y
10022 The x and y offset coordinates where the box is drawn.
10023
10024 @item w
10025 @item h
10026 The width and height of the drawn box.
10027
10028 @item t
10029 The thickness of the drawn box.
10030
10031 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10032 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10033
10034 @end table
10035
10036 @subsection Examples
10037
10038 @itemize
10039 @item
10040 Draw a black box around the edge of the input image:
10041 @example
10042 drawbox
10043 @end example
10044
10045 @item
10046 Draw a box with color red and an opacity of 50%:
10047 @example
10048 drawbox=10:20:200:60:red@@0.5
10049 @end example
10050
10051 The previous example can be specified as:
10052 @example
10053 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10054 @end example
10055
10056 @item
10057 Fill the box with pink color:
10058 @example
10059 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10060 @end example
10061
10062 @item
10063 Draw a 2-pixel red 2.40:1 mask:
10064 @example
10065 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
10066 @end example
10067 @end itemize
10068
10069 @subsection Commands
10070 This filter supports same commands as options.
10071 The command accepts the same syntax of the corresponding option.
10072
10073 If the specified expression is not valid, it is kept at its current
10074 value.
10075
10076 @anchor{drawgraph}
10077 @section drawgraph
10078 Draw a graph using input video metadata.
10079
10080 It accepts the following parameters:
10081
10082 @table @option
10083 @item m1
10084 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10085
10086 @item fg1
10087 Set 1st foreground color expression.
10088
10089 @item m2
10090 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10091
10092 @item fg2
10093 Set 2nd foreground color expression.
10094
10095 @item m3
10096 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10097
10098 @item fg3
10099 Set 3rd foreground color expression.
10100
10101 @item m4
10102 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10103
10104 @item fg4
10105 Set 4th foreground color expression.
10106
10107 @item min
10108 Set minimal value of metadata value.
10109
10110 @item max
10111 Set maximal value of metadata value.
10112
10113 @item bg
10114 Set graph background color. Default is white.
10115
10116 @item mode
10117 Set graph mode.
10118
10119 Available values for mode is:
10120 @table @samp
10121 @item bar
10122 @item dot
10123 @item line
10124 @end table
10125
10126 Default is @code{line}.
10127
10128 @item slide
10129 Set slide mode.
10130
10131 Available values for slide is:
10132 @table @samp
10133 @item frame
10134 Draw new frame when right border is reached.
10135
10136 @item replace
10137 Replace old columns with new ones.
10138
10139 @item scroll
10140 Scroll from right to left.
10141
10142 @item rscroll
10143 Scroll from left to right.
10144
10145 @item picture
10146 Draw single picture.
10147 @end table
10148
10149 Default is @code{frame}.
10150
10151 @item size
10152 Set size of graph video. For the syntax of this option, check the
10153 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10154 The default value is @code{900x256}.
10155
10156 @item rate, r
10157 Set the output frame rate. Default value is @code{25}.
10158
10159 The foreground color expressions can use the following variables:
10160 @table @option
10161 @item MIN
10162 Minimal value of metadata value.
10163
10164 @item MAX
10165 Maximal value of metadata value.
10166
10167 @item VAL
10168 Current metadata key value.
10169 @end table
10170
10171 The color is defined as 0xAABBGGRR.
10172 @end table
10173
10174 Example using metadata from @ref{signalstats} filter:
10175 @example
10176 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10177 @end example
10178
10179 Example using metadata from @ref{ebur128} filter:
10180 @example
10181 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10182 @end example
10183
10184 @section drawgrid
10185
10186 Draw a grid on the input image.
10187
10188 It accepts the following parameters:
10189
10190 @table @option
10191 @item x
10192 @item y
10193 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10194
10195 @item width, w
10196 @item height, h
10197 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10198 input width and height, respectively, minus @code{thickness}, so image gets
10199 framed. Default to 0.
10200
10201 @item color, c
10202 Specify the color of the grid. For the general syntax of this option,
10203 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10204 value @code{invert} is used, the grid color is the same as the
10205 video with inverted luma.
10206
10207 @item thickness, t
10208 The expression which sets the thickness of the grid line. Default value is @code{1}.
10209
10210 See below for the list of accepted constants.
10211
10212 @item replace
10213 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10214 will overwrite the video's color and alpha pixels.
10215 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10216 @end table
10217
10218 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10219 following constants:
10220
10221 @table @option
10222 @item dar
10223 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10224
10225 @item hsub
10226 @item vsub
10227 horizontal and vertical chroma subsample values. For example for the
10228 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10229
10230 @item in_h, ih
10231 @item in_w, iw
10232 The input grid cell width and height.
10233
10234 @item sar
10235 The input sample aspect ratio.
10236
10237 @item x
10238 @item y
10239 The x and y coordinates of some point of grid intersection (meant to configure offset).
10240
10241 @item w
10242 @item h
10243 The width and height of the drawn cell.
10244
10245 @item t
10246 The thickness of the drawn cell.
10247
10248 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10249 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10250
10251 @end table
10252
10253 @subsection Examples
10254
10255 @itemize
10256 @item
10257 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10258 @example
10259 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10260 @end example
10261
10262 @item
10263 Draw a white 3x3 grid with an opacity of 50%:
10264 @example
10265 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10266 @end example
10267 @end itemize
10268
10269 @subsection Commands
10270 This filter supports same commands as options.
10271 The command accepts the same syntax of the corresponding option.
10272
10273 If the specified expression is not valid, it is kept at its current
10274 value.
10275
10276 @anchor{drawtext}
10277 @section drawtext
10278
10279 Draw a text string or text from a specified file on top of a video, using the
10280 libfreetype library.
10281
10282 To enable compilation of this filter, you need to configure FFmpeg with
10283 @code{--enable-libfreetype}.
10284 To enable default font fallback and the @var{font} option you need to
10285 configure FFmpeg with @code{--enable-libfontconfig}.
10286 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10287 @code{--enable-libfribidi}.
10288
10289 @subsection Syntax
10290
10291 It accepts the following parameters:
10292
10293 @table @option
10294
10295 @item box
10296 Used to draw a box around text using the background color.
10297 The value must be either 1 (enable) or 0 (disable).
10298 The default value of @var{box} is 0.
10299
10300 @item boxborderw
10301 Set the width of the border to be drawn around the box using @var{boxcolor}.
10302 The default value of @var{boxborderw} is 0.
10303
10304 @item boxcolor
10305 The color to be used for drawing box around text. For the syntax of this
10306 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10307
10308 The default value of @var{boxcolor} is "white".
10309
10310 @item line_spacing
10311 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10312 The default value of @var{line_spacing} is 0.
10313
10314 @item borderw
10315 Set the width of the border to be drawn around the text using @var{bordercolor}.
10316 The default value of @var{borderw} is 0.
10317
10318 @item bordercolor
10319 Set the color to be used for drawing border around text. For the syntax of this
10320 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10321
10322 The default value of @var{bordercolor} is "black".
10323
10324 @item expansion
10325 Select how the @var{text} is expanded. Can be either @code{none},
10326 @code{strftime} (deprecated) or
10327 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10328 below for details.
10329
10330 @item basetime
10331 Set a start time for the count. Value is in microseconds. Only applied
10332 in the deprecated strftime expansion mode. To emulate in normal expansion
10333 mode use the @code{pts} function, supplying the start time (in seconds)
10334 as the second argument.
10335
10336 @item fix_bounds
10337 If true, check and fix text coords to avoid clipping.
10338
10339 @item fontcolor
10340 The color to be used for drawing fonts. For the syntax of this option, check
10341 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10342
10343 The default value of @var{fontcolor} is "black".
10344
10345 @item fontcolor_expr
10346 String which is expanded the same way as @var{text} to obtain dynamic
10347 @var{fontcolor} value. By default this option has empty value and is not
10348 processed. When this option is set, it overrides @var{fontcolor} option.
10349
10350 @item font
10351 The font family to be used for drawing text. By default Sans.
10352
10353 @item fontfile
10354 The font file to be used for drawing text. The path must be included.
10355 This parameter is mandatory if the fontconfig support is disabled.
10356
10357 @item alpha
10358 Draw the text applying alpha blending. The value can
10359 be a number between 0.0 and 1.0.
10360 The expression accepts the same variables @var{x, y} as well.
10361 The default value is 1.
10362 Please see @var{fontcolor_expr}.
10363
10364 @item fontsize
10365 The font size to be used for drawing text.
10366 The default value of @var{fontsize} is 16.
10367
10368 @item text_shaping
10369 If set to 1, attempt to shape the text (for example, reverse the order of
10370 right-to-left text and join Arabic characters) before drawing it.
10371 Otherwise, just draw the text exactly as given.
10372 By default 1 (if supported).
10373
10374 @item ft_load_flags
10375 The flags to be used for loading the fonts.
10376
10377 The flags map the corresponding flags supported by libfreetype, and are
10378 a combination of the following values:
10379 @table @var
10380 @item default
10381 @item no_scale
10382 @item no_hinting
10383 @item render
10384 @item no_bitmap
10385 @item vertical_layout
10386 @item force_autohint
10387 @item crop_bitmap
10388 @item pedantic
10389 @item ignore_global_advance_width
10390 @item no_recurse
10391 @item ignore_transform
10392 @item monochrome
10393 @item linear_design
10394 @item no_autohint
10395 @end table
10396
10397 Default value is "default".
10398
10399 For more information consult the documentation for the FT_LOAD_*
10400 libfreetype flags.
10401
10402 @item shadowcolor
10403 The color to be used for drawing a shadow behind the drawn text. For the
10404 syntax of this option, check the @ref{color syntax,,"Color" section in the
10405 ffmpeg-utils manual,ffmpeg-utils}.
10406
10407 The default value of @var{shadowcolor} is "black".
10408
10409 @item shadowx
10410 @item shadowy
10411 The x and y offsets for the text shadow position with respect to the
10412 position of the text. They can be either positive or negative
10413 values. The default value for both is "0".
10414
10415 @item start_number
10416 The starting frame number for the n/frame_num variable. The default value
10417 is "0".
10418
10419 @item tabsize
10420 The size in number of spaces to use for rendering the tab.
10421 Default value is 4.
10422
10423 @item timecode
10424 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10425 format. It can be used with or without text parameter. @var{timecode_rate}
10426 option must be specified.
10427
10428 @item timecode_rate, rate, r
10429 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10430 integer. Minimum value is "1".
10431 Drop-frame timecode is supported for frame rates 30 & 60.
10432
10433 @item tc24hmax
10434 If set to 1, the output of the timecode option will wrap around at 24 hours.
10435 Default is 0 (disabled).
10436
10437 @item text
10438 The text string to be drawn. The text must be a sequence of UTF-8
10439 encoded characters.
10440 This parameter is mandatory if no file is specified with the parameter
10441 @var{textfile}.
10442
10443 @item textfile
10444 A text file containing text to be drawn. The text must be a sequence
10445 of UTF-8 encoded characters.
10446
10447 This parameter is mandatory if no text string is specified with the
10448 parameter @var{text}.
10449
10450 If both @var{text} and @var{textfile} are specified, an error is thrown.
10451
10452 @item reload
10453 If set to 1, the @var{textfile} will be reloaded before each frame.
10454 Be sure to update it atomically, or it may be read partially, or even fail.
10455
10456 @item x
10457 @item y
10458 The expressions which specify the offsets where text will be drawn
10459 within the video frame. They are relative to the top/left border of the
10460 output image.
10461
10462 The default value of @var{x} and @var{y} is "0".
10463
10464 See below for the list of accepted constants and functions.
10465 @end table
10466
10467 The parameters for @var{x} and @var{y} are expressions containing the
10468 following constants and functions:
10469
10470 @table @option
10471 @item dar
10472 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10473
10474 @item hsub
10475 @item vsub
10476 horizontal and vertical chroma subsample values. For example for the
10477 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10478
10479 @item line_h, lh
10480 the height of each text line
10481
10482 @item main_h, h, H
10483 the input height
10484
10485 @item main_w, w, W
10486 the input width
10487
10488 @item max_glyph_a, ascent
10489 the maximum distance from the baseline to the highest/upper grid
10490 coordinate used to place a glyph outline point, for all the rendered
10491 glyphs.
10492 It is a positive value, due to the grid's orientation with the Y axis
10493 upwards.
10494
10495 @item max_glyph_d, descent
10496 the maximum distance from the baseline to the lowest grid coordinate
10497 used to place a glyph outline point, for all the rendered glyphs.
10498 This is a negative value, due to the grid's orientation, with the Y axis
10499 upwards.
10500
10501 @item max_glyph_h
10502 maximum glyph height, that is the maximum height for all the glyphs
10503 contained in the rendered text, it is equivalent to @var{ascent} -
10504 @var{descent}.
10505
10506 @item max_glyph_w
10507 maximum glyph width, that is the maximum width for all the glyphs
10508 contained in the rendered text
10509
10510 @item n
10511 the number of input frame, starting from 0
10512
10513 @item rand(min, max)
10514 return a random number included between @var{min} and @var{max}
10515
10516 @item sar
10517 The input sample aspect ratio.
10518
10519 @item t
10520 timestamp expressed in seconds, NAN if the input timestamp is unknown
10521
10522 @item text_h, th
10523 the height of the rendered text
10524
10525 @item text_w, tw
10526 the width of the rendered text
10527
10528 @item x
10529 @item y
10530 the x and y offset coordinates where the text is drawn.
10531
10532 These parameters allow the @var{x} and @var{y} expressions to refer
10533 to each other, so you can for example specify @code{y=x/dar}.
10534
10535 @item pict_type
10536 A one character description of the current frame's picture type.
10537
10538 @item pkt_pos
10539 The current packet's position in the input file or stream
10540 (in bytes, from the start of the input). A value of -1 indicates
10541 this info is not available.
10542
10543 @item pkt_duration
10544 The current packet's duration, in seconds.
10545
10546 @item pkt_size
10547 The current packet's size (in bytes).
10548 @end table
10549
10550 @anchor{drawtext_expansion}
10551 @subsection Text expansion
10552
10553 If @option{expansion} is set to @code{strftime},
10554 the filter recognizes strftime() sequences in the provided text and
10555 expands them accordingly. Check the documentation of strftime(). This
10556 feature is deprecated.
10557
10558 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10559
10560 If @option{expansion} is set to @code{normal} (which is the default),
10561 the following expansion mechanism is used.
10562
10563 The backslash character @samp{\}, followed by any character, always expands to
10564 the second character.
10565
10566 Sequences of the form @code{%@{...@}} are expanded. The text between the
10567 braces is a function name, possibly followed by arguments separated by ':'.
10568 If the arguments contain special characters or delimiters (':' or '@}'),
10569 they should be escaped.
10570
10571 Note that they probably must also be escaped as the value for the
10572 @option{text} option in the filter argument string and as the filter
10573 argument in the filtergraph description, and possibly also for the shell,
10574 that makes up to four levels of escaping; using a text file avoids these
10575 problems.
10576
10577 The following functions are available:
10578
10579 @table @command
10580
10581 @item expr, e
10582 The expression evaluation result.
10583
10584 It must take one argument specifying the expression to be evaluated,
10585 which accepts the same constants and functions as the @var{x} and
10586 @var{y} values. Note that not all constants should be used, for
10587 example the text size is not known when evaluating the expression, so
10588 the constants @var{text_w} and @var{text_h} will have an undefined
10589 value.
10590
10591 @item expr_int_format, eif
10592 Evaluate the expression's value and output as formatted integer.
10593
10594 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10595 The second argument specifies the output format. Allowed values are @samp{x},
10596 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10597 @code{printf} function.
10598 The third parameter is optional and sets the number of positions taken by the output.
10599 It can be used to add padding with zeros from the left.
10600
10601 @item gmtime
10602 The time at which the filter is running, expressed in UTC.
10603 It can accept an argument: a strftime() format string.
10604
10605 @item localtime
10606 The time at which the filter is running, expressed in the local time zone.
10607 It can accept an argument: a strftime() format string.
10608
10609 @item metadata
10610 Frame metadata. Takes one or two arguments.
10611
10612 The first argument is mandatory and specifies the metadata key.
10613
10614 The second argument is optional and specifies a default value, used when the
10615 metadata key is not found or empty.
10616
10617 Available metadata can be identified by inspecting entries
10618 starting with TAG included within each frame section
10619 printed by running @code{ffprobe -show_frames}.
10620
10621 String metadata generated in filters leading to
10622 the drawtext filter are also available.
10623
10624 @item n, frame_num
10625 The frame number, starting from 0.
10626
10627 @item pict_type
10628 A one character description of the current picture type.
10629
10630 @item pts
10631 The timestamp of the current frame.
10632 It can take up to three arguments.
10633
10634 The first argument is the format of the timestamp; it defaults to @code{flt}
10635 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10636 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10637 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10638 @code{localtime} stands for the timestamp of the frame formatted as
10639 local time zone time.
10640
10641 The second argument is an offset added to the timestamp.
10642
10643 If the format is set to @code{hms}, a third argument @code{24HH} may be
10644 supplied to present the hour part of the formatted timestamp in 24h format
10645 (00-23).
10646
10647 If the format is set to @code{localtime} or @code{gmtime},
10648 a third argument may be supplied: a strftime() format string.
10649 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10650 @end table
10651
10652 @subsection Commands
10653
10654 This filter supports altering parameters via commands:
10655 @table @option
10656 @item reinit
10657 Alter existing filter parameters.
10658
10659 Syntax for the argument is the same as for filter invocation, e.g.
10660
10661 @example
10662 fontsize=56:fontcolor=green:text='Hello World'
10663 @end example
10664
10665 Full filter invocation with sendcmd would look like this:
10666
10667 @example
10668 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10669 @end example
10670 @end table
10671
10672 If the entire argument can't be parsed or applied as valid values then the filter will
10673 continue with its existing parameters.
10674
10675 @subsection Examples
10676
10677 @itemize
10678 @item
10679 Draw "Test Text" with font FreeSerif, using the default values for the
10680 optional parameters.
10681
10682 @example
10683 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10684 @end example
10685
10686 @item
10687 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10688 and y=50 (counting from the top-left corner of the screen), text is
10689 yellow with a red box around it. Both the text and the box have an
10690 opacity of 20%.
10691
10692 @example
10693 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10694           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10695 @end example
10696
10697 Note that the double quotes are not necessary if spaces are not used
10698 within the parameter list.
10699
10700 @item
10701 Show the text at the center of the video frame:
10702 @example
10703 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10704 @end example
10705
10706 @item
10707 Show the text at a random position, switching to a new position every 30 seconds:
10708 @example
10709 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)"
10710 @end example
10711
10712 @item
10713 Show a text line sliding from right to left in the last row of the video
10714 frame. The file @file{LONG_LINE} is assumed to contain a single line
10715 with no newlines.
10716 @example
10717 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10718 @end example
10719
10720 @item
10721 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10722 @example
10723 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10724 @end example
10725
10726 @item
10727 Draw a single green letter "g", at the center of the input video.
10728 The glyph baseline is placed at half screen height.
10729 @example
10730 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10731 @end example
10732
10733 @item
10734 Show text for 1 second every 3 seconds:
10735 @example
10736 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10737 @end example
10738
10739 @item
10740 Use fontconfig to set the font. Note that the colons need to be escaped.
10741 @example
10742 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10743 @end example
10744
10745 @item
10746 Draw "Test Text" with font size dependent on height of the video.
10747 @example
10748 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10749 @end example
10750
10751 @item
10752 Print the date of a real-time encoding (see strftime(3)):
10753 @example
10754 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10755 @end example
10756
10757 @item
10758 Show text fading in and out (appearing/disappearing):
10759 @example
10760 #!/bin/sh
10761 DS=1.0 # display start
10762 DE=10.0 # display end
10763 FID=1.5 # fade in duration
10764 FOD=5 # fade out duration
10765 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 @}"
10766 @end example
10767
10768 @item
10769 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10770 and the @option{fontsize} value are included in the @option{y} offset.
10771 @example
10772 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10773 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10774 @end example
10775
10776 @item
10777 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10778 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10779 must have option @option{-export_path_metadata 1} for the special metadata fields
10780 to be available for filters.
10781 @example
10782 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10783 @end example
10784
10785 @end itemize
10786
10787 For more information about libfreetype, check:
10788 @url{http://www.freetype.org/}.
10789
10790 For more information about fontconfig, check:
10791 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10792
10793 For more information about libfribidi, check:
10794 @url{http://fribidi.org/}.
10795
10796 @section edgedetect
10797
10798 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10799
10800 The filter accepts the following options:
10801
10802 @table @option
10803 @item low
10804 @item high
10805 Set low and high threshold values used by the Canny thresholding
10806 algorithm.
10807
10808 The high threshold selects the "strong" edge pixels, which are then
10809 connected through 8-connectivity with the "weak" edge pixels selected
10810 by the low threshold.
10811
10812 @var{low} and @var{high} threshold values must be chosen in the range
10813 [0,1], and @var{low} should be lesser or equal to @var{high}.
10814
10815 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10816 is @code{50/255}.
10817
10818 @item mode
10819 Define the drawing mode.
10820
10821 @table @samp
10822 @item wires
10823 Draw white/gray wires on black background.
10824
10825 @item colormix
10826 Mix the colors to create a paint/cartoon effect.
10827
10828 @item canny
10829 Apply Canny edge detector on all selected planes.
10830 @end table
10831 Default value is @var{wires}.
10832
10833 @item planes
10834 Select planes for filtering. By default all available planes are filtered.
10835 @end table
10836
10837 @subsection Examples
10838
10839 @itemize
10840 @item
10841 Standard edge detection with custom values for the hysteresis thresholding:
10842 @example
10843 edgedetect=low=0.1:high=0.4
10844 @end example
10845
10846 @item
10847 Painting effect without thresholding:
10848 @example
10849 edgedetect=mode=colormix:high=0
10850 @end example
10851 @end itemize
10852
10853 @section elbg
10854
10855 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10856
10857 For each input image, the filter will compute the optimal mapping from
10858 the input to the output given the codebook length, that is the number
10859 of distinct output colors.
10860
10861 This filter accepts the following options.
10862
10863 @table @option
10864 @item codebook_length, l
10865 Set codebook length. The value must be a positive integer, and
10866 represents the number of distinct output colors. Default value is 256.
10867
10868 @item nb_steps, n
10869 Set the maximum number of iterations to apply for computing the optimal
10870 mapping. The higher the value the better the result and the higher the
10871 computation time. Default value is 1.
10872
10873 @item seed, s
10874 Set a random seed, must be an integer included between 0 and
10875 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10876 will try to use a good random seed on a best effort basis.
10877
10878 @item pal8
10879 Set pal8 output pixel format. This option does not work with codebook
10880 length greater than 256.
10881 @end table
10882
10883 @section entropy
10884
10885 Measure graylevel entropy in histogram of color channels of video frames.
10886
10887 It accepts the following parameters:
10888
10889 @table @option
10890 @item mode
10891 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10892
10893 @var{diff} mode measures entropy of histogram delta values, absolute differences
10894 between neighbour histogram values.
10895 @end table
10896
10897 @section eq
10898 Set brightness, contrast, saturation and approximate gamma adjustment.
10899
10900 The filter accepts the following options:
10901
10902 @table @option
10903 @item contrast
10904 Set the contrast expression. The value must be a float value in range
10905 @code{-1000.0} to @code{1000.0}. The default value is "1".
10906
10907 @item brightness
10908 Set the brightness expression. The value must be a float value in
10909 range @code{-1.0} to @code{1.0}. The default value is "0".
10910
10911 @item saturation
10912 Set the saturation expression. The value must be a float in
10913 range @code{0.0} to @code{3.0}. The default value is "1".
10914
10915 @item gamma
10916 Set the gamma expression. The value must be a float in range
10917 @code{0.1} to @code{10.0}.  The default value is "1".
10918
10919 @item gamma_r
10920 Set the gamma expression for red. The value must be a float in
10921 range @code{0.1} to @code{10.0}. The default value is "1".
10922
10923 @item gamma_g
10924 Set the gamma expression for green. The value must be a float in range
10925 @code{0.1} to @code{10.0}. The default value is "1".
10926
10927 @item gamma_b
10928 Set the gamma expression for blue. The value must be a float in range
10929 @code{0.1} to @code{10.0}. The default value is "1".
10930
10931 @item gamma_weight
10932 Set the gamma weight expression. It can be used to reduce the effect
10933 of a high gamma value on bright image areas, e.g. keep them from
10934 getting overamplified and just plain white. The value must be a float
10935 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10936 gamma correction all the way down while @code{1.0} leaves it at its
10937 full strength. Default is "1".
10938
10939 @item eval
10940 Set when the expressions for brightness, contrast, saturation and
10941 gamma expressions are evaluated.
10942
10943 It accepts the following values:
10944 @table @samp
10945 @item init
10946 only evaluate expressions once during the filter initialization or
10947 when a command is processed
10948
10949 @item frame
10950 evaluate expressions for each incoming frame
10951 @end table
10952
10953 Default value is @samp{init}.
10954 @end table
10955
10956 The expressions accept the following parameters:
10957 @table @option
10958 @item n
10959 frame count of the input frame starting from 0
10960
10961 @item pos
10962 byte position of the corresponding packet in the input file, NAN if
10963 unspecified
10964
10965 @item r
10966 frame rate of the input video, NAN if the input frame rate is unknown
10967
10968 @item t
10969 timestamp expressed in seconds, NAN if the input timestamp is unknown
10970 @end table
10971
10972 @subsection Commands
10973 The filter supports the following commands:
10974
10975 @table @option
10976 @item contrast
10977 Set the contrast expression.
10978
10979 @item brightness
10980 Set the brightness expression.
10981
10982 @item saturation
10983 Set the saturation expression.
10984
10985 @item gamma
10986 Set the gamma expression.
10987
10988 @item gamma_r
10989 Set the gamma_r expression.
10990
10991 @item gamma_g
10992 Set gamma_g expression.
10993
10994 @item gamma_b
10995 Set gamma_b expression.
10996
10997 @item gamma_weight
10998 Set gamma_weight expression.
10999
11000 The command accepts the same syntax of the corresponding option.
11001
11002 If the specified expression is not valid, it is kept at its current
11003 value.
11004
11005 @end table
11006
11007 @section erosion
11008
11009 Apply erosion effect to the video.
11010
11011 This filter replaces the pixel by the local(3x3) minimum.
11012
11013 It accepts the following options:
11014
11015 @table @option
11016 @item threshold0
11017 @item threshold1
11018 @item threshold2
11019 @item threshold3
11020 Limit the maximum change for each plane, default is 65535.
11021 If 0, plane will remain unchanged.
11022
11023 @item coordinates
11024 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11025 pixels are used.
11026
11027 Flags to local 3x3 coordinates maps like this:
11028
11029     1 2 3
11030     4   5
11031     6 7 8
11032 @end table
11033
11034 @subsection Commands
11035
11036 This filter supports the all above options as @ref{commands}.
11037
11038 @section extractplanes
11039
11040 Extract color channel components from input video stream into
11041 separate grayscale video streams.
11042
11043 The filter accepts the following option:
11044
11045 @table @option
11046 @item planes
11047 Set plane(s) to extract.
11048
11049 Available values for planes are:
11050 @table @samp
11051 @item y
11052 @item u
11053 @item v
11054 @item a
11055 @item r
11056 @item g
11057 @item b
11058 @end table
11059
11060 Choosing planes not available in the input will result in an error.
11061 That means you cannot select @code{r}, @code{g}, @code{b} planes
11062 with @code{y}, @code{u}, @code{v} planes at same time.
11063 @end table
11064
11065 @subsection Examples
11066
11067 @itemize
11068 @item
11069 Extract luma, u and v color channel component from input video frame
11070 into 3 grayscale outputs:
11071 @example
11072 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
11073 @end example
11074 @end itemize
11075
11076 @section fade
11077
11078 Apply a fade-in/out effect to the input video.
11079
11080 It accepts the following parameters:
11081
11082 @table @option
11083 @item type, t
11084 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11085 effect.
11086 Default is @code{in}.
11087
11088 @item start_frame, s
11089 Specify the number of the frame to start applying the fade
11090 effect at. Default is 0.
11091
11092 @item nb_frames, n
11093 The number of frames that the fade effect lasts. At the end of the
11094 fade-in effect, the output video will have the same intensity as the input video.
11095 At the end of the fade-out transition, the output video will be filled with the
11096 selected @option{color}.
11097 Default is 25.
11098
11099 @item alpha
11100 If set to 1, fade only alpha channel, if one exists on the input.
11101 Default value is 0.
11102
11103 @item start_time, st
11104 Specify the timestamp (in seconds) of the frame to start to apply the fade
11105 effect. If both start_frame and start_time are specified, the fade will start at
11106 whichever comes last.  Default is 0.
11107
11108 @item duration, d
11109 The number of seconds for which the fade effect has to last. At the end of the
11110 fade-in effect the output video will have the same intensity as the input video,
11111 at the end of the fade-out transition the output video will be filled with the
11112 selected @option{color}.
11113 If both duration and nb_frames are specified, duration is used. Default is 0
11114 (nb_frames is used by default).
11115
11116 @item color, c
11117 Specify the color of the fade. Default is "black".
11118 @end table
11119
11120 @subsection Examples
11121
11122 @itemize
11123 @item
11124 Fade in the first 30 frames of video:
11125 @example
11126 fade=in:0:30
11127 @end example
11128
11129 The command above is equivalent to:
11130 @example
11131 fade=t=in:s=0:n=30
11132 @end example
11133
11134 @item
11135 Fade out the last 45 frames of a 200-frame video:
11136 @example
11137 fade=out:155:45
11138 fade=type=out:start_frame=155:nb_frames=45
11139 @end example
11140
11141 @item
11142 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11143 @example
11144 fade=in:0:25, fade=out:975:25
11145 @end example
11146
11147 @item
11148 Make the first 5 frames yellow, then fade in from frame 5-24:
11149 @example
11150 fade=in:5:20:color=yellow
11151 @end example
11152
11153 @item
11154 Fade in alpha over first 25 frames of video:
11155 @example
11156 fade=in:0:25:alpha=1
11157 @end example
11158
11159 @item
11160 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11161 @example
11162 fade=t=in:st=5.5:d=0.5
11163 @end example
11164
11165 @end itemize
11166
11167 @section fftdnoiz
11168 Denoise frames using 3D FFT (frequency domain filtering).
11169
11170 The filter accepts the following options:
11171
11172 @table @option
11173 @item sigma
11174 Set the noise sigma constant. This sets denoising strength.
11175 Default value is 1. Allowed range is from 0 to 30.
11176 Using very high sigma with low overlap may give blocking artifacts.
11177
11178 @item amount
11179 Set amount of denoising. By default all detected noise is reduced.
11180 Default value is 1. Allowed range is from 0 to 1.
11181
11182 @item block
11183 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11184 Actual size of block in pixels is 2 to power of @var{block}, so by default
11185 block size in pixels is 2^4 which is 16.
11186
11187 @item overlap
11188 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11189
11190 @item prev
11191 Set number of previous frames to use for denoising. By default is set to 0.
11192
11193 @item next
11194 Set number of next frames to to use for denoising. By default is set to 0.
11195
11196 @item planes
11197 Set planes which will be filtered, by default are all available filtered
11198 except alpha.
11199 @end table
11200
11201 @section fftfilt
11202 Apply arbitrary expressions to samples in frequency domain
11203
11204 @table @option
11205 @item dc_Y
11206 Adjust the dc value (gain) of the luma plane of the image. The filter
11207 accepts an integer value in range @code{0} to @code{1000}. The default
11208 value is set to @code{0}.
11209
11210 @item dc_U
11211 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11212 filter accepts an integer value in range @code{0} to @code{1000}. The
11213 default value is set to @code{0}.
11214
11215 @item dc_V
11216 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11217 filter accepts an integer value in range @code{0} to @code{1000}. The
11218 default value is set to @code{0}.
11219
11220 @item weight_Y
11221 Set the frequency domain weight expression for the luma plane.
11222
11223 @item weight_U
11224 Set the frequency domain weight expression for the 1st chroma plane.
11225
11226 @item weight_V
11227 Set the frequency domain weight expression for the 2nd chroma plane.
11228
11229 @item eval
11230 Set when the expressions are evaluated.
11231
11232 It accepts the following values:
11233 @table @samp
11234 @item init
11235 Only evaluate expressions once during the filter initialization.
11236
11237 @item frame
11238 Evaluate expressions for each incoming frame.
11239 @end table
11240
11241 Default value is @samp{init}.
11242
11243 The filter accepts the following variables:
11244 @item X
11245 @item Y
11246 The coordinates of the current sample.
11247
11248 @item W
11249 @item H
11250 The width and height of the image.
11251
11252 @item N
11253 The number of input frame, starting from 0.
11254 @end table
11255
11256 @subsection Examples
11257
11258 @itemize
11259 @item
11260 High-pass:
11261 @example
11262 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11263 @end example
11264
11265 @item
11266 Low-pass:
11267 @example
11268 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11269 @end example
11270
11271 @item
11272 Sharpen:
11273 @example
11274 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11275 @end example
11276
11277 @item
11278 Blur:
11279 @example
11280 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11281 @end example
11282
11283 @end itemize
11284
11285 @section field
11286
11287 Extract a single field from an interlaced image using stride
11288 arithmetic to avoid wasting CPU time. The output frames are marked as
11289 non-interlaced.
11290
11291 The filter accepts the following options:
11292
11293 @table @option
11294 @item type
11295 Specify whether to extract the top (if the value is @code{0} or
11296 @code{top}) or the bottom field (if the value is @code{1} or
11297 @code{bottom}).
11298 @end table
11299
11300 @section fieldhint
11301
11302 Create new frames by copying the top and bottom fields from surrounding frames
11303 supplied as numbers by the hint file.
11304
11305 @table @option
11306 @item hint
11307 Set file containing hints: absolute/relative frame numbers.
11308
11309 There must be one line for each frame in a clip. Each line must contain two
11310 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11311 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11312 is current frame number for @code{absolute} mode or out of [-1, 1] range
11313 for @code{relative} mode. First number tells from which frame to pick up top
11314 field and second number tells from which frame to pick up bottom field.
11315
11316 If optionally followed by @code{+} output frame will be marked as interlaced,
11317 else if followed by @code{-} output frame will be marked as progressive, else
11318 it will be marked same as input frame.
11319 If optionally followed by @code{t} output frame will use only top field, or in
11320 case of @code{b} it will use only bottom field.
11321 If line starts with @code{#} or @code{;} that line is skipped.
11322
11323 @item mode
11324 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11325 @end table
11326
11327 Example of first several lines of @code{hint} file for @code{relative} mode:
11328 @example
11329 0,0 - # first frame
11330 1,0 - # second frame, use third's frame top field and second's frame bottom field
11331 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11332 1,0 -
11333 0,0 -
11334 0,0 -
11335 1,0 -
11336 1,0 -
11337 1,0 -
11338 0,0 -
11339 0,0 -
11340 1,0 -
11341 1,0 -
11342 1,0 -
11343 0,0 -
11344 @end example
11345
11346 @section fieldmatch
11347
11348 Field matching filter for inverse telecine. It is meant to reconstruct the
11349 progressive frames from a telecined stream. The filter does not drop duplicated
11350 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11351 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11352
11353 The separation of the field matching and the decimation is notably motivated by
11354 the possibility of inserting a de-interlacing filter fallback between the two.
11355 If the source has mixed telecined and real interlaced content,
11356 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11357 But these remaining combed frames will be marked as interlaced, and thus can be
11358 de-interlaced by a later filter such as @ref{yadif} before decimation.
11359
11360 In addition to the various configuration options, @code{fieldmatch} can take an
11361 optional second stream, activated through the @option{ppsrc} option. If
11362 enabled, the frames reconstruction will be based on the fields and frames from
11363 this second stream. This allows the first input to be pre-processed in order to
11364 help the various algorithms of the filter, while keeping the output lossless
11365 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11366 or brightness/contrast adjustments can help.
11367
11368 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11369 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11370 which @code{fieldmatch} is based on. While the semantic and usage are very
11371 close, some behaviour and options names can differ.
11372
11373 The @ref{decimate} filter currently only works for constant frame rate input.
11374 If your input has mixed telecined (30fps) and progressive content with a lower
11375 framerate like 24fps use the following filterchain to produce the necessary cfr
11376 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11377
11378 The filter accepts the following options:
11379
11380 @table @option
11381 @item order
11382 Specify the assumed field order of the input stream. Available values are:
11383
11384 @table @samp
11385 @item auto
11386 Auto detect parity (use FFmpeg's internal parity value).
11387 @item bff
11388 Assume bottom field first.
11389 @item tff
11390 Assume top field first.
11391 @end table
11392
11393 Note that it is sometimes recommended not to trust the parity announced by the
11394 stream.
11395
11396 Default value is @var{auto}.
11397
11398 @item mode
11399 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11400 sense that it won't risk creating jerkiness due to duplicate frames when
11401 possible, but if there are bad edits or blended fields it will end up
11402 outputting combed frames when a good match might actually exist. On the other
11403 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11404 but will almost always find a good frame if there is one. The other values are
11405 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11406 jerkiness and creating duplicate frames versus finding good matches in sections
11407 with bad edits, orphaned fields, blended fields, etc.
11408
11409 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11410
11411 Available values are:
11412
11413 @table @samp
11414 @item pc
11415 2-way matching (p/c)
11416 @item pc_n
11417 2-way matching, and trying 3rd match if still combed (p/c + n)
11418 @item pc_u
11419 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11420 @item pc_n_ub
11421 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11422 still combed (p/c + n + u/b)
11423 @item pcn
11424 3-way matching (p/c/n)
11425 @item pcn_ub
11426 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11427 detected as combed (p/c/n + u/b)
11428 @end table
11429
11430 The parenthesis at the end indicate the matches that would be used for that
11431 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11432 @var{top}).
11433
11434 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11435 the slowest.
11436
11437 Default value is @var{pc_n}.
11438
11439 @item ppsrc
11440 Mark the main input stream as a pre-processed input, and enable the secondary
11441 input stream as the clean source to pick the fields from. See the filter
11442 introduction for more details. It is similar to the @option{clip2} feature from
11443 VFM/TFM.
11444
11445 Default value is @code{0} (disabled).
11446
11447 @item field
11448 Set the field to match from. It is recommended to set this to the same value as
11449 @option{order} unless you experience matching failures with that setting. In
11450 certain circumstances changing the field that is used to match from can have a
11451 large impact on matching performance. Available values are:
11452
11453 @table @samp
11454 @item auto
11455 Automatic (same value as @option{order}).
11456 @item bottom
11457 Match from the bottom field.
11458 @item top
11459 Match from the top field.
11460 @end table
11461
11462 Default value is @var{auto}.
11463
11464 @item mchroma
11465 Set whether or not chroma is included during the match comparisons. In most
11466 cases it is recommended to leave this enabled. You should set this to @code{0}
11467 only if your clip has bad chroma problems such as heavy rainbowing or other
11468 artifacts. Setting this to @code{0} could also be used to speed things up at
11469 the cost of some accuracy.
11470
11471 Default value is @code{1}.
11472
11473 @item y0
11474 @item y1
11475 These define an exclusion band which excludes the lines between @option{y0} and
11476 @option{y1} from being included in the field matching decision. An exclusion
11477 band can be used to ignore subtitles, a logo, or other things that may
11478 interfere with the matching. @option{y0} sets the starting scan line and
11479 @option{y1} sets the ending line; all lines in between @option{y0} and
11480 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11481 @option{y0} and @option{y1} to the same value will disable the feature.
11482 @option{y0} and @option{y1} defaults to @code{0}.
11483
11484 @item scthresh
11485 Set the scene change detection threshold as a percentage of maximum change on
11486 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11487 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11488 @option{scthresh} is @code{[0.0, 100.0]}.
11489
11490 Default value is @code{12.0}.
11491
11492 @item combmatch
11493 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11494 account the combed scores of matches when deciding what match to use as the
11495 final match. Available values are:
11496
11497 @table @samp
11498 @item none
11499 No final matching based on combed scores.
11500 @item sc
11501 Combed scores are only used when a scene change is detected.
11502 @item full
11503 Use combed scores all the time.
11504 @end table
11505
11506 Default is @var{sc}.
11507
11508 @item combdbg
11509 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11510 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11511 Available values are:
11512
11513 @table @samp
11514 @item none
11515 No forced calculation.
11516 @item pcn
11517 Force p/c/n calculations.
11518 @item pcnub
11519 Force p/c/n/u/b calculations.
11520 @end table
11521
11522 Default value is @var{none}.
11523
11524 @item cthresh
11525 This is the area combing threshold used for combed frame detection. This
11526 essentially controls how "strong" or "visible" combing must be to be detected.
11527 Larger values mean combing must be more visible and smaller values mean combing
11528 can be less visible or strong and still be detected. Valid settings are from
11529 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11530 be detected as combed). This is basically a pixel difference value. A good
11531 range is @code{[8, 12]}.
11532
11533 Default value is @code{9}.
11534
11535 @item chroma
11536 Sets whether or not chroma is considered in the combed frame decision.  Only
11537 disable this if your source has chroma problems (rainbowing, etc.) that are
11538 causing problems for the combed frame detection with chroma enabled. Actually,
11539 using @option{chroma}=@var{0} is usually more reliable, except for the case
11540 where there is chroma only combing in the source.
11541
11542 Default value is @code{0}.
11543
11544 @item blockx
11545 @item blocky
11546 Respectively set the x-axis and y-axis size of the window used during combed
11547 frame detection. This has to do with the size of the area in which
11548 @option{combpel} pixels are required to be detected as combed for a frame to be
11549 declared combed. See the @option{combpel} parameter description for more info.
11550 Possible values are any number that is a power of 2 starting at 4 and going up
11551 to 512.
11552
11553 Default value is @code{16}.
11554
11555 @item combpel
11556 The number of combed pixels inside any of the @option{blocky} by
11557 @option{blockx} size blocks on the frame for the frame to be detected as
11558 combed. While @option{cthresh} controls how "visible" the combing must be, this
11559 setting controls "how much" combing there must be in any localized area (a
11560 window defined by the @option{blockx} and @option{blocky} settings) on the
11561 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11562 which point no frames will ever be detected as combed). This setting is known
11563 as @option{MI} in TFM/VFM vocabulary.
11564
11565 Default value is @code{80}.
11566 @end table
11567
11568 @anchor{p/c/n/u/b meaning}
11569 @subsection p/c/n/u/b meaning
11570
11571 @subsubsection p/c/n
11572
11573 We assume the following telecined stream:
11574
11575 @example
11576 Top fields:     1 2 2 3 4
11577 Bottom fields:  1 2 3 4 4
11578 @end example
11579
11580 The numbers correspond to the progressive frame the fields relate to. Here, the
11581 first two frames are progressive, the 3rd and 4th are combed, and so on.
11582
11583 When @code{fieldmatch} is configured to run a matching from bottom
11584 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11585
11586 @example
11587 Input stream:
11588                 T     1 2 2 3 4
11589                 B     1 2 3 4 4   <-- matching reference
11590
11591 Matches:              c c n n c
11592
11593 Output stream:
11594                 T     1 2 3 4 4
11595                 B     1 2 3 4 4
11596 @end example
11597
11598 As a result of the field matching, we can see that some frames get duplicated.
11599 To perform a complete inverse telecine, you need to rely on a decimation filter
11600 after this operation. See for instance the @ref{decimate} filter.
11601
11602 The same operation now matching from top fields (@option{field}=@var{top})
11603 looks like this:
11604
11605 @example
11606 Input stream:
11607                 T     1 2 2 3 4   <-- matching reference
11608                 B     1 2 3 4 4
11609
11610 Matches:              c c p p c
11611
11612 Output stream:
11613                 T     1 2 2 3 4
11614                 B     1 2 2 3 4
11615 @end example
11616
11617 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11618 basically, they refer to the frame and field of the opposite parity:
11619
11620 @itemize
11621 @item @var{p} matches the field of the opposite parity in the previous frame
11622 @item @var{c} matches the field of the opposite parity in the current frame
11623 @item @var{n} matches the field of the opposite parity in the next frame
11624 @end itemize
11625
11626 @subsubsection u/b
11627
11628 The @var{u} and @var{b} matching are a bit special in the sense that they match
11629 from the opposite parity flag. In the following examples, we assume that we are
11630 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11631 'x' is placed above and below each matched fields.
11632
11633 With bottom matching (@option{field}=@var{bottom}):
11634 @example
11635 Match:           c         p           n          b          u
11636
11637                  x       x               x        x          x
11638   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11639   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11640                  x         x           x        x              x
11641
11642 Output frames:
11643                  2          1          2          2          2
11644                  2          2          2          1          3
11645 @end example
11646
11647 With top matching (@option{field}=@var{top}):
11648 @example
11649 Match:           c         p           n          b          u
11650
11651                  x         x           x        x              x
11652   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11653   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11654                  x       x               x        x          x
11655
11656 Output frames:
11657                  2          2          2          1          2
11658                  2          1          3          2          2
11659 @end example
11660
11661 @subsection Examples
11662
11663 Simple IVTC of a top field first telecined stream:
11664 @example
11665 fieldmatch=order=tff:combmatch=none, decimate
11666 @end example
11667
11668 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11669 @example
11670 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11671 @end example
11672
11673 @section fieldorder
11674
11675 Transform the field order of the input video.
11676
11677 It accepts the following parameters:
11678
11679 @table @option
11680
11681 @item order
11682 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11683 for bottom field first.
11684 @end table
11685
11686 The default value is @samp{tff}.
11687
11688 The transformation is done by shifting the picture content up or down
11689 by one line, and filling the remaining line with appropriate picture content.
11690 This method is consistent with most broadcast field order converters.
11691
11692 If the input video is not flagged as being interlaced, or it is already
11693 flagged as being of the required output field order, then this filter does
11694 not alter the incoming video.
11695
11696 It is very useful when converting to or from PAL DV material,
11697 which is bottom field first.
11698
11699 For example:
11700 @example
11701 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11702 @end example
11703
11704 @section fifo, afifo
11705
11706 Buffer input images and send them when they are requested.
11707
11708 It is mainly useful when auto-inserted by the libavfilter
11709 framework.
11710
11711 It does not take parameters.
11712
11713 @section fillborders
11714
11715 Fill borders of the input video, without changing video stream dimensions.
11716 Sometimes video can have garbage at the four edges and you may not want to
11717 crop video input to keep size multiple of some number.
11718
11719 This filter accepts the following options:
11720
11721 @table @option
11722 @item left
11723 Number of pixels to fill from left border.
11724
11725 @item right
11726 Number of pixels to fill from right border.
11727
11728 @item top
11729 Number of pixels to fill from top border.
11730
11731 @item bottom
11732 Number of pixels to fill from bottom border.
11733
11734 @item mode
11735 Set fill mode.
11736
11737 It accepts the following values:
11738 @table @samp
11739 @item smear
11740 fill pixels using outermost pixels
11741
11742 @item mirror
11743 fill pixels using mirroring
11744
11745 @item fixed
11746 fill pixels with constant value
11747 @end table
11748
11749 Default is @var{smear}.
11750
11751 @item color
11752 Set color for pixels in fixed mode. Default is @var{black}.
11753 @end table
11754
11755 @subsection Commands
11756 This filter supports same @ref{commands} as options.
11757 The command accepts the same syntax of the corresponding option.
11758
11759 If the specified expression is not valid, it is kept at its current
11760 value.
11761
11762 @section find_rect
11763
11764 Find a rectangular object
11765
11766 It accepts the following options:
11767
11768 @table @option
11769 @item object
11770 Filepath of the object image, needs to be in gray8.
11771
11772 @item threshold
11773 Detection threshold, default is 0.5.
11774
11775 @item mipmaps
11776 Number of mipmaps, default is 3.
11777
11778 @item xmin, ymin, xmax, ymax
11779 Specifies the rectangle in which to search.
11780 @end table
11781
11782 @subsection Examples
11783
11784 @itemize
11785 @item
11786 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11787 @example
11788 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11789 @end example
11790 @end itemize
11791
11792 @section floodfill
11793
11794 Flood area with values of same pixel components with another values.
11795
11796 It accepts the following options:
11797 @table @option
11798 @item x
11799 Set pixel x coordinate.
11800
11801 @item y
11802 Set pixel y coordinate.
11803
11804 @item s0
11805 Set source #0 component value.
11806
11807 @item s1
11808 Set source #1 component value.
11809
11810 @item s2
11811 Set source #2 component value.
11812
11813 @item s3
11814 Set source #3 component value.
11815
11816 @item d0
11817 Set destination #0 component value.
11818
11819 @item d1
11820 Set destination #1 component value.
11821
11822 @item d2
11823 Set destination #2 component value.
11824
11825 @item d3
11826 Set destination #3 component value.
11827 @end table
11828
11829 @anchor{format}
11830 @section format
11831
11832 Convert the input video to one of the specified pixel formats.
11833 Libavfilter will try to pick one that is suitable as input to
11834 the next filter.
11835
11836 It accepts the following parameters:
11837 @table @option
11838
11839 @item pix_fmts
11840 A '|'-separated list of pixel format names, such as
11841 "pix_fmts=yuv420p|monow|rgb24".
11842
11843 @end table
11844
11845 @subsection Examples
11846
11847 @itemize
11848 @item
11849 Convert the input video to the @var{yuv420p} format
11850 @example
11851 format=pix_fmts=yuv420p
11852 @end example
11853
11854 Convert the input video to any of the formats in the list
11855 @example
11856 format=pix_fmts=yuv420p|yuv444p|yuv410p
11857 @end example
11858 @end itemize
11859
11860 @anchor{fps}
11861 @section fps
11862
11863 Convert the video to specified constant frame rate by duplicating or dropping
11864 frames as necessary.
11865
11866 It accepts the following parameters:
11867 @table @option
11868
11869 @item fps
11870 The desired output frame rate. The default is @code{25}.
11871
11872 @item start_time
11873 Assume the first PTS should be the given value, in seconds. This allows for
11874 padding/trimming at the start of stream. By default, no assumption is made
11875 about the first frame's expected PTS, so no padding or trimming is done.
11876 For example, this could be set to 0 to pad the beginning with duplicates of
11877 the first frame if a video stream starts after the audio stream or to trim any
11878 frames with a negative PTS.
11879
11880 @item round
11881 Timestamp (PTS) rounding method.
11882
11883 Possible values are:
11884 @table @option
11885 @item zero
11886 round towards 0
11887 @item inf
11888 round away from 0
11889 @item down
11890 round towards -infinity
11891 @item up
11892 round towards +infinity
11893 @item near
11894 round to nearest
11895 @end table
11896 The default is @code{near}.
11897
11898 @item eof_action
11899 Action performed when reading the last frame.
11900
11901 Possible values are:
11902 @table @option
11903 @item round
11904 Use same timestamp rounding method as used for other frames.
11905 @item pass
11906 Pass through last frame if input duration has not been reached yet.
11907 @end table
11908 The default is @code{round}.
11909
11910 @end table
11911
11912 Alternatively, the options can be specified as a flat string:
11913 @var{fps}[:@var{start_time}[:@var{round}]].
11914
11915 See also the @ref{setpts} filter.
11916
11917 @subsection Examples
11918
11919 @itemize
11920 @item
11921 A typical usage in order to set the fps to 25:
11922 @example
11923 fps=fps=25
11924 @end example
11925
11926 @item
11927 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11928 @example
11929 fps=fps=film:round=near
11930 @end example
11931 @end itemize
11932
11933 @section framepack
11934
11935 Pack two different video streams into a stereoscopic video, setting proper
11936 metadata on supported codecs. The two views should have the same size and
11937 framerate and processing will stop when the shorter video ends. Please note
11938 that you may conveniently adjust view properties with the @ref{scale} and
11939 @ref{fps} filters.
11940
11941 It accepts the following parameters:
11942 @table @option
11943
11944 @item format
11945 The desired packing format. Supported values are:
11946
11947 @table @option
11948
11949 @item sbs
11950 The views are next to each other (default).
11951
11952 @item tab
11953 The views are on top of each other.
11954
11955 @item lines
11956 The views are packed by line.
11957
11958 @item columns
11959 The views are packed by column.
11960
11961 @item frameseq
11962 The views are temporally interleaved.
11963
11964 @end table
11965
11966 @end table
11967
11968 Some examples:
11969
11970 @example
11971 # Convert left and right views into a frame-sequential video
11972 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11973
11974 # Convert views into a side-by-side video with the same output resolution as the input
11975 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
11976 @end example
11977
11978 @section framerate
11979
11980 Change the frame rate by interpolating new video output frames from the source
11981 frames.
11982
11983 This filter is not designed to function correctly with interlaced media. If
11984 you wish to change the frame rate of interlaced media then you are required
11985 to deinterlace before this filter and re-interlace after this filter.
11986
11987 A description of the accepted options follows.
11988
11989 @table @option
11990 @item fps
11991 Specify the output frames per second. This option can also be specified
11992 as a value alone. The default is @code{50}.
11993
11994 @item interp_start
11995 Specify the start of a range where the output frame will be created as a
11996 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11997 the default is @code{15}.
11998
11999 @item interp_end
12000 Specify the end of a range where the output frame will be created as a
12001 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12002 the default is @code{240}.
12003
12004 @item scene
12005 Specify the level at which a scene change is detected as a value between
12006 0 and 100 to indicate a new scene; a low value reflects a low
12007 probability for the current frame to introduce a new scene, while a higher
12008 value means the current frame is more likely to be one.
12009 The default is @code{8.2}.
12010
12011 @item flags
12012 Specify flags influencing the filter process.
12013
12014 Available value for @var{flags} is:
12015
12016 @table @option
12017 @item scene_change_detect, scd
12018 Enable scene change detection using the value of the option @var{scene}.
12019 This flag is enabled by default.
12020 @end table
12021 @end table
12022
12023 @section framestep
12024
12025 Select one frame every N-th frame.
12026
12027 This filter accepts the following option:
12028 @table @option
12029 @item step
12030 Select frame after every @code{step} frames.
12031 Allowed values are positive integers higher than 0. Default value is @code{1}.
12032 @end table
12033
12034 @section freezedetect
12035
12036 Detect frozen video.
12037
12038 This filter logs a message and sets frame metadata when it detects that the
12039 input video has no significant change in content during a specified duration.
12040 Video freeze detection calculates the mean average absolute difference of all
12041 the components of video frames and compares it to a noise floor.
12042
12043 The printed times and duration are expressed in seconds. The
12044 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12045 whose timestamp equals or exceeds the detection duration and it contains the
12046 timestamp of the first frame of the freeze. The
12047 @code{lavfi.freezedetect.freeze_duration} and
12048 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12049 after the freeze.
12050
12051 The filter accepts the following options:
12052
12053 @table @option
12054 @item noise, n
12055 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12056 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12057 0.001.
12058
12059 @item duration, d
12060 Set freeze duration until notification (default is 2 seconds).
12061 @end table
12062
12063 @section freezeframes
12064
12065 Freeze video frames.
12066
12067 This filter freezes video frames using frame from 2nd input.
12068
12069 The filter accepts the following options:
12070
12071 @table @option
12072 @item first
12073 Set number of first frame from which to start freeze.
12074
12075 @item last
12076 Set number of last frame from which to end freeze.
12077
12078 @item replace
12079 Set number of frame from 2nd input which will be used instead of replaced frames.
12080 @end table
12081
12082 @anchor{frei0r}
12083 @section frei0r
12084
12085 Apply a frei0r effect to the input video.
12086
12087 To enable the compilation of this filter, you need to install the frei0r
12088 header and configure FFmpeg with @code{--enable-frei0r}.
12089
12090 It accepts the following parameters:
12091
12092 @table @option
12093
12094 @item filter_name
12095 The name of the frei0r effect to load. If the environment variable
12096 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12097 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12098 Otherwise, the standard frei0r paths are searched, in this order:
12099 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12100 @file{/usr/lib/frei0r-1/}.
12101
12102 @item filter_params
12103 A '|'-separated list of parameters to pass to the frei0r effect.
12104
12105 @end table
12106
12107 A frei0r effect parameter can be a boolean (its value is either
12108 "y" or "n"), a double, a color (specified as
12109 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12110 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12111 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12112 a position (specified as @var{X}/@var{Y}, where
12113 @var{X} and @var{Y} are floating point numbers) and/or a string.
12114
12115 The number and types of parameters depend on the loaded effect. If an
12116 effect parameter is not specified, the default value is set.
12117
12118 @subsection Examples
12119
12120 @itemize
12121 @item
12122 Apply the distort0r effect, setting the first two double parameters:
12123 @example
12124 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12125 @end example
12126
12127 @item
12128 Apply the colordistance effect, taking a color as the first parameter:
12129 @example
12130 frei0r=colordistance:0.2/0.3/0.4
12131 frei0r=colordistance:violet
12132 frei0r=colordistance:0x112233
12133 @end example
12134
12135 @item
12136 Apply the perspective effect, specifying the top left and top right image
12137 positions:
12138 @example
12139 frei0r=perspective:0.2/0.2|0.8/0.2
12140 @end example
12141 @end itemize
12142
12143 For more information, see
12144 @url{http://frei0r.dyne.org}
12145
12146 @subsection Commands
12147
12148 This filter supports the @option{filter_params} option as @ref{commands}.
12149
12150 @section fspp
12151
12152 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12153
12154 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12155 processing filter, one of them is performed once per block, not per pixel.
12156 This allows for much higher speed.
12157
12158 The filter accepts the following options:
12159
12160 @table @option
12161 @item quality
12162 Set quality. This option defines the number of levels for averaging. It accepts
12163 an integer in the range 4-5. Default value is @code{4}.
12164
12165 @item qp
12166 Force a constant quantization parameter. It accepts an integer in range 0-63.
12167 If not set, the filter will use the QP from the video stream (if available).
12168
12169 @item strength
12170 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12171 more details but also more artifacts, while higher values make the image smoother
12172 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12173
12174 @item use_bframe_qp
12175 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12176 option may cause flicker since the B-Frames have often larger QP. Default is
12177 @code{0} (not enabled).
12178
12179 @end table
12180
12181 @section gblur
12182
12183 Apply Gaussian blur filter.
12184
12185 The filter accepts the following options:
12186
12187 @table @option
12188 @item sigma
12189 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12190
12191 @item steps
12192 Set number of steps for Gaussian approximation. Default is @code{1}.
12193
12194 @item planes
12195 Set which planes to filter. By default all planes are filtered.
12196
12197 @item sigmaV
12198 Set vertical sigma, if negative it will be same as @code{sigma}.
12199 Default is @code{-1}.
12200 @end table
12201
12202 @subsection Commands
12203 This filter supports same commands as options.
12204 The command accepts the same syntax of the corresponding option.
12205
12206 If the specified expression is not valid, it is kept at its current
12207 value.
12208
12209 @section geq
12210
12211 Apply generic equation to each pixel.
12212
12213 The filter accepts the following options:
12214
12215 @table @option
12216 @item lum_expr, lum
12217 Set the luminance expression.
12218 @item cb_expr, cb
12219 Set the chrominance blue expression.
12220 @item cr_expr, cr
12221 Set the chrominance red expression.
12222 @item alpha_expr, a
12223 Set the alpha expression.
12224 @item red_expr, r
12225 Set the red expression.
12226 @item green_expr, g
12227 Set the green expression.
12228 @item blue_expr, b
12229 Set the blue expression.
12230 @end table
12231
12232 The colorspace is selected according to the specified options. If one
12233 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12234 options is specified, the filter will automatically select a YCbCr
12235 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12236 @option{blue_expr} options is specified, it will select an RGB
12237 colorspace.
12238
12239 If one of the chrominance expression is not defined, it falls back on the other
12240 one. If no alpha expression is specified it will evaluate to opaque value.
12241 If none of chrominance expressions are specified, they will evaluate
12242 to the luminance expression.
12243
12244 The expressions can use the following variables and functions:
12245
12246 @table @option
12247 @item N
12248 The sequential number of the filtered frame, starting from @code{0}.
12249
12250 @item X
12251 @item Y
12252 The coordinates of the current sample.
12253
12254 @item W
12255 @item H
12256 The width and height of the image.
12257
12258 @item SW
12259 @item SH
12260 Width and height scale depending on the currently filtered plane. It is the
12261 ratio between the corresponding luma plane number of pixels and the current
12262 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12263 @code{0.5,0.5} for chroma planes.
12264
12265 @item T
12266 Time of the current frame, expressed in seconds.
12267
12268 @item p(x, y)
12269 Return the value of the pixel at location (@var{x},@var{y}) of the current
12270 plane.
12271
12272 @item lum(x, y)
12273 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12274 plane.
12275
12276 @item cb(x, y)
12277 Return the value of the pixel at location (@var{x},@var{y}) of the
12278 blue-difference chroma plane. Return 0 if there is no such plane.
12279
12280 @item cr(x, y)
12281 Return the value of the pixel at location (@var{x},@var{y}) of the
12282 red-difference chroma plane. Return 0 if there is no such plane.
12283
12284 @item r(x, y)
12285 @item g(x, y)
12286 @item b(x, y)
12287 Return the value of the pixel at location (@var{x},@var{y}) of the
12288 red/green/blue component. Return 0 if there is no such component.
12289
12290 @item alpha(x, y)
12291 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12292 plane. Return 0 if there is no such plane.
12293
12294 @item psum(x,y), lumsum(x, y), cbsum(x,y), crsum(x,y), rsum(x,y), gsum(x,y), bsum(x,y), alphasum(x,y)
12295 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12296 sums of samples within a rectangle. See the functions without the sum postfix.
12297
12298 @item interpolation
12299 Set one of interpolation methods:
12300 @table @option
12301 @item nearest, n
12302 @item bilinear, b
12303 @end table
12304 Default is bilinear.
12305 @end table
12306
12307 For functions, if @var{x} and @var{y} are outside the area, the value will be
12308 automatically clipped to the closer edge.
12309
12310 Please note that this filter can use multiple threads in which case each slice
12311 will have its own expression state. If you want to use only a single expression
12312 state because your expressions depend on previous state then you should limit
12313 the number of filter threads to 1.
12314
12315 @subsection Examples
12316
12317 @itemize
12318 @item
12319 Flip the image horizontally:
12320 @example
12321 geq=p(W-X\,Y)
12322 @end example
12323
12324 @item
12325 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12326 wavelength of 100 pixels:
12327 @example
12328 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12329 @end example
12330
12331 @item
12332 Generate a fancy enigmatic moving light:
12333 @example
12334 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
12335 @end example
12336
12337 @item
12338 Generate a quick emboss effect:
12339 @example
12340 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12341 @end example
12342
12343 @item
12344 Modify RGB components depending on pixel position:
12345 @example
12346 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12347 @end example
12348
12349 @item
12350 Create a radial gradient that is the same size as the input (also see
12351 the @ref{vignette} filter):
12352 @example
12353 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12354 @end example
12355 @end itemize
12356
12357 @section gradfun
12358
12359 Fix the banding artifacts that are sometimes introduced into nearly flat
12360 regions by truncation to 8-bit color depth.
12361 Interpolate the gradients that should go where the bands are, and
12362 dither them.
12363
12364 It is designed for playback only.  Do not use it prior to
12365 lossy compression, because compression tends to lose the dither and
12366 bring back the bands.
12367
12368 It accepts the following parameters:
12369
12370 @table @option
12371
12372 @item strength
12373 The maximum amount by which the filter will change any one pixel. This is also
12374 the threshold for detecting nearly flat regions. Acceptable values range from
12375 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12376 valid range.
12377
12378 @item radius
12379 The neighborhood to fit the gradient to. A larger radius makes for smoother
12380 gradients, but also prevents the filter from modifying the pixels near detailed
12381 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12382 values will be clipped to the valid range.
12383
12384 @end table
12385
12386 Alternatively, the options can be specified as a flat string:
12387 @var{strength}[:@var{radius}]
12388
12389 @subsection Examples
12390
12391 @itemize
12392 @item
12393 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12394 @example
12395 gradfun=3.5:8
12396 @end example
12397
12398 @item
12399 Specify radius, omitting the strength (which will fall-back to the default
12400 value):
12401 @example
12402 gradfun=radius=8
12403 @end example
12404
12405 @end itemize
12406
12407 @anchor{graphmonitor}
12408 @section graphmonitor
12409 Show various filtergraph stats.
12410
12411 With this filter one can debug complete filtergraph.
12412 Especially issues with links filling with queued frames.
12413
12414 The filter accepts the following options:
12415
12416 @table @option
12417 @item size, s
12418 Set video output size. Default is @var{hd720}.
12419
12420 @item opacity, o
12421 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12422
12423 @item mode, m
12424 Set output mode, can be @var{fulll} or @var{compact}.
12425 In @var{compact} mode only filters with some queued frames have displayed stats.
12426
12427 @item flags, f
12428 Set flags which enable which stats are shown in video.
12429
12430 Available values for flags are:
12431 @table @samp
12432 @item queue
12433 Display number of queued frames in each link.
12434
12435 @item frame_count_in
12436 Display number of frames taken from filter.
12437
12438 @item frame_count_out
12439 Display number of frames given out from filter.
12440
12441 @item pts
12442 Display current filtered frame pts.
12443
12444 @item time
12445 Display current filtered frame time.
12446
12447 @item timebase
12448 Display time base for filter link.
12449
12450 @item format
12451 Display used format for filter link.
12452
12453 @item size
12454 Display video size or number of audio channels in case of audio used by filter link.
12455
12456 @item rate
12457 Display video frame rate or sample rate in case of audio used by filter link.
12458
12459 @item eof
12460 Display link output status.
12461 @end table
12462
12463 @item rate, r
12464 Set upper limit for video rate of output stream, Default value is @var{25}.
12465 This guarantee that output video frame rate will not be higher than this value.
12466 @end table
12467
12468 @section greyedge
12469 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12470 and corrects the scene colors accordingly.
12471
12472 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12473
12474 The filter accepts the following options:
12475
12476 @table @option
12477 @item difford
12478 The order of differentiation to be applied on the scene. Must be chosen in the range
12479 [0,2] and default value is 1.
12480
12481 @item minknorm
12482 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12483 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12484 max value instead of calculating Minkowski distance.
12485
12486 @item sigma
12487 The standard deviation of Gaussian blur to be applied on the scene. Must be
12488 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12489 can't be equal to 0 if @var{difford} is greater than 0.
12490 @end table
12491
12492 @subsection Examples
12493 @itemize
12494
12495 @item
12496 Grey Edge:
12497 @example
12498 greyedge=difford=1:minknorm=5:sigma=2
12499 @end example
12500
12501 @item
12502 Max Edge:
12503 @example
12504 greyedge=difford=1:minknorm=0:sigma=2
12505 @end example
12506
12507 @end itemize
12508
12509 @anchor{haldclut}
12510 @section haldclut
12511
12512 Apply a Hald CLUT to a video stream.
12513
12514 First input is the video stream to process, and second one is the Hald CLUT.
12515 The Hald CLUT input can be a simple picture or a complete video stream.
12516
12517 The filter accepts the following options:
12518
12519 @table @option
12520 @item shortest
12521 Force termination when the shortest input terminates. Default is @code{0}.
12522 @item repeatlast
12523 Continue applying the last CLUT after the end of the stream. A value of
12524 @code{0} disable the filter after the last frame of the CLUT is reached.
12525 Default is @code{1}.
12526 @end table
12527
12528 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12529 filters share the same internals).
12530
12531 This filter also supports the @ref{framesync} options.
12532
12533 More information about the Hald CLUT can be found on Eskil Steenberg's website
12534 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12535
12536 @subsection Workflow examples
12537
12538 @subsubsection Hald CLUT video stream
12539
12540 Generate an identity Hald CLUT stream altered with various effects:
12541 @example
12542 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
12543 @end example
12544
12545 Note: make sure you use a lossless codec.
12546
12547 Then use it with @code{haldclut} to apply it on some random stream:
12548 @example
12549 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12550 @end example
12551
12552 The Hald CLUT will be applied to the 10 first seconds (duration of
12553 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12554 to the remaining frames of the @code{mandelbrot} stream.
12555
12556 @subsubsection Hald CLUT with preview
12557
12558 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12559 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12560 biggest possible square starting at the top left of the picture. The remaining
12561 padding pixels (bottom or right) will be ignored. This area can be used to add
12562 a preview of the Hald CLUT.
12563
12564 Typically, the following generated Hald CLUT will be supported by the
12565 @code{haldclut} filter:
12566
12567 @example
12568 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12569    pad=iw+320 [padded_clut];
12570    smptebars=s=320x256, split [a][b];
12571    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12572    [main][b] overlay=W-320" -frames:v 1 clut.png
12573 @end example
12574
12575 It contains the original and a preview of the effect of the CLUT: SMPTE color
12576 bars are displayed on the right-top, and below the same color bars processed by
12577 the color changes.
12578
12579 Then, the effect of this Hald CLUT can be visualized with:
12580 @example
12581 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12582 @end example
12583
12584 @section hflip
12585
12586 Flip the input video horizontally.
12587
12588 For example, to horizontally flip the input video with @command{ffmpeg}:
12589 @example
12590 ffmpeg -i in.avi -vf "hflip" out.avi
12591 @end example
12592
12593 @section histeq
12594 This filter applies a global color histogram equalization on a
12595 per-frame basis.
12596
12597 It can be used to correct video that has a compressed range of pixel
12598 intensities.  The filter redistributes the pixel intensities to
12599 equalize their distribution across the intensity range. It may be
12600 viewed as an "automatically adjusting contrast filter". This filter is
12601 useful only for correcting degraded or poorly captured source
12602 video.
12603
12604 The filter accepts the following options:
12605
12606 @table @option
12607 @item strength
12608 Determine the amount of equalization to be applied.  As the strength
12609 is reduced, the distribution of pixel intensities more-and-more
12610 approaches that of the input frame. The value must be a float number
12611 in the range [0,1] and defaults to 0.200.
12612
12613 @item intensity
12614 Set the maximum intensity that can generated and scale the output
12615 values appropriately.  The strength should be set as desired and then
12616 the intensity can be limited if needed to avoid washing-out. The value
12617 must be a float number in the range [0,1] and defaults to 0.210.
12618
12619 @item antibanding
12620 Set the antibanding level. If enabled the filter will randomly vary
12621 the luminance of output pixels by a small amount to avoid banding of
12622 the histogram. Possible values are @code{none}, @code{weak} or
12623 @code{strong}. It defaults to @code{none}.
12624 @end table
12625
12626 @anchor{histogram}
12627 @section histogram
12628
12629 Compute and draw a color distribution histogram for the input video.
12630
12631 The computed histogram is a representation of the color component
12632 distribution in an image.
12633
12634 Standard histogram displays the color components distribution in an image.
12635 Displays color graph for each color component. Shows distribution of
12636 the Y, U, V, A or R, G, B components, depending on input format, in the
12637 current frame. Below each graph a color component scale meter is shown.
12638
12639 The filter accepts the following options:
12640
12641 @table @option
12642 @item level_height
12643 Set height of level. Default value is @code{200}.
12644 Allowed range is [50, 2048].
12645
12646 @item scale_height
12647 Set height of color scale. Default value is @code{12}.
12648 Allowed range is [0, 40].
12649
12650 @item display_mode
12651 Set display mode.
12652 It accepts the following values:
12653 @table @samp
12654 @item stack
12655 Per color component graphs are placed below each other.
12656
12657 @item parade
12658 Per color component graphs are placed side by side.
12659
12660 @item overlay
12661 Presents information identical to that in the @code{parade}, except
12662 that the graphs representing color components are superimposed directly
12663 over one another.
12664 @end table
12665 Default is @code{stack}.
12666
12667 @item levels_mode
12668 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12669 Default is @code{linear}.
12670
12671 @item components
12672 Set what color components to display.
12673 Default is @code{7}.
12674
12675 @item fgopacity
12676 Set foreground opacity. Default is @code{0.7}.
12677
12678 @item bgopacity
12679 Set background opacity. Default is @code{0.5}.
12680 @end table
12681
12682 @subsection Examples
12683
12684 @itemize
12685
12686 @item
12687 Calculate and draw histogram:
12688 @example
12689 ffplay -i input -vf histogram
12690 @end example
12691
12692 @end itemize
12693
12694 @anchor{hqdn3d}
12695 @section hqdn3d
12696
12697 This is a high precision/quality 3d denoise filter. It aims to reduce
12698 image noise, producing smooth images and making still images really
12699 still. It should enhance compressibility.
12700
12701 It accepts the following optional parameters:
12702
12703 @table @option
12704 @item luma_spatial
12705 A non-negative floating point number which specifies spatial luma strength.
12706 It defaults to 4.0.
12707
12708 @item chroma_spatial
12709 A non-negative floating point number which specifies spatial chroma strength.
12710 It defaults to 3.0*@var{luma_spatial}/4.0.
12711
12712 @item luma_tmp
12713 A floating point number which specifies luma temporal strength. It defaults to
12714 6.0*@var{luma_spatial}/4.0.
12715
12716 @item chroma_tmp
12717 A floating point number which specifies chroma temporal strength. It defaults to
12718 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12719 @end table
12720
12721 @subsection Commands
12722 This filter supports same @ref{commands} as options.
12723 The command accepts the same syntax of the corresponding option.
12724
12725 If the specified expression is not valid, it is kept at its current
12726 value.
12727
12728 @anchor{hwdownload}
12729 @section hwdownload
12730
12731 Download hardware frames to system memory.
12732
12733 The input must be in hardware frames, and the output a non-hardware format.
12734 Not all formats will be supported on the output - it may be necessary to insert
12735 an additional @option{format} filter immediately following in the graph to get
12736 the output in a supported format.
12737
12738 @section hwmap
12739
12740 Map hardware frames to system memory or to another device.
12741
12742 This filter has several different modes of operation; which one is used depends
12743 on the input and output formats:
12744 @itemize
12745 @item
12746 Hardware frame input, normal frame output
12747
12748 Map the input frames to system memory and pass them to the output.  If the
12749 original hardware frame is later required (for example, after overlaying
12750 something else on part of it), the @option{hwmap} filter can be used again
12751 in the next mode to retrieve it.
12752 @item
12753 Normal frame input, hardware frame output
12754
12755 If the input is actually a software-mapped hardware frame, then unmap it -
12756 that is, return the original hardware frame.
12757
12758 Otherwise, a device must be provided.  Create new hardware surfaces on that
12759 device for the output, then map them back to the software format at the input
12760 and give those frames to the preceding filter.  This will then act like the
12761 @option{hwupload} filter, but may be able to avoid an additional copy when
12762 the input is already in a compatible format.
12763 @item
12764 Hardware frame input and output
12765
12766 A device must be supplied for the output, either directly or with the
12767 @option{derive_device} option.  The input and output devices must be of
12768 different types and compatible - the exact meaning of this is
12769 system-dependent, but typically it means that they must refer to the same
12770 underlying hardware context (for example, refer to the same graphics card).
12771
12772 If the input frames were originally created on the output device, then unmap
12773 to retrieve the original frames.
12774
12775 Otherwise, map the frames to the output device - create new hardware frames
12776 on the output corresponding to the frames on the input.
12777 @end itemize
12778
12779 The following additional parameters are accepted:
12780
12781 @table @option
12782 @item mode
12783 Set the frame mapping mode.  Some combination of:
12784 @table @var
12785 @item read
12786 The mapped frame should be readable.
12787 @item write
12788 The mapped frame should be writeable.
12789 @item overwrite
12790 The mapping will always overwrite the entire frame.
12791
12792 This may improve performance in some cases, as the original contents of the
12793 frame need not be loaded.
12794 @item direct
12795 The mapping must not involve any copying.
12796
12797 Indirect mappings to copies of frames are created in some cases where either
12798 direct mapping is not possible or it would have unexpected properties.
12799 Setting this flag ensures that the mapping is direct and will fail if that is
12800 not possible.
12801 @end table
12802 Defaults to @var{read+write} if not specified.
12803
12804 @item derive_device @var{type}
12805 Rather than using the device supplied at initialisation, instead derive a new
12806 device of type @var{type} from the device the input frames exist on.
12807
12808 @item reverse
12809 In a hardware to hardware mapping, map in reverse - create frames in the sink
12810 and map them back to the source.  This may be necessary in some cases where
12811 a mapping in one direction is required but only the opposite direction is
12812 supported by the devices being used.
12813
12814 This option is dangerous - it may break the preceding filter in undefined
12815 ways if there are any additional constraints on that filter's output.
12816 Do not use it without fully understanding the implications of its use.
12817 @end table
12818
12819 @anchor{hwupload}
12820 @section hwupload
12821
12822 Upload system memory frames to hardware surfaces.
12823
12824 The device to upload to must be supplied when the filter is initialised.  If
12825 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12826 option or with the @option{derive_device} option.  The input and output devices
12827 must be of different types and compatible - the exact meaning of this is
12828 system-dependent, but typically it means that they must refer to the same
12829 underlying hardware context (for example, refer to the same graphics card).
12830
12831 The following additional parameters are accepted:
12832
12833 @table @option
12834 @item derive_device @var{type}
12835 Rather than using the device supplied at initialisation, instead derive a new
12836 device of type @var{type} from the device the input frames exist on.
12837 @end table
12838
12839 @anchor{hwupload_cuda}
12840 @section hwupload_cuda
12841
12842 Upload system memory frames to a CUDA device.
12843
12844 It accepts the following optional parameters:
12845
12846 @table @option
12847 @item device
12848 The number of the CUDA device to use
12849 @end table
12850
12851 @section hqx
12852
12853 Apply a high-quality magnification filter designed for pixel art. This filter
12854 was originally created by Maxim Stepin.
12855
12856 It accepts the following option:
12857
12858 @table @option
12859 @item n
12860 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12861 @code{hq3x} and @code{4} for @code{hq4x}.
12862 Default is @code{3}.
12863 @end table
12864
12865 @section hstack
12866 Stack input videos horizontally.
12867
12868 All streams must be of same pixel format and of same height.
12869
12870 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12871 to create same output.
12872
12873 The filter accepts the following option:
12874
12875 @table @option
12876 @item inputs
12877 Set number of input streams. Default is 2.
12878
12879 @item shortest
12880 If set to 1, force the output to terminate when the shortest input
12881 terminates. Default value is 0.
12882 @end table
12883
12884 @section hue
12885
12886 Modify the hue and/or the saturation of the input.
12887
12888 It accepts the following parameters:
12889
12890 @table @option
12891 @item h
12892 Specify the hue angle as a number of degrees. It accepts an expression,
12893 and defaults to "0".
12894
12895 @item s
12896 Specify the saturation in the [-10,10] range. It accepts an expression and
12897 defaults to "1".
12898
12899 @item H
12900 Specify the hue angle as a number of radians. It accepts an
12901 expression, and defaults to "0".
12902
12903 @item b
12904 Specify the brightness in the [-10,10] range. It accepts an expression and
12905 defaults to "0".
12906 @end table
12907
12908 @option{h} and @option{H} are mutually exclusive, and can't be
12909 specified at the same time.
12910
12911 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12912 expressions containing the following constants:
12913
12914 @table @option
12915 @item n
12916 frame count of the input frame starting from 0
12917
12918 @item pts
12919 presentation timestamp of the input frame expressed in time base units
12920
12921 @item r
12922 frame rate of the input video, NAN if the input frame rate is unknown
12923
12924 @item t
12925 timestamp expressed in seconds, NAN if the input timestamp is unknown
12926
12927 @item tb
12928 time base of the input video
12929 @end table
12930
12931 @subsection Examples
12932
12933 @itemize
12934 @item
12935 Set the hue to 90 degrees and the saturation to 1.0:
12936 @example
12937 hue=h=90:s=1
12938 @end example
12939
12940 @item
12941 Same command but expressing the hue in radians:
12942 @example
12943 hue=H=PI/2:s=1
12944 @end example
12945
12946 @item
12947 Rotate hue and make the saturation swing between 0
12948 and 2 over a period of 1 second:
12949 @example
12950 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12951 @end example
12952
12953 @item
12954 Apply a 3 seconds saturation fade-in effect starting at 0:
12955 @example
12956 hue="s=min(t/3\,1)"
12957 @end example
12958
12959 The general fade-in expression can be written as:
12960 @example
12961 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12962 @end example
12963
12964 @item
12965 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12966 @example
12967 hue="s=max(0\, min(1\, (8-t)/3))"
12968 @end example
12969
12970 The general fade-out expression can be written as:
12971 @example
12972 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12973 @end example
12974
12975 @end itemize
12976
12977 @subsection Commands
12978
12979 This filter supports the following commands:
12980 @table @option
12981 @item b
12982 @item s
12983 @item h
12984 @item H
12985 Modify the hue and/or the saturation and/or brightness of the input video.
12986 The command accepts the same syntax of the corresponding option.
12987
12988 If the specified expression is not valid, it is kept at its current
12989 value.
12990 @end table
12991
12992 @section hysteresis
12993
12994 Grow first stream into second stream by connecting components.
12995 This makes it possible to build more robust edge masks.
12996
12997 This filter accepts the following options:
12998
12999 @table @option
13000 @item planes
13001 Set which planes will be processed as bitmap, unprocessed planes will be
13002 copied from first stream.
13003 By default value 0xf, all planes will be processed.
13004
13005 @item threshold
13006 Set threshold which is used in filtering. If pixel component value is higher than
13007 this value filter algorithm for connecting components is activated.
13008 By default value is 0.
13009 @end table
13010
13011 The @code{hysteresis} filter also supports the @ref{framesync} options.
13012
13013 @section idet
13014
13015 Detect video interlacing type.
13016
13017 This filter tries to detect if the input frames are interlaced, progressive,
13018 top or bottom field first. It will also try to detect fields that are
13019 repeated between adjacent frames (a sign of telecine).
13020
13021 Single frame detection considers only immediately adjacent frames when classifying each frame.
13022 Multiple frame detection incorporates the classification history of previous frames.
13023
13024 The filter will log these metadata values:
13025
13026 @table @option
13027 @item single.current_frame
13028 Detected type of current frame using single-frame detection. One of:
13029 ``tff'' (top field first), ``bff'' (bottom field first),
13030 ``progressive'', or ``undetermined''
13031
13032 @item single.tff
13033 Cumulative number of frames detected as top field first using single-frame detection.
13034
13035 @item multiple.tff
13036 Cumulative number of frames detected as top field first using multiple-frame detection.
13037
13038 @item single.bff
13039 Cumulative number of frames detected as bottom field first using single-frame detection.
13040
13041 @item multiple.current_frame
13042 Detected type of current frame using multiple-frame detection. One of:
13043 ``tff'' (top field first), ``bff'' (bottom field first),
13044 ``progressive'', or ``undetermined''
13045
13046 @item multiple.bff
13047 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13048
13049 @item single.progressive
13050 Cumulative number of frames detected as progressive using single-frame detection.
13051
13052 @item multiple.progressive
13053 Cumulative number of frames detected as progressive using multiple-frame detection.
13054
13055 @item single.undetermined
13056 Cumulative number of frames that could not be classified using single-frame detection.
13057
13058 @item multiple.undetermined
13059 Cumulative number of frames that could not be classified using multiple-frame detection.
13060
13061 @item repeated.current_frame
13062 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13063
13064 @item repeated.neither
13065 Cumulative number of frames with no repeated field.
13066
13067 @item repeated.top
13068 Cumulative number of frames with the top field repeated from the previous frame's top field.
13069
13070 @item repeated.bottom
13071 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13072 @end table
13073
13074 The filter accepts the following options:
13075
13076 @table @option
13077 @item intl_thres
13078 Set interlacing threshold.
13079 @item prog_thres
13080 Set progressive threshold.
13081 @item rep_thres
13082 Threshold for repeated field detection.
13083 @item half_life
13084 Number of frames after which a given frame's contribution to the
13085 statistics is halved (i.e., it contributes only 0.5 to its
13086 classification). The default of 0 means that all frames seen are given
13087 full weight of 1.0 forever.
13088 @item analyze_interlaced_flag
13089 When this is not 0 then idet will use the specified number of frames to determine
13090 if the interlaced flag is accurate, it will not count undetermined frames.
13091 If the flag is found to be accurate it will be used without any further
13092 computations, if it is found to be inaccurate it will be cleared without any
13093 further computations. This allows inserting the idet filter as a low computational
13094 method to clean up the interlaced flag
13095 @end table
13096
13097 @section il
13098
13099 Deinterleave or interleave fields.
13100
13101 This filter allows one to process interlaced images fields without
13102 deinterlacing them. Deinterleaving splits the input frame into 2
13103 fields (so called half pictures). Odd lines are moved to the top
13104 half of the output image, even lines to the bottom half.
13105 You can process (filter) them independently and then re-interleave them.
13106
13107 The filter accepts the following options:
13108
13109 @table @option
13110 @item luma_mode, l
13111 @item chroma_mode, c
13112 @item alpha_mode, a
13113 Available values for @var{luma_mode}, @var{chroma_mode} and
13114 @var{alpha_mode} are:
13115
13116 @table @samp
13117 @item none
13118 Do nothing.
13119
13120 @item deinterleave, d
13121 Deinterleave fields, placing one above the other.
13122
13123 @item interleave, i
13124 Interleave fields. Reverse the effect of deinterleaving.
13125 @end table
13126 Default value is @code{none}.
13127
13128 @item luma_swap, ls
13129 @item chroma_swap, cs
13130 @item alpha_swap, as
13131 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13132 @end table
13133
13134 @subsection Commands
13135
13136 This filter supports the all above options as @ref{commands}.
13137
13138 @section inflate
13139
13140 Apply inflate effect to the video.
13141
13142 This filter replaces the pixel by the local(3x3) average by taking into account
13143 only values higher than the pixel.
13144
13145 It accepts the following options:
13146
13147 @table @option
13148 @item threshold0
13149 @item threshold1
13150 @item threshold2
13151 @item threshold3
13152 Limit the maximum change for each plane, default is 65535.
13153 If 0, plane will remain unchanged.
13154 @end table
13155
13156 @subsection Commands
13157
13158 This filter supports the all above options as @ref{commands}.
13159
13160 @section interlace
13161
13162 Simple interlacing filter from progressive contents. This interleaves upper (or
13163 lower) lines from odd frames with lower (or upper) lines from even frames,
13164 halving the frame rate and preserving image height.
13165
13166 @example
13167    Original        Original             New Frame
13168    Frame 'j'      Frame 'j+1'             (tff)
13169   ==========      ===========       ==================
13170     Line 0  -------------------->    Frame 'j' Line 0
13171     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13172     Line 2 --------------------->    Frame 'j' Line 2
13173     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13174      ...             ...                   ...
13175 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13176 @end example
13177
13178 It accepts the following optional parameters:
13179
13180 @table @option
13181 @item scan
13182 This determines whether the interlaced frame is taken from the even
13183 (tff - default) or odd (bff) lines of the progressive frame.
13184
13185 @item lowpass
13186 Vertical lowpass filter to avoid twitter interlacing and
13187 reduce moire patterns.
13188
13189 @table @samp
13190 @item 0, off
13191 Disable vertical lowpass filter
13192
13193 @item 1, linear
13194 Enable linear filter (default)
13195
13196 @item 2, complex
13197 Enable complex filter. This will slightly less reduce twitter and moire
13198 but better retain detail and subjective sharpness impression.
13199
13200 @end table
13201 @end table
13202
13203 @section kerndeint
13204
13205 Deinterlace input video by applying Donald Graft's adaptive kernel
13206 deinterling. Work on interlaced parts of a video to produce
13207 progressive frames.
13208
13209 The description of the accepted parameters follows.
13210
13211 @table @option
13212 @item thresh
13213 Set the threshold which affects the filter's tolerance when
13214 determining if a pixel line must be processed. It must be an integer
13215 in the range [0,255] and defaults to 10. A value of 0 will result in
13216 applying the process on every pixels.
13217
13218 @item map
13219 Paint pixels exceeding the threshold value to white if set to 1.
13220 Default is 0.
13221
13222 @item order
13223 Set the fields order. Swap fields if set to 1, leave fields alone if
13224 0. Default is 0.
13225
13226 @item sharp
13227 Enable additional sharpening if set to 1. Default is 0.
13228
13229 @item twoway
13230 Enable twoway sharpening if set to 1. Default is 0.
13231 @end table
13232
13233 @subsection Examples
13234
13235 @itemize
13236 @item
13237 Apply default values:
13238 @example
13239 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13240 @end example
13241
13242 @item
13243 Enable additional sharpening:
13244 @example
13245 kerndeint=sharp=1
13246 @end example
13247
13248 @item
13249 Paint processed pixels in white:
13250 @example
13251 kerndeint=map=1
13252 @end example
13253 @end itemize
13254
13255 @section lagfun
13256
13257 Slowly update darker pixels.
13258
13259 This filter makes short flashes of light appear longer.
13260 This filter accepts the following options:
13261
13262 @table @option
13263 @item decay
13264 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13265
13266 @item planes
13267 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13268 @end table
13269
13270 @section lenscorrection
13271
13272 Correct radial lens distortion
13273
13274 This filter can be used to correct for radial distortion as can result from the use
13275 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13276 one can use tools available for example as part of opencv or simply trial-and-error.
13277 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13278 and extract the k1 and k2 coefficients from the resulting matrix.
13279
13280 Note that effectively the same filter is available in the open-source tools Krita and
13281 Digikam from the KDE project.
13282
13283 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13284 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13285 brightness distribution, so you may want to use both filters together in certain
13286 cases, though you will have to take care of ordering, i.e. whether vignetting should
13287 be applied before or after lens correction.
13288
13289 @subsection Options
13290
13291 The filter accepts the following options:
13292
13293 @table @option
13294 @item cx
13295 Relative x-coordinate of the focal point of the image, and thereby the center of the
13296 distortion. This value has a range [0,1] and is expressed as fractions of the image
13297 width. Default is 0.5.
13298 @item cy
13299 Relative y-coordinate of the focal point of the image, and thereby the center of the
13300 distortion. This value has a range [0,1] and is expressed as fractions of the image
13301 height. Default is 0.5.
13302 @item k1
13303 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13304 no correction. Default is 0.
13305 @item k2
13306 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13307 0 means no correction. Default is 0.
13308 @end table
13309
13310 The formula that generates the correction is:
13311
13312 @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)
13313
13314 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13315 distances from the focal point in the source and target images, respectively.
13316
13317 @section lensfun
13318
13319 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13320
13321 The @code{lensfun} filter requires the camera make, camera model, and lens model
13322 to apply the lens correction. The filter will load the lensfun database and
13323 query it to find the corresponding camera and lens entries in the database. As
13324 long as these entries can be found with the given options, the filter can
13325 perform corrections on frames. Note that incomplete strings will result in the
13326 filter choosing the best match with the given options, and the filter will
13327 output the chosen camera and lens models (logged with level "info"). You must
13328 provide the make, camera model, and lens model as they are required.
13329
13330 The filter accepts the following options:
13331
13332 @table @option
13333 @item make
13334 The make of the camera (for example, "Canon"). This option is required.
13335
13336 @item model
13337 The model of the camera (for example, "Canon EOS 100D"). This option is
13338 required.
13339
13340 @item lens_model
13341 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13342 option is required.
13343
13344 @item mode
13345 The type of correction to apply. The following values are valid options:
13346
13347 @table @samp
13348 @item vignetting
13349 Enables fixing lens vignetting.
13350
13351 @item geometry
13352 Enables fixing lens geometry. This is the default.
13353
13354 @item subpixel
13355 Enables fixing chromatic aberrations.
13356
13357 @item vig_geo
13358 Enables fixing lens vignetting and lens geometry.
13359
13360 @item vig_subpixel
13361 Enables fixing lens vignetting and chromatic aberrations.
13362
13363 @item distortion
13364 Enables fixing both lens geometry and chromatic aberrations.
13365
13366 @item all
13367 Enables all possible corrections.
13368
13369 @end table
13370 @item focal_length
13371 The focal length of the image/video (zoom; expected constant for video). For
13372 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13373 range should be chosen when using that lens. Default 18.
13374
13375 @item aperture
13376 The aperture of the image/video (expected constant for video). Note that
13377 aperture is only used for vignetting correction. Default 3.5.
13378
13379 @item focus_distance
13380 The focus distance of the image/video (expected constant for video). Note that
13381 focus distance is only used for vignetting and only slightly affects the
13382 vignetting correction process. If unknown, leave it at the default value (which
13383 is 1000).
13384
13385 @item scale
13386 The scale factor which is applied after transformation. After correction the
13387 video is no longer necessarily rectangular. This parameter controls how much of
13388 the resulting image is visible. The value 0 means that a value will be chosen
13389 automatically such that there is little or no unmapped area in the output
13390 image. 1.0 means that no additional scaling is done. Lower values may result
13391 in more of the corrected image being visible, while higher values may avoid
13392 unmapped areas in the output.
13393
13394 @item target_geometry
13395 The target geometry of the output image/video. The following values are valid
13396 options:
13397
13398 @table @samp
13399 @item rectilinear (default)
13400 @item fisheye
13401 @item panoramic
13402 @item equirectangular
13403 @item fisheye_orthographic
13404 @item fisheye_stereographic
13405 @item fisheye_equisolid
13406 @item fisheye_thoby
13407 @end table
13408 @item reverse
13409 Apply the reverse of image correction (instead of correcting distortion, apply
13410 it).
13411
13412 @item interpolation
13413 The type of interpolation used when correcting distortion. The following values
13414 are valid options:
13415
13416 @table @samp
13417 @item nearest
13418 @item linear (default)
13419 @item lanczos
13420 @end table
13421 @end table
13422
13423 @subsection Examples
13424
13425 @itemize
13426 @item
13427 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13428 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13429 aperture of "8.0".
13430
13431 @example
13432 ffmpeg -i input.mov -vf lensfun=make=Canon:model="Canon EOS 100D":lens_model="Canon EF-S 18-55mm f/3.5-5.6 IS STM":focal_length=18:aperture=8 -c:v h264 -b:v 8000k output.mov
13433 @end example
13434
13435 @item
13436 Apply the same as before, but only for the first 5 seconds of video.
13437
13438 @example
13439 ffmpeg -i input.mov -vf lensfun=make=Canon:model="Canon EOS 100D":lens_model="Canon EF-S 18-55mm f/3.5-5.6 IS STM":focal_length=18:aperture=8:enable='lte(t\,5)' -c:v h264 -b:v 8000k output.mov
13440 @end example
13441
13442 @end itemize
13443
13444 @section libvmaf
13445
13446 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13447 score between two input videos.
13448
13449 The obtained VMAF score is printed through the logging system.
13450
13451 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13452 After installing the library it can be enabled using:
13453 @code{./configure --enable-libvmaf}.
13454 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13455
13456 The filter has following options:
13457
13458 @table @option
13459 @item model_path
13460 Set the model path which is to be used for SVM.
13461 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13462
13463 @item log_path
13464 Set the file path to be used to store logs.
13465
13466 @item log_fmt
13467 Set the format of the log file (csv, json or xml).
13468
13469 @item enable_transform
13470 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13471 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13472 Default value: @code{false}
13473
13474 @item phone_model
13475 Invokes the phone model which will generate VMAF scores higher than in the
13476 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13477 Default value: @code{false}
13478
13479 @item psnr
13480 Enables computing psnr along with vmaf.
13481 Default value: @code{false}
13482
13483 @item ssim
13484 Enables computing ssim along with vmaf.
13485 Default value: @code{false}
13486
13487 @item ms_ssim
13488 Enables computing ms_ssim along with vmaf.
13489 Default value: @code{false}
13490
13491 @item pool
13492 Set the pool method to be used for computing vmaf.
13493 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13494
13495 @item n_threads
13496 Set number of threads to be used when computing vmaf.
13497 Default value: @code{0}, which makes use of all available logical processors.
13498
13499 @item n_subsample
13500 Set interval for frame subsampling used when computing vmaf.
13501 Default value: @code{1}
13502
13503 @item enable_conf_interval
13504 Enables confidence interval.
13505 Default value: @code{false}
13506 @end table
13507
13508 This filter also supports the @ref{framesync} options.
13509
13510 @subsection Examples
13511 @itemize
13512 @item
13513 On the below examples the input file @file{main.mpg} being processed is
13514 compared with the reference file @file{ref.mpg}.
13515
13516 @example
13517 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13518 @end example
13519
13520 @item
13521 Example with options:
13522 @example
13523 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13524 @end example
13525
13526 @item
13527 Example with options and different containers:
13528 @example
13529 ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]libvmaf=psnr=1:log_fmt=json" -f null -
13530 @end example
13531 @end itemize
13532
13533 @section limiter
13534
13535 Limits the pixel components values to the specified range [min, max].
13536
13537 The filter accepts the following options:
13538
13539 @table @option
13540 @item min
13541 Lower bound. Defaults to the lowest allowed value for the input.
13542
13543 @item max
13544 Upper bound. Defaults to the highest allowed value for the input.
13545
13546 @item planes
13547 Specify which planes will be processed. Defaults to all available.
13548 @end table
13549
13550 @section loop
13551
13552 Loop video frames.
13553
13554 The filter accepts the following options:
13555
13556 @table @option
13557 @item loop
13558 Set the number of loops. Setting this value to -1 will result in infinite loops.
13559 Default is 0.
13560
13561 @item size
13562 Set maximal size in number of frames. Default is 0.
13563
13564 @item start
13565 Set first frame of loop. Default is 0.
13566 @end table
13567
13568 @subsection Examples
13569
13570 @itemize
13571 @item
13572 Loop single first frame infinitely:
13573 @example
13574 loop=loop=-1:size=1:start=0
13575 @end example
13576
13577 @item
13578 Loop single first frame 10 times:
13579 @example
13580 loop=loop=10:size=1:start=0
13581 @end example
13582
13583 @item
13584 Loop 10 first frames 5 times:
13585 @example
13586 loop=loop=5:size=10:start=0
13587 @end example
13588 @end itemize
13589
13590 @section lut1d
13591
13592 Apply a 1D LUT to an input video.
13593
13594 The filter accepts the following options:
13595
13596 @table @option
13597 @item file
13598 Set the 1D LUT file name.
13599
13600 Currently supported formats:
13601 @table @samp
13602 @item cube
13603 Iridas
13604 @item csp
13605 cineSpace
13606 @end table
13607
13608 @item interp
13609 Select interpolation mode.
13610
13611 Available values are:
13612
13613 @table @samp
13614 @item nearest
13615 Use values from the nearest defined point.
13616 @item linear
13617 Interpolate values using the linear interpolation.
13618 @item cosine
13619 Interpolate values using the cosine interpolation.
13620 @item cubic
13621 Interpolate values using the cubic interpolation.
13622 @item spline
13623 Interpolate values using the spline interpolation.
13624 @end table
13625 @end table
13626
13627 @anchor{lut3d}
13628 @section lut3d
13629
13630 Apply a 3D LUT to an input video.
13631
13632 The filter accepts the following options:
13633
13634 @table @option
13635 @item file
13636 Set the 3D LUT file name.
13637
13638 Currently supported formats:
13639 @table @samp
13640 @item 3dl
13641 AfterEffects
13642 @item cube
13643 Iridas
13644 @item dat
13645 DaVinci
13646 @item m3d
13647 Pandora
13648 @item csp
13649 cineSpace
13650 @end table
13651 @item interp
13652 Select interpolation mode.
13653
13654 Available values are:
13655
13656 @table @samp
13657 @item nearest
13658 Use values from the nearest defined point.
13659 @item trilinear
13660 Interpolate values using the 8 points defining a cube.
13661 @item tetrahedral
13662 Interpolate values using a tetrahedron.
13663 @end table
13664 @end table
13665
13666 @section lumakey
13667
13668 Turn certain luma values into transparency.
13669
13670 The filter accepts the following options:
13671
13672 @table @option
13673 @item threshold
13674 Set the luma which will be used as base for transparency.
13675 Default value is @code{0}.
13676
13677 @item tolerance
13678 Set the range of luma values to be keyed out.
13679 Default value is @code{0.01}.
13680
13681 @item softness
13682 Set the range of softness. Default value is @code{0}.
13683 Use this to control gradual transition from zero to full transparency.
13684 @end table
13685
13686 @subsection Commands
13687 This filter supports same @ref{commands} as options.
13688 The command accepts the same syntax of the corresponding option.
13689
13690 If the specified expression is not valid, it is kept at its current
13691 value.
13692
13693 @section lut, lutrgb, lutyuv
13694
13695 Compute a look-up table for binding each pixel component input value
13696 to an output value, and apply it to the input video.
13697
13698 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13699 to an RGB input video.
13700
13701 These filters accept the following parameters:
13702 @table @option
13703 @item c0
13704 set first pixel component expression
13705 @item c1
13706 set second pixel component expression
13707 @item c2
13708 set third pixel component expression
13709 @item c3
13710 set fourth pixel component expression, corresponds to the alpha component
13711
13712 @item r
13713 set red component expression
13714 @item g
13715 set green component expression
13716 @item b
13717 set blue component expression
13718 @item a
13719 alpha component expression
13720
13721 @item y
13722 set Y/luminance component expression
13723 @item u
13724 set U/Cb component expression
13725 @item v
13726 set V/Cr component expression
13727 @end table
13728
13729 Each of them specifies the expression to use for computing the lookup table for
13730 the corresponding pixel component values.
13731
13732 The exact component associated to each of the @var{c*} options depends on the
13733 format in input.
13734
13735 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13736 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13737
13738 The expressions can contain the following constants and functions:
13739
13740 @table @option
13741 @item w
13742 @item h
13743 The input width and height.
13744
13745 @item val
13746 The input value for the pixel component.
13747
13748 @item clipval
13749 The input value, clipped to the @var{minval}-@var{maxval} range.
13750
13751 @item maxval
13752 The maximum value for the pixel component.
13753
13754 @item minval
13755 The minimum value for the pixel component.
13756
13757 @item negval
13758 The negated value for the pixel component value, clipped to the
13759 @var{minval}-@var{maxval} range; it corresponds to the expression
13760 "maxval-clipval+minval".
13761
13762 @item clip(val)
13763 The computed value in @var{val}, clipped to the
13764 @var{minval}-@var{maxval} range.
13765
13766 @item gammaval(gamma)
13767 The computed gamma correction value of the pixel component value,
13768 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13769 expression
13770 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13771
13772 @end table
13773
13774 All expressions default to "val".
13775
13776 @subsection Examples
13777
13778 @itemize
13779 @item
13780 Negate input video:
13781 @example
13782 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13783 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13784 @end example
13785
13786 The above is the same as:
13787 @example
13788 lutrgb="r=negval:g=negval:b=negval"
13789 lutyuv="y=negval:u=negval:v=negval"
13790 @end example
13791
13792 @item
13793 Negate luminance:
13794 @example
13795 lutyuv=y=negval
13796 @end example
13797
13798 @item
13799 Remove chroma components, turning the video into a graytone image:
13800 @example
13801 lutyuv="u=128:v=128"
13802 @end example
13803
13804 @item
13805 Apply a luma burning effect:
13806 @example
13807 lutyuv="y=2*val"
13808 @end example
13809
13810 @item
13811 Remove green and blue components:
13812 @example
13813 lutrgb="g=0:b=0"
13814 @end example
13815
13816 @item
13817 Set a constant alpha channel value on input:
13818 @example
13819 format=rgba,lutrgb=a="maxval-minval/2"
13820 @end example
13821
13822 @item
13823 Correct luminance gamma by a factor of 0.5:
13824 @example
13825 lutyuv=y=gammaval(0.5)
13826 @end example
13827
13828 @item
13829 Discard least significant bits of luma:
13830 @example
13831 lutyuv=y='bitand(val, 128+64+32)'
13832 @end example
13833
13834 @item
13835 Technicolor like effect:
13836 @example
13837 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13838 @end example
13839 @end itemize
13840
13841 @section lut2, tlut2
13842
13843 The @code{lut2} filter takes two input streams and outputs one
13844 stream.
13845
13846 The @code{tlut2} (time lut2) filter takes two consecutive frames
13847 from one single stream.
13848
13849 This filter accepts the following parameters:
13850 @table @option
13851 @item c0
13852 set first pixel component expression
13853 @item c1
13854 set second pixel component expression
13855 @item c2
13856 set third pixel component expression
13857 @item c3
13858 set fourth pixel component expression, corresponds to the alpha component
13859
13860 @item d
13861 set output bit depth, only available for @code{lut2} filter. By default is 0,
13862 which means bit depth is automatically picked from first input format.
13863 @end table
13864
13865 The @code{lut2} filter also supports the @ref{framesync} options.
13866
13867 Each of them specifies the expression to use for computing the lookup table for
13868 the corresponding pixel component values.
13869
13870 The exact component associated to each of the @var{c*} options depends on the
13871 format in inputs.
13872
13873 The expressions can contain the following constants:
13874
13875 @table @option
13876 @item w
13877 @item h
13878 The input width and height.
13879
13880 @item x
13881 The first input value for the pixel component.
13882
13883 @item y
13884 The second input value for the pixel component.
13885
13886 @item bdx
13887 The first input video bit depth.
13888
13889 @item bdy
13890 The second input video bit depth.
13891 @end table
13892
13893 All expressions default to "x".
13894
13895 @subsection Examples
13896
13897 @itemize
13898 @item
13899 Highlight differences between two RGB video streams:
13900 @example
13901 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1)'
13902 @end example
13903
13904 @item
13905 Highlight differences between two YUV video streams:
13906 @example
13907 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1)'
13908 @end example
13909
13910 @item
13911 Show max difference between two video streams:
13912 @example
13913 lut2='if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1)))'
13914 @end example
13915 @end itemize
13916
13917 @section maskedclamp
13918
13919 Clamp the first input stream with the second input and third input stream.
13920
13921 Returns the value of first stream to be between second input
13922 stream - @code{undershoot} and third input stream + @code{overshoot}.
13923
13924 This filter accepts the following options:
13925 @table @option
13926 @item undershoot
13927 Default value is @code{0}.
13928
13929 @item overshoot
13930 Default value is @code{0}.
13931
13932 @item planes
13933 Set which planes will be processed as bitmap, unprocessed planes will be
13934 copied from first stream.
13935 By default value 0xf, all planes will be processed.
13936 @end table
13937
13938 @section maskedmax
13939
13940 Merge the second and third input stream into output stream using absolute differences
13941 between second input stream and first input stream and absolute difference between
13942 third input stream and first input stream. The picked value will be from second input
13943 stream if second absolute difference is greater than first one or from third input stream
13944 otherwise.
13945
13946 This filter accepts the following options:
13947 @table @option
13948 @item planes
13949 Set which planes will be processed as bitmap, unprocessed planes will be
13950 copied from first stream.
13951 By default value 0xf, all planes will be processed.
13952 @end table
13953
13954 @section maskedmerge
13955
13956 Merge the first input stream with the second input stream using per pixel
13957 weights in the third input stream.
13958
13959 A value of 0 in the third stream pixel component means that pixel component
13960 from first stream is returned unchanged, while maximum value (eg. 255 for
13961 8-bit videos) means that pixel component from second stream is returned
13962 unchanged. Intermediate values define the amount of merging between both
13963 input stream's pixel components.
13964
13965 This filter accepts the following options:
13966 @table @option
13967 @item planes
13968 Set which planes will be processed as bitmap, unprocessed planes will be
13969 copied from first stream.
13970 By default value 0xf, all planes will be processed.
13971 @end table
13972
13973 @section maskedmin
13974
13975 Merge the second and third input stream into output stream using absolute differences
13976 between second input stream and first input stream and absolute difference between
13977 third input stream and first input stream. The picked value will be from second input
13978 stream if second absolute difference is less than first one or from third input stream
13979 otherwise.
13980
13981 This filter accepts the following options:
13982 @table @option
13983 @item planes
13984 Set which planes will be processed as bitmap, unprocessed planes will be
13985 copied from first stream.
13986 By default value 0xf, all planes will be processed.
13987 @end table
13988
13989 @section maskedthreshold
13990 Pick pixels comparing absolute difference of two video streams with fixed
13991 threshold.
13992
13993 If absolute difference between pixel component of first and second video
13994 stream is equal or lower than user supplied threshold than pixel component
13995 from first video stream is picked, otherwise pixel component from second
13996 video stream is picked.
13997
13998 This filter accepts the following options:
13999 @table @option
14000 @item threshold
14001 Set threshold used when picking pixels from absolute difference from two input
14002 video streams.
14003
14004 @item planes
14005 Set which planes will be processed as bitmap, unprocessed planes will be
14006 copied from second stream.
14007 By default value 0xf, all planes will be processed.
14008 @end table
14009
14010 @section maskfun
14011 Create mask from input video.
14012
14013 For example it is useful to create motion masks after @code{tblend} filter.
14014
14015 This filter accepts the following options:
14016
14017 @table @option
14018 @item low
14019 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14020
14021 @item high
14022 Set high threshold. Any pixel component higher than this value will be set to max value
14023 allowed for current pixel format.
14024
14025 @item planes
14026 Set planes to filter, by default all available planes are filtered.
14027
14028 @item fill
14029 Fill all frame pixels with this value.
14030
14031 @item sum
14032 Set max average pixel value for frame. If sum of all pixel components is higher that this
14033 average, output frame will be completely filled with value set by @var{fill} option.
14034 Typically useful for scene changes when used in combination with @code{tblend} filter.
14035 @end table
14036
14037 @section mcdeint
14038
14039 Apply motion-compensation deinterlacing.
14040
14041 It needs one field per frame as input and must thus be used together
14042 with yadif=1/3 or equivalent.
14043
14044 This filter accepts the following options:
14045 @table @option
14046 @item mode
14047 Set the deinterlacing mode.
14048
14049 It accepts one of the following values:
14050 @table @samp
14051 @item fast
14052 @item medium
14053 @item slow
14054 use iterative motion estimation
14055 @item extra_slow
14056 like @samp{slow}, but use multiple reference frames.
14057 @end table
14058 Default value is @samp{fast}.
14059
14060 @item parity
14061 Set the picture field parity assumed for the input video. It must be
14062 one of the following values:
14063
14064 @table @samp
14065 @item 0, tff
14066 assume top field first
14067 @item 1, bff
14068 assume bottom field first
14069 @end table
14070
14071 Default value is @samp{bff}.
14072
14073 @item qp
14074 Set per-block quantization parameter (QP) used by the internal
14075 encoder.
14076
14077 Higher values should result in a smoother motion vector field but less
14078 optimal individual vectors. Default value is 1.
14079 @end table
14080
14081 @section median
14082
14083 Pick median pixel from certain rectangle defined by radius.
14084
14085 This filter accepts the following options:
14086
14087 @table @option
14088 @item radius
14089 Set horizontal radius size. Default value is @code{1}.
14090 Allowed range is integer from 1 to 127.
14091
14092 @item planes
14093 Set which planes to process. Default is @code{15}, which is all available planes.
14094
14095 @item radiusV
14096 Set vertical radius size. Default value is @code{0}.
14097 Allowed range is integer from 0 to 127.
14098 If it is 0, value will be picked from horizontal @code{radius} option.
14099
14100 @item percentile
14101 Set median percentile. Default value is @code{0.5}.
14102 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14103 minimum values, and @code{1} maximum values.
14104 @end table
14105
14106 @subsection Commands
14107 This filter supports same @ref{commands} as options.
14108 The command accepts the same syntax of the corresponding option.
14109
14110 If the specified expression is not valid, it is kept at its current
14111 value.
14112
14113 @section mergeplanes
14114
14115 Merge color channel components from several video streams.
14116
14117 The filter accepts up to 4 input streams, and merge selected input
14118 planes to the output video.
14119
14120 This filter accepts the following options:
14121 @table @option
14122 @item mapping
14123 Set input to output plane mapping. Default is @code{0}.
14124
14125 The mappings is specified as a bitmap. It should be specified as a
14126 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14127 mapping for the first plane of the output stream. 'A' sets the number of
14128 the input stream to use (from 0 to 3), and 'a' the plane number of the
14129 corresponding input to use (from 0 to 3). The rest of the mappings is
14130 similar, 'Bb' describes the mapping for the output stream second
14131 plane, 'Cc' describes the mapping for the output stream third plane and
14132 'Dd' describes the mapping for the output stream fourth plane.
14133
14134 @item format
14135 Set output pixel format. Default is @code{yuva444p}.
14136 @end table
14137
14138 @subsection Examples
14139
14140 @itemize
14141 @item
14142 Merge three gray video streams of same width and height into single video stream:
14143 @example
14144 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14145 @end example
14146
14147 @item
14148 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14149 @example
14150 [a0][a1]mergeplanes=0x00010210:yuva444p
14151 @end example
14152
14153 @item
14154 Swap Y and A plane in yuva444p stream:
14155 @example
14156 format=yuva444p,mergeplanes=0x03010200:yuva444p
14157 @end example
14158
14159 @item
14160 Swap U and V plane in yuv420p stream:
14161 @example
14162 format=yuv420p,mergeplanes=0x000201:yuv420p
14163 @end example
14164
14165 @item
14166 Cast a rgb24 clip to yuv444p:
14167 @example
14168 format=rgb24,mergeplanes=0x000102:yuv444p
14169 @end example
14170 @end itemize
14171
14172 @section mestimate
14173
14174 Estimate and export motion vectors using block matching algorithms.
14175 Motion vectors are stored in frame side data to be used by other filters.
14176
14177 This filter accepts the following options:
14178 @table @option
14179 @item method
14180 Specify the motion estimation method. Accepts one of the following values:
14181
14182 @table @samp
14183 @item esa
14184 Exhaustive search algorithm.
14185 @item tss
14186 Three step search algorithm.
14187 @item tdls
14188 Two dimensional logarithmic search algorithm.
14189 @item ntss
14190 New three step search algorithm.
14191 @item fss
14192 Four step search algorithm.
14193 @item ds
14194 Diamond search algorithm.
14195 @item hexbs
14196 Hexagon-based search algorithm.
14197 @item epzs
14198 Enhanced predictive zonal search algorithm.
14199 @item umh
14200 Uneven multi-hexagon search algorithm.
14201 @end table
14202 Default value is @samp{esa}.
14203
14204 @item mb_size
14205 Macroblock size. Default @code{16}.
14206
14207 @item search_param
14208 Search parameter. Default @code{7}.
14209 @end table
14210
14211 @section midequalizer
14212
14213 Apply Midway Image Equalization effect using two video streams.
14214
14215 Midway Image Equalization adjusts a pair of images to have the same
14216 histogram, while maintaining their dynamics as much as possible. It's
14217 useful for e.g. matching exposures from a pair of stereo cameras.
14218
14219 This filter has two inputs and one output, which must be of same pixel format, but
14220 may be of different sizes. The output of filter is first input adjusted with
14221 midway histogram of both inputs.
14222
14223 This filter accepts the following option:
14224
14225 @table @option
14226 @item planes
14227 Set which planes to process. Default is @code{15}, which is all available planes.
14228 @end table
14229
14230 @section minterpolate
14231
14232 Convert the video to specified frame rate using motion interpolation.
14233
14234 This filter accepts the following options:
14235 @table @option
14236 @item fps
14237 Specify the output frame rate. This can be rational e.g. @code{60000/1001}. Frames are dropped if @var{fps} is lower than source fps. Default @code{60}.
14238
14239 @item mi_mode
14240 Motion interpolation mode. Following values are accepted:
14241 @table @samp
14242 @item dup
14243 Duplicate previous or next frame for interpolating new ones.
14244 @item blend
14245 Blend source frames. Interpolated frame is mean of previous and next frames.
14246 @item mci
14247 Motion compensated interpolation. Following options are effective when this mode is selected:
14248
14249 @table @samp
14250 @item mc_mode
14251 Motion compensation mode. Following values are accepted:
14252 @table @samp
14253 @item obmc
14254 Overlapped block motion compensation.
14255 @item aobmc
14256 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14257 @end table
14258 Default mode is @samp{obmc}.
14259
14260 @item me_mode
14261 Motion estimation mode. Following values are accepted:
14262 @table @samp
14263 @item bidir
14264 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14265 @item bilat
14266 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14267 @end table
14268 Default mode is @samp{bilat}.
14269
14270 @item me
14271 The algorithm to be used for motion estimation. Following values are accepted:
14272 @table @samp
14273 @item esa
14274 Exhaustive search algorithm.
14275 @item tss
14276 Three step search algorithm.
14277 @item tdls
14278 Two dimensional logarithmic search algorithm.
14279 @item ntss
14280 New three step search algorithm.
14281 @item fss
14282 Four step search algorithm.
14283 @item ds
14284 Diamond search algorithm.
14285 @item hexbs
14286 Hexagon-based search algorithm.
14287 @item epzs
14288 Enhanced predictive zonal search algorithm.
14289 @item umh
14290 Uneven multi-hexagon search algorithm.
14291 @end table
14292 Default algorithm is @samp{epzs}.
14293
14294 @item mb_size
14295 Macroblock size. Default @code{16}.
14296
14297 @item search_param
14298 Motion estimation search parameter. Default @code{32}.
14299
14300 @item vsbmc
14301 Enable variable-size block motion compensation. Motion estimation is applied with smaller block sizes at object boundaries in order to make the them less blur. Default is @code{0} (disabled).
14302 @end table
14303 @end table
14304
14305 @item scd
14306 Scene change detection method. Scene change leads motion vectors to be in random direction. Scene change detection replace interpolated frames by duplicate ones. May not be needed for other modes. Following values are accepted:
14307 @table @samp
14308 @item none
14309 Disable scene change detection.
14310 @item fdiff
14311 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14312 @end table
14313 Default method is @samp{fdiff}.
14314
14315 @item scd_threshold
14316 Scene change detection threshold. Default is @code{10.}.
14317 @end table
14318
14319 @section mix
14320
14321 Mix several video input streams into one video stream.
14322
14323 A description of the accepted options follows.
14324
14325 @table @option
14326 @item nb_inputs
14327 The number of inputs. If unspecified, it defaults to 2.
14328
14329 @item weights
14330 Specify weight of each input video stream as sequence.
14331 Each weight is separated by space. If number of weights
14332 is smaller than number of @var{frames} last specified
14333 weight will be used for all remaining unset weights.
14334
14335 @item scale
14336 Specify scale, if it is set it will be multiplied with sum
14337 of each weight multiplied with pixel values to give final destination
14338 pixel value. By default @var{scale} is auto scaled to sum of weights.
14339
14340 @item duration
14341 Specify how end of stream is determined.
14342 @table @samp
14343 @item longest
14344 The duration of the longest input. (default)
14345
14346 @item shortest
14347 The duration of the shortest input.
14348
14349 @item first
14350 The duration of the first input.
14351 @end table
14352 @end table
14353
14354 @section mpdecimate
14355
14356 Drop frames that do not differ greatly from the previous frame in
14357 order to reduce frame rate.
14358
14359 The main use of this filter is for very-low-bitrate encoding
14360 (e.g. streaming over dialup modem), but it could in theory be used for
14361 fixing movies that were inverse-telecined incorrectly.
14362
14363 A description of the accepted options follows.
14364
14365 @table @option
14366 @item max
14367 Set the maximum number of consecutive frames which can be dropped (if
14368 positive), or the minimum interval between dropped frames (if
14369 negative). If the value is 0, the frame is dropped disregarding the
14370 number of previous sequentially dropped frames.
14371
14372 Default value is 0.
14373
14374 @item hi
14375 @item lo
14376 @item frac
14377 Set the dropping threshold values.
14378
14379 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14380 represent actual pixel value differences, so a threshold of 64
14381 corresponds to 1 unit of difference for each pixel, or the same spread
14382 out differently over the block.
14383
14384 A frame is a candidate for dropping if no 8x8 blocks differ by more
14385 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14386 meaning the whole image) differ by more than a threshold of @option{lo}.
14387
14388 Default value for @option{hi} is 64*12, default value for @option{lo} is
14389 64*5, and default value for @option{frac} is 0.33.
14390 @end table
14391
14392
14393 @section negate
14394
14395 Negate (invert) the input video.
14396
14397 It accepts the following option:
14398
14399 @table @option
14400
14401 @item negate_alpha
14402 With value 1, it negates the alpha component, if present. Default value is 0.
14403 @end table
14404
14405 @anchor{nlmeans}
14406 @section nlmeans
14407
14408 Denoise frames using Non-Local Means algorithm.
14409
14410 Each pixel is adjusted by looking for other pixels with similar contexts. This
14411 context similarity is defined by comparing their surrounding patches of size
14412 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14413 around the pixel.
14414
14415 Note that the research area defines centers for patches, which means some
14416 patches will be made of pixels outside that research area.
14417
14418 The filter accepts the following options.
14419
14420 @table @option
14421 @item s
14422 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14423
14424 @item p
14425 Set patch size. Default is 7. Must be odd number in range [0, 99].
14426
14427 @item pc
14428 Same as @option{p} but for chroma planes.
14429
14430 The default value is @var{0} and means automatic.
14431
14432 @item r
14433 Set research size. Default is 15. Must be odd number in range [0, 99].
14434
14435 @item rc
14436 Same as @option{r} but for chroma planes.
14437
14438 The default value is @var{0} and means automatic.
14439 @end table
14440
14441 @section nnedi
14442
14443 Deinterlace video using neural network edge directed interpolation.
14444
14445 This filter accepts the following options:
14446
14447 @table @option
14448 @item weights
14449 Mandatory option, without binary file filter can not work.
14450 Currently file can be found here:
14451 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14452
14453 @item deint
14454 Set which frames to deinterlace, by default it is @code{all}.
14455 Can be @code{all} or @code{interlaced}.
14456
14457 @item field
14458 Set mode of operation.
14459
14460 Can be one of the following:
14461
14462 @table @samp
14463 @item af
14464 Use frame flags, both fields.
14465 @item a
14466 Use frame flags, single field.
14467 @item t
14468 Use top field only.
14469 @item b
14470 Use bottom field only.
14471 @item tf
14472 Use both fields, top first.
14473 @item bf
14474 Use both fields, bottom first.
14475 @end table
14476
14477 @item planes
14478 Set which planes to process, by default filter process all frames.
14479
14480 @item nsize
14481 Set size of local neighborhood around each pixel, used by the predictor neural
14482 network.
14483
14484 Can be one of the following:
14485
14486 @table @samp
14487 @item s8x6
14488 @item s16x6
14489 @item s32x6
14490 @item s48x6
14491 @item s8x4
14492 @item s16x4
14493 @item s32x4
14494 @end table
14495
14496 @item nns
14497 Set the number of neurons in predictor neural network.
14498 Can be one of the following:
14499
14500 @table @samp
14501 @item n16
14502 @item n32
14503 @item n64
14504 @item n128
14505 @item n256
14506 @end table
14507
14508 @item qual
14509 Controls the number of different neural network predictions that are blended
14510 together to compute the final output value. Can be @code{fast}, default or
14511 @code{slow}.
14512
14513 @item etype
14514 Set which set of weights to use in the predictor.
14515 Can be one of the following:
14516
14517 @table @samp
14518 @item a
14519 weights trained to minimize absolute error
14520 @item s
14521 weights trained to minimize squared error
14522 @end table
14523
14524 @item pscrn
14525 Controls whether or not the prescreener neural network is used to decide
14526 which pixels should be processed by the predictor neural network and which
14527 can be handled by simple cubic interpolation.
14528 The prescreener is trained to know whether cubic interpolation will be
14529 sufficient for a pixel or whether it should be predicted by the predictor nn.
14530 The computational complexity of the prescreener nn is much less than that of
14531 the predictor nn. Since most pixels can be handled by cubic interpolation,
14532 using the prescreener generally results in much faster processing.
14533 The prescreener is pretty accurate, so the difference between using it and not
14534 using it is almost always unnoticeable.
14535
14536 Can be one of the following:
14537
14538 @table @samp
14539 @item none
14540 @item original
14541 @item new
14542 @end table
14543
14544 Default is @code{new}.
14545
14546 @item fapprox
14547 Set various debugging flags.
14548 @end table
14549
14550 @section noformat
14551
14552 Force libavfilter not to use any of the specified pixel formats for the
14553 input to the next filter.
14554
14555 It accepts the following parameters:
14556 @table @option
14557
14558 @item pix_fmts
14559 A '|'-separated list of pixel format names, such as
14560 pix_fmts=yuv420p|monow|rgb24".
14561
14562 @end table
14563
14564 @subsection Examples
14565
14566 @itemize
14567 @item
14568 Force libavfilter to use a format different from @var{yuv420p} for the
14569 input to the vflip filter:
14570 @example
14571 noformat=pix_fmts=yuv420p,vflip
14572 @end example
14573
14574 @item
14575 Convert the input video to any of the formats not contained in the list:
14576 @example
14577 noformat=yuv420p|yuv444p|yuv410p
14578 @end example
14579 @end itemize
14580
14581 @section noise
14582
14583 Add noise on video input frame.
14584
14585 The filter accepts the following options:
14586
14587 @table @option
14588 @item all_seed
14589 @item c0_seed
14590 @item c1_seed
14591 @item c2_seed
14592 @item c3_seed
14593 Set noise seed for specific pixel component or all pixel components in case
14594 of @var{all_seed}. Default value is @code{123457}.
14595
14596 @item all_strength, alls
14597 @item c0_strength, c0s
14598 @item c1_strength, c1s
14599 @item c2_strength, c2s
14600 @item c3_strength, c3s
14601 Set noise strength for specific pixel component or all pixel components in case
14602 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14603
14604 @item all_flags, allf
14605 @item c0_flags, c0f
14606 @item c1_flags, c1f
14607 @item c2_flags, c2f
14608 @item c3_flags, c3f
14609 Set pixel component flags or set flags for all components if @var{all_flags}.
14610 Available values for component flags are:
14611 @table @samp
14612 @item a
14613 averaged temporal noise (smoother)
14614 @item p
14615 mix random noise with a (semi)regular pattern
14616 @item t
14617 temporal noise (noise pattern changes between frames)
14618 @item u
14619 uniform noise (gaussian otherwise)
14620 @end table
14621 @end table
14622
14623 @subsection Examples
14624
14625 Add temporal and uniform noise to input video:
14626 @example
14627 noise=alls=20:allf=t+u
14628 @end example
14629
14630 @section normalize
14631
14632 Normalize RGB video (aka histogram stretching, contrast stretching).
14633 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14634
14635 For each channel of each frame, the filter computes the input range and maps
14636 it linearly to the user-specified output range. The output range defaults
14637 to the full dynamic range from pure black to pure white.
14638
14639 Temporal smoothing can be used on the input range to reduce flickering (rapid
14640 changes in brightness) caused when small dark or bright objects enter or leave
14641 the scene. This is similar to the auto-exposure (automatic gain control) on a
14642 video camera, and, like a video camera, it may cause a period of over- or
14643 under-exposure of the video.
14644
14645 The R,G,B channels can be normalized independently, which may cause some
14646 color shifting, or linked together as a single channel, which prevents
14647 color shifting. Linked normalization preserves hue. Independent normalization
14648 does not, so it can be used to remove some color casts. Independent and linked
14649 normalization can be combined in any ratio.
14650
14651 The normalize filter accepts the following options:
14652
14653 @table @option
14654 @item blackpt
14655 @item whitept
14656 Colors which define the output range. The minimum input value is mapped to
14657 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14658 The defaults are black and white respectively. Specifying white for
14659 @var{blackpt} and black for @var{whitept} will give color-inverted,
14660 normalized video. Shades of grey can be used to reduce the dynamic range
14661 (contrast). Specifying saturated colors here can create some interesting
14662 effects.
14663
14664 @item smoothing
14665 The number of previous frames to use for temporal smoothing. The input range
14666 of each channel is smoothed using a rolling average over the current frame
14667 and the @var{smoothing} previous frames. The default is 0 (no temporal
14668 smoothing).
14669
14670 @item independence
14671 Controls the ratio of independent (color shifting) channel normalization to
14672 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14673 independent. Defaults to 1.0 (fully independent).
14674
14675 @item strength
14676 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14677 expensive no-op. Defaults to 1.0 (full strength).
14678
14679 @end table
14680
14681 @subsection Commands
14682 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14683 The command accepts the same syntax of the corresponding option.
14684
14685 If the specified expression is not valid, it is kept at its current
14686 value.
14687
14688 @subsection Examples
14689
14690 Stretch video contrast to use the full dynamic range, with no temporal
14691 smoothing; may flicker depending on the source content:
14692 @example
14693 normalize=blackpt=black:whitept=white:smoothing=0
14694 @end example
14695
14696 As above, but with 50 frames of temporal smoothing; flicker should be
14697 reduced, depending on the source content:
14698 @example
14699 normalize=blackpt=black:whitept=white:smoothing=50
14700 @end example
14701
14702 As above, but with hue-preserving linked channel normalization:
14703 @example
14704 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14705 @end example
14706
14707 As above, but with half strength:
14708 @example
14709 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14710 @end example
14711
14712 Map the darkest input color to red, the brightest input color to cyan:
14713 @example
14714 normalize=blackpt=red:whitept=cyan
14715 @end example
14716
14717 @section null
14718
14719 Pass the video source unchanged to the output.
14720
14721 @section ocr
14722 Optical Character Recognition
14723
14724 This filter uses Tesseract for optical character recognition. To enable
14725 compilation of this filter, you need to configure FFmpeg with
14726 @code{--enable-libtesseract}.
14727
14728 It accepts the following options:
14729
14730 @table @option
14731 @item datapath
14732 Set datapath to tesseract data. Default is to use whatever was
14733 set at installation.
14734
14735 @item language
14736 Set language, default is "eng".
14737
14738 @item whitelist
14739 Set character whitelist.
14740
14741 @item blacklist
14742 Set character blacklist.
14743 @end table
14744
14745 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14746 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14747
14748 @section ocv
14749
14750 Apply a video transform using libopencv.
14751
14752 To enable this filter, install the libopencv library and headers and
14753 configure FFmpeg with @code{--enable-libopencv}.
14754
14755 It accepts the following parameters:
14756
14757 @table @option
14758
14759 @item filter_name
14760 The name of the libopencv filter to apply.
14761
14762 @item filter_params
14763 The parameters to pass to the libopencv filter. If not specified, the default
14764 values are assumed.
14765
14766 @end table
14767
14768 Refer to the official libopencv documentation for more precise
14769 information:
14770 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14771
14772 Several libopencv filters are supported; see the following subsections.
14773
14774 @anchor{dilate}
14775 @subsection dilate
14776
14777 Dilate an image by using a specific structuring element.
14778 It corresponds to the libopencv function @code{cvDilate}.
14779
14780 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14781
14782 @var{struct_el} represents a structuring element, and has the syntax:
14783 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14784
14785 @var{cols} and @var{rows} represent the number of columns and rows of
14786 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14787 point, and @var{shape} the shape for the structuring element. @var{shape}
14788 must be "rect", "cross", "ellipse", or "custom".
14789
14790 If the value for @var{shape} is "custom", it must be followed by a
14791 string of the form "=@var{filename}". The file with name
14792 @var{filename} is assumed to represent a binary image, with each
14793 printable character corresponding to a bright pixel. When a custom
14794 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14795 or columns and rows of the read file are assumed instead.
14796
14797 The default value for @var{struct_el} is "3x3+0x0/rect".
14798
14799 @var{nb_iterations} specifies the number of times the transform is
14800 applied to the image, and defaults to 1.
14801
14802 Some examples:
14803 @example
14804 # Use the default values
14805 ocv=dilate
14806
14807 # Dilate using a structuring element with a 5x5 cross, iterating two times
14808 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14809
14810 # Read the shape from the file diamond.shape, iterating two times.
14811 # The file diamond.shape may contain a pattern of characters like this
14812 #   *
14813 #  ***
14814 # *****
14815 #  ***
14816 #   *
14817 # The specified columns and rows are ignored
14818 # but the anchor point coordinates are not
14819 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14820 @end example
14821
14822 @subsection erode
14823
14824 Erode an image by using a specific structuring element.
14825 It corresponds to the libopencv function @code{cvErode}.
14826
14827 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14828 with the same syntax and semantics as the @ref{dilate} filter.
14829
14830 @subsection smooth
14831
14832 Smooth the input video.
14833
14834 The filter takes the following parameters:
14835 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14836
14837 @var{type} is the type of smooth filter to apply, and must be one of
14838 the following values: "blur", "blur_no_scale", "median", "gaussian",
14839 or "bilateral". The default value is "gaussian".
14840
14841 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14842 depends on the smooth type. @var{param1} and
14843 @var{param2} accept integer positive values or 0. @var{param3} and
14844 @var{param4} accept floating point values.
14845
14846 The default value for @var{param1} is 3. The default value for the
14847 other parameters is 0.
14848
14849 These parameters correspond to the parameters assigned to the
14850 libopencv function @code{cvSmooth}.
14851
14852 @section oscilloscope
14853
14854 2D Video Oscilloscope.
14855
14856 Useful to measure spatial impulse, step responses, chroma delays, etc.
14857
14858 It accepts the following parameters:
14859
14860 @table @option
14861 @item x
14862 Set scope center x position.
14863
14864 @item y
14865 Set scope center y position.
14866
14867 @item s
14868 Set scope size, relative to frame diagonal.
14869
14870 @item t
14871 Set scope tilt/rotation.
14872
14873 @item o
14874 Set trace opacity.
14875
14876 @item tx
14877 Set trace center x position.
14878
14879 @item ty
14880 Set trace center y position.
14881
14882 @item tw
14883 Set trace width, relative to width of frame.
14884
14885 @item th
14886 Set trace height, relative to height of frame.
14887
14888 @item c
14889 Set which components to trace. By default it traces first three components.
14890
14891 @item g
14892 Draw trace grid. By default is enabled.
14893
14894 @item st
14895 Draw some statistics. By default is enabled.
14896
14897 @item sc
14898 Draw scope. By default is enabled.
14899 @end table
14900
14901 @subsection Commands
14902 This filter supports same @ref{commands} as options.
14903 The command accepts the same syntax of the corresponding option.
14904
14905 If the specified expression is not valid, it is kept at its current
14906 value.
14907
14908 @subsection Examples
14909
14910 @itemize
14911 @item
14912 Inspect full first row of video frame.
14913 @example
14914 oscilloscope=x=0.5:y=0:s=1
14915 @end example
14916
14917 @item
14918 Inspect full last row of video frame.
14919 @example
14920 oscilloscope=x=0.5:y=1:s=1
14921 @end example
14922
14923 @item
14924 Inspect full 5th line of video frame of height 1080.
14925 @example
14926 oscilloscope=x=0.5:y=5/1080:s=1
14927 @end example
14928
14929 @item
14930 Inspect full last column of video frame.
14931 @example
14932 oscilloscope=x=1:y=0.5:s=1:t=1
14933 @end example
14934
14935 @end itemize
14936
14937 @anchor{overlay}
14938 @section overlay
14939
14940 Overlay one video on top of another.
14941
14942 It takes two inputs and has one output. The first input is the "main"
14943 video on which the second input is overlaid.
14944
14945 It accepts the following parameters:
14946
14947 A description of the accepted options follows.
14948
14949 @table @option
14950 @item x
14951 @item y
14952 Set the expression for the x and y coordinates of the overlaid video
14953 on the main video. Default value is "0" for both expressions. In case
14954 the expression is invalid, it is set to a huge value (meaning that the
14955 overlay will not be displayed within the output visible area).
14956
14957 @item eof_action
14958 See @ref{framesync}.
14959
14960 @item eval
14961 Set when the expressions for @option{x}, and @option{y} are evaluated.
14962
14963 It accepts the following values:
14964 @table @samp
14965 @item init
14966 only evaluate expressions once during the filter initialization or
14967 when a command is processed
14968
14969 @item frame
14970 evaluate expressions for each incoming frame
14971 @end table
14972
14973 Default value is @samp{frame}.
14974
14975 @item shortest
14976 See @ref{framesync}.
14977
14978 @item format
14979 Set the format for the output video.
14980
14981 It accepts the following values:
14982 @table @samp
14983 @item yuv420
14984 force YUV420 output
14985
14986 @item yuv420p10
14987 force YUV420p10 output
14988
14989 @item yuv422
14990 force YUV422 output
14991
14992 @item yuv422p10
14993 force YUV422p10 output
14994
14995 @item yuv444
14996 force YUV444 output
14997
14998 @item rgb
14999 force packed RGB output
15000
15001 @item gbrp
15002 force planar RGB output
15003
15004 @item auto
15005 automatically pick format
15006 @end table
15007
15008 Default value is @samp{yuv420}.
15009
15010 @item repeatlast
15011 See @ref{framesync}.
15012
15013 @item alpha
15014 Set format of alpha of the overlaid video, it can be @var{straight} or
15015 @var{premultiplied}. Default is @var{straight}.
15016 @end table
15017
15018 The @option{x}, and @option{y} expressions can contain the following
15019 parameters.
15020
15021 @table @option
15022 @item main_w, W
15023 @item main_h, H
15024 The main input width and height.
15025
15026 @item overlay_w, w
15027 @item overlay_h, h
15028 The overlay input width and height.
15029
15030 @item x
15031 @item y
15032 The computed values for @var{x} and @var{y}. They are evaluated for
15033 each new frame.
15034
15035 @item hsub
15036 @item vsub
15037 horizontal and vertical chroma subsample values of the output
15038 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15039 @var{vsub} is 1.
15040
15041 @item n
15042 the number of input frame, starting from 0
15043
15044 @item pos
15045 the position in the file of the input frame, NAN if unknown
15046
15047 @item t
15048 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15049
15050 @end table
15051
15052 This filter also supports the @ref{framesync} options.
15053
15054 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15055 when evaluation is done @emph{per frame}, and will evaluate to NAN
15056 when @option{eval} is set to @samp{init}.
15057
15058 Be aware that frames are taken from each input video in timestamp
15059 order, hence, if their initial timestamps differ, it is a good idea
15060 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15061 have them begin in the same zero timestamp, as the example for
15062 the @var{movie} filter does.
15063
15064 You can chain together more overlays but you should test the
15065 efficiency of such approach.
15066
15067 @subsection Commands
15068
15069 This filter supports the following commands:
15070 @table @option
15071 @item x
15072 @item y
15073 Modify the x and y of the overlay input.
15074 The command accepts the same syntax of the corresponding option.
15075
15076 If the specified expression is not valid, it is kept at its current
15077 value.
15078 @end table
15079
15080 @subsection Examples
15081
15082 @itemize
15083 @item
15084 Draw the overlay at 10 pixels from the bottom right corner of the main
15085 video:
15086 @example
15087 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15088 @end example
15089
15090 Using named options the example above becomes:
15091 @example
15092 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15093 @end example
15094
15095 @item
15096 Insert a transparent PNG logo in the bottom left corner of the input,
15097 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15098 @example
15099 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15100 @end example
15101
15102 @item
15103 Insert 2 different transparent PNG logos (second logo on bottom
15104 right corner) using the @command{ffmpeg} tool:
15105 @example
15106 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
15107 @end example
15108
15109 @item
15110 Add a transparent color layer on top of the main video; @code{WxH}
15111 must specify the size of the main input to the overlay filter:
15112 @example
15113 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15114 @end example
15115
15116 @item
15117 Play an original video and a filtered version (here with the deshake
15118 filter) side by side using the @command{ffplay} tool:
15119 @example
15120 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15121 @end example
15122
15123 The above command is the same as:
15124 @example
15125 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15126 @end example
15127
15128 @item
15129 Make a sliding overlay appearing from the left to the right top part of the
15130 screen starting since time 2:
15131 @example
15132 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15133 @end example
15134
15135 @item
15136 Compose output by putting two input videos side to side:
15137 @example
15138 ffmpeg -i left.avi -i right.avi -filter_complex "
15139 nullsrc=size=200x100 [background];
15140 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15141 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15142 [background][left]       overlay=shortest=1       [background+left];
15143 [background+left][right] overlay=shortest=1:x=100 [left+right]
15144 "
15145 @end example
15146
15147 @item
15148 Mask 10-20 seconds of a video by applying the delogo filter to a section
15149 @example
15150 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15151 -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]'
15152 masked.avi
15153 @end example
15154
15155 @item
15156 Chain several overlays in cascade:
15157 @example
15158 nullsrc=s=200x200 [bg];
15159 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15160 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15161 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15162 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15163 [in3] null,       [mid2] overlay=100:100 [out0]
15164 @end example
15165
15166 @end itemize
15167
15168 @anchor{overlay_cuda}
15169 @section overlay_cuda
15170
15171 Overlay one video on top of another.
15172
15173 This is the CUDA variant of the @ref{overlay} filter.
15174 It only accepts CUDA frames. The underlying input pixel formats have to match.
15175
15176 It takes two inputs and has one output. The first input is the "main"
15177 video on which the second input is overlaid.
15178
15179 It accepts the following parameters:
15180
15181 @table @option
15182 @item x
15183 @item y
15184 Set the x and y coordinates of the overlaid video on the main video.
15185 Default value is "0" for both expressions.
15186
15187 @item eof_action
15188 See @ref{framesync}.
15189
15190 @item shortest
15191 See @ref{framesync}.
15192
15193 @item repeatlast
15194 See @ref{framesync}.
15195
15196 @end table
15197
15198 This filter also supports the @ref{framesync} options.
15199
15200 @section owdenoise
15201
15202 Apply Overcomplete Wavelet denoiser.
15203
15204 The filter accepts the following options:
15205
15206 @table @option
15207 @item depth
15208 Set depth.
15209
15210 Larger depth values will denoise lower frequency components more, but
15211 slow down filtering.
15212
15213 Must be an int in the range 8-16, default is @code{8}.
15214
15215 @item luma_strength, ls
15216 Set luma strength.
15217
15218 Must be a double value in the range 0-1000, default is @code{1.0}.
15219
15220 @item chroma_strength, cs
15221 Set chroma strength.
15222
15223 Must be a double value in the range 0-1000, default is @code{1.0}.
15224 @end table
15225
15226 @anchor{pad}
15227 @section pad
15228
15229 Add paddings to the input image, and place the original input at the
15230 provided @var{x}, @var{y} coordinates.
15231
15232 It accepts the following parameters:
15233
15234 @table @option
15235 @item width, w
15236 @item height, h
15237 Specify an expression for the size of the output image with the
15238 paddings added. If the value for @var{width} or @var{height} is 0, the
15239 corresponding input size is used for the output.
15240
15241 The @var{width} expression can reference the value set by the
15242 @var{height} expression, and vice versa.
15243
15244 The default value of @var{width} and @var{height} is 0.
15245
15246 @item x
15247 @item y
15248 Specify the offsets to place the input image at within the padded area,
15249 with respect to the top/left border of the output image.
15250
15251 The @var{x} expression can reference the value set by the @var{y}
15252 expression, and vice versa.
15253
15254 The default value of @var{x} and @var{y} is 0.
15255
15256 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15257 so the input image is centered on the padded area.
15258
15259 @item color
15260 Specify the color of the padded area. For the syntax of this option,
15261 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15262 manual,ffmpeg-utils}.
15263
15264 The default value of @var{color} is "black".
15265
15266 @item eval
15267 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15268
15269 It accepts the following values:
15270
15271 @table @samp
15272 @item init
15273 Only evaluate expressions once during the filter initialization or when
15274 a command is processed.
15275
15276 @item frame
15277 Evaluate expressions for each incoming frame.
15278
15279 @end table
15280
15281 Default value is @samp{init}.
15282
15283 @item aspect
15284 Pad to aspect instead to a resolution.
15285
15286 @end table
15287
15288 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15289 options are expressions containing the following constants:
15290
15291 @table @option
15292 @item in_w
15293 @item in_h
15294 The input video width and height.
15295
15296 @item iw
15297 @item ih
15298 These are the same as @var{in_w} and @var{in_h}.
15299
15300 @item out_w
15301 @item out_h
15302 The output width and height (the size of the padded area), as
15303 specified by the @var{width} and @var{height} expressions.
15304
15305 @item ow
15306 @item oh
15307 These are the same as @var{out_w} and @var{out_h}.
15308
15309 @item x
15310 @item y
15311 The x and y offsets as specified by the @var{x} and @var{y}
15312 expressions, or NAN if not yet specified.
15313
15314 @item a
15315 same as @var{iw} / @var{ih}
15316
15317 @item sar
15318 input sample aspect ratio
15319
15320 @item dar
15321 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15322
15323 @item hsub
15324 @item vsub
15325 The horizontal and vertical chroma subsample values. For example for the
15326 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15327 @end table
15328
15329 @subsection Examples
15330
15331 @itemize
15332 @item
15333 Add paddings with the color "violet" to the input video. The output video
15334 size is 640x480, and the top-left corner of the input video is placed at
15335 column 0, row 40
15336 @example
15337 pad=640:480:0:40:violet
15338 @end example
15339
15340 The example above is equivalent to the following command:
15341 @example
15342 pad=width=640:height=480:x=0:y=40:color=violet
15343 @end example
15344
15345 @item
15346 Pad the input to get an output with dimensions increased by 3/2,
15347 and put the input video at the center of the padded area:
15348 @example
15349 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15350 @end example
15351
15352 @item
15353 Pad the input to get a squared output with size equal to the maximum
15354 value between the input width and height, and put the input video at
15355 the center of the padded area:
15356 @example
15357 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15358 @end example
15359
15360 @item
15361 Pad the input to get a final w/h ratio of 16:9:
15362 @example
15363 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15364 @end example
15365
15366 @item
15367 In case of anamorphic video, in order to set the output display aspect
15368 correctly, it is necessary to use @var{sar} in the expression,
15369 according to the relation:
15370 @example
15371 (ih * X / ih) * sar = output_dar
15372 X = output_dar / sar
15373 @end example
15374
15375 Thus the previous example needs to be modified to:
15376 @example
15377 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15378 @end example
15379
15380 @item
15381 Double the output size and put the input video in the bottom-right
15382 corner of the output padded area:
15383 @example
15384 pad="2*iw:2*ih:ow-iw:oh-ih"
15385 @end example
15386 @end itemize
15387
15388 @anchor{palettegen}
15389 @section palettegen
15390
15391 Generate one palette for a whole video stream.
15392
15393 It accepts the following options:
15394
15395 @table @option
15396 @item max_colors
15397 Set the maximum number of colors to quantize in the palette.
15398 Note: the palette will still contain 256 colors; the unused palette entries
15399 will be black.
15400
15401 @item reserve_transparent
15402 Create a palette of 255 colors maximum and reserve the last one for
15403 transparency. Reserving the transparency color is useful for GIF optimization.
15404 If not set, the maximum of colors in the palette will be 256. You probably want
15405 to disable this option for a standalone image.
15406 Set by default.
15407
15408 @item transparency_color
15409 Set the color that will be used as background for transparency.
15410
15411 @item stats_mode
15412 Set statistics mode.
15413
15414 It accepts the following values:
15415 @table @samp
15416 @item full
15417 Compute full frame histograms.
15418 @item diff
15419 Compute histograms only for the part that differs from previous frame. This
15420 might be relevant to give more importance to the moving part of your input if
15421 the background is static.
15422 @item single
15423 Compute new histogram for each frame.
15424 @end table
15425
15426 Default value is @var{full}.
15427 @end table
15428
15429 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15430 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15431 color quantization of the palette. This information is also visible at
15432 @var{info} logging level.
15433
15434 @subsection Examples
15435
15436 @itemize
15437 @item
15438 Generate a representative palette of a given video using @command{ffmpeg}:
15439 @example
15440 ffmpeg -i input.mkv -vf palettegen palette.png
15441 @end example
15442 @end itemize
15443
15444 @section paletteuse
15445
15446 Use a palette to downsample an input video stream.
15447
15448 The filter takes two inputs: one video stream and a palette. The palette must
15449 be a 256 pixels image.
15450
15451 It accepts the following options:
15452
15453 @table @option
15454 @item dither
15455 Select dithering mode. Available algorithms are:
15456 @table @samp
15457 @item bayer
15458 Ordered 8x8 bayer dithering (deterministic)
15459 @item heckbert
15460 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15461 Note: this dithering is sometimes considered "wrong" and is included as a
15462 reference.
15463 @item floyd_steinberg
15464 Floyd and Steingberg dithering (error diffusion)
15465 @item sierra2
15466 Frankie Sierra dithering v2 (error diffusion)
15467 @item sierra2_4a
15468 Frankie Sierra dithering v2 "Lite" (error diffusion)
15469 @end table
15470
15471 Default is @var{sierra2_4a}.
15472
15473 @item bayer_scale
15474 When @var{bayer} dithering is selected, this option defines the scale of the
15475 pattern (how much the crosshatch pattern is visible). A low value means more
15476 visible pattern for less banding, and higher value means less visible pattern
15477 at the cost of more banding.
15478
15479 The option must be an integer value in the range [0,5]. Default is @var{2}.
15480
15481 @item diff_mode
15482 If set, define the zone to process
15483
15484 @table @samp
15485 @item rectangle
15486 Only the changing rectangle will be reprocessed. This is similar to GIF
15487 cropping/offsetting compression mechanism. This option can be useful for speed
15488 if only a part of the image is changing, and has use cases such as limiting the
15489 scope of the error diffusal @option{dither} to the rectangle that bounds the
15490 moving scene (it leads to more deterministic output if the scene doesn't change
15491 much, and as a result less moving noise and better GIF compression).
15492 @end table
15493
15494 Default is @var{none}.
15495
15496 @item new
15497 Take new palette for each output frame.
15498
15499 @item alpha_threshold
15500 Sets the alpha threshold for transparency. Alpha values above this threshold
15501 will be treated as completely opaque, and values below this threshold will be
15502 treated as completely transparent.
15503
15504 The option must be an integer value in the range [0,255]. Default is @var{128}.
15505 @end table
15506
15507 @subsection Examples
15508
15509 @itemize
15510 @item
15511 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15512 using @command{ffmpeg}:
15513 @example
15514 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15515 @end example
15516 @end itemize
15517
15518 @section perspective
15519
15520 Correct perspective of video not recorded perpendicular to the screen.
15521
15522 A description of the accepted parameters follows.
15523
15524 @table @option
15525 @item x0
15526 @item y0
15527 @item x1
15528 @item y1
15529 @item x2
15530 @item y2
15531 @item x3
15532 @item y3
15533 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15534 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15535 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15536 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15537 then the corners of the source will be sent to the specified coordinates.
15538
15539 The expressions can use the following variables:
15540
15541 @table @option
15542 @item W
15543 @item H
15544 the width and height of video frame.
15545 @item in
15546 Input frame count.
15547 @item on
15548 Output frame count.
15549 @end table
15550
15551 @item interpolation
15552 Set interpolation for perspective correction.
15553
15554 It accepts the following values:
15555 @table @samp
15556 @item linear
15557 @item cubic
15558 @end table
15559
15560 Default value is @samp{linear}.
15561
15562 @item sense
15563 Set interpretation of coordinate options.
15564
15565 It accepts the following values:
15566 @table @samp
15567 @item 0, source
15568
15569 Send point in the source specified by the given coordinates to
15570 the corners of the destination.
15571
15572 @item 1, destination
15573
15574 Send the corners of the source to the point in the destination specified
15575 by the given coordinates.
15576
15577 Default value is @samp{source}.
15578 @end table
15579
15580 @item eval
15581 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15582
15583 It accepts the following values:
15584 @table @samp
15585 @item init
15586 only evaluate expressions once during the filter initialization or
15587 when a command is processed
15588
15589 @item frame
15590 evaluate expressions for each incoming frame
15591 @end table
15592
15593 Default value is @samp{init}.
15594 @end table
15595
15596 @section phase
15597
15598 Delay interlaced video by one field time so that the field order changes.
15599
15600 The intended use is to fix PAL movies that have been captured with the
15601 opposite field order to the film-to-video transfer.
15602
15603 A description of the accepted parameters follows.
15604
15605 @table @option
15606 @item mode
15607 Set phase mode.
15608
15609 It accepts the following values:
15610 @table @samp
15611 @item t
15612 Capture field order top-first, transfer bottom-first.
15613 Filter will delay the bottom field.
15614
15615 @item b
15616 Capture field order bottom-first, transfer top-first.
15617 Filter will delay the top field.
15618
15619 @item p
15620 Capture and transfer with the same field order. This mode only exists
15621 for the documentation of the other options to refer to, but if you
15622 actually select it, the filter will faithfully do nothing.
15623
15624 @item a
15625 Capture field order determined automatically by field flags, transfer
15626 opposite.
15627 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15628 basis using field flags. If no field information is available,
15629 then this works just like @samp{u}.
15630
15631 @item u
15632 Capture unknown or varying, transfer opposite.
15633 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15634 analyzing the images and selecting the alternative that produces best
15635 match between the fields.
15636
15637 @item T
15638 Capture top-first, transfer unknown or varying.
15639 Filter selects among @samp{t} and @samp{p} using image analysis.
15640
15641 @item B
15642 Capture bottom-first, transfer unknown or varying.
15643 Filter selects among @samp{b} and @samp{p} using image analysis.
15644
15645 @item A
15646 Capture determined by field flags, transfer unknown or varying.
15647 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15648 image analysis. If no field information is available, then this works just
15649 like @samp{U}. This is the default mode.
15650
15651 @item U
15652 Both capture and transfer unknown or varying.
15653 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15654 @end table
15655 @end table
15656
15657 @section photosensitivity
15658 Reduce various flashes in video, so to help users with epilepsy.
15659
15660 It accepts the following options:
15661 @table @option
15662 @item frames, f
15663 Set how many frames to use when filtering. Default is 30.
15664
15665 @item threshold, t
15666 Set detection threshold factor. Default is 1.
15667 Lower is stricter.
15668
15669 @item skip
15670 Set how many pixels to skip when sampling frames. Default is 1.
15671 Allowed range is from 1 to 1024.
15672
15673 @item bypass
15674 Leave frames unchanged. Default is disabled.
15675 @end table
15676
15677 @section pixdesctest
15678
15679 Pixel format descriptor test filter, mainly useful for internal
15680 testing. The output video should be equal to the input video.
15681
15682 For example:
15683 @example
15684 format=monow, pixdesctest
15685 @end example
15686
15687 can be used to test the monowhite pixel format descriptor definition.
15688
15689 @section pixscope
15690
15691 Display sample values of color channels. Mainly useful for checking color
15692 and levels. Minimum supported resolution is 640x480.
15693
15694 The filters accept the following options:
15695
15696 @table @option
15697 @item x
15698 Set scope X position, relative offset on X axis.
15699
15700 @item y
15701 Set scope Y position, relative offset on Y axis.
15702
15703 @item w
15704 Set scope width.
15705
15706 @item h
15707 Set scope height.
15708
15709 @item o
15710 Set window opacity. This window also holds statistics about pixel area.
15711
15712 @item wx
15713 Set window X position, relative offset on X axis.
15714
15715 @item wy
15716 Set window Y position, relative offset on Y axis.
15717 @end table
15718
15719 @section pp
15720
15721 Enable the specified chain of postprocessing subfilters using libpostproc. This
15722 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15723 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15724 Each subfilter and some options have a short and a long name that can be used
15725 interchangeably, i.e. dr/dering are the same.
15726
15727 The filters accept the following options:
15728
15729 @table @option
15730 @item subfilters
15731 Set postprocessing subfilters string.
15732 @end table
15733
15734 All subfilters share common options to determine their scope:
15735
15736 @table @option
15737 @item a/autoq
15738 Honor the quality commands for this subfilter.
15739
15740 @item c/chrom
15741 Do chrominance filtering, too (default).
15742
15743 @item y/nochrom
15744 Do luminance filtering only (no chrominance).
15745
15746 @item n/noluma
15747 Do chrominance filtering only (no luminance).
15748 @end table
15749
15750 These options can be appended after the subfilter name, separated by a '|'.
15751
15752 Available subfilters are:
15753
15754 @table @option
15755 @item hb/hdeblock[|difference[|flatness]]
15756 Horizontal deblocking filter
15757 @table @option
15758 @item difference
15759 Difference factor where higher values mean more deblocking (default: @code{32}).
15760 @item flatness
15761 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15762 @end table
15763
15764 @item vb/vdeblock[|difference[|flatness]]
15765 Vertical deblocking filter
15766 @table @option
15767 @item difference
15768 Difference factor where higher values mean more deblocking (default: @code{32}).
15769 @item flatness
15770 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15771 @end table
15772
15773 @item ha/hadeblock[|difference[|flatness]]
15774 Accurate horizontal deblocking filter
15775 @table @option
15776 @item difference
15777 Difference factor where higher values mean more deblocking (default: @code{32}).
15778 @item flatness
15779 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15780 @end table
15781
15782 @item va/vadeblock[|difference[|flatness]]
15783 Accurate vertical deblocking filter
15784 @table @option
15785 @item difference
15786 Difference factor where higher values mean more deblocking (default: @code{32}).
15787 @item flatness
15788 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15789 @end table
15790 @end table
15791
15792 The horizontal and vertical deblocking filters share the difference and
15793 flatness values so you cannot set different horizontal and vertical
15794 thresholds.
15795
15796 @table @option
15797 @item h1/x1hdeblock
15798 Experimental horizontal deblocking filter
15799
15800 @item v1/x1vdeblock
15801 Experimental vertical deblocking filter
15802
15803 @item dr/dering
15804 Deringing filter
15805
15806 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15807 @table @option
15808 @item threshold1
15809 larger -> stronger filtering
15810 @item threshold2
15811 larger -> stronger filtering
15812 @item threshold3
15813 larger -> stronger filtering
15814 @end table
15815
15816 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15817 @table @option
15818 @item f/fullyrange
15819 Stretch luminance to @code{0-255}.
15820 @end table
15821
15822 @item lb/linblenddeint
15823 Linear blend deinterlacing filter that deinterlaces the given block by
15824 filtering all lines with a @code{(1 2 1)} filter.
15825
15826 @item li/linipoldeint
15827 Linear interpolating deinterlacing filter that deinterlaces the given block by
15828 linearly interpolating every second line.
15829
15830 @item ci/cubicipoldeint
15831 Cubic interpolating deinterlacing filter deinterlaces the given block by
15832 cubically interpolating every second line.
15833
15834 @item md/mediandeint
15835 Median deinterlacing filter that deinterlaces the given block by applying a
15836 median filter to every second line.
15837
15838 @item fd/ffmpegdeint
15839 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15840 second line with a @code{(-1 4 2 4 -1)} filter.
15841
15842 @item l5/lowpass5
15843 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15844 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15845
15846 @item fq/forceQuant[|quantizer]
15847 Overrides the quantizer table from the input with the constant quantizer you
15848 specify.
15849 @table @option
15850 @item quantizer
15851 Quantizer to use
15852 @end table
15853
15854 @item de/default
15855 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15856
15857 @item fa/fast
15858 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15859
15860 @item ac
15861 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15862 @end table
15863
15864 @subsection Examples
15865
15866 @itemize
15867 @item
15868 Apply horizontal and vertical deblocking, deringing and automatic
15869 brightness/contrast:
15870 @example
15871 pp=hb/vb/dr/al
15872 @end example
15873
15874 @item
15875 Apply default filters without brightness/contrast correction:
15876 @example
15877 pp=de/-al
15878 @end example
15879
15880 @item
15881 Apply default filters and temporal denoiser:
15882 @example
15883 pp=default/tmpnoise|1|2|3
15884 @end example
15885
15886 @item
15887 Apply deblocking on luminance only, and switch vertical deblocking on or off
15888 automatically depending on available CPU time:
15889 @example
15890 pp=hb|y/vb|a
15891 @end example
15892 @end itemize
15893
15894 @section pp7
15895 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15896 similar to spp = 6 with 7 point DCT, where only the center sample is
15897 used after IDCT.
15898
15899 The filter accepts the following options:
15900
15901 @table @option
15902 @item qp
15903 Force a constant quantization parameter. It accepts an integer in range
15904 0 to 63. If not set, the filter will use the QP from the video stream
15905 (if available).
15906
15907 @item mode
15908 Set thresholding mode. Available modes are:
15909
15910 @table @samp
15911 @item hard
15912 Set hard thresholding.
15913 @item soft
15914 Set soft thresholding (better de-ringing effect, but likely blurrier).
15915 @item medium
15916 Set medium thresholding (good results, default).
15917 @end table
15918 @end table
15919
15920 @section premultiply
15921 Apply alpha premultiply effect to input video stream using first plane
15922 of second stream as alpha.
15923
15924 Both streams must have same dimensions and same pixel format.
15925
15926 The filter accepts the following option:
15927
15928 @table @option
15929 @item planes
15930 Set which planes will be processed, unprocessed planes will be copied.
15931 By default value 0xf, all planes will be processed.
15932
15933 @item inplace
15934 Do not require 2nd input for processing, instead use alpha plane from input stream.
15935 @end table
15936
15937 @section prewitt
15938 Apply prewitt operator to input video stream.
15939
15940 The filter accepts the following option:
15941
15942 @table @option
15943 @item planes
15944 Set which planes will be processed, unprocessed planes will be copied.
15945 By default value 0xf, all planes will be processed.
15946
15947 @item scale
15948 Set value which will be multiplied with filtered result.
15949
15950 @item delta
15951 Set value which will be added to filtered result.
15952 @end table
15953
15954 @subsection Commands
15955
15956 This filter supports the all above options as @ref{commands}.
15957
15958 @section pseudocolor
15959
15960 Alter frame colors in video with pseudocolors.
15961
15962 This filter accepts the following options:
15963
15964 @table @option
15965 @item c0
15966 set pixel first component expression
15967
15968 @item c1
15969 set pixel second component expression
15970
15971 @item c2
15972 set pixel third component expression
15973
15974 @item c3
15975 set pixel fourth component expression, corresponds to the alpha component
15976
15977 @item i
15978 set component to use as base for altering colors
15979 @end table
15980
15981 Each of them specifies the expression to use for computing the lookup table for
15982 the corresponding pixel component values.
15983
15984 The expressions can contain the following constants and functions:
15985
15986 @table @option
15987 @item w
15988 @item h
15989 The input width and height.
15990
15991 @item val
15992 The input value for the pixel component.
15993
15994 @item ymin, umin, vmin, amin
15995 The minimum allowed component value.
15996
15997 @item ymax, umax, vmax, amax
15998 The maximum allowed component value.
15999 @end table
16000
16001 All expressions default to "val".
16002
16003 @subsection Examples
16004
16005 @itemize
16006 @item
16007 Change too high luma values to gradient:
16008 @example
16009 pseudocolor="'if(between(val,ymax,amax),lerp(ymin,ymax,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(umax,umin,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(vmin,vmax,(val-ymax)/(amax-ymax)),-1):-1'"
16010 @end example
16011 @end itemize
16012
16013 @section psnr
16014
16015 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16016 Ratio) between two input videos.
16017
16018 This filter takes in input two input videos, the first input is
16019 considered the "main" source and is passed unchanged to the
16020 output. The second input is used as a "reference" video for computing
16021 the PSNR.
16022
16023 Both video inputs must have the same resolution and pixel format for
16024 this filter to work correctly. Also it assumes that both inputs
16025 have the same number of frames, which are compared one by one.
16026
16027 The obtained average PSNR is printed through the logging system.
16028
16029 The filter stores the accumulated MSE (mean squared error) of each
16030 frame, and at the end of the processing it is averaged across all frames
16031 equally, and the following formula is applied to obtain the PSNR:
16032
16033 @example
16034 PSNR = 10*log10(MAX^2/MSE)
16035 @end example
16036
16037 Where MAX is the average of the maximum values of each component of the
16038 image.
16039
16040 The description of the accepted parameters follows.
16041
16042 @table @option
16043 @item stats_file, f
16044 If specified the filter will use the named file to save the PSNR of
16045 each individual frame. When filename equals "-" the data is sent to
16046 standard output.
16047
16048 @item stats_version
16049 Specifies which version of the stats file format to use. Details of
16050 each format are written below.
16051 Default value is 1.
16052
16053 @item stats_add_max
16054 Determines whether the max value is output to the stats log.
16055 Default value is 0.
16056 Requires stats_version >= 2. If this is set and stats_version < 2,
16057 the filter will return an error.
16058 @end table
16059
16060 This filter also supports the @ref{framesync} options.
16061
16062 The file printed if @var{stats_file} is selected, contains a sequence of
16063 key/value pairs of the form @var{key}:@var{value} for each compared
16064 couple of frames.
16065
16066 If a @var{stats_version} greater than 1 is specified, a header line precedes
16067 the list of per-frame-pair stats, with key value pairs following the frame
16068 format with the following parameters:
16069
16070 @table @option
16071 @item psnr_log_version
16072 The version of the log file format. Will match @var{stats_version}.
16073
16074 @item fields
16075 A comma separated list of the per-frame-pair parameters included in
16076 the log.
16077 @end table
16078
16079 A description of each shown per-frame-pair parameter follows:
16080
16081 @table @option
16082 @item n
16083 sequential number of the input frame, starting from 1
16084
16085 @item mse_avg
16086 Mean Square Error pixel-by-pixel average difference of the compared
16087 frames, averaged over all the image components.
16088
16089 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16090 Mean Square Error pixel-by-pixel average difference of the compared
16091 frames for the component specified by the suffix.
16092
16093 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16094 Peak Signal to Noise ratio of the compared frames for the component
16095 specified by the suffix.
16096
16097 @item max_avg, max_y, max_u, max_v
16098 Maximum allowed value for each channel, and average over all
16099 channels.
16100 @end table
16101
16102 @subsection Examples
16103 @itemize
16104 @item
16105 For example:
16106 @example
16107 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16108 [main][ref] psnr="stats_file=stats.log" [out]
16109 @end example
16110
16111 On this example the input file being processed is compared with the
16112 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16113 is stored in @file{stats.log}.
16114
16115 @item
16116 Another example with different containers:
16117 @example
16118 ffmpeg -i main.mpg -i ref.mkv -lavfi  "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]psnr" -f null -
16119 @end example
16120 @end itemize
16121
16122 @anchor{pullup}
16123 @section pullup
16124
16125 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16126 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16127 content.
16128
16129 The pullup filter is designed to take advantage of future context in making
16130 its decisions. This filter is stateless in the sense that it does not lock
16131 onto a pattern to follow, but it instead looks forward to the following
16132 fields in order to identify matches and rebuild progressive frames.
16133
16134 To produce content with an even framerate, insert the fps filter after
16135 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16136 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16137
16138 The filter accepts the following options:
16139
16140 @table @option
16141 @item jl
16142 @item jr
16143 @item jt
16144 @item jb
16145 These options set the amount of "junk" to ignore at the left, right, top, and
16146 bottom of the image, respectively. Left and right are in units of 8 pixels,
16147 while top and bottom are in units of 2 lines.
16148 The default is 8 pixels on each side.
16149
16150 @item sb
16151 Set the strict breaks. Setting this option to 1 will reduce the chances of
16152 filter generating an occasional mismatched frame, but it may also cause an
16153 excessive number of frames to be dropped during high motion sequences.
16154 Conversely, setting it to -1 will make filter match fields more easily.
16155 This may help processing of video where there is slight blurring between
16156 the fields, but may also cause there to be interlaced frames in the output.
16157 Default value is @code{0}.
16158
16159 @item mp
16160 Set the metric plane to use. It accepts the following values:
16161 @table @samp
16162 @item l
16163 Use luma plane.
16164
16165 @item u
16166 Use chroma blue plane.
16167
16168 @item v
16169 Use chroma red plane.
16170 @end table
16171
16172 This option may be set to use chroma plane instead of the default luma plane
16173 for doing filter's computations. This may improve accuracy on very clean
16174 source material, but more likely will decrease accuracy, especially if there
16175 is chroma noise (rainbow effect) or any grayscale video.
16176 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16177 load and make pullup usable in realtime on slow machines.
16178 @end table
16179
16180 For best results (without duplicated frames in the output file) it is
16181 necessary to change the output frame rate. For example, to inverse
16182 telecine NTSC input:
16183 @example
16184 ffmpeg -i input -vf pullup -r 24000/1001 ...
16185 @end example
16186
16187 @section qp
16188
16189 Change video quantization parameters (QP).
16190
16191 The filter accepts the following option:
16192
16193 @table @option
16194 @item qp
16195 Set expression for quantization parameter.
16196 @end table
16197
16198 The expression is evaluated through the eval API and can contain, among others,
16199 the following constants:
16200
16201 @table @var
16202 @item known
16203 1 if index is not 129, 0 otherwise.
16204
16205 @item qp
16206 Sequential index starting from -129 to 128.
16207 @end table
16208
16209 @subsection Examples
16210
16211 @itemize
16212 @item
16213 Some equation like:
16214 @example
16215 qp=2+2*sin(PI*qp)
16216 @end example
16217 @end itemize
16218
16219 @section random
16220
16221 Flush video frames from internal cache of frames into a random order.
16222 No frame is discarded.
16223 Inspired by @ref{frei0r} nervous filter.
16224
16225 @table @option
16226 @item frames
16227 Set size in number of frames of internal cache, in range from @code{2} to
16228 @code{512}. Default is @code{30}.
16229
16230 @item seed
16231 Set seed for random number generator, must be an integer included between
16232 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16233 less than @code{0}, the filter will try to use a good random seed on a
16234 best effort basis.
16235 @end table
16236
16237 @section readeia608
16238
16239 Read closed captioning (EIA-608) information from the top lines of a video frame.
16240
16241 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16242 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16243 with EIA-608 data (starting from 0). A description of each metadata value follows:
16244
16245 @table @option
16246 @item lavfi.readeia608.X.cc
16247 The two bytes stored as EIA-608 data (printed in hexadecimal).
16248
16249 @item lavfi.readeia608.X.line
16250 The number of the line on which the EIA-608 data was identified and read.
16251 @end table
16252
16253 This filter accepts the following options:
16254
16255 @table @option
16256 @item scan_min
16257 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16258
16259 @item scan_max
16260 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16261
16262 @item spw
16263 Set the ratio of width reserved for sync code detection.
16264 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16265
16266 @item chp
16267 Enable checking the parity bit. In the event of a parity error, the filter will output
16268 @code{0x00} for that character. Default is false.
16269
16270 @item lp
16271 Lowpass lines prior to further processing. Default is enabled.
16272 @end table
16273
16274 @subsection Commands
16275
16276 This filter supports the all above options as @ref{commands}.
16277
16278 @subsection Examples
16279
16280 @itemize
16281 @item
16282 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16283 @example
16284 ffprobe -f lavfi -i movie=captioned_video.mov,readeia608 -show_entries frame=pkt_pts_time:frame_tags=lavfi.readeia608.0.cc,lavfi.readeia608.1.cc -of csv
16285 @end example
16286 @end itemize
16287
16288 @section readvitc
16289
16290 Read vertical interval timecode (VITC) information from the top lines of a
16291 video frame.
16292
16293 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16294 timecode value, if a valid timecode has been detected. Further metadata key
16295 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16296 timecode data has been found or not.
16297
16298 This filter accepts the following options:
16299
16300 @table @option
16301 @item scan_max
16302 Set the maximum number of lines to scan for VITC data. If the value is set to
16303 @code{-1} the full video frame is scanned. Default is @code{45}.
16304
16305 @item thr_b
16306 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16307 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16308
16309 @item thr_w
16310 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16311 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16312 @end table
16313
16314 @subsection Examples
16315
16316 @itemize
16317 @item
16318 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16319 draw @code{--:--:--:--} as a placeholder:
16320 @example
16321 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16322 @end example
16323 @end itemize
16324
16325 @section remap
16326
16327 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16328
16329 Destination pixel at position (X, Y) will be picked from source (x, y) position
16330 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16331 value for pixel will be used for destination pixel.
16332
16333 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16334 will have Xmap/Ymap video stream dimensions.
16335 Xmap and Ymap input video streams are 16bit depth, single channel.
16336
16337 @table @option
16338 @item format
16339 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16340 Default is @code{color}.
16341
16342 @item fill
16343 Specify the color of the unmapped pixels. For the syntax of this option,
16344 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16345 manual,ffmpeg-utils}. Default color is @code{black}.
16346 @end table
16347
16348 @section removegrain
16349
16350 The removegrain filter is a spatial denoiser for progressive video.
16351
16352 @table @option
16353 @item m0
16354 Set mode for the first plane.
16355
16356 @item m1
16357 Set mode for the second plane.
16358
16359 @item m2
16360 Set mode for the third plane.
16361
16362 @item m3
16363 Set mode for the fourth plane.
16364 @end table
16365
16366 Range of mode is from 0 to 24. Description of each mode follows:
16367
16368 @table @var
16369 @item 0
16370 Leave input plane unchanged. Default.
16371
16372 @item 1
16373 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16374
16375 @item 2
16376 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16377
16378 @item 3
16379 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16380
16381 @item 4
16382 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16383 This is equivalent to a median filter.
16384
16385 @item 5
16386 Line-sensitive clipping giving the minimal change.
16387
16388 @item 6
16389 Line-sensitive clipping, intermediate.
16390
16391 @item 7
16392 Line-sensitive clipping, intermediate.
16393
16394 @item 8
16395 Line-sensitive clipping, intermediate.
16396
16397 @item 9
16398 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16399
16400 @item 10
16401 Replaces the target pixel with the closest neighbour.
16402
16403 @item 11
16404 [1 2 1] horizontal and vertical kernel blur.
16405
16406 @item 12
16407 Same as mode 11.
16408
16409 @item 13
16410 Bob mode, interpolates top field from the line where the neighbours
16411 pixels are the closest.
16412
16413 @item 14
16414 Bob mode, interpolates bottom field from the line where the neighbours
16415 pixels are the closest.
16416
16417 @item 15
16418 Bob mode, interpolates top field. Same as 13 but with a more complicated
16419 interpolation formula.
16420
16421 @item 16
16422 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16423 interpolation formula.
16424
16425 @item 17
16426 Clips the pixel with the minimum and maximum of respectively the maximum and
16427 minimum of each pair of opposite neighbour pixels.
16428
16429 @item 18
16430 Line-sensitive clipping using opposite neighbours whose greatest distance from
16431 the current pixel is minimal.
16432
16433 @item 19
16434 Replaces the pixel with the average of its 8 neighbours.
16435
16436 @item 20
16437 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16438
16439 @item 21
16440 Clips pixels using the averages of opposite neighbour.
16441
16442 @item 22
16443 Same as mode 21 but simpler and faster.
16444
16445 @item 23
16446 Small edge and halo removal, but reputed useless.
16447
16448 @item 24
16449 Similar as 23.
16450 @end table
16451
16452 @section removelogo
16453
16454 Suppress a TV station logo, using an image file to determine which
16455 pixels comprise the logo. It works by filling in the pixels that
16456 comprise the logo with neighboring pixels.
16457
16458 The filter accepts the following options:
16459
16460 @table @option
16461 @item filename, f
16462 Set the filter bitmap file, which can be any image format supported by
16463 libavformat. The width and height of the image file must match those of the
16464 video stream being processed.
16465 @end table
16466
16467 Pixels in the provided bitmap image with a value of zero are not
16468 considered part of the logo, non-zero pixels are considered part of
16469 the logo. If you use white (255) for the logo and black (0) for the
16470 rest, you will be safe. For making the filter bitmap, it is
16471 recommended to take a screen capture of a black frame with the logo
16472 visible, and then using a threshold filter followed by the erode
16473 filter once or twice.
16474
16475 If needed, little splotches can be fixed manually. Remember that if
16476 logo pixels are not covered, the filter quality will be much
16477 reduced. Marking too many pixels as part of the logo does not hurt as
16478 much, but it will increase the amount of blurring needed to cover over
16479 the image and will destroy more information than necessary, and extra
16480 pixels will slow things down on a large logo.
16481
16482 @section repeatfields
16483
16484 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16485 fields based on its value.
16486
16487 @section reverse
16488
16489 Reverse a video clip.
16490
16491 Warning: This filter requires memory to buffer the entire clip, so trimming
16492 is suggested.
16493
16494 @subsection Examples
16495
16496 @itemize
16497 @item
16498 Take the first 5 seconds of a clip, and reverse it.
16499 @example
16500 trim=end=5,reverse
16501 @end example
16502 @end itemize
16503
16504 @section rgbashift
16505 Shift R/G/B/A pixels horizontally and/or vertically.
16506
16507 The filter accepts the following options:
16508 @table @option
16509 @item rh
16510 Set amount to shift red horizontally.
16511 @item rv
16512 Set amount to shift red vertically.
16513 @item gh
16514 Set amount to shift green horizontally.
16515 @item gv
16516 Set amount to shift green vertically.
16517 @item bh
16518 Set amount to shift blue horizontally.
16519 @item bv
16520 Set amount to shift blue vertically.
16521 @item ah
16522 Set amount to shift alpha horizontally.
16523 @item av
16524 Set amount to shift alpha vertically.
16525 @item edge
16526 Set edge mode, can be @var{smear}, default, or @var{warp}.
16527 @end table
16528
16529 @subsection Commands
16530
16531 This filter supports the all above options as @ref{commands}.
16532
16533 @section roberts
16534 Apply roberts cross operator to input video stream.
16535
16536 The filter accepts the following option:
16537
16538 @table @option
16539 @item planes
16540 Set which planes will be processed, unprocessed planes will be copied.
16541 By default value 0xf, all planes will be processed.
16542
16543 @item scale
16544 Set value which will be multiplied with filtered result.
16545
16546 @item delta
16547 Set value which will be added to filtered result.
16548 @end table
16549
16550 @subsection Commands
16551
16552 This filter supports the all above options as @ref{commands}.
16553
16554 @section rotate
16555
16556 Rotate video by an arbitrary angle expressed in radians.
16557
16558 The filter accepts the following options:
16559
16560 A description of the optional parameters follows.
16561 @table @option
16562 @item angle, a
16563 Set an expression for the angle by which to rotate the input video
16564 clockwise, expressed as a number of radians. A negative value will
16565 result in a counter-clockwise rotation. By default it is set to "0".
16566
16567 This expression is evaluated for each frame.
16568
16569 @item out_w, ow
16570 Set the output width expression, default value is "iw".
16571 This expression is evaluated just once during configuration.
16572
16573 @item out_h, oh
16574 Set the output height expression, default value is "ih".
16575 This expression is evaluated just once during configuration.
16576
16577 @item bilinear
16578 Enable bilinear interpolation if set to 1, a value of 0 disables
16579 it. Default value is 1.
16580
16581 @item fillcolor, c
16582 Set the color used to fill the output area not covered by the rotated
16583 image. For the general syntax of this option, check the
16584 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16585 If the special value "none" is selected then no
16586 background is printed (useful for example if the background is never shown).
16587
16588 Default value is "black".
16589 @end table
16590
16591 The expressions for the angle and the output size can contain the
16592 following constants and functions:
16593
16594 @table @option
16595 @item n
16596 sequential number of the input frame, starting from 0. It is always NAN
16597 before the first frame is filtered.
16598
16599 @item t
16600 time in seconds of the input frame, it is set to 0 when the filter is
16601 configured. It is always NAN before the first frame is filtered.
16602
16603 @item hsub
16604 @item vsub
16605 horizontal and vertical chroma subsample values. For example for the
16606 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16607
16608 @item in_w, iw
16609 @item in_h, ih
16610 the input video width and height
16611
16612 @item out_w, ow
16613 @item out_h, oh
16614 the output width and height, that is the size of the padded area as
16615 specified by the @var{width} and @var{height} expressions
16616
16617 @item rotw(a)
16618 @item roth(a)
16619 the minimal width/height required for completely containing the input
16620 video rotated by @var{a} radians.
16621
16622 These are only available when computing the @option{out_w} and
16623 @option{out_h} expressions.
16624 @end table
16625
16626 @subsection Examples
16627
16628 @itemize
16629 @item
16630 Rotate the input by PI/6 radians clockwise:
16631 @example
16632 rotate=PI/6
16633 @end example
16634
16635 @item
16636 Rotate the input by PI/6 radians counter-clockwise:
16637 @example
16638 rotate=-PI/6
16639 @end example
16640
16641 @item
16642 Rotate the input by 45 degrees clockwise:
16643 @example
16644 rotate=45*PI/180
16645 @end example
16646
16647 @item
16648 Apply a constant rotation with period T, starting from an angle of PI/3:
16649 @example
16650 rotate=PI/3+2*PI*t/T
16651 @end example
16652
16653 @item
16654 Make the input video rotation oscillating with a period of T
16655 seconds and an amplitude of A radians:
16656 @example
16657 rotate=A*sin(2*PI/T*t)
16658 @end example
16659
16660 @item
16661 Rotate the video, output size is chosen so that the whole rotating
16662 input video is always completely contained in the output:
16663 @example
16664 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16665 @end example
16666
16667 @item
16668 Rotate the video, reduce the output size so that no background is ever
16669 shown:
16670 @example
16671 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16672 @end example
16673 @end itemize
16674
16675 @subsection Commands
16676
16677 The filter supports the following commands:
16678
16679 @table @option
16680 @item a, angle
16681 Set the angle expression.
16682 The command accepts the same syntax of the corresponding option.
16683
16684 If the specified expression is not valid, it is kept at its current
16685 value.
16686 @end table
16687
16688 @section sab
16689
16690 Apply Shape Adaptive Blur.
16691
16692 The filter accepts the following options:
16693
16694 @table @option
16695 @item luma_radius, lr
16696 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16697 value is 1.0. A greater value will result in a more blurred image, and
16698 in slower processing.
16699
16700 @item luma_pre_filter_radius, lpfr
16701 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16702 value is 1.0.
16703
16704 @item luma_strength, ls
16705 Set luma maximum difference between pixels to still be considered, must
16706 be a value in the 0.1-100.0 range, default value is 1.0.
16707
16708 @item chroma_radius, cr
16709 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16710 greater value will result in a more blurred image, and in slower
16711 processing.
16712
16713 @item chroma_pre_filter_radius, cpfr
16714 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16715
16716 @item chroma_strength, cs
16717 Set chroma maximum difference between pixels to still be considered,
16718 must be a value in the -0.9-100.0 range.
16719 @end table
16720
16721 Each chroma option value, if not explicitly specified, is set to the
16722 corresponding luma option value.
16723
16724 @anchor{scale}
16725 @section scale
16726
16727 Scale (resize) the input video, using the libswscale library.
16728
16729 The scale filter forces the output display aspect ratio to be the same
16730 of the input, by changing the output sample aspect ratio.
16731
16732 If the input image format is different from the format requested by
16733 the next filter, the scale filter will convert the input to the
16734 requested format.
16735
16736 @subsection Options
16737 The filter accepts the following options, or any of the options
16738 supported by the libswscale scaler.
16739
16740 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16741 the complete list of scaler options.
16742
16743 @table @option
16744 @item width, w
16745 @item height, h
16746 Set the output video dimension expression. Default value is the input
16747 dimension.
16748
16749 If the @var{width} or @var{w} value is 0, the input width is used for
16750 the output. If the @var{height} or @var{h} value is 0, the input height
16751 is used for the output.
16752
16753 If one and only one of the values is -n with n >= 1, the scale filter
16754 will use a value that maintains the aspect ratio of the input image,
16755 calculated from the other specified dimension. After that it will,
16756 however, make sure that the calculated dimension is divisible by n and
16757 adjust the value if necessary.
16758
16759 If both values are -n with n >= 1, the behavior will be identical to
16760 both values being set to 0 as previously detailed.
16761
16762 See below for the list of accepted constants for use in the dimension
16763 expression.
16764
16765 @item eval
16766 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16767
16768 @table @samp
16769 @item init
16770 Only evaluate expressions once during the filter initialization or when a command is processed.
16771
16772 @item frame
16773 Evaluate expressions for each incoming frame.
16774
16775 @end table
16776
16777 Default value is @samp{init}.
16778
16779
16780 @item interl
16781 Set the interlacing mode. It accepts the following values:
16782
16783 @table @samp
16784 @item 1
16785 Force interlaced aware scaling.
16786
16787 @item 0
16788 Do not apply interlaced scaling.
16789
16790 @item -1
16791 Select interlaced aware scaling depending on whether the source frames
16792 are flagged as interlaced or not.
16793 @end table
16794
16795 Default value is @samp{0}.
16796
16797 @item flags
16798 Set libswscale scaling flags. See
16799 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16800 complete list of values. If not explicitly specified the filter applies
16801 the default flags.
16802
16803
16804 @item param0, param1
16805 Set libswscale input parameters for scaling algorithms that need them. See
16806 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16807 complete documentation. If not explicitly specified the filter applies
16808 empty parameters.
16809
16810
16811
16812 @item size, s
16813 Set the video size. For the syntax of this option, check the
16814 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16815
16816 @item in_color_matrix
16817 @item out_color_matrix
16818 Set in/output YCbCr color space type.
16819
16820 This allows the autodetected value to be overridden as well as allows forcing
16821 a specific value used for the output and encoder.
16822
16823 If not specified, the color space type depends on the pixel format.
16824
16825 Possible values:
16826
16827 @table @samp
16828 @item auto
16829 Choose automatically.
16830
16831 @item bt709
16832 Format conforming to International Telecommunication Union (ITU)
16833 Recommendation BT.709.
16834
16835 @item fcc
16836 Set color space conforming to the United States Federal Communications
16837 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16838
16839 @item bt601
16840 @item bt470
16841 @item smpte170m
16842 Set color space conforming to:
16843
16844 @itemize
16845 @item
16846 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16847
16848 @item
16849 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16850
16851 @item
16852 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16853
16854 @end itemize
16855
16856 @item smpte240m
16857 Set color space conforming to SMPTE ST 240:1999.
16858
16859 @item bt2020
16860 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16861 @end table
16862
16863 @item in_range
16864 @item out_range
16865 Set in/output YCbCr sample range.
16866
16867 This allows the autodetected value to be overridden as well as allows forcing
16868 a specific value used for the output and encoder. If not specified, the
16869 range depends on the pixel format. Possible values:
16870
16871 @table @samp
16872 @item auto/unknown
16873 Choose automatically.
16874
16875 @item jpeg/full/pc
16876 Set full range (0-255 in case of 8-bit luma).
16877
16878 @item mpeg/limited/tv
16879 Set "MPEG" range (16-235 in case of 8-bit luma).
16880 @end table
16881
16882 @item force_original_aspect_ratio
16883 Enable decreasing or increasing output video width or height if necessary to
16884 keep the original aspect ratio. Possible values:
16885
16886 @table @samp
16887 @item disable
16888 Scale the video as specified and disable this feature.
16889
16890 @item decrease
16891 The output video dimensions will automatically be decreased if needed.
16892
16893 @item increase
16894 The output video dimensions will automatically be increased if needed.
16895
16896 @end table
16897
16898 One useful instance of this option is that when you know a specific device's
16899 maximum allowed resolution, you can use this to limit the output video to
16900 that, while retaining the aspect ratio. For example, device A allows
16901 1280x720 playback, and your video is 1920x800. Using this option (set it to
16902 decrease) and specifying 1280x720 to the command line makes the output
16903 1280x533.
16904
16905 Please note that this is a different thing than specifying -1 for @option{w}
16906 or @option{h}, you still need to specify the output resolution for this option
16907 to work.
16908
16909 @item force_divisible_by
16910 Ensures that both the output dimensions, width and height, are divisible by the
16911 given integer when used together with @option{force_original_aspect_ratio}. This
16912 works similar to using @code{-n} in the @option{w} and @option{h} options.
16913
16914 This option respects the value set for @option{force_original_aspect_ratio},
16915 increasing or decreasing the resolution accordingly. The video's aspect ratio
16916 may be slightly modified.
16917
16918 This option can be handy if you need to have a video fit within or exceed
16919 a defined resolution using @option{force_original_aspect_ratio} but also have
16920 encoder restrictions on width or height divisibility.
16921
16922 @end table
16923
16924 The values of the @option{w} and @option{h} options are expressions
16925 containing the following constants:
16926
16927 @table @var
16928 @item in_w
16929 @item in_h
16930 The input width and height
16931
16932 @item iw
16933 @item ih
16934 These are the same as @var{in_w} and @var{in_h}.
16935
16936 @item out_w
16937 @item out_h
16938 The output (scaled) width and height
16939
16940 @item ow
16941 @item oh
16942 These are the same as @var{out_w} and @var{out_h}
16943
16944 @item a
16945 The same as @var{iw} / @var{ih}
16946
16947 @item sar
16948 input sample aspect ratio
16949
16950 @item dar
16951 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16952
16953 @item hsub
16954 @item vsub
16955 horizontal and vertical input chroma subsample values. For example for the
16956 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16957
16958 @item ohsub
16959 @item ovsub
16960 horizontal and vertical output chroma subsample values. For example for the
16961 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16962
16963 @item n
16964 The (sequential) number of the input frame, starting from 0.
16965 Only available with @code{eval=frame}.
16966
16967 @item t
16968 The presentation timestamp of the input frame, expressed as a number of
16969 seconds. Only available with @code{eval=frame}.
16970
16971 @item pos
16972 The position (byte offset) of the frame in the input stream, or NaN if
16973 this information is unavailable and/or meaningless (for example in case of synthetic video).
16974 Only available with @code{eval=frame}.
16975 @end table
16976
16977 @subsection Examples
16978
16979 @itemize
16980 @item
16981 Scale the input video to a size of 200x100
16982 @example
16983 scale=w=200:h=100
16984 @end example
16985
16986 This is equivalent to:
16987 @example
16988 scale=200:100
16989 @end example
16990
16991 or:
16992 @example
16993 scale=200x100
16994 @end example
16995
16996 @item
16997 Specify a size abbreviation for the output size:
16998 @example
16999 scale=qcif
17000 @end example
17001
17002 which can also be written as:
17003 @example
17004 scale=size=qcif
17005 @end example
17006
17007 @item
17008 Scale the input to 2x:
17009 @example
17010 scale=w=2*iw:h=2*ih
17011 @end example
17012
17013 @item
17014 The above is the same as:
17015 @example
17016 scale=2*in_w:2*in_h
17017 @end example
17018
17019 @item
17020 Scale the input to 2x with forced interlaced scaling:
17021 @example
17022 scale=2*iw:2*ih:interl=1
17023 @end example
17024
17025 @item
17026 Scale the input to half size:
17027 @example
17028 scale=w=iw/2:h=ih/2
17029 @end example
17030
17031 @item
17032 Increase the width, and set the height to the same size:
17033 @example
17034 scale=3/2*iw:ow
17035 @end example
17036
17037 @item
17038 Seek Greek harmony:
17039 @example
17040 scale=iw:1/PHI*iw
17041 scale=ih*PHI:ih
17042 @end example
17043
17044 @item
17045 Increase the height, and set the width to 3/2 of the height:
17046 @example
17047 scale=w=3/2*oh:h=3/5*ih
17048 @end example
17049
17050 @item
17051 Increase the size, making the size a multiple of the chroma
17052 subsample values:
17053 @example
17054 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17055 @end example
17056
17057 @item
17058 Increase the width to a maximum of 500 pixels,
17059 keeping the same aspect ratio as the input:
17060 @example
17061 scale=w='min(500\, iw*3/2):h=-1'
17062 @end example
17063
17064 @item
17065 Make pixels square by combining scale and setsar:
17066 @example
17067 scale='trunc(ih*dar):ih',setsar=1/1
17068 @end example
17069
17070 @item
17071 Make pixels square by combining scale and setsar,
17072 making sure the resulting resolution is even (required by some codecs):
17073 @example
17074 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17075 @end example
17076 @end itemize
17077
17078 @subsection Commands
17079
17080 This filter supports the following commands:
17081 @table @option
17082 @item width, w
17083 @item height, h
17084 Set the output video dimension expression.
17085 The command accepts the same syntax of the corresponding option.
17086
17087 If the specified expression is not valid, it is kept at its current
17088 value.
17089 @end table
17090
17091 @section scale_npp
17092
17093 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17094 format conversion on CUDA video frames. Setting the output width and height
17095 works in the same way as for the @var{scale} filter.
17096
17097 The following additional options are accepted:
17098 @table @option
17099 @item format
17100 The pixel format of the output CUDA frames. If set to the string "same" (the
17101 default), the input format will be kept. Note that automatic format negotiation
17102 and conversion is not yet supported for hardware frames
17103
17104 @item interp_algo
17105 The interpolation algorithm used for resizing. One of the following:
17106 @table @option
17107 @item nn
17108 Nearest neighbour.
17109
17110 @item linear
17111 @item cubic
17112 @item cubic2p_bspline
17113 2-parameter cubic (B=1, C=0)
17114
17115 @item cubic2p_catmullrom
17116 2-parameter cubic (B=0, C=1/2)
17117
17118 @item cubic2p_b05c03
17119 2-parameter cubic (B=1/2, C=3/10)
17120
17121 @item super
17122 Supersampling
17123
17124 @item lanczos
17125 @end table
17126
17127 @item force_original_aspect_ratio
17128 Enable decreasing or increasing output video width or height if necessary to
17129 keep the original aspect ratio. Possible values:
17130
17131 @table @samp
17132 @item disable
17133 Scale the video as specified and disable this feature.
17134
17135 @item decrease
17136 The output video dimensions will automatically be decreased if needed.
17137
17138 @item increase
17139 The output video dimensions will automatically be increased if needed.
17140
17141 @end table
17142
17143 One useful instance of this option is that when you know a specific device's
17144 maximum allowed resolution, you can use this to limit the output video to
17145 that, while retaining the aspect ratio. For example, device A allows
17146 1280x720 playback, and your video is 1920x800. Using this option (set it to
17147 decrease) and specifying 1280x720 to the command line makes the output
17148 1280x533.
17149
17150 Please note that this is a different thing than specifying -1 for @option{w}
17151 or @option{h}, you still need to specify the output resolution for this option
17152 to work.
17153
17154 @item force_divisible_by
17155 Ensures that both the output dimensions, width and height, are divisible by the
17156 given integer when used together with @option{force_original_aspect_ratio}. This
17157 works similar to using @code{-n} in the @option{w} and @option{h} options.
17158
17159 This option respects the value set for @option{force_original_aspect_ratio},
17160 increasing or decreasing the resolution accordingly. The video's aspect ratio
17161 may be slightly modified.
17162
17163 This option can be handy if you need to have a video fit within or exceed
17164 a defined resolution using @option{force_original_aspect_ratio} but also have
17165 encoder restrictions on width or height divisibility.
17166
17167 @end table
17168
17169 @section scale2ref
17170
17171 Scale (resize) the input video, based on a reference video.
17172
17173 See the scale filter for available options, scale2ref supports the same but
17174 uses the reference video instead of the main input as basis. scale2ref also
17175 supports the following additional constants for the @option{w} and
17176 @option{h} options:
17177
17178 @table @var
17179 @item main_w
17180 @item main_h
17181 The main input video's width and height
17182
17183 @item main_a
17184 The same as @var{main_w} / @var{main_h}
17185
17186 @item main_sar
17187 The main input video's sample aspect ratio
17188
17189 @item main_dar, mdar
17190 The main input video's display aspect ratio. Calculated from
17191 @code{(main_w / main_h) * main_sar}.
17192
17193 @item main_hsub
17194 @item main_vsub
17195 The main input video's horizontal and vertical chroma subsample values.
17196 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17197 is 1.
17198
17199 @item main_n
17200 The (sequential) number of the main input frame, starting from 0.
17201 Only available with @code{eval=frame}.
17202
17203 @item main_t
17204 The presentation timestamp of the main input frame, expressed as a number of
17205 seconds. Only available with @code{eval=frame}.
17206
17207 @item main_pos
17208 The position (byte offset) of the frame in the main input stream, or NaN if
17209 this information is unavailable and/or meaningless (for example in case of synthetic video).
17210 Only available with @code{eval=frame}.
17211 @end table
17212
17213 @subsection Examples
17214
17215 @itemize
17216 @item
17217 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17218 @example
17219 'scale2ref[b][a];[a][b]overlay'
17220 @end example
17221
17222 @item
17223 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17224 @example
17225 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17226 @end example
17227 @end itemize
17228
17229 @subsection Commands
17230
17231 This filter supports the following commands:
17232 @table @option
17233 @item width, w
17234 @item height, h
17235 Set the output video dimension expression.
17236 The command accepts the same syntax of the corresponding option.
17237
17238 If the specified expression is not valid, it is kept at its current
17239 value.
17240 @end table
17241
17242 @section scroll
17243 Scroll input video horizontally and/or vertically by constant speed.
17244
17245 The filter accepts the following options:
17246 @table @option
17247 @item horizontal, h
17248 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17249 Negative values changes scrolling direction.
17250
17251 @item vertical, v
17252 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17253 Negative values changes scrolling direction.
17254
17255 @item hpos
17256 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17257
17258 @item vpos
17259 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17260 @end table
17261
17262 @subsection Commands
17263
17264 This filter supports the following @ref{commands}:
17265 @table @option
17266 @item horizontal, h
17267 Set the horizontal scrolling speed.
17268 @item vertical, v
17269 Set the vertical scrolling speed.
17270 @end table
17271
17272 @anchor{scdet}
17273 @section scdet
17274
17275 Detect video scene change.
17276
17277 This filter sets frame metadata with mafd between frame, the scene score, and
17278 forward the frame to the next filter, so they can use these metadata to detect
17279 scene change or others.
17280
17281 In addition, this filter logs a message and sets frame metadata when it detects
17282 a scene change by @option{threshold}.
17283
17284 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17285
17286 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17287 to detect scene change.
17288
17289 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17290 detect scene change with @option{threshold}.
17291
17292 The filter accepts the following options:
17293
17294 @table @option
17295 @item threshold, t
17296 Set the scene change detection threshold as a percentage of maximum change. Good
17297 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17298 @code{[0., 100.]}.
17299
17300 Default value is @code{10.}.
17301
17302 @item sc_pass, s
17303 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17304 You can enable it if you want to get snapshot of scene change frames only.
17305 @end table
17306
17307 @anchor{selectivecolor}
17308 @section selectivecolor
17309
17310 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17311 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17312 by the "purity" of the color (that is, how saturated it already is).
17313
17314 This filter is similar to the Adobe Photoshop Selective Color tool.
17315
17316 The filter accepts the following options:
17317
17318 @table @option
17319 @item correction_method
17320 Select color correction method.
17321
17322 Available values are:
17323 @table @samp
17324 @item absolute
17325 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17326 component value).
17327 @item relative
17328 Specified adjustments are relative to the original component value.
17329 @end table
17330 Default is @code{absolute}.
17331 @item reds
17332 Adjustments for red pixels (pixels where the red component is the maximum)
17333 @item yellows
17334 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17335 @item greens
17336 Adjustments for green pixels (pixels where the green component is the maximum)
17337 @item cyans
17338 Adjustments for cyan pixels (pixels where the red component is the minimum)
17339 @item blues
17340 Adjustments for blue pixels (pixels where the blue component is the maximum)
17341 @item magentas
17342 Adjustments for magenta pixels (pixels where the green component is the minimum)
17343 @item whites
17344 Adjustments for white pixels (pixels where all components are greater than 128)
17345 @item neutrals
17346 Adjustments for all pixels except pure black and pure white
17347 @item blacks
17348 Adjustments for black pixels (pixels where all components are lesser than 128)
17349 @item psfile
17350 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17351 @end table
17352
17353 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17354 4 space separated floating point adjustment values in the [-1,1] range,
17355 respectively to adjust the amount of cyan, magenta, yellow and black for the
17356 pixels of its range.
17357
17358 @subsection Examples
17359
17360 @itemize
17361 @item
17362 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17363 increase magenta by 27% in blue areas:
17364 @example
17365 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17366 @end example
17367
17368 @item
17369 Use a Photoshop selective color preset:
17370 @example
17371 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17372 @end example
17373 @end itemize
17374
17375 @anchor{separatefields}
17376 @section separatefields
17377
17378 The @code{separatefields} takes a frame-based video input and splits
17379 each frame into its components fields, producing a new half height clip
17380 with twice the frame rate and twice the frame count.
17381
17382 This filter use field-dominance information in frame to decide which
17383 of each pair of fields to place first in the output.
17384 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17385
17386 @section setdar, setsar
17387
17388 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17389 output video.
17390
17391 This is done by changing the specified Sample (aka Pixel) Aspect
17392 Ratio, according to the following equation:
17393 @example
17394 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17395 @end example
17396
17397 Keep in mind that the @code{setdar} filter does not modify the pixel
17398 dimensions of the video frame. Also, the display aspect ratio set by
17399 this filter may be changed by later filters in the filterchain,
17400 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17401 applied.
17402
17403 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17404 the filter output video.
17405
17406 Note that as a consequence of the application of this filter, the
17407 output display aspect ratio will change according to the equation
17408 above.
17409
17410 Keep in mind that the sample aspect ratio set by the @code{setsar}
17411 filter may be changed by later filters in the filterchain, e.g. if
17412 another "setsar" or a "setdar" filter is applied.
17413
17414 It accepts the following parameters:
17415
17416 @table @option
17417 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17418 Set the aspect ratio used by the filter.
17419
17420 The parameter can be a floating point number string, an expression, or
17421 a string of the form @var{num}:@var{den}, where @var{num} and
17422 @var{den} are the numerator and denominator of the aspect ratio. If
17423 the parameter is not specified, it is assumed the value "0".
17424 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17425 should be escaped.
17426
17427 @item max
17428 Set the maximum integer value to use for expressing numerator and
17429 denominator when reducing the expressed aspect ratio to a rational.
17430 Default value is @code{100}.
17431
17432 @end table
17433
17434 The parameter @var{sar} is an expression containing
17435 the following constants:
17436
17437 @table @option
17438 @item E, PI, PHI
17439 These are approximated values for the mathematical constants e
17440 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17441
17442 @item w, h
17443 The input width and height.
17444
17445 @item a
17446 These are the same as @var{w} / @var{h}.
17447
17448 @item sar
17449 The input sample aspect ratio.
17450
17451 @item dar
17452 The input display aspect ratio. It is the same as
17453 (@var{w} / @var{h}) * @var{sar}.
17454
17455 @item hsub, vsub
17456 Horizontal and vertical chroma subsample values. For example, for the
17457 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17458 @end table
17459
17460 @subsection Examples
17461
17462 @itemize
17463
17464 @item
17465 To change the display aspect ratio to 16:9, specify one of the following:
17466 @example
17467 setdar=dar=1.77777
17468 setdar=dar=16/9
17469 @end example
17470
17471 @item
17472 To change the sample aspect ratio to 10:11, specify:
17473 @example
17474 setsar=sar=10/11
17475 @end example
17476
17477 @item
17478 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17479 1000 in the aspect ratio reduction, use the command:
17480 @example
17481 setdar=ratio=16/9:max=1000
17482 @end example
17483
17484 @end itemize
17485
17486 @anchor{setfield}
17487 @section setfield
17488
17489 Force field for the output video frame.
17490
17491 The @code{setfield} filter marks the interlace type field for the
17492 output frames. It does not change the input frame, but only sets the
17493 corresponding property, which affects how the frame is treated by
17494 following filters (e.g. @code{fieldorder} or @code{yadif}).
17495
17496 The filter accepts the following options:
17497
17498 @table @option
17499
17500 @item mode
17501 Available values are:
17502
17503 @table @samp
17504 @item auto
17505 Keep the same field property.
17506
17507 @item bff
17508 Mark the frame as bottom-field-first.
17509
17510 @item tff
17511 Mark the frame as top-field-first.
17512
17513 @item prog
17514 Mark the frame as progressive.
17515 @end table
17516 @end table
17517
17518 @anchor{setparams}
17519 @section setparams
17520
17521 Force frame parameter for the output video frame.
17522
17523 The @code{setparams} filter marks interlace and color range for the
17524 output frames. It does not change the input frame, but only sets the
17525 corresponding property, which affects how the frame is treated by
17526 filters/encoders.
17527
17528 @table @option
17529 @item field_mode
17530 Available values are:
17531
17532 @table @samp
17533 @item auto
17534 Keep the same field property (default).
17535
17536 @item bff
17537 Mark the frame as bottom-field-first.
17538
17539 @item tff
17540 Mark the frame as top-field-first.
17541
17542 @item prog
17543 Mark the frame as progressive.
17544 @end table
17545
17546 @item range
17547 Available values are:
17548
17549 @table @samp
17550 @item auto
17551 Keep the same color range property (default).
17552
17553 @item unspecified, unknown
17554 Mark the frame as unspecified color range.
17555
17556 @item limited, tv, mpeg
17557 Mark the frame as limited range.
17558
17559 @item full, pc, jpeg
17560 Mark the frame as full range.
17561 @end table
17562
17563 @item color_primaries
17564 Set the color primaries.
17565 Available values are:
17566
17567 @table @samp
17568 @item auto
17569 Keep the same color primaries property (default).
17570
17571 @item bt709
17572 @item unknown
17573 @item bt470m
17574 @item bt470bg
17575 @item smpte170m
17576 @item smpte240m
17577 @item film
17578 @item bt2020
17579 @item smpte428
17580 @item smpte431
17581 @item smpte432
17582 @item jedec-p22
17583 @end table
17584
17585 @item color_trc
17586 Set the color transfer.
17587 Available values are:
17588
17589 @table @samp
17590 @item auto
17591 Keep the same color trc property (default).
17592
17593 @item bt709
17594 @item unknown
17595 @item bt470m
17596 @item bt470bg
17597 @item smpte170m
17598 @item smpte240m
17599 @item linear
17600 @item log100
17601 @item log316
17602 @item iec61966-2-4
17603 @item bt1361e
17604 @item iec61966-2-1
17605 @item bt2020-10
17606 @item bt2020-12
17607 @item smpte2084
17608 @item smpte428
17609 @item arib-std-b67
17610 @end table
17611
17612 @item colorspace
17613 Set the colorspace.
17614 Available values are:
17615
17616 @table @samp
17617 @item auto
17618 Keep the same colorspace property (default).
17619
17620 @item gbr
17621 @item bt709
17622 @item unknown
17623 @item fcc
17624 @item bt470bg
17625 @item smpte170m
17626 @item smpte240m
17627 @item ycgco
17628 @item bt2020nc
17629 @item bt2020c
17630 @item smpte2085
17631 @item chroma-derived-nc
17632 @item chroma-derived-c
17633 @item ictcp
17634 @end table
17635 @end table
17636
17637 @section showinfo
17638
17639 Show a line containing various information for each input video frame.
17640 The input video is not modified.
17641
17642 This filter supports the following options:
17643
17644 @table @option
17645 @item checksum
17646 Calculate checksums of each plane. By default enabled.
17647 @end table
17648
17649 The shown line contains a sequence of key/value pairs of the form
17650 @var{key}:@var{value}.
17651
17652 The following values are shown in the output:
17653
17654 @table @option
17655 @item n
17656 The (sequential) number of the input frame, starting from 0.
17657
17658 @item pts
17659 The Presentation TimeStamp of the input frame, expressed as a number of
17660 time base units. The time base unit depends on the filter input pad.
17661
17662 @item pts_time
17663 The Presentation TimeStamp of the input frame, expressed as a number of
17664 seconds.
17665
17666 @item pos
17667 The position of the frame in the input stream, or -1 if this information is
17668 unavailable and/or meaningless (for example in case of synthetic video).
17669
17670 @item fmt
17671 The pixel format name.
17672
17673 @item sar
17674 The sample aspect ratio of the input frame, expressed in the form
17675 @var{num}/@var{den}.
17676
17677 @item s
17678 The size of the input frame. For the syntax of this option, check the
17679 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17680
17681 @item i
17682 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17683 for bottom field first).
17684
17685 @item iskey
17686 This is 1 if the frame is a key frame, 0 otherwise.
17687
17688 @item type
17689 The picture type of the input frame ("I" for an I-frame, "P" for a
17690 P-frame, "B" for a B-frame, or "?" for an unknown type).
17691 Also refer to the documentation of the @code{AVPictureType} enum and of
17692 the @code{av_get_picture_type_char} function defined in
17693 @file{libavutil/avutil.h}.
17694
17695 @item checksum
17696 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17697
17698 @item plane_checksum
17699 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17700 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17701
17702 @item mean
17703 The mean value of pixels in each plane of the input frame, expressed in the form
17704 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17705
17706 @item stdev
17707 The standard deviation of pixel values in each plane of the input frame, expressed
17708 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17709
17710 @end table
17711
17712 @section showpalette
17713
17714 Displays the 256 colors palette of each frame. This filter is only relevant for
17715 @var{pal8} pixel format frames.
17716
17717 It accepts the following option:
17718
17719 @table @option
17720 @item s
17721 Set the size of the box used to represent one palette color entry. Default is
17722 @code{30} (for a @code{30x30} pixel box).
17723 @end table
17724
17725 @section shuffleframes
17726
17727 Reorder and/or duplicate and/or drop video frames.
17728
17729 It accepts the following parameters:
17730
17731 @table @option
17732 @item mapping
17733 Set the destination indexes of input frames.
17734 This is space or '|' separated list of indexes that maps input frames to output
17735 frames. Number of indexes also sets maximal value that each index may have.
17736 '-1' index have special meaning and that is to drop frame.
17737 @end table
17738
17739 The first frame has the index 0. The default is to keep the input unchanged.
17740
17741 @subsection Examples
17742
17743 @itemize
17744 @item
17745 Swap second and third frame of every three frames of the input:
17746 @example
17747 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17748 @end example
17749
17750 @item
17751 Swap 10th and 1st frame of every ten frames of the input:
17752 @example
17753 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17754 @end example
17755 @end itemize
17756
17757 @section shuffleplanes
17758
17759 Reorder and/or duplicate video planes.
17760
17761 It accepts the following parameters:
17762
17763 @table @option
17764
17765 @item map0
17766 The index of the input plane to be used as the first output plane.
17767
17768 @item map1
17769 The index of the input plane to be used as the second output plane.
17770
17771 @item map2
17772 The index of the input plane to be used as the third output plane.
17773
17774 @item map3
17775 The index of the input plane to be used as the fourth output plane.
17776
17777 @end table
17778
17779 The first plane has the index 0. The default is to keep the input unchanged.
17780
17781 @subsection Examples
17782
17783 @itemize
17784 @item
17785 Swap the second and third planes of the input:
17786 @example
17787 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17788 @end example
17789 @end itemize
17790
17791 @anchor{signalstats}
17792 @section signalstats
17793 Evaluate various visual metrics that assist in determining issues associated
17794 with the digitization of analog video media.
17795
17796 By default the filter will log these metadata values:
17797
17798 @table @option
17799 @item YMIN
17800 Display the minimal Y value contained within the input frame. Expressed in
17801 range of [0-255].
17802
17803 @item YLOW
17804 Display the Y value at the 10% percentile within the input frame. Expressed in
17805 range of [0-255].
17806
17807 @item YAVG
17808 Display the average Y value within the input frame. Expressed in range of
17809 [0-255].
17810
17811 @item YHIGH
17812 Display the Y value at the 90% percentile within the input frame. Expressed in
17813 range of [0-255].
17814
17815 @item YMAX
17816 Display the maximum Y value contained within the input frame. Expressed in
17817 range of [0-255].
17818
17819 @item UMIN
17820 Display the minimal U value contained within the input frame. Expressed in
17821 range of [0-255].
17822
17823 @item ULOW
17824 Display the U value at the 10% percentile within the input frame. Expressed in
17825 range of [0-255].
17826
17827 @item UAVG
17828 Display the average U value within the input frame. Expressed in range of
17829 [0-255].
17830
17831 @item UHIGH
17832 Display the U value at the 90% percentile within the input frame. Expressed in
17833 range of [0-255].
17834
17835 @item UMAX
17836 Display the maximum U value contained within the input frame. Expressed in
17837 range of [0-255].
17838
17839 @item VMIN
17840 Display the minimal V value contained within the input frame. Expressed in
17841 range of [0-255].
17842
17843 @item VLOW
17844 Display the V value at the 10% percentile within the input frame. Expressed in
17845 range of [0-255].
17846
17847 @item VAVG
17848 Display the average V value within the input frame. Expressed in range of
17849 [0-255].
17850
17851 @item VHIGH
17852 Display the V value at the 90% percentile within the input frame. Expressed in
17853 range of [0-255].
17854
17855 @item VMAX
17856 Display the maximum V value contained within the input frame. Expressed in
17857 range of [0-255].
17858
17859 @item SATMIN
17860 Display the minimal saturation value contained within the input frame.
17861 Expressed in range of [0-~181.02].
17862
17863 @item SATLOW
17864 Display the saturation value at the 10% percentile within the input frame.
17865 Expressed in range of [0-~181.02].
17866
17867 @item SATAVG
17868 Display the average saturation value within the input frame. Expressed in range
17869 of [0-~181.02].
17870
17871 @item SATHIGH
17872 Display the saturation value at the 90% percentile within the input frame.
17873 Expressed in range of [0-~181.02].
17874
17875 @item SATMAX
17876 Display the maximum saturation value contained within the input frame.
17877 Expressed in range of [0-~181.02].
17878
17879 @item HUEMED
17880 Display the median value for hue within the input frame. Expressed in range of
17881 [0-360].
17882
17883 @item HUEAVG
17884 Display the average value for hue within the input frame. Expressed in range of
17885 [0-360].
17886
17887 @item YDIF
17888 Display the average of sample value difference between all values of the Y
17889 plane in the current frame and corresponding values of the previous input frame.
17890 Expressed in range of [0-255].
17891
17892 @item UDIF
17893 Display the average of sample value difference between all values of the U
17894 plane in the current frame and corresponding values of the previous input frame.
17895 Expressed in range of [0-255].
17896
17897 @item VDIF
17898 Display the average of sample value difference between all values of the V
17899 plane in the current frame and corresponding values of the previous input frame.
17900 Expressed in range of [0-255].
17901
17902 @item YBITDEPTH
17903 Display bit depth of Y plane in current frame.
17904 Expressed in range of [0-16].
17905
17906 @item UBITDEPTH
17907 Display bit depth of U plane in current frame.
17908 Expressed in range of [0-16].
17909
17910 @item VBITDEPTH
17911 Display bit depth of V plane in current frame.
17912 Expressed in range of [0-16].
17913 @end table
17914
17915 The filter accepts the following options:
17916
17917 @table @option
17918 @item stat
17919 @item out
17920
17921 @option{stat} specify an additional form of image analysis.
17922 @option{out} output video with the specified type of pixel highlighted.
17923
17924 Both options accept the following values:
17925
17926 @table @samp
17927 @item tout
17928 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17929 unlike the neighboring pixels of the same field. Examples of temporal outliers
17930 include the results of video dropouts, head clogs, or tape tracking issues.
17931
17932 @item vrep
17933 Identify @var{vertical line repetition}. Vertical line repetition includes
17934 similar rows of pixels within a frame. In born-digital video vertical line
17935 repetition is common, but this pattern is uncommon in video digitized from an
17936 analog source. When it occurs in video that results from the digitization of an
17937 analog source it can indicate concealment from a dropout compensator.
17938
17939 @item brng
17940 Identify pixels that fall outside of legal broadcast range.
17941 @end table
17942
17943 @item color, c
17944 Set the highlight color for the @option{out} option. The default color is
17945 yellow.
17946 @end table
17947
17948 @subsection Examples
17949
17950 @itemize
17951 @item
17952 Output data of various video metrics:
17953 @example
17954 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17955 @end example
17956
17957 @item
17958 Output specific data about the minimum and maximum values of the Y plane per frame:
17959 @example
17960 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17961 @end example
17962
17963 @item
17964 Playback video while highlighting pixels that are outside of broadcast range in red.
17965 @example
17966 ffplay example.mov -vf signalstats="out=brng:color=red"
17967 @end example
17968
17969 @item
17970 Playback video with signalstats metadata drawn over the frame.
17971 @example
17972 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17973 @end example
17974
17975 The contents of signalstat_drawtext.txt used in the command are:
17976 @example
17977 time %@{pts:hms@}
17978 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17979 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17980 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17981 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17982
17983 @end example
17984 @end itemize
17985
17986 @anchor{signature}
17987 @section signature
17988
17989 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17990 input. In this case the matching between the inputs can be calculated additionally.
17991 The filter always passes through the first input. The signature of each stream can
17992 be written into a file.
17993
17994 It accepts the following options:
17995
17996 @table @option
17997 @item detectmode
17998 Enable or disable the matching process.
17999
18000 Available values are:
18001
18002 @table @samp
18003 @item off
18004 Disable the calculation of a matching (default).
18005 @item full
18006 Calculate the matching for the whole video and output whether the whole video
18007 matches or only parts.
18008 @item fast
18009 Calculate only until a matching is found or the video ends. Should be faster in
18010 some cases.
18011 @end table
18012
18013 @item nb_inputs
18014 Set the number of inputs. The option value must be a non negative integer.
18015 Default value is 1.
18016
18017 @item filename
18018 Set the path to which the output is written. If there is more than one input,
18019 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18020 integer), that will be replaced with the input number. If no filename is
18021 specified, no output will be written. This is the default.
18022
18023 @item format
18024 Choose the output format.
18025
18026 Available values are:
18027
18028 @table @samp
18029 @item binary
18030 Use the specified binary representation (default).
18031 @item xml
18032 Use the specified xml representation.
18033 @end table
18034
18035 @item th_d
18036 Set threshold to detect one word as similar. The option value must be an integer
18037 greater than zero. The default value is 9000.
18038
18039 @item th_dc
18040 Set threshold to detect all words as similar. The option value must be an integer
18041 greater than zero. The default value is 60000.
18042
18043 @item th_xh
18044 Set threshold to detect frames as similar. The option value must be an integer
18045 greater than zero. The default value is 116.
18046
18047 @item th_di
18048 Set the minimum length of a sequence in frames to recognize it as matching
18049 sequence. The option value must be a non negative integer value.
18050 The default value is 0.
18051
18052 @item th_it
18053 Set the minimum relation, that matching frames to all frames must have.
18054 The option value must be a double value between 0 and 1. The default value is 0.5.
18055 @end table
18056
18057 @subsection Examples
18058
18059 @itemize
18060 @item
18061 To calculate the signature of an input video and store it in signature.bin:
18062 @example
18063 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18064 @end example
18065
18066 @item
18067 To detect whether two videos match and store the signatures in XML format in
18068 signature0.xml and signature1.xml:
18069 @example
18070 ffmpeg -i input1.mkv -i input2.mkv -filter_complex "[0:v][1:v] signature=nb_inputs=2:detectmode=full:format=xml:filename=signature%d.xml" -map :v -f null -
18071 @end example
18072
18073 @end itemize
18074
18075 @anchor{smartblur}
18076 @section smartblur
18077
18078 Blur the input video without impacting the outlines.
18079
18080 It accepts the following options:
18081
18082 @table @option
18083 @item luma_radius, lr
18084 Set the luma radius. The option value must be a float number in
18085 the range [0.1,5.0] that specifies the variance of the gaussian filter
18086 used to blur the image (slower if larger). Default value is 1.0.
18087
18088 @item luma_strength, ls
18089 Set the luma strength. The option value must be a float number
18090 in the range [-1.0,1.0] that configures the blurring. A value included
18091 in [0.0,1.0] will blur the image whereas a value included in
18092 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18093
18094 @item luma_threshold, lt
18095 Set the luma threshold used as a coefficient to determine
18096 whether a pixel should be blurred or not. The option value must be an
18097 integer in the range [-30,30]. A value of 0 will filter all the image,
18098 a value included in [0,30] will filter flat areas and a value included
18099 in [-30,0] will filter edges. Default value is 0.
18100
18101 @item chroma_radius, cr
18102 Set the chroma radius. The option value must be a float number in
18103 the range [0.1,5.0] that specifies the variance of the gaussian filter
18104 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18105
18106 @item chroma_strength, cs
18107 Set the chroma strength. The option value must be a float number
18108 in the range [-1.0,1.0] that configures the blurring. A value included
18109 in [0.0,1.0] will blur the image whereas a value included in
18110 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18111
18112 @item chroma_threshold, ct
18113 Set the chroma threshold used as a coefficient to determine
18114 whether a pixel should be blurred or not. The option value must be an
18115 integer in the range [-30,30]. A value of 0 will filter all the image,
18116 a value included in [0,30] will filter flat areas and a value included
18117 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18118 @end table
18119
18120 If a chroma option is not explicitly set, the corresponding luma value
18121 is set.
18122
18123 @section sobel
18124 Apply sobel operator to input video stream.
18125
18126 The filter accepts the following option:
18127
18128 @table @option
18129 @item planes
18130 Set which planes will be processed, unprocessed planes will be copied.
18131 By default value 0xf, all planes will be processed.
18132
18133 @item scale
18134 Set value which will be multiplied with filtered result.
18135
18136 @item delta
18137 Set value which will be added to filtered result.
18138 @end table
18139
18140 @subsection Commands
18141
18142 This filter supports the all above options as @ref{commands}.
18143
18144 @anchor{spp}
18145 @section spp
18146
18147 Apply a simple postprocessing filter that compresses and decompresses the image
18148 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18149 and average the results.
18150
18151 The filter accepts the following options:
18152
18153 @table @option
18154 @item quality
18155 Set quality. This option defines the number of levels for averaging. It accepts
18156 an integer in the range 0-6. If set to @code{0}, the filter will have no
18157 effect. A value of @code{6} means the higher quality. For each increment of
18158 that value the speed drops by a factor of approximately 2.  Default value is
18159 @code{3}.
18160
18161 @item qp
18162 Force a constant quantization parameter. If not set, the filter will use the QP
18163 from the video stream (if available).
18164
18165 @item mode
18166 Set thresholding mode. Available modes are:
18167
18168 @table @samp
18169 @item hard
18170 Set hard thresholding (default).
18171 @item soft
18172 Set soft thresholding (better de-ringing effect, but likely blurrier).
18173 @end table
18174
18175 @item use_bframe_qp
18176 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18177 option may cause flicker since the B-Frames have often larger QP. Default is
18178 @code{0} (not enabled).
18179 @end table
18180
18181 @subsection Commands
18182
18183 This filter supports the following commands:
18184 @table @option
18185 @item quality, level
18186 Set quality level. The value @code{max} can be used to set the maximum level,
18187 currently @code{6}.
18188 @end table
18189
18190 @anchor{sr}
18191 @section sr
18192
18193 Scale the input by applying one of the super-resolution methods based on
18194 convolutional neural networks. Supported models:
18195
18196 @itemize
18197 @item
18198 Super-Resolution Convolutional Neural Network model (SRCNN).
18199 See @url{https://arxiv.org/abs/1501.00092}.
18200
18201 @item
18202 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18203 See @url{https://arxiv.org/abs/1609.05158}.
18204 @end itemize
18205
18206 Training scripts as well as scripts for model file (.pb) saving can be found at
18207 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18208 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18209
18210 Native model files (.model) can be generated from TensorFlow model
18211 files (.pb) by using tools/python/convert.py
18212
18213 The filter accepts the following options:
18214
18215 @table @option
18216 @item dnn_backend
18217 Specify which DNN backend to use for model loading and execution. This option accepts
18218 the following values:
18219
18220 @table @samp
18221 @item native
18222 Native implementation of DNN loading and execution.
18223
18224 @item tensorflow
18225 TensorFlow backend. To enable this backend you
18226 need to install the TensorFlow for C library (see
18227 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18228 @code{--enable-libtensorflow}
18229 @end table
18230
18231 Default value is @samp{native}.
18232
18233 @item model
18234 Set path to model file specifying network architecture and its parameters.
18235 Note that different backends use different file formats. TensorFlow backend
18236 can load files for both formats, while native backend can load files for only
18237 its format.
18238
18239 @item scale_factor
18240 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18241 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18242 input upscaled using bicubic upscaling with proper scale factor.
18243 @end table
18244
18245 This feature can also be finished with @ref{dnn_processing} filter.
18246
18247 @section ssim
18248
18249 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18250
18251 This filter takes in input two input videos, the first input is
18252 considered the "main" source and is passed unchanged to the
18253 output. The second input is used as a "reference" video for computing
18254 the SSIM.
18255
18256 Both video inputs must have the same resolution and pixel format for
18257 this filter to work correctly. Also it assumes that both inputs
18258 have the same number of frames, which are compared one by one.
18259
18260 The filter stores the calculated SSIM of each frame.
18261
18262 The description of the accepted parameters follows.
18263
18264 @table @option
18265 @item stats_file, f
18266 If specified the filter will use the named file to save the SSIM of
18267 each individual frame. When filename equals "-" the data is sent to
18268 standard output.
18269 @end table
18270
18271 The file printed if @var{stats_file} is selected, contains a sequence of
18272 key/value pairs of the form @var{key}:@var{value} for each compared
18273 couple of frames.
18274
18275 A description of each shown parameter follows:
18276
18277 @table @option
18278 @item n
18279 sequential number of the input frame, starting from 1
18280
18281 @item Y, U, V, R, G, B
18282 SSIM of the compared frames for the component specified by the suffix.
18283
18284 @item All
18285 SSIM of the compared frames for the whole frame.
18286
18287 @item dB
18288 Same as above but in dB representation.
18289 @end table
18290
18291 This filter also supports the @ref{framesync} options.
18292
18293 @subsection Examples
18294 @itemize
18295 @item
18296 For example:
18297 @example
18298 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18299 [main][ref] ssim="stats_file=stats.log" [out]
18300 @end example
18301
18302 On this example the input file being processed is compared with the
18303 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18304 is stored in @file{stats.log}.
18305
18306 @item
18307 Another example with both psnr and ssim at same time:
18308 @example
18309 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18310 @end example
18311
18312 @item
18313 Another example with different containers:
18314 @example
18315 ffmpeg -i main.mpg -i ref.mkv -lavfi  "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]ssim" -f null -
18316 @end example
18317 @end itemize
18318
18319 @section stereo3d
18320
18321 Convert between different stereoscopic image formats.
18322
18323 The filters accept the following options:
18324
18325 @table @option
18326 @item in
18327 Set stereoscopic image format of input.
18328
18329 Available values for input image formats are:
18330 @table @samp
18331 @item sbsl
18332 side by side parallel (left eye left, right eye right)
18333
18334 @item sbsr
18335 side by side crosseye (right eye left, left eye right)
18336
18337 @item sbs2l
18338 side by side parallel with half width resolution
18339 (left eye left, right eye right)
18340
18341 @item sbs2r
18342 side by side crosseye with half width resolution
18343 (right eye left, left eye right)
18344
18345 @item abl
18346 @item tbl
18347 above-below (left eye above, right eye below)
18348
18349 @item abr
18350 @item tbr
18351 above-below (right eye above, left eye below)
18352
18353 @item ab2l
18354 @item tb2l
18355 above-below with half height resolution
18356 (left eye above, right eye below)
18357
18358 @item ab2r
18359 @item tb2r
18360 above-below with half height resolution
18361 (right eye above, left eye below)
18362
18363 @item al
18364 alternating frames (left eye first, right eye second)
18365
18366 @item ar
18367 alternating frames (right eye first, left eye second)
18368
18369 @item irl
18370 interleaved rows (left eye has top row, right eye starts on next row)
18371
18372 @item irr
18373 interleaved rows (right eye has top row, left eye starts on next row)
18374
18375 @item icl
18376 interleaved columns, left eye first
18377
18378 @item icr
18379 interleaved columns, right eye first
18380
18381 Default value is @samp{sbsl}.
18382 @end table
18383
18384 @item out
18385 Set stereoscopic image format of output.
18386
18387 @table @samp
18388 @item sbsl
18389 side by side parallel (left eye left, right eye right)
18390
18391 @item sbsr
18392 side by side crosseye (right eye left, left eye right)
18393
18394 @item sbs2l
18395 side by side parallel with half width resolution
18396 (left eye left, right eye right)
18397
18398 @item sbs2r
18399 side by side crosseye with half width resolution
18400 (right eye left, left eye right)
18401
18402 @item abl
18403 @item tbl
18404 above-below (left eye above, right eye below)
18405
18406 @item abr
18407 @item tbr
18408 above-below (right eye above, left eye below)
18409
18410 @item ab2l
18411 @item tb2l
18412 above-below with half height resolution
18413 (left eye above, right eye below)
18414
18415 @item ab2r
18416 @item tb2r
18417 above-below with half height resolution
18418 (right eye above, left eye below)
18419
18420 @item al
18421 alternating frames (left eye first, right eye second)
18422
18423 @item ar
18424 alternating frames (right eye first, left eye second)
18425
18426 @item irl
18427 interleaved rows (left eye has top row, right eye starts on next row)
18428
18429 @item irr
18430 interleaved rows (right eye has top row, left eye starts on next row)
18431
18432 @item arbg
18433 anaglyph red/blue gray
18434 (red filter on left eye, blue filter on right eye)
18435
18436 @item argg
18437 anaglyph red/green gray
18438 (red filter on left eye, green filter on right eye)
18439
18440 @item arcg
18441 anaglyph red/cyan gray
18442 (red filter on left eye, cyan filter on right eye)
18443
18444 @item arch
18445 anaglyph red/cyan half colored
18446 (red filter on left eye, cyan filter on right eye)
18447
18448 @item arcc
18449 anaglyph red/cyan color
18450 (red filter on left eye, cyan filter on right eye)
18451
18452 @item arcd
18453 anaglyph red/cyan color optimized with the least squares projection of dubois
18454 (red filter on left eye, cyan filter on right eye)
18455
18456 @item agmg
18457 anaglyph green/magenta gray
18458 (green filter on left eye, magenta filter on right eye)
18459
18460 @item agmh
18461 anaglyph green/magenta half colored
18462 (green filter on left eye, magenta filter on right eye)
18463
18464 @item agmc
18465 anaglyph green/magenta colored
18466 (green filter on left eye, magenta filter on right eye)
18467
18468 @item agmd
18469 anaglyph green/magenta color optimized with the least squares projection of dubois
18470 (green filter on left eye, magenta filter on right eye)
18471
18472 @item aybg
18473 anaglyph yellow/blue gray
18474 (yellow filter on left eye, blue filter on right eye)
18475
18476 @item aybh
18477 anaglyph yellow/blue half colored
18478 (yellow filter on left eye, blue filter on right eye)
18479
18480 @item aybc
18481 anaglyph yellow/blue colored
18482 (yellow filter on left eye, blue filter on right eye)
18483
18484 @item aybd
18485 anaglyph yellow/blue color optimized with the least squares projection of dubois
18486 (yellow filter on left eye, blue filter on right eye)
18487
18488 @item ml
18489 mono output (left eye only)
18490
18491 @item mr
18492 mono output (right eye only)
18493
18494 @item chl
18495 checkerboard, left eye first
18496
18497 @item chr
18498 checkerboard, right eye first
18499
18500 @item icl
18501 interleaved columns, left eye first
18502
18503 @item icr
18504 interleaved columns, right eye first
18505
18506 @item hdmi
18507 HDMI frame pack
18508 @end table
18509
18510 Default value is @samp{arcd}.
18511 @end table
18512
18513 @subsection Examples
18514
18515 @itemize
18516 @item
18517 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18518 @example
18519 stereo3d=sbsl:aybd
18520 @end example
18521
18522 @item
18523 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18524 @example
18525 stereo3d=abl:sbsr
18526 @end example
18527 @end itemize
18528
18529 @section streamselect, astreamselect
18530 Select video or audio streams.
18531
18532 The filter accepts the following options:
18533
18534 @table @option
18535 @item inputs
18536 Set number of inputs. Default is 2.
18537
18538 @item map
18539 Set input indexes to remap to outputs.
18540 @end table
18541
18542 @subsection Commands
18543
18544 The @code{streamselect} and @code{astreamselect} filter supports the following
18545 commands:
18546
18547 @table @option
18548 @item map
18549 Set input indexes to remap to outputs.
18550 @end table
18551
18552 @subsection Examples
18553
18554 @itemize
18555 @item
18556 Select first 5 seconds 1st stream and rest of time 2nd stream:
18557 @example
18558 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18559 @end example
18560
18561 @item
18562 Same as above, but for audio:
18563 @example
18564 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18565 @end example
18566 @end itemize
18567
18568 @anchor{subtitles}
18569 @section subtitles
18570
18571 Draw subtitles on top of input video using the libass library.
18572
18573 To enable compilation of this filter you need to configure FFmpeg with
18574 @code{--enable-libass}. This filter also requires a build with libavcodec and
18575 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18576 Alpha) subtitles format.
18577
18578 The filter accepts the following options:
18579
18580 @table @option
18581 @item filename, f
18582 Set the filename of the subtitle file to read. It must be specified.
18583
18584 @item original_size
18585 Specify the size of the original video, the video for which the ASS file
18586 was composed. For the syntax of this option, check the
18587 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18588 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18589 correctly scale the fonts if the aspect ratio has been changed.
18590
18591 @item fontsdir
18592 Set a directory path containing fonts that can be used by the filter.
18593 These fonts will be used in addition to whatever the font provider uses.
18594
18595 @item alpha
18596 Process alpha channel, by default alpha channel is untouched.
18597
18598 @item charenc
18599 Set subtitles input character encoding. @code{subtitles} filter only. Only
18600 useful if not UTF-8.
18601
18602 @item stream_index, si
18603 Set subtitles stream index. @code{subtitles} filter only.
18604
18605 @item force_style
18606 Override default style or script info parameters of the subtitles. It accepts a
18607 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18608 @end table
18609
18610 If the first key is not specified, it is assumed that the first value
18611 specifies the @option{filename}.
18612
18613 For example, to render the file @file{sub.srt} on top of the input
18614 video, use the command:
18615 @example
18616 subtitles=sub.srt
18617 @end example
18618
18619 which is equivalent to:
18620 @example
18621 subtitles=filename=sub.srt
18622 @end example
18623
18624 To render the default subtitles stream from file @file{video.mkv}, use:
18625 @example
18626 subtitles=video.mkv
18627 @end example
18628
18629 To render the second subtitles stream from that file, use:
18630 @example
18631 subtitles=video.mkv:si=1
18632 @end example
18633
18634 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18635 @code{DejaVu Serif}, use:
18636 @example
18637 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18638 @end example
18639
18640 @section super2xsai
18641
18642 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18643 Interpolate) pixel art scaling algorithm.
18644
18645 Useful for enlarging pixel art images without reducing sharpness.
18646
18647 @section swaprect
18648
18649 Swap two rectangular objects in video.
18650
18651 This filter accepts the following options:
18652
18653 @table @option
18654 @item w
18655 Set object width.
18656
18657 @item h
18658 Set object height.
18659
18660 @item x1
18661 Set 1st rect x coordinate.
18662
18663 @item y1
18664 Set 1st rect y coordinate.
18665
18666 @item x2
18667 Set 2nd rect x coordinate.
18668
18669 @item y2
18670 Set 2nd rect y coordinate.
18671
18672 All expressions are evaluated once for each frame.
18673 @end table
18674
18675 The all options are expressions containing the following constants:
18676
18677 @table @option
18678 @item w
18679 @item h
18680 The input width and height.
18681
18682 @item a
18683 same as @var{w} / @var{h}
18684
18685 @item sar
18686 input sample aspect ratio
18687
18688 @item dar
18689 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18690
18691 @item n
18692 The number of the input frame, starting from 0.
18693
18694 @item t
18695 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18696
18697 @item pos
18698 the position in the file of the input frame, NAN if unknown
18699 @end table
18700
18701 @section swapuv
18702 Swap U & V plane.
18703
18704 @section tblend
18705 Blend successive video frames.
18706
18707 See @ref{blend}
18708
18709 @section telecine
18710
18711 Apply telecine process to the video.
18712
18713 This filter accepts the following options:
18714
18715 @table @option
18716 @item first_field
18717 @table @samp
18718 @item top, t
18719 top field first
18720 @item bottom, b
18721 bottom field first
18722 The default value is @code{top}.
18723 @end table
18724
18725 @item pattern
18726 A string of numbers representing the pulldown pattern you wish to apply.
18727 The default value is @code{23}.
18728 @end table
18729
18730 @example
18731 Some typical patterns:
18732
18733 NTSC output (30i):
18734 27.5p: 32222
18735 24p: 23 (classic)
18736 24p: 2332 (preferred)
18737 20p: 33
18738 18p: 334
18739 16p: 3444
18740
18741 PAL output (25i):
18742 27.5p: 12222
18743 24p: 222222222223 ("Euro pulldown")
18744 16.67p: 33
18745 16p: 33333334
18746 @end example
18747
18748 @section thistogram
18749
18750 Compute and draw a color distribution histogram for the input video across time.
18751
18752 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18753 at certain time, this filter shows also past histograms of number of frames defined
18754 by @code{width} option.
18755
18756 The computed histogram is a representation of the color component
18757 distribution in an image.
18758
18759 The filter accepts the following options:
18760
18761 @table @option
18762 @item width, w
18763 Set width of single color component output. Default value is @code{0}.
18764 Value of @code{0} means width will be picked from input video.
18765 This also set number of passed histograms to keep.
18766 Allowed range is [0, 8192].
18767
18768 @item display_mode, d
18769 Set display mode.
18770 It accepts the following values:
18771 @table @samp
18772 @item stack
18773 Per color component graphs are placed below each other.
18774
18775 @item parade
18776 Per color component graphs are placed side by side.
18777
18778 @item overlay
18779 Presents information identical to that in the @code{parade}, except
18780 that the graphs representing color components are superimposed directly
18781 over one another.
18782 @end table
18783 Default is @code{stack}.
18784
18785 @item levels_mode, m
18786 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18787 Default is @code{linear}.
18788
18789 @item components, c
18790 Set what color components to display.
18791 Default is @code{7}.
18792
18793 @item bgopacity, b
18794 Set background opacity. Default is @code{0.9}.
18795
18796 @item envelope, e
18797 Show envelope. Default is disabled.
18798
18799 @item ecolor, ec
18800 Set envelope color. Default is @code{gold}.
18801
18802 @item slide
18803 Set slide mode.
18804
18805 Available values for slide is:
18806 @table @samp
18807 @item frame
18808 Draw new frame when right border is reached.
18809
18810 @item replace
18811 Replace old columns with new ones.
18812
18813 @item scroll
18814 Scroll from right to left.
18815
18816 @item rscroll
18817 Scroll from left to right.
18818
18819 @item picture
18820 Draw single picture.
18821 @end table
18822
18823 Default is @code{replace}.
18824 @end table
18825
18826 @section threshold
18827
18828 Apply threshold effect to video stream.
18829
18830 This filter needs four video streams to perform thresholding.
18831 First stream is stream we are filtering.
18832 Second stream is holding threshold values, third stream is holding min values,
18833 and last, fourth stream is holding max values.
18834
18835 The filter accepts the following option:
18836
18837 @table @option
18838 @item planes
18839 Set which planes will be processed, unprocessed planes will be copied.
18840 By default value 0xf, all planes will be processed.
18841 @end table
18842
18843 For example if first stream pixel's component value is less then threshold value
18844 of pixel component from 2nd threshold stream, third stream value will picked,
18845 otherwise fourth stream pixel component value will be picked.
18846
18847 Using color source filter one can perform various types of thresholding:
18848
18849 @subsection Examples
18850
18851 @itemize
18852 @item
18853 Binary threshold, using gray color as threshold:
18854 @example
18855 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18856 @end example
18857
18858 @item
18859 Inverted binary threshold, using gray color as threshold:
18860 @example
18861 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18862 @end example
18863
18864 @item
18865 Truncate binary threshold, using gray color as threshold:
18866 @example
18867 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18868 @end example
18869
18870 @item
18871 Threshold to zero, using gray color as threshold:
18872 @example
18873 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18874 @end example
18875
18876 @item
18877 Inverted threshold to zero, using gray color as threshold:
18878 @example
18879 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18880 @end example
18881 @end itemize
18882
18883 @section thumbnail
18884 Select the most representative frame in a given sequence of consecutive frames.
18885
18886 The filter accepts the following options:
18887
18888 @table @option
18889 @item n
18890 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18891 will pick one of them, and then handle the next batch of @var{n} frames until
18892 the end. Default is @code{100}.
18893 @end table
18894
18895 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18896 value will result in a higher memory usage, so a high value is not recommended.
18897
18898 @subsection Examples
18899
18900 @itemize
18901 @item
18902 Extract one picture each 50 frames:
18903 @example
18904 thumbnail=50
18905 @end example
18906
18907 @item
18908 Complete example of a thumbnail creation with @command{ffmpeg}:
18909 @example
18910 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18911 @end example
18912 @end itemize
18913
18914 @anchor{tile}
18915 @section tile
18916
18917 Tile several successive frames together.
18918
18919 The @ref{untile} filter can do the reverse.
18920
18921 The filter accepts the following options:
18922
18923 @table @option
18924
18925 @item layout
18926 Set the grid size (i.e. the number of lines and columns). For the syntax of
18927 this option, check the
18928 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18929
18930 @item nb_frames
18931 Set the maximum number of frames to render in the given area. It must be less
18932 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18933 the area will be used.
18934
18935 @item margin
18936 Set the outer border margin in pixels.
18937
18938 @item padding
18939 Set the inner border thickness (i.e. the number of pixels between frames). For
18940 more advanced padding options (such as having different values for the edges),
18941 refer to the pad video filter.
18942
18943 @item color
18944 Specify the color of the unused area. For the syntax of this option, check the
18945 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18946 The default value of @var{color} is "black".
18947
18948 @item overlap
18949 Set the number of frames to overlap when tiling several successive frames together.
18950 The value must be between @code{0} and @var{nb_frames - 1}.
18951
18952 @item init_padding
18953 Set the number of frames to initially be empty before displaying first output frame.
18954 This controls how soon will one get first output frame.
18955 The value must be between @code{0} and @var{nb_frames - 1}.
18956 @end table
18957
18958 @subsection Examples
18959
18960 @itemize
18961 @item
18962 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18963 @example
18964 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18965 @end example
18966 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18967 duplicating each output frame to accommodate the originally detected frame
18968 rate.
18969
18970 @item
18971 Display @code{5} pictures in an area of @code{3x2} frames,
18972 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18973 mixed flat and named options:
18974 @example
18975 tile=3x2:nb_frames=5:padding=7:margin=2
18976 @end example
18977 @end itemize
18978
18979 @section tinterlace
18980
18981 Perform various types of temporal field interlacing.
18982
18983 Frames are counted starting from 1, so the first input frame is
18984 considered odd.
18985
18986 The filter accepts the following options:
18987
18988 @table @option
18989
18990 @item mode
18991 Specify the mode of the interlacing. This option can also be specified
18992 as a value alone. See below for a list of values for this option.
18993
18994 Available values are:
18995
18996 @table @samp
18997 @item merge, 0
18998 Move odd frames into the upper field, even into the lower field,
18999 generating a double height frame at half frame rate.
19000 @example
19001  ------> time
19002 Input:
19003 Frame 1         Frame 2         Frame 3         Frame 4
19004
19005 11111           22222           33333           44444
19006 11111           22222           33333           44444
19007 11111           22222           33333           44444
19008 11111           22222           33333           44444
19009
19010 Output:
19011 11111                           33333
19012 22222                           44444
19013 11111                           33333
19014 22222                           44444
19015 11111                           33333
19016 22222                           44444
19017 11111                           33333
19018 22222                           44444
19019 @end example
19020
19021 @item drop_even, 1
19022 Only output odd frames, even frames are dropped, generating a frame with
19023 unchanged height at half frame rate.
19024
19025 @example
19026  ------> time
19027 Input:
19028 Frame 1         Frame 2         Frame 3         Frame 4
19029
19030 11111           22222           33333           44444
19031 11111           22222           33333           44444
19032 11111           22222           33333           44444
19033 11111           22222           33333           44444
19034
19035 Output:
19036 11111                           33333
19037 11111                           33333
19038 11111                           33333
19039 11111                           33333
19040 @end example
19041
19042 @item drop_odd, 2
19043 Only output even frames, odd frames are dropped, generating a frame with
19044 unchanged height at half frame rate.
19045
19046 @example
19047  ------> time
19048 Input:
19049 Frame 1         Frame 2         Frame 3         Frame 4
19050
19051 11111           22222           33333           44444
19052 11111           22222           33333           44444
19053 11111           22222           33333           44444
19054 11111           22222           33333           44444
19055
19056 Output:
19057                 22222                           44444
19058                 22222                           44444
19059                 22222                           44444
19060                 22222                           44444
19061 @end example
19062
19063 @item pad, 3
19064 Expand each frame to full height, but pad alternate lines with black,
19065 generating a frame with double height at the same input frame rate.
19066
19067 @example
19068  ------> time
19069 Input:
19070 Frame 1         Frame 2         Frame 3         Frame 4
19071
19072 11111           22222           33333           44444
19073 11111           22222           33333           44444
19074 11111           22222           33333           44444
19075 11111           22222           33333           44444
19076
19077 Output:
19078 11111           .....           33333           .....
19079 .....           22222           .....           44444
19080 11111           .....           33333           .....
19081 .....           22222           .....           44444
19082 11111           .....           33333           .....
19083 .....           22222           .....           44444
19084 11111           .....           33333           .....
19085 .....           22222           .....           44444
19086 @end example
19087
19088
19089 @item interleave_top, 4
19090 Interleave the upper field from odd frames with the lower field from
19091 even frames, generating a frame with unchanged height at half frame rate.
19092
19093 @example
19094  ------> time
19095 Input:
19096 Frame 1         Frame 2         Frame 3         Frame 4
19097
19098 11111<-         22222           33333<-         44444
19099 11111           22222<-         33333           44444<-
19100 11111<-         22222           33333<-         44444
19101 11111           22222<-         33333           44444<-
19102
19103 Output:
19104 11111                           33333
19105 22222                           44444
19106 11111                           33333
19107 22222                           44444
19108 @end example
19109
19110
19111 @item interleave_bottom, 5
19112 Interleave the lower field from odd frames with the upper field from
19113 even frames, generating a frame with unchanged height at half frame rate.
19114
19115 @example
19116  ------> time
19117 Input:
19118 Frame 1         Frame 2         Frame 3         Frame 4
19119
19120 11111           22222<-         33333           44444<-
19121 11111<-         22222           33333<-         44444
19122 11111           22222<-         33333           44444<-
19123 11111<-         22222           33333<-         44444
19124
19125 Output:
19126 22222                           44444
19127 11111                           33333
19128 22222                           44444
19129 11111                           33333
19130 @end example
19131
19132
19133 @item interlacex2, 6
19134 Double frame rate with unchanged height. Frames are inserted each
19135 containing the second temporal field from the previous input frame and
19136 the first temporal field from the next input frame. This mode relies on
19137 the top_field_first flag. Useful for interlaced video displays with no
19138 field synchronisation.
19139
19140 @example
19141  ------> time
19142 Input:
19143 Frame 1         Frame 2         Frame 3         Frame 4
19144
19145 11111           22222           33333           44444
19146  11111           22222           33333           44444
19147 11111           22222           33333           44444
19148  11111           22222           33333           44444
19149
19150 Output:
19151 11111   22222   22222   33333   33333   44444   44444
19152  11111   11111   22222   22222   33333   33333   44444
19153 11111   22222   22222   33333   33333   44444   44444
19154  11111   11111   22222   22222   33333   33333   44444
19155 @end example
19156
19157
19158 @item mergex2, 7
19159 Move odd frames into the upper field, even into the lower field,
19160 generating a double height frame at same frame rate.
19161
19162 @example
19163  ------> time
19164 Input:
19165 Frame 1         Frame 2         Frame 3         Frame 4
19166
19167 11111           22222           33333           44444
19168 11111           22222           33333           44444
19169 11111           22222           33333           44444
19170 11111           22222           33333           44444
19171
19172 Output:
19173 11111           33333           33333           55555
19174 22222           22222           44444           44444
19175 11111           33333           33333           55555
19176 22222           22222           44444           44444
19177 11111           33333           33333           55555
19178 22222           22222           44444           44444
19179 11111           33333           33333           55555
19180 22222           22222           44444           44444
19181 @end example
19182
19183 @end table
19184
19185 Numeric values are deprecated but are accepted for backward
19186 compatibility reasons.
19187
19188 Default mode is @code{merge}.
19189
19190 @item flags
19191 Specify flags influencing the filter process.
19192
19193 Available value for @var{flags} is:
19194
19195 @table @option
19196 @item low_pass_filter, vlpf
19197 Enable linear vertical low-pass filtering in the filter.
19198 Vertical low-pass filtering is required when creating an interlaced
19199 destination from a progressive source which contains high-frequency
19200 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19201 patterning.
19202
19203 @item complex_filter, cvlpf
19204 Enable complex vertical low-pass filtering.
19205 This will slightly less reduce interlace 'twitter' and Moire
19206 patterning but better retain detail and subjective sharpness impression.
19207
19208 @item bypass_il
19209 Bypass already interlaced frames, only adjust the frame rate.
19210 @end table
19211
19212 Vertical low-pass filtering and bypassing already interlaced frames can only be
19213 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19214
19215 @end table
19216
19217 @section tmedian
19218 Pick median pixels from several successive input video frames.
19219
19220 The filter accepts the following options:
19221
19222 @table @option
19223 @item radius
19224 Set radius of median filter.
19225 Default is 1. Allowed range is from 1 to 127.
19226
19227 @item planes
19228 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19229
19230 @item percentile
19231 Set median percentile. Default value is @code{0.5}.
19232 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19233 minimum values, and @code{1} maximum values.
19234 @end table
19235
19236 @section tmix
19237
19238 Mix successive video frames.
19239
19240 A description of the accepted options follows.
19241
19242 @table @option
19243 @item frames
19244 The number of successive frames to mix. If unspecified, it defaults to 3.
19245
19246 @item weights
19247 Specify weight of each input video frame.
19248 Each weight is separated by space. If number of weights is smaller than
19249 number of @var{frames} last specified weight will be used for all remaining
19250 unset weights.
19251
19252 @item scale
19253 Specify scale, if it is set it will be multiplied with sum
19254 of each weight multiplied with pixel values to give final destination
19255 pixel value. By default @var{scale} is auto scaled to sum of weights.
19256 @end table
19257
19258 @subsection Examples
19259
19260 @itemize
19261 @item
19262 Average 7 successive frames:
19263 @example
19264 tmix=frames=7:weights="1 1 1 1 1 1 1"
19265 @end example
19266
19267 @item
19268 Apply simple temporal convolution:
19269 @example
19270 tmix=frames=3:weights="-1 3 -1"
19271 @end example
19272
19273 @item
19274 Similar as above but only showing temporal differences:
19275 @example
19276 tmix=frames=3:weights="-1 2 -1":scale=1
19277 @end example
19278 @end itemize
19279
19280 @anchor{tonemap}
19281 @section tonemap
19282 Tone map colors from different dynamic ranges.
19283
19284 This filter expects data in single precision floating point, as it needs to
19285 operate on (and can output) out-of-range values. Another filter, such as
19286 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19287
19288 The tonemapping algorithms implemented only work on linear light, so input
19289 data should be linearized beforehand (and possibly correctly tagged).
19290
19291 @example
19292 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19293 @end example
19294
19295 @subsection Options
19296 The filter accepts the following options.
19297
19298 @table @option
19299 @item tonemap
19300 Set the tone map algorithm to use.
19301
19302 Possible values are:
19303 @table @var
19304 @item none
19305 Do not apply any tone map, only desaturate overbright pixels.
19306
19307 @item clip
19308 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19309 in-range values, while distorting out-of-range values.
19310
19311 @item linear
19312 Stretch the entire reference gamut to a linear multiple of the display.
19313
19314 @item gamma
19315 Fit a logarithmic transfer between the tone curves.
19316
19317 @item reinhard
19318 Preserve overall image brightness with a simple curve, using nonlinear
19319 contrast, which results in flattening details and degrading color accuracy.
19320
19321 @item hable
19322 Preserve both dark and bright details better than @var{reinhard}, at the cost
19323 of slightly darkening everything. Use it when detail preservation is more
19324 important than color and brightness accuracy.
19325
19326 @item mobius
19327 Smoothly map out-of-range values, while retaining contrast and colors for
19328 in-range material as much as possible. Use it when color accuracy is more
19329 important than detail preservation.
19330 @end table
19331
19332 Default is none.
19333
19334 @item param
19335 Tune the tone mapping algorithm.
19336
19337 This affects the following algorithms:
19338 @table @var
19339 @item none
19340 Ignored.
19341
19342 @item linear
19343 Specifies the scale factor to use while stretching.
19344 Default to 1.0.
19345
19346 @item gamma
19347 Specifies the exponent of the function.
19348 Default to 1.8.
19349
19350 @item clip
19351 Specify an extra linear coefficient to multiply into the signal before clipping.
19352 Default to 1.0.
19353
19354 @item reinhard
19355 Specify the local contrast coefficient at the display peak.
19356 Default to 0.5, which means that in-gamut values will be about half as bright
19357 as when clipping.
19358
19359 @item hable
19360 Ignored.
19361
19362 @item mobius
19363 Specify the transition point from linear to mobius transform. Every value
19364 below this point is guaranteed to be mapped 1:1. The higher the value, the
19365 more accurate the result will be, at the cost of losing bright details.
19366 Default to 0.3, which due to the steep initial slope still preserves in-range
19367 colors fairly accurately.
19368 @end table
19369
19370 @item desat
19371 Apply desaturation for highlights that exceed this level of brightness. The
19372 higher the parameter, the more color information will be preserved. This
19373 setting helps prevent unnaturally blown-out colors for super-highlights, by
19374 (smoothly) turning into white instead. This makes images feel more natural,
19375 at the cost of reducing information about out-of-range colors.
19376
19377 The default of 2.0 is somewhat conservative and will mostly just apply to
19378 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19379
19380 This option works only if the input frame has a supported color tag.
19381
19382 @item peak
19383 Override signal/nominal/reference peak with this value. Useful when the
19384 embedded peak information in display metadata is not reliable or when tone
19385 mapping from a lower range to a higher range.
19386 @end table
19387
19388 @section tpad
19389
19390 Temporarily pad video frames.
19391
19392 The filter accepts the following options:
19393
19394 @table @option
19395 @item start
19396 Specify number of delay frames before input video stream. Default is 0.
19397
19398 @item stop
19399 Specify number of padding frames after input video stream.
19400 Set to -1 to pad indefinitely. Default is 0.
19401
19402 @item start_mode
19403 Set kind of frames added to beginning of stream.
19404 Can be either @var{add} or @var{clone}.
19405 With @var{add} frames of solid-color are added.
19406 With @var{clone} frames are clones of first frame.
19407 Default is @var{add}.
19408
19409 @item stop_mode
19410 Set kind of frames added to end of stream.
19411 Can be either @var{add} or @var{clone}.
19412 With @var{add} frames of solid-color are added.
19413 With @var{clone} frames are clones of last frame.
19414 Default is @var{add}.
19415
19416 @item start_duration, stop_duration
19417 Specify the duration of the start/stop delay. See
19418 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19419 for the accepted syntax.
19420 These options override @var{start} and @var{stop}. Default is 0.
19421
19422 @item color
19423 Specify the color of the padded area. For the syntax of this option,
19424 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19425 manual,ffmpeg-utils}.
19426
19427 The default value of @var{color} is "black".
19428 @end table
19429
19430 @anchor{transpose}
19431 @section transpose
19432
19433 Transpose rows with columns in the input video and optionally flip it.
19434
19435 It accepts the following parameters:
19436
19437 @table @option
19438
19439 @item dir
19440 Specify the transposition direction.
19441
19442 Can assume the following values:
19443 @table @samp
19444 @item 0, 4, cclock_flip
19445 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19446 @example
19447 L.R     L.l
19448 . . ->  . .
19449 l.r     R.r
19450 @end example
19451
19452 @item 1, 5, clock
19453 Rotate by 90 degrees clockwise, that is:
19454 @example
19455 L.R     l.L
19456 . . ->  . .
19457 l.r     r.R
19458 @end example
19459
19460 @item 2, 6, cclock
19461 Rotate by 90 degrees counterclockwise, that is:
19462 @example
19463 L.R     R.r
19464 . . ->  . .
19465 l.r     L.l
19466 @end example
19467
19468 @item 3, 7, clock_flip
19469 Rotate by 90 degrees clockwise and vertically flip, that is:
19470 @example
19471 L.R     r.R
19472 . . ->  . .
19473 l.r     l.L
19474 @end example
19475 @end table
19476
19477 For values between 4-7, the transposition is only done if the input
19478 video geometry is portrait and not landscape. These values are
19479 deprecated, the @code{passthrough} option should be used instead.
19480
19481 Numerical values are deprecated, and should be dropped in favor of
19482 symbolic constants.
19483
19484 @item passthrough
19485 Do not apply the transposition if the input geometry matches the one
19486 specified by the specified value. It accepts the following values:
19487 @table @samp
19488 @item none
19489 Always apply transposition.
19490 @item portrait
19491 Preserve portrait geometry (when @var{height} >= @var{width}).
19492 @item landscape
19493 Preserve landscape geometry (when @var{width} >= @var{height}).
19494 @end table
19495
19496 Default value is @code{none}.
19497 @end table
19498
19499 For example to rotate by 90 degrees clockwise and preserve portrait
19500 layout:
19501 @example
19502 transpose=dir=1:passthrough=portrait
19503 @end example
19504
19505 The command above can also be specified as:
19506 @example
19507 transpose=1:portrait
19508 @end example
19509
19510 @section transpose_npp
19511
19512 Transpose rows with columns in the input video and optionally flip it.
19513 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19514
19515 It accepts the following parameters:
19516
19517 @table @option
19518
19519 @item dir
19520 Specify the transposition direction.
19521
19522 Can assume the following values:
19523 @table @samp
19524 @item cclock_flip
19525 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19526
19527 @item clock
19528 Rotate by 90 degrees clockwise.
19529
19530 @item cclock
19531 Rotate by 90 degrees counterclockwise.
19532
19533 @item clock_flip
19534 Rotate by 90 degrees clockwise and vertically flip.
19535 @end table
19536
19537 @item passthrough
19538 Do not apply the transposition if the input geometry matches the one
19539 specified by the specified value. It accepts the following values:
19540 @table @samp
19541 @item none
19542 Always apply transposition. (default)
19543 @item portrait
19544 Preserve portrait geometry (when @var{height} >= @var{width}).
19545 @item landscape
19546 Preserve landscape geometry (when @var{width} >= @var{height}).
19547 @end table
19548
19549 @end table
19550
19551 @section trim
19552 Trim the input so that the output contains one continuous subpart of the input.
19553
19554 It accepts the following parameters:
19555 @table @option
19556 @item start
19557 Specify the time of the start of the kept section, i.e. the frame with the
19558 timestamp @var{start} will be the first frame in the output.
19559
19560 @item end
19561 Specify the time of the first frame that will be dropped, i.e. the frame
19562 immediately preceding the one with the timestamp @var{end} will be the last
19563 frame in the output.
19564
19565 @item start_pts
19566 This is the same as @var{start}, except this option sets the start timestamp
19567 in timebase units instead of seconds.
19568
19569 @item end_pts
19570 This is the same as @var{end}, except this option sets the end timestamp
19571 in timebase units instead of seconds.
19572
19573 @item duration
19574 The maximum duration of the output in seconds.
19575
19576 @item start_frame
19577 The number of the first frame that should be passed to the output.
19578
19579 @item end_frame
19580 The number of the first frame that should be dropped.
19581 @end table
19582
19583 @option{start}, @option{end}, and @option{duration} are expressed as time
19584 duration specifications; see
19585 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19586 for the accepted syntax.
19587
19588 Note that the first two sets of the start/end options and the @option{duration}
19589 option look at the frame timestamp, while the _frame variants simply count the
19590 frames that pass through the filter. Also note that this filter does not modify
19591 the timestamps. If you wish for the output timestamps to start at zero, insert a
19592 setpts filter after the trim filter.
19593
19594 If multiple start or end options are set, this filter tries to be greedy and
19595 keep all the frames that match at least one of the specified constraints. To keep
19596 only the part that matches all the constraints at once, chain multiple trim
19597 filters.
19598
19599 The defaults are such that all the input is kept. So it is possible to set e.g.
19600 just the end values to keep everything before the specified time.
19601
19602 Examples:
19603 @itemize
19604 @item
19605 Drop everything except the second minute of input:
19606 @example
19607 ffmpeg -i INPUT -vf trim=60:120
19608 @end example
19609
19610 @item
19611 Keep only the first second:
19612 @example
19613 ffmpeg -i INPUT -vf trim=duration=1
19614 @end example
19615
19616 @end itemize
19617
19618 @section unpremultiply
19619 Apply alpha unpremultiply effect to input video stream using first plane
19620 of second stream as alpha.
19621
19622 Both streams must have same dimensions and same pixel format.
19623
19624 The filter accepts the following option:
19625
19626 @table @option
19627 @item planes
19628 Set which planes will be processed, unprocessed planes will be copied.
19629 By default value 0xf, all planes will be processed.
19630
19631 If the format has 1 or 2 components, then luma is bit 0.
19632 If the format has 3 or 4 components:
19633 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19634 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19635 If present, the alpha channel is always the last bit.
19636
19637 @item inplace
19638 Do not require 2nd input for processing, instead use alpha plane from input stream.
19639 @end table
19640
19641 @anchor{unsharp}
19642 @section unsharp
19643
19644 Sharpen or blur the input video.
19645
19646 It accepts the following parameters:
19647
19648 @table @option
19649 @item luma_msize_x, lx
19650 Set the luma matrix horizontal size. It must be an odd integer between
19651 3 and 23. The default value is 5.
19652
19653 @item luma_msize_y, ly
19654 Set the luma matrix vertical size. It must be an odd integer between 3
19655 and 23. The default value is 5.
19656
19657 @item luma_amount, la
19658 Set the luma effect strength. It must be a floating point number, reasonable
19659 values lay between -1.5 and 1.5.
19660
19661 Negative values will blur the input video, while positive values will
19662 sharpen it, a value of zero will disable the effect.
19663
19664 Default value is 1.0.
19665
19666 @item chroma_msize_x, cx
19667 Set the chroma matrix horizontal size. It must be an odd integer
19668 between 3 and 23. The default value is 5.
19669
19670 @item chroma_msize_y, cy
19671 Set the chroma matrix vertical size. It must be an odd integer
19672 between 3 and 23. The default value is 5.
19673
19674 @item chroma_amount, ca
19675 Set the chroma effect strength. It must be a floating point number, reasonable
19676 values lay between -1.5 and 1.5.
19677
19678 Negative values will blur the input video, while positive values will
19679 sharpen it, a value of zero will disable the effect.
19680
19681 Default value is 0.0.
19682
19683 @end table
19684
19685 All parameters are optional and default to the equivalent of the
19686 string '5:5:1.0:5:5:0.0'.
19687
19688 @subsection Examples
19689
19690 @itemize
19691 @item
19692 Apply strong luma sharpen effect:
19693 @example
19694 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19695 @end example
19696
19697 @item
19698 Apply a strong blur of both luma and chroma parameters:
19699 @example
19700 unsharp=7:7:-2:7:7:-2
19701 @end example
19702 @end itemize
19703
19704 @anchor{untile}
19705 @section untile
19706
19707 Decompose a video made of tiled images into the individual images.
19708
19709 The frame rate of the output video is the frame rate of the input video
19710 multiplied by the number of tiles.
19711
19712 This filter does the reverse of @ref{tile}.
19713
19714 The filter accepts the following options:
19715
19716 @table @option
19717
19718 @item layout
19719 Set the grid size (i.e. the number of lines and columns). For the syntax of
19720 this option, check the
19721 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19722 @end table
19723
19724 @subsection Examples
19725
19726 @itemize
19727 @item
19728 Produce a 1-second video from a still image file made of 25 frames stacked
19729 vertically, like an analogic film reel:
19730 @example
19731 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19732 @end example
19733 @end itemize
19734
19735 @section uspp
19736
19737 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19738 the image at several (or - in the case of @option{quality} level @code{8} - all)
19739 shifts and average the results.
19740
19741 The way this differs from the behavior of spp is that uspp actually encodes &
19742 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19743 DCT similar to MJPEG.
19744
19745 The filter accepts the following options:
19746
19747 @table @option
19748 @item quality
19749 Set quality. This option defines the number of levels for averaging. It accepts
19750 an integer in the range 0-8. If set to @code{0}, the filter will have no
19751 effect. A value of @code{8} means the higher quality. For each increment of
19752 that value the speed drops by a factor of approximately 2.  Default value is
19753 @code{3}.
19754
19755 @item qp
19756 Force a constant quantization parameter. If not set, the filter will use the QP
19757 from the video stream (if available).
19758 @end table
19759
19760 @section v360
19761
19762 Convert 360 videos between various formats.
19763
19764 The filter accepts the following options:
19765
19766 @table @option
19767
19768 @item input
19769 @item output
19770 Set format of the input/output video.
19771
19772 Available formats:
19773
19774 @table @samp
19775
19776 @item e
19777 @item equirect
19778 Equirectangular projection.
19779
19780 @item c3x2
19781 @item c6x1
19782 @item c1x6
19783 Cubemap with 3x2/6x1/1x6 layout.
19784
19785 Format specific options:
19786
19787 @table @option
19788 @item in_pad
19789 @item out_pad
19790 Set padding proportion for the input/output cubemap. Values in decimals.
19791
19792 Example values:
19793 @table @samp
19794 @item 0
19795 No padding.
19796 @item 0.01
19797 1% of face is padding. For example, with 1920x1280 resolution face size would be 640x640 and padding would be 3 pixels from each side. (640 * 0.01 = 6 pixels)
19798 @end table
19799
19800 Default value is @b{@samp{0}}.
19801 Maximum value is @b{@samp{0.1}}.
19802
19803 @item fin_pad
19804 @item fout_pad
19805 Set fixed padding for the input/output cubemap. Values in pixels.
19806
19807 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19808
19809 @item in_forder
19810 @item out_forder
19811 Set order of faces for the input/output cubemap. Choose one direction for each position.
19812
19813 Designation of directions:
19814 @table @samp
19815 @item r
19816 right
19817 @item l
19818 left
19819 @item u
19820 up
19821 @item d
19822 down
19823 @item f
19824 forward
19825 @item b
19826 back
19827 @end table
19828
19829 Default value is @b{@samp{rludfb}}.
19830
19831 @item in_frot
19832 @item out_frot
19833 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
19834
19835 Designation of angles:
19836 @table @samp
19837 @item 0
19838 0 degrees clockwise
19839 @item 1
19840 90 degrees clockwise
19841 @item 2
19842 180 degrees clockwise
19843 @item 3
19844 270 degrees clockwise
19845 @end table
19846
19847 Default value is @b{@samp{000000}}.
19848 @end table
19849
19850 @item eac
19851 Equi-Angular Cubemap.
19852
19853 @item flat
19854 @item gnomonic
19855 @item rectilinear
19856 Regular video.
19857
19858 Format specific options:
19859 @table @option
19860 @item h_fov
19861 @item v_fov
19862 @item d_fov
19863 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19864
19865 If diagonal field of view is set it overrides horizontal and vertical field of view.
19866
19867 @item ih_fov
19868 @item iv_fov
19869 @item id_fov
19870 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19871
19872 If diagonal field of view is set it overrides horizontal and vertical field of view.
19873 @end table
19874
19875 @item dfisheye
19876 Dual fisheye.
19877
19878 Format specific options:
19879 @table @option
19880 @item h_fov
19881 @item v_fov
19882 @item d_fov
19883 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19884
19885 If diagonal field of view is set it overrides horizontal and vertical field of view.
19886
19887 @item ih_fov
19888 @item iv_fov
19889 @item id_fov
19890 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19891
19892 If diagonal field of view is set it overrides horizontal and vertical field of view.
19893 @end table
19894
19895 @item barrel
19896 @item fb
19897 @item barrelsplit
19898 Facebook's 360 formats.
19899
19900 @item sg
19901 Stereographic format.
19902
19903 Format specific options:
19904 @table @option
19905 @item h_fov
19906 @item v_fov
19907 @item d_fov
19908 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19909
19910 If diagonal field of view is set it overrides horizontal and vertical field of view.
19911
19912 @item ih_fov
19913 @item iv_fov
19914 @item id_fov
19915 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19916
19917 If diagonal field of view is set it overrides horizontal and vertical field of view.
19918 @end table
19919
19920 @item mercator
19921 Mercator format.
19922
19923 @item ball
19924 Ball format, gives significant distortion toward the back.
19925
19926 @item hammer
19927 Hammer-Aitoff map projection format.
19928
19929 @item sinusoidal
19930 Sinusoidal map projection format.
19931
19932 @item fisheye
19933 Fisheye projection.
19934
19935 Format specific options:
19936 @table @option
19937 @item h_fov
19938 @item v_fov
19939 @item d_fov
19940 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19941
19942 If diagonal field of view is set it overrides horizontal and vertical field of view.
19943
19944 @item ih_fov
19945 @item iv_fov
19946 @item id_fov
19947 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19948
19949 If diagonal field of view is set it overrides horizontal and vertical field of view.
19950 @end table
19951
19952 @item pannini
19953 Pannini projection.
19954
19955 Format specific options:
19956 @table @option
19957 @item h_fov
19958 Set output pannini parameter.
19959
19960 @item ih_fov
19961 Set input pannini parameter.
19962 @end table
19963
19964 @item cylindrical
19965 Cylindrical projection.
19966
19967 Format specific options:
19968 @table @option
19969 @item h_fov
19970 @item v_fov
19971 @item d_fov
19972 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19973
19974 If diagonal field of view is set it overrides horizontal and vertical field of view.
19975
19976 @item ih_fov
19977 @item iv_fov
19978 @item id_fov
19979 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19980
19981 If diagonal field of view is set it overrides horizontal and vertical field of view.
19982 @end table
19983
19984 @item perspective
19985 Perspective projection. @i{(output only)}
19986
19987 Format specific options:
19988 @table @option
19989 @item v_fov
19990 Set perspective parameter.
19991 @end table
19992
19993 @item tetrahedron
19994 Tetrahedron projection.
19995
19996 @item tsp
19997 Truncated square pyramid projection.
19998
19999 @item he
20000 @item hequirect
20001 Half equirectangular projection.
20002
20003 @item equisolid
20004 Equisolid format.
20005
20006 Format specific options:
20007 @table @option
20008 @item h_fov
20009 @item v_fov
20010 @item d_fov
20011 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20012
20013 If diagonal field of view is set it overrides horizontal and vertical field of view.
20014
20015 @item ih_fov
20016 @item iv_fov
20017 @item id_fov
20018 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20019
20020 If diagonal field of view is set it overrides horizontal and vertical field of view.
20021 @end table
20022
20023 @item og
20024 Orthographic format.
20025
20026 Format specific options:
20027 @table @option
20028 @item h_fov
20029 @item v_fov
20030 @item d_fov
20031 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20032
20033 If diagonal field of view is set it overrides horizontal and vertical field of view.
20034
20035 @item ih_fov
20036 @item iv_fov
20037 @item id_fov
20038 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20039
20040 If diagonal field of view is set it overrides horizontal and vertical field of view.
20041 @end table
20042
20043 @item octahedron
20044 Octahedron projection.
20045 @end table
20046
20047 @item interp
20048 Set interpolation method.@*
20049 @i{Note: more complex interpolation methods require much more memory to run.}
20050
20051 Available methods:
20052
20053 @table @samp
20054 @item near
20055 @item nearest
20056 Nearest neighbour.
20057 @item line
20058 @item linear
20059 Bilinear interpolation.
20060 @item lagrange9
20061 Lagrange9 interpolation.
20062 @item cube
20063 @item cubic
20064 Bicubic interpolation.
20065 @item lanc
20066 @item lanczos
20067 Lanczos interpolation.
20068 @item sp16
20069 @item spline16
20070 Spline16 interpolation.
20071 @item gauss
20072 @item gaussian
20073 Gaussian interpolation.
20074 @item mitchell
20075 Mitchell interpolation.
20076 @end table
20077
20078 Default value is @b{@samp{line}}.
20079
20080 @item w
20081 @item h
20082 Set the output video resolution.
20083
20084 Default resolution depends on formats.
20085
20086 @item in_stereo
20087 @item out_stereo
20088 Set the input/output stereo format.
20089
20090 @table @samp
20091 @item 2d
20092 2D mono
20093 @item sbs
20094 Side by side
20095 @item tb
20096 Top bottom
20097 @end table
20098
20099 Default value is @b{@samp{2d}} for input and output format.
20100
20101 @item yaw
20102 @item pitch
20103 @item roll
20104 Set rotation for the output video. Values in degrees.
20105
20106 @item rorder
20107 Set rotation order for the output video. Choose one item for each position.
20108
20109 @table @samp
20110 @item y, Y
20111 yaw
20112 @item p, P
20113 pitch
20114 @item r, R
20115 roll
20116 @end table
20117
20118 Default value is @b{@samp{ypr}}.
20119
20120 @item h_flip
20121 @item v_flip
20122 @item d_flip
20123 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20124
20125 @item ih_flip
20126 @item iv_flip
20127 Set if input video is flipped horizontally/vertically. Boolean values.
20128
20129 @item in_trans
20130 Set if input video is transposed. Boolean value, by default disabled.
20131
20132 @item out_trans
20133 Set if output video needs to be transposed. Boolean value, by default disabled.
20134
20135 @item alpha_mask
20136 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20137 @end table
20138
20139 @subsection Examples
20140
20141 @itemize
20142 @item
20143 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20144 @example
20145 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20146 @end example
20147 @item
20148 Extract back view of Equi-Angular Cubemap:
20149 @example
20150 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20151 @end example
20152 @item
20153 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20154 @example
20155 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20156 @end example
20157 @end itemize
20158
20159 @subsection Commands
20160
20161 This filter supports subset of above options as @ref{commands}.
20162
20163 @section vaguedenoiser
20164
20165 Apply a wavelet based denoiser.
20166
20167 It transforms each frame from the video input into the wavelet domain,
20168 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20169 the obtained coefficients. It does an inverse wavelet transform after.
20170 Due to wavelet properties, it should give a nice smoothed result, and
20171 reduced noise, without blurring picture features.
20172
20173 This filter accepts the following options:
20174
20175 @table @option
20176 @item threshold
20177 The filtering strength. The higher, the more filtered the video will be.
20178 Hard thresholding can use a higher threshold than soft thresholding
20179 before the video looks overfiltered. Default value is 2.
20180
20181 @item method
20182 The filtering method the filter will use.
20183
20184 It accepts the following values:
20185 @table @samp
20186 @item hard
20187 All values under the threshold will be zeroed.
20188
20189 @item soft
20190 All values under the threshold will be zeroed. All values above will be
20191 reduced by the threshold.
20192
20193 @item garrote
20194 Scales or nullifies coefficients - intermediary between (more) soft and
20195 (less) hard thresholding.
20196 @end table
20197
20198 Default is garrote.
20199
20200 @item nsteps
20201 Number of times, the wavelet will decompose the picture. Picture can't
20202 be decomposed beyond a particular point (typically, 8 for a 640x480
20203 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20204
20205 @item percent
20206 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20207
20208 @item planes
20209 A list of the planes to process. By default all planes are processed.
20210
20211 @item type
20212 The threshold type the filter will use.
20213
20214 It accepts the following values:
20215 @table @samp
20216 @item universal
20217 Threshold used is same for all decompositions.
20218
20219 @item bayes
20220 Threshold used depends also on each decomposition coefficients.
20221 @end table
20222
20223 Default is universal.
20224 @end table
20225
20226 @section vectorscope
20227
20228 Display 2 color component values in the two dimensional graph (which is called
20229 a vectorscope).
20230
20231 This filter accepts the following options:
20232
20233 @table @option
20234 @item mode, m
20235 Set vectorscope mode.
20236
20237 It accepts the following values:
20238 @table @samp
20239 @item gray
20240 @item tint
20241 Gray values are displayed on graph, higher brightness means more pixels have
20242 same component color value on location in graph. This is the default mode.
20243
20244 @item color
20245 Gray values are displayed on graph. Surrounding pixels values which are not
20246 present in video frame are drawn in gradient of 2 color components which are
20247 set by option @code{x} and @code{y}. The 3rd color component is static.
20248
20249 @item color2
20250 Actual color components values present in video frame are displayed on graph.
20251
20252 @item color3
20253 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20254 on graph increases value of another color component, which is luminance by
20255 default values of @code{x} and @code{y}.
20256
20257 @item color4
20258 Actual colors present in video frame are displayed on graph. If two different
20259 colors map to same position on graph then color with higher value of component
20260 not present in graph is picked.
20261
20262 @item color5
20263 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20264 component picked from radial gradient.
20265 @end table
20266
20267 @item x
20268 Set which color component will be represented on X-axis. Default is @code{1}.
20269
20270 @item y
20271 Set which color component will be represented on Y-axis. Default is @code{2}.
20272
20273 @item intensity, i
20274 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20275 of color component which represents frequency of (X, Y) location in graph.
20276
20277 @item envelope, e
20278 @table @samp
20279 @item none
20280 No envelope, this is default.
20281
20282 @item instant
20283 Instant envelope, even darkest single pixel will be clearly highlighted.
20284
20285 @item peak
20286 Hold maximum and minimum values presented in graph over time. This way you
20287 can still spot out of range values without constantly looking at vectorscope.
20288
20289 @item peak+instant
20290 Peak and instant envelope combined together.
20291 @end table
20292
20293 @item graticule, g
20294 Set what kind of graticule to draw.
20295 @table @samp
20296 @item none
20297 @item green
20298 @item color
20299 @item invert
20300 @end table
20301
20302 @item opacity, o
20303 Set graticule opacity.
20304
20305 @item flags, f
20306 Set graticule flags.
20307
20308 @table @samp
20309 @item white
20310 Draw graticule for white point.
20311
20312 @item black
20313 Draw graticule for black point.
20314
20315 @item name
20316 Draw color points short names.
20317 @end table
20318
20319 @item bgopacity, b
20320 Set background opacity.
20321
20322 @item lthreshold, l
20323 Set low threshold for color component not represented on X or Y axis.
20324 Values lower than this value will be ignored. Default is 0.
20325 Note this value is multiplied with actual max possible value one pixel component
20326 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20327 is 0.1 * 255 = 25.
20328
20329 @item hthreshold, h
20330 Set high threshold for color component not represented on X or Y axis.
20331 Values higher than this value will be ignored. Default is 1.
20332 Note this value is multiplied with actual max possible value one pixel component
20333 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20334 is 0.9 * 255 = 230.
20335
20336 @item colorspace, c
20337 Set what kind of colorspace to use when drawing graticule.
20338 @table @samp
20339 @item auto
20340 @item 601
20341 @item 709
20342 @end table
20343 Default is auto.
20344
20345 @item tint0, t0
20346 @item tint1, t1
20347 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20348 This means no tint, and output will remain gray.
20349 @end table
20350
20351 @anchor{vidstabdetect}
20352 @section vidstabdetect
20353
20354 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20355 @ref{vidstabtransform} for pass 2.
20356
20357 This filter generates a file with relative translation and rotation
20358 transform information about subsequent frames, which is then used by
20359 the @ref{vidstabtransform} filter.
20360
20361 To enable compilation of this filter you need to configure FFmpeg with
20362 @code{--enable-libvidstab}.
20363
20364 This filter accepts the following options:
20365
20366 @table @option
20367 @item result
20368 Set the path to the file used to write the transforms information.
20369 Default value is @file{transforms.trf}.
20370
20371 @item shakiness
20372 Set how shaky the video is and how quick the camera is. It accepts an
20373 integer in the range 1-10, a value of 1 means little shakiness, a
20374 value of 10 means strong shakiness. Default value is 5.
20375
20376 @item accuracy
20377 Set the accuracy of the detection process. It must be a value in the
20378 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20379 accuracy. Default value is 15.
20380
20381 @item stepsize
20382 Set stepsize of the search process. The region around minimum is
20383 scanned with 1 pixel resolution. Default value is 6.
20384
20385 @item mincontrast
20386 Set minimum contrast. Below this value a local measurement field is
20387 discarded. Must be a floating point value in the range 0-1. Default
20388 value is 0.3.
20389
20390 @item tripod
20391 Set reference frame number for tripod mode.
20392
20393 If enabled, the motion of the frames is compared to a reference frame
20394 in the filtered stream, identified by the specified number. The idea
20395 is to compensate all movements in a more-or-less static scene and keep
20396 the camera view absolutely still.
20397
20398 If set to 0, it is disabled. The frames are counted starting from 1.
20399
20400 @item show
20401 Show fields and transforms in the resulting frames. It accepts an
20402 integer in the range 0-2. Default value is 0, which disables any
20403 visualization.
20404 @end table
20405
20406 @subsection Examples
20407
20408 @itemize
20409 @item
20410 Use default values:
20411 @example
20412 vidstabdetect
20413 @end example
20414
20415 @item
20416 Analyze strongly shaky movie and put the results in file
20417 @file{mytransforms.trf}:
20418 @example
20419 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20420 @end example
20421
20422 @item
20423 Visualize the result of internal transformations in the resulting
20424 video:
20425 @example
20426 vidstabdetect=show=1
20427 @end example
20428
20429 @item
20430 Analyze a video with medium shakiness using @command{ffmpeg}:
20431 @example
20432 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20433 @end example
20434 @end itemize
20435
20436 @anchor{vidstabtransform}
20437 @section vidstabtransform
20438
20439 Video stabilization/deshaking: pass 2 of 2,
20440 see @ref{vidstabdetect} for pass 1.
20441
20442 Read a file with transform information for each frame and
20443 apply/compensate them. Together with the @ref{vidstabdetect}
20444 filter this can be used to deshake videos. See also
20445 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20446 the @ref{unsharp} filter, see below.
20447
20448 To enable compilation of this filter you need to configure FFmpeg with
20449 @code{--enable-libvidstab}.
20450
20451 @subsection Options
20452
20453 @table @option
20454 @item input
20455 Set path to the file used to read the transforms. Default value is
20456 @file{transforms.trf}.
20457
20458 @item smoothing
20459 Set the number of frames (value*2 + 1) used for lowpass filtering the
20460 camera movements. Default value is 10.
20461
20462 For example a number of 10 means that 21 frames are used (10 in the
20463 past and 10 in the future) to smoothen the motion in the video. A
20464 larger value leads to a smoother video, but limits the acceleration of
20465 the camera (pan/tilt movements). 0 is a special case where a static
20466 camera is simulated.
20467
20468 @item optalgo
20469 Set the camera path optimization algorithm.
20470
20471 Accepted values are:
20472 @table @samp
20473 @item gauss
20474 gaussian kernel low-pass filter on camera motion (default)
20475 @item avg
20476 averaging on transformations
20477 @end table
20478
20479 @item maxshift
20480 Set maximal number of pixels to translate frames. Default value is -1,
20481 meaning no limit.
20482
20483 @item maxangle
20484 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20485 value is -1, meaning no limit.
20486
20487 @item crop
20488 Specify how to deal with borders that may be visible due to movement
20489 compensation.
20490
20491 Available values are:
20492 @table @samp
20493 @item keep
20494 keep image information from previous frame (default)
20495 @item black
20496 fill the border black
20497 @end table
20498
20499 @item invert
20500 Invert transforms if set to 1. Default value is 0.
20501
20502 @item relative
20503 Consider transforms as relative to previous frame if set to 1,
20504 absolute if set to 0. Default value is 0.
20505
20506 @item zoom
20507 Set percentage to zoom. A positive value will result in a zoom-in
20508 effect, a negative value in a zoom-out effect. Default value is 0 (no
20509 zoom).
20510
20511 @item optzoom
20512 Set optimal zooming to avoid borders.
20513
20514 Accepted values are:
20515 @table @samp
20516 @item 0
20517 disabled
20518 @item 1
20519 optimal static zoom value is determined (only very strong movements
20520 will lead to visible borders) (default)
20521 @item 2
20522 optimal adaptive zoom value is determined (no borders will be
20523 visible), see @option{zoomspeed}
20524 @end table
20525
20526 Note that the value given at zoom is added to the one calculated here.
20527
20528 @item zoomspeed
20529 Set percent to zoom maximally each frame (enabled when
20530 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20531 0.25.
20532
20533 @item interpol
20534 Specify type of interpolation.
20535
20536 Available values are:
20537 @table @samp
20538 @item no
20539 no interpolation
20540 @item linear
20541 linear only horizontal
20542 @item bilinear
20543 linear in both directions (default)
20544 @item bicubic
20545 cubic in both directions (slow)
20546 @end table
20547
20548 @item tripod
20549 Enable virtual tripod mode if set to 1, which is equivalent to
20550 @code{relative=0:smoothing=0}. Default value is 0.
20551
20552 Use also @code{tripod} option of @ref{vidstabdetect}.
20553
20554 @item debug
20555 Increase log verbosity if set to 1. Also the detected global motions
20556 are written to the temporary file @file{global_motions.trf}. Default
20557 value is 0.
20558 @end table
20559
20560 @subsection Examples
20561
20562 @itemize
20563 @item
20564 Use @command{ffmpeg} for a typical stabilization with default values:
20565 @example
20566 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20567 @end example
20568
20569 Note the use of the @ref{unsharp} filter which is always recommended.
20570
20571 @item
20572 Zoom in a bit more and load transform data from a given file:
20573 @example
20574 vidstabtransform=zoom=5:input="mytransforms.trf"
20575 @end example
20576
20577 @item
20578 Smoothen the video even more:
20579 @example
20580 vidstabtransform=smoothing=30
20581 @end example
20582 @end itemize
20583
20584 @section vflip
20585
20586 Flip the input video vertically.
20587
20588 For example, to vertically flip a video with @command{ffmpeg}:
20589 @example
20590 ffmpeg -i in.avi -vf "vflip" out.avi
20591 @end example
20592
20593 @section vfrdet
20594
20595 Detect variable frame rate video.
20596
20597 This filter tries to detect if the input is variable or constant frame rate.
20598
20599 At end it will output number of frames detected as having variable delta pts,
20600 and ones with constant delta pts.
20601 If there was frames with variable delta, than it will also show min, max and
20602 average delta encountered.
20603
20604 @section vibrance
20605
20606 Boost or alter saturation.
20607
20608 The filter accepts the following options:
20609 @table @option
20610 @item intensity
20611 Set strength of boost if positive value or strength of alter if negative value.
20612 Default is 0. Allowed range is from -2 to 2.
20613
20614 @item rbal
20615 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20616
20617 @item gbal
20618 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20619
20620 @item bbal
20621 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20622
20623 @item rlum
20624 Set the red luma coefficient.
20625
20626 @item glum
20627 Set the green luma coefficient.
20628
20629 @item blum
20630 Set the blue luma coefficient.
20631
20632 @item alternate
20633 If @code{intensity} is negative and this is set to 1, colors will change,
20634 otherwise colors will be less saturated, more towards gray.
20635 @end table
20636
20637 @subsection Commands
20638
20639 This filter supports the all above options as @ref{commands}.
20640
20641 @anchor{vignette}
20642 @section vignette
20643
20644 Make or reverse a natural vignetting effect.
20645
20646 The filter accepts the following options:
20647
20648 @table @option
20649 @item angle, a
20650 Set lens angle expression as a number of radians.
20651
20652 The value is clipped in the @code{[0,PI/2]} range.
20653
20654 Default value: @code{"PI/5"}
20655
20656 @item x0
20657 @item y0
20658 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20659 by default.
20660
20661 @item mode
20662 Set forward/backward mode.
20663
20664 Available modes are:
20665 @table @samp
20666 @item forward
20667 The larger the distance from the central point, the darker the image becomes.
20668
20669 @item backward
20670 The larger the distance from the central point, the brighter the image becomes.
20671 This can be used to reverse a vignette effect, though there is no automatic
20672 detection to extract the lens @option{angle} and other settings (yet). It can
20673 also be used to create a burning effect.
20674 @end table
20675
20676 Default value is @samp{forward}.
20677
20678 @item eval
20679 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20680
20681 It accepts the following values:
20682 @table @samp
20683 @item init
20684 Evaluate expressions only once during the filter initialization.
20685
20686 @item frame
20687 Evaluate expressions for each incoming frame. This is way slower than the
20688 @samp{init} mode since it requires all the scalers to be re-computed, but it
20689 allows advanced dynamic expressions.
20690 @end table
20691
20692 Default value is @samp{init}.
20693
20694 @item dither
20695 Set dithering to reduce the circular banding effects. Default is @code{1}
20696 (enabled).
20697
20698 @item aspect
20699 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20700 Setting this value to the SAR of the input will make a rectangular vignetting
20701 following the dimensions of the video.
20702
20703 Default is @code{1/1}.
20704 @end table
20705
20706 @subsection Expressions
20707
20708 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20709 following parameters.
20710
20711 @table @option
20712 @item w
20713 @item h
20714 input width and height
20715
20716 @item n
20717 the number of input frame, starting from 0
20718
20719 @item pts
20720 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20721 @var{TB} units, NAN if undefined
20722
20723 @item r
20724 frame rate of the input video, NAN if the input frame rate is unknown
20725
20726 @item t
20727 the PTS (Presentation TimeStamp) of the filtered video frame,
20728 expressed in seconds, NAN if undefined
20729
20730 @item tb
20731 time base of the input video
20732 @end table
20733
20734
20735 @subsection Examples
20736
20737 @itemize
20738 @item
20739 Apply simple strong vignetting effect:
20740 @example
20741 vignette=PI/4
20742 @end example
20743
20744 @item
20745 Make a flickering vignetting:
20746 @example
20747 vignette='PI/4+random(1)*PI/50':eval=frame
20748 @end example
20749
20750 @end itemize
20751
20752 @section vmafmotion
20753
20754 Obtain the average VMAF motion score of a video.
20755 It is one of the component metrics of VMAF.
20756
20757 The obtained average motion score is printed through the logging system.
20758
20759 The filter accepts the following options:
20760
20761 @table @option
20762 @item stats_file
20763 If specified, the filter will use the named file to save the motion score of
20764 each frame with respect to the previous frame.
20765 When filename equals "-" the data is sent to standard output.
20766 @end table
20767
20768 Example:
20769 @example
20770 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20771 @end example
20772
20773 @section vstack
20774 Stack input videos vertically.
20775
20776 All streams must be of same pixel format and of same width.
20777
20778 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20779 to create same output.
20780
20781 The filter accepts the following options:
20782
20783 @table @option
20784 @item inputs
20785 Set number of input streams. Default is 2.
20786
20787 @item shortest
20788 If set to 1, force the output to terminate when the shortest input
20789 terminates. Default value is 0.
20790 @end table
20791
20792 @section w3fdif
20793
20794 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20795 Deinterlacing Filter").
20796
20797 Based on the process described by Martin Weston for BBC R&D, and
20798 implemented based on the de-interlace algorithm written by Jim
20799 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20800 uses filter coefficients calculated by BBC R&D.
20801
20802 This filter uses field-dominance information in frame to decide which
20803 of each pair of fields to place first in the output.
20804 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20805
20806 There are two sets of filter coefficients, so called "simple"
20807 and "complex". Which set of filter coefficients is used can
20808 be set by passing an optional parameter:
20809
20810 @table @option
20811 @item filter
20812 Set the interlacing filter coefficients. Accepts one of the following values:
20813
20814 @table @samp
20815 @item simple
20816 Simple filter coefficient set.
20817 @item complex
20818 More-complex filter coefficient set.
20819 @end table
20820 Default value is @samp{complex}.
20821
20822 @item deint
20823 Specify which frames to deinterlace. Accepts one of the following values:
20824
20825 @table @samp
20826 @item all
20827 Deinterlace all frames,
20828 @item interlaced
20829 Only deinterlace frames marked as interlaced.
20830 @end table
20831
20832 Default value is @samp{all}.
20833 @end table
20834
20835 @section waveform
20836 Video waveform monitor.
20837
20838 The waveform monitor plots color component intensity. By default luminance
20839 only. Each column of the waveform corresponds to a column of pixels in the
20840 source video.
20841
20842 It accepts the following options:
20843
20844 @table @option
20845 @item mode, m
20846 Can be either @code{row}, or @code{column}. Default is @code{column}.
20847 In row mode, the graph on the left side represents color component value 0 and
20848 the right side represents value = 255. In column mode, the top side represents
20849 color component value = 0 and bottom side represents value = 255.
20850
20851 @item intensity, i
20852 Set intensity. Smaller values are useful to find out how many values of the same
20853 luminance are distributed across input rows/columns.
20854 Default value is @code{0.04}. Allowed range is [0, 1].
20855
20856 @item mirror, r
20857 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
20858 In mirrored mode, higher values will be represented on the left
20859 side for @code{row} mode and at the top for @code{column} mode. Default is
20860 @code{1} (mirrored).
20861
20862 @item display, d
20863 Set display mode.
20864 It accepts the following values:
20865 @table @samp
20866 @item overlay
20867 Presents information identical to that in the @code{parade}, except
20868 that the graphs representing color components are superimposed directly
20869 over one another.
20870
20871 This display mode makes it easier to spot relative differences or similarities
20872 in overlapping areas of the color components that are supposed to be identical,
20873 such as neutral whites, grays, or blacks.
20874
20875 @item stack
20876 Display separate graph for the color components side by side in
20877 @code{row} mode or one below the other in @code{column} mode.
20878
20879 @item parade
20880 Display separate graph for the color components side by side in
20881 @code{column} mode or one below the other in @code{row} mode.
20882
20883 Using this display mode makes it easy to spot color casts in the highlights
20884 and shadows of an image, by comparing the contours of the top and the bottom
20885 graphs of each waveform. Since whites, grays, and blacks are characterized
20886 by exactly equal amounts of red, green, and blue, neutral areas of the picture
20887 should display three waveforms of roughly equal width/height. If not, the
20888 correction is easy to perform by making level adjustments the three waveforms.
20889 @end table
20890 Default is @code{stack}.
20891
20892 @item components, c
20893 Set which color components to display. Default is 1, which means only luminance
20894 or red color component if input is in RGB colorspace. If is set for example to
20895 7 it will display all 3 (if) available color components.
20896
20897 @item envelope, e
20898 @table @samp
20899 @item none
20900 No envelope, this is default.
20901
20902 @item instant
20903 Instant envelope, minimum and maximum values presented in graph will be easily
20904 visible even with small @code{step} value.
20905
20906 @item peak
20907 Hold minimum and maximum values presented in graph across time. This way you
20908 can still spot out of range values without constantly looking at waveforms.
20909
20910 @item peak+instant
20911 Peak and instant envelope combined together.
20912 @end table
20913
20914 @item filter, f
20915 @table @samp
20916 @item lowpass
20917 No filtering, this is default.
20918
20919 @item flat
20920 Luma and chroma combined together.
20921
20922 @item aflat
20923 Similar as above, but shows difference between blue and red chroma.
20924
20925 @item xflat
20926 Similar as above, but use different colors.
20927
20928 @item yflat
20929 Similar as above, but again with different colors.
20930
20931 @item chroma
20932 Displays only chroma.
20933
20934 @item color
20935 Displays actual color value on waveform.
20936
20937 @item acolor
20938 Similar as above, but with luma showing frequency of chroma values.
20939 @end table
20940
20941 @item graticule, g
20942 Set which graticule to display.
20943
20944 @table @samp
20945 @item none
20946 Do not display graticule.
20947
20948 @item green
20949 Display green graticule showing legal broadcast ranges.
20950
20951 @item orange
20952 Display orange graticule showing legal broadcast ranges.
20953
20954 @item invert
20955 Display invert graticule showing legal broadcast ranges.
20956 @end table
20957
20958 @item opacity, o
20959 Set graticule opacity.
20960
20961 @item flags, fl
20962 Set graticule flags.
20963
20964 @table @samp
20965 @item numbers
20966 Draw numbers above lines. By default enabled.
20967
20968 @item dots
20969 Draw dots instead of lines.
20970 @end table
20971
20972 @item scale, s
20973 Set scale used for displaying graticule.
20974
20975 @table @samp
20976 @item digital
20977 @item millivolts
20978 @item ire
20979 @end table
20980 Default is digital.
20981
20982 @item bgopacity, b
20983 Set background opacity.
20984
20985 @item tint0, t0
20986 @item tint1, t1
20987 Set tint for output.
20988 Only used with lowpass filter and when display is not overlay and input
20989 pixel formats are not RGB.
20990 @end table
20991
20992 @section weave, doubleweave
20993
20994 The @code{weave} takes a field-based video input and join
20995 each two sequential fields into single frame, producing a new double
20996 height clip with half the frame rate and half the frame count.
20997
20998 The @code{doubleweave} works same as @code{weave} but without
20999 halving frame rate and frame count.
21000
21001 It accepts the following option:
21002
21003 @table @option
21004 @item first_field
21005 Set first field. Available values are:
21006
21007 @table @samp
21008 @item top, t
21009 Set the frame as top-field-first.
21010
21011 @item bottom, b
21012 Set the frame as bottom-field-first.
21013 @end table
21014 @end table
21015
21016 @subsection Examples
21017
21018 @itemize
21019 @item
21020 Interlace video using @ref{select} and @ref{separatefields} filter:
21021 @example
21022 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21023 @end example
21024 @end itemize
21025
21026 @section xbr
21027 Apply the xBR high-quality magnification filter which is designed for pixel
21028 art. It follows a set of edge-detection rules, see
21029 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21030
21031 It accepts the following option:
21032
21033 @table @option
21034 @item n
21035 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21036 @code{3xBR} and @code{4} for @code{4xBR}.
21037 Default is @code{3}.
21038 @end table
21039
21040 @section xfade
21041
21042 Apply cross fade from one input video stream to another input video stream.
21043 The cross fade is applied for specified duration.
21044
21045 The filter accepts the following options:
21046
21047 @table @option
21048 @item transition
21049 Set one of available transition effects:
21050
21051 @table @samp
21052 @item custom
21053 @item fade
21054 @item wipeleft
21055 @item wiperight
21056 @item wipeup
21057 @item wipedown
21058 @item slideleft
21059 @item slideright
21060 @item slideup
21061 @item slidedown
21062 @item circlecrop
21063 @item rectcrop
21064 @item distance
21065 @item fadeblack
21066 @item fadewhite
21067 @item radial
21068 @item smoothleft
21069 @item smoothright
21070 @item smoothup
21071 @item smoothdown
21072 @item circleopen
21073 @item circleclose
21074 @item vertopen
21075 @item vertclose
21076 @item horzopen
21077 @item horzclose
21078 @item dissolve
21079 @item pixelize
21080 @item diagtl
21081 @item diagtr
21082 @item diagbl
21083 @item diagbr
21084 @item hlslice
21085 @item hrslice
21086 @item vuslice
21087 @item vdslice
21088 @item hblur
21089 @item fadegrays
21090 @item wipetl
21091 @item wipetr
21092 @item wipebl
21093 @item wipebr
21094 @item squeezeh
21095 @item squeezev
21096 @end table
21097 Default transition effect is fade.
21098
21099 @item duration
21100 Set cross fade duration in seconds.
21101 Default duration is 1 second.
21102
21103 @item offset
21104 Set cross fade start relative to first input stream in seconds.
21105 Default offset is 0.
21106
21107 @item expr
21108 Set expression for custom transition effect.
21109
21110 The expressions can use the following variables and functions:
21111
21112 @table @option
21113 @item X
21114 @item Y
21115 The coordinates of the current sample.
21116
21117 @item W
21118 @item H
21119 The width and height of the image.
21120
21121 @item P
21122 Progress of transition effect.
21123
21124 @item PLANE
21125 Currently processed plane.
21126
21127 @item A
21128 Return value of first input at current location and plane.
21129
21130 @item B
21131 Return value of second input at current location and plane.
21132
21133 @item a0(x, y)
21134 @item a1(x, y)
21135 @item a2(x, y)
21136 @item a3(x, y)
21137 Return the value of the pixel at location (@var{x},@var{y}) of the
21138 first/second/third/fourth component of first input.
21139
21140 @item b0(x, y)
21141 @item b1(x, y)
21142 @item b2(x, y)
21143 @item b3(x, y)
21144 Return the value of the pixel at location (@var{x},@var{y}) of the
21145 first/second/third/fourth component of second input.
21146 @end table
21147 @end table
21148
21149 @subsection Examples
21150
21151 @itemize
21152 @item
21153 Cross fade from one input video to another input video, with fade transition and duration of transition
21154 of 2 seconds starting at offset of 5 seconds:
21155 @example
21156 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21157 @end example
21158 @end itemize
21159
21160 @section xmedian
21161 Pick median pixels from several input videos.
21162
21163 The filter accepts the following options:
21164
21165 @table @option
21166 @item inputs
21167 Set number of inputs.
21168 Default is 3. Allowed range is from 3 to 255.
21169 If number of inputs is even number, than result will be mean value between two median values.
21170
21171 @item planes
21172 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21173
21174 @item percentile
21175 Set median percentile. Default value is @code{0.5}.
21176 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21177 minimum values, and @code{1} maximum values.
21178 @end table
21179
21180 @section xstack
21181 Stack video inputs into custom layout.
21182
21183 All streams must be of same pixel format.
21184
21185 The filter accepts the following options:
21186
21187 @table @option
21188 @item inputs
21189 Set number of input streams. Default is 2.
21190
21191 @item layout
21192 Specify layout of inputs.
21193 This option requires the desired layout configuration to be explicitly set by the user.
21194 This sets position of each video input in output. Each input
21195 is separated by '|'.
21196 The first number represents the column, and the second number represents the row.
21197 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21198 where X is video input from which to take width or height.
21199 Multiple values can be used when separated by '+'. In such
21200 case values are summed together.
21201
21202 Note that if inputs are of different sizes gaps may appear, as not all of
21203 the output video frame will be filled. Similarly, videos can overlap each
21204 other if their position doesn't leave enough space for the full frame of
21205 adjoining videos.
21206
21207 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21208 a layout must be set by the user.
21209
21210 @item shortest
21211 If set to 1, force the output to terminate when the shortest input
21212 terminates. Default value is 0.
21213
21214 @item fill
21215 If set to valid color, all unused pixels will be filled with that color.
21216 By default fill is set to none, so it is disabled.
21217 @end table
21218
21219 @subsection Examples
21220
21221 @itemize
21222 @item
21223 Display 4 inputs into 2x2 grid.
21224
21225 Layout:
21226 @example
21227 input1(0, 0)  | input3(w0, 0)
21228 input2(0, h0) | input4(w0, h0)
21229 @end example
21230
21231 @example
21232 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21233 @end example
21234
21235 Note that if inputs are of different sizes, gaps or overlaps may occur.
21236
21237 @item
21238 Display 4 inputs into 1x4 grid.
21239
21240 Layout:
21241 @example
21242 input1(0, 0)
21243 input2(0, h0)
21244 input3(0, h0+h1)
21245 input4(0, h0+h1+h2)
21246 @end example
21247
21248 @example
21249 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21250 @end example
21251
21252 Note that if inputs are of different widths, unused space will appear.
21253
21254 @item
21255 Display 9 inputs into 3x3 grid.
21256
21257 Layout:
21258 @example
21259 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21260 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21261 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21262 @end example
21263
21264 @example
21265 xstack=inputs=9:layout=0_0|0_h0|0_h0+h1|w0_0|w0_h0|w0_h0+h1|w0+w3_0|w0+w3_h0|w0+w3_h0+h1
21266 @end example
21267
21268 Note that if inputs are of different sizes, gaps or overlaps may occur.
21269
21270 @item
21271 Display 16 inputs into 4x4 grid.
21272
21273 Layout:
21274 @example
21275 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21276 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21277 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21278 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21279 @end example
21280
21281 @example
21282 xstack=inputs=16:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2|w0_0|w0_h0|w0_h0+h1|w0_h0+h1+h2|w0+w4_0|
21283 w0+w4_h0|w0+w4_h0+h1|w0+w4_h0+h1+h2|w0+w4+w8_0|w0+w4+w8_h0|w0+w4+w8_h0+h1|w0+w4+w8_h0+h1+h2
21284 @end example
21285
21286 Note that if inputs are of different sizes, gaps or overlaps may occur.
21287
21288 @end itemize
21289
21290 @anchor{yadif}
21291 @section yadif
21292
21293 Deinterlace the input video ("yadif" means "yet another deinterlacing
21294 filter").
21295
21296 It accepts the following parameters:
21297
21298
21299 @table @option
21300
21301 @item mode
21302 The interlacing mode to adopt. It accepts one of the following values:
21303
21304 @table @option
21305 @item 0, send_frame
21306 Output one frame for each frame.
21307 @item 1, send_field
21308 Output one frame for each field.
21309 @item 2, send_frame_nospatial
21310 Like @code{send_frame}, but it skips the spatial interlacing check.
21311 @item 3, send_field_nospatial
21312 Like @code{send_field}, but it skips the spatial interlacing check.
21313 @end table
21314
21315 The default value is @code{send_frame}.
21316
21317 @item parity
21318 The picture field parity assumed for the input interlaced video. It accepts one
21319 of the following values:
21320
21321 @table @option
21322 @item 0, tff
21323 Assume the top field is first.
21324 @item 1, bff
21325 Assume the bottom field is first.
21326 @item -1, auto
21327 Enable automatic detection of field parity.
21328 @end table
21329
21330 The default value is @code{auto}.
21331 If the interlacing is unknown or the decoder does not export this information,
21332 top field first will be assumed.
21333
21334 @item deint
21335 Specify which frames to deinterlace. Accepts one of the following
21336 values:
21337
21338 @table @option
21339 @item 0, all
21340 Deinterlace all frames.
21341 @item 1, interlaced
21342 Only deinterlace frames marked as interlaced.
21343 @end table
21344
21345 The default value is @code{all}.
21346 @end table
21347
21348 @section yadif_cuda
21349
21350 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21351 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21352 and/or nvenc.
21353
21354 It accepts the following parameters:
21355
21356
21357 @table @option
21358
21359 @item mode
21360 The interlacing mode to adopt. It accepts one of the following values:
21361
21362 @table @option
21363 @item 0, send_frame
21364 Output one frame for each frame.
21365 @item 1, send_field
21366 Output one frame for each field.
21367 @item 2, send_frame_nospatial
21368 Like @code{send_frame}, but it skips the spatial interlacing check.
21369 @item 3, send_field_nospatial
21370 Like @code{send_field}, but it skips the spatial interlacing check.
21371 @end table
21372
21373 The default value is @code{send_frame}.
21374
21375 @item parity
21376 The picture field parity assumed for the input interlaced video. It accepts one
21377 of the following values:
21378
21379 @table @option
21380 @item 0, tff
21381 Assume the top field is first.
21382 @item 1, bff
21383 Assume the bottom field is first.
21384 @item -1, auto
21385 Enable automatic detection of field parity.
21386 @end table
21387
21388 The default value is @code{auto}.
21389 If the interlacing is unknown or the decoder does not export this information,
21390 top field first will be assumed.
21391
21392 @item deint
21393 Specify which frames to deinterlace. Accepts one of the following
21394 values:
21395
21396 @table @option
21397 @item 0, all
21398 Deinterlace all frames.
21399 @item 1, interlaced
21400 Only deinterlace frames marked as interlaced.
21401 @end table
21402
21403 The default value is @code{all}.
21404 @end table
21405
21406 @section yaepblur
21407
21408 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21409 The algorithm is described in
21410 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21411
21412 It accepts the following parameters:
21413
21414 @table @option
21415 @item radius, r
21416 Set the window radius. Default value is 3.
21417
21418 @item planes, p
21419 Set which planes to filter. Default is only the first plane.
21420
21421 @item sigma, s
21422 Set blur strength. Default value is 128.
21423 @end table
21424
21425 @subsection Commands
21426 This filter supports same @ref{commands} as options.
21427
21428 @section zoompan
21429
21430 Apply Zoom & Pan effect.
21431
21432 This filter accepts the following options:
21433
21434 @table @option
21435 @item zoom, z
21436 Set the zoom expression. Range is 1-10. Default is 1.
21437
21438 @item x
21439 @item y
21440 Set the x and y expression. Default is 0.
21441
21442 @item d
21443 Set the duration expression in number of frames.
21444 This sets for how many number of frames effect will last for
21445 single input image.
21446
21447 @item s
21448 Set the output image size, default is 'hd720'.
21449
21450 @item fps
21451 Set the output frame rate, default is '25'.
21452 @end table
21453
21454 Each expression can contain the following constants:
21455
21456 @table @option
21457 @item in_w, iw
21458 Input width.
21459
21460 @item in_h, ih
21461 Input height.
21462
21463 @item out_w, ow
21464 Output width.
21465
21466 @item out_h, oh
21467 Output height.
21468
21469 @item in
21470 Input frame count.
21471
21472 @item on
21473 Output frame count.
21474
21475 @item in_time, it
21476 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21477
21478 @item out_time, time, ot
21479 The output timestamp expressed in seconds.
21480
21481 @item x
21482 @item y
21483 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21484 for current input frame.
21485
21486 @item px
21487 @item py
21488 'x' and 'y' of last output frame of previous input frame or 0 when there was
21489 not yet such frame (first input frame).
21490
21491 @item zoom
21492 Last calculated zoom from 'z' expression for current input frame.
21493
21494 @item pzoom
21495 Last calculated zoom of last output frame of previous input frame.
21496
21497 @item duration
21498 Number of output frames for current input frame. Calculated from 'd' expression
21499 for each input frame.
21500
21501 @item pduration
21502 number of output frames created for previous input frame
21503
21504 @item a
21505 Rational number: input width / input height
21506
21507 @item sar
21508 sample aspect ratio
21509
21510 @item dar
21511 display aspect ratio
21512
21513 @end table
21514
21515 @subsection Examples
21516
21517 @itemize
21518 @item
21519 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21520 @example
21521 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
21522 @end example
21523
21524 @item
21525 Zoom in up to 1.5x and pan always at center of picture:
21526 @example
21527 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21528 @end example
21529
21530 @item
21531 Same as above but without pausing:
21532 @example
21533 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21534 @end example
21535
21536 @item
21537 Zoom in 2x into center of picture only for the first second of the input video:
21538 @example
21539 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21540 @end example
21541
21542 @end itemize
21543
21544 @anchor{zscale}
21545 @section zscale
21546 Scale (resize) the input video, using the z.lib library:
21547 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21548 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21549
21550 The zscale filter forces the output display aspect ratio to be the same
21551 as the input, by changing the output sample aspect ratio.
21552
21553 If the input image format is different from the format requested by
21554 the next filter, the zscale filter will convert the input to the
21555 requested format.
21556
21557 @subsection Options
21558 The filter accepts the following options.
21559
21560 @table @option
21561 @item width, w
21562 @item height, h
21563 Set the output video dimension expression. Default value is the input
21564 dimension.
21565
21566 If the @var{width} or @var{w} value is 0, the input width is used for
21567 the output. If the @var{height} or @var{h} value is 0, the input height
21568 is used for the output.
21569
21570 If one and only one of the values is -n with n >= 1, the zscale filter
21571 will use a value that maintains the aspect ratio of the input image,
21572 calculated from the other specified dimension. After that it will,
21573 however, make sure that the calculated dimension is divisible by n and
21574 adjust the value if necessary.
21575
21576 If both values are -n with n >= 1, the behavior will be identical to
21577 both values being set to 0 as previously detailed.
21578
21579 See below for the list of accepted constants for use in the dimension
21580 expression.
21581
21582 @item size, s
21583 Set the video size. For the syntax of this option, check the
21584 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21585
21586 @item dither, d
21587 Set the dither type.
21588
21589 Possible values are:
21590 @table @var
21591 @item none
21592 @item ordered
21593 @item random
21594 @item error_diffusion
21595 @end table
21596
21597 Default is none.
21598
21599 @item filter, f
21600 Set the resize filter type.
21601
21602 Possible values are:
21603 @table @var
21604 @item point
21605 @item bilinear
21606 @item bicubic
21607 @item spline16
21608 @item spline36
21609 @item lanczos
21610 @end table
21611
21612 Default is bilinear.
21613
21614 @item range, r
21615 Set the color range.
21616
21617 Possible values are:
21618 @table @var
21619 @item input
21620 @item limited
21621 @item full
21622 @end table
21623
21624 Default is same as input.
21625
21626 @item primaries, p
21627 Set the color primaries.
21628
21629 Possible values are:
21630 @table @var
21631 @item input
21632 @item 709
21633 @item unspecified
21634 @item 170m
21635 @item 240m
21636 @item 2020
21637 @end table
21638
21639 Default is same as input.
21640
21641 @item transfer, t
21642 Set the transfer characteristics.
21643
21644 Possible values are:
21645 @table @var
21646 @item input
21647 @item 709
21648 @item unspecified
21649 @item 601
21650 @item linear
21651 @item 2020_10
21652 @item 2020_12
21653 @item smpte2084
21654 @item iec61966-2-1
21655 @item arib-std-b67
21656 @end table
21657
21658 Default is same as input.
21659
21660 @item matrix, m
21661 Set the colorspace matrix.
21662
21663 Possible value are:
21664 @table @var
21665 @item input
21666 @item 709
21667 @item unspecified
21668 @item 470bg
21669 @item 170m
21670 @item 2020_ncl
21671 @item 2020_cl
21672 @end table
21673
21674 Default is same as input.
21675
21676 @item rangein, rin
21677 Set the input color range.
21678
21679 Possible values are:
21680 @table @var
21681 @item input
21682 @item limited
21683 @item full
21684 @end table
21685
21686 Default is same as input.
21687
21688 @item primariesin, pin
21689 Set the input color primaries.
21690
21691 Possible values are:
21692 @table @var
21693 @item input
21694 @item 709
21695 @item unspecified
21696 @item 170m
21697 @item 240m
21698 @item 2020
21699 @end table
21700
21701 Default is same as input.
21702
21703 @item transferin, tin
21704 Set the input transfer characteristics.
21705
21706 Possible values are:
21707 @table @var
21708 @item input
21709 @item 709
21710 @item unspecified
21711 @item 601
21712 @item linear
21713 @item 2020_10
21714 @item 2020_12
21715 @end table
21716
21717 Default is same as input.
21718
21719 @item matrixin, min
21720 Set the input colorspace matrix.
21721
21722 Possible value are:
21723 @table @var
21724 @item input
21725 @item 709
21726 @item unspecified
21727 @item 470bg
21728 @item 170m
21729 @item 2020_ncl
21730 @item 2020_cl
21731 @end table
21732
21733 @item chromal, c
21734 Set the output chroma location.
21735
21736 Possible values are:
21737 @table @var
21738 @item input
21739 @item left
21740 @item center
21741 @item topleft
21742 @item top
21743 @item bottomleft
21744 @item bottom
21745 @end table
21746
21747 @item chromalin, cin
21748 Set the input chroma location.
21749
21750 Possible values are:
21751 @table @var
21752 @item input
21753 @item left
21754 @item center
21755 @item topleft
21756 @item top
21757 @item bottomleft
21758 @item bottom
21759 @end table
21760
21761 @item npl
21762 Set the nominal peak luminance.
21763 @end table
21764
21765 The values of the @option{w} and @option{h} options are expressions
21766 containing the following constants:
21767
21768 @table @var
21769 @item in_w
21770 @item in_h
21771 The input width and height
21772
21773 @item iw
21774 @item ih
21775 These are the same as @var{in_w} and @var{in_h}.
21776
21777 @item out_w
21778 @item out_h
21779 The output (scaled) width and height
21780
21781 @item ow
21782 @item oh
21783 These are the same as @var{out_w} and @var{out_h}
21784
21785 @item a
21786 The same as @var{iw} / @var{ih}
21787
21788 @item sar
21789 input sample aspect ratio
21790
21791 @item dar
21792 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
21793
21794 @item hsub
21795 @item vsub
21796 horizontal and vertical input chroma subsample values. For example for the
21797 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21798
21799 @item ohsub
21800 @item ovsub
21801 horizontal and vertical output chroma subsample values. For example for the
21802 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21803 @end table
21804
21805 @subsection Commands
21806
21807 This filter supports the following commands:
21808 @table @option
21809 @item width, w
21810 @item height, h
21811 Set the output video dimension expression.
21812 The command accepts the same syntax of the corresponding option.
21813
21814 If the specified expression is not valid, it is kept at its current
21815 value.
21816 @end table
21817
21818 @c man end VIDEO FILTERS
21819
21820 @chapter OpenCL Video Filters
21821 @c man begin OPENCL VIDEO FILTERS
21822
21823 Below is a description of the currently available OpenCL video filters.
21824
21825 To enable compilation of these filters you need to configure FFmpeg with
21826 @code{--enable-opencl}.
21827
21828 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
21829 @table @option
21830
21831 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
21832 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
21833 given device parameters.
21834
21835 @item -filter_hw_device @var{name}
21836 Pass the hardware device called @var{name} to all filters in any filter graph.
21837
21838 @end table
21839
21840 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
21841
21842 @itemize
21843 @item
21844 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
21845 @example
21846 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
21847 @end example
21848 @end itemize
21849
21850 Since OpenCL filters are not able to access frame data in normal memory, all frame data needs to be uploaded(@ref{hwupload}) to hardware surfaces connected to the appropriate device before being used and then downloaded(@ref{hwdownload}) back to normal memory. Note that @ref{hwupload} will upload to a surface with the same layout as the software frame, so it may be necessary to add a @ref{format} filter immediately before to get the input into the right format and @ref{hwdownload} does not support all formats on the output - it may be necessary to insert an additional @ref{format} filter immediately following in the graph to get the output in a supported format.
21851
21852 @section avgblur_opencl
21853
21854 Apply average blur filter.
21855
21856 The filter accepts the following options:
21857
21858 @table @option
21859 @item sizeX
21860 Set horizontal radius size.
21861 Range is @code{[1, 1024]} and default value is @code{1}.
21862
21863 @item planes
21864 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21865
21866 @item sizeY
21867 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
21868 @end table
21869
21870 @subsection Example
21871
21872 @itemize
21873 @item
21874 Apply average blur filter with horizontal and vertical size of 3, setting each pixel of the output to the average value of the 7x7 region centered on it in the input. For pixels on the edges of the image, the region does not extend beyond the image boundaries, and so out-of-range coordinates are not used in the calculations.
21875 @example
21876 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
21877 @end example
21878 @end itemize
21879
21880 @section boxblur_opencl
21881
21882 Apply a boxblur algorithm to the input video.
21883
21884 It accepts the following parameters:
21885
21886 @table @option
21887
21888 @item luma_radius, lr
21889 @item luma_power, lp
21890 @item chroma_radius, cr
21891 @item chroma_power, cp
21892 @item alpha_radius, ar
21893 @item alpha_power, ap
21894
21895 @end table
21896
21897 A description of the accepted options follows.
21898
21899 @table @option
21900 @item luma_radius, lr
21901 @item chroma_radius, cr
21902 @item alpha_radius, ar
21903 Set an expression for the box radius in pixels used for blurring the
21904 corresponding input plane.
21905
21906 The radius value must be a non-negative number, and must not be
21907 greater than the value of the expression @code{min(w,h)/2} for the
21908 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
21909 planes.
21910
21911 Default value for @option{luma_radius} is "2". If not specified,
21912 @option{chroma_radius} and @option{alpha_radius} default to the
21913 corresponding value set for @option{luma_radius}.
21914
21915 The expressions can contain the following constants:
21916 @table @option
21917 @item w
21918 @item h
21919 The input width and height in pixels.
21920
21921 @item cw
21922 @item ch
21923 The input chroma image width and height in pixels.
21924
21925 @item hsub
21926 @item vsub
21927 The horizontal and vertical chroma subsample values. For example, for the
21928 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21929 @end table
21930
21931 @item luma_power, lp
21932 @item chroma_power, cp
21933 @item alpha_power, ap
21934 Specify how many times the boxblur filter is applied to the
21935 corresponding plane.
21936
21937 Default value for @option{luma_power} is 2. If not specified,
21938 @option{chroma_power} and @option{alpha_power} default to the
21939 corresponding value set for @option{luma_power}.
21940
21941 A value of 0 will disable the effect.
21942 @end table
21943
21944 @subsection Examples
21945
21946 Apply boxblur filter, setting each pixel of the output to the average value of box-radiuses @var{luma_radius}, @var{chroma_radius}, @var{alpha_radius} for each plane respectively. The filter will apply @var{luma_power}, @var{chroma_power}, @var{alpha_power} times onto the corresponding plane. For pixels on the edges of the image, the radius does not extend beyond the image boundaries, and so out-of-range coordinates are not used in the calculations.
21947
21948 @itemize
21949 @item
21950 Apply a boxblur filter with the luma, chroma, and alpha radius
21951 set to 2 and luma, chroma, and alpha power set to 3. The filter will run 3 times with box-radius set to 2 for every plane of the image.
21952 @example
21953 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21954 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21955 @end example
21956
21957 @item
21958 Apply a boxblur filter with luma radius set to 2, luma_power to 1, chroma_radius to 4, chroma_power to 5, alpha_radius to 3 and alpha_power to 7.
21959
21960 For the luma plane, a 2x2 box radius will be run once.
21961
21962 For the chroma plane, a 4x4 box radius will be run 5 times.
21963
21964 For the alpha plane, a 3x3 box radius will be run 7 times.
21965 @example
21966 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21967 @end example
21968 @end itemize
21969
21970 @section colorkey_opencl
21971 RGB colorspace color keying.
21972
21973 The filter accepts the following options:
21974
21975 @table @option
21976 @item color
21977 The color which will be replaced with transparency.
21978
21979 @item similarity
21980 Similarity percentage with the key color.
21981
21982 0.01 matches only the exact key color, while 1.0 matches everything.
21983
21984 @item blend
21985 Blend percentage.
21986
21987 0.0 makes pixels either fully transparent, or not transparent at all.
21988
21989 Higher values result in semi-transparent pixels, with a higher transparency
21990 the more similar the pixels color is to the key color.
21991 @end table
21992
21993 @subsection Examples
21994
21995 @itemize
21996 @item
21997 Make every semi-green pixel in the input transparent with some slight blending:
21998 @example
21999 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22000 @end example
22001 @end itemize
22002
22003 @section convolution_opencl
22004
22005 Apply convolution of 3x3, 5x5, 7x7 matrix.
22006
22007 The filter accepts the following options:
22008
22009 @table @option
22010 @item 0m
22011 @item 1m
22012 @item 2m
22013 @item 3m
22014 Set matrix for each plane.
22015 Matrix is sequence of 9, 25 or 49 signed numbers.
22016 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22017
22018 @item 0rdiv
22019 @item 1rdiv
22020 @item 2rdiv
22021 @item 3rdiv
22022 Set multiplier for calculated value for each plane.
22023 If unset or 0, it will be sum of all matrix elements.
22024 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22025
22026 @item 0bias
22027 @item 1bias
22028 @item 2bias
22029 @item 3bias
22030 Set bias for each plane. This value is added to the result of the multiplication.
22031 Useful for making the overall image brighter or darker.
22032 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22033
22034 @end table
22035
22036 @subsection Examples
22037
22038 @itemize
22039 @item
22040 Apply sharpen:
22041 @example
22042 -i INPUT -vf "hwupload, convolution_opencl=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, hwdownload" OUTPUT
22043 @end example
22044
22045 @item
22046 Apply blur:
22047 @example
22048 -i INPUT -vf "hwupload, convolution_opencl=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, hwdownload" OUTPUT
22049 @end example
22050
22051 @item
22052 Apply edge enhance:
22053 @example
22054 -i INPUT -vf "hwupload, convolution_opencl=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, hwdownload" OUTPUT
22055 @end example
22056
22057 @item
22058 Apply edge detect:
22059 @example
22060 -i INPUT -vf "hwupload, convolution_opencl=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, hwdownload" OUTPUT
22061 @end example
22062
22063 @item
22064 Apply laplacian edge detector which includes diagonals:
22065 @example
22066 -i INPUT -vf "hwupload, convolution_opencl=1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:5:5:5:1:0:128:128:0, hwdownload" OUTPUT
22067 @end example
22068
22069 @item
22070 Apply emboss:
22071 @example
22072 -i INPUT -vf "hwupload, convolution_opencl=-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, hwdownload" OUTPUT
22073 @end example
22074 @end itemize
22075
22076 @section erosion_opencl
22077
22078 Apply erosion effect to the video.
22079
22080 This filter replaces the pixel by the local(3x3) minimum.
22081
22082 It accepts the following options:
22083
22084 @table @option
22085 @item threshold0
22086 @item threshold1
22087 @item threshold2
22088 @item threshold3
22089 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22090 If @code{0}, plane will remain unchanged.
22091
22092 @item coordinates
22093 Flag which specifies the pixel to refer to.
22094 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22095
22096 Flags to local 3x3 coordinates region centered on @code{x}:
22097
22098     1 2 3
22099
22100     4 x 5
22101
22102     6 7 8
22103 @end table
22104
22105 @subsection Example
22106
22107 @itemize
22108 @item
22109 Apply erosion filter with threshold0 set to 30, threshold1 set 40, threshold2 set to 50 and coordinates set to 231, setting each pixel of the output to the local minimum between pixels: 1, 2, 3, 6, 7, 8 of the 3x3 region centered on it in the input. If the difference between input pixel and local minimum is more then threshold of the corresponding plane, output pixel will be set to input pixel - threshold of corresponding plane.
22110 @example
22111 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22112 @end example
22113 @end itemize
22114
22115 @section deshake_opencl
22116 Feature-point based video stabilization filter.
22117
22118 The filter accepts the following options:
22119
22120 @table @option
22121 @item tripod
22122 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22123
22124 @item debug
22125 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22126
22127 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22128
22129 Viewing point matches in the output video is only supported for RGB input.
22130
22131 Defaults to @code{0}.
22132
22133 @item adaptive_crop
22134 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22135
22136 Defaults to @code{1}.
22137
22138 @item refine_features
22139 Whether or not feature points should be refined at a sub-pixel level.
22140
22141 This can be turned off for a slight performance gain at the cost of precision.
22142
22143 Defaults to @code{1}.
22144
22145 @item smooth_strength
22146 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22147
22148 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22149
22150 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22151
22152 Defaults to @code{0.0}.
22153
22154 @item smooth_window_multiplier
22155 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22156
22157 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22158
22159 Acceptable values range from @code{0.1} to @code{10.0}.
22160
22161 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22162 potentially improving smoothness, but also increase latency and memory usage.
22163
22164 Defaults to @code{2.0}.
22165
22166 @end table
22167
22168 @subsection Examples
22169
22170 @itemize
22171 @item
22172 Stabilize a video with a fixed, medium smoothing strength:
22173 @example
22174 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22175 @end example
22176
22177 @item
22178 Stabilize a video with debugging (both in console and in rendered video):
22179 @example
22180 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22181 @end example
22182 @end itemize
22183
22184 @section dilation_opencl
22185
22186 Apply dilation effect to the video.
22187
22188 This filter replaces the pixel by the local(3x3) maximum.
22189
22190 It accepts the following options:
22191
22192 @table @option
22193 @item threshold0
22194 @item threshold1
22195 @item threshold2
22196 @item threshold3
22197 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22198 If @code{0}, plane will remain unchanged.
22199
22200 @item coordinates
22201 Flag which specifies the pixel to refer to.
22202 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22203
22204 Flags to local 3x3 coordinates region centered on @code{x}:
22205
22206     1 2 3
22207
22208     4 x 5
22209
22210     6 7 8
22211 @end table
22212
22213 @subsection Example
22214
22215 @itemize
22216 @item
22217 Apply dilation filter with threshold0 set to 30, threshold1 set 40, threshold2 set to 50 and coordinates set to 231, setting each pixel of the output to the local maximum between pixels: 1, 2, 3, 6, 7, 8 of the 3x3 region centered on it in the input. If the difference between input pixel and local maximum is more then threshold of the corresponding plane, output pixel will be set to input pixel + threshold of corresponding plane.
22218 @example
22219 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22220 @end example
22221 @end itemize
22222
22223 @section nlmeans_opencl
22224
22225 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22226
22227 @section overlay_opencl
22228
22229 Overlay one video on top of another.
22230
22231 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22232 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22233
22234 The filter accepts the following options:
22235
22236 @table @option
22237
22238 @item x
22239 Set the x coordinate of the overlaid video on the main video.
22240 Default value is @code{0}.
22241
22242 @item y
22243 Set the y coordinate of the overlaid video on the main video.
22244 Default value is @code{0}.
22245
22246 @end table
22247
22248 @subsection Examples
22249
22250 @itemize
22251 @item
22252 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22253 @example
22254 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22255 @end example
22256 @item
22257 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22258 @example
22259 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22260 @end example
22261
22262 @end itemize
22263
22264 @section pad_opencl
22265
22266 Add paddings to the input image, and place the original input at the
22267 provided @var{x}, @var{y} coordinates.
22268
22269 It accepts the following options:
22270
22271 @table @option
22272 @item width, w
22273 @item height, h
22274 Specify an expression for the size of the output image with the
22275 paddings added. If the value for @var{width} or @var{height} is 0, the
22276 corresponding input size is used for the output.
22277
22278 The @var{width} expression can reference the value set by the
22279 @var{height} expression, and vice versa.
22280
22281 The default value of @var{width} and @var{height} is 0.
22282
22283 @item x
22284 @item y
22285 Specify the offsets to place the input image at within the padded area,
22286 with respect to the top/left border of the output image.
22287
22288 The @var{x} expression can reference the value set by the @var{y}
22289 expression, and vice versa.
22290
22291 The default value of @var{x} and @var{y} is 0.
22292
22293 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22294 so the input image is centered on the padded area.
22295
22296 @item color
22297 Specify the color of the padded area. For the syntax of this option,
22298 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22299 manual,ffmpeg-utils}.
22300
22301 @item aspect
22302 Pad to an aspect instead to a resolution.
22303 @end table
22304
22305 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22306 options are expressions containing the following constants:
22307
22308 @table @option
22309 @item in_w
22310 @item in_h
22311 The input video width and height.
22312
22313 @item iw
22314 @item ih
22315 These are the same as @var{in_w} and @var{in_h}.
22316
22317 @item out_w
22318 @item out_h
22319 The output width and height (the size of the padded area), as
22320 specified by the @var{width} and @var{height} expressions.
22321
22322 @item ow
22323 @item oh
22324 These are the same as @var{out_w} and @var{out_h}.
22325
22326 @item x
22327 @item y
22328 The x and y offsets as specified by the @var{x} and @var{y}
22329 expressions, or NAN if not yet specified.
22330
22331 @item a
22332 same as @var{iw} / @var{ih}
22333
22334 @item sar
22335 input sample aspect ratio
22336
22337 @item dar
22338 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22339 @end table
22340
22341 @section prewitt_opencl
22342
22343 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22344
22345 The filter accepts the following option:
22346
22347 @table @option
22348 @item planes
22349 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22350
22351 @item scale
22352 Set value which will be multiplied with filtered result.
22353 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22354
22355 @item delta
22356 Set value which will be added to filtered result.
22357 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22358 @end table
22359
22360 @subsection Example
22361
22362 @itemize
22363 @item
22364 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22365 @example
22366 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22367 @end example
22368 @end itemize
22369
22370 @anchor{program_opencl}
22371 @section program_opencl
22372
22373 Filter video using an OpenCL program.
22374
22375 @table @option
22376
22377 @item source
22378 OpenCL program source file.
22379
22380 @item kernel
22381 Kernel name in program.
22382
22383 @item inputs
22384 Number of inputs to the filter.  Defaults to 1.
22385
22386 @item size, s
22387 Size of output frames.  Defaults to the same as the first input.
22388
22389 @end table
22390
22391 The @code{program_opencl} filter also supports the @ref{framesync} options.
22392
22393 The program source file must contain a kernel function with the given name,
22394 which will be run once for each plane of the output.  Each run on a plane
22395 gets enqueued as a separate 2D global NDRange with one work-item for each
22396 pixel to be generated.  The global ID offset for each work-item is therefore
22397 the coordinates of a pixel in the destination image.
22398
22399 The kernel function needs to take the following arguments:
22400 @itemize
22401 @item
22402 Destination image, @var{__write_only image2d_t}.
22403
22404 This image will become the output; the kernel should write all of it.
22405 @item
22406 Frame index, @var{unsigned int}.
22407
22408 This is a counter starting from zero and increasing by one for each frame.
22409 @item
22410 Source images, @var{__read_only image2d_t}.
22411
22412 These are the most recent images on each input.  The kernel may read from
22413 them to generate the output, but they can't be written to.
22414 @end itemize
22415
22416 Example programs:
22417
22418 @itemize
22419 @item
22420 Copy the input to the output (output must be the same size as the input).
22421 @verbatim
22422 __kernel void copy(__write_only image2d_t destination,
22423                    unsigned int index,
22424                    __read_only  image2d_t source)
22425 {
22426     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22427
22428     int2 location = (int2)(get_global_id(0), get_global_id(1));
22429
22430     float4 value = read_imagef(source, sampler, location);
22431
22432     write_imagef(destination, location, value);
22433 }
22434 @end verbatim
22435
22436 @item
22437 Apply a simple transformation, rotating the input by an amount increasing
22438 with the index counter.  Pixel values are linearly interpolated by the
22439 sampler, and the output need not have the same dimensions as the input.
22440 @verbatim
22441 __kernel void rotate_image(__write_only image2d_t dst,
22442                            unsigned int index,
22443                            __read_only  image2d_t src)
22444 {
22445     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22446                                CLK_FILTER_LINEAR);
22447
22448     float angle = (float)index / 100.0f;
22449
22450     float2 dst_dim = convert_float2(get_image_dim(dst));
22451     float2 src_dim = convert_float2(get_image_dim(src));
22452
22453     float2 dst_cen = dst_dim / 2.0f;
22454     float2 src_cen = src_dim / 2.0f;
22455
22456     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22457
22458     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22459     float2 src_pos = {
22460         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22461         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22462     };
22463     src_pos = src_pos * src_dim / dst_dim;
22464
22465     float2 src_loc = src_pos + src_cen;
22466
22467     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22468         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22469         write_imagef(dst, dst_loc, 0.5f);
22470     else
22471         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22472 }
22473 @end verbatim
22474
22475 @item
22476 Blend two inputs together, with the amount of each input used varying
22477 with the index counter.
22478 @verbatim
22479 __kernel void blend_images(__write_only image2d_t dst,
22480                            unsigned int index,
22481                            __read_only  image2d_t src1,
22482                            __read_only  image2d_t src2)
22483 {
22484     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22485                                CLK_FILTER_LINEAR);
22486
22487     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22488
22489     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22490     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22491     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22492
22493     float4 val1 = read_imagef(src1, sampler, src1_loc);
22494     float4 val2 = read_imagef(src2, sampler, src2_loc);
22495
22496     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22497 }
22498 @end verbatim
22499
22500 @end itemize
22501
22502 @section roberts_opencl
22503 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22504
22505 The filter accepts the following option:
22506
22507 @table @option
22508 @item planes
22509 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22510
22511 @item scale
22512 Set value which will be multiplied with filtered result.
22513 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22514
22515 @item delta
22516 Set value which will be added to filtered result.
22517 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22518 @end table
22519
22520 @subsection Example
22521
22522 @itemize
22523 @item
22524 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22525 @example
22526 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22527 @end example
22528 @end itemize
22529
22530 @section sobel_opencl
22531
22532 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22533
22534 The filter accepts the following option:
22535
22536 @table @option
22537 @item planes
22538 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22539
22540 @item scale
22541 Set value which will be multiplied with filtered result.
22542 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22543
22544 @item delta
22545 Set value which will be added to filtered result.
22546 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22547 @end table
22548
22549 @subsection Example
22550
22551 @itemize
22552 @item
22553 Apply sobel operator with scale set to 2 and delta set to 10
22554 @example
22555 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22556 @end example
22557 @end itemize
22558
22559 @section tonemap_opencl
22560
22561 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22562
22563 It accepts the following parameters:
22564
22565 @table @option
22566 @item tonemap
22567 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22568
22569 @item param
22570 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22571
22572 @item desat
22573 Apply desaturation for highlights that exceed this level of brightness. The
22574 higher the parameter, the more color information will be preserved. This
22575 setting helps prevent unnaturally blown-out colors for super-highlights, by
22576 (smoothly) turning into white instead. This makes images feel more natural,
22577 at the cost of reducing information about out-of-range colors.
22578
22579 The default value is 0.5, and the algorithm here is a little different from
22580 the cpu version tonemap currently. A setting of 0.0 disables this option.
22581
22582 @item threshold
22583 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22584 is used to detect whether the scene has changed or not. If the distance between
22585 the current frame average brightness and the current running average exceeds
22586 a threshold value, we would re-calculate scene average and peak brightness.
22587 The default value is 0.2.
22588
22589 @item format
22590 Specify the output pixel format.
22591
22592 Currently supported formats are:
22593 @table @var
22594 @item p010
22595 @item nv12
22596 @end table
22597
22598 @item range, r
22599 Set the output color range.
22600
22601 Possible values are:
22602 @table @var
22603 @item tv/mpeg
22604 @item pc/jpeg
22605 @end table
22606
22607 Default is same as input.
22608
22609 @item primaries, p
22610 Set the output color primaries.
22611
22612 Possible values are:
22613 @table @var
22614 @item bt709
22615 @item bt2020
22616 @end table
22617
22618 Default is same as input.
22619
22620 @item transfer, t
22621 Set the output transfer characteristics.
22622
22623 Possible values are:
22624 @table @var
22625 @item bt709
22626 @item bt2020
22627 @end table
22628
22629 Default is bt709.
22630
22631 @item matrix, m
22632 Set the output colorspace matrix.
22633
22634 Possible value are:
22635 @table @var
22636 @item bt709
22637 @item bt2020
22638 @end table
22639
22640 Default is same as input.
22641
22642 @end table
22643
22644 @subsection Example
22645
22646 @itemize
22647 @item
22648 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22649 @example
22650 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22651 @end example
22652 @end itemize
22653
22654 @section unsharp_opencl
22655
22656 Sharpen or blur the input video.
22657
22658 It accepts the following parameters:
22659
22660 @table @option
22661 @item luma_msize_x, lx
22662 Set the luma matrix horizontal size.
22663 Range is @code{[1, 23]} and default value is @code{5}.
22664
22665 @item luma_msize_y, ly
22666 Set the luma matrix vertical size.
22667 Range is @code{[1, 23]} and default value is @code{5}.
22668
22669 @item luma_amount, la
22670 Set the luma effect strength.
22671 Range is @code{[-10, 10]} and default value is @code{1.0}.
22672
22673 Negative values will blur the input video, while positive values will
22674 sharpen it, a value of zero will disable the effect.
22675
22676 @item chroma_msize_x, cx
22677 Set the chroma matrix horizontal size.
22678 Range is @code{[1, 23]} and default value is @code{5}.
22679
22680 @item chroma_msize_y, cy
22681 Set the chroma matrix vertical size.
22682 Range is @code{[1, 23]} and default value is @code{5}.
22683
22684 @item chroma_amount, ca
22685 Set the chroma effect strength.
22686 Range is @code{[-10, 10]} and default value is @code{0.0}.
22687
22688 Negative values will blur the input video, while positive values will
22689 sharpen it, a value of zero will disable the effect.
22690
22691 @end table
22692
22693 All parameters are optional and default to the equivalent of the
22694 string '5:5:1.0:5:5:0.0'.
22695
22696 @subsection Examples
22697
22698 @itemize
22699 @item
22700 Apply strong luma sharpen effect:
22701 @example
22702 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22703 @end example
22704
22705 @item
22706 Apply a strong blur of both luma and chroma parameters:
22707 @example
22708 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22709 @end example
22710 @end itemize
22711
22712 @section xfade_opencl
22713
22714 Cross fade two videos with custom transition effect by using OpenCL.
22715
22716 It accepts the following options:
22717
22718 @table @option
22719 @item transition
22720 Set one of possible transition effects.
22721
22722 @table @option
22723 @item custom
22724 Select custom transition effect, the actual transition description
22725 will be picked from source and kernel options.
22726
22727 @item fade
22728 @item wipeleft
22729 @item wiperight
22730 @item wipeup
22731 @item wipedown
22732 @item slideleft
22733 @item slideright
22734 @item slideup
22735 @item slidedown
22736
22737 Default transition is fade.
22738 @end table
22739
22740 @item source
22741 OpenCL program source file for custom transition.
22742
22743 @item kernel
22744 Set name of kernel to use for custom transition from program source file.
22745
22746 @item duration
22747 Set duration of video transition.
22748
22749 @item offset
22750 Set time of start of transition relative to first video.
22751 @end table
22752
22753 The program source file must contain a kernel function with the given name,
22754 which will be run once for each plane of the output.  Each run on a plane
22755 gets enqueued as a separate 2D global NDRange with one work-item for each
22756 pixel to be generated.  The global ID offset for each work-item is therefore
22757 the coordinates of a pixel in the destination image.
22758
22759 The kernel function needs to take the following arguments:
22760 @itemize
22761 @item
22762 Destination image, @var{__write_only image2d_t}.
22763
22764 This image will become the output; the kernel should write all of it.
22765
22766 @item
22767 First Source image, @var{__read_only image2d_t}.
22768 Second Source image, @var{__read_only image2d_t}.
22769
22770 These are the most recent images on each input.  The kernel may read from
22771 them to generate the output, but they can't be written to.
22772
22773 @item
22774 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22775 @end itemize
22776
22777 Example programs:
22778
22779 @itemize
22780 @item
22781 Apply dots curtain transition effect:
22782 @verbatim
22783 __kernel void blend_images(__write_only image2d_t dst,
22784                            __read_only  image2d_t src1,
22785                            __read_only  image2d_t src2,
22786                            float progress)
22787 {
22788     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22789                                CLK_FILTER_LINEAR);
22790     int2  p = (int2)(get_global_id(0), get_global_id(1));
22791     float2 rp = (float2)(get_global_id(0), get_global_id(1));
22792     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
22793     rp = rp / dim;
22794
22795     float2 dots = (float2)(20.0, 20.0);
22796     float2 center = (float2)(0,0);
22797     float2 unused;
22798
22799     float4 val1 = read_imagef(src1, sampler, p);
22800     float4 val2 = read_imagef(src2, sampler, p);
22801     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
22802
22803     write_imagef(dst, p, next ? val1 : val2);
22804 }
22805 @end verbatim
22806
22807 @end itemize
22808
22809 @c man end OPENCL VIDEO FILTERS
22810
22811 @chapter VAAPI Video Filters
22812 @c man begin VAAPI VIDEO FILTERS
22813
22814 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
22815
22816 To enable compilation of these filters you need to configure FFmpeg with
22817 @code{--enable-vaapi}.
22818
22819 To use vaapi filters, you need to setup the vaapi device correctly. For more information, please read @url{https://trac.ffmpeg.org/wiki/Hardware/VAAPI}
22820
22821 @section tonemap_vaapi
22822
22823 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
22824 It maps the dynamic range of HDR10 content to the SDR content.
22825 It currently only accepts HDR10 as input.
22826
22827 It accepts the following parameters:
22828
22829 @table @option
22830 @item format
22831 Specify the output pixel format.
22832
22833 Currently supported formats are:
22834 @table @var
22835 @item p010
22836 @item nv12
22837 @end table
22838
22839 Default is nv12.
22840
22841 @item primaries, p
22842 Set the output color primaries.
22843
22844 Default is same as input.
22845
22846 @item transfer, t
22847 Set the output transfer characteristics.
22848
22849 Default is bt709.
22850
22851 @item matrix, m
22852 Set the output colorspace matrix.
22853
22854 Default is same as input.
22855
22856 @end table
22857
22858 @subsection Example
22859
22860 @itemize
22861 @item
22862 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
22863 @example
22864 tonemap_vaapi=format=p010:t=bt2020-10
22865 @end example
22866 @end itemize
22867
22868 @c man end VAAPI VIDEO FILTERS
22869
22870 @chapter Video Sources
22871 @c man begin VIDEO SOURCES
22872
22873 Below is a description of the currently available video sources.
22874
22875 @section buffer
22876
22877 Buffer video frames, and make them available to the filter chain.
22878
22879 This source is mainly intended for a programmatic use, in particular
22880 through the interface defined in @file{libavfilter/buffersrc.h}.
22881
22882 It accepts the following parameters:
22883
22884 @table @option
22885
22886 @item video_size
22887 Specify the size (width and height) of the buffered video frames. For the
22888 syntax of this option, check the
22889 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22890
22891 @item width
22892 The input video width.
22893
22894 @item height
22895 The input video height.
22896
22897 @item pix_fmt
22898 A string representing the pixel format of the buffered video frames.
22899 It may be a number corresponding to a pixel format, or a pixel format
22900 name.
22901
22902 @item time_base
22903 Specify the timebase assumed by the timestamps of the buffered frames.
22904
22905 @item frame_rate
22906 Specify the frame rate expected for the video stream.
22907
22908 @item pixel_aspect, sar
22909 The sample (pixel) aspect ratio of the input video.
22910
22911 @item sws_param
22912 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
22913 to the filtergraph description to specify swscale flags for automatically
22914 inserted scalers. See @ref{Filtergraph syntax}.
22915
22916 @item hw_frames_ctx
22917 When using a hardware pixel format, this should be a reference to an
22918 AVHWFramesContext describing input frames.
22919 @end table
22920
22921 For example:
22922 @example
22923 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22924 @end example
22925
22926 will instruct the source to accept video frames with size 320x240 and
22927 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22928 square pixels (1:1 sample aspect ratio).
22929 Since the pixel format with name "yuv410p" corresponds to the number 6
22930 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22931 this example corresponds to:
22932 @example
22933 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22934 @end example
22935
22936 Alternatively, the options can be specified as a flat string, but this
22937 syntax is deprecated:
22938
22939 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22940
22941 @section cellauto
22942
22943 Create a pattern generated by an elementary cellular automaton.
22944
22945 The initial state of the cellular automaton can be defined through the
22946 @option{filename} and @option{pattern} options. If such options are
22947 not specified an initial state is created randomly.
22948
22949 At each new frame a new row in the video is filled with the result of
22950 the cellular automaton next generation. The behavior when the whole
22951 frame is filled is defined by the @option{scroll} option.
22952
22953 This source accepts the following options:
22954
22955 @table @option
22956 @item filename, f
22957 Read the initial cellular automaton state, i.e. the starting row, from
22958 the specified file.
22959 In the file, each non-whitespace character is considered an alive
22960 cell, a newline will terminate the row, and further characters in the
22961 file will be ignored.
22962
22963 @item pattern, p
22964 Read the initial cellular automaton state, i.e. the starting row, from
22965 the specified string.
22966
22967 Each non-whitespace character in the string is considered an alive
22968 cell, a newline will terminate the row, and further characters in the
22969 string will be ignored.
22970
22971 @item rate, r
22972 Set the video rate, that is the number of frames generated per second.
22973 Default is 25.
22974
22975 @item random_fill_ratio, ratio
22976 Set the random fill ratio for the initial cellular automaton row. It
22977 is a floating point number value ranging from 0 to 1, defaults to
22978 1/PHI.
22979
22980 This option is ignored when a file or a pattern is specified.
22981
22982 @item random_seed, seed
22983 Set the seed for filling randomly the initial row, must be an integer
22984 included between 0 and UINT32_MAX. If not specified, or if explicitly
22985 set to -1, the filter will try to use a good random seed on a best
22986 effort basis.
22987
22988 @item rule
22989 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22990 Default value is 110.
22991
22992 @item size, s
22993 Set the size of the output video. For the syntax of this option, check the
22994 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22995
22996 If @option{filename} or @option{pattern} is specified, the size is set
22997 by default to the width of the specified initial state row, and the
22998 height is set to @var{width} * PHI.
22999
23000 If @option{size} is set, it must contain the width of the specified
23001 pattern string, and the specified pattern will be centered in the
23002 larger row.
23003
23004 If a filename or a pattern string is not specified, the size value
23005 defaults to "320x518" (used for a randomly generated initial state).
23006
23007 @item scroll
23008 If set to 1, scroll the output upward when all the rows in the output
23009 have been already filled. If set to 0, the new generated row will be
23010 written over the top row just after the bottom row is filled.
23011 Defaults to 1.
23012
23013 @item start_full, full
23014 If set to 1, completely fill the output with generated rows before
23015 outputting the first frame.
23016 This is the default behavior, for disabling set the value to 0.
23017
23018 @item stitch
23019 If set to 1, stitch the left and right row edges together.
23020 This is the default behavior, for disabling set the value to 0.
23021 @end table
23022
23023 @subsection Examples
23024
23025 @itemize
23026 @item
23027 Read the initial state from @file{pattern}, and specify an output of
23028 size 200x400.
23029 @example
23030 cellauto=f=pattern:s=200x400
23031 @end example
23032
23033 @item
23034 Generate a random initial row with a width of 200 cells, with a fill
23035 ratio of 2/3:
23036 @example
23037 cellauto=ratio=2/3:s=200x200
23038 @end example
23039
23040 @item
23041 Create a pattern generated by rule 18 starting by a single alive cell
23042 centered on an initial row with width 100:
23043 @example
23044 cellauto=p=@@:s=100x400:full=0:rule=18
23045 @end example
23046
23047 @item
23048 Specify a more elaborated initial pattern:
23049 @example
23050 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23051 @end example
23052
23053 @end itemize
23054
23055 @anchor{coreimagesrc}
23056 @section coreimagesrc
23057 Video source generated on GPU using Apple's CoreImage API on OSX.
23058
23059 This video source is a specialized version of the @ref{coreimage} video filter.
23060 Use a core image generator at the beginning of the applied filterchain to
23061 generate the content.
23062
23063 The coreimagesrc video source accepts the following options:
23064 @table @option
23065 @item list_generators
23066 List all available generators along with all their respective options as well as
23067 possible minimum and maximum values along with the default values.
23068 @example
23069 list_generators=true
23070 @end example
23071
23072 @item size, s
23073 Specify the size of the sourced video. For the syntax of this option, check the
23074 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23075 The default value is @code{320x240}.
23076
23077 @item rate, r
23078 Specify the frame rate of the sourced video, as the number of frames
23079 generated per second. It has to be a string in the format
23080 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23081 number or a valid video frame rate abbreviation. The default value is
23082 "25".
23083
23084 @item sar
23085 Set the sample aspect ratio of the sourced video.
23086
23087 @item duration, d
23088 Set the duration of the sourced video. See
23089 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23090 for the accepted syntax.
23091
23092 If not specified, or the expressed duration is negative, the video is
23093 supposed to be generated forever.
23094 @end table
23095
23096 Additionally, all options of the @ref{coreimage} video filter are accepted.
23097 A complete filterchain can be used for further processing of the
23098 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23099 and examples for details.
23100
23101 @subsection Examples
23102
23103 @itemize
23104
23105 @item
23106 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23107 given as complete and escaped command-line for Apple's standard bash shell:
23108 @example
23109 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23110 @end example
23111 This example is equivalent to the QRCode example of @ref{coreimage} without the
23112 need for a nullsrc video source.
23113 @end itemize
23114
23115
23116 @section gradients
23117 Generate several gradients.
23118
23119 @table @option
23120 @item size, s
23121 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23122 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23123
23124 @item rate, r
23125 Set frame rate, expressed as number of frames per second. Default
23126 value is "25".
23127
23128 @item c0, c1, c2, c3, c4, c5, c6, c7
23129 Set 8 colors. Default values for colors is to pick random one.
23130
23131 @item x0, y0, y0, y1
23132 Set gradient line source and destination points. If negative or out of range, random ones
23133 are picked.
23134
23135 @item nb_colors, n
23136 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23137
23138 @item seed
23139 Set seed for picking gradient line points.
23140
23141 @item duration, d
23142 Set the duration of the sourced video. See
23143 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23144 for the accepted syntax.
23145
23146 If not specified, or the expressed duration is negative, the video is
23147 supposed to be generated forever.
23148
23149 @item speed
23150 Set speed of gradients rotation.
23151 @end table
23152
23153
23154 @section mandelbrot
23155
23156 Generate a Mandelbrot set fractal, and progressively zoom towards the
23157 point specified with @var{start_x} and @var{start_y}.
23158
23159 This source accepts the following options:
23160
23161 @table @option
23162
23163 @item end_pts
23164 Set the terminal pts value. Default value is 400.
23165
23166 @item end_scale
23167 Set the terminal scale value.
23168 Must be a floating point value. Default value is 0.3.
23169
23170 @item inner
23171 Set the inner coloring mode, that is the algorithm used to draw the
23172 Mandelbrot fractal internal region.
23173
23174 It shall assume one of the following values:
23175 @table @option
23176 @item black
23177 Set black mode.
23178 @item convergence
23179 Show time until convergence.
23180 @item mincol
23181 Set color based on point closest to the origin of the iterations.
23182 @item period
23183 Set period mode.
23184 @end table
23185
23186 Default value is @var{mincol}.
23187
23188 @item bailout
23189 Set the bailout value. Default value is 10.0.
23190
23191 @item maxiter
23192 Set the maximum of iterations performed by the rendering
23193 algorithm. Default value is 7189.
23194
23195 @item outer
23196 Set outer coloring mode.
23197 It shall assume one of following values:
23198 @table @option
23199 @item iteration_count
23200 Set iteration count mode.
23201 @item normalized_iteration_count
23202 set normalized iteration count mode.
23203 @end table
23204 Default value is @var{normalized_iteration_count}.
23205
23206 @item rate, r
23207 Set frame rate, expressed as number of frames per second. Default
23208 value is "25".
23209
23210 @item size, s
23211 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23212 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23213
23214 @item start_scale
23215 Set the initial scale value. Default value is 3.0.
23216
23217 @item start_x
23218 Set the initial x position. Must be a floating point value between
23219 -100 and 100. Default value is -0.743643887037158704752191506114774.
23220
23221 @item start_y
23222 Set the initial y position. Must be a floating point value between
23223 -100 and 100. Default value is -0.131825904205311970493132056385139.
23224 @end table
23225
23226 @section mptestsrc
23227
23228 Generate various test patterns, as generated by the MPlayer test filter.
23229
23230 The size of the generated video is fixed, and is 256x256.
23231 This source is useful in particular for testing encoding features.
23232
23233 This source accepts the following options:
23234
23235 @table @option
23236
23237 @item rate, r
23238 Specify the frame rate of the sourced video, as the number of frames
23239 generated per second. It has to be a string in the format
23240 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23241 number or a valid video frame rate abbreviation. The default value is
23242 "25".
23243
23244 @item duration, d
23245 Set the duration of the sourced video. See
23246 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23247 for the accepted syntax.
23248
23249 If not specified, or the expressed duration is negative, the video is
23250 supposed to be generated forever.
23251
23252 @item test, t
23253
23254 Set the number or the name of the test to perform. Supported tests are:
23255 @table @option
23256 @item dc_luma
23257 @item dc_chroma
23258 @item freq_luma
23259 @item freq_chroma
23260 @item amp_luma
23261 @item amp_chroma
23262 @item cbp
23263 @item mv
23264 @item ring1
23265 @item ring2
23266 @item all
23267
23268 @item max_frames, m
23269 Set the maximum number of frames generated for each test, default value is 30.
23270
23271 @end table
23272
23273 Default value is "all", which will cycle through the list of all tests.
23274 @end table
23275
23276 Some examples:
23277 @example
23278 mptestsrc=t=dc_luma
23279 @end example
23280
23281 will generate a "dc_luma" test pattern.
23282
23283 @section frei0r_src
23284
23285 Provide a frei0r source.
23286
23287 To enable compilation of this filter you need to install the frei0r
23288 header and configure FFmpeg with @code{--enable-frei0r}.
23289
23290 This source accepts the following parameters:
23291
23292 @table @option
23293
23294 @item size
23295 The size of the video to generate. For the syntax of this option, check the
23296 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23297
23298 @item framerate
23299 The framerate of the generated video. It may be a string of the form
23300 @var{num}/@var{den} or a frame rate abbreviation.
23301
23302 @item filter_name
23303 The name to the frei0r source to load. For more information regarding frei0r and
23304 how to set the parameters, read the @ref{frei0r} section in the video filters
23305 documentation.
23306
23307 @item filter_params
23308 A '|'-separated list of parameters to pass to the frei0r source.
23309
23310 @end table
23311
23312 For example, to generate a frei0r partik0l source with size 200x200
23313 and frame rate 10 which is overlaid on the overlay filter main input:
23314 @example
23315 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23316 @end example
23317
23318 @section life
23319
23320 Generate a life pattern.
23321
23322 This source is based on a generalization of John Conway's life game.
23323
23324 The sourced input represents a life grid, each pixel represents a cell
23325 which can be in one of two possible states, alive or dead. Every cell
23326 interacts with its eight neighbours, which are the cells that are
23327 horizontally, vertically, or diagonally adjacent.
23328
23329 At each interaction the grid evolves according to the adopted rule,
23330 which specifies the number of neighbor alive cells which will make a
23331 cell stay alive or born. The @option{rule} option allows one to specify
23332 the rule to adopt.
23333
23334 This source accepts the following options:
23335
23336 @table @option
23337 @item filename, f
23338 Set the file from which to read the initial grid state. In the file,
23339 each non-whitespace character is considered an alive cell, and newline
23340 is used to delimit the end of each row.
23341
23342 If this option is not specified, the initial grid is generated
23343 randomly.
23344
23345 @item rate, r
23346 Set the video rate, that is the number of frames generated per second.
23347 Default is 25.
23348
23349 @item random_fill_ratio, ratio
23350 Set the random fill ratio for the initial random grid. It is a
23351 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23352 It is ignored when a file is specified.
23353
23354 @item random_seed, seed
23355 Set the seed for filling the initial random grid, must be an integer
23356 included between 0 and UINT32_MAX. If not specified, or if explicitly
23357 set to -1, the filter will try to use a good random seed on a best
23358 effort basis.
23359
23360 @item rule
23361 Set the life rule.
23362
23363 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23364 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23365 @var{NS} specifies the number of alive neighbor cells which make a
23366 live cell stay alive, and @var{NB} the number of alive neighbor cells
23367 which make a dead cell to become alive (i.e. to "born").
23368 "s" and "b" can be used in place of "S" and "B", respectively.
23369
23370 Alternatively a rule can be specified by an 18-bits integer. The 9
23371 high order bits are used to encode the next cell state if it is alive
23372 for each number of neighbor alive cells, the low order bits specify
23373 the rule for "borning" new cells. Higher order bits encode for an
23374 higher number of neighbor cells.
23375 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23376 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23377
23378 Default value is "S23/B3", which is the original Conway's game of life
23379 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23380 cells, and will born a new cell if there are three alive cells around
23381 a dead cell.
23382
23383 @item size, s
23384 Set the size of the output video. For the syntax of this option, check the
23385 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23386
23387 If @option{filename} is specified, the size is set by default to the
23388 same size of the input file. If @option{size} is set, it must contain
23389 the size specified in the input file, and the initial grid defined in
23390 that file is centered in the larger resulting area.
23391
23392 If a filename is not specified, the size value defaults to "320x240"
23393 (used for a randomly generated initial grid).
23394
23395 @item stitch
23396 If set to 1, stitch the left and right grid edges together, and the
23397 top and bottom edges also. Defaults to 1.
23398
23399 @item mold
23400 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23401 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23402 value from 0 to 255.
23403
23404 @item life_color
23405 Set the color of living (or new born) cells.
23406
23407 @item death_color
23408 Set the color of dead cells. If @option{mold} is set, this is the first color
23409 used to represent a dead cell.
23410
23411 @item mold_color
23412 Set mold color, for definitely dead and moldy cells.
23413
23414 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23415 ffmpeg-utils manual,ffmpeg-utils}.
23416 @end table
23417
23418 @subsection Examples
23419
23420 @itemize
23421 @item
23422 Read a grid from @file{pattern}, and center it on a grid of size
23423 300x300 pixels:
23424 @example
23425 life=f=pattern:s=300x300
23426 @end example
23427
23428 @item
23429 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23430 @example
23431 life=ratio=2/3:s=200x200
23432 @end example
23433
23434 @item
23435 Specify a custom rule for evolving a randomly generated grid:
23436 @example
23437 life=rule=S14/B34
23438 @end example
23439
23440 @item
23441 Full example with slow death effect (mold) using @command{ffplay}:
23442 @example
23443 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23444 @end example
23445 @end itemize
23446
23447 @anchor{allrgb}
23448 @anchor{allyuv}
23449 @anchor{color}
23450 @anchor{haldclutsrc}
23451 @anchor{nullsrc}
23452 @anchor{pal75bars}
23453 @anchor{pal100bars}
23454 @anchor{rgbtestsrc}
23455 @anchor{smptebars}
23456 @anchor{smptehdbars}
23457 @anchor{testsrc}
23458 @anchor{testsrc2}
23459 @anchor{yuvtestsrc}
23460 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23461
23462 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23463
23464 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23465
23466 The @code{color} source provides an uniformly colored input.
23467
23468 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23469 @ref{haldclut} filter.
23470
23471 The @code{nullsrc} source returns unprocessed video frames. It is
23472 mainly useful to be employed in analysis / debugging tools, or as the
23473 source for filters which ignore the input data.
23474
23475 The @code{pal75bars} source generates a color bars pattern, based on
23476 EBU PAL recommendations with 75% color levels.
23477
23478 The @code{pal100bars} source generates a color bars pattern, based on
23479 EBU PAL recommendations with 100% color levels.
23480
23481 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23482 detecting RGB vs BGR issues. You should see a red, green and blue
23483 stripe from top to bottom.
23484
23485 The @code{smptebars} source generates a color bars pattern, based on
23486 the SMPTE Engineering Guideline EG 1-1990.
23487
23488 The @code{smptehdbars} source generates a color bars pattern, based on
23489 the SMPTE RP 219-2002.
23490
23491 The @code{testsrc} source generates a test video pattern, showing a
23492 color pattern, a scrolling gradient and a timestamp. This is mainly
23493 intended for testing purposes.
23494
23495 The @code{testsrc2} source is similar to testsrc, but supports more
23496 pixel formats instead of just @code{rgb24}. This allows using it as an
23497 input for other tests without requiring a format conversion.
23498
23499 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23500 see a y, cb and cr stripe from top to bottom.
23501
23502 The sources accept the following parameters:
23503
23504 @table @option
23505
23506 @item level
23507 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23508 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23509 pixels to be used as identity matrix for 3D lookup tables. Each component is
23510 coded on a @code{1/(N*N)} scale.
23511
23512 @item color, c
23513 Specify the color of the source, only available in the @code{color}
23514 source. For the syntax of this option, check the
23515 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23516
23517 @item size, s
23518 Specify the size of the sourced video. For the syntax of this option, check the
23519 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23520 The default value is @code{320x240}.
23521
23522 This option is not available with the @code{allrgb}, @code{allyuv}, and
23523 @code{haldclutsrc} filters.
23524
23525 @item rate, r
23526 Specify the frame rate of the sourced video, as the number of frames
23527 generated per second. It has to be a string in the format
23528 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23529 number or a valid video frame rate abbreviation. The default value is
23530 "25".
23531
23532 @item duration, d
23533 Set the duration of the sourced video. See
23534 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23535 for the accepted syntax.
23536
23537 If not specified, or the expressed duration is negative, the video is
23538 supposed to be generated forever.
23539
23540 Since the frame rate is used as time base, all frames including the last one
23541 will have their full duration. If the specified duration is not a multiple
23542 of the frame duration, it will be rounded up.
23543
23544 @item sar
23545 Set the sample aspect ratio of the sourced video.
23546
23547 @item alpha
23548 Specify the alpha (opacity) of the background, only available in the
23549 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23550 255 (fully opaque, the default).
23551
23552 @item decimals, n
23553 Set the number of decimals to show in the timestamp, only available in the
23554 @code{testsrc} source.
23555
23556 The displayed timestamp value will correspond to the original
23557 timestamp value multiplied by the power of 10 of the specified
23558 value. Default value is 0.
23559 @end table
23560
23561 @subsection Examples
23562
23563 @itemize
23564 @item
23565 Generate a video with a duration of 5.3 seconds, with size
23566 176x144 and a frame rate of 10 frames per second:
23567 @example
23568 testsrc=duration=5.3:size=qcif:rate=10
23569 @end example
23570
23571 @item
23572 The following graph description will generate a red source
23573 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23574 frames per second:
23575 @example
23576 color=c=red@@0.2:s=qcif:r=10
23577 @end example
23578
23579 @item
23580 If the input content is to be ignored, @code{nullsrc} can be used. The
23581 following command generates noise in the luminance plane by employing
23582 the @code{geq} filter:
23583 @example
23584 nullsrc=s=256x256, geq=random(1)*255:128:128
23585 @end example
23586 @end itemize
23587
23588 @subsection Commands
23589
23590 The @code{color} source supports the following commands:
23591
23592 @table @option
23593 @item c, color
23594 Set the color of the created image. Accepts the same syntax of the
23595 corresponding @option{color} option.
23596 @end table
23597
23598 @section openclsrc
23599
23600 Generate video using an OpenCL program.
23601
23602 @table @option
23603
23604 @item source
23605 OpenCL program source file.
23606
23607 @item kernel
23608 Kernel name in program.
23609
23610 @item size, s
23611 Size of frames to generate.  This must be set.
23612
23613 @item format
23614 Pixel format to use for the generated frames.  This must be set.
23615
23616 @item rate, r
23617 Number of frames generated every second.  Default value is '25'.
23618
23619 @end table
23620
23621 For details of how the program loading works, see the @ref{program_opencl}
23622 filter.
23623
23624 Example programs:
23625
23626 @itemize
23627 @item
23628 Generate a colour ramp by setting pixel values from the position of the pixel
23629 in the output image.  (Note that this will work with all pixel formats, but
23630 the generated output will not be the same.)
23631 @verbatim
23632 __kernel void ramp(__write_only image2d_t dst,
23633                    unsigned int index)
23634 {
23635     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23636
23637     float4 val;
23638     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23639
23640     write_imagef(dst, loc, val);
23641 }
23642 @end verbatim
23643
23644 @item
23645 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23646 @verbatim
23647 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23648                                 unsigned int index)
23649 {
23650     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23651
23652     float4 value = 0.0f;
23653     int x = loc.x + index;
23654     int y = loc.y + index;
23655     while (x > 0 || y > 0) {
23656         if (x % 3 == 1 && y % 3 == 1) {
23657             value = 1.0f;
23658             break;
23659         }
23660         x /= 3;
23661         y /= 3;
23662     }
23663
23664     write_imagef(dst, loc, value);
23665 }
23666 @end verbatim
23667
23668 @end itemize
23669
23670 @section sierpinski
23671
23672 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23673
23674 This source accepts the following options:
23675
23676 @table @option
23677 @item size, s
23678 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23679 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23680
23681 @item rate, r
23682 Set frame rate, expressed as number of frames per second. Default
23683 value is "25".
23684
23685 @item seed
23686 Set seed which is used for random panning.
23687
23688 @item jump
23689 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23690
23691 @item type
23692 Set fractal type, can be default @code{carpet} or @code{triangle}.
23693 @end table
23694
23695 @c man end VIDEO SOURCES
23696
23697 @chapter Video Sinks
23698 @c man begin VIDEO SINKS
23699
23700 Below is a description of the currently available video sinks.
23701
23702 @section buffersink
23703
23704 Buffer video frames, and make them available to the end of the filter
23705 graph.
23706
23707 This sink is mainly intended for programmatic use, in particular
23708 through the interface defined in @file{libavfilter/buffersink.h}
23709 or the options system.
23710
23711 It accepts a pointer to an AVBufferSinkContext structure, which
23712 defines the incoming buffers' formats, to be passed as the opaque
23713 parameter to @code{avfilter_init_filter} for initialization.
23714
23715 @section nullsink
23716
23717 Null video sink: do absolutely nothing with the input video. It is
23718 mainly useful as a template and for use in analysis / debugging
23719 tools.
23720
23721 @c man end VIDEO SINKS
23722
23723 @chapter Multimedia Filters
23724 @c man begin MULTIMEDIA FILTERS
23725
23726 Below is a description of the currently available multimedia filters.
23727
23728 @section abitscope
23729
23730 Convert input audio to a video output, displaying the audio bit scope.
23731
23732 The filter accepts the following options:
23733
23734 @table @option
23735 @item rate, r
23736 Set frame rate, expressed as number of frames per second. Default
23737 value is "25".
23738
23739 @item size, s
23740 Specify the video size for the output. For the syntax of this option, check the
23741 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23742 Default value is @code{1024x256}.
23743
23744 @item colors
23745 Specify list of colors separated by space or by '|' which will be used to
23746 draw channels. Unrecognized or missing colors will be replaced
23747 by white color.
23748 @end table
23749
23750 @section adrawgraph
23751 Draw a graph using input audio metadata.
23752
23753 See @ref{drawgraph}
23754
23755 @section agraphmonitor
23756
23757 See @ref{graphmonitor}.
23758
23759 @section ahistogram
23760
23761 Convert input audio to a video output, displaying the volume histogram.
23762
23763 The filter accepts the following options:
23764
23765 @table @option
23766 @item dmode
23767 Specify how histogram is calculated.
23768
23769 It accepts the following values:
23770 @table @samp
23771 @item single
23772 Use single histogram for all channels.
23773 @item separate
23774 Use separate histogram for each channel.
23775 @end table
23776 Default is @code{single}.
23777
23778 @item rate, r
23779 Set frame rate, expressed as number of frames per second. Default
23780 value is "25".
23781
23782 @item size, s
23783 Specify the video size for the output. For the syntax of this option, check the
23784 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23785 Default value is @code{hd720}.
23786
23787 @item scale
23788 Set display scale.
23789
23790 It accepts the following values:
23791 @table @samp
23792 @item log
23793 logarithmic
23794 @item sqrt
23795 square root
23796 @item cbrt
23797 cubic root
23798 @item lin
23799 linear
23800 @item rlog
23801 reverse logarithmic
23802 @end table
23803 Default is @code{log}.
23804
23805 @item ascale
23806 Set amplitude scale.
23807
23808 It accepts the following values:
23809 @table @samp
23810 @item log
23811 logarithmic
23812 @item lin
23813 linear
23814 @end table
23815 Default is @code{log}.
23816
23817 @item acount
23818 Set how much frames to accumulate in histogram.
23819 Default is 1. Setting this to -1 accumulates all frames.
23820
23821 @item rheight
23822 Set histogram ratio of window height.
23823
23824 @item slide
23825 Set sonogram sliding.
23826
23827 It accepts the following values:
23828 @table @samp
23829 @item replace
23830 replace old rows with new ones.
23831 @item scroll
23832 scroll from top to bottom.
23833 @end table
23834 Default is @code{replace}.
23835 @end table
23836
23837 @section aphasemeter
23838
23839 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
23840 representing mean phase of current audio frame. A video output can also be produced and is
23841 enabled by default. The audio is passed through as first output.
23842
23843 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
23844 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
23845 and @code{1} means channels are in phase.
23846
23847 The filter accepts the following options, all related to its video output:
23848
23849 @table @option
23850 @item rate, r
23851 Set the output frame rate. Default value is @code{25}.
23852
23853 @item size, s
23854 Set the video size for the output. For the syntax of this option, check the
23855 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23856 Default value is @code{800x400}.
23857
23858 @item rc
23859 @item gc
23860 @item bc
23861 Specify the red, green, blue contrast. Default values are @code{2},
23862 @code{7} and @code{1}.
23863 Allowed range is @code{[0, 255]}.
23864
23865 @item mpc
23866 Set color which will be used for drawing median phase. If color is
23867 @code{none} which is default, no median phase value will be drawn.
23868
23869 @item video
23870 Enable video output. Default is enabled.
23871 @end table
23872
23873 @subsection phasing detection
23874
23875 The filter also detects out of phase and mono sequences in stereo streams.
23876 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
23877
23878 The filter accepts the following options for this detection:
23879
23880 @table @option
23881 @item phasing
23882 Enable mono and out of phase detection. Default is disabled.
23883
23884 @item tolerance, t
23885 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
23886 Allowed range is @code{[0, 1]}.
23887
23888 @item angle, a
23889 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
23890 Allowed range is @code{[90, 180]}.
23891
23892 @item duration, d
23893 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
23894 @end table
23895
23896 @subsection Examples
23897
23898 @itemize
23899 @item
23900 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
23901 @example
23902 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
23903 @end example
23904 @end itemize
23905
23906 @section avectorscope
23907
23908 Convert input audio to a video output, representing the audio vector
23909 scope.
23910
23911 The filter is used to measure the difference between channels of stereo
23912 audio stream. A monaural signal, consisting of identical left and right
23913 signal, results in straight vertical line. Any stereo separation is visible
23914 as a deviation from this line, creating a Lissajous figure.
23915 If the straight (or deviation from it) but horizontal line appears this
23916 indicates that the left and right channels are out of phase.
23917
23918 The filter accepts the following options:
23919
23920 @table @option
23921 @item mode, m
23922 Set the vectorscope mode.
23923
23924 Available values are:
23925 @table @samp
23926 @item lissajous
23927 Lissajous rotated by 45 degrees.
23928
23929 @item lissajous_xy
23930 Same as above but not rotated.
23931
23932 @item polar
23933 Shape resembling half of circle.
23934 @end table
23935
23936 Default value is @samp{lissajous}.
23937
23938 @item size, s
23939 Set the video size for the output. For the syntax of this option, check the
23940 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23941 Default value is @code{400x400}.
23942
23943 @item rate, r
23944 Set the output frame rate. Default value is @code{25}.
23945
23946 @item rc
23947 @item gc
23948 @item bc
23949 @item ac
23950 Specify the red, green, blue and alpha contrast. Default values are @code{40},
23951 @code{160}, @code{80} and @code{255}.
23952 Allowed range is @code{[0, 255]}.
23953
23954 @item rf
23955 @item gf
23956 @item bf
23957 @item af
23958 Specify the red, green, blue and alpha fade. Default values are @code{15},
23959 @code{10}, @code{5} and @code{5}.
23960 Allowed range is @code{[0, 255]}.
23961
23962 @item zoom
23963 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
23964 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
23965
23966 @item draw
23967 Set the vectorscope drawing mode.
23968
23969 Available values are:
23970 @table @samp
23971 @item dot
23972 Draw dot for each sample.
23973
23974 @item line
23975 Draw line between previous and current sample.
23976 @end table
23977
23978 Default value is @samp{dot}.
23979
23980 @item scale
23981 Specify amplitude scale of audio samples.
23982
23983 Available values are:
23984 @table @samp
23985 @item lin
23986 Linear.
23987
23988 @item sqrt
23989 Square root.
23990
23991 @item cbrt
23992 Cubic root.
23993
23994 @item log
23995 Logarithmic.
23996 @end table
23997
23998 @item swap
23999 Swap left channel axis with right channel axis.
24000
24001 @item mirror
24002 Mirror axis.
24003
24004 @table @samp
24005 @item none
24006 No mirror.
24007
24008 @item x
24009 Mirror only x axis.
24010
24011 @item y
24012 Mirror only y axis.
24013
24014 @item xy
24015 Mirror both axis.
24016 @end table
24017
24018 @end table
24019
24020 @subsection Examples
24021
24022 @itemize
24023 @item
24024 Complete example using @command{ffplay}:
24025 @example
24026 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24027              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24028 @end example
24029 @end itemize
24030
24031 @section bench, abench
24032
24033 Benchmark part of a filtergraph.
24034
24035 The filter accepts the following options:
24036
24037 @table @option
24038 @item action
24039 Start or stop a timer.
24040
24041 Available values are:
24042 @table @samp
24043 @item start
24044 Get the current time, set it as frame metadata (using the key
24045 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24046
24047 @item stop
24048 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24049 the input frame metadata to get the time difference. Time difference, average,
24050 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24051 @code{min}) are then printed. The timestamps are expressed in seconds.
24052 @end table
24053 @end table
24054
24055 @subsection Examples
24056
24057 @itemize
24058 @item
24059 Benchmark @ref{selectivecolor} filter:
24060 @example
24061 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24062 @end example
24063 @end itemize
24064
24065 @section concat
24066
24067 Concatenate audio and video streams, joining them together one after the
24068 other.
24069
24070 The filter works on segments of synchronized video and audio streams. All
24071 segments must have the same number of streams of each type, and that will
24072 also be the number of streams at output.
24073
24074 The filter accepts the following options:
24075
24076 @table @option
24077
24078 @item n
24079 Set the number of segments. Default is 2.
24080
24081 @item v
24082 Set the number of output video streams, that is also the number of video
24083 streams in each segment. Default is 1.
24084
24085 @item a
24086 Set the number of output audio streams, that is also the number of audio
24087 streams in each segment. Default is 0.
24088
24089 @item unsafe
24090 Activate unsafe mode: do not fail if segments have a different format.
24091
24092 @end table
24093
24094 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24095 @var{a} audio outputs.
24096
24097 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24098 segment, in the same order as the outputs, then the inputs for the second
24099 segment, etc.
24100
24101 Related streams do not always have exactly the same duration, for various
24102 reasons including codec frame size or sloppy authoring. For that reason,
24103 related synchronized streams (e.g. a video and its audio track) should be
24104 concatenated at once. The concat filter will use the duration of the longest
24105 stream in each segment (except the last one), and if necessary pad shorter
24106 audio streams with silence.
24107
24108 For this filter to work correctly, all segments must start at timestamp 0.
24109
24110 All corresponding streams must have the same parameters in all segments; the
24111 filtering system will automatically select a common pixel format for video
24112 streams, and a common sample format, sample rate and channel layout for
24113 audio streams, but other settings, such as resolution, must be converted
24114 explicitly by the user.
24115
24116 Different frame rates are acceptable but will result in variable frame rate
24117 at output; be sure to configure the output file to handle it.
24118
24119 @subsection Examples
24120
24121 @itemize
24122 @item
24123 Concatenate an opening, an episode and an ending, all in bilingual version
24124 (video in stream 0, audio in streams 1 and 2):
24125 @example
24126 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24127   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24128    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24129   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24130 @end example
24131
24132 @item
24133 Concatenate two parts, handling audio and video separately, using the
24134 (a)movie sources, and adjusting the resolution:
24135 @example
24136 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24137 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24138 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24139 @end example
24140 Note that a desync will happen at the stitch if the audio and video streams
24141 do not have exactly the same duration in the first file.
24142
24143 @end itemize
24144
24145 @subsection Commands
24146
24147 This filter supports the following commands:
24148 @table @option
24149 @item next
24150 Close the current segment and step to the next one
24151 @end table
24152
24153 @anchor{ebur128}
24154 @section ebur128
24155
24156 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24157 level. By default, it logs a message at a frequency of 10Hz with the
24158 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24159 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24160
24161 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24162 sample format is double-precision floating point. The input stream will be converted to
24163 this specification, if needed. Users may need to insert aformat and/or aresample filters
24164 after this filter to obtain the original parameters.
24165
24166 The filter also has a video output (see the @var{video} option) with a real
24167 time graph to observe the loudness evolution. The graphic contains the logged
24168 message mentioned above, so it is not printed anymore when this option is set,
24169 unless the verbose logging is set. The main graphing area contains the
24170 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24171 the momentary loudness (400 milliseconds), but can optionally be configured
24172 to instead display short-term loudness (see @var{gauge}).
24173
24174 The green area marks a  +/- 1LU target range around the target loudness
24175 (-23LUFS by default, unless modified through @var{target}).
24176
24177 More information about the Loudness Recommendation EBU R128 on
24178 @url{http://tech.ebu.ch/loudness}.
24179
24180 The filter accepts the following options:
24181
24182 @table @option
24183
24184 @item video
24185 Activate the video output. The audio stream is passed unchanged whether this
24186 option is set or no. The video stream will be the first output stream if
24187 activated. Default is @code{0}.
24188
24189 @item size
24190 Set the video size. This option is for video only. For the syntax of this
24191 option, check the
24192 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24193 Default and minimum resolution is @code{640x480}.
24194
24195 @item meter
24196 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24197 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24198 other integer value between this range is allowed.
24199
24200 @item metadata
24201 Set metadata injection. If set to @code{1}, the audio input will be segmented
24202 into 100ms output frames, each of them containing various loudness information
24203 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24204
24205 Default is @code{0}.
24206
24207 @item framelog
24208 Force the frame logging level.
24209
24210 Available values are:
24211 @table @samp
24212 @item info
24213 information logging level
24214 @item verbose
24215 verbose logging level
24216 @end table
24217
24218 By default, the logging level is set to @var{info}. If the @option{video} or
24219 the @option{metadata} options are set, it switches to @var{verbose}.
24220
24221 @item peak
24222 Set peak mode(s).
24223
24224 Available modes can be cumulated (the option is a @code{flag} type). Possible
24225 values are:
24226 @table @samp
24227 @item none
24228 Disable any peak mode (default).
24229 @item sample
24230 Enable sample-peak mode.
24231
24232 Simple peak mode looking for the higher sample value. It logs a message
24233 for sample-peak (identified by @code{SPK}).
24234 @item true
24235 Enable true-peak mode.
24236
24237 If enabled, the peak lookup is done on an over-sampled version of the input
24238 stream for better peak accuracy. It logs a message for true-peak.
24239 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24240 This mode requires a build with @code{libswresample}.
24241 @end table
24242
24243 @item dualmono
24244 Treat mono input files as "dual mono". If a mono file is intended for playback
24245 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24246 If set to @code{true}, this option will compensate for this effect.
24247 Multi-channel input files are not affected by this option.
24248
24249 @item panlaw
24250 Set a specific pan law to be used for the measurement of dual mono files.
24251 This parameter is optional, and has a default value of -3.01dB.
24252
24253 @item target
24254 Set a specific target level (in LUFS) used as relative zero in the visualization.
24255 This parameter is optional and has a default value of -23LUFS as specified
24256 by EBU R128. However, material published online may prefer a level of -16LUFS
24257 (e.g. for use with podcasts or video platforms).
24258
24259 @item gauge
24260 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24261 @code{shortterm}. By default the momentary value will be used, but in certain
24262 scenarios it may be more useful to observe the short term value instead (e.g.
24263 live mixing).
24264
24265 @item scale
24266 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24267 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24268 video output, not the summary or continuous log output.
24269 @end table
24270
24271 @subsection Examples
24272
24273 @itemize
24274 @item
24275 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24276 @example
24277 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24278 @end example
24279
24280 @item
24281 Run an analysis with @command{ffmpeg}:
24282 @example
24283 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24284 @end example
24285 @end itemize
24286
24287 @section interleave, ainterleave
24288
24289 Temporally interleave frames from several inputs.
24290
24291 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24292
24293 These filters read frames from several inputs and send the oldest
24294 queued frame to the output.
24295
24296 Input streams must have well defined, monotonically increasing frame
24297 timestamp values.
24298
24299 In order to submit one frame to output, these filters need to enqueue
24300 at least one frame for each input, so they cannot work in case one
24301 input is not yet terminated and will not receive incoming frames.
24302
24303 For example consider the case when one input is a @code{select} filter
24304 which always drops input frames. The @code{interleave} filter will keep
24305 reading from that input, but it will never be able to send new frames
24306 to output until the input sends an end-of-stream signal.
24307
24308 Also, depending on inputs synchronization, the filters will drop
24309 frames in case one input receives more frames than the other ones, and
24310 the queue is already filled.
24311
24312 These filters accept the following options:
24313
24314 @table @option
24315 @item nb_inputs, n
24316 Set the number of different inputs, it is 2 by default.
24317
24318 @item duration
24319 How to determine the end-of-stream.
24320
24321 @table @option
24322 @item longest
24323 The duration of the longest input. (default)
24324
24325 @item shortest
24326 The duration of the shortest input.
24327
24328 @item first
24329 The duration of the first input.
24330 @end table
24331
24332 @end table
24333
24334 @subsection Examples
24335
24336 @itemize
24337 @item
24338 Interleave frames belonging to different streams using @command{ffmpeg}:
24339 @example
24340 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24341 @end example
24342
24343 @item
24344 Add flickering blur effect:
24345 @example
24346 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24347 @end example
24348 @end itemize
24349
24350 @section metadata, ametadata
24351
24352 Manipulate frame metadata.
24353
24354 This filter accepts the following options:
24355
24356 @table @option
24357 @item mode
24358 Set mode of operation of the filter.
24359
24360 Can be one of the following:
24361
24362 @table @samp
24363 @item select
24364 If both @code{value} and @code{key} is set, select frames
24365 which have such metadata. If only @code{key} is set, select
24366 every frame that has such key in metadata.
24367
24368 @item add
24369 Add new metadata @code{key} and @code{value}. If key is already available
24370 do nothing.
24371
24372 @item modify
24373 Modify value of already present key.
24374
24375 @item delete
24376 If @code{value} is set, delete only keys that have such value.
24377 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24378 the frame.
24379
24380 @item print
24381 Print key and its value if metadata was found. If @code{key} is not set print all
24382 metadata values available in frame.
24383 @end table
24384
24385 @item key
24386 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24387
24388 @item value
24389 Set metadata value which will be used. This option is mandatory for
24390 @code{modify} and @code{add} mode.
24391
24392 @item function
24393 Which function to use when comparing metadata value and @code{value}.
24394
24395 Can be one of following:
24396
24397 @table @samp
24398 @item same_str
24399 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24400
24401 @item starts_with
24402 Values are interpreted as strings, returns true if metadata value starts with
24403 the @code{value} option string.
24404
24405 @item less
24406 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24407
24408 @item equal
24409 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24410
24411 @item greater
24412 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24413
24414 @item expr
24415 Values are interpreted as floats, returns true if expression from option @code{expr}
24416 evaluates to true.
24417
24418 @item ends_with
24419 Values are interpreted as strings, returns true if metadata value ends with
24420 the @code{value} option string.
24421 @end table
24422
24423 @item expr
24424 Set expression which is used when @code{function} is set to @code{expr}.
24425 The expression is evaluated through the eval API and can contain the following
24426 constants:
24427
24428 @table @option
24429 @item VALUE1
24430 Float representation of @code{value} from metadata key.
24431
24432 @item VALUE2
24433 Float representation of @code{value} as supplied by user in @code{value} option.
24434 @end table
24435
24436 @item file
24437 If specified in @code{print} mode, output is written to the named file. Instead of
24438 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24439 for standard output. If @code{file} option is not set, output is written to the log
24440 with AV_LOG_INFO loglevel.
24441
24442 @item direct
24443 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24444
24445 @end table
24446
24447 @subsection Examples
24448
24449 @itemize
24450 @item
24451 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24452 between 0 and 1.
24453 @example
24454 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24455 @end example
24456 @item
24457 Print silencedetect output to file @file{metadata.txt}.
24458 @example
24459 silencedetect,ametadata=mode=print:file=metadata.txt
24460 @end example
24461 @item
24462 Direct all metadata to a pipe with file descriptor 4.
24463 @example
24464 metadata=mode=print:file='pipe\:4'
24465 @end example
24466 @end itemize
24467
24468 @section perms, aperms
24469
24470 Set read/write permissions for the output frames.
24471
24472 These filters are mainly aimed at developers to test direct path in the
24473 following filter in the filtergraph.
24474
24475 The filters accept the following options:
24476
24477 @table @option
24478 @item mode
24479 Select the permissions mode.
24480
24481 It accepts the following values:
24482 @table @samp
24483 @item none
24484 Do nothing. This is the default.
24485 @item ro
24486 Set all the output frames read-only.
24487 @item rw
24488 Set all the output frames directly writable.
24489 @item toggle
24490 Make the frame read-only if writable, and writable if read-only.
24491 @item random
24492 Set each output frame read-only or writable randomly.
24493 @end table
24494
24495 @item seed
24496 Set the seed for the @var{random} mode, must be an integer included between
24497 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24498 @code{-1}, the filter will try to use a good random seed on a best effort
24499 basis.
24500 @end table
24501
24502 Note: in case of auto-inserted filter between the permission filter and the
24503 following one, the permission might not be received as expected in that
24504 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24505 perms/aperms filter can avoid this problem.
24506
24507 @section realtime, arealtime
24508
24509 Slow down filtering to match real time approximately.
24510
24511 These filters will pause the filtering for a variable amount of time to
24512 match the output rate with the input timestamps.
24513 They are similar to the @option{re} option to @code{ffmpeg}.
24514
24515 They accept the following options:
24516
24517 @table @option
24518 @item limit
24519 Time limit for the pauses. Any pause longer than that will be considered
24520 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24521 @item speed
24522 Speed factor for processing. The value must be a float larger than zero.
24523 Values larger than 1.0 will result in faster than realtime processing,
24524 smaller will slow processing down. The @var{limit} is automatically adapted
24525 accordingly. Default is 1.0.
24526
24527 A processing speed faster than what is possible without these filters cannot
24528 be achieved.
24529 @end table
24530
24531 @anchor{select}
24532 @section select, aselect
24533
24534 Select frames to pass in output.
24535
24536 This filter accepts the following options:
24537
24538 @table @option
24539
24540 @item expr, e
24541 Set expression, which is evaluated for each input frame.
24542
24543 If the expression is evaluated to zero, the frame is discarded.
24544
24545 If the evaluation result is negative or NaN, the frame is sent to the
24546 first output; otherwise it is sent to the output with index
24547 @code{ceil(val)-1}, assuming that the input index starts from 0.
24548
24549 For example a value of @code{1.2} corresponds to the output with index
24550 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24551
24552 @item outputs, n
24553 Set the number of outputs. The output to which to send the selected
24554 frame is based on the result of the evaluation. Default value is 1.
24555 @end table
24556
24557 The expression can contain the following constants:
24558
24559 @table @option
24560 @item n
24561 The (sequential) number of the filtered frame, starting from 0.
24562
24563 @item selected_n
24564 The (sequential) number of the selected frame, starting from 0.
24565
24566 @item prev_selected_n
24567 The sequential number of the last selected frame. It's NAN if undefined.
24568
24569 @item TB
24570 The timebase of the input timestamps.
24571
24572 @item pts
24573 The PTS (Presentation TimeStamp) of the filtered video frame,
24574 expressed in @var{TB} units. It's NAN if undefined.
24575
24576 @item t
24577 The PTS of the filtered video frame,
24578 expressed in seconds. It's NAN if undefined.
24579
24580 @item prev_pts
24581 The PTS of the previously filtered video frame. It's NAN if undefined.
24582
24583 @item prev_selected_pts
24584 The PTS of the last previously filtered video frame. It's NAN if undefined.
24585
24586 @item prev_selected_t
24587 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24588
24589 @item start_pts
24590 The PTS of the first video frame in the video. It's NAN if undefined.
24591
24592 @item start_t
24593 The time of the first video frame in the video. It's NAN if undefined.
24594
24595 @item pict_type @emph{(video only)}
24596 The type of the filtered frame. It can assume one of the following
24597 values:
24598 @table @option
24599 @item I
24600 @item P
24601 @item B
24602 @item S
24603 @item SI
24604 @item SP
24605 @item BI
24606 @end table
24607
24608 @item interlace_type @emph{(video only)}
24609 The frame interlace type. It can assume one of the following values:
24610 @table @option
24611 @item PROGRESSIVE
24612 The frame is progressive (not interlaced).
24613 @item TOPFIRST
24614 The frame is top-field-first.
24615 @item BOTTOMFIRST
24616 The frame is bottom-field-first.
24617 @end table
24618
24619 @item consumed_sample_n @emph{(audio only)}
24620 the number of selected samples before the current frame
24621
24622 @item samples_n @emph{(audio only)}
24623 the number of samples in the current frame
24624
24625 @item sample_rate @emph{(audio only)}
24626 the input sample rate
24627
24628 @item key
24629 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24630
24631 @item pos
24632 the position in the file of the filtered frame, -1 if the information
24633 is not available (e.g. for synthetic video)
24634
24635 @item scene @emph{(video only)}
24636 value between 0 and 1 to indicate a new scene; a low value reflects a low
24637 probability for the current frame to introduce a new scene, while a higher
24638 value means the current frame is more likely to be one (see the example below)
24639
24640 @item concatdec_select
24641 The concat demuxer can select only part of a concat input file by setting an
24642 inpoint and an outpoint, but the output packets may not be entirely contained
24643 in the selected interval. By using this variable, it is possible to skip frames
24644 generated by the concat demuxer which are not exactly contained in the selected
24645 interval.
24646
24647 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24648 and the @var{lavf.concat.duration} packet metadata values which are also
24649 present in the decoded frames.
24650
24651 The @var{concatdec_select} variable is -1 if the frame pts is at least
24652 start_time and either the duration metadata is missing or the frame pts is less
24653 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24654 missing.
24655
24656 That basically means that an input frame is selected if its pts is within the
24657 interval set by the concat demuxer.
24658
24659 @end table
24660
24661 The default value of the select expression is "1".
24662
24663 @subsection Examples
24664
24665 @itemize
24666 @item
24667 Select all frames in input:
24668 @example
24669 select
24670 @end example
24671
24672 The example above is the same as:
24673 @example
24674 select=1
24675 @end example
24676
24677 @item
24678 Skip all frames:
24679 @example
24680 select=0
24681 @end example
24682
24683 @item
24684 Select only I-frames:
24685 @example
24686 select='eq(pict_type\,I)'
24687 @end example
24688
24689 @item
24690 Select one frame every 100:
24691 @example
24692 select='not(mod(n\,100))'
24693 @end example
24694
24695 @item
24696 Select only frames contained in the 10-20 time interval:
24697 @example
24698 select=between(t\,10\,20)
24699 @end example
24700
24701 @item
24702 Select only I-frames contained in the 10-20 time interval:
24703 @example
24704 select=between(t\,10\,20)*eq(pict_type\,I)
24705 @end example
24706
24707 @item
24708 Select frames with a minimum distance of 10 seconds:
24709 @example
24710 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24711 @end example
24712
24713 @item
24714 Use aselect to select only audio frames with samples number > 100:
24715 @example
24716 aselect='gt(samples_n\,100)'
24717 @end example
24718
24719 @item
24720 Create a mosaic of the first scenes:
24721 @example
24722 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24723 @end example
24724
24725 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24726 choice.
24727
24728 @item
24729 Send even and odd frames to separate outputs, and compose them:
24730 @example
24731 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24732 @end example
24733
24734 @item
24735 Select useful frames from an ffconcat file which is using inpoints and
24736 outpoints but where the source files are not intra frame only.
24737 @example
24738 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24739 @end example
24740 @end itemize
24741
24742 @section sendcmd, asendcmd
24743
24744 Send commands to filters in the filtergraph.
24745
24746 These filters read commands to be sent to other filters in the
24747 filtergraph.
24748
24749 @code{sendcmd} must be inserted between two video filters,
24750 @code{asendcmd} must be inserted between two audio filters, but apart
24751 from that they act the same way.
24752
24753 The specification of commands can be provided in the filter arguments
24754 with the @var{commands} option, or in a file specified by the
24755 @var{filename} option.
24756
24757 These filters accept the following options:
24758 @table @option
24759 @item commands, c
24760 Set the commands to be read and sent to the other filters.
24761 @item filename, f
24762 Set the filename of the commands to be read and sent to the other
24763 filters.
24764 @end table
24765
24766 @subsection Commands syntax
24767
24768 A commands description consists of a sequence of interval
24769 specifications, comprising a list of commands to be executed when a
24770 particular event related to that interval occurs. The occurring event
24771 is typically the current frame time entering or leaving a given time
24772 interval.
24773
24774 An interval is specified by the following syntax:
24775 @example
24776 @var{START}[-@var{END}] @var{COMMANDS};
24777 @end example
24778
24779 The time interval is specified by the @var{START} and @var{END} times.
24780 @var{END} is optional and defaults to the maximum time.
24781
24782 The current frame time is considered within the specified interval if
24783 it is included in the interval [@var{START}, @var{END}), that is when
24784 the time is greater or equal to @var{START} and is lesser than
24785 @var{END}.
24786
24787 @var{COMMANDS} consists of a sequence of one or more command
24788 specifications, separated by ",", relating to that interval.  The
24789 syntax of a command specification is given by:
24790 @example
24791 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
24792 @end example
24793
24794 @var{FLAGS} is optional and specifies the type of events relating to
24795 the time interval which enable sending the specified command, and must
24796 be a non-null sequence of identifier flags separated by "+" or "|" and
24797 enclosed between "[" and "]".
24798
24799 The following flags are recognized:
24800 @table @option
24801 @item enter
24802 The command is sent when the current frame timestamp enters the
24803 specified interval. In other words, the command is sent when the
24804 previous frame timestamp was not in the given interval, and the
24805 current is.
24806
24807 @item leave
24808 The command is sent when the current frame timestamp leaves the
24809 specified interval. In other words, the command is sent when the
24810 previous frame timestamp was in the given interval, and the
24811 current is not.
24812
24813 @item expr
24814 The command @var{ARG} is interpreted as expression and result of
24815 expression is passed as @var{ARG}.
24816
24817 The expression is evaluated through the eval API and can contain the following
24818 constants:
24819
24820 @table @option
24821 @item POS
24822 Original position in the file of the frame, or undefined if undefined
24823 for the current frame.
24824
24825 @item PTS
24826 The presentation timestamp in input.
24827
24828 @item N
24829 The count of the input frame for video or audio, starting from 0.
24830
24831 @item T
24832 The time in seconds of the current frame.
24833
24834 @item TS
24835 The start time in seconds of the current command interval.
24836
24837 @item TE
24838 The end time in seconds of the current command interval.
24839
24840 @item TI
24841 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
24842 @end table
24843
24844 @end table
24845
24846 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
24847 assumed.
24848
24849 @var{TARGET} specifies the target of the command, usually the name of
24850 the filter class or a specific filter instance name.
24851
24852 @var{COMMAND} specifies the name of the command for the target filter.
24853
24854 @var{ARG} is optional and specifies the optional list of argument for
24855 the given @var{COMMAND}.
24856
24857 Between one interval specification and another, whitespaces, or
24858 sequences of characters starting with @code{#} until the end of line,
24859 are ignored and can be used to annotate comments.
24860
24861 A simplified BNF description of the commands specification syntax
24862 follows:
24863 @example
24864 @var{COMMAND_FLAG}  ::= "enter" | "leave"
24865 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
24866 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
24867 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
24868 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
24869 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
24870 @end example
24871
24872 @subsection Examples
24873
24874 @itemize
24875 @item
24876 Specify audio tempo change at second 4:
24877 @example
24878 asendcmd=c='4.0 atempo tempo 1.5',atempo
24879 @end example
24880
24881 @item
24882 Target a specific filter instance:
24883 @example
24884 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
24885 @end example
24886
24887 @item
24888 Specify a list of drawtext and hue commands in a file.
24889 @example
24890 # show text in the interval 5-10
24891 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
24892          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
24893
24894 # desaturate the image in the interval 15-20
24895 15.0-20.0 [enter] hue s 0,
24896           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
24897           [leave] hue s 1,
24898           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
24899
24900 # apply an exponential saturation fade-out effect, starting from time 25
24901 25 [enter] hue s exp(25-t)
24902 @end example
24903
24904 A filtergraph allowing to read and process the above command list
24905 stored in a file @file{test.cmd}, can be specified with:
24906 @example
24907 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
24908 @end example
24909 @end itemize
24910
24911 @anchor{setpts}
24912 @section setpts, asetpts
24913
24914 Change the PTS (presentation timestamp) of the input frames.
24915
24916 @code{setpts} works on video frames, @code{asetpts} on audio frames.
24917
24918 This filter accepts the following options:
24919
24920 @table @option
24921
24922 @item expr
24923 The expression which is evaluated for each frame to construct its timestamp.
24924
24925 @end table
24926
24927 The expression is evaluated through the eval API and can contain the following
24928 constants:
24929
24930 @table @option
24931 @item FRAME_RATE, FR
24932 frame rate, only defined for constant frame-rate video
24933
24934 @item PTS
24935 The presentation timestamp in input
24936
24937 @item N
24938 The count of the input frame for video or the number of consumed samples,
24939 not including the current frame for audio, starting from 0.
24940
24941 @item NB_CONSUMED_SAMPLES
24942 The number of consumed samples, not including the current frame (only
24943 audio)
24944
24945 @item NB_SAMPLES, S
24946 The number of samples in the current frame (only audio)
24947
24948 @item SAMPLE_RATE, SR
24949 The audio sample rate.
24950
24951 @item STARTPTS
24952 The PTS of the first frame.
24953
24954 @item STARTT
24955 the time in seconds of the first frame
24956
24957 @item INTERLACED
24958 State whether the current frame is interlaced.
24959
24960 @item T
24961 the time in seconds of the current frame
24962
24963 @item POS
24964 original position in the file of the frame, or undefined if undefined
24965 for the current frame
24966
24967 @item PREV_INPTS
24968 The previous input PTS.
24969
24970 @item PREV_INT
24971 previous input time in seconds
24972
24973 @item PREV_OUTPTS
24974 The previous output PTS.
24975
24976 @item PREV_OUTT
24977 previous output time in seconds
24978
24979 @item RTCTIME
24980 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
24981 instead.
24982
24983 @item RTCSTART
24984 The wallclock (RTC) time at the start of the movie in microseconds.
24985
24986 @item TB
24987 The timebase of the input timestamps.
24988
24989 @end table
24990
24991 @subsection Examples
24992
24993 @itemize
24994 @item
24995 Start counting PTS from zero
24996 @example
24997 setpts=PTS-STARTPTS
24998 @end example
24999
25000 @item
25001 Apply fast motion effect:
25002 @example
25003 setpts=0.5*PTS
25004 @end example
25005
25006 @item
25007 Apply slow motion effect:
25008 @example
25009 setpts=2.0*PTS
25010 @end example
25011
25012 @item
25013 Set fixed rate of 25 frames per second:
25014 @example
25015 setpts=N/(25*TB)
25016 @end example
25017
25018 @item
25019 Set fixed rate 25 fps with some jitter:
25020 @example
25021 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25022 @end example
25023
25024 @item
25025 Apply an offset of 10 seconds to the input PTS:
25026 @example
25027 setpts=PTS+10/TB
25028 @end example
25029
25030 @item
25031 Generate timestamps from a "live source" and rebase onto the current timebase:
25032 @example
25033 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25034 @end example
25035
25036 @item
25037 Generate timestamps by counting samples:
25038 @example
25039 asetpts=N/SR/TB
25040 @end example
25041
25042 @end itemize
25043
25044 @section setrange
25045
25046 Force color range for the output video frame.
25047
25048 The @code{setrange} filter marks the color range property for the
25049 output frames. It does not change the input frame, but only sets the
25050 corresponding property, which affects how the frame is treated by
25051 following filters.
25052
25053 The filter accepts the following options:
25054
25055 @table @option
25056
25057 @item range
25058 Available values are:
25059
25060 @table @samp
25061 @item auto
25062 Keep the same color range property.
25063
25064 @item unspecified, unknown
25065 Set the color range as unspecified.
25066
25067 @item limited, tv, mpeg
25068 Set the color range as limited.
25069
25070 @item full, pc, jpeg
25071 Set the color range as full.
25072 @end table
25073 @end table
25074
25075 @section settb, asettb
25076
25077 Set the timebase to use for the output frames timestamps.
25078 It is mainly useful for testing timebase configuration.
25079
25080 It accepts the following parameters:
25081
25082 @table @option
25083
25084 @item expr, tb
25085 The expression which is evaluated into the output timebase.
25086
25087 @end table
25088
25089 The value for @option{tb} is an arithmetic expression representing a
25090 rational. The expression can contain the constants "AVTB" (the default
25091 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25092 audio only). Default value is "intb".
25093
25094 @subsection Examples
25095
25096 @itemize
25097 @item
25098 Set the timebase to 1/25:
25099 @example
25100 settb=expr=1/25
25101 @end example
25102
25103 @item
25104 Set the timebase to 1/10:
25105 @example
25106 settb=expr=0.1
25107 @end example
25108
25109 @item
25110 Set the timebase to 1001/1000:
25111 @example
25112 settb=1+0.001
25113 @end example
25114
25115 @item
25116 Set the timebase to 2*intb:
25117 @example
25118 settb=2*intb
25119 @end example
25120
25121 @item
25122 Set the default timebase value:
25123 @example
25124 settb=AVTB
25125 @end example
25126 @end itemize
25127
25128 @section showcqt
25129 Convert input audio to a video output representing frequency spectrum
25130 logarithmically using Brown-Puckette constant Q transform algorithm with
25131 direct frequency domain coefficient calculation (but the transform itself
25132 is not really constant Q, instead the Q factor is actually variable/clamped),
25133 with musical tone scale, from E0 to D#10.
25134
25135 The filter accepts the following options:
25136
25137 @table @option
25138 @item size, s
25139 Specify the video size for the output. It must be even. For the syntax of this option,
25140 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25141 Default value is @code{1920x1080}.
25142
25143 @item fps, rate, r
25144 Set the output frame rate. Default value is @code{25}.
25145
25146 @item bar_h
25147 Set the bargraph height. It must be even. Default value is @code{-1} which
25148 computes the bargraph height automatically.
25149
25150 @item axis_h
25151 Set the axis height. It must be even. Default value is @code{-1} which computes
25152 the axis height automatically.
25153
25154 @item sono_h
25155 Set the sonogram height. It must be even. Default value is @code{-1} which
25156 computes the sonogram height automatically.
25157
25158 @item fullhd
25159 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25160 instead. Default value is @code{1}.
25161
25162 @item sono_v, volume
25163 Specify the sonogram volume expression. It can contain variables:
25164 @table @option
25165 @item bar_v
25166 the @var{bar_v} evaluated expression
25167 @item frequency, freq, f
25168 the frequency where it is evaluated
25169 @item timeclamp, tc
25170 the value of @var{timeclamp} option
25171 @end table
25172 and functions:
25173 @table @option
25174 @item a_weighting(f)
25175 A-weighting of equal loudness
25176 @item b_weighting(f)
25177 B-weighting of equal loudness
25178 @item c_weighting(f)
25179 C-weighting of equal loudness.
25180 @end table
25181 Default value is @code{16}.
25182
25183 @item bar_v, volume2
25184 Specify the bargraph volume expression. It can contain variables:
25185 @table @option
25186 @item sono_v
25187 the @var{sono_v} evaluated expression
25188 @item frequency, freq, f
25189 the frequency where it is evaluated
25190 @item timeclamp, tc
25191 the value of @var{timeclamp} option
25192 @end table
25193 and functions:
25194 @table @option
25195 @item a_weighting(f)
25196 A-weighting of equal loudness
25197 @item b_weighting(f)
25198 B-weighting of equal loudness
25199 @item c_weighting(f)
25200 C-weighting of equal loudness.
25201 @end table
25202 Default value is @code{sono_v}.
25203
25204 @item sono_g, gamma
25205 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25206 higher gamma makes the spectrum having more range. Default value is @code{3}.
25207 Acceptable range is @code{[1, 7]}.
25208
25209 @item bar_g, gamma2
25210 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25211 @code{[1, 7]}.
25212
25213 @item bar_t
25214 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25215 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25216
25217 @item timeclamp, tc
25218 Specify the transform timeclamp. At low frequency, there is trade-off between
25219 accuracy in time domain and frequency domain. If timeclamp is lower,
25220 event in time domain is represented more accurately (such as fast bass drum),
25221 otherwise event in frequency domain is represented more accurately
25222 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25223
25224 @item attack
25225 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25226 limits future samples by applying asymmetric windowing in time domain, useful
25227 when low latency is required. Accepted range is @code{[0, 1]}.
25228
25229 @item basefreq
25230 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25231 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25232
25233 @item endfreq
25234 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25235 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25236
25237 @item coeffclamp
25238 This option is deprecated and ignored.
25239
25240 @item tlength
25241 Specify the transform length in time domain. Use this option to control accuracy
25242 trade-off between time domain and frequency domain at every frequency sample.
25243 It can contain variables:
25244 @table @option
25245 @item frequency, freq, f
25246 the frequency where it is evaluated
25247 @item timeclamp, tc
25248 the value of @var{timeclamp} option.
25249 @end table
25250 Default value is @code{384*tc/(384+tc*f)}.
25251
25252 @item count
25253 Specify the transform count for every video frame. Default value is @code{6}.
25254 Acceptable range is @code{[1, 30]}.
25255
25256 @item fcount
25257 Specify the transform count for every single pixel. Default value is @code{0},
25258 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25259
25260 @item fontfile
25261 Specify font file for use with freetype to draw the axis. If not specified,
25262 use embedded font. Note that drawing with font file or embedded font is not
25263 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25264 option instead.
25265
25266 @item font
25267 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25268 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25269 escaping.
25270
25271 @item fontcolor
25272 Specify font color expression. This is arithmetic expression that should return
25273 integer value 0xRRGGBB. It can contain variables:
25274 @table @option
25275 @item frequency, freq, f
25276 the frequency where it is evaluated
25277 @item timeclamp, tc
25278 the value of @var{timeclamp} option
25279 @end table
25280 and functions:
25281 @table @option
25282 @item midi(f)
25283 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25284 @item r(x), g(x), b(x)
25285 red, green, and blue value of intensity x.
25286 @end table
25287 Default value is @code{st(0, (midi(f)-59.5)/12);
25288 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25289 r(1-ld(1)) + b(ld(1))}.
25290
25291 @item axisfile
25292 Specify image file to draw the axis. This option override @var{fontfile} and
25293 @var{fontcolor} option.
25294
25295 @item axis, text
25296 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25297 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25298 Default value is @code{1}.
25299
25300 @item csp
25301 Set colorspace. The accepted values are:
25302 @table @samp
25303 @item unspecified
25304 Unspecified (default)
25305
25306 @item bt709
25307 BT.709
25308
25309 @item fcc
25310 FCC
25311
25312 @item bt470bg
25313 BT.470BG or BT.601-6 625
25314
25315 @item smpte170m
25316 SMPTE-170M or BT.601-6 525
25317
25318 @item smpte240m
25319 SMPTE-240M
25320
25321 @item bt2020ncl
25322 BT.2020 with non-constant luminance
25323
25324 @end table
25325
25326 @item cscheme
25327 Set spectrogram color scheme. This is list of floating point values with format
25328 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25329 The default is @code{1|0.5|0|0|0.5|1}.
25330
25331 @end table
25332
25333 @subsection Examples
25334
25335 @itemize
25336 @item
25337 Playing audio while showing the spectrum:
25338 @example
25339 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25340 @end example
25341
25342 @item
25343 Same as above, but with frame rate 30 fps:
25344 @example
25345 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25346 @end example
25347
25348 @item
25349 Playing at 1280x720:
25350 @example
25351 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25352 @end example
25353
25354 @item
25355 Disable sonogram display:
25356 @example
25357 sono_h=0
25358 @end example
25359
25360 @item
25361 A1 and its harmonics: A1, A2, (near)E3, A3:
25362 @example
25363 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),
25364                  asplit[a][out1]; [a] showcqt [out0]'
25365 @end example
25366
25367 @item
25368 Same as above, but with more accuracy in frequency domain:
25369 @example
25370 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),
25371                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25372 @end example
25373
25374 @item
25375 Custom volume:
25376 @example
25377 bar_v=10:sono_v=bar_v*a_weighting(f)
25378 @end example
25379
25380 @item
25381 Custom gamma, now spectrum is linear to the amplitude.
25382 @example
25383 bar_g=2:sono_g=2
25384 @end example
25385
25386 @item
25387 Custom tlength equation:
25388 @example
25389 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)))'
25390 @end example
25391
25392 @item
25393 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25394 @example
25395 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25396 @end example
25397
25398 @item
25399 Custom font using fontconfig:
25400 @example
25401 font='Courier New,Monospace,mono|bold'
25402 @end example
25403
25404 @item
25405 Custom frequency range with custom axis using image file:
25406 @example
25407 axisfile=myaxis.png:basefreq=40:endfreq=10000
25408 @end example
25409 @end itemize
25410
25411 @section showfreqs
25412
25413 Convert input audio to video output representing the audio power spectrum.
25414 Audio amplitude is on Y-axis while frequency is on X-axis.
25415
25416 The filter accepts the following options:
25417
25418 @table @option
25419 @item size, s
25420 Specify size of video. For the syntax of this option, check the
25421 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25422 Default is @code{1024x512}.
25423
25424 @item mode
25425 Set display mode.
25426 This set how each frequency bin will be represented.
25427
25428 It accepts the following values:
25429 @table @samp
25430 @item line
25431 @item bar
25432 @item dot
25433 @end table
25434 Default is @code{bar}.
25435
25436 @item ascale
25437 Set amplitude scale.
25438
25439 It accepts the following values:
25440 @table @samp
25441 @item lin
25442 Linear scale.
25443
25444 @item sqrt
25445 Square root scale.
25446
25447 @item cbrt
25448 Cubic root scale.
25449
25450 @item log
25451 Logarithmic scale.
25452 @end table
25453 Default is @code{log}.
25454
25455 @item fscale
25456 Set frequency scale.
25457
25458 It accepts the following values:
25459 @table @samp
25460 @item lin
25461 Linear scale.
25462
25463 @item log
25464 Logarithmic scale.
25465
25466 @item rlog
25467 Reverse logarithmic scale.
25468 @end table
25469 Default is @code{lin}.
25470
25471 @item win_size
25472 Set window size. Allowed range is from 16 to 65536.
25473
25474 Default is @code{2048}
25475
25476 @item win_func
25477 Set windowing function.
25478
25479 It accepts the following values:
25480 @table @samp
25481 @item rect
25482 @item bartlett
25483 @item hanning
25484 @item hamming
25485 @item blackman
25486 @item welch
25487 @item flattop
25488 @item bharris
25489 @item bnuttall
25490 @item bhann
25491 @item sine
25492 @item nuttall
25493 @item lanczos
25494 @item gauss
25495 @item tukey
25496 @item dolph
25497 @item cauchy
25498 @item parzen
25499 @item poisson
25500 @item bohman
25501 @end table
25502 Default is @code{hanning}.
25503
25504 @item overlap
25505 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25506 which means optimal overlap for selected window function will be picked.
25507
25508 @item averaging
25509 Set time averaging. Setting this to 0 will display current maximal peaks.
25510 Default is @code{1}, which means time averaging is disabled.
25511
25512 @item colors
25513 Specify list of colors separated by space or by '|' which will be used to
25514 draw channel frequencies. Unrecognized or missing colors will be replaced
25515 by white color.
25516
25517 @item cmode
25518 Set channel display mode.
25519
25520 It accepts the following values:
25521 @table @samp
25522 @item combined
25523 @item separate
25524 @end table
25525 Default is @code{combined}.
25526
25527 @item minamp
25528 Set minimum amplitude used in @code{log} amplitude scaler.
25529
25530 @item data
25531 Set data display mode.
25532
25533 It accepts the following values:
25534 @table @samp
25535 @item magnitude
25536 @item phase
25537 @item delay
25538 @end table
25539 Default is @code{magnitude}.
25540 @end table
25541
25542 @section showspatial
25543
25544 Convert stereo input audio to a video output, representing the spatial relationship
25545 between two channels.
25546
25547 The filter accepts the following options:
25548
25549 @table @option
25550 @item size, s
25551 Specify the video size for the output. For the syntax of this option, check the
25552 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25553 Default value is @code{512x512}.
25554
25555 @item win_size
25556 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25557
25558 @item win_func
25559 Set window function.
25560
25561 It accepts the following values:
25562 @table @samp
25563 @item rect
25564 @item bartlett
25565 @item hann
25566 @item hanning
25567 @item hamming
25568 @item blackman
25569 @item welch
25570 @item flattop
25571 @item bharris
25572 @item bnuttall
25573 @item bhann
25574 @item sine
25575 @item nuttall
25576 @item lanczos
25577 @item gauss
25578 @item tukey
25579 @item dolph
25580 @item cauchy
25581 @item parzen
25582 @item poisson
25583 @item bohman
25584 @end table
25585
25586 Default value is @code{hann}.
25587
25588 @item overlap
25589 Set ratio of overlap window. Default value is @code{0.5}.
25590 When value is @code{1} overlap is set to recommended size for specific
25591 window function currently used.
25592 @end table
25593
25594 @anchor{showspectrum}
25595 @section showspectrum
25596
25597 Convert input audio to a video output, representing the audio frequency
25598 spectrum.
25599
25600 The filter accepts the following options:
25601
25602 @table @option
25603 @item size, s
25604 Specify the video size for the output. For the syntax of this option, check the
25605 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25606 Default value is @code{640x512}.
25607
25608 @item slide
25609 Specify how the spectrum should slide along the window.
25610
25611 It accepts the following values:
25612 @table @samp
25613 @item replace
25614 the samples start again on the left when they reach the right
25615 @item scroll
25616 the samples scroll from right to left
25617 @item fullframe
25618 frames are only produced when the samples reach the right
25619 @item rscroll
25620 the samples scroll from left to right
25621 @end table
25622
25623 Default value is @code{replace}.
25624
25625 @item mode
25626 Specify display mode.
25627
25628 It accepts the following values:
25629 @table @samp
25630 @item combined
25631 all channels are displayed in the same row
25632 @item separate
25633 all channels are displayed in separate rows
25634 @end table
25635
25636 Default value is @samp{combined}.
25637
25638 @item color
25639 Specify display color mode.
25640
25641 It accepts the following values:
25642 @table @samp
25643 @item channel
25644 each channel is displayed in a separate color
25645 @item intensity
25646 each channel is displayed using the same color scheme
25647 @item rainbow
25648 each channel is displayed using the rainbow color scheme
25649 @item moreland
25650 each channel is displayed using the moreland color scheme
25651 @item nebulae
25652 each channel is displayed using the nebulae color scheme
25653 @item fire
25654 each channel is displayed using the fire color scheme
25655 @item fiery
25656 each channel is displayed using the fiery color scheme
25657 @item fruit
25658 each channel is displayed using the fruit color scheme
25659 @item cool
25660 each channel is displayed using the cool color scheme
25661 @item magma
25662 each channel is displayed using the magma color scheme
25663 @item green
25664 each channel is displayed using the green color scheme
25665 @item viridis
25666 each channel is displayed using the viridis color scheme
25667 @item plasma
25668 each channel is displayed using the plasma color scheme
25669 @item cividis
25670 each channel is displayed using the cividis color scheme
25671 @item terrain
25672 each channel is displayed using the terrain color scheme
25673 @end table
25674
25675 Default value is @samp{channel}.
25676
25677 @item scale
25678 Specify scale used for calculating intensity color values.
25679
25680 It accepts the following values:
25681 @table @samp
25682 @item lin
25683 linear
25684 @item sqrt
25685 square root, default
25686 @item cbrt
25687 cubic root
25688 @item log
25689 logarithmic
25690 @item 4thrt
25691 4th root
25692 @item 5thrt
25693 5th root
25694 @end table
25695
25696 Default value is @samp{sqrt}.
25697
25698 @item fscale
25699 Specify frequency scale.
25700
25701 It accepts the following values:
25702 @table @samp
25703 @item lin
25704 linear
25705 @item log
25706 logarithmic
25707 @end table
25708
25709 Default value is @samp{lin}.
25710
25711 @item saturation
25712 Set saturation modifier for displayed colors. Negative values provide
25713 alternative color scheme. @code{0} is no saturation at all.
25714 Saturation must be in [-10.0, 10.0] range.
25715 Default value is @code{1}.
25716
25717 @item win_func
25718 Set window function.
25719
25720 It accepts the following values:
25721 @table @samp
25722 @item rect
25723 @item bartlett
25724 @item hann
25725 @item hanning
25726 @item hamming
25727 @item blackman
25728 @item welch
25729 @item flattop
25730 @item bharris
25731 @item bnuttall
25732 @item bhann
25733 @item sine
25734 @item nuttall
25735 @item lanczos
25736 @item gauss
25737 @item tukey
25738 @item dolph
25739 @item cauchy
25740 @item parzen
25741 @item poisson
25742 @item bohman
25743 @end table
25744
25745 Default value is @code{hann}.
25746
25747 @item orientation
25748 Set orientation of time vs frequency axis. Can be @code{vertical} or
25749 @code{horizontal}. Default is @code{vertical}.
25750
25751 @item overlap
25752 Set ratio of overlap window. Default value is @code{0}.
25753 When value is @code{1} overlap is set to recommended size for specific
25754 window function currently used.
25755
25756 @item gain
25757 Set scale gain for calculating intensity color values.
25758 Default value is @code{1}.
25759
25760 @item data
25761 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25762
25763 @item rotation
25764 Set color rotation, must be in [-1.0, 1.0] range.
25765 Default value is @code{0}.
25766
25767 @item start
25768 Set start frequency from which to display spectrogram. Default is @code{0}.
25769
25770 @item stop
25771 Set stop frequency to which to display spectrogram. Default is @code{0}.
25772
25773 @item fps
25774 Set upper frame rate limit. Default is @code{auto}, unlimited.
25775
25776 @item legend
25777 Draw time and frequency axes and legends. Default is disabled.
25778 @end table
25779
25780 The usage is very similar to the showwaves filter; see the examples in that
25781 section.
25782
25783 @subsection Examples
25784
25785 @itemize
25786 @item
25787 Large window with logarithmic color scaling:
25788 @example
25789 showspectrum=s=1280x480:scale=log
25790 @end example
25791
25792 @item
25793 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
25794 @example
25795 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
25796              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
25797 @end example
25798 @end itemize
25799
25800 @section showspectrumpic
25801
25802 Convert input audio to a single video frame, representing the audio frequency
25803 spectrum.
25804
25805 The filter accepts the following options:
25806
25807 @table @option
25808 @item size, s
25809 Specify the video size for the output. For the syntax of this option, check the
25810 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25811 Default value is @code{4096x2048}.
25812
25813 @item mode
25814 Specify display mode.
25815
25816 It accepts the following values:
25817 @table @samp
25818 @item combined
25819 all channels are displayed in the same row
25820 @item separate
25821 all channels are displayed in separate rows
25822 @end table
25823 Default value is @samp{combined}.
25824
25825 @item color
25826 Specify display color mode.
25827
25828 It accepts the following values:
25829 @table @samp
25830 @item channel
25831 each channel is displayed in a separate color
25832 @item intensity
25833 each channel is displayed using the same color scheme
25834 @item rainbow
25835 each channel is displayed using the rainbow color scheme
25836 @item moreland
25837 each channel is displayed using the moreland color scheme
25838 @item nebulae
25839 each channel is displayed using the nebulae color scheme
25840 @item fire
25841 each channel is displayed using the fire color scheme
25842 @item fiery
25843 each channel is displayed using the fiery color scheme
25844 @item fruit
25845 each channel is displayed using the fruit color scheme
25846 @item cool
25847 each channel is displayed using the cool color scheme
25848 @item magma
25849 each channel is displayed using the magma color scheme
25850 @item green
25851 each channel is displayed using the green color scheme
25852 @item viridis
25853 each channel is displayed using the viridis color scheme
25854 @item plasma
25855 each channel is displayed using the plasma color scheme
25856 @item cividis
25857 each channel is displayed using the cividis color scheme
25858 @item terrain
25859 each channel is displayed using the terrain color scheme
25860 @end table
25861 Default value is @samp{intensity}.
25862
25863 @item scale
25864 Specify scale used for calculating intensity color values.
25865
25866 It accepts the following values:
25867 @table @samp
25868 @item lin
25869 linear
25870 @item sqrt
25871 square root, default
25872 @item cbrt
25873 cubic root
25874 @item log
25875 logarithmic
25876 @item 4thrt
25877 4th root
25878 @item 5thrt
25879 5th root
25880 @end table
25881 Default value is @samp{log}.
25882
25883 @item fscale
25884 Specify frequency scale.
25885
25886 It accepts the following values:
25887 @table @samp
25888 @item lin
25889 linear
25890 @item log
25891 logarithmic
25892 @end table
25893
25894 Default value is @samp{lin}.
25895
25896 @item saturation
25897 Set saturation modifier for displayed colors. Negative values provide
25898 alternative color scheme. @code{0} is no saturation at all.
25899 Saturation must be in [-10.0, 10.0] range.
25900 Default value is @code{1}.
25901
25902 @item win_func
25903 Set window function.
25904
25905 It accepts the following values:
25906 @table @samp
25907 @item rect
25908 @item bartlett
25909 @item hann
25910 @item hanning
25911 @item hamming
25912 @item blackman
25913 @item welch
25914 @item flattop
25915 @item bharris
25916 @item bnuttall
25917 @item bhann
25918 @item sine
25919 @item nuttall
25920 @item lanczos
25921 @item gauss
25922 @item tukey
25923 @item dolph
25924 @item cauchy
25925 @item parzen
25926 @item poisson
25927 @item bohman
25928 @end table
25929 Default value is @code{hann}.
25930
25931 @item orientation
25932 Set orientation of time vs frequency axis. Can be @code{vertical} or
25933 @code{horizontal}. Default is @code{vertical}.
25934
25935 @item gain
25936 Set scale gain for calculating intensity color values.
25937 Default value is @code{1}.
25938
25939 @item legend
25940 Draw time and frequency axes and legends. Default is enabled.
25941
25942 @item rotation
25943 Set color rotation, must be in [-1.0, 1.0] range.
25944 Default value is @code{0}.
25945
25946 @item start
25947 Set start frequency from which to display spectrogram. Default is @code{0}.
25948
25949 @item stop
25950 Set stop frequency to which to display spectrogram. Default is @code{0}.
25951 @end table
25952
25953 @subsection Examples
25954
25955 @itemize
25956 @item
25957 Extract an audio spectrogram of a whole audio track
25958 in a 1024x1024 picture using @command{ffmpeg}:
25959 @example
25960 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
25961 @end example
25962 @end itemize
25963
25964 @section showvolume
25965
25966 Convert input audio volume to a video output.
25967
25968 The filter accepts the following options:
25969
25970 @table @option
25971 @item rate, r
25972 Set video rate.
25973
25974 @item b
25975 Set border width, allowed range is [0, 5]. Default is 1.
25976
25977 @item w
25978 Set channel width, allowed range is [80, 8192]. Default is 400.
25979
25980 @item h
25981 Set channel height, allowed range is [1, 900]. Default is 20.
25982
25983 @item f
25984 Set fade, allowed range is [0, 1]. Default is 0.95.
25985
25986 @item c
25987 Set volume color expression.
25988
25989 The expression can use the following variables:
25990
25991 @table @option
25992 @item VOLUME
25993 Current max volume of channel in dB.
25994
25995 @item PEAK
25996 Current peak.
25997
25998 @item CHANNEL
25999 Current channel number, starting from 0.
26000 @end table
26001
26002 @item t
26003 If set, displays channel names. Default is enabled.
26004
26005 @item v
26006 If set, displays volume values. Default is enabled.
26007
26008 @item o
26009 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26010 default is @code{h}.
26011
26012 @item s
26013 Set step size, allowed range is [0, 5]. Default is 0, which means
26014 step is disabled.
26015
26016 @item p
26017 Set background opacity, allowed range is [0, 1]. Default is 0.
26018
26019 @item m
26020 Set metering mode, can be peak: @code{p} or rms: @code{r},
26021 default is @code{p}.
26022
26023 @item ds
26024 Set display scale, can be linear: @code{lin} or log: @code{log},
26025 default is @code{lin}.
26026
26027 @item dm
26028 In second.
26029 If set to > 0., display a line for the max level
26030 in the previous seconds.
26031 default is disabled: @code{0.}
26032
26033 @item dmc
26034 The color of the max line. Use when @code{dm} option is set to > 0.
26035 default is: @code{orange}
26036 @end table
26037
26038 @section showwaves
26039
26040 Convert input audio to a video output, representing the samples waves.
26041
26042 The filter accepts the following options:
26043
26044 @table @option
26045 @item size, s
26046 Specify the video size for the output. For the syntax of this option, check the
26047 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26048 Default value is @code{600x240}.
26049
26050 @item mode
26051 Set display mode.
26052
26053 Available values are:
26054 @table @samp
26055 @item point
26056 Draw a point for each sample.
26057
26058 @item line
26059 Draw a vertical line for each sample.
26060
26061 @item p2p
26062 Draw a point for each sample and a line between them.
26063
26064 @item cline
26065 Draw a centered vertical line for each sample.
26066 @end table
26067
26068 Default value is @code{point}.
26069
26070 @item n
26071 Set the number of samples which are printed on the same column. A
26072 larger value will decrease the frame rate. Must be a positive
26073 integer. This option can be set only if the value for @var{rate}
26074 is not explicitly specified.
26075
26076 @item rate, r
26077 Set the (approximate) output frame rate. This is done by setting the
26078 option @var{n}. Default value is "25".
26079
26080 @item split_channels
26081 Set if channels should be drawn separately or overlap. Default value is 0.
26082
26083 @item colors
26084 Set colors separated by '|' which are going to be used for drawing of each channel.
26085
26086 @item scale
26087 Set amplitude scale.
26088
26089 Available values are:
26090 @table @samp
26091 @item lin
26092 Linear.
26093
26094 @item log
26095 Logarithmic.
26096
26097 @item sqrt
26098 Square root.
26099
26100 @item cbrt
26101 Cubic root.
26102 @end table
26103
26104 Default is linear.
26105
26106 @item draw
26107 Set the draw mode. This is mostly useful to set for high @var{n}.
26108
26109 Available values are:
26110 @table @samp
26111 @item scale
26112 Scale pixel values for each drawn sample.
26113
26114 @item full
26115 Draw every sample directly.
26116 @end table
26117
26118 Default value is @code{scale}.
26119 @end table
26120
26121 @subsection Examples
26122
26123 @itemize
26124 @item
26125 Output the input file audio and the corresponding video representation
26126 at the same time:
26127 @example
26128 amovie=a.mp3,asplit[out0],showwaves[out1]
26129 @end example
26130
26131 @item
26132 Create a synthetic signal and show it with showwaves, forcing a
26133 frame rate of 30 frames per second:
26134 @example
26135 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26136 @end example
26137 @end itemize
26138
26139 @section showwavespic
26140
26141 Convert input audio to a single video frame, representing the samples waves.
26142
26143 The filter accepts the following options:
26144
26145 @table @option
26146 @item size, s
26147 Specify the video size for the output. For the syntax of this option, check the
26148 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26149 Default value is @code{600x240}.
26150
26151 @item split_channels
26152 Set if channels should be drawn separately or overlap. Default value is 0.
26153
26154 @item colors
26155 Set colors separated by '|' which are going to be used for drawing of each channel.
26156
26157 @item scale
26158 Set amplitude scale.
26159
26160 Available values are:
26161 @table @samp
26162 @item lin
26163 Linear.
26164
26165 @item log
26166 Logarithmic.
26167
26168 @item sqrt
26169 Square root.
26170
26171 @item cbrt
26172 Cubic root.
26173 @end table
26174
26175 Default is linear.
26176
26177 @item draw
26178 Set the draw mode.
26179
26180 Available values are:
26181 @table @samp
26182 @item scale
26183 Scale pixel values for each drawn sample.
26184
26185 @item full
26186 Draw every sample directly.
26187 @end table
26188
26189 Default value is @code{scale}.
26190
26191 @item filter
26192 Set the filter mode.
26193
26194 Available values are:
26195 @table @samp
26196 @item average
26197 Use average samples values for each drawn sample.
26198
26199 @item peak
26200 Use peak samples values for each drawn sample.
26201 @end table
26202
26203 Default value is @code{average}.
26204 @end table
26205
26206 @subsection Examples
26207
26208 @itemize
26209 @item
26210 Extract a channel split representation of the wave form of a whole audio track
26211 in a 1024x800 picture using @command{ffmpeg}:
26212 @example
26213 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26214 @end example
26215 @end itemize
26216
26217 @section sidedata, asidedata
26218
26219 Delete frame side data, or select frames based on it.
26220
26221 This filter accepts the following options:
26222
26223 @table @option
26224 @item mode
26225 Set mode of operation of the filter.
26226
26227 Can be one of the following:
26228
26229 @table @samp
26230 @item select
26231 Select every frame with side data of @code{type}.
26232
26233 @item delete
26234 Delete side data of @code{type}. If @code{type} is not set, delete all side
26235 data in the frame.
26236
26237 @end table
26238
26239 @item type
26240 Set side data type used with all modes. Must be set for @code{select} mode. For
26241 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26242 in @file{libavutil/frame.h}. For example, to choose
26243 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26244
26245 @end table
26246
26247 @section spectrumsynth
26248
26249 Synthesize audio from 2 input video spectrums, first input stream represents
26250 magnitude across time and second represents phase across time.
26251 The filter will transform from frequency domain as displayed in videos back
26252 to time domain as presented in audio output.
26253
26254 This filter is primarily created for reversing processed @ref{showspectrum}
26255 filter outputs, but can synthesize sound from other spectrograms too.
26256 But in such case results are going to be poor if the phase data is not
26257 available, because in such cases phase data need to be recreated, usually
26258 it's just recreated from random noise.
26259 For best results use gray only output (@code{channel} color mode in
26260 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26261 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26262 @code{data} option. Inputs videos should generally use @code{fullframe}
26263 slide mode as that saves resources needed for decoding video.
26264
26265 The filter accepts the following options:
26266
26267 @table @option
26268 @item sample_rate
26269 Specify sample rate of output audio, the sample rate of audio from which
26270 spectrum was generated may differ.
26271
26272 @item channels
26273 Set number of channels represented in input video spectrums.
26274
26275 @item scale
26276 Set scale which was used when generating magnitude input spectrum.
26277 Can be @code{lin} or @code{log}. Default is @code{log}.
26278
26279 @item slide
26280 Set slide which was used when generating inputs spectrums.
26281 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26282 Default is @code{fullframe}.
26283
26284 @item win_func
26285 Set window function used for resynthesis.
26286
26287 @item overlap
26288 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26289 which means optimal overlap for selected window function will be picked.
26290
26291 @item orientation
26292 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26293 Default is @code{vertical}.
26294 @end table
26295
26296 @subsection Examples
26297
26298 @itemize
26299 @item
26300 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26301 then resynthesize videos back to audio with spectrumsynth:
26302 @example
26303 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
26304 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
26305 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26306 @end example
26307 @end itemize
26308
26309 @section split, asplit
26310
26311 Split input into several identical outputs.
26312
26313 @code{asplit} works with audio input, @code{split} with video.
26314
26315 The filter accepts a single parameter which specifies the number of outputs. If
26316 unspecified, it defaults to 2.
26317
26318 @subsection Examples
26319
26320 @itemize
26321 @item
26322 Create two separate outputs from the same input:
26323 @example
26324 [in] split [out0][out1]
26325 @end example
26326
26327 @item
26328 To create 3 or more outputs, you need to specify the number of
26329 outputs, like in:
26330 @example
26331 [in] asplit=3 [out0][out1][out2]
26332 @end example
26333
26334 @item
26335 Create two separate outputs from the same input, one cropped and
26336 one padded:
26337 @example
26338 [in] split [splitout1][splitout2];
26339 [splitout1] crop=100:100:0:0    [cropout];
26340 [splitout2] pad=200:200:100:100 [padout];
26341 @end example
26342
26343 @item
26344 Create 5 copies of the input audio with @command{ffmpeg}:
26345 @example
26346 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26347 @end example
26348 @end itemize
26349
26350 @section zmq, azmq
26351
26352 Receive commands sent through a libzmq client, and forward them to
26353 filters in the filtergraph.
26354
26355 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26356 must be inserted between two video filters, @code{azmq} between two
26357 audio filters. Both are capable to send messages to any filter type.
26358
26359 To enable these filters you need to install the libzmq library and
26360 headers and configure FFmpeg with @code{--enable-libzmq}.
26361
26362 For more information about libzmq see:
26363 @url{http://www.zeromq.org/}
26364
26365 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26366 receives messages sent through a network interface defined by the
26367 @option{bind_address} (or the abbreviation "@option{b}") option.
26368 Default value of this option is @file{tcp://localhost:5555}. You may
26369 want to alter this value to your needs, but do not forget to escape any
26370 ':' signs (see @ref{filtergraph escaping}).
26371
26372 The received message must be in the form:
26373 @example
26374 @var{TARGET} @var{COMMAND} [@var{ARG}]
26375 @end example
26376
26377 @var{TARGET} specifies the target of the command, usually the name of
26378 the filter class or a specific filter instance name. The default
26379 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26380 but you can override this by using the @samp{filter_name@@id} syntax
26381 (see @ref{Filtergraph syntax}).
26382
26383 @var{COMMAND} specifies the name of the command for the target filter.
26384
26385 @var{ARG} is optional and specifies the optional argument list for the
26386 given @var{COMMAND}.
26387
26388 Upon reception, the message is processed and the corresponding command
26389 is injected into the filtergraph. Depending on the result, the filter
26390 will send a reply to the client, adopting the format:
26391 @example
26392 @var{ERROR_CODE} @var{ERROR_REASON}
26393 @var{MESSAGE}
26394 @end example
26395
26396 @var{MESSAGE} is optional.
26397
26398 @subsection Examples
26399
26400 Look at @file{tools/zmqsend} for an example of a zmq client which can
26401 be used to send commands processed by these filters.
26402
26403 Consider the following filtergraph generated by @command{ffplay}.
26404 In this example the last overlay filter has an instance name. All other
26405 filters will have default instance names.
26406
26407 @example
26408 ffplay -dumpgraph 1 -f lavfi "
26409 color=s=100x100:c=red  [l];
26410 color=s=100x100:c=blue [r];
26411 nullsrc=s=200x100, zmq [bg];
26412 [bg][l]   overlay     [bg+l];
26413 [bg+l][r] overlay@@my=x=100 "
26414 @end example
26415
26416 To change the color of the left side of the video, the following
26417 command can be used:
26418 @example
26419 echo Parsed_color_0 c yellow | tools/zmqsend
26420 @end example
26421
26422 To change the right side:
26423 @example
26424 echo Parsed_color_1 c pink | tools/zmqsend
26425 @end example
26426
26427 To change the position of the right side:
26428 @example
26429 echo overlay@@my x 150 | tools/zmqsend
26430 @end example
26431
26432
26433 @c man end MULTIMEDIA FILTERS
26434
26435 @chapter Multimedia Sources
26436 @c man begin MULTIMEDIA SOURCES
26437
26438 Below is a description of the currently available multimedia sources.
26439
26440 @section amovie
26441
26442 This is the same as @ref{movie} source, except it selects an audio
26443 stream by default.
26444
26445 @anchor{movie}
26446 @section movie
26447
26448 Read audio and/or video stream(s) from a movie container.
26449
26450 It accepts the following parameters:
26451
26452 @table @option
26453 @item filename
26454 The name of the resource to read (not necessarily a file; it can also be a
26455 device or a stream accessed through some protocol).
26456
26457 @item format_name, f
26458 Specifies the format assumed for the movie to read, and can be either
26459 the name of a container or an input device. If not specified, the
26460 format is guessed from @var{movie_name} or by probing.
26461
26462 @item seek_point, sp
26463 Specifies the seek point in seconds. The frames will be output
26464 starting from this seek point. The parameter is evaluated with
26465 @code{av_strtod}, so the numerical value may be suffixed by an IS
26466 postfix. The default value is "0".
26467
26468 @item streams, s
26469 Specifies the streams to read. Several streams can be specified,
26470 separated by "+". The source will then have as many outputs, in the
26471 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26472 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26473 respectively the default (best suited) video and audio stream. Default
26474 is "dv", or "da" if the filter is called as "amovie".
26475
26476 @item stream_index, si
26477 Specifies the index of the video stream to read. If the value is -1,
26478 the most suitable video stream will be automatically selected. The default
26479 value is "-1". Deprecated. If the filter is called "amovie", it will select
26480 audio instead of video.
26481
26482 @item loop
26483 Specifies how many times to read the stream in sequence.
26484 If the value is 0, the stream will be looped infinitely.
26485 Default value is "1".
26486
26487 Note that when the movie is looped the source timestamps are not
26488 changed, so it will generate non monotonically increasing timestamps.
26489
26490 @item discontinuity
26491 Specifies the time difference between frames above which the point is
26492 considered a timestamp discontinuity which is removed by adjusting the later
26493 timestamps.
26494 @end table
26495
26496 It allows overlaying a second video on top of the main input of
26497 a filtergraph, as shown in this graph:
26498 @example
26499 input -----------> deltapts0 --> overlay --> output
26500                                     ^
26501                                     |
26502 movie --> scale--> deltapts1 -------+
26503 @end example
26504 @subsection Examples
26505
26506 @itemize
26507 @item
26508 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26509 on top of the input labelled "in":
26510 @example
26511 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26512 [in] setpts=PTS-STARTPTS [main];
26513 [main][over] overlay=16:16 [out]
26514 @end example
26515
26516 @item
26517 Read from a video4linux2 device, and overlay it on top of the input
26518 labelled "in":
26519 @example
26520 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26521 [in] setpts=PTS-STARTPTS [main];
26522 [main][over] overlay=16:16 [out]
26523 @end example
26524
26525 @item
26526 Read the first video stream and the audio stream with id 0x81 from
26527 dvd.vob; the video is connected to the pad named "video" and the audio is
26528 connected to the pad named "audio":
26529 @example
26530 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26531 @end example
26532 @end itemize
26533
26534 @subsection Commands
26535
26536 Both movie and amovie support the following commands:
26537 @table @option
26538 @item seek
26539 Perform seek using "av_seek_frame".
26540 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26541 @itemize
26542 @item
26543 @var{stream_index}: If stream_index is -1, a default
26544 stream is selected, and @var{timestamp} is automatically converted
26545 from AV_TIME_BASE units to the stream specific time_base.
26546 @item
26547 @var{timestamp}: Timestamp in AVStream.time_base units
26548 or, if no stream is specified, in AV_TIME_BASE units.
26549 @item
26550 @var{flags}: Flags which select direction and seeking mode.
26551 @end itemize
26552
26553 @item get_duration
26554 Get movie duration in AV_TIME_BASE units.
26555
26556 @end table
26557
26558 @c man end MULTIMEDIA SOURCES