]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: Documentation to add sess_config option for tensorflow backend
[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 @subsection Commands
644
645 This filter supports the all above options as @ref{commands}.
646
647 @section acue
648
649 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
650 filter.
651
652 @section adeclick
653 Remove impulsive noise from input audio.
654
655 Samples detected as impulsive noise are replaced by interpolated samples using
656 autoregressive modelling.
657
658 @table @option
659 @item window, w
660 Set window size, in milliseconds. Allowed range is from @code{10} to
661 @code{100}. Default value is @code{55} milliseconds.
662 This sets size of window which will be processed at once.
663
664 @item overlap, o
665 Set window overlap, in percentage of window size. Allowed range is from
666 @code{50} to @code{95}. Default value is @code{75} percent.
667 Setting this to a very high value increases impulsive noise removal but makes
668 whole process much slower.
669
670 @item arorder, a
671 Set autoregression order, in percentage of window size. Allowed range is from
672 @code{0} to @code{25}. Default value is @code{2} percent. This option also
673 controls quality of interpolated samples using neighbour good samples.
674
675 @item threshold, t
676 Set threshold value. Allowed range is from @code{1} to @code{100}.
677 Default value is @code{2}.
678 This controls the strength of impulsive noise which is going to be removed.
679 The lower value, the more samples will be detected as impulsive noise.
680
681 @item burst, b
682 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
683 @code{10}. Default value is @code{2}.
684 If any two samples detected as noise are spaced less than this value then any
685 sample between those two samples will be also detected as noise.
686
687 @item method, m
688 Set overlap method.
689
690 It accepts the following values:
691 @table @option
692 @item add, a
693 Select overlap-add method. Even not interpolated samples are slightly
694 changed with this method.
695
696 @item save, s
697 Select overlap-save method. Not interpolated samples remain unchanged.
698 @end table
699
700 Default value is @code{a}.
701 @end table
702
703 @section adeclip
704 Remove clipped samples from input audio.
705
706 Samples detected as clipped are replaced by interpolated samples using
707 autoregressive modelling.
708
709 @table @option
710 @item window, w
711 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
712 Default value is @code{55} milliseconds.
713 This sets size of window which will be processed at once.
714
715 @item overlap, o
716 Set window overlap, in percentage of window size. Allowed range is from @code{50}
717 to @code{95}. Default value is @code{75} percent.
718
719 @item arorder, a
720 Set autoregression order, in percentage of window size. Allowed range is from
721 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
722 quality of interpolated samples using neighbour good samples.
723
724 @item threshold, t
725 Set threshold value. Allowed range is from @code{1} to @code{100}.
726 Default value is @code{10}. Higher values make clip detection less aggressive.
727
728 @item hsize, n
729 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
730 Default value is @code{1000}. Higher values make clip detection less aggressive.
731
732 @item method, m
733 Set overlap method.
734
735 It accepts the following values:
736 @table @option
737 @item add, a
738 Select overlap-add method. Even not interpolated samples are slightly changed
739 with this method.
740
741 @item save, s
742 Select overlap-save method. Not interpolated samples remain unchanged.
743 @end table
744
745 Default value is @code{a}.
746 @end table
747
748 @section adelay
749
750 Delay one or more audio channels.
751
752 Samples in delayed channel are filled with silence.
753
754 The filter accepts the following option:
755
756 @table @option
757 @item delays
758 Set list of delays in milliseconds for each channel separated by '|'.
759 Unused delays will be silently ignored. If number of given delays is
760 smaller than number of channels all remaining channels will not be delayed.
761 If you want to delay exact number of samples, append 'S' to number.
762 If you want instead to delay in seconds, append 's' to number.
763
764 @item all
765 Use last set delay for all remaining channels. By default is disabled.
766 This option if enabled changes how option @code{delays} is interpreted.
767 @end table
768
769 @subsection Examples
770
771 @itemize
772 @item
773 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
774 the second channel (and any other channels that may be present) unchanged.
775 @example
776 adelay=1500|0|500
777 @end example
778
779 @item
780 Delay second channel by 500 samples, the third channel by 700 samples and leave
781 the first channel (and any other channels that may be present) unchanged.
782 @example
783 adelay=0|500S|700S
784 @end example
785
786 @item
787 Delay all channels by same number of samples:
788 @example
789 adelay=delays=64S:all=1
790 @end example
791 @end itemize
792
793 @section adenorm
794 Remedy denormals in audio by adding extremely low-level noise.
795
796 This filter shall be placed before any filter that can produce denormals.
797
798 A description of the accepted parameters follows.
799
800 @table @option
801 @item level
802 Set level of added noise in dB. Default is @code{-351}.
803 Allowed range is from -451 to -90.
804
805 @item type
806 Set type of added noise.
807
808 @table @option
809 @item dc
810 Add DC signal.
811 @item ac
812 Add AC signal.
813 @item square
814 Add square signal.
815 @item pulse
816 Add pulse signal.
817 @end table
818
819 Default is @code{dc}.
820 @end table
821
822 @subsection Commands
823
824 This filter supports the all above options as @ref{commands}.
825
826 @section aderivative, aintegral
827
828 Compute derivative/integral of audio stream.
829
830 Applying both filters one after another produces original audio.
831
832 @section aecho
833
834 Apply echoing to the input audio.
835
836 Echoes are reflected sound and can occur naturally amongst mountains
837 (and sometimes large buildings) when talking or shouting; digital echo
838 effects emulate this behaviour and are often used to help fill out the
839 sound of a single instrument or vocal. The time difference between the
840 original signal and the reflection is the @code{delay}, and the
841 loudness of the reflected signal is the @code{decay}.
842 Multiple echoes can have different delays and decays.
843
844 A description of the accepted parameters follows.
845
846 @table @option
847 @item in_gain
848 Set input gain of reflected signal. Default is @code{0.6}.
849
850 @item out_gain
851 Set output gain of reflected signal. Default is @code{0.3}.
852
853 @item delays
854 Set list of time intervals in milliseconds between original signal and reflections
855 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
856 Default is @code{1000}.
857
858 @item decays
859 Set list of loudness of reflected signals separated by '|'.
860 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
861 Default is @code{0.5}.
862 @end table
863
864 @subsection Examples
865
866 @itemize
867 @item
868 Make it sound as if there are twice as many instruments as are actually playing:
869 @example
870 aecho=0.8:0.88:60:0.4
871 @end example
872
873 @item
874 If delay is very short, then it sounds like a (metallic) robot playing music:
875 @example
876 aecho=0.8:0.88:6:0.4
877 @end example
878
879 @item
880 A longer delay will sound like an open air concert in the mountains:
881 @example
882 aecho=0.8:0.9:1000:0.3
883 @end example
884
885 @item
886 Same as above but with one more mountain:
887 @example
888 aecho=0.8:0.9:1000|1800:0.3|0.25
889 @end example
890 @end itemize
891
892 @section aemphasis
893 Audio emphasis filter creates or restores material directly taken from LPs or
894 emphased CDs with different filter curves. E.g. to store music on vinyl the
895 signal has to be altered by a filter first to even out the disadvantages of
896 this recording medium.
897 Once the material is played back the inverse filter has to be applied to
898 restore the distortion of the frequency response.
899
900 The filter accepts the following options:
901
902 @table @option
903 @item level_in
904 Set input gain.
905
906 @item level_out
907 Set output gain.
908
909 @item mode
910 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
911 use @code{production} mode. Default is @code{reproduction} mode.
912
913 @item type
914 Set filter type. Selects medium. Can be one of the following:
915
916 @table @option
917 @item col
918 select Columbia.
919 @item emi
920 select EMI.
921 @item bsi
922 select BSI (78RPM).
923 @item riaa
924 select RIAA.
925 @item cd
926 select Compact Disc (CD).
927 @item 50fm
928 select 50µs (FM).
929 @item 75fm
930 select 75µs (FM).
931 @item 50kf
932 select 50µs (FM-KF).
933 @item 75kf
934 select 75µs (FM-KF).
935 @end table
936 @end table
937
938 @subsection Commands
939
940 This filter supports the all above options as @ref{commands}.
941
942 @section aeval
943
944 Modify an audio signal according to the specified expressions.
945
946 This filter accepts one or more expressions (one for each channel),
947 which are evaluated and used to modify a corresponding audio signal.
948
949 It accepts the following parameters:
950
951 @table @option
952 @item exprs
953 Set the '|'-separated expressions list for each separate channel. If
954 the number of input channels is greater than the number of
955 expressions, the last specified expression is used for the remaining
956 output channels.
957
958 @item channel_layout, c
959 Set output channel layout. If not specified, the channel layout is
960 specified by the number of expressions. If set to @samp{same}, it will
961 use by default the same input channel layout.
962 @end table
963
964 Each expression in @var{exprs} can contain the following constants and functions:
965
966 @table @option
967 @item ch
968 channel number of the current expression
969
970 @item n
971 number of the evaluated sample, starting from 0
972
973 @item s
974 sample rate
975
976 @item t
977 time of the evaluated sample expressed in seconds
978
979 @item nb_in_channels
980 @item nb_out_channels
981 input and output number of channels
982
983 @item val(CH)
984 the value of input channel with number @var{CH}
985 @end table
986
987 Note: this filter is slow. For faster processing you should use a
988 dedicated filter.
989
990 @subsection Examples
991
992 @itemize
993 @item
994 Half volume:
995 @example
996 aeval=val(ch)/2:c=same
997 @end example
998
999 @item
1000 Invert phase of the second channel:
1001 @example
1002 aeval=val(0)|-val(1)
1003 @end example
1004 @end itemize
1005
1006 @section aexciter
1007
1008 An exciter is used to produce high sound that is not present in the
1009 original signal. This is done by creating harmonic distortions of the
1010 signal which are restricted in range and added to the original signal.
1011 An Exciter raises the upper end of an audio signal without simply raising
1012 the higher frequencies like an equalizer would do to create a more
1013 "crisp" or "brilliant" sound.
1014
1015 The filter accepts the following options:
1016
1017 @table @option
1018 @item level_in
1019 Set input level prior processing of signal.
1020 Allowed range is from 0 to 64.
1021 Default value is 1.
1022
1023 @item level_out
1024 Set output level after processing of signal.
1025 Allowed range is from 0 to 64.
1026 Default value is 1.
1027
1028 @item amount
1029 Set the amount of harmonics added to original signal.
1030 Allowed range is from 0 to 64.
1031 Default value is 1.
1032
1033 @item drive
1034 Set the amount of newly created harmonics.
1035 Allowed range is from 0.1 to 10.
1036 Default value is 8.5.
1037
1038 @item blend
1039 Set the octave of newly created harmonics.
1040 Allowed range is from -10 to 10.
1041 Default value is 0.
1042
1043 @item freq
1044 Set the lower frequency limit of producing harmonics in Hz.
1045 Allowed range is from 2000 to 12000 Hz.
1046 Default is 7500 Hz.
1047
1048 @item ceil
1049 Set the upper frequency limit of producing harmonics.
1050 Allowed range is from 9999 to 20000 Hz.
1051 If value is lower than 10000 Hz no limit is applied.
1052
1053 @item listen
1054 Mute the original signal and output only added harmonics.
1055 By default is disabled.
1056 @end table
1057
1058 @subsection Commands
1059
1060 This filter supports the all above options as @ref{commands}.
1061
1062 @anchor{afade}
1063 @section afade
1064
1065 Apply fade-in/out effect to input audio.
1066
1067 A description of the accepted parameters follows.
1068
1069 @table @option
1070 @item type, t
1071 Specify the effect type, can be either @code{in} for fade-in, or
1072 @code{out} for a fade-out effect. Default is @code{in}.
1073
1074 @item start_sample, ss
1075 Specify the number of the start sample for starting to apply the fade
1076 effect. Default is 0.
1077
1078 @item nb_samples, ns
1079 Specify the number of samples for which the fade effect has to last. At
1080 the end of the fade-in effect the output audio will have the same
1081 volume as the input audio, at the end of the fade-out transition
1082 the output audio will be silence. Default is 44100.
1083
1084 @item start_time, st
1085 Specify the start time of the fade effect. Default is 0.
1086 The value must be specified as a time duration; see
1087 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1088 for the accepted syntax.
1089 If set this option is used instead of @var{start_sample}.
1090
1091 @item duration, d
1092 Specify the duration of the fade effect. See
1093 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1094 for the accepted syntax.
1095 At the end of the fade-in effect the output audio will have the same
1096 volume as the input audio, at the end of the fade-out transition
1097 the output audio will be silence.
1098 By default the duration is determined by @var{nb_samples}.
1099 If set this option is used instead of @var{nb_samples}.
1100
1101 @item curve
1102 Set curve for fade transition.
1103
1104 It accepts the following values:
1105 @table @option
1106 @item tri
1107 select triangular, linear slope (default)
1108 @item qsin
1109 select quarter of sine wave
1110 @item hsin
1111 select half of sine wave
1112 @item esin
1113 select exponential sine wave
1114 @item log
1115 select logarithmic
1116 @item ipar
1117 select inverted parabola
1118 @item qua
1119 select quadratic
1120 @item cub
1121 select cubic
1122 @item squ
1123 select square root
1124 @item cbr
1125 select cubic root
1126 @item par
1127 select parabola
1128 @item exp
1129 select exponential
1130 @item iqsin
1131 select inverted quarter of sine wave
1132 @item ihsin
1133 select inverted half of sine wave
1134 @item dese
1135 select double-exponential seat
1136 @item desi
1137 select double-exponential sigmoid
1138 @item losi
1139 select logistic sigmoid
1140 @item sinc
1141 select sine cardinal function
1142 @item isinc
1143 select inverted sine cardinal function
1144 @item nofade
1145 no fade applied
1146 @end table
1147 @end table
1148
1149 @subsection Commands
1150
1151 This filter supports the all above options as @ref{commands}.
1152
1153 @subsection Examples
1154
1155 @itemize
1156 @item
1157 Fade in first 15 seconds of audio:
1158 @example
1159 afade=t=in:ss=0:d=15
1160 @end example
1161
1162 @item
1163 Fade out last 25 seconds of a 900 seconds audio:
1164 @example
1165 afade=t=out:st=875:d=25
1166 @end example
1167 @end itemize
1168
1169 @section afftdn
1170 Denoise audio samples with FFT.
1171
1172 A description of the accepted parameters follows.
1173
1174 @table @option
1175 @item nr
1176 Set the noise reduction in dB, allowed range is 0.01 to 97.
1177 Default value is 12 dB.
1178
1179 @item nf
1180 Set the noise floor in dB, allowed range is -80 to -20.
1181 Default value is -50 dB.
1182
1183 @item nt
1184 Set the noise type.
1185
1186 It accepts the following values:
1187 @table @option
1188 @item w
1189 Select white noise.
1190
1191 @item v
1192 Select vinyl noise.
1193
1194 @item s
1195 Select shellac noise.
1196
1197 @item c
1198 Select custom noise, defined in @code{bn} option.
1199
1200 Default value is white noise.
1201 @end table
1202
1203 @item bn
1204 Set custom band noise for every one of 15 bands.
1205 Bands are separated by ' ' or '|'.
1206
1207 @item rf
1208 Set the residual floor in dB, allowed range is -80 to -20.
1209 Default value is -38 dB.
1210
1211 @item tn
1212 Enable noise tracking. By default is disabled.
1213 With this enabled, noise floor is automatically adjusted.
1214
1215 @item tr
1216 Enable residual tracking. By default is disabled.
1217
1218 @item om
1219 Set the output mode.
1220
1221 It accepts the following values:
1222 @table @option
1223 @item i
1224 Pass input unchanged.
1225
1226 @item o
1227 Pass noise filtered out.
1228
1229 @item n
1230 Pass only noise.
1231
1232 Default value is @var{o}.
1233 @end table
1234 @end table
1235
1236 @subsection Commands
1237
1238 This filter supports the following commands:
1239 @table @option
1240 @item sample_noise, sn
1241 Start or stop measuring noise profile.
1242 Syntax for the command is : "start" or "stop" string.
1243 After measuring noise profile is stopped it will be
1244 automatically applied in filtering.
1245
1246 @item noise_reduction, nr
1247 Change noise reduction. Argument is single float number.
1248 Syntax for the command is : "@var{noise_reduction}"
1249
1250 @item noise_floor, nf
1251 Change noise floor. Argument is single float number.
1252 Syntax for the command is : "@var{noise_floor}"
1253
1254 @item output_mode, om
1255 Change output mode operation.
1256 Syntax for the command is : "i", "o" or "n" string.
1257 @end table
1258
1259 @section afftfilt
1260 Apply arbitrary expressions to samples in frequency domain.
1261
1262 @table @option
1263 @item real
1264 Set frequency domain real expression for each separate channel separated
1265 by '|'. Default is "re".
1266 If the number of input channels is greater than the number of
1267 expressions, the last specified expression is used for the remaining
1268 output channels.
1269
1270 @item imag
1271 Set frequency domain imaginary expression for each separate channel
1272 separated by '|'. Default is "im".
1273
1274 Each expression in @var{real} and @var{imag} can contain the following
1275 constants and functions:
1276
1277 @table @option
1278 @item sr
1279 sample rate
1280
1281 @item b
1282 current frequency bin number
1283
1284 @item nb
1285 number of available bins
1286
1287 @item ch
1288 channel number of the current expression
1289
1290 @item chs
1291 number of channels
1292
1293 @item pts
1294 current frame pts
1295
1296 @item re
1297 current real part of frequency bin of current channel
1298
1299 @item im
1300 current imaginary part of frequency bin of current channel
1301
1302 @item real(b, ch)
1303 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1304
1305 @item imag(b, ch)
1306 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1307 @end table
1308
1309 @item win_size
1310 Set window size. Allowed range is from 16 to 131072.
1311 Default is @code{4096}
1312
1313 @item win_func
1314 Set window function. Default is @code{hann}.
1315
1316 @item overlap
1317 Set window overlap. If set to 1, the recommended overlap for selected
1318 window function will be picked. Default is @code{0.75}.
1319 @end table
1320
1321 @subsection Examples
1322
1323 @itemize
1324 @item
1325 Leave almost only low frequencies in audio:
1326 @example
1327 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1328 @end example
1329
1330 @item
1331 Apply robotize effect:
1332 @example
1333 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1334 @end example
1335
1336 @item
1337 Apply whisper effect:
1338 @example
1339 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"
1340 @end example
1341 @end itemize
1342
1343 @anchor{afir}
1344 @section afir
1345
1346 Apply an arbitrary Finite Impulse Response filter.
1347
1348 This filter is designed for applying long FIR filters,
1349 up to 60 seconds long.
1350
1351 It can be used as component for digital crossover filters,
1352 room equalization, cross talk cancellation, wavefield synthesis,
1353 auralization, ambiophonics, ambisonics and spatialization.
1354
1355 This filter uses the streams higher than first one as FIR coefficients.
1356 If the non-first stream holds a single channel, it will be used
1357 for all input channels in the first stream, otherwise
1358 the number of channels in the non-first stream must be same as
1359 the number of channels in the first stream.
1360
1361 It accepts the following parameters:
1362
1363 @table @option
1364 @item dry
1365 Set dry gain. This sets input gain.
1366
1367 @item wet
1368 Set wet gain. This sets final output gain.
1369
1370 @item length
1371 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1372
1373 @item gtype
1374 Enable applying gain measured from power of IR.
1375
1376 Set which approach to use for auto gain measurement.
1377
1378 @table @option
1379 @item none
1380 Do not apply any gain.
1381
1382 @item peak
1383 select peak gain, very conservative approach. This is default value.
1384
1385 @item dc
1386 select DC gain, limited application.
1387
1388 @item gn
1389 select gain to noise approach, this is most popular one.
1390 @end table
1391
1392 @item irgain
1393 Set gain to be applied to IR coefficients before filtering.
1394 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1395
1396 @item irfmt
1397 Set format of IR stream. Can be @code{mono} or @code{input}.
1398 Default is @code{input}.
1399
1400 @item maxir
1401 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1402 Allowed range is 0.1 to 60 seconds.
1403
1404 @item response
1405 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1406 By default it is disabled.
1407
1408 @item channel
1409 Set for which IR channel to display frequency response. By default is first channel
1410 displayed. This option is used only when @var{response} is enabled.
1411
1412 @item size
1413 Set video stream size. This option is used only when @var{response} is enabled.
1414
1415 @item rate
1416 Set video stream frame rate. This option is used only when @var{response} is enabled.
1417
1418 @item minp
1419 Set minimal partition size used for convolution. Default is @var{8192}.
1420 Allowed range is from @var{1} to @var{32768}.
1421 Lower values decreases latency at cost of higher CPU usage.
1422
1423 @item maxp
1424 Set maximal partition size used for convolution. Default is @var{8192}.
1425 Allowed range is from @var{8} to @var{32768}.
1426 Lower values may increase CPU usage.
1427
1428 @item nbirs
1429 Set number of input impulse responses streams which will be switchable at runtime.
1430 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1431
1432 @item ir
1433 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1434 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1435 This option can be changed at runtime via @ref{commands}.
1436 @end table
1437
1438 @subsection Examples
1439
1440 @itemize
1441 @item
1442 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1443 @example
1444 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1445 @end example
1446 @end itemize
1447
1448 @anchor{aformat}
1449 @section aformat
1450
1451 Set output format constraints for the input audio. The framework will
1452 negotiate the most appropriate format to minimize conversions.
1453
1454 It accepts the following parameters:
1455 @table @option
1456
1457 @item sample_fmts, f
1458 A '|'-separated list of requested sample formats.
1459
1460 @item sample_rates, r
1461 A '|'-separated list of requested sample rates.
1462
1463 @item channel_layouts, cl
1464 A '|'-separated list of requested channel layouts.
1465
1466 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1467 for the required syntax.
1468 @end table
1469
1470 If a parameter is omitted, all values are allowed.
1471
1472 Force the output to either unsigned 8-bit or signed 16-bit stereo
1473 @example
1474 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1475 @end example
1476
1477 @section afreqshift
1478 Apply frequency shift to input audio samples.
1479
1480 The filter accepts the following options:
1481
1482 @table @option
1483 @item shift
1484 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1485 Default value is 0.0.
1486
1487 @item level
1488 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1489 Default value is 1.0.
1490 @end table
1491
1492 @subsection Commands
1493
1494 This filter supports the all above options as @ref{commands}.
1495
1496 @section agate
1497
1498 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1499 processing reduces disturbing noise between useful signals.
1500
1501 Gating is done by detecting the volume below a chosen level @var{threshold}
1502 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1503 floor is set via @var{range}. Because an exact manipulation of the signal
1504 would cause distortion of the waveform the reduction can be levelled over
1505 time. This is done by setting @var{attack} and @var{release}.
1506
1507 @var{attack} determines how long the signal has to fall below the threshold
1508 before any reduction will occur and @var{release} sets the time the signal
1509 has to rise above the threshold to reduce the reduction again.
1510 Shorter signals than the chosen attack time will be left untouched.
1511
1512 @table @option
1513 @item level_in
1514 Set input level before filtering.
1515 Default is 1. Allowed range is from 0.015625 to 64.
1516
1517 @item mode
1518 Set the mode of operation. Can be @code{upward} or @code{downward}.
1519 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1520 will be amplified, expanding dynamic range in upward direction.
1521 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1522
1523 @item range
1524 Set the level of gain reduction when the signal is below the threshold.
1525 Default is 0.06125. Allowed range is from 0 to 1.
1526 Setting this to 0 disables reduction and then filter behaves like expander.
1527
1528 @item threshold
1529 If a signal rises above this level the gain reduction is released.
1530 Default is 0.125. Allowed range is from 0 to 1.
1531
1532 @item ratio
1533 Set a ratio by which the signal is reduced.
1534 Default is 2. Allowed range is from 1 to 9000.
1535
1536 @item attack
1537 Amount of milliseconds the signal has to rise above the threshold before gain
1538 reduction stops.
1539 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1540
1541 @item release
1542 Amount of milliseconds the signal has to fall below the threshold before the
1543 reduction is increased again. Default is 250 milliseconds.
1544 Allowed range is from 0.01 to 9000.
1545
1546 @item makeup
1547 Set amount of amplification of signal after processing.
1548 Default is 1. Allowed range is from 1 to 64.
1549
1550 @item knee
1551 Curve the sharp knee around the threshold to enter gain reduction more softly.
1552 Default is 2.828427125. Allowed range is from 1 to 8.
1553
1554 @item detection
1555 Choose if exact signal should be taken for detection or an RMS like one.
1556 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1557
1558 @item link
1559 Choose if the average level between all channels or the louder channel affects
1560 the reduction.
1561 Default is @code{average}. Can be @code{average} or @code{maximum}.
1562 @end table
1563
1564 @subsection Commands
1565
1566 This filter supports the all above options as @ref{commands}.
1567
1568 @section aiir
1569
1570 Apply an arbitrary Infinite Impulse Response filter.
1571
1572 It accepts the following parameters:
1573
1574 @table @option
1575 @item zeros, z
1576 Set B/numerator/zeros/reflection coefficients.
1577
1578 @item poles, p
1579 Set A/denominator/poles/ladder coefficients.
1580
1581 @item gains, k
1582 Set channels gains.
1583
1584 @item dry_gain
1585 Set input gain.
1586
1587 @item wet_gain
1588 Set output gain.
1589
1590 @item format, f
1591 Set coefficients format.
1592
1593 @table @samp
1594 @item ll
1595 lattice-ladder function
1596 @item sf
1597 analog transfer function
1598 @item tf
1599 digital transfer function
1600 @item zp
1601 Z-plane zeros/poles, cartesian (default)
1602 @item pr
1603 Z-plane zeros/poles, polar radians
1604 @item pd
1605 Z-plane zeros/poles, polar degrees
1606 @item sp
1607 S-plane zeros/poles
1608 @end table
1609
1610 @item process, r
1611 Set type of processing.
1612
1613 @table @samp
1614 @item d
1615 direct processing
1616 @item s
1617 serial processing
1618 @item p
1619 parallel processing
1620 @end table
1621
1622 @item precision, e
1623 Set filtering precision.
1624
1625 @table @samp
1626 @item dbl
1627 double-precision floating-point (default)
1628 @item flt
1629 single-precision floating-point
1630 @item i32
1631 32-bit integers
1632 @item i16
1633 16-bit integers
1634 @end table
1635
1636 @item normalize, n
1637 Normalize filter coefficients, by default is enabled.
1638 Enabling it will normalize magnitude response at DC to 0dB.
1639
1640 @item mix
1641 How much to use filtered signal in output. Default is 1.
1642 Range is between 0 and 1.
1643
1644 @item response
1645 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1646 By default it is disabled.
1647
1648 @item channel
1649 Set for which IR channel to display frequency response. By default is first channel
1650 displayed. This option is used only when @var{response} is enabled.
1651
1652 @item size
1653 Set video stream size. This option is used only when @var{response} is enabled.
1654 @end table
1655
1656 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1657 order.
1658
1659 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1660 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1661 imaginary unit.
1662
1663 Different coefficients and gains can be provided for every channel, in such case
1664 use '|' to separate coefficients or gains. Last provided coefficients will be
1665 used for all remaining channels.
1666
1667 @subsection Examples
1668
1669 @itemize
1670 @item
1671 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1672 @example
1673 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
1674 @end example
1675
1676 @item
1677 Same as above but in @code{zp} format:
1678 @example
1679 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
1680 @end example
1681
1682 @item
1683 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1684 @example
1685 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1686 @end example
1687 @end itemize
1688
1689 @section alimiter
1690
1691 The limiter prevents an input signal from rising over a desired threshold.
1692 This limiter uses lookahead technology to prevent your signal from distorting.
1693 It means that there is a small delay after the signal is processed. Keep in mind
1694 that the delay it produces is the attack time you set.
1695
1696 The filter accepts the following options:
1697
1698 @table @option
1699 @item level_in
1700 Set input gain. Default is 1.
1701
1702 @item level_out
1703 Set output gain. Default is 1.
1704
1705 @item limit
1706 Don't let signals above this level pass the limiter. Default is 1.
1707
1708 @item attack
1709 The limiter will reach its attenuation level in this amount of time in
1710 milliseconds. Default is 5 milliseconds.
1711
1712 @item release
1713 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1714 Default is 50 milliseconds.
1715
1716 @item asc
1717 When gain reduction is always needed ASC takes care of releasing to an
1718 average reduction level rather than reaching a reduction of 0 in the release
1719 time.
1720
1721 @item asc_level
1722 Select how much the release time is affected by ASC, 0 means nearly no changes
1723 in release time while 1 produces higher release times.
1724
1725 @item level
1726 Auto level output signal. Default is enabled.
1727 This normalizes audio back to 0dB if enabled.
1728 @end table
1729
1730 Depending on picked setting it is recommended to upsample input 2x or 4x times
1731 with @ref{aresample} before applying this filter.
1732
1733 @section allpass
1734
1735 Apply a two-pole all-pass filter with central frequency (in Hz)
1736 @var{frequency}, and filter-width @var{width}.
1737 An all-pass filter changes the audio's frequency to phase relationship
1738 without changing its frequency to amplitude relationship.
1739
1740 The filter accepts the following options:
1741
1742 @table @option
1743 @item frequency, f
1744 Set frequency in Hz.
1745
1746 @item width_type, t
1747 Set method to specify band-width of filter.
1748 @table @option
1749 @item h
1750 Hz
1751 @item q
1752 Q-Factor
1753 @item o
1754 octave
1755 @item s
1756 slope
1757 @item k
1758 kHz
1759 @end table
1760
1761 @item width, w
1762 Specify the band-width of a filter in width_type units.
1763
1764 @item mix, m
1765 How much to use filtered signal in output. Default is 1.
1766 Range is between 0 and 1.
1767
1768 @item channels, c
1769 Specify which channels to filter, by default all available are filtered.
1770
1771 @item normalize, n
1772 Normalize biquad coefficients, by default is disabled.
1773 Enabling it will normalize magnitude response at DC to 0dB.
1774
1775 @item order, o
1776 Set the filter order, can be 1 or 2. Default is 2.
1777
1778 @item transform, a
1779 Set transform type of IIR filter.
1780 @table @option
1781 @item di
1782 @item dii
1783 @item tdii
1784 @item latt
1785 @end table
1786
1787 @item precision, r
1788 Set precison of filtering.
1789 @table @option
1790 @item auto
1791 Pick automatic sample format depending on surround filters.
1792 @item s16
1793 Always use signed 16-bit.
1794 @item s32
1795 Always use signed 32-bit.
1796 @item f32
1797 Always use float 32-bit.
1798 @item f64
1799 Always use float 64-bit.
1800 @end table
1801 @end table
1802
1803 @subsection Commands
1804
1805 This filter supports the following commands:
1806 @table @option
1807 @item frequency, f
1808 Change allpass frequency.
1809 Syntax for the command is : "@var{frequency}"
1810
1811 @item width_type, t
1812 Change allpass width_type.
1813 Syntax for the command is : "@var{width_type}"
1814
1815 @item width, w
1816 Change allpass width.
1817 Syntax for the command is : "@var{width}"
1818
1819 @item mix, m
1820 Change allpass mix.
1821 Syntax for the command is : "@var{mix}"
1822 @end table
1823
1824 @section aloop
1825
1826 Loop audio samples.
1827
1828 The filter accepts the following options:
1829
1830 @table @option
1831 @item loop
1832 Set the number of loops. Setting this value to -1 will result in infinite loops.
1833 Default is 0.
1834
1835 @item size
1836 Set maximal number of samples. Default is 0.
1837
1838 @item start
1839 Set first sample of loop. Default is 0.
1840 @end table
1841
1842 @anchor{amerge}
1843 @section amerge
1844
1845 Merge two or more audio streams into a single multi-channel stream.
1846
1847 The filter accepts the following options:
1848
1849 @table @option
1850
1851 @item inputs
1852 Set the number of inputs. Default is 2.
1853
1854 @end table
1855
1856 If the channel layouts of the inputs are disjoint, and therefore compatible,
1857 the channel layout of the output will be set accordingly and the channels
1858 will be reordered as necessary. If the channel layouts of the inputs are not
1859 disjoint, the output will have all the channels of the first input then all
1860 the channels of the second input, in that order, and the channel layout of
1861 the output will be the default value corresponding to the total number of
1862 channels.
1863
1864 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1865 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1866 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1867 first input, b1 is the first channel of the second input).
1868
1869 On the other hand, if both input are in stereo, the output channels will be
1870 in the default order: a1, a2, b1, b2, and the channel layout will be
1871 arbitrarily set to 4.0, which may or may not be the expected value.
1872
1873 All inputs must have the same sample rate, and format.
1874
1875 If inputs do not have the same duration, the output will stop with the
1876 shortest.
1877
1878 @subsection Examples
1879
1880 @itemize
1881 @item
1882 Merge two mono files into a stereo stream:
1883 @example
1884 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1885 @end example
1886
1887 @item
1888 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1889 @example
1890 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
1891 @end example
1892 @end itemize
1893
1894 @section amix
1895
1896 Mixes multiple audio inputs into a single output.
1897
1898 Note that this filter only supports float samples (the @var{amerge}
1899 and @var{pan} audio filters support many formats). If the @var{amix}
1900 input has integer samples then @ref{aresample} will be automatically
1901 inserted to perform the conversion to float samples.
1902
1903 For example
1904 @example
1905 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1906 @end example
1907 will mix 3 input audio streams to a single output with the same duration as the
1908 first input and a dropout transition time of 3 seconds.
1909
1910 It accepts the following parameters:
1911 @table @option
1912
1913 @item inputs
1914 The number of inputs. If unspecified, it defaults to 2.
1915
1916 @item duration
1917 How to determine the end-of-stream.
1918 @table @option
1919
1920 @item longest
1921 The duration of the longest input. (default)
1922
1923 @item shortest
1924 The duration of the shortest input.
1925
1926 @item first
1927 The duration of the first input.
1928
1929 @end table
1930
1931 @item dropout_transition
1932 The transition time, in seconds, for volume renormalization when an input
1933 stream ends. The default value is 2 seconds.
1934
1935 @item weights
1936 Specify weight of each input audio stream as sequence.
1937 Each weight is separated by space. By default all inputs have same weight.
1938
1939 @item normalize
1940 Always scale inputs instead of only doing summation of samples.
1941 Beware of heavy clipping if inputs are not normalized prior or after filtering
1942 by this filter if this option is disabled. By default is enabled.
1943 @end table
1944
1945 @subsection Commands
1946
1947 This filter supports the following commands:
1948 @table @option
1949 @item weights
1950 @item sum
1951 Syntax is same as option with same name.
1952 @end table
1953
1954 @section amultiply
1955
1956 Multiply first audio stream with second audio stream and store result
1957 in output audio stream. Multiplication is done by multiplying each
1958 sample from first stream with sample at same position from second stream.
1959
1960 With this element-wise multiplication one can create amplitude fades and
1961 amplitude modulations.
1962
1963 @section anequalizer
1964
1965 High-order parametric multiband equalizer for each channel.
1966
1967 It accepts the following parameters:
1968 @table @option
1969 @item params
1970
1971 This option string is in format:
1972 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1973 Each equalizer band is separated by '|'.
1974
1975 @table @option
1976 @item chn
1977 Set channel number to which equalization will be applied.
1978 If input doesn't have that channel the entry is ignored.
1979
1980 @item f
1981 Set central frequency for band.
1982 If input doesn't have that frequency the entry is ignored.
1983
1984 @item w
1985 Set band width in Hertz.
1986
1987 @item g
1988 Set band gain in dB.
1989
1990 @item t
1991 Set filter type for band, optional, can be:
1992
1993 @table @samp
1994 @item 0
1995 Butterworth, this is default.
1996
1997 @item 1
1998 Chebyshev type 1.
1999
2000 @item 2
2001 Chebyshev type 2.
2002 @end table
2003 @end table
2004
2005 @item curves
2006 With this option activated frequency response of anequalizer is displayed
2007 in video stream.
2008
2009 @item size
2010 Set video stream size. Only useful if curves option is activated.
2011
2012 @item mgain
2013 Set max gain that will be displayed. Only useful if curves option is activated.
2014 Setting this to a reasonable value makes it possible to display gain which is derived from
2015 neighbour bands which are too close to each other and thus produce higher gain
2016 when both are activated.
2017
2018 @item fscale
2019 Set frequency scale used to draw frequency response in video output.
2020 Can be linear or logarithmic. Default is logarithmic.
2021
2022 @item colors
2023 Set color for each channel curve which is going to be displayed in video stream.
2024 This is list of color names separated by space or by '|'.
2025 Unrecognised or missing colors will be replaced by white color.
2026 @end table
2027
2028 @subsection Examples
2029
2030 @itemize
2031 @item
2032 Lower gain by 10 of central frequency 200Hz and width 100 Hz
2033 for first 2 channels using Chebyshev type 1 filter:
2034 @example
2035 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
2036 @end example
2037 @end itemize
2038
2039 @subsection Commands
2040
2041 This filter supports the following commands:
2042 @table @option
2043 @item change
2044 Alter existing filter parameters.
2045 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
2046
2047 @var{fN} is existing filter number, starting from 0, if no such filter is available
2048 error is returned.
2049 @var{freq} set new frequency parameter.
2050 @var{width} set new width parameter in Hertz.
2051 @var{gain} set new gain parameter in dB.
2052
2053 Full filter invocation with asendcmd may look like this:
2054 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
2055 @end table
2056
2057 @section anlmdn
2058
2059 Reduce broadband noise in audio samples using Non-Local Means algorithm.
2060
2061 Each sample is adjusted by looking for other samples with similar contexts. This
2062 context similarity is defined by comparing their surrounding patches of size
2063 @option{p}. Patches are searched in an area of @option{r} around the sample.
2064
2065 The filter accepts the following options:
2066
2067 @table @option
2068 @item s
2069 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2070
2071 @item p
2072 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2073 Default value is 2 milliseconds.
2074
2075 @item r
2076 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2077 Default value is 6 milliseconds.
2078
2079 @item o
2080 Set the output mode.
2081
2082 It accepts the following values:
2083 @table @option
2084 @item i
2085 Pass input unchanged.
2086
2087 @item o
2088 Pass noise filtered out.
2089
2090 @item n
2091 Pass only noise.
2092
2093 Default value is @var{o}.
2094 @end table
2095
2096 @item m
2097 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2098 @end table
2099
2100 @subsection Commands
2101
2102 This filter supports the all above options as @ref{commands}.
2103
2104 @section anlms
2105 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2106
2107 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2108 relate to producing the least mean square of the error signal (difference between the desired,
2109 2nd input audio stream and the actual signal, the 1st input audio stream).
2110
2111 A description of the accepted options follows.
2112
2113 @table @option
2114 @item order
2115 Set filter order.
2116
2117 @item mu
2118 Set filter mu.
2119
2120 @item eps
2121 Set the filter eps.
2122
2123 @item leakage
2124 Set the filter leakage.
2125
2126 @item out_mode
2127 It accepts the following values:
2128 @table @option
2129 @item i
2130 Pass the 1st input.
2131
2132 @item d
2133 Pass the 2nd input.
2134
2135 @item o
2136 Pass filtered samples.
2137
2138 @item n
2139 Pass difference between desired and filtered samples.
2140
2141 Default value is @var{o}.
2142 @end table
2143 @end table
2144
2145 @subsection Examples
2146
2147 @itemize
2148 @item
2149 One of many usages of this filter is noise reduction, input audio is filtered
2150 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2151 @example
2152 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2153 @end example
2154 @end itemize
2155
2156 @subsection Commands
2157
2158 This filter supports the same commands as options, excluding option @code{order}.
2159
2160 @section anull
2161
2162 Pass the audio source unchanged to the output.
2163
2164 @section apad
2165
2166 Pad the end of an audio stream with silence.
2167
2168 This can be used together with @command{ffmpeg} @option{-shortest} to
2169 extend audio streams to the same length as the video stream.
2170
2171 A description of the accepted options follows.
2172
2173 @table @option
2174 @item packet_size
2175 Set silence packet size. Default value is 4096.
2176
2177 @item pad_len
2178 Set the number of samples of silence to add to the end. After the
2179 value is reached, the stream is terminated. This option is mutually
2180 exclusive with @option{whole_len}.
2181
2182 @item whole_len
2183 Set the minimum total number of samples in the output audio stream. If
2184 the value is longer than the input audio length, silence is added to
2185 the end, until the value is reached. This option is mutually exclusive
2186 with @option{pad_len}.
2187
2188 @item pad_dur
2189 Specify the duration of samples of silence to add. See
2190 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2191 for the accepted syntax. Used only if set to non-zero value.
2192
2193 @item whole_dur
2194 Specify the minimum total duration in the output audio stream. See
2195 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2196 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2197 the input audio length, silence is added to the end, until the value is reached.
2198 This option is mutually exclusive with @option{pad_dur}
2199 @end table
2200
2201 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2202 nor @option{whole_dur} option is set, the filter will add silence to the end of
2203 the input stream indefinitely.
2204
2205 @subsection Examples
2206
2207 @itemize
2208 @item
2209 Add 1024 samples of silence to the end of the input:
2210 @example
2211 apad=pad_len=1024
2212 @end example
2213
2214 @item
2215 Make sure the audio output will contain at least 10000 samples, pad
2216 the input with silence if required:
2217 @example
2218 apad=whole_len=10000
2219 @end example
2220
2221 @item
2222 Use @command{ffmpeg} to pad the audio input with silence, so that the
2223 video stream will always result the shortest and will be converted
2224 until the end in the output file when using the @option{shortest}
2225 option:
2226 @example
2227 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2228 @end example
2229 @end itemize
2230
2231 @section aphaser
2232 Add a phasing effect to the input audio.
2233
2234 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2235 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2236
2237 A description of the accepted parameters follows.
2238
2239 @table @option
2240 @item in_gain
2241 Set input gain. Default is 0.4.
2242
2243 @item out_gain
2244 Set output gain. Default is 0.74
2245
2246 @item delay
2247 Set delay in milliseconds. Default is 3.0.
2248
2249 @item decay
2250 Set decay. Default is 0.4.
2251
2252 @item speed
2253 Set modulation speed in Hz. Default is 0.5.
2254
2255 @item type
2256 Set modulation type. Default is triangular.
2257
2258 It accepts the following values:
2259 @table @samp
2260 @item triangular, t
2261 @item sinusoidal, s
2262 @end table
2263 @end table
2264
2265 @section aphaseshift
2266 Apply phase shift to input audio samples.
2267
2268 The filter accepts the following options:
2269
2270 @table @option
2271 @item shift
2272 Specify phase shift. Allowed range is from -1.0 to 1.0.
2273 Default value is 0.0.
2274
2275 @item level
2276 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2277 Default value is 1.0.
2278 @end table
2279
2280 @subsection Commands
2281
2282 This filter supports the all above options as @ref{commands}.
2283
2284 @section apulsator
2285
2286 Audio pulsator is something between an autopanner and a tremolo.
2287 But it can produce funny stereo effects as well. Pulsator changes the volume
2288 of the left and right channel based on a LFO (low frequency oscillator) with
2289 different waveforms and shifted phases.
2290 This filter have the ability to define an offset between left and right
2291 channel. An offset of 0 means that both LFO shapes match each other.
2292 The left and right channel are altered equally - a conventional tremolo.
2293 An offset of 50% means that the shape of the right channel is exactly shifted
2294 in phase (or moved backwards about half of the frequency) - pulsator acts as
2295 an autopanner. At 1 both curves match again. Every setting in between moves the
2296 phase shift gapless between all stages and produces some "bypassing" sounds with
2297 sine and triangle waveforms. The more you set the offset near 1 (starting from
2298 the 0.5) the faster the signal passes from the left to the right speaker.
2299
2300 The filter accepts the following options:
2301
2302 @table @option
2303 @item level_in
2304 Set input gain. By default it is 1. Range is [0.015625 - 64].
2305
2306 @item level_out
2307 Set output gain. By default it is 1. Range is [0.015625 - 64].
2308
2309 @item mode
2310 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2311 sawup or sawdown. Default is sine.
2312
2313 @item amount
2314 Set modulation. Define how much of original signal is affected by the LFO.
2315
2316 @item offset_l
2317 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2318
2319 @item offset_r
2320 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2321
2322 @item width
2323 Set pulse width. Default is 1. Allowed range is [0 - 2].
2324
2325 @item timing
2326 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2327
2328 @item bpm
2329 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2330 is set to bpm.
2331
2332 @item ms
2333 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2334 is set to ms.
2335
2336 @item hz
2337 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2338 if timing is set to hz.
2339 @end table
2340
2341 @anchor{aresample}
2342 @section aresample
2343
2344 Resample the input audio to the specified parameters, using the
2345 libswresample library. If none are specified then the filter will
2346 automatically convert between its input and output.
2347
2348 This filter is also able to stretch/squeeze the audio data to make it match
2349 the timestamps or to inject silence / cut out audio to make it match the
2350 timestamps, do a combination of both or do neither.
2351
2352 The filter accepts the syntax
2353 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2354 expresses a sample rate and @var{resampler_options} is a list of
2355 @var{key}=@var{value} pairs, separated by ":". See the
2356 @ref{Resampler Options,,"Resampler Options" section in the
2357 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2358 for the complete list of supported options.
2359
2360 @subsection Examples
2361
2362 @itemize
2363 @item
2364 Resample the input audio to 44100Hz:
2365 @example
2366 aresample=44100
2367 @end example
2368
2369 @item
2370 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2371 samples per second compensation:
2372 @example
2373 aresample=async=1000
2374 @end example
2375 @end itemize
2376
2377 @section areverse
2378
2379 Reverse an audio clip.
2380
2381 Warning: This filter requires memory to buffer the entire clip, so trimming
2382 is suggested.
2383
2384 @subsection Examples
2385
2386 @itemize
2387 @item
2388 Take the first 5 seconds of a clip, and reverse it.
2389 @example
2390 atrim=end=5,areverse
2391 @end example
2392 @end itemize
2393
2394 @section arnndn
2395
2396 Reduce noise from speech using Recurrent Neural Networks.
2397
2398 This filter accepts the following options:
2399
2400 @table @option
2401 @item model, m
2402 Set train model file to load. This option is always required.
2403
2404 @item mix
2405 Set how much to mix filtered samples into final output.
2406 Allowed range is from -1 to 1. Default value is 1.
2407 Negative values are special, they set how much to keep filtered noise
2408 in the final filter output. Set this option to -1 to hear actual
2409 noise removed from input signal.
2410 @end table
2411
2412 @subsection Commands
2413
2414 This filter supports the all above options as @ref{commands}.
2415
2416 @section asetnsamples
2417
2418 Set the number of samples per each output audio frame.
2419
2420 The last output packet may contain a different number of samples, as
2421 the filter will flush all the remaining samples when the input audio
2422 signals its end.
2423
2424 The filter accepts the following options:
2425
2426 @table @option
2427
2428 @item nb_out_samples, n
2429 Set the number of frames per each output audio frame. The number is
2430 intended as the number of samples @emph{per each channel}.
2431 Default value is 1024.
2432
2433 @item pad, p
2434 If set to 1, the filter will pad the last audio frame with zeroes, so
2435 that the last frame will contain the same number of samples as the
2436 previous ones. Default value is 1.
2437 @end table
2438
2439 For example, to set the number of per-frame samples to 1234 and
2440 disable padding for the last frame, use:
2441 @example
2442 asetnsamples=n=1234:p=0
2443 @end example
2444
2445 @section asetrate
2446
2447 Set the sample rate without altering the PCM data.
2448 This will result in a change of speed and pitch.
2449
2450 The filter accepts the following options:
2451
2452 @table @option
2453 @item sample_rate, r
2454 Set the output sample rate. Default is 44100 Hz.
2455 @end table
2456
2457 @section ashowinfo
2458
2459 Show a line containing various information for each input audio frame.
2460 The input audio is not modified.
2461
2462 The shown line contains a sequence of key/value pairs of the form
2463 @var{key}:@var{value}.
2464
2465 The following values are shown in the output:
2466
2467 @table @option
2468 @item n
2469 The (sequential) number of the input frame, starting from 0.
2470
2471 @item pts
2472 The presentation timestamp of the input frame, in time base units; the time base
2473 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2474
2475 @item pts_time
2476 The presentation timestamp of the input frame in seconds.
2477
2478 @item pos
2479 position of the frame in the input stream, -1 if this information in
2480 unavailable and/or meaningless (for example in case of synthetic audio)
2481
2482 @item fmt
2483 The sample format.
2484
2485 @item chlayout
2486 The channel layout.
2487
2488 @item rate
2489 The sample rate for the audio frame.
2490
2491 @item nb_samples
2492 The number of samples (per channel) in the frame.
2493
2494 @item checksum
2495 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2496 audio, the data is treated as if all the planes were concatenated.
2497
2498 @item plane_checksums
2499 A list of Adler-32 checksums for each data plane.
2500 @end table
2501
2502 @section asoftclip
2503 Apply audio soft clipping.
2504
2505 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2506 along a smooth curve, rather than the abrupt shape of hard-clipping.
2507
2508 This filter accepts the following options:
2509
2510 @table @option
2511 @item type
2512 Set type of soft-clipping.
2513
2514 It accepts the following values:
2515 @table @option
2516 @item hard
2517 @item tanh
2518 @item atan
2519 @item cubic
2520 @item exp
2521 @item alg
2522 @item quintic
2523 @item sin
2524 @item erf
2525 @end table
2526
2527 @item threshold
2528 Set threshold from where to start clipping. Default value is 0dB or 1.
2529
2530 @item output
2531 Set gain applied to output. Default value is 0dB or 1.
2532
2533 @item param
2534 Set additional parameter which controls sigmoid function.
2535
2536 @item oversample
2537 Set oversampling factor.
2538 @end table
2539
2540 @subsection Commands
2541
2542 This filter supports the all above options as @ref{commands}.
2543
2544 @section asr
2545 Automatic Speech Recognition
2546
2547 This filter uses PocketSphinx for speech recognition. To enable
2548 compilation of this filter, you need to configure FFmpeg with
2549 @code{--enable-pocketsphinx}.
2550
2551 It accepts the following options:
2552
2553 @table @option
2554 @item rate
2555 Set sampling rate of input audio. Defaults is @code{16000}.
2556 This need to match speech models, otherwise one will get poor results.
2557
2558 @item hmm
2559 Set dictionary containing acoustic model files.
2560
2561 @item dict
2562 Set pronunciation dictionary.
2563
2564 @item lm
2565 Set language model file.
2566
2567 @item lmctl
2568 Set language model set.
2569
2570 @item lmname
2571 Set which language model to use.
2572
2573 @item logfn
2574 Set output for log messages.
2575 @end table
2576
2577 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2578
2579 @anchor{astats}
2580 @section astats
2581
2582 Display time domain statistical information about the audio channels.
2583 Statistics are calculated and displayed for each audio channel and,
2584 where applicable, an overall figure is also given.
2585
2586 It accepts the following option:
2587 @table @option
2588 @item length
2589 Short window length in seconds, used for peak and trough RMS measurement.
2590 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2591
2592 @item metadata
2593
2594 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2595 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2596 disabled.
2597
2598 Available keys for each channel are:
2599 DC_offset
2600 Min_level
2601 Max_level
2602 Min_difference
2603 Max_difference
2604 Mean_difference
2605 RMS_difference
2606 Peak_level
2607 RMS_peak
2608 RMS_trough
2609 Crest_factor
2610 Flat_factor
2611 Peak_count
2612 Noise_floor
2613 Noise_floor_count
2614 Bit_depth
2615 Dynamic_range
2616 Zero_crossings
2617 Zero_crossings_rate
2618 Number_of_NaNs
2619 Number_of_Infs
2620 Number_of_denormals
2621
2622 and for Overall:
2623 DC_offset
2624 Min_level
2625 Max_level
2626 Min_difference
2627 Max_difference
2628 Mean_difference
2629 RMS_difference
2630 Peak_level
2631 RMS_level
2632 RMS_peak
2633 RMS_trough
2634 Flat_factor
2635 Peak_count
2636 Noise_floor
2637 Noise_floor_count
2638 Bit_depth
2639 Number_of_samples
2640 Number_of_NaNs
2641 Number_of_Infs
2642 Number_of_denormals
2643
2644 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2645 this @code{lavfi.astats.Overall.Peak_count}.
2646
2647 For description what each key means read below.
2648
2649 @item reset
2650 Set number of frame after which stats are going to be recalculated.
2651 Default is disabled.
2652
2653 @item measure_perchannel
2654 Select the entries which need to be measured per channel. The metadata keys can
2655 be used as flags, default is @option{all} which measures everything.
2656 @option{none} disables all per channel measurement.
2657
2658 @item measure_overall
2659 Select the entries which need to be measured overall. The metadata keys can
2660 be used as flags, default is @option{all} which measures everything.
2661 @option{none} disables all overall measurement.
2662
2663 @end table
2664
2665 A description of each shown parameter follows:
2666
2667 @table @option
2668 @item DC offset
2669 Mean amplitude displacement from zero.
2670
2671 @item Min level
2672 Minimal sample level.
2673
2674 @item Max level
2675 Maximal sample level.
2676
2677 @item Min difference
2678 Minimal difference between two consecutive samples.
2679
2680 @item Max difference
2681 Maximal difference between two consecutive samples.
2682
2683 @item Mean difference
2684 Mean difference between two consecutive samples.
2685 The average of each difference between two consecutive samples.
2686
2687 @item RMS difference
2688 Root Mean Square difference between two consecutive samples.
2689
2690 @item Peak level dB
2691 @item RMS level dB
2692 Standard peak and RMS level measured in dBFS.
2693
2694 @item RMS peak dB
2695 @item RMS trough dB
2696 Peak and trough values for RMS level measured over a short window.
2697
2698 @item Crest factor
2699 Standard ratio of peak to RMS level (note: not in dB).
2700
2701 @item Flat factor
2702 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2703 (i.e. either @var{Min level} or @var{Max level}).
2704
2705 @item Peak count
2706 Number of occasions (not the number of samples) that the signal attained either
2707 @var{Min level} or @var{Max level}.
2708
2709 @item Noise floor dB
2710 Minimum local peak measured in dBFS over a short window.
2711
2712 @item Noise floor count
2713 Number of occasions (not the number of samples) that the signal attained
2714 @var{Noise floor}.
2715
2716 @item Bit depth
2717 Overall bit depth of audio. Number of bits used for each sample.
2718
2719 @item Dynamic range
2720 Measured dynamic range of audio in dB.
2721
2722 @item Zero crossings
2723 Number of points where the waveform crosses the zero level axis.
2724
2725 @item Zero crossings rate
2726 Rate of Zero crossings and number of audio samples.
2727 @end table
2728
2729 @section asubboost
2730 Boost subwoofer frequencies.
2731
2732 The filter accepts the following options:
2733
2734 @table @option
2735 @item dry
2736 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2737 Default value is 0.7.
2738
2739 @item wet
2740 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2741 Default value is 0.7.
2742
2743 @item decay
2744 Set delay line decay gain value. Allowed range is from 0 to 1.
2745 Default value is 0.7.
2746
2747 @item feedback
2748 Set delay line feedback gain value. Allowed range is from 0 to 1.
2749 Default value is 0.9.
2750
2751 @item cutoff
2752 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2753 Default value is 100.
2754
2755 @item slope
2756 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2757 Default value is 0.5.
2758
2759 @item delay
2760 Set delay. Allowed range is from 1 to 100.
2761 Default value is 20.
2762 @end table
2763
2764 @subsection Commands
2765
2766 This filter supports the all above options as @ref{commands}.
2767
2768 @section asubcut
2769 Cut subwoofer frequencies.
2770
2771 This filter allows to set custom, steeper
2772 roll off than highpass filter, and thus is able to more attenuate
2773 frequency content in stop-band.
2774
2775 The filter accepts the following options:
2776
2777 @table @option
2778 @item cutoff
2779 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2780 Default value is 20.
2781
2782 @item order
2783 Set filter order. Available values are from 3 to 20.
2784 Default value is 10.
2785
2786 @item level
2787 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2788 @end table
2789
2790 @subsection Commands
2791
2792 This filter supports the all above options as @ref{commands}.
2793
2794 @section asupercut
2795 Cut super frequencies.
2796
2797 The filter accepts the following options:
2798
2799 @table @option
2800 @item cutoff
2801 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2802 Default value is 20000.
2803
2804 @item order
2805 Set filter order. Available values are from 3 to 20.
2806 Default value is 10.
2807
2808 @item level
2809 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2810 @end table
2811
2812 @subsection Commands
2813
2814 This filter supports the all above options as @ref{commands}.
2815
2816 @section asuperpass
2817 Apply high order Butterworth band-pass filter.
2818
2819 The filter accepts the following options:
2820
2821 @table @option
2822 @item centerf
2823 Set center frequency in Hertz. Allowed range is 2 to 999999.
2824 Default value is 1000.
2825
2826 @item order
2827 Set filter order. Available values are from 4 to 20.
2828 Default value is 4.
2829
2830 @item qfactor
2831 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2832
2833 @item level
2834 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2835 @end table
2836
2837 @subsection Commands
2838
2839 This filter supports the all above options as @ref{commands}.
2840
2841 @section asuperstop
2842 Apply high order Butterworth band-stop filter.
2843
2844 The filter accepts the following options:
2845
2846 @table @option
2847 @item centerf
2848 Set center frequency in Hertz. Allowed range is 2 to 999999.
2849 Default value is 1000.
2850
2851 @item order
2852 Set filter order. Available values are from 4 to 20.
2853 Default value is 4.
2854
2855 @item qfactor
2856 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2857
2858 @item level
2859 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2860 @end table
2861
2862 @subsection Commands
2863
2864 This filter supports the all above options as @ref{commands}.
2865
2866 @section atempo
2867
2868 Adjust audio tempo.
2869
2870 The filter accepts exactly one parameter, the audio tempo. If not
2871 specified then the filter will assume nominal 1.0 tempo. Tempo must
2872 be in the [0.5, 100.0] range.
2873
2874 Note that tempo greater than 2 will skip some samples rather than
2875 blend them in.  If for any reason this is a concern it is always
2876 possible to daisy-chain several instances of atempo to achieve the
2877 desired product tempo.
2878
2879 @subsection Examples
2880
2881 @itemize
2882 @item
2883 Slow down audio to 80% tempo:
2884 @example
2885 atempo=0.8
2886 @end example
2887
2888 @item
2889 To speed up audio to 300% tempo:
2890 @example
2891 atempo=3
2892 @end example
2893
2894 @item
2895 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2896 @example
2897 atempo=sqrt(3),atempo=sqrt(3)
2898 @end example
2899 @end itemize
2900
2901 @subsection Commands
2902
2903 This filter supports the following commands:
2904 @table @option
2905 @item tempo
2906 Change filter tempo scale factor.
2907 Syntax for the command is : "@var{tempo}"
2908 @end table
2909
2910 @section atrim
2911
2912 Trim the input so that the output contains one continuous subpart of the input.
2913
2914 It accepts the following parameters:
2915 @table @option
2916 @item start
2917 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2918 sample with the timestamp @var{start} will be the first sample in the output.
2919
2920 @item end
2921 Specify time of the first audio sample that will be dropped, i.e. the
2922 audio sample immediately preceding the one with the timestamp @var{end} will be
2923 the last sample in the output.
2924
2925 @item start_pts
2926 Same as @var{start}, except this option sets the start timestamp in samples
2927 instead of seconds.
2928
2929 @item end_pts
2930 Same as @var{end}, except this option sets the end timestamp in samples instead
2931 of seconds.
2932
2933 @item duration
2934 The maximum duration of the output in seconds.
2935
2936 @item start_sample
2937 The number of the first sample that should be output.
2938
2939 @item end_sample
2940 The number of the first sample that should be dropped.
2941 @end table
2942
2943 @option{start}, @option{end}, and @option{duration} are expressed as time
2944 duration specifications; see
2945 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2946
2947 Note that the first two sets of the start/end options and the @option{duration}
2948 option look at the frame timestamp, while the _sample options simply count the
2949 samples that pass through the filter. So start/end_pts and start/end_sample will
2950 give different results when the timestamps are wrong, inexact or do not start at
2951 zero. Also note that this filter does not modify the timestamps. If you wish
2952 to have the output timestamps start at zero, insert the asetpts filter after the
2953 atrim filter.
2954
2955 If multiple start or end options are set, this filter tries to be greedy and
2956 keep all samples that match at least one of the specified constraints. To keep
2957 only the part that matches all the constraints at once, chain multiple atrim
2958 filters.
2959
2960 The defaults are such that all the input is kept. So it is possible to set e.g.
2961 just the end values to keep everything before the specified time.
2962
2963 Examples:
2964 @itemize
2965 @item
2966 Drop everything except the second minute of input:
2967 @example
2968 ffmpeg -i INPUT -af atrim=60:120
2969 @end example
2970
2971 @item
2972 Keep only the first 1000 samples:
2973 @example
2974 ffmpeg -i INPUT -af atrim=end_sample=1000
2975 @end example
2976
2977 @end itemize
2978
2979 @section axcorrelate
2980 Calculate normalized cross-correlation between two input audio streams.
2981
2982 Resulted samples are always between -1 and 1 inclusive.
2983 If result is 1 it means two input samples are highly correlated in that selected segment.
2984 Result 0 means they are not correlated at all.
2985 If result is -1 it means two input samples are out of phase, which means they cancel each
2986 other.
2987
2988 The filter accepts the following options:
2989
2990 @table @option
2991 @item size
2992 Set size of segment over which cross-correlation is calculated.
2993 Default is 256. Allowed range is from 2 to 131072.
2994
2995 @item algo
2996 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2997 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2998 are always zero and thus need much less calculations to make.
2999 This is generally not true, but is valid for typical audio streams.
3000 @end table
3001
3002 @subsection Examples
3003
3004 @itemize
3005 @item
3006 Calculate correlation between channels in stereo audio stream:
3007 @example
3008 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
3009 @end example
3010 @end itemize
3011
3012 @section bandpass
3013
3014 Apply a two-pole Butterworth band-pass filter with central
3015 frequency @var{frequency}, and (3dB-point) band-width width.
3016 The @var{csg} option selects a constant skirt gain (peak gain = Q)
3017 instead of the default: constant 0dB peak gain.
3018 The filter roll off at 6dB per octave (20dB per decade).
3019
3020 The filter accepts the following options:
3021
3022 @table @option
3023 @item frequency, f
3024 Set the filter's central frequency. Default is @code{3000}.
3025
3026 @item csg
3027 Constant skirt gain if set to 1. Defaults to 0.
3028
3029 @item width_type, t
3030 Set method to specify band-width of filter.
3031 @table @option
3032 @item h
3033 Hz
3034 @item q
3035 Q-Factor
3036 @item o
3037 octave
3038 @item s
3039 slope
3040 @item k
3041 kHz
3042 @end table
3043
3044 @item width, w
3045 Specify the band-width of a filter in width_type units.
3046
3047 @item mix, m
3048 How much to use filtered signal in output. Default is 1.
3049 Range is between 0 and 1.
3050
3051 @item channels, c
3052 Specify which channels to filter, by default all available are filtered.
3053
3054 @item normalize, n
3055 Normalize biquad coefficients, by default is disabled.
3056 Enabling it will normalize magnitude response at DC to 0dB.
3057
3058 @item transform, a
3059 Set transform type of IIR filter.
3060 @table @option
3061 @item di
3062 @item dii
3063 @item tdii
3064 @item latt
3065 @end table
3066
3067 @item precision, r
3068 Set precison of filtering.
3069 @table @option
3070 @item auto
3071 Pick automatic sample format depending on surround filters.
3072 @item s16
3073 Always use signed 16-bit.
3074 @item s32
3075 Always use signed 32-bit.
3076 @item f32
3077 Always use float 32-bit.
3078 @item f64
3079 Always use float 64-bit.
3080 @end table
3081 @end table
3082
3083 @subsection Commands
3084
3085 This filter supports the following commands:
3086 @table @option
3087 @item frequency, f
3088 Change bandpass frequency.
3089 Syntax for the command is : "@var{frequency}"
3090
3091 @item width_type, t
3092 Change bandpass width_type.
3093 Syntax for the command is : "@var{width_type}"
3094
3095 @item width, w
3096 Change bandpass width.
3097 Syntax for the command is : "@var{width}"
3098
3099 @item mix, m
3100 Change bandpass mix.
3101 Syntax for the command is : "@var{mix}"
3102 @end table
3103
3104 @section bandreject
3105
3106 Apply a two-pole Butterworth band-reject filter with central
3107 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3108 The filter roll off at 6dB per octave (20dB per decade).
3109
3110 The filter accepts the following options:
3111
3112 @table @option
3113 @item frequency, f
3114 Set the filter's central frequency. Default is @code{3000}.
3115
3116 @item width_type, t
3117 Set method to specify band-width of filter.
3118 @table @option
3119 @item h
3120 Hz
3121 @item q
3122 Q-Factor
3123 @item o
3124 octave
3125 @item s
3126 slope
3127 @item k
3128 kHz
3129 @end table
3130
3131 @item width, w
3132 Specify the band-width of a filter in width_type units.
3133
3134 @item mix, m
3135 How much to use filtered signal in output. Default is 1.
3136 Range is between 0 and 1.
3137
3138 @item channels, c
3139 Specify which channels to filter, by default all available are filtered.
3140
3141 @item normalize, n
3142 Normalize biquad coefficients, by default is disabled.
3143 Enabling it will normalize magnitude response at DC to 0dB.
3144
3145 @item transform, a
3146 Set transform type of IIR filter.
3147 @table @option
3148 @item di
3149 @item dii
3150 @item tdii
3151 @item latt
3152 @end table
3153
3154 @item precision, r
3155 Set precison of filtering.
3156 @table @option
3157 @item auto
3158 Pick automatic sample format depending on surround filters.
3159 @item s16
3160 Always use signed 16-bit.
3161 @item s32
3162 Always use signed 32-bit.
3163 @item f32
3164 Always use float 32-bit.
3165 @item f64
3166 Always use float 64-bit.
3167 @end table
3168 @end table
3169
3170 @subsection Commands
3171
3172 This filter supports the following commands:
3173 @table @option
3174 @item frequency, f
3175 Change bandreject frequency.
3176 Syntax for the command is : "@var{frequency}"
3177
3178 @item width_type, t
3179 Change bandreject width_type.
3180 Syntax for the command is : "@var{width_type}"
3181
3182 @item width, w
3183 Change bandreject width.
3184 Syntax for the command is : "@var{width}"
3185
3186 @item mix, m
3187 Change bandreject mix.
3188 Syntax for the command is : "@var{mix}"
3189 @end table
3190
3191 @section bass, lowshelf
3192
3193 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3194 shelving filter with a response similar to that of a standard
3195 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3196
3197 The filter accepts the following options:
3198
3199 @table @option
3200 @item gain, g
3201 Give the gain at 0 Hz. Its useful range is about -20
3202 (for a large cut) to +20 (for a large boost).
3203 Beware of clipping when using a positive gain.
3204
3205 @item frequency, f
3206 Set the filter's central frequency and so can be used
3207 to extend or reduce the frequency range to be boosted or cut.
3208 The default value is @code{100} Hz.
3209
3210 @item width_type, t
3211 Set method to specify band-width of filter.
3212 @table @option
3213 @item h
3214 Hz
3215 @item q
3216 Q-Factor
3217 @item o
3218 octave
3219 @item s
3220 slope
3221 @item k
3222 kHz
3223 @end table
3224
3225 @item width, w
3226 Determine how steep is the filter's shelf transition.
3227
3228 @item poles, p
3229 Set number of poles. Default is 2.
3230
3231 @item mix, m
3232 How much to use filtered signal in output. Default is 1.
3233 Range is between 0 and 1.
3234
3235 @item channels, c
3236 Specify which channels to filter, by default all available are filtered.
3237
3238 @item normalize, n
3239 Normalize biquad coefficients, by default is disabled.
3240 Enabling it will normalize magnitude response at DC to 0dB.
3241
3242 @item transform, a
3243 Set transform type of IIR filter.
3244 @table @option
3245 @item di
3246 @item dii
3247 @item tdii
3248 @item latt
3249 @end table
3250
3251 @item precision, r
3252 Set precison of filtering.
3253 @table @option
3254 @item auto
3255 Pick automatic sample format depending on surround filters.
3256 @item s16
3257 Always use signed 16-bit.
3258 @item s32
3259 Always use signed 32-bit.
3260 @item f32
3261 Always use float 32-bit.
3262 @item f64
3263 Always use float 64-bit.
3264 @end table
3265 @end table
3266
3267 @subsection Commands
3268
3269 This filter supports the following commands:
3270 @table @option
3271 @item frequency, f
3272 Change bass frequency.
3273 Syntax for the command is : "@var{frequency}"
3274
3275 @item width_type, t
3276 Change bass width_type.
3277 Syntax for the command is : "@var{width_type}"
3278
3279 @item width, w
3280 Change bass width.
3281 Syntax for the command is : "@var{width}"
3282
3283 @item gain, g
3284 Change bass gain.
3285 Syntax for the command is : "@var{gain}"
3286
3287 @item mix, m
3288 Change bass mix.
3289 Syntax for the command is : "@var{mix}"
3290 @end table
3291
3292 @section biquad
3293
3294 Apply a biquad IIR filter with the given coefficients.
3295 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3296 are the numerator and denominator coefficients respectively.
3297 and @var{channels}, @var{c} specify which channels to filter, by default all
3298 available are filtered.
3299
3300 @subsection Commands
3301
3302 This filter supports the following commands:
3303 @table @option
3304 @item a0
3305 @item a1
3306 @item a2
3307 @item b0
3308 @item b1
3309 @item b2
3310 Change biquad parameter.
3311 Syntax for the command is : "@var{value}"
3312
3313 @item mix, m
3314 How much to use filtered signal in output. Default is 1.
3315 Range is between 0 and 1.
3316
3317 @item channels, c
3318 Specify which channels to filter, by default all available are filtered.
3319
3320 @item normalize, n
3321 Normalize biquad coefficients, by default is disabled.
3322 Enabling it will normalize magnitude response at DC to 0dB.
3323
3324 @item transform, a
3325 Set transform type of IIR filter.
3326 @table @option
3327 @item di
3328 @item dii
3329 @item tdii
3330 @item latt
3331 @end table
3332
3333 @item precision, r
3334 Set precison of filtering.
3335 @table @option
3336 @item auto
3337 Pick automatic sample format depending on surround filters.
3338 @item s16
3339 Always use signed 16-bit.
3340 @item s32
3341 Always use signed 32-bit.
3342 @item f32
3343 Always use float 32-bit.
3344 @item f64
3345 Always use float 64-bit.
3346 @end table
3347 @end table
3348
3349 @section bs2b
3350 Bauer stereo to binaural transformation, which improves headphone listening of
3351 stereo audio records.
3352
3353 To enable compilation of this filter you need to configure FFmpeg with
3354 @code{--enable-libbs2b}.
3355
3356 It accepts the following parameters:
3357 @table @option
3358
3359 @item profile
3360 Pre-defined crossfeed level.
3361 @table @option
3362
3363 @item default
3364 Default level (fcut=700, feed=50).
3365
3366 @item cmoy
3367 Chu Moy circuit (fcut=700, feed=60).
3368
3369 @item jmeier
3370 Jan Meier circuit (fcut=650, feed=95).
3371
3372 @end table
3373
3374 @item fcut
3375 Cut frequency (in Hz).
3376
3377 @item feed
3378 Feed level (in Hz).
3379
3380 @end table
3381
3382 @section channelmap
3383
3384 Remap input channels to new locations.
3385
3386 It accepts the following parameters:
3387 @table @option
3388 @item map
3389 Map channels from input to output. The argument is a '|'-separated list of
3390 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3391 @var{in_channel} form. @var{in_channel} can be either the name of the input
3392 channel (e.g. FL for front left) or its index in the input channel layout.
3393 @var{out_channel} is the name of the output channel or its index in the output
3394 channel layout. If @var{out_channel} is not given then it is implicitly an
3395 index, starting with zero and increasing by one for each mapping.
3396
3397 @item channel_layout
3398 The channel layout of the output stream.
3399 @end table
3400
3401 If no mapping is present, the filter will implicitly map input channels to
3402 output channels, preserving indices.
3403
3404 @subsection Examples
3405
3406 @itemize
3407 @item
3408 For example, assuming a 5.1+downmix input MOV file,
3409 @example
3410 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3411 @end example
3412 will create an output WAV file tagged as stereo from the downmix channels of
3413 the input.
3414
3415 @item
3416 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3417 @example
3418 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3419 @end example
3420 @end itemize
3421
3422 @section channelsplit
3423
3424 Split each channel from an input audio stream into a separate output stream.
3425
3426 It accepts the following parameters:
3427 @table @option
3428 @item channel_layout
3429 The channel layout of the input stream. The default is "stereo".
3430 @item channels
3431 A channel layout describing the channels to be extracted as separate output streams
3432 or "all" to extract each input channel as a separate stream. The default is "all".
3433
3434 Choosing channels not present in channel layout in the input will result in an error.
3435 @end table
3436
3437 @subsection Examples
3438
3439 @itemize
3440 @item
3441 For example, assuming a stereo input MP3 file,
3442 @example
3443 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3444 @end example
3445 will create an output Matroska file with two audio streams, one containing only
3446 the left channel and the other the right channel.
3447
3448 @item
3449 Split a 5.1 WAV file into per-channel files:
3450 @example
3451 ffmpeg -i in.wav -filter_complex
3452 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3453 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3454 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3455 side_right.wav
3456 @end example
3457
3458 @item
3459 Extract only LFE from a 5.1 WAV file:
3460 @example
3461 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3462 -map '[LFE]' lfe.wav
3463 @end example
3464 @end itemize
3465
3466 @section chorus
3467 Add a chorus effect to the audio.
3468
3469 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3470
3471 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3472 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3473 The modulation depth defines the range the modulated delay is played before or after
3474 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3475 sound tuned around the original one, like in a chorus where some vocals are slightly
3476 off key.
3477
3478 It accepts the following parameters:
3479 @table @option
3480 @item in_gain
3481 Set input gain. Default is 0.4.
3482
3483 @item out_gain
3484 Set output gain. Default is 0.4.
3485
3486 @item delays
3487 Set delays. A typical delay is around 40ms to 60ms.
3488
3489 @item decays
3490 Set decays.
3491
3492 @item speeds
3493 Set speeds.
3494
3495 @item depths
3496 Set depths.
3497 @end table
3498
3499 @subsection Examples
3500
3501 @itemize
3502 @item
3503 A single delay:
3504 @example
3505 chorus=0.7:0.9:55:0.4:0.25:2
3506 @end example
3507
3508 @item
3509 Two delays:
3510 @example
3511 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3512 @end example
3513
3514 @item
3515 Fuller sounding chorus with three delays:
3516 @example
3517 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
3518 @end example
3519 @end itemize
3520
3521 @section compand
3522 Compress or expand the audio's dynamic range.
3523
3524 It accepts the following parameters:
3525
3526 @table @option
3527
3528 @item attacks
3529 @item decays
3530 A list of times in seconds for each channel over which the instantaneous level
3531 of the input signal is averaged to determine its volume. @var{attacks} refers to
3532 increase of volume and @var{decays} refers to decrease of volume. For most
3533 situations, the attack time (response to the audio getting louder) should be
3534 shorter than the decay time, because the human ear is more sensitive to sudden
3535 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3536 a typical value for decay is 0.8 seconds.
3537 If specified number of attacks & decays is lower than number of channels, the last
3538 set attack/decay will be used for all remaining channels.
3539
3540 @item points
3541 A list of points for the transfer function, specified in dB relative to the
3542 maximum possible signal amplitude. Each key points list must be defined using
3543 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3544 @code{x0/y0 x1/y1 x2/y2 ....}
3545
3546 The input values must be in strictly increasing order but the transfer function
3547 does not have to be monotonically rising. The point @code{0/0} is assumed but
3548 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3549 function are @code{-70/-70|-60/-20|1/0}.
3550
3551 @item soft-knee
3552 Set the curve radius in dB for all joints. It defaults to 0.01.
3553
3554 @item gain
3555 Set the additional gain in dB to be applied at all points on the transfer
3556 function. This allows for easy adjustment of the overall gain.
3557 It defaults to 0.
3558
3559 @item volume
3560 Set an initial volume, in dB, to be assumed for each channel when filtering
3561 starts. This permits the user to supply a nominal level initially, so that, for
3562 example, a very large gain is not applied to initial signal levels before the
3563 companding has begun to operate. A typical value for audio which is initially
3564 quiet is -90 dB. It defaults to 0.
3565
3566 @item delay
3567 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3568 delayed before being fed to the volume adjuster. Specifying a delay
3569 approximately equal to the attack/decay times allows the filter to effectively
3570 operate in predictive rather than reactive mode. It defaults to 0.
3571
3572 @end table
3573
3574 @subsection Examples
3575
3576 @itemize
3577 @item
3578 Make music with both quiet and loud passages suitable for listening to in a
3579 noisy environment:
3580 @example
3581 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3582 @end example
3583
3584 Another example for audio with whisper and explosion parts:
3585 @example
3586 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3587 @end example
3588
3589 @item
3590 A noise gate for when the noise is at a lower level than the signal:
3591 @example
3592 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3593 @end example
3594
3595 @item
3596 Here is another noise gate, this time for when the noise is at a higher level
3597 than the signal (making it, in some ways, similar to squelch):
3598 @example
3599 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3600 @end example
3601
3602 @item
3603 2:1 compression starting at -6dB:
3604 @example
3605 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3606 @end example
3607
3608 @item
3609 2:1 compression starting at -9dB:
3610 @example
3611 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3612 @end example
3613
3614 @item
3615 2:1 compression starting at -12dB:
3616 @example
3617 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3618 @end example
3619
3620 @item
3621 2:1 compression starting at -18dB:
3622 @example
3623 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3624 @end example
3625
3626 @item
3627 3:1 compression starting at -15dB:
3628 @example
3629 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3630 @end example
3631
3632 @item
3633 Compressor/Gate:
3634 @example
3635 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3636 @end example
3637
3638 @item
3639 Expander:
3640 @example
3641 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
3642 @end example
3643
3644 @item
3645 Hard limiter at -6dB:
3646 @example
3647 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3648 @end example
3649
3650 @item
3651 Hard limiter at -12dB:
3652 @example
3653 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3654 @end example
3655
3656 @item
3657 Hard noise gate at -35 dB:
3658 @example
3659 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3660 @end example
3661
3662 @item
3663 Soft limiter:
3664 @example
3665 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3666 @end example
3667 @end itemize
3668
3669 @section compensationdelay
3670
3671 Compensation Delay Line is a metric based delay to compensate differing
3672 positions of microphones or speakers.
3673
3674 For example, you have recorded guitar with two microphones placed in
3675 different locations. Because the front of sound wave has fixed speed in
3676 normal conditions, the phasing of microphones can vary and depends on
3677 their location and interposition. The best sound mix can be achieved when
3678 these microphones are in phase (synchronized). Note that a distance of
3679 ~30 cm between microphones makes one microphone capture the signal in
3680 antiphase to the other microphone. That makes the final mix sound moody.
3681 This filter helps to solve phasing problems by adding different delays
3682 to each microphone track and make them synchronized.
3683
3684 The best result can be reached when you take one track as base and
3685 synchronize other tracks one by one with it.
3686 Remember that synchronization/delay tolerance depends on sample rate, too.
3687 Higher sample rates will give more tolerance.
3688
3689 The filter accepts the following parameters:
3690
3691 @table @option
3692 @item mm
3693 Set millimeters distance. This is compensation distance for fine tuning.
3694 Default is 0.
3695
3696 @item cm
3697 Set cm distance. This is compensation distance for tightening distance setup.
3698 Default is 0.
3699
3700 @item m
3701 Set meters distance. This is compensation distance for hard distance setup.
3702 Default is 0.
3703
3704 @item dry
3705 Set dry amount. Amount of unprocessed (dry) signal.
3706 Default is 0.
3707
3708 @item wet
3709 Set wet amount. Amount of processed (wet) signal.
3710 Default is 1.
3711
3712 @item temp
3713 Set temperature in degrees Celsius. This is the temperature of the environment.
3714 Default is 20.
3715 @end table
3716
3717 @section crossfeed
3718 Apply headphone crossfeed filter.
3719
3720 Crossfeed is the process of blending the left and right channels of stereo
3721 audio recording.
3722 It is mainly used to reduce extreme stereo separation of low frequencies.
3723
3724 The intent is to produce more speaker like sound to the listener.
3725
3726 The filter accepts the following options:
3727
3728 @table @option
3729 @item strength
3730 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3731 This sets gain of low shelf filter for side part of stereo image.
3732 Default is -6dB. Max allowed is -30db when strength is set to 1.
3733
3734 @item range
3735 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3736 This sets cut off frequency of low shelf filter. Default is cut off near
3737 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3738
3739 @item slope
3740 Set curve slope of low shelf filter. Default is 0.5.
3741 Allowed range is from 0.01 to 1.
3742
3743 @item level_in
3744 Set input gain. Default is 0.9.
3745
3746 @item level_out
3747 Set output gain. Default is 1.
3748 @end table
3749
3750 @subsection Commands
3751
3752 This filter supports the all above options as @ref{commands}.
3753
3754 @section crystalizer
3755 Simple algorithm for audio noise sharpening.
3756
3757 This filter linearly increases differences betweeen each audio sample.
3758
3759 The filter accepts the following options:
3760
3761 @table @option
3762 @item i
3763 Sets the intensity of effect (default: 2.0). Must be in range between -10.0 to 0
3764 (unchanged sound) to 10.0 (maximum effect).
3765 To inverse filtering use negative value.
3766
3767 @item c
3768 Enable clipping. By default is enabled.
3769 @end table
3770
3771 @subsection Commands
3772
3773 This filter supports the all above options as @ref{commands}.
3774
3775 @section dcshift
3776 Apply a DC shift to the audio.
3777
3778 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3779 in the recording chain) from the audio. The effect of a DC offset is reduced
3780 headroom and hence volume. The @ref{astats} filter can be used to determine if
3781 a signal has a DC offset.
3782
3783 @table @option
3784 @item shift
3785 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3786 the audio.
3787
3788 @item limitergain
3789 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3790 used to prevent clipping.
3791 @end table
3792
3793 @section deesser
3794
3795 Apply de-essing to the audio samples.
3796
3797 @table @option
3798 @item i
3799 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3800 Default is 0.
3801
3802 @item m
3803 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3804 Default is 0.5.
3805
3806 @item f
3807 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3808 Default is 0.5.
3809
3810 @item s
3811 Set the output mode.
3812
3813 It accepts the following values:
3814 @table @option
3815 @item i
3816 Pass input unchanged.
3817
3818 @item o
3819 Pass ess filtered out.
3820
3821 @item e
3822 Pass only ess.
3823
3824 Default value is @var{o}.
3825 @end table
3826
3827 @end table
3828
3829 @section drmeter
3830 Measure audio dynamic range.
3831
3832 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3833 is found in transition material. And anything less that 8 have very poor dynamics
3834 and is very compressed.
3835
3836 The filter accepts the following options:
3837
3838 @table @option
3839 @item length
3840 Set window length in seconds used to split audio into segments of equal length.
3841 Default is 3 seconds.
3842 @end table
3843
3844 @section dynaudnorm
3845 Dynamic Audio Normalizer.
3846
3847 This filter applies a certain amount of gain to the input audio in order
3848 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3849 contrast to more "simple" normalization algorithms, the Dynamic Audio
3850 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3851 This allows for applying extra gain to the "quiet" sections of the audio
3852 while avoiding distortions or clipping the "loud" sections. In other words:
3853 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3854 sections, in the sense that the volume of each section is brought to the
3855 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3856 this goal *without* applying "dynamic range compressing". It will retain 100%
3857 of the dynamic range *within* each section of the audio file.
3858
3859 @table @option
3860 @item framelen, f
3861 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3862 Default is 500 milliseconds.
3863 The Dynamic Audio Normalizer processes the input audio in small chunks,
3864 referred to as frames. This is required, because a peak magnitude has no
3865 meaning for just a single sample value. Instead, we need to determine the
3866 peak magnitude for a contiguous sequence of sample values. While a "standard"
3867 normalizer would simply use the peak magnitude of the complete file, the
3868 Dynamic Audio Normalizer determines the peak magnitude individually for each
3869 frame. The length of a frame is specified in milliseconds. By default, the
3870 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3871 been found to give good results with most files.
3872 Note that the exact frame length, in number of samples, will be determined
3873 automatically, based on the sampling rate of the individual input audio file.
3874
3875 @item gausssize, g
3876 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3877 number. Default is 31.
3878 Probably the most important parameter of the Dynamic Audio Normalizer is the
3879 @code{window size} of the Gaussian smoothing filter. The filter's window size
3880 is specified in frames, centered around the current frame. For the sake of
3881 simplicity, this must be an odd number. Consequently, the default value of 31
3882 takes into account the current frame, as well as the 15 preceding frames and
3883 the 15 subsequent frames. Using a larger window results in a stronger
3884 smoothing effect and thus in less gain variation, i.e. slower gain
3885 adaptation. Conversely, using a smaller window results in a weaker smoothing
3886 effect and thus in more gain variation, i.e. faster gain adaptation.
3887 In other words, the more you increase this value, the more the Dynamic Audio
3888 Normalizer will behave like a "traditional" normalization filter. On the
3889 contrary, the more you decrease this value, the more the Dynamic Audio
3890 Normalizer will behave like a dynamic range compressor.
3891
3892 @item peak, p
3893 Set the target peak value. This specifies the highest permissible magnitude
3894 level for the normalized audio input. This filter will try to approach the
3895 target peak magnitude as closely as possible, but at the same time it also
3896 makes sure that the normalized signal will never exceed the peak magnitude.
3897 A frame's maximum local gain factor is imposed directly by the target peak
3898 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3899 It is not recommended to go above this value.
3900
3901 @item maxgain, m
3902 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3903 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3904 factor for each input frame, i.e. the maximum gain factor that does not
3905 result in clipping or distortion. The maximum gain factor is determined by
3906 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3907 additionally bounds the frame's maximum gain factor by a predetermined
3908 (global) maximum gain factor. This is done in order to avoid excessive gain
3909 factors in "silent" or almost silent frames. By default, the maximum gain
3910 factor is 10.0, For most inputs the default value should be sufficient and
3911 it usually is not recommended to increase this value. Though, for input
3912 with an extremely low overall volume level, it may be necessary to allow even
3913 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3914 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3915 Instead, a "sigmoid" threshold function will be applied. This way, the
3916 gain factors will smoothly approach the threshold value, but never exceed that
3917 value.
3918
3919 @item targetrms, r
3920 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3921 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3922 This means that the maximum local gain factor for each frame is defined
3923 (only) by the frame's highest magnitude sample. This way, the samples can
3924 be amplified as much as possible without exceeding the maximum signal
3925 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3926 Normalizer can also take into account the frame's root mean square,
3927 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3928 determine the power of a time-varying signal. It is therefore considered
3929 that the RMS is a better approximation of the "perceived loudness" than
3930 just looking at the signal's peak magnitude. Consequently, by adjusting all
3931 frames to a constant RMS value, a uniform "perceived loudness" can be
3932 established. If a target RMS value has been specified, a frame's local gain
3933 factor is defined as the factor that would result in exactly that RMS value.
3934 Note, however, that the maximum local gain factor is still restricted by the
3935 frame's highest magnitude sample, in order to prevent clipping.
3936
3937 @item coupling, n
3938 Enable channels coupling. By default is enabled.
3939 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3940 amount. This means the same gain factor will be applied to all channels, i.e.
3941 the maximum possible gain factor is determined by the "loudest" channel.
3942 However, in some recordings, it may happen that the volume of the different
3943 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3944 In this case, this option can be used to disable the channel coupling. This way,
3945 the gain factor will be determined independently for each channel, depending
3946 only on the individual channel's highest magnitude sample. This allows for
3947 harmonizing the volume of the different channels.
3948
3949 @item correctdc, c
3950 Enable DC bias correction. By default is disabled.
3951 An audio signal (in the time domain) is a sequence of sample values.
3952 In the Dynamic Audio Normalizer these sample values are represented in the
3953 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3954 audio signal, or "waveform", should be centered around the zero point.
3955 That means if we calculate the mean value of all samples in a file, or in a
3956 single frame, then the result should be 0.0 or at least very close to that
3957 value. If, however, there is a significant deviation of the mean value from
3958 0.0, in either positive or negative direction, this is referred to as a
3959 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3960 Audio Normalizer provides optional DC bias correction.
3961 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3962 the mean value, or "DC correction" offset, of each input frame and subtract
3963 that value from all of the frame's sample values which ensures those samples
3964 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3965 boundaries, the DC correction offset values will be interpolated smoothly
3966 between neighbouring frames.
3967
3968 @item altboundary, b
3969 Enable alternative boundary mode. By default is disabled.
3970 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3971 around each frame. This includes the preceding frames as well as the
3972 subsequent frames. However, for the "boundary" frames, located at the very
3973 beginning and at the very end of the audio file, not all neighbouring
3974 frames are available. In particular, for the first few frames in the audio
3975 file, the preceding frames are not known. And, similarly, for the last few
3976 frames in the audio file, the subsequent frames are not known. Thus, the
3977 question arises which gain factors should be assumed for the missing frames
3978 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3979 to deal with this situation. The default boundary mode assumes a gain factor
3980 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3981 "fade out" at the beginning and at the end of the input, respectively.
3982
3983 @item compress, s
3984 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3985 By default, the Dynamic Audio Normalizer does not apply "traditional"
3986 compression. This means that signal peaks will not be pruned and thus the
3987 full dynamic range will be retained within each local neighbourhood. However,
3988 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3989 normalization algorithm with a more "traditional" compression.
3990 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3991 (thresholding) function. If (and only if) the compression feature is enabled,
3992 all input frames will be processed by a soft knee thresholding function prior
3993 to the actual normalization process. Put simply, the thresholding function is
3994 going to prune all samples whose magnitude exceeds a certain threshold value.
3995 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3996 value. Instead, the threshold value will be adjusted for each individual
3997 frame.
3998 In general, smaller parameters result in stronger compression, and vice versa.
3999 Values below 3.0 are not recommended, because audible distortion may appear.
4000
4001 @item threshold, t
4002 Set the target threshold value. This specifies the lowest permissible
4003 magnitude level for the audio input which will be normalized.
4004 If input frame volume is above this value frame will be normalized.
4005 Otherwise frame may not be normalized at all. The default value is set
4006 to 0, which means all input frames will be normalized.
4007 This option is mostly useful if digital noise is not wanted to be amplified.
4008 @end table
4009
4010 @subsection Commands
4011
4012 This filter supports the all above options as @ref{commands}.
4013
4014 @section earwax
4015
4016 Make audio easier to listen to on headphones.
4017
4018 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
4019 so that when listened to on headphones the stereo image is moved from
4020 inside your head (standard for headphones) to outside and in front of
4021 the listener (standard for speakers).
4022
4023 Ported from SoX.
4024
4025 @section equalizer
4026
4027 Apply a two-pole peaking equalisation (EQ) filter. With this
4028 filter, the signal-level at and around a selected frequency can
4029 be increased or decreased, whilst (unlike bandpass and bandreject
4030 filters) that at all other frequencies is unchanged.
4031
4032 In order to produce complex equalisation curves, this filter can
4033 be given several times, each with a different central frequency.
4034
4035 The filter accepts the following options:
4036
4037 @table @option
4038 @item frequency, f
4039 Set the filter's central frequency in Hz.
4040
4041 @item width_type, t
4042 Set method to specify band-width of filter.
4043 @table @option
4044 @item h
4045 Hz
4046 @item q
4047 Q-Factor
4048 @item o
4049 octave
4050 @item s
4051 slope
4052 @item k
4053 kHz
4054 @end table
4055
4056 @item width, w
4057 Specify the band-width of a filter in width_type units.
4058
4059 @item gain, g
4060 Set the required gain or attenuation in dB.
4061 Beware of clipping when using a positive gain.
4062
4063 @item mix, m
4064 How much to use filtered signal in output. Default is 1.
4065 Range is between 0 and 1.
4066
4067 @item channels, c
4068 Specify which channels to filter, by default all available are filtered.
4069
4070 @item normalize, n
4071 Normalize biquad coefficients, by default is disabled.
4072 Enabling it will normalize magnitude response at DC to 0dB.
4073
4074 @item transform, a
4075 Set transform type of IIR filter.
4076 @table @option
4077 @item di
4078 @item dii
4079 @item tdii
4080 @item latt
4081 @end table
4082
4083 @item precision, r
4084 Set precison of filtering.
4085 @table @option
4086 @item auto
4087 Pick automatic sample format depending on surround filters.
4088 @item s16
4089 Always use signed 16-bit.
4090 @item s32
4091 Always use signed 32-bit.
4092 @item f32
4093 Always use float 32-bit.
4094 @item f64
4095 Always use float 64-bit.
4096 @end table
4097 @end table
4098
4099 @subsection Examples
4100 @itemize
4101 @item
4102 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4103 @example
4104 equalizer=f=1000:t=h:width=200:g=-10
4105 @end example
4106
4107 @item
4108 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4109 @example
4110 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4111 @end example
4112 @end itemize
4113
4114 @subsection Commands
4115
4116 This filter supports the following commands:
4117 @table @option
4118 @item frequency, f
4119 Change equalizer frequency.
4120 Syntax for the command is : "@var{frequency}"
4121
4122 @item width_type, t
4123 Change equalizer width_type.
4124 Syntax for the command is : "@var{width_type}"
4125
4126 @item width, w
4127 Change equalizer width.
4128 Syntax for the command is : "@var{width}"
4129
4130 @item gain, g
4131 Change equalizer gain.
4132 Syntax for the command is : "@var{gain}"
4133
4134 @item mix, m
4135 Change equalizer mix.
4136 Syntax for the command is : "@var{mix}"
4137 @end table
4138
4139 @section extrastereo
4140
4141 Linearly increases the difference between left and right channels which
4142 adds some sort of "live" effect to playback.
4143
4144 The filter accepts the following options:
4145
4146 @table @option
4147 @item m
4148 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4149 (average of both channels), with 1.0 sound will be unchanged, with
4150 -1.0 left and right channels will be swapped.
4151
4152 @item c
4153 Enable clipping. By default is enabled.
4154 @end table
4155
4156 @subsection Commands
4157
4158 This filter supports the all above options as @ref{commands}.
4159
4160 @section firequalizer
4161 Apply FIR Equalization using arbitrary frequency response.
4162
4163 The filter accepts the following option:
4164
4165 @table @option
4166 @item gain
4167 Set gain curve equation (in dB). The expression can contain variables:
4168 @table @option
4169 @item f
4170 the evaluated frequency
4171 @item sr
4172 sample rate
4173 @item ch
4174 channel number, set to 0 when multichannels evaluation is disabled
4175 @item chid
4176 channel id, see libavutil/channel_layout.h, set to the first channel id when
4177 multichannels evaluation is disabled
4178 @item chs
4179 number of channels
4180 @item chlayout
4181 channel_layout, see libavutil/channel_layout.h
4182
4183 @end table
4184 and functions:
4185 @table @option
4186 @item gain_interpolate(f)
4187 interpolate gain on frequency f based on gain_entry
4188 @item cubic_interpolate(f)
4189 same as gain_interpolate, but smoother
4190 @end table
4191 This option is also available as command. Default is @code{gain_interpolate(f)}.
4192
4193 @item gain_entry
4194 Set gain entry for gain_interpolate function. The expression can
4195 contain functions:
4196 @table @option
4197 @item entry(f, g)
4198 store gain entry at frequency f with value g
4199 @end table
4200 This option is also available as command.
4201
4202 @item delay
4203 Set filter delay in seconds. Higher value means more accurate.
4204 Default is @code{0.01}.
4205
4206 @item accuracy
4207 Set filter accuracy in Hz. Lower value means more accurate.
4208 Default is @code{5}.
4209
4210 @item wfunc
4211 Set window function. Acceptable values are:
4212 @table @option
4213 @item rectangular
4214 rectangular window, useful when gain curve is already smooth
4215 @item hann
4216 hann window (default)
4217 @item hamming
4218 hamming window
4219 @item blackman
4220 blackman window
4221 @item nuttall3
4222 3-terms continuous 1st derivative nuttall window
4223 @item mnuttall3
4224 minimum 3-terms discontinuous nuttall window
4225 @item nuttall
4226 4-terms continuous 1st derivative nuttall window
4227 @item bnuttall
4228 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4229 @item bharris
4230 blackman-harris window
4231 @item tukey
4232 tukey window
4233 @end table
4234
4235 @item fixed
4236 If enabled, use fixed number of audio samples. This improves speed when
4237 filtering with large delay. Default is disabled.
4238
4239 @item multi
4240 Enable multichannels evaluation on gain. Default is disabled.
4241
4242 @item zero_phase
4243 Enable zero phase mode by subtracting timestamp to compensate delay.
4244 Default is disabled.
4245
4246 @item scale
4247 Set scale used by gain. Acceptable values are:
4248 @table @option
4249 @item linlin
4250 linear frequency, linear gain
4251 @item linlog
4252 linear frequency, logarithmic (in dB) gain (default)
4253 @item loglin
4254 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4255 @item loglog
4256 logarithmic frequency, logarithmic gain
4257 @end table
4258
4259 @item dumpfile
4260 Set file for dumping, suitable for gnuplot.
4261
4262 @item dumpscale
4263 Set scale for dumpfile. Acceptable values are same with scale option.
4264 Default is linlog.
4265
4266 @item fft2
4267 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4268 Default is disabled.
4269
4270 @item min_phase
4271 Enable minimum phase impulse response. Default is disabled.
4272 @end table
4273
4274 @subsection Examples
4275 @itemize
4276 @item
4277 lowpass at 1000 Hz:
4278 @example
4279 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4280 @end example
4281 @item
4282 lowpass at 1000 Hz with gain_entry:
4283 @example
4284 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4285 @end example
4286 @item
4287 custom equalization:
4288 @example
4289 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4290 @end example
4291 @item
4292 higher delay with zero phase to compensate delay:
4293 @example
4294 firequalizer=delay=0.1:fixed=on:zero_phase=on
4295 @end example
4296 @item
4297 lowpass on left channel, highpass on right channel:
4298 @example
4299 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4300 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4301 @end example
4302 @end itemize
4303
4304 @section flanger
4305 Apply a flanging effect to the audio.
4306
4307 The filter accepts the following options:
4308
4309 @table @option
4310 @item delay
4311 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4312
4313 @item depth
4314 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4315
4316 @item regen
4317 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4318 Default value is 0.
4319
4320 @item width
4321 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4322 Default value is 71.
4323
4324 @item speed
4325 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4326
4327 @item shape
4328 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4329 Default value is @var{sinusoidal}.
4330
4331 @item phase
4332 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4333 Default value is 25.
4334
4335 @item interp
4336 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4337 Default is @var{linear}.
4338 @end table
4339
4340 @section haas
4341 Apply Haas effect to audio.
4342
4343 Note that this makes most sense to apply on mono signals.
4344 With this filter applied to mono signals it give some directionality and
4345 stretches its stereo image.
4346
4347 The filter accepts the following options:
4348
4349 @table @option
4350 @item level_in
4351 Set input level. By default is @var{1}, or 0dB
4352
4353 @item level_out
4354 Set output level. By default is @var{1}, or 0dB.
4355
4356 @item side_gain
4357 Set gain applied to side part of signal. By default is @var{1}.
4358
4359 @item middle_source
4360 Set kind of middle source. Can be one of the following:
4361
4362 @table @samp
4363 @item left
4364 Pick left channel.
4365
4366 @item right
4367 Pick right channel.
4368
4369 @item mid
4370 Pick middle part signal of stereo image.
4371
4372 @item side
4373 Pick side part signal of stereo image.
4374 @end table
4375
4376 @item middle_phase
4377 Change middle phase. By default is disabled.
4378
4379 @item left_delay
4380 Set left channel delay. By default is @var{2.05} milliseconds.
4381
4382 @item left_balance
4383 Set left channel balance. By default is @var{-1}.
4384
4385 @item left_gain
4386 Set left channel gain. By default is @var{1}.
4387
4388 @item left_phase
4389 Change left phase. By default is disabled.
4390
4391 @item right_delay
4392 Set right channel delay. By defaults is @var{2.12} milliseconds.
4393
4394 @item right_balance
4395 Set right channel balance. By default is @var{1}.
4396
4397 @item right_gain
4398 Set right channel gain. By default is @var{1}.
4399
4400 @item right_phase
4401 Change right phase. By default is enabled.
4402 @end table
4403
4404 @section hdcd
4405
4406 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4407 embedded HDCD codes is expanded into a 20-bit PCM stream.
4408
4409 The filter supports the Peak Extend and Low-level Gain Adjustment features
4410 of HDCD, and detects the Transient Filter flag.
4411
4412 @example
4413 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4414 @end example
4415
4416 When using the filter with wav, note the default encoding for wav is 16-bit,
4417 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4418 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4419 @example
4420 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4421 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4422 @end example
4423
4424 The filter accepts the following options:
4425
4426 @table @option
4427 @item disable_autoconvert
4428 Disable any automatic format conversion or resampling in the filter graph.
4429
4430 @item process_stereo
4431 Process the stereo channels together. If target_gain does not match between
4432 channels, consider it invalid and use the last valid target_gain.
4433
4434 @item cdt_ms
4435 Set the code detect timer period in ms.
4436
4437 @item force_pe
4438 Always extend peaks above -3dBFS even if PE isn't signaled.
4439
4440 @item analyze_mode
4441 Replace audio with a solid tone and adjust the amplitude to signal some
4442 specific aspect of the decoding process. The output file can be loaded in
4443 an audio editor alongside the original to aid analysis.
4444
4445 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4446
4447 Modes are:
4448 @table @samp
4449 @item 0, off
4450 Disabled
4451 @item 1, lle
4452 Gain adjustment level at each sample
4453 @item 2, pe
4454 Samples where peak extend occurs
4455 @item 3, cdt
4456 Samples where the code detect timer is active
4457 @item 4, tgm
4458 Samples where the target gain does not match between channels
4459 @end table
4460 @end table
4461
4462 @section headphone
4463
4464 Apply head-related transfer functions (HRTFs) to create virtual
4465 loudspeakers around the user for binaural listening via headphones.
4466 The HRIRs are provided via additional streams, for each channel
4467 one stereo input stream is needed.
4468
4469 The filter accepts the following options:
4470
4471 @table @option
4472 @item map
4473 Set mapping of input streams for convolution.
4474 The argument is a '|'-separated list of channel names in order as they
4475 are given as additional stream inputs for filter.
4476 This also specify number of input streams. Number of input streams
4477 must be not less than number of channels in first stream plus one.
4478
4479 @item gain
4480 Set gain applied to audio. Value is in dB. Default is 0.
4481
4482 @item type
4483 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4484 processing audio in time domain which is slow.
4485 @var{freq} is processing audio in frequency domain which is fast.
4486 Default is @var{freq}.
4487
4488 @item lfe
4489 Set custom gain for LFE channels. Value is in dB. Default is 0.
4490
4491 @item size
4492 Set size of frame in number of samples which will be processed at once.
4493 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4494
4495 @item hrir
4496 Set format of hrir stream.
4497 Default value is @var{stereo}. Alternative value is @var{multich}.
4498 If value is set to @var{stereo}, number of additional streams should
4499 be greater or equal to number of input channels in first input stream.
4500 Also each additional stream should have stereo number of channels.
4501 If value is set to @var{multich}, number of additional streams should
4502 be exactly one. Also number of input channels of additional stream
4503 should be equal or greater than twice number of channels of first input
4504 stream.
4505 @end table
4506
4507 @subsection Examples
4508
4509 @itemize
4510 @item
4511 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4512 each amovie filter use stereo file with IR coefficients as input.
4513 The files give coefficients for each position of virtual loudspeaker:
4514 @example
4515 ffmpeg -i input.wav
4516 -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"
4517 output.wav
4518 @end example
4519
4520 @item
4521 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4522 but now in @var{multich} @var{hrir} format.
4523 @example
4524 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"
4525 output.wav
4526 @end example
4527 @end itemize
4528
4529 @section highpass
4530
4531 Apply a high-pass filter with 3dB point frequency.
4532 The filter can be either single-pole, or double-pole (the default).
4533 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4534
4535 The filter accepts the following options:
4536
4537 @table @option
4538 @item frequency, f
4539 Set frequency in Hz. Default is 3000.
4540
4541 @item poles, p
4542 Set number of poles. Default is 2.
4543
4544 @item width_type, t
4545 Set method to specify band-width of filter.
4546 @table @option
4547 @item h
4548 Hz
4549 @item q
4550 Q-Factor
4551 @item o
4552 octave
4553 @item s
4554 slope
4555 @item k
4556 kHz
4557 @end table
4558
4559 @item width, w
4560 Specify the band-width of a filter in width_type units.
4561 Applies only to double-pole filter.
4562 The default is 0.707q and gives a Butterworth response.
4563
4564 @item mix, m
4565 How much to use filtered signal in output. Default is 1.
4566 Range is between 0 and 1.
4567
4568 @item channels, c
4569 Specify which channels to filter, by default all available are filtered.
4570
4571 @item normalize, n
4572 Normalize biquad coefficients, by default is disabled.
4573 Enabling it will normalize magnitude response at DC to 0dB.
4574
4575 @item transform, a
4576 Set transform type of IIR filter.
4577 @table @option
4578 @item di
4579 @item dii
4580 @item tdii
4581 @item latt
4582 @end table
4583
4584 @item precision, r
4585 Set precison of filtering.
4586 @table @option
4587 @item auto
4588 Pick automatic sample format depending on surround filters.
4589 @item s16
4590 Always use signed 16-bit.
4591 @item s32
4592 Always use signed 32-bit.
4593 @item f32
4594 Always use float 32-bit.
4595 @item f64
4596 Always use float 64-bit.
4597 @end table
4598 @end table
4599
4600 @subsection Commands
4601
4602 This filter supports the following commands:
4603 @table @option
4604 @item frequency, f
4605 Change highpass frequency.
4606 Syntax for the command is : "@var{frequency}"
4607
4608 @item width_type, t
4609 Change highpass width_type.
4610 Syntax for the command is : "@var{width_type}"
4611
4612 @item width, w
4613 Change highpass width.
4614 Syntax for the command is : "@var{width}"
4615
4616 @item mix, m
4617 Change highpass mix.
4618 Syntax for the command is : "@var{mix}"
4619 @end table
4620
4621 @section join
4622
4623 Join multiple input streams into one multi-channel stream.
4624
4625 It accepts the following parameters:
4626 @table @option
4627
4628 @item inputs
4629 The number of input streams. It defaults to 2.
4630
4631 @item channel_layout
4632 The desired output channel layout. It defaults to stereo.
4633
4634 @item map
4635 Map channels from inputs to output. The argument is a '|'-separated list of
4636 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4637 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4638 can be either the name of the input channel (e.g. FL for front left) or its
4639 index in the specified input stream. @var{out_channel} is the name of the output
4640 channel.
4641 @end table
4642
4643 The filter will attempt to guess the mappings when they are not specified
4644 explicitly. It does so by first trying to find an unused matching input channel
4645 and if that fails it picks the first unused input channel.
4646
4647 Join 3 inputs (with properly set channel layouts):
4648 @example
4649 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4650 @end example
4651
4652 Build a 5.1 output from 6 single-channel streams:
4653 @example
4654 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4655 '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'
4656 out
4657 @end example
4658
4659 @section ladspa
4660
4661 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4662
4663 To enable compilation of this filter you need to configure FFmpeg with
4664 @code{--enable-ladspa}.
4665
4666 @table @option
4667 @item file, f
4668 Specifies the name of LADSPA plugin library to load. If the environment
4669 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4670 each one of the directories specified by the colon separated list in
4671 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4672 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4673 @file{/usr/lib/ladspa/}.
4674
4675 @item plugin, p
4676 Specifies the plugin within the library. Some libraries contain only
4677 one plugin, but others contain many of them. If this is not set filter
4678 will list all available plugins within the specified library.
4679
4680 @item controls, c
4681 Set the '|' separated list of controls which are zero or more floating point
4682 values that determine the behavior of the loaded plugin (for example delay,
4683 threshold or gain).
4684 Controls need to be defined using the following syntax:
4685 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4686 @var{valuei} is the value set on the @var{i}-th control.
4687 Alternatively they can be also defined using the following syntax:
4688 @var{value0}|@var{value1}|@var{value2}|..., where
4689 @var{valuei} is the value set on the @var{i}-th control.
4690 If @option{controls} is set to @code{help}, all available controls and
4691 their valid ranges are printed.
4692
4693 @item sample_rate, s
4694 Specify the sample rate, default to 44100. Only used if plugin have
4695 zero inputs.
4696
4697 @item nb_samples, n
4698 Set the number of samples per channel per each output frame, default
4699 is 1024. Only used if plugin have zero inputs.
4700
4701 @item duration, d
4702 Set the minimum duration of the sourced audio. See
4703 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4704 for the accepted syntax.
4705 Note that the resulting duration may be greater than the specified duration,
4706 as the generated audio is always cut at the end of a complete frame.
4707 If not specified, or the expressed duration is negative, the audio is
4708 supposed to be generated forever.
4709 Only used if plugin have zero inputs.
4710
4711 @item latency, l
4712 Enable latency compensation, by default is disabled.
4713 Only used if plugin have inputs.
4714 @end table
4715
4716 @subsection Examples
4717
4718 @itemize
4719 @item
4720 List all available plugins within amp (LADSPA example plugin) library:
4721 @example
4722 ladspa=file=amp
4723 @end example
4724
4725 @item
4726 List all available controls and their valid ranges for @code{vcf_notch}
4727 plugin from @code{VCF} library:
4728 @example
4729 ladspa=f=vcf:p=vcf_notch:c=help
4730 @end example
4731
4732 @item
4733 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4734 plugin library:
4735 @example
4736 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4737 @end example
4738
4739 @item
4740 Add reverberation to the audio using TAP-plugins
4741 (Tom's Audio Processing plugins):
4742 @example
4743 ladspa=file=tap_reverb:tap_reverb
4744 @end example
4745
4746 @item
4747 Generate white noise, with 0.2 amplitude:
4748 @example
4749 ladspa=file=cmt:noise_source_white:c=c0=.2
4750 @end example
4751
4752 @item
4753 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4754 @code{C* Audio Plugin Suite} (CAPS) library:
4755 @example
4756 ladspa=file=caps:Click:c=c1=20'
4757 @end example
4758
4759 @item
4760 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4761 @example
4762 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4763 @end example
4764
4765 @item
4766 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4767 @code{SWH Plugins} collection:
4768 @example
4769 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4770 @end example
4771
4772 @item
4773 Attenuate low frequencies using Multiband EQ from Steve Harris
4774 @code{SWH Plugins} collection:
4775 @example
4776 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4777 @end example
4778
4779 @item
4780 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4781 (CAPS) library:
4782 @example
4783 ladspa=caps:Narrower
4784 @end example
4785
4786 @item
4787 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4788 @example
4789 ladspa=caps:White:.2
4790 @end example
4791
4792 @item
4793 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4794 @example
4795 ladspa=caps:Fractal:c=c1=1
4796 @end example
4797
4798 @item
4799 Dynamic volume normalization using @code{VLevel} plugin:
4800 @example
4801 ladspa=vlevel-ladspa:vlevel_mono
4802 @end example
4803 @end itemize
4804
4805 @subsection Commands
4806
4807 This filter supports the following commands:
4808 @table @option
4809 @item cN
4810 Modify the @var{N}-th control value.
4811
4812 If the specified value is not valid, it is ignored and prior one is kept.
4813 @end table
4814
4815 @section loudnorm
4816
4817 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4818 Support for both single pass (livestreams, files) and double pass (files) modes.
4819 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4820 detect true peaks, the audio stream will be upsampled to 192 kHz.
4821 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4822
4823 The filter accepts the following options:
4824
4825 @table @option
4826 @item I, i
4827 Set integrated loudness target.
4828 Range is -70.0 - -5.0. Default value is -24.0.
4829
4830 @item LRA, lra
4831 Set loudness range target.
4832 Range is 1.0 - 20.0. Default value is 7.0.
4833
4834 @item TP, tp
4835 Set maximum true peak.
4836 Range is -9.0 - +0.0. Default value is -2.0.
4837
4838 @item measured_I, measured_i
4839 Measured IL of input file.
4840 Range is -99.0 - +0.0.
4841
4842 @item measured_LRA, measured_lra
4843 Measured LRA of input file.
4844 Range is  0.0 - 99.0.
4845
4846 @item measured_TP, measured_tp
4847 Measured true peak of input file.
4848 Range is  -99.0 - +99.0.
4849
4850 @item measured_thresh
4851 Measured threshold of input file.
4852 Range is -99.0 - +0.0.
4853
4854 @item offset
4855 Set offset gain. Gain is applied before the true-peak limiter.
4856 Range is  -99.0 - +99.0. Default is +0.0.
4857
4858 @item linear
4859 Normalize by linearly scaling the source audio.
4860 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4861 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4862 be lower than source LRA and the change in integrated loudness shouldn't
4863 result in a true peak which exceeds the target TP. If any of these
4864 conditions aren't met, normalization mode will revert to @var{dynamic}.
4865 Options are @code{true} or @code{false}. Default is @code{true}.
4866
4867 @item dual_mono
4868 Treat mono input files as "dual-mono". If a mono file is intended for playback
4869 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4870 If set to @code{true}, this option will compensate for this effect.
4871 Multi-channel input files are not affected by this option.
4872 Options are true or false. Default is false.
4873
4874 @item print_format
4875 Set print format for stats. Options are summary, json, or none.
4876 Default value is none.
4877 @end table
4878
4879 @section lowpass
4880
4881 Apply a low-pass filter with 3dB point frequency.
4882 The filter can be either single-pole or double-pole (the default).
4883 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4884
4885 The filter accepts the following options:
4886
4887 @table @option
4888 @item frequency, f
4889 Set frequency in Hz. Default is 500.
4890
4891 @item poles, p
4892 Set number of poles. Default is 2.
4893
4894 @item width_type, t
4895 Set method to specify band-width of filter.
4896 @table @option
4897 @item h
4898 Hz
4899 @item q
4900 Q-Factor
4901 @item o
4902 octave
4903 @item s
4904 slope
4905 @item k
4906 kHz
4907 @end table
4908
4909 @item width, w
4910 Specify the band-width of a filter in width_type units.
4911 Applies only to double-pole filter.
4912 The default is 0.707q and gives a Butterworth response.
4913
4914 @item mix, m
4915 How much to use filtered signal in output. Default is 1.
4916 Range is between 0 and 1.
4917
4918 @item channels, c
4919 Specify which channels to filter, by default all available are filtered.
4920
4921 @item normalize, n
4922 Normalize biquad coefficients, by default is disabled.
4923 Enabling it will normalize magnitude response at DC to 0dB.
4924
4925 @item transform, a
4926 Set transform type of IIR filter.
4927 @table @option
4928 @item di
4929 @item dii
4930 @item tdii
4931 @item latt
4932 @end table
4933
4934 @item precision, r
4935 Set precison of filtering.
4936 @table @option
4937 @item auto
4938 Pick automatic sample format depending on surround filters.
4939 @item s16
4940 Always use signed 16-bit.
4941 @item s32
4942 Always use signed 32-bit.
4943 @item f32
4944 Always use float 32-bit.
4945 @item f64
4946 Always use float 64-bit.
4947 @end table
4948 @end table
4949
4950 @subsection Examples
4951 @itemize
4952 @item
4953 Lowpass only LFE channel, it LFE is not present it does nothing:
4954 @example
4955 lowpass=c=LFE
4956 @end example
4957 @end itemize
4958
4959 @subsection Commands
4960
4961 This filter supports the following commands:
4962 @table @option
4963 @item frequency, f
4964 Change lowpass frequency.
4965 Syntax for the command is : "@var{frequency}"
4966
4967 @item width_type, t
4968 Change lowpass width_type.
4969 Syntax for the command is : "@var{width_type}"
4970
4971 @item width, w
4972 Change lowpass width.
4973 Syntax for the command is : "@var{width}"
4974
4975 @item mix, m
4976 Change lowpass mix.
4977 Syntax for the command is : "@var{mix}"
4978 @end table
4979
4980 @section lv2
4981
4982 Load a LV2 (LADSPA Version 2) plugin.
4983
4984 To enable compilation of this filter you need to configure FFmpeg with
4985 @code{--enable-lv2}.
4986
4987 @table @option
4988 @item plugin, p
4989 Specifies the plugin URI. You may need to escape ':'.
4990
4991 @item controls, c
4992 Set the '|' separated list of controls which are zero or more floating point
4993 values that determine the behavior of the loaded plugin (for example delay,
4994 threshold or gain).
4995 If @option{controls} is set to @code{help}, all available controls and
4996 their valid ranges are printed.
4997
4998 @item sample_rate, s
4999 Specify the sample rate, default to 44100. Only used if plugin have
5000 zero inputs.
5001
5002 @item nb_samples, n
5003 Set the number of samples per channel per each output frame, default
5004 is 1024. Only used if plugin have zero inputs.
5005
5006 @item duration, d
5007 Set the minimum duration of the sourced audio. See
5008 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5009 for the accepted syntax.
5010 Note that the resulting duration may be greater than the specified duration,
5011 as the generated audio is always cut at the end of a complete frame.
5012 If not specified, or the expressed duration is negative, the audio is
5013 supposed to be generated forever.
5014 Only used if plugin have zero inputs.
5015 @end table
5016
5017 @subsection Examples
5018
5019 @itemize
5020 @item
5021 Apply bass enhancer plugin from Calf:
5022 @example
5023 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
5024 @end example
5025
5026 @item
5027 Apply vinyl plugin from Calf:
5028 @example
5029 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
5030 @end example
5031
5032 @item
5033 Apply bit crusher plugin from ArtyFX:
5034 @example
5035 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
5036 @end example
5037 @end itemize
5038
5039 @section mcompand
5040 Multiband Compress or expand the audio's dynamic range.
5041
5042 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
5043 This is akin to the crossover of a loudspeaker, and results in flat frequency
5044 response when absent compander action.
5045
5046 It accepts the following parameters:
5047
5048 @table @option
5049 @item args
5050 This option syntax is:
5051 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
5052 For explanation of each item refer to compand filter documentation.
5053 @end table
5054
5055 @anchor{pan}
5056 @section pan
5057
5058 Mix channels with specific gain levels. The filter accepts the output
5059 channel layout followed by a set of channels definitions.
5060
5061 This filter is also designed to efficiently remap the channels of an audio
5062 stream.
5063
5064 The filter accepts parameters of the form:
5065 "@var{l}|@var{outdef}|@var{outdef}|..."
5066
5067 @table @option
5068 @item l
5069 output channel layout or number of channels
5070
5071 @item outdef
5072 output channel specification, of the form:
5073 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5074
5075 @item out_name
5076 output channel to define, either a channel name (FL, FR, etc.) or a channel
5077 number (c0, c1, etc.)
5078
5079 @item gain
5080 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5081
5082 @item in_name
5083 input channel to use, see out_name for details; it is not possible to mix
5084 named and numbered input channels
5085 @end table
5086
5087 If the `=' in a channel specification is replaced by `<', then the gains for
5088 that specification will be renormalized so that the total is 1, thus
5089 avoiding clipping noise.
5090
5091 @subsection Mixing examples
5092
5093 For example, if you want to down-mix from stereo to mono, but with a bigger
5094 factor for the left channel:
5095 @example
5096 pan=1c|c0=0.9*c0+0.1*c1
5097 @end example
5098
5099 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5100 7-channels surround:
5101 @example
5102 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5103 @end example
5104
5105 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5106 that should be preferred (see "-ac" option) unless you have very specific
5107 needs.
5108
5109 @subsection Remapping examples
5110
5111 The channel remapping will be effective if, and only if:
5112
5113 @itemize
5114 @item gain coefficients are zeroes or ones,
5115 @item only one input per channel output,
5116 @end itemize
5117
5118 If all these conditions are satisfied, the filter will notify the user ("Pure
5119 channel mapping detected"), and use an optimized and lossless method to do the
5120 remapping.
5121
5122 For example, if you have a 5.1 source and want a stereo audio stream by
5123 dropping the extra channels:
5124 @example
5125 pan="stereo| c0=FL | c1=FR"
5126 @end example
5127
5128 Given the same source, you can also switch front left and front right channels
5129 and keep the input channel layout:
5130 @example
5131 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5132 @end example
5133
5134 If the input is a stereo audio stream, you can mute the front left channel (and
5135 still keep the stereo channel layout) with:
5136 @example
5137 pan="stereo|c1=c1"
5138 @end example
5139
5140 Still with a stereo audio stream input, you can copy the right channel in both
5141 front left and right:
5142 @example
5143 pan="stereo| c0=FR | c1=FR"
5144 @end example
5145
5146 @section replaygain
5147
5148 ReplayGain scanner filter. This filter takes an audio stream as an input and
5149 outputs it unchanged.
5150 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5151
5152 @section resample
5153
5154 Convert the audio sample format, sample rate and channel layout. It is
5155 not meant to be used directly.
5156
5157 @section rubberband
5158 Apply time-stretching and pitch-shifting with librubberband.
5159
5160 To enable compilation of this filter, you need to configure FFmpeg with
5161 @code{--enable-librubberband}.
5162
5163 The filter accepts the following options:
5164
5165 @table @option
5166 @item tempo
5167 Set tempo scale factor.
5168
5169 @item pitch
5170 Set pitch scale factor.
5171
5172 @item transients
5173 Set transients detector.
5174 Possible values are:
5175 @table @var
5176 @item crisp
5177 @item mixed
5178 @item smooth
5179 @end table
5180
5181 @item detector
5182 Set detector.
5183 Possible values are:
5184 @table @var
5185 @item compound
5186 @item percussive
5187 @item soft
5188 @end table
5189
5190 @item phase
5191 Set phase.
5192 Possible values are:
5193 @table @var
5194 @item laminar
5195 @item independent
5196 @end table
5197
5198 @item window
5199 Set processing window size.
5200 Possible values are:
5201 @table @var
5202 @item standard
5203 @item short
5204 @item long
5205 @end table
5206
5207 @item smoothing
5208 Set smoothing.
5209 Possible values are:
5210 @table @var
5211 @item off
5212 @item on
5213 @end table
5214
5215 @item formant
5216 Enable formant preservation when shift pitching.
5217 Possible values are:
5218 @table @var
5219 @item shifted
5220 @item preserved
5221 @end table
5222
5223 @item pitchq
5224 Set pitch quality.
5225 Possible values are:
5226 @table @var
5227 @item quality
5228 @item speed
5229 @item consistency
5230 @end table
5231
5232 @item channels
5233 Set channels.
5234 Possible values are:
5235 @table @var
5236 @item apart
5237 @item together
5238 @end table
5239 @end table
5240
5241 @subsection Commands
5242
5243 This filter supports the following commands:
5244 @table @option
5245 @item tempo
5246 Change filter tempo scale factor.
5247 Syntax for the command is : "@var{tempo}"
5248
5249 @item pitch
5250 Change filter pitch scale factor.
5251 Syntax for the command is : "@var{pitch}"
5252 @end table
5253
5254 @section sidechaincompress
5255
5256 This filter acts like normal compressor but has the ability to compress
5257 detected signal using second input signal.
5258 It needs two input streams and returns one output stream.
5259 First input stream will be processed depending on second stream signal.
5260 The filtered signal then can be filtered with other filters in later stages of
5261 processing. See @ref{pan} and @ref{amerge} filter.
5262
5263 The filter accepts the following options:
5264
5265 @table @option
5266 @item level_in
5267 Set input gain. Default is 1. Range is between 0.015625 and 64.
5268
5269 @item mode
5270 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5271 Default is @code{downward}.
5272
5273 @item threshold
5274 If a signal of second stream raises above this level it will affect the gain
5275 reduction of first stream.
5276 By default is 0.125. Range is between 0.00097563 and 1.
5277
5278 @item ratio
5279 Set a ratio about which the signal is reduced. 1:2 means that if the level
5280 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5281 Default is 2. Range is between 1 and 20.
5282
5283 @item attack
5284 Amount of milliseconds the signal has to rise above the threshold before gain
5285 reduction starts. Default is 20. Range is between 0.01 and 2000.
5286
5287 @item release
5288 Amount of milliseconds the signal has to fall below the threshold before
5289 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5290
5291 @item makeup
5292 Set the amount by how much signal will be amplified after processing.
5293 Default is 1. Range is from 1 to 64.
5294
5295 @item knee
5296 Curve the sharp knee around the threshold to enter gain reduction more softly.
5297 Default is 2.82843. Range is between 1 and 8.
5298
5299 @item link
5300 Choose if the @code{average} level between all channels of side-chain stream
5301 or the louder(@code{maximum}) channel of side-chain stream affects the
5302 reduction. Default is @code{average}.
5303
5304 @item detection
5305 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5306 of @code{rms}. Default is @code{rms} which is mainly smoother.
5307
5308 @item level_sc
5309 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5310
5311 @item mix
5312 How much to use compressed signal in output. Default is 1.
5313 Range is between 0 and 1.
5314 @end table
5315
5316 @subsection Commands
5317
5318 This filter supports the all above options as @ref{commands}.
5319
5320 @subsection Examples
5321
5322 @itemize
5323 @item
5324 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5325 depending on the signal of 2nd input and later compressed signal to be
5326 merged with 2nd input:
5327 @example
5328 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5329 @end example
5330 @end itemize
5331
5332 @section sidechaingate
5333
5334 A sidechain gate acts like a normal (wideband) gate but has the ability to
5335 filter the detected signal before sending it to the gain reduction stage.
5336 Normally a gate uses the full range signal to detect a level above the
5337 threshold.
5338 For example: If you cut all lower frequencies from your sidechain signal
5339 the gate will decrease the volume of your track only if not enough highs
5340 appear. With this technique you are able to reduce the resonation of a
5341 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5342 guitar.
5343 It needs two input streams and returns one output stream.
5344 First input stream will be processed depending on second stream signal.
5345
5346 The filter accepts the following options:
5347
5348 @table @option
5349 @item level_in
5350 Set input level before filtering.
5351 Default is 1. Allowed range is from 0.015625 to 64.
5352
5353 @item mode
5354 Set the mode of operation. Can be @code{upward} or @code{downward}.
5355 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5356 will be amplified, expanding dynamic range in upward direction.
5357 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5358
5359 @item range
5360 Set the level of gain reduction when the signal is below the threshold.
5361 Default is 0.06125. Allowed range is from 0 to 1.
5362 Setting this to 0 disables reduction and then filter behaves like expander.
5363
5364 @item threshold
5365 If a signal rises above this level the gain reduction is released.
5366 Default is 0.125. Allowed range is from 0 to 1.
5367
5368 @item ratio
5369 Set a ratio about which the signal is reduced.
5370 Default is 2. Allowed range is from 1 to 9000.
5371
5372 @item attack
5373 Amount of milliseconds the signal has to rise above the threshold before gain
5374 reduction stops.
5375 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5376
5377 @item release
5378 Amount of milliseconds the signal has to fall below the threshold before the
5379 reduction is increased again. Default is 250 milliseconds.
5380 Allowed range is from 0.01 to 9000.
5381
5382 @item makeup
5383 Set amount of amplification of signal after processing.
5384 Default is 1. Allowed range is from 1 to 64.
5385
5386 @item knee
5387 Curve the sharp knee around the threshold to enter gain reduction more softly.
5388 Default is 2.828427125. Allowed range is from 1 to 8.
5389
5390 @item detection
5391 Choose if exact signal should be taken for detection or an RMS like one.
5392 Default is rms. Can be peak or rms.
5393
5394 @item link
5395 Choose if the average level between all channels or the louder channel affects
5396 the reduction.
5397 Default is average. Can be average or maximum.
5398
5399 @item level_sc
5400 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5401 @end table
5402
5403 @subsection Commands
5404
5405 This filter supports the all above options as @ref{commands}.
5406
5407 @section silencedetect
5408
5409 Detect silence in an audio stream.
5410
5411 This filter logs a message when it detects that the input audio volume is less
5412 or equal to a noise tolerance value for a duration greater or equal to the
5413 minimum detected noise duration.
5414
5415 The printed times and duration are expressed in seconds. The
5416 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5417 is set on the first frame whose timestamp equals or exceeds the detection
5418 duration and it contains the timestamp of the first frame of the silence.
5419
5420 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5421 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5422 keys are set on the first frame after the silence. If @option{mono} is
5423 enabled, and each channel is evaluated separately, the @code{.X}
5424 suffixed keys are used, and @code{X} corresponds to the channel number.
5425
5426 The filter accepts the following options:
5427
5428 @table @option
5429 @item noise, n
5430 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5431 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5432
5433 @item duration, d
5434 Set silence duration until notification (default is 2 seconds). See
5435 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5436 for the accepted syntax.
5437
5438 @item mono, m
5439 Process each channel separately, instead of combined. By default is disabled.
5440 @end table
5441
5442 @subsection Examples
5443
5444 @itemize
5445 @item
5446 Detect 5 seconds of silence with -50dB noise tolerance:
5447 @example
5448 silencedetect=n=-50dB:d=5
5449 @end example
5450
5451 @item
5452 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5453 tolerance in @file{silence.mp3}:
5454 @example
5455 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5456 @end example
5457 @end itemize
5458
5459 @section silenceremove
5460
5461 Remove silence from the beginning, middle or end of the audio.
5462
5463 The filter accepts the following options:
5464
5465 @table @option
5466 @item start_periods
5467 This value is used to indicate if audio should be trimmed at beginning of
5468 the audio. A value of zero indicates no silence should be trimmed from the
5469 beginning. When specifying a non-zero value, it trims audio up until it
5470 finds non-silence. Normally, when trimming silence from beginning of audio
5471 the @var{start_periods} will be @code{1} but it can be increased to higher
5472 values to trim all audio up to specific count of non-silence periods.
5473 Default value is @code{0}.
5474
5475 @item start_duration
5476 Specify the amount of time that non-silence must be detected before it stops
5477 trimming audio. By increasing the duration, bursts of noises can be treated
5478 as silence and trimmed off. Default value is @code{0}.
5479
5480 @item start_threshold
5481 This indicates what sample value should be treated as silence. For digital
5482 audio, a value of @code{0} may be fine but for audio recorded from analog,
5483 you may wish to increase the value to account for background noise.
5484 Can be specified in dB (in case "dB" is appended to the specified value)
5485 or amplitude ratio. Default value is @code{0}.
5486
5487 @item start_silence
5488 Specify max duration of silence at beginning that will be kept after
5489 trimming. Default is 0, which is equal to trimming all samples detected
5490 as silence.
5491
5492 @item start_mode
5493 Specify mode of detection of silence end in start of multi-channel audio.
5494 Can be @var{any} or @var{all}. Default is @var{any}.
5495 With @var{any}, any sample that is detected as non-silence will cause
5496 stopped trimming of silence.
5497 With @var{all}, only if all channels are detected as non-silence will cause
5498 stopped trimming of silence.
5499
5500 @item stop_periods
5501 Set the count for trimming silence from the end of audio.
5502 To remove silence from the middle of a file, specify a @var{stop_periods}
5503 that is negative. This value is then treated as a positive value and is
5504 used to indicate the effect should restart processing as specified by
5505 @var{start_periods}, making it suitable for removing periods of silence
5506 in the middle of the audio.
5507 Default value is @code{0}.
5508
5509 @item stop_duration
5510 Specify a duration of silence that must exist before audio is not copied any
5511 more. By specifying a higher duration, silence that is wanted can be left in
5512 the audio.
5513 Default value is @code{0}.
5514
5515 @item stop_threshold
5516 This is the same as @option{start_threshold} but for trimming silence from
5517 the end of audio.
5518 Can be specified in dB (in case "dB" is appended to the specified value)
5519 or amplitude ratio. Default value is @code{0}.
5520
5521 @item stop_silence
5522 Specify max duration of silence at end that will be kept after
5523 trimming. Default is 0, which is equal to trimming all samples detected
5524 as silence.
5525
5526 @item stop_mode
5527 Specify mode of detection of silence start in end of multi-channel audio.
5528 Can be @var{any} or @var{all}. Default is @var{any}.
5529 With @var{any}, any sample that is detected as non-silence will cause
5530 stopped trimming of silence.
5531 With @var{all}, only if all channels are detected as non-silence will cause
5532 stopped trimming of silence.
5533
5534 @item detection
5535 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5536 and works better with digital silence which is exactly 0.
5537 Default value is @code{rms}.
5538
5539 @item window
5540 Set duration in number of seconds used to calculate size of window in number
5541 of samples for detecting silence.
5542 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5543 @end table
5544
5545 @subsection Examples
5546
5547 @itemize
5548 @item
5549 The following example shows how this filter can be used to start a recording
5550 that does not contain the delay at the start which usually occurs between
5551 pressing the record button and the start of the performance:
5552 @example
5553 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5554 @end example
5555
5556 @item
5557 Trim all silence encountered from beginning to end where there is more than 1
5558 second of silence in audio:
5559 @example
5560 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5561 @end example
5562
5563 @item
5564 Trim all digital silence samples, using peak detection, from beginning to end
5565 where there is more than 0 samples of digital silence in audio and digital
5566 silence is detected in all channels at same positions in stream:
5567 @example
5568 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5569 @end example
5570 @end itemize
5571
5572 @section sofalizer
5573
5574 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5575 loudspeakers around the user for binaural listening via headphones (audio
5576 formats up to 9 channels supported).
5577 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5578 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5579 Austrian Academy of Sciences.
5580
5581 To enable compilation of this filter you need to configure FFmpeg with
5582 @code{--enable-libmysofa}.
5583
5584 The filter accepts the following options:
5585
5586 @table @option
5587 @item sofa
5588 Set the SOFA file used for rendering.
5589
5590 @item gain
5591 Set gain applied to audio. Value is in dB. Default is 0.
5592
5593 @item rotation
5594 Set rotation of virtual loudspeakers in deg. Default is 0.
5595
5596 @item elevation
5597 Set elevation of virtual speakers in deg. Default is 0.
5598
5599 @item radius
5600 Set distance in meters between loudspeakers and the listener with near-field
5601 HRTFs. Default is 1.
5602
5603 @item type
5604 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5605 processing audio in time domain which is slow.
5606 @var{freq} is processing audio in frequency domain which is fast.
5607 Default is @var{freq}.
5608
5609 @item speakers
5610 Set custom positions of virtual loudspeakers. Syntax for this option is:
5611 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5612 Each virtual loudspeaker is described with short channel name following with
5613 azimuth and elevation in degrees.
5614 Each virtual loudspeaker description is separated by '|'.
5615 For example to override front left and front right channel positions use:
5616 'speakers=FL 45 15|FR 345 15'.
5617 Descriptions with unrecognised channel names are ignored.
5618
5619 @item lfegain
5620 Set custom gain for LFE channels. Value is in dB. Default is 0.
5621
5622 @item framesize
5623 Set custom frame size in number of samples. Default is 1024.
5624 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5625 is set to @var{freq}.
5626
5627 @item normalize
5628 Should all IRs be normalized upon importing SOFA file.
5629 By default is enabled.
5630
5631 @item interpolate
5632 Should nearest IRs be interpolated with neighbor IRs if exact position
5633 does not match. By default is disabled.
5634
5635 @item minphase
5636 Minphase all IRs upon loading of SOFA file. By default is disabled.
5637
5638 @item anglestep
5639 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5640
5641 @item radstep
5642 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5643 @end table
5644
5645 @subsection Examples
5646
5647 @itemize
5648 @item
5649 Using ClubFritz6 sofa file:
5650 @example
5651 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5652 @end example
5653
5654 @item
5655 Using ClubFritz12 sofa file and bigger radius with small rotation:
5656 @example
5657 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5658 @end example
5659
5660 @item
5661 Similar as above but with custom speaker positions for front left, front right, back left and back right
5662 and also with custom gain:
5663 @example
5664 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5665 @end example
5666 @end itemize
5667
5668 @section speechnorm
5669 Speech Normalizer.
5670
5671 This filter expands or compresses each half-cycle of audio samples
5672 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5673 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5674
5675 The filter accepts the following options:
5676
5677 @table @option
5678 @item peak, p
5679 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5680 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5681
5682 @item expansion, e
5683 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5684 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5685 would be such that local peak value reaches target peak value but never to surpass it and that
5686 ratio between new and previous peak value does not surpass this option value.
5687
5688 @item compression, c
5689 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5690 This option controls maximum local half-cycle of samples compression. This option is used
5691 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5692 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5693 that peak's half-cycle will be compressed by current compression factor.
5694
5695 @item threshold, t
5696 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5697 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5698 Any half-cycle samples with their local peak value below or same as this option value will be
5699 compressed by current compression factor, otherwise, if greater than threshold value they will be
5700 expanded with expansion factor so that it could reach peak target value but never surpass it.
5701
5702 @item raise, r
5703 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5704 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5705 each new half-cycle until it reaches @option{expansion} value.
5706 Setting this options too high may lead to distortions.
5707
5708 @item fall, f
5709 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5710 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5711 each new half-cycle until it reaches @option{compression} value.
5712
5713 @item channels, h
5714 Specify which channels to filter, by default all available channels are filtered.
5715
5716 @item invert, i
5717 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5718 option. When enabled any half-cycle of samples with their local peak value below or same as
5719 @option{threshold} option will be expanded otherwise it will be compressed.
5720
5721 @item link, l
5722 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5723 When disabled each filtered channel gain calculation is independent, otherwise when this option
5724 is enabled the minimum of all possible gains for each filtered channel is used.
5725 @end table
5726
5727 @subsection Commands
5728
5729 This filter supports the all above options as @ref{commands}.
5730
5731 @section stereotools
5732
5733 This filter has some handy utilities to manage stereo signals, for converting
5734 M/S stereo recordings to L/R signal while having control over the parameters
5735 or spreading the stereo image of master track.
5736
5737 The filter accepts the following options:
5738
5739 @table @option
5740 @item level_in
5741 Set input level before filtering for both channels. Defaults is 1.
5742 Allowed range is from 0.015625 to 64.
5743
5744 @item level_out
5745 Set output level after filtering for both channels. Defaults is 1.
5746 Allowed range is from 0.015625 to 64.
5747
5748 @item balance_in
5749 Set input balance between both channels. Default is 0.
5750 Allowed range is from -1 to 1.
5751
5752 @item balance_out
5753 Set output balance between both channels. Default is 0.
5754 Allowed range is from -1 to 1.
5755
5756 @item softclip
5757 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5758 clipping. Disabled by default.
5759
5760 @item mutel
5761 Mute the left channel. Disabled by default.
5762
5763 @item muter
5764 Mute the right channel. Disabled by default.
5765
5766 @item phasel
5767 Change the phase of the left channel. Disabled by default.
5768
5769 @item phaser
5770 Change the phase of the right channel. Disabled by default.
5771
5772 @item mode
5773 Set stereo mode. Available values are:
5774
5775 @table @samp
5776 @item lr>lr
5777 Left/Right to Left/Right, this is default.
5778
5779 @item lr>ms
5780 Left/Right to Mid/Side.
5781
5782 @item ms>lr
5783 Mid/Side to Left/Right.
5784
5785 @item lr>ll
5786 Left/Right to Left/Left.
5787
5788 @item lr>rr
5789 Left/Right to Right/Right.
5790
5791 @item lr>l+r
5792 Left/Right to Left + Right.
5793
5794 @item lr>rl
5795 Left/Right to Right/Left.
5796
5797 @item ms>ll
5798 Mid/Side to Left/Left.
5799
5800 @item ms>rr
5801 Mid/Side to Right/Right.
5802
5803 @item ms>rl
5804 Mid/Side to Right/Left.
5805
5806 @item lr>l-r
5807 Left/Right to Left - Right.
5808 @end table
5809
5810 @item slev
5811 Set level of side signal. Default is 1.
5812 Allowed range is from 0.015625 to 64.
5813
5814 @item sbal
5815 Set balance of side signal. Default is 0.
5816 Allowed range is from -1 to 1.
5817
5818 @item mlev
5819 Set level of the middle signal. Default is 1.
5820 Allowed range is from 0.015625 to 64.
5821
5822 @item mpan
5823 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5824
5825 @item base
5826 Set stereo base between mono and inversed channels. Default is 0.
5827 Allowed range is from -1 to 1.
5828
5829 @item delay
5830 Set delay in milliseconds how much to delay left from right channel and
5831 vice versa. Default is 0. Allowed range is from -20 to 20.
5832
5833 @item sclevel
5834 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5835
5836 @item phase
5837 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5838
5839 @item bmode_in, bmode_out
5840 Set balance mode for balance_in/balance_out option.
5841
5842 Can be one of the following:
5843
5844 @table @samp
5845 @item balance
5846 Classic balance mode. Attenuate one channel at time.
5847 Gain is raised up to 1.
5848
5849 @item amplitude
5850 Similar as classic mode above but gain is raised up to 2.
5851
5852 @item power
5853 Equal power distribution, from -6dB to +6dB range.
5854 @end table
5855 @end table
5856
5857 @subsection Commands
5858
5859 This filter supports the all above options as @ref{commands}.
5860
5861 @subsection Examples
5862
5863 @itemize
5864 @item
5865 Apply karaoke like effect:
5866 @example
5867 stereotools=mlev=0.015625
5868 @end example
5869
5870 @item
5871 Convert M/S signal to L/R:
5872 @example
5873 "stereotools=mode=ms>lr"
5874 @end example
5875 @end itemize
5876
5877 @section stereowiden
5878
5879 This filter enhance the stereo effect by suppressing signal common to both
5880 channels and by delaying the signal of left into right and vice versa,
5881 thereby widening the stereo effect.
5882
5883 The filter accepts the following options:
5884
5885 @table @option
5886 @item delay
5887 Time in milliseconds of the delay of left signal into right and vice versa.
5888 Default is 20 milliseconds.
5889
5890 @item feedback
5891 Amount of gain in delayed signal into right and vice versa. Gives a delay
5892 effect of left signal in right output and vice versa which gives widening
5893 effect. Default is 0.3.
5894
5895 @item crossfeed
5896 Cross feed of left into right with inverted phase. This helps in suppressing
5897 the mono. If the value is 1 it will cancel all the signal common to both
5898 channels. Default is 0.3.
5899
5900 @item drymix
5901 Set level of input signal of original channel. Default is 0.8.
5902 @end table
5903
5904 @subsection Commands
5905
5906 This filter supports the all above options except @code{delay} as @ref{commands}.
5907
5908 @section superequalizer
5909 Apply 18 band equalizer.
5910
5911 The filter accepts the following options:
5912 @table @option
5913 @item 1b
5914 Set 65Hz band gain.
5915 @item 2b
5916 Set 92Hz band gain.
5917 @item 3b
5918 Set 131Hz band gain.
5919 @item 4b
5920 Set 185Hz band gain.
5921 @item 5b
5922 Set 262Hz band gain.
5923 @item 6b
5924 Set 370Hz band gain.
5925 @item 7b
5926 Set 523Hz band gain.
5927 @item 8b
5928 Set 740Hz band gain.
5929 @item 9b
5930 Set 1047Hz band gain.
5931 @item 10b
5932 Set 1480Hz band gain.
5933 @item 11b
5934 Set 2093Hz band gain.
5935 @item 12b
5936 Set 2960Hz band gain.
5937 @item 13b
5938 Set 4186Hz band gain.
5939 @item 14b
5940 Set 5920Hz band gain.
5941 @item 15b
5942 Set 8372Hz band gain.
5943 @item 16b
5944 Set 11840Hz band gain.
5945 @item 17b
5946 Set 16744Hz band gain.
5947 @item 18b
5948 Set 20000Hz band gain.
5949 @end table
5950
5951 @section surround
5952 Apply audio surround upmix filter.
5953
5954 This filter allows to produce multichannel output from audio stream.
5955
5956 The filter accepts the following options:
5957
5958 @table @option
5959 @item chl_out
5960 Set output channel layout. By default, this is @var{5.1}.
5961
5962 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5963 for the required syntax.
5964
5965 @item chl_in
5966 Set input channel layout. By default, this is @var{stereo}.
5967
5968 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5969 for the required syntax.
5970
5971 @item level_in
5972 Set input volume level. By default, this is @var{1}.
5973
5974 @item level_out
5975 Set output volume level. By default, this is @var{1}.
5976
5977 @item lfe
5978 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5979
5980 @item lfe_low
5981 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5982
5983 @item lfe_high
5984 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5985
5986 @item lfe_mode
5987 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5988 In @var{add} mode, LFE channel is created from input audio and added to output.
5989 In @var{sub} mode, LFE channel is created from input audio and added to output but
5990 also all non-LFE output channels are subtracted with output LFE channel.
5991
5992 @item angle
5993 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5994 Default is @var{90}.
5995
5996 @item fc_in
5997 Set front center input volume. By default, this is @var{1}.
5998
5999 @item fc_out
6000 Set front center output volume. By default, this is @var{1}.
6001
6002 @item fl_in
6003 Set front left input volume. By default, this is @var{1}.
6004
6005 @item fl_out
6006 Set front left output volume. By default, this is @var{1}.
6007
6008 @item fr_in
6009 Set front right input volume. By default, this is @var{1}.
6010
6011 @item fr_out
6012 Set front right output volume. By default, this is @var{1}.
6013
6014 @item sl_in
6015 Set side left input volume. By default, this is @var{1}.
6016
6017 @item sl_out
6018 Set side left output volume. By default, this is @var{1}.
6019
6020 @item sr_in
6021 Set side right input volume. By default, this is @var{1}.
6022
6023 @item sr_out
6024 Set side right output volume. By default, this is @var{1}.
6025
6026 @item bl_in
6027 Set back left input volume. By default, this is @var{1}.
6028
6029 @item bl_out
6030 Set back left output volume. By default, this is @var{1}.
6031
6032 @item br_in
6033 Set back right input volume. By default, this is @var{1}.
6034
6035 @item br_out
6036 Set back right output volume. By default, this is @var{1}.
6037
6038 @item bc_in
6039 Set back center input volume. By default, this is @var{1}.
6040
6041 @item bc_out
6042 Set back center output volume. By default, this is @var{1}.
6043
6044 @item lfe_in
6045 Set LFE input volume. By default, this is @var{1}.
6046
6047 @item lfe_out
6048 Set LFE output volume. By default, this is @var{1}.
6049
6050 @item allx
6051 Set spread usage of stereo image across X axis for all channels.
6052
6053 @item ally
6054 Set spread usage of stereo image across Y axis for all channels.
6055
6056 @item fcx, flx, frx, blx, brx, slx, srx, bcx
6057 Set spread usage of stereo image across X axis for each channel.
6058
6059 @item fcy, fly, fry, bly, bry, sly, sry, bcy
6060 Set spread usage of stereo image across Y axis for each channel.
6061
6062 @item win_size
6063 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
6064
6065 @item win_func
6066 Set window function.
6067
6068 It accepts the following values:
6069 @table @samp
6070 @item rect
6071 @item bartlett
6072 @item hann, hanning
6073 @item hamming
6074 @item blackman
6075 @item welch
6076 @item flattop
6077 @item bharris
6078 @item bnuttall
6079 @item bhann
6080 @item sine
6081 @item nuttall
6082 @item lanczos
6083 @item gauss
6084 @item tukey
6085 @item dolph
6086 @item cauchy
6087 @item parzen
6088 @item poisson
6089 @item bohman
6090 @end table
6091 Default is @code{hann}.
6092
6093 @item overlap
6094 Set window overlap. If set to 1, the recommended overlap for selected
6095 window function will be picked. Default is @code{0.5}.
6096 @end table
6097
6098 @section treble, highshelf
6099
6100 Boost or cut treble (upper) frequencies of the audio using a two-pole
6101 shelving filter with a response similar to that of a standard
6102 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6103
6104 The filter accepts the following options:
6105
6106 @table @option
6107 @item gain, g
6108 Give the gain at whichever is the lower of ~22 kHz and the
6109 Nyquist frequency. Its useful range is about -20 (for a large cut)
6110 to +20 (for a large boost). Beware of clipping when using a positive gain.
6111
6112 @item frequency, f
6113 Set the filter's central frequency and so can be used
6114 to extend or reduce the frequency range to be boosted or cut.
6115 The default value is @code{3000} Hz.
6116
6117 @item width_type, t
6118 Set method to specify band-width of filter.
6119 @table @option
6120 @item h
6121 Hz
6122 @item q
6123 Q-Factor
6124 @item o
6125 octave
6126 @item s
6127 slope
6128 @item k
6129 kHz
6130 @end table
6131
6132 @item width, w
6133 Determine how steep is the filter's shelf transition.
6134
6135 @item poles, p
6136 Set number of poles. Default is 2.
6137
6138 @item mix, m
6139 How much to use filtered signal in output. Default is 1.
6140 Range is between 0 and 1.
6141
6142 @item channels, c
6143 Specify which channels to filter, by default all available are filtered.
6144
6145 @item normalize, n
6146 Normalize biquad coefficients, by default is disabled.
6147 Enabling it will normalize magnitude response at DC to 0dB.
6148
6149 @item transform, a
6150 Set transform type of IIR filter.
6151 @table @option
6152 @item di
6153 @item dii
6154 @item tdii
6155 @item latt
6156 @end table
6157
6158 @item precision, r
6159 Set precison of filtering.
6160 @table @option
6161 @item auto
6162 Pick automatic sample format depending on surround filters.
6163 @item s16
6164 Always use signed 16-bit.
6165 @item s32
6166 Always use signed 32-bit.
6167 @item f32
6168 Always use float 32-bit.
6169 @item f64
6170 Always use float 64-bit.
6171 @end table
6172 @end table
6173
6174 @subsection Commands
6175
6176 This filter supports the following commands:
6177 @table @option
6178 @item frequency, f
6179 Change treble frequency.
6180 Syntax for the command is : "@var{frequency}"
6181
6182 @item width_type, t
6183 Change treble width_type.
6184 Syntax for the command is : "@var{width_type}"
6185
6186 @item width, w
6187 Change treble width.
6188 Syntax for the command is : "@var{width}"
6189
6190 @item gain, g
6191 Change treble gain.
6192 Syntax for the command is : "@var{gain}"
6193
6194 @item mix, m
6195 Change treble mix.
6196 Syntax for the command is : "@var{mix}"
6197 @end table
6198
6199 @section tremolo
6200
6201 Sinusoidal amplitude modulation.
6202
6203 The filter accepts the following options:
6204
6205 @table @option
6206 @item f
6207 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6208 (20 Hz or lower) will result in a tremolo effect.
6209 This filter may also be used as a ring modulator by specifying
6210 a modulation frequency higher than 20 Hz.
6211 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6212
6213 @item d
6214 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6215 Default value is 0.5.
6216 @end table
6217
6218 @section vibrato
6219
6220 Sinusoidal phase modulation.
6221
6222 The filter accepts the following options:
6223
6224 @table @option
6225 @item f
6226 Modulation frequency in Hertz.
6227 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6228
6229 @item d
6230 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6231 Default value is 0.5.
6232 @end table
6233
6234 @section volume
6235
6236 Adjust the input audio volume.
6237
6238 It accepts the following parameters:
6239 @table @option
6240
6241 @item volume
6242 Set audio volume expression.
6243
6244 Output values are clipped to the maximum value.
6245
6246 The output audio volume is given by the relation:
6247 @example
6248 @var{output_volume} = @var{volume} * @var{input_volume}
6249 @end example
6250
6251 The default value for @var{volume} is "1.0".
6252
6253 @item precision
6254 This parameter represents the mathematical precision.
6255
6256 It determines which input sample formats will be allowed, which affects the
6257 precision of the volume scaling.
6258
6259 @table @option
6260 @item fixed
6261 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6262 @item float
6263 32-bit floating-point; this limits input sample format to FLT. (default)
6264 @item double
6265 64-bit floating-point; this limits input sample format to DBL.
6266 @end table
6267
6268 @item replaygain
6269 Choose the behaviour on encountering ReplayGain side data in input frames.
6270
6271 @table @option
6272 @item drop
6273 Remove ReplayGain side data, ignoring its contents (the default).
6274
6275 @item ignore
6276 Ignore ReplayGain side data, but leave it in the frame.
6277
6278 @item track
6279 Prefer the track gain, if present.
6280
6281 @item album
6282 Prefer the album gain, if present.
6283 @end table
6284
6285 @item replaygain_preamp
6286 Pre-amplification gain in dB to apply to the selected replaygain gain.
6287
6288 Default value for @var{replaygain_preamp} is 0.0.
6289
6290 @item replaygain_noclip
6291 Prevent clipping by limiting the gain applied.
6292
6293 Default value for @var{replaygain_noclip} is 1.
6294
6295 @item eval
6296 Set when the volume expression is evaluated.
6297
6298 It accepts the following values:
6299 @table @samp
6300 @item once
6301 only evaluate expression once during the filter initialization, or
6302 when the @samp{volume} command is sent
6303
6304 @item frame
6305 evaluate expression for each incoming frame
6306 @end table
6307
6308 Default value is @samp{once}.
6309 @end table
6310
6311 The volume expression can contain the following parameters.
6312
6313 @table @option
6314 @item n
6315 frame number (starting at zero)
6316 @item nb_channels
6317 number of channels
6318 @item nb_consumed_samples
6319 number of samples consumed by the filter
6320 @item nb_samples
6321 number of samples in the current frame
6322 @item pos
6323 original frame position in the file
6324 @item pts
6325 frame PTS
6326 @item sample_rate
6327 sample rate
6328 @item startpts
6329 PTS at start of stream
6330 @item startt
6331 time at start of stream
6332 @item t
6333 frame time
6334 @item tb
6335 timestamp timebase
6336 @item volume
6337 last set volume value
6338 @end table
6339
6340 Note that when @option{eval} is set to @samp{once} only the
6341 @var{sample_rate} and @var{tb} variables are available, all other
6342 variables will evaluate to NAN.
6343
6344 @subsection Commands
6345
6346 This filter supports the following commands:
6347 @table @option
6348 @item volume
6349 Modify the volume expression.
6350 The command accepts the same syntax of the corresponding option.
6351
6352 If the specified expression is not valid, it is kept at its current
6353 value.
6354 @end table
6355
6356 @subsection Examples
6357
6358 @itemize
6359 @item
6360 Halve the input audio volume:
6361 @example
6362 volume=volume=0.5
6363 volume=volume=1/2
6364 volume=volume=-6.0206dB
6365 @end example
6366
6367 In all the above example the named key for @option{volume} can be
6368 omitted, for example like in:
6369 @example
6370 volume=0.5
6371 @end example
6372
6373 @item
6374 Increase input audio power by 6 decibels using fixed-point precision:
6375 @example
6376 volume=volume=6dB:precision=fixed
6377 @end example
6378
6379 @item
6380 Fade volume after time 10 with an annihilation period of 5 seconds:
6381 @example
6382 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6383 @end example
6384 @end itemize
6385
6386 @section volumedetect
6387
6388 Detect the volume of the input video.
6389
6390 The filter has no parameters. The input is not modified. Statistics about
6391 the volume will be printed in the log when the input stream end is reached.
6392
6393 In particular it will show the mean volume (root mean square), maximum
6394 volume (on a per-sample basis), and the beginning of a histogram of the
6395 registered volume values (from the maximum value to a cumulated 1/1000 of
6396 the samples).
6397
6398 All volumes are in decibels relative to the maximum PCM value.
6399
6400 @subsection Examples
6401
6402 Here is an excerpt of the output:
6403 @example
6404 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6405 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6406 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6407 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6408 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6409 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6410 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6411 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6412 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6413 @end example
6414
6415 It means that:
6416 @itemize
6417 @item
6418 The mean square energy is approximately -27 dB, or 10^-2.7.
6419 @item
6420 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6421 @item
6422 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6423 @end itemize
6424
6425 In other words, raising the volume by +4 dB does not cause any clipping,
6426 raising it by +5 dB causes clipping for 6 samples, etc.
6427
6428 @c man end AUDIO FILTERS
6429
6430 @chapter Audio Sources
6431 @c man begin AUDIO SOURCES
6432
6433 Below is a description of the currently available audio sources.
6434
6435 @section abuffer
6436
6437 Buffer audio frames, and make them available to the filter chain.
6438
6439 This source is mainly intended for a programmatic use, in particular
6440 through the interface defined in @file{libavfilter/buffersrc.h}.
6441
6442 It accepts the following parameters:
6443 @table @option
6444
6445 @item time_base
6446 The timebase which will be used for timestamps of submitted frames. It must be
6447 either a floating-point number or in @var{numerator}/@var{denominator} form.
6448
6449 @item sample_rate
6450 The sample rate of the incoming audio buffers.
6451
6452 @item sample_fmt
6453 The sample format of the incoming audio buffers.
6454 Either a sample format name or its corresponding integer representation from
6455 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6456
6457 @item channel_layout
6458 The channel layout of the incoming audio buffers.
6459 Either a channel layout name from channel_layout_map in
6460 @file{libavutil/channel_layout.c} or its corresponding integer representation
6461 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6462
6463 @item channels
6464 The number of channels of the incoming audio buffers.
6465 If both @var{channels} and @var{channel_layout} are specified, then they
6466 must be consistent.
6467
6468 @end table
6469
6470 @subsection Examples
6471
6472 @example
6473 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6474 @end example
6475
6476 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6477 Since the sample format with name "s16p" corresponds to the number
6478 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6479 equivalent to:
6480 @example
6481 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6482 @end example
6483
6484 @section aevalsrc
6485
6486 Generate an audio signal specified by an expression.
6487
6488 This source accepts in input one or more expressions (one for each
6489 channel), which are evaluated and used to generate a corresponding
6490 audio signal.
6491
6492 This source accepts the following options:
6493
6494 @table @option
6495 @item exprs
6496 Set the '|'-separated expressions list for each separate channel. In case the
6497 @option{channel_layout} option is not specified, the selected channel layout
6498 depends on the number of provided expressions. Otherwise the last
6499 specified expression is applied to the remaining output channels.
6500
6501 @item channel_layout, c
6502 Set the channel layout. The number of channels in the specified layout
6503 must be equal to the number of specified expressions.
6504
6505 @item duration, d
6506 Set the minimum duration of the sourced audio. See
6507 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6508 for the accepted syntax.
6509 Note that the resulting duration may be greater than the specified
6510 duration, as the generated audio is always cut at the end of a
6511 complete frame.
6512
6513 If not specified, or the expressed duration is negative, the audio is
6514 supposed to be generated forever.
6515
6516 @item nb_samples, n
6517 Set the number of samples per channel per each output frame,
6518 default to 1024.
6519
6520 @item sample_rate, s
6521 Specify the sample rate, default to 44100.
6522 @end table
6523
6524 Each expression in @var{exprs} can contain the following constants:
6525
6526 @table @option
6527 @item n
6528 number of the evaluated sample, starting from 0
6529
6530 @item t
6531 time of the evaluated sample expressed in seconds, starting from 0
6532
6533 @item s
6534 sample rate
6535
6536 @end table
6537
6538 @subsection Examples
6539
6540 @itemize
6541 @item
6542 Generate silence:
6543 @example
6544 aevalsrc=0
6545 @end example
6546
6547 @item
6548 Generate a sin signal with frequency of 440 Hz, set sample rate to
6549 8000 Hz:
6550 @example
6551 aevalsrc="sin(440*2*PI*t):s=8000"
6552 @end example
6553
6554 @item
6555 Generate a two channels signal, specify the channel layout (Front
6556 Center + Back Center) explicitly:
6557 @example
6558 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6559 @end example
6560
6561 @item
6562 Generate white noise:
6563 @example
6564 aevalsrc="-2+random(0)"
6565 @end example
6566
6567 @item
6568 Generate an amplitude modulated signal:
6569 @example
6570 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6571 @end example
6572
6573 @item
6574 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6575 @example
6576 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6577 @end example
6578
6579 @end itemize
6580
6581 @section afirsrc
6582
6583 Generate a FIR coefficients using frequency sampling method.
6584
6585 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6586
6587 The filter accepts the following options:
6588
6589 @table @option
6590 @item taps, t
6591 Set number of filter coefficents in output audio stream.
6592 Default value is 1025.
6593
6594 @item frequency, f
6595 Set frequency points from where magnitude and phase are set.
6596 This must be in non decreasing order, and first element must be 0, while last element
6597 must be 1. Elements are separated by white spaces.
6598
6599 @item magnitude, m
6600 Set magnitude value for every frequency point set by @option{frequency}.
6601 Number of values must be same as number of frequency points.
6602 Values are separated by white spaces.
6603
6604 @item phase, p
6605 Set phase value for every frequency point set by @option{frequency}.
6606 Number of values must be same as number of frequency points.
6607 Values are separated by white spaces.
6608
6609 @item sample_rate, r
6610 Set sample rate, default is 44100.
6611
6612 @item nb_samples, n
6613 Set number of samples per each frame. Default is 1024.
6614
6615 @item win_func, w
6616 Set window function. Default is blackman.
6617 @end table
6618
6619 @section anullsrc
6620
6621 The null audio source, return unprocessed audio frames. It is mainly useful
6622 as a template and to be employed in analysis / debugging tools, or as
6623 the source for filters which ignore the input data (for example the sox
6624 synth filter).
6625
6626 This source accepts the following options:
6627
6628 @table @option
6629
6630 @item channel_layout, cl
6631
6632 Specifies the channel layout, and can be either an integer or a string
6633 representing a channel layout. The default value of @var{channel_layout}
6634 is "stereo".
6635
6636 Check the channel_layout_map definition in
6637 @file{libavutil/channel_layout.c} for the mapping between strings and
6638 channel layout values.
6639
6640 @item sample_rate, r
6641 Specifies the sample rate, and defaults to 44100.
6642
6643 @item nb_samples, n
6644 Set the number of samples per requested frames.
6645
6646 @item duration, d
6647 Set the duration of the sourced audio. See
6648 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6649 for the accepted syntax.
6650
6651 If not specified, or the expressed duration is negative, the audio is
6652 supposed to be generated forever.
6653 @end table
6654
6655 @subsection Examples
6656
6657 @itemize
6658 @item
6659 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6660 @example
6661 anullsrc=r=48000:cl=4
6662 @end example
6663
6664 @item
6665 Do the same operation with a more obvious syntax:
6666 @example
6667 anullsrc=r=48000:cl=mono
6668 @end example
6669 @end itemize
6670
6671 All the parameters need to be explicitly defined.
6672
6673 @section flite
6674
6675 Synthesize a voice utterance using the libflite library.
6676
6677 To enable compilation of this filter you need to configure FFmpeg with
6678 @code{--enable-libflite}.
6679
6680 Note that versions of the flite library prior to 2.0 are not thread-safe.
6681
6682 The filter accepts the following options:
6683
6684 @table @option
6685
6686 @item list_voices
6687 If set to 1, list the names of the available voices and exit
6688 immediately. Default value is 0.
6689
6690 @item nb_samples, n
6691 Set the maximum number of samples per frame. Default value is 512.
6692
6693 @item textfile
6694 Set the filename containing the text to speak.
6695
6696 @item text
6697 Set the text to speak.
6698
6699 @item voice, v
6700 Set the voice to use for the speech synthesis. Default value is
6701 @code{kal}. See also the @var{list_voices} option.
6702 @end table
6703
6704 @subsection Examples
6705
6706 @itemize
6707 @item
6708 Read from file @file{speech.txt}, and synthesize the text using the
6709 standard flite voice:
6710 @example
6711 flite=textfile=speech.txt
6712 @end example
6713
6714 @item
6715 Read the specified text selecting the @code{slt} voice:
6716 @example
6717 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6718 @end example
6719
6720 @item
6721 Input text to ffmpeg:
6722 @example
6723 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6724 @end example
6725
6726 @item
6727 Make @file{ffplay} speak the specified text, using @code{flite} and
6728 the @code{lavfi} device:
6729 @example
6730 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6731 @end example
6732 @end itemize
6733
6734 For more information about libflite, check:
6735 @url{http://www.festvox.org/flite/}
6736
6737 @section anoisesrc
6738
6739 Generate a noise audio signal.
6740
6741 The filter accepts the following options:
6742
6743 @table @option
6744 @item sample_rate, r
6745 Specify the sample rate. Default value is 48000 Hz.
6746
6747 @item amplitude, a
6748 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6749 is 1.0.
6750
6751 @item duration, d
6752 Specify the duration of the generated audio stream. Not specifying this option
6753 results in noise with an infinite length.
6754
6755 @item color, colour, c
6756 Specify the color of noise. Available noise colors are white, pink, brown,
6757 blue, violet and velvet. Default color is white.
6758
6759 @item seed, s
6760 Specify a value used to seed the PRNG.
6761
6762 @item nb_samples, n
6763 Set the number of samples per each output frame, default is 1024.
6764 @end table
6765
6766 @subsection Examples
6767
6768 @itemize
6769
6770 @item
6771 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6772 @example
6773 anoisesrc=d=60:c=pink:r=44100:a=0.5
6774 @end example
6775 @end itemize
6776
6777 @section hilbert
6778
6779 Generate odd-tap Hilbert transform FIR coefficients.
6780
6781 The resulting stream can be used with @ref{afir} filter for phase-shifting
6782 the signal by 90 degrees.
6783
6784 This is used in many matrix coding schemes and for analytic signal generation.
6785 The process is often written as a multiplication by i (or j), the imaginary unit.
6786
6787 The filter accepts the following options:
6788
6789 @table @option
6790
6791 @item sample_rate, s
6792 Set sample rate, default is 44100.
6793
6794 @item taps, t
6795 Set length of FIR filter, default is 22051.
6796
6797 @item nb_samples, n
6798 Set number of samples per each frame.
6799
6800 @item win_func, w
6801 Set window function to be used when generating FIR coefficients.
6802 @end table
6803
6804 @section sinc
6805
6806 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6807
6808 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6809
6810 The filter accepts the following options:
6811
6812 @table @option
6813 @item sample_rate, r
6814 Set sample rate, default is 44100.
6815
6816 @item nb_samples, n
6817 Set number of samples per each frame. Default is 1024.
6818
6819 @item hp
6820 Set high-pass frequency. Default is 0.
6821
6822 @item lp
6823 Set low-pass frequency. Default is 0.
6824 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6825 is higher than 0 then filter will create band-pass filter coefficients,
6826 otherwise band-reject filter coefficients.
6827
6828 @item phase
6829 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6830
6831 @item beta
6832 Set Kaiser window beta.
6833
6834 @item att
6835 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6836
6837 @item round
6838 Enable rounding, by default is disabled.
6839
6840 @item hptaps
6841 Set number of taps for high-pass filter.
6842
6843 @item lptaps
6844 Set number of taps for low-pass filter.
6845 @end table
6846
6847 @section sine
6848
6849 Generate an audio signal made of a sine wave with amplitude 1/8.
6850
6851 The audio signal is bit-exact.
6852
6853 The filter accepts the following options:
6854
6855 @table @option
6856
6857 @item frequency, f
6858 Set the carrier frequency. Default is 440 Hz.
6859
6860 @item beep_factor, b
6861 Enable a periodic beep every second with frequency @var{beep_factor} times
6862 the carrier frequency. Default is 0, meaning the beep is disabled.
6863
6864 @item sample_rate, r
6865 Specify the sample rate, default is 44100.
6866
6867 @item duration, d
6868 Specify the duration of the generated audio stream.
6869
6870 @item samples_per_frame
6871 Set the number of samples per output frame.
6872
6873 The expression can contain the following constants:
6874
6875 @table @option
6876 @item n
6877 The (sequential) number of the output audio frame, starting from 0.
6878
6879 @item pts
6880 The PTS (Presentation TimeStamp) of the output audio frame,
6881 expressed in @var{TB} units.
6882
6883 @item t
6884 The PTS of the output audio frame, expressed in seconds.
6885
6886 @item TB
6887 The timebase of the output audio frames.
6888 @end table
6889
6890 Default is @code{1024}.
6891 @end table
6892
6893 @subsection Examples
6894
6895 @itemize
6896
6897 @item
6898 Generate a simple 440 Hz sine wave:
6899 @example
6900 sine
6901 @end example
6902
6903 @item
6904 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6905 @example
6906 sine=220:4:d=5
6907 sine=f=220:b=4:d=5
6908 sine=frequency=220:beep_factor=4:duration=5
6909 @end example
6910
6911 @item
6912 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6913 pattern:
6914 @example
6915 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6916 @end example
6917 @end itemize
6918
6919 @c man end AUDIO SOURCES
6920
6921 @chapter Audio Sinks
6922 @c man begin AUDIO SINKS
6923
6924 Below is a description of the currently available audio sinks.
6925
6926 @section abuffersink
6927
6928 Buffer audio frames, and make them available to the end of filter chain.
6929
6930 This sink is mainly intended for programmatic use, in particular
6931 through the interface defined in @file{libavfilter/buffersink.h}
6932 or the options system.
6933
6934 It accepts a pointer to an AVABufferSinkContext structure, which
6935 defines the incoming buffers' formats, to be passed as the opaque
6936 parameter to @code{avfilter_init_filter} for initialization.
6937 @section anullsink
6938
6939 Null audio sink; do absolutely nothing with the input audio. It is
6940 mainly useful as a template and for use in analysis / debugging
6941 tools.
6942
6943 @c man end AUDIO SINKS
6944
6945 @chapter Video Filters
6946 @c man begin VIDEO FILTERS
6947
6948 When you configure your FFmpeg build, you can disable any of the
6949 existing filters using @code{--disable-filters}.
6950 The configure output will show the video filters included in your
6951 build.
6952
6953 Below is a description of the currently available video filters.
6954
6955 @section addroi
6956
6957 Mark a region of interest in a video frame.
6958
6959 The frame data is passed through unchanged, but metadata is attached
6960 to the frame indicating regions of interest which can affect the
6961 behaviour of later encoding.  Multiple regions can be marked by
6962 applying the filter multiple times.
6963
6964 @table @option
6965 @item x
6966 Region distance in pixels from the left edge of the frame.
6967 @item y
6968 Region distance in pixels from the top edge of the frame.
6969 @item w
6970 Region width in pixels.
6971 @item h
6972 Region height in pixels.
6973
6974 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6975 and may contain the following variables:
6976 @table @option
6977 @item iw
6978 Width of the input frame.
6979 @item ih
6980 Height of the input frame.
6981 @end table
6982
6983 @item qoffset
6984 Quantisation offset to apply within the region.
6985
6986 This must be a real value in the range -1 to +1.  A value of zero
6987 indicates no quality change.  A negative value asks for better quality
6988 (less quantisation), while a positive value asks for worse quality
6989 (greater quantisation).
6990
6991 The range is calibrated so that the extreme values indicate the
6992 largest possible offset - if the rest of the frame is encoded with the
6993 worst possible quality, an offset of -1 indicates that this region
6994 should be encoded with the best possible quality anyway.  Intermediate
6995 values are then interpolated in some codec-dependent way.
6996
6997 For example, in 10-bit H.264 the quantisation parameter varies between
6998 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6999 this region should be encoded with a QP around one-tenth of the full
7000 range better than the rest of the frame.  So, if most of the frame
7001 were to be encoded with a QP of around 30, this region would get a QP
7002 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
7003 An extreme value of -1 would indicate that this region should be
7004 encoded with the best possible quality regardless of the treatment of
7005 the rest of the frame - that is, should be encoded at a QP of -12.
7006 @item clear
7007 If set to true, remove any existing regions of interest marked on the
7008 frame before adding the new one.
7009 @end table
7010
7011 @subsection Examples
7012
7013 @itemize
7014 @item
7015 Mark the centre quarter of the frame as interesting.
7016 @example
7017 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
7018 @end example
7019 @item
7020 Mark the 100-pixel-wide region on the left edge of the frame as very
7021 uninteresting (to be encoded at much lower quality than the rest of
7022 the frame).
7023 @example
7024 addroi=0:0:100:ih:+1/5
7025 @end example
7026 @end itemize
7027
7028 @section alphaextract
7029
7030 Extract the alpha component from the input as a grayscale video. This
7031 is especially useful with the @var{alphamerge} filter.
7032
7033 @section alphamerge
7034
7035 Add or replace the alpha component of the primary input with the
7036 grayscale value of a second input. This is intended for use with
7037 @var{alphaextract} to allow the transmission or storage of frame
7038 sequences that have alpha in a format that doesn't support an alpha
7039 channel.
7040
7041 For example, to reconstruct full frames from a normal YUV-encoded video
7042 and a separate video created with @var{alphaextract}, you might use:
7043 @example
7044 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
7045 @end example
7046
7047 @section amplify
7048
7049 Amplify differences between current pixel and pixels of adjacent frames in
7050 same pixel location.
7051
7052 This filter accepts the following options:
7053
7054 @table @option
7055 @item radius
7056 Set frame radius. Default is 2. Allowed range is from 1 to 63.
7057 For example radius of 3 will instruct filter to calculate average of 7 frames.
7058
7059 @item factor
7060 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
7061
7062 @item threshold
7063 Set threshold for difference amplification. Any difference greater or equal to
7064 this value will not alter source pixel. Default is 10.
7065 Allowed range is from 0 to 65535.
7066
7067 @item tolerance
7068 Set tolerance for difference amplification. Any difference lower to
7069 this value will not alter source pixel. Default is 0.
7070 Allowed range is from 0 to 65535.
7071
7072 @item low
7073 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7074 This option controls maximum possible value that will decrease source pixel value.
7075
7076 @item high
7077 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7078 This option controls maximum possible value that will increase source pixel value.
7079
7080 @item planes
7081 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7082 @end table
7083
7084 @subsection Commands
7085
7086 This filter supports the following @ref{commands} that corresponds to option of same name:
7087 @table @option
7088 @item factor
7089 @item threshold
7090 @item tolerance
7091 @item low
7092 @item high
7093 @item planes
7094 @end table
7095
7096 @section ass
7097
7098 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7099 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7100 Substation Alpha) subtitles files.
7101
7102 This filter accepts the following option in addition to the common options from
7103 the @ref{subtitles} filter:
7104
7105 @table @option
7106 @item shaping
7107 Set the shaping engine
7108
7109 Available values are:
7110 @table @samp
7111 @item auto
7112 The default libass shaping engine, which is the best available.
7113 @item simple
7114 Fast, font-agnostic shaper that can do only substitutions
7115 @item complex
7116 Slower shaper using OpenType for substitutions and positioning
7117 @end table
7118
7119 The default is @code{auto}.
7120 @end table
7121
7122 @section atadenoise
7123 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7124
7125 The filter accepts the following options:
7126
7127 @table @option
7128 @item 0a
7129 Set threshold A for 1st plane. Default is 0.02.
7130 Valid range is 0 to 0.3.
7131
7132 @item 0b
7133 Set threshold B for 1st plane. Default is 0.04.
7134 Valid range is 0 to 5.
7135
7136 @item 1a
7137 Set threshold A for 2nd plane. Default is 0.02.
7138 Valid range is 0 to 0.3.
7139
7140 @item 1b
7141 Set threshold B for 2nd plane. Default is 0.04.
7142 Valid range is 0 to 5.
7143
7144 @item 2a
7145 Set threshold A for 3rd plane. Default is 0.02.
7146 Valid range is 0 to 0.3.
7147
7148 @item 2b
7149 Set threshold B for 3rd plane. Default is 0.04.
7150 Valid range is 0 to 5.
7151
7152 Threshold A is designed to react on abrupt changes in the input signal and
7153 threshold B is designed to react on continuous changes in the input signal.
7154
7155 @item s
7156 Set number of frames filter will use for averaging. Default is 9. Must be odd
7157 number in range [5, 129].
7158
7159 @item p
7160 Set what planes of frame filter will use for averaging. Default is all.
7161
7162 @item a
7163 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7164 Alternatively can be set to @code{s} serial.
7165
7166 Parallel can be faster then serial, while other way around is never true.
7167 Parallel will abort early on first change being greater then thresholds, while serial
7168 will continue processing other side of frames if they are equal or below thresholds.
7169
7170 @item 0s
7171 @item 1s
7172 @item 2s
7173 Set sigma for 1st plane, 2nd plane or 3rd plane. Default is 32767.
7174 Valid range is from 0 to 32767.
7175 This options controls weight for each pixel in radius defined by size.
7176 Default value means every pixel have same weight.
7177 Setting this option to 0 effectively disables filtering.
7178 @end table
7179
7180 @subsection Commands
7181 This filter supports same @ref{commands} as options except option @code{s}.
7182 The command accepts the same syntax of the corresponding option.
7183
7184 @section avgblur
7185
7186 Apply average blur filter.
7187
7188 The filter accepts the following options:
7189
7190 @table @option
7191 @item sizeX
7192 Set horizontal radius size.
7193
7194 @item planes
7195 Set which planes to filter. By default all planes are filtered.
7196
7197 @item sizeY
7198 Set vertical radius size, if zero it will be same as @code{sizeX}.
7199 Default is @code{0}.
7200 @end table
7201
7202 @subsection Commands
7203 This filter supports same commands as options.
7204 The command accepts the same syntax of the corresponding option.
7205
7206 If the specified expression is not valid, it is kept at its current
7207 value.
7208
7209 @section bbox
7210
7211 Compute the bounding box for the non-black pixels in the input frame
7212 luminance plane.
7213
7214 This filter computes the bounding box containing all the pixels with a
7215 luminance value greater than the minimum allowed value.
7216 The parameters describing the bounding box are printed on the filter
7217 log.
7218
7219 The filter accepts the following option:
7220
7221 @table @option
7222 @item min_val
7223 Set the minimal luminance value. Default is @code{16}.
7224 @end table
7225
7226 @subsection Commands
7227
7228 This filter supports the all above options as @ref{commands}.
7229
7230 @section bilateral
7231 Apply bilateral filter, spatial smoothing while preserving edges.
7232
7233 The filter accepts the following options:
7234 @table @option
7235 @item sigmaS
7236 Set sigma of gaussian function to calculate spatial weight.
7237 Allowed range is 0 to 512. Default is 0.1.
7238
7239 @item sigmaR
7240 Set sigma of gaussian function to calculate range weight.
7241 Allowed range is 0 to 1. Default is 0.1.
7242
7243 @item planes
7244 Set planes to filter. Default is first only.
7245 @end table
7246
7247 @subsection Commands
7248
7249 This filter supports the all above options as @ref{commands}.
7250
7251 @section bitplanenoise
7252
7253 Show and measure bit plane noise.
7254
7255 The filter accepts the following options:
7256
7257 @table @option
7258 @item bitplane
7259 Set which plane to analyze. Default is @code{1}.
7260
7261 @item filter
7262 Filter out noisy pixels from @code{bitplane} set above.
7263 Default is disabled.
7264 @end table
7265
7266 @section blackdetect
7267
7268 Detect video intervals that are (almost) completely black. Can be
7269 useful to detect chapter transitions, commercials, or invalid
7270 recordings.
7271
7272 The filter outputs its detection analysis to both the log as well as
7273 frame metadata. If a black segment of at least the specified minimum
7274 duration is found, a line with the start and end timestamps as well
7275 as duration is printed to the log with level @code{info}. In addition,
7276 a log line with level @code{debug} is printed per frame showing the
7277 black amount detected for that frame.
7278
7279 The filter also attaches metadata to the first frame of a black
7280 segment with key @code{lavfi.black_start} and to the first frame
7281 after the black segment ends with key @code{lavfi.black_end}. The
7282 value is the frame's timestamp. This metadata is added regardless
7283 of the minimum duration specified.
7284
7285 The filter accepts the following options:
7286
7287 @table @option
7288 @item black_min_duration, d
7289 Set the minimum detected black duration expressed in seconds. It must
7290 be a non-negative floating point number.
7291
7292 Default value is 2.0.
7293
7294 @item picture_black_ratio_th, pic_th
7295 Set the threshold for considering a picture "black".
7296 Express the minimum value for the ratio:
7297 @example
7298 @var{nb_black_pixels} / @var{nb_pixels}
7299 @end example
7300
7301 for which a picture is considered black.
7302 Default value is 0.98.
7303
7304 @item pixel_black_th, pix_th
7305 Set the threshold for considering a pixel "black".
7306
7307 The threshold expresses the maximum pixel luminance value for which a
7308 pixel is considered "black". The provided value is scaled according to
7309 the following equation:
7310 @example
7311 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7312 @end example
7313
7314 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7315 the input video format, the range is [0-255] for YUV full-range
7316 formats and [16-235] for YUV non full-range formats.
7317
7318 Default value is 0.10.
7319 @end table
7320
7321 The following example sets the maximum pixel threshold to the minimum
7322 value, and detects only black intervals of 2 or more seconds:
7323 @example
7324 blackdetect=d=2:pix_th=0.00
7325 @end example
7326
7327 @section blackframe
7328
7329 Detect frames that are (almost) completely black. Can be useful to
7330 detect chapter transitions or commercials. Output lines consist of
7331 the frame number of the detected frame, the percentage of blackness,
7332 the position in the file if known or -1 and the timestamp in seconds.
7333
7334 In order to display the output lines, you need to set the loglevel at
7335 least to the AV_LOG_INFO value.
7336
7337 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7338 The value represents the percentage of pixels in the picture that
7339 are below the threshold value.
7340
7341 It accepts the following parameters:
7342
7343 @table @option
7344
7345 @item amount
7346 The percentage of the pixels that have to be below the threshold; it defaults to
7347 @code{98}.
7348
7349 @item threshold, thresh
7350 The threshold below which a pixel value is considered black; it defaults to
7351 @code{32}.
7352
7353 @end table
7354
7355 @anchor{blend}
7356 @section blend
7357
7358 Blend two video frames into each other.
7359
7360 The @code{blend} filter takes two input streams and outputs one
7361 stream, the first input is the "top" layer and second input is
7362 "bottom" layer.  By default, the output terminates when the longest input terminates.
7363
7364 The @code{tblend} (time blend) filter takes two consecutive frames
7365 from one single stream, and outputs the result obtained by blending
7366 the new frame on top of the old frame.
7367
7368 A description of the accepted options follows.
7369
7370 @table @option
7371 @item c0_mode
7372 @item c1_mode
7373 @item c2_mode
7374 @item c3_mode
7375 @item all_mode
7376 Set blend mode for specific pixel component or all pixel components in case
7377 of @var{all_mode}. Default value is @code{normal}.
7378
7379 Available values for component modes are:
7380 @table @samp
7381 @item addition
7382 @item grainmerge
7383 @item and
7384 @item average
7385 @item burn
7386 @item darken
7387 @item difference
7388 @item grainextract
7389 @item divide
7390 @item dodge
7391 @item freeze
7392 @item exclusion
7393 @item extremity
7394 @item glow
7395 @item hardlight
7396 @item hardmix
7397 @item heat
7398 @item lighten
7399 @item linearlight
7400 @item multiply
7401 @item multiply128
7402 @item negation
7403 @item normal
7404 @item or
7405 @item overlay
7406 @item phoenix
7407 @item pinlight
7408 @item reflect
7409 @item screen
7410 @item softlight
7411 @item subtract
7412 @item vividlight
7413 @item xor
7414 @end table
7415
7416 @item c0_opacity
7417 @item c1_opacity
7418 @item c2_opacity
7419 @item c3_opacity
7420 @item all_opacity
7421 Set blend opacity for specific pixel component or all pixel components in case
7422 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7423
7424 @item c0_expr
7425 @item c1_expr
7426 @item c2_expr
7427 @item c3_expr
7428 @item all_expr
7429 Set blend expression for specific pixel component or all pixel components in case
7430 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7431
7432 The expressions can use the following variables:
7433
7434 @table @option
7435 @item N
7436 The sequential number of the filtered frame, starting from @code{0}.
7437
7438 @item X
7439 @item Y
7440 the coordinates of the current sample
7441
7442 @item W
7443 @item H
7444 the width and height of currently filtered plane
7445
7446 @item SW
7447 @item SH
7448 Width and height scale for the plane being filtered. It is the
7449 ratio between the dimensions of the current plane to the luma plane,
7450 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7451 the luma plane and @code{0.5,0.5} for the chroma planes.
7452
7453 @item T
7454 Time of the current frame, expressed in seconds.
7455
7456 @item TOP, A
7457 Value of pixel component at current location for first video frame (top layer).
7458
7459 @item BOTTOM, B
7460 Value of pixel component at current location for second video frame (bottom layer).
7461 @end table
7462 @end table
7463
7464 The @code{blend} filter also supports the @ref{framesync} options.
7465
7466 @subsection Examples
7467
7468 @itemize
7469 @item
7470 Apply transition from bottom layer to top layer in first 10 seconds:
7471 @example
7472 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7473 @end example
7474
7475 @item
7476 Apply linear horizontal transition from top layer to bottom layer:
7477 @example
7478 blend=all_expr='A*(X/W)+B*(1-X/W)'
7479 @end example
7480
7481 @item
7482 Apply 1x1 checkerboard effect:
7483 @example
7484 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7485 @end example
7486
7487 @item
7488 Apply uncover left effect:
7489 @example
7490 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7491 @end example
7492
7493 @item
7494 Apply uncover down effect:
7495 @example
7496 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7497 @end example
7498
7499 @item
7500 Apply uncover up-left effect:
7501 @example
7502 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7503 @end example
7504
7505 @item
7506 Split diagonally video and shows top and bottom layer on each side:
7507 @example
7508 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7509 @end example
7510
7511 @item
7512 Display differences between the current and the previous frame:
7513 @example
7514 tblend=all_mode=grainextract
7515 @end example
7516 @end itemize
7517
7518 @subsection Commands
7519 This filter supports same @ref{commands} as options.
7520
7521 @section bm3d
7522
7523 Denoise frames using Block-Matching 3D algorithm.
7524
7525 The filter accepts the following options.
7526
7527 @table @option
7528 @item sigma
7529 Set denoising strength. Default value is 1.
7530 Allowed range is from 0 to 999.9.
7531 The denoising algorithm is very sensitive to sigma, so adjust it
7532 according to the source.
7533
7534 @item block
7535 Set local patch size. This sets dimensions in 2D.
7536
7537 @item bstep
7538 Set sliding step for processing blocks. Default value is 4.
7539 Allowed range is from 1 to 64.
7540 Smaller values allows processing more reference blocks and is slower.
7541
7542 @item group
7543 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7544 When set to 1, no block matching is done. Larger values allows more blocks
7545 in single group.
7546 Allowed range is from 1 to 256.
7547
7548 @item range
7549 Set radius for search block matching. Default is 9.
7550 Allowed range is from 1 to INT32_MAX.
7551
7552 @item mstep
7553 Set step between two search locations for block matching. Default is 1.
7554 Allowed range is from 1 to 64. Smaller is slower.
7555
7556 @item thmse
7557 Set threshold of mean square error for block matching. Valid range is 0 to
7558 INT32_MAX.
7559
7560 @item hdthr
7561 Set thresholding parameter for hard thresholding in 3D transformed domain.
7562 Larger values results in stronger hard-thresholding filtering in frequency
7563 domain.
7564
7565 @item estim
7566 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7567 Default is @code{basic}.
7568
7569 @item ref
7570 If enabled, filter will use 2nd stream for block matching.
7571 Default is disabled for @code{basic} value of @var{estim} option,
7572 and always enabled if value of @var{estim} is @code{final}.
7573
7574 @item planes
7575 Set planes to filter. Default is all available except alpha.
7576 @end table
7577
7578 @subsection Examples
7579
7580 @itemize
7581 @item
7582 Basic filtering with bm3d:
7583 @example
7584 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7585 @end example
7586
7587 @item
7588 Same as above, but filtering only luma:
7589 @example
7590 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7591 @end example
7592
7593 @item
7594 Same as above, but with both estimation modes:
7595 @example
7596 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
7597 @end example
7598
7599 @item
7600 Same as above, but prefilter with @ref{nlmeans} filter instead:
7601 @example
7602 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
7603 @end example
7604 @end itemize
7605
7606 @section boxblur
7607
7608 Apply a boxblur algorithm to the input video.
7609
7610 It accepts the following parameters:
7611
7612 @table @option
7613
7614 @item luma_radius, lr
7615 @item luma_power, lp
7616 @item chroma_radius, cr
7617 @item chroma_power, cp
7618 @item alpha_radius, ar
7619 @item alpha_power, ap
7620
7621 @end table
7622
7623 A description of the accepted options follows.
7624
7625 @table @option
7626 @item luma_radius, lr
7627 @item chroma_radius, cr
7628 @item alpha_radius, ar
7629 Set an expression for the box radius in pixels used for blurring the
7630 corresponding input plane.
7631
7632 The radius value must be a non-negative number, and must not be
7633 greater than the value of the expression @code{min(w,h)/2} for the
7634 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7635 planes.
7636
7637 Default value for @option{luma_radius} is "2". If not specified,
7638 @option{chroma_radius} and @option{alpha_radius} default to the
7639 corresponding value set for @option{luma_radius}.
7640
7641 The expressions can contain the following constants:
7642 @table @option
7643 @item w
7644 @item h
7645 The input width and height in pixels.
7646
7647 @item cw
7648 @item ch
7649 The input chroma image width and height in pixels.
7650
7651 @item hsub
7652 @item vsub
7653 The horizontal and vertical chroma subsample values. For example, for the
7654 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7655 @end table
7656
7657 @item luma_power, lp
7658 @item chroma_power, cp
7659 @item alpha_power, ap
7660 Specify how many times the boxblur filter is applied to the
7661 corresponding plane.
7662
7663 Default value for @option{luma_power} is 2. If not specified,
7664 @option{chroma_power} and @option{alpha_power} default to the
7665 corresponding value set for @option{luma_power}.
7666
7667 A value of 0 will disable the effect.
7668 @end table
7669
7670 @subsection Examples
7671
7672 @itemize
7673 @item
7674 Apply a boxblur filter with the luma, chroma, and alpha radii
7675 set to 2:
7676 @example
7677 boxblur=luma_radius=2:luma_power=1
7678 boxblur=2:1
7679 @end example
7680
7681 @item
7682 Set the luma radius to 2, and alpha and chroma radius to 0:
7683 @example
7684 boxblur=2:1:cr=0:ar=0
7685 @end example
7686
7687 @item
7688 Set the luma and chroma radii to a fraction of the video dimension:
7689 @example
7690 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7691 @end example
7692 @end itemize
7693
7694 @section bwdif
7695
7696 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7697 Deinterlacing Filter").
7698
7699 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7700 interpolation algorithms.
7701 It accepts the following parameters:
7702
7703 @table @option
7704 @item mode
7705 The interlacing mode to adopt. It accepts one of the following values:
7706
7707 @table @option
7708 @item 0, send_frame
7709 Output one frame for each frame.
7710 @item 1, send_field
7711 Output one frame for each field.
7712 @end table
7713
7714 The default value is @code{send_field}.
7715
7716 @item parity
7717 The picture field parity assumed for the input interlaced video. It accepts one
7718 of the following values:
7719
7720 @table @option
7721 @item 0, tff
7722 Assume the top field is first.
7723 @item 1, bff
7724 Assume the bottom field is first.
7725 @item -1, auto
7726 Enable automatic detection of field parity.
7727 @end table
7728
7729 The default value is @code{auto}.
7730 If the interlacing is unknown or the decoder does not export this information,
7731 top field first will be assumed.
7732
7733 @item deint
7734 Specify which frames to deinterlace. Accepts one of the following
7735 values:
7736
7737 @table @option
7738 @item 0, all
7739 Deinterlace all frames.
7740 @item 1, interlaced
7741 Only deinterlace frames marked as interlaced.
7742 @end table
7743
7744 The default value is @code{all}.
7745 @end table
7746
7747 @section cas
7748
7749 Apply Contrast Adaptive Sharpen filter to video stream.
7750
7751 The filter accepts the following options:
7752
7753 @table @option
7754 @item strength
7755 Set the sharpening strength. Default value is 0.
7756
7757 @item planes
7758 Set planes to filter. Default value is to filter all
7759 planes except alpha plane.
7760 @end table
7761
7762 @subsection Commands
7763 This filter supports same @ref{commands} as options.
7764
7765 @section chromahold
7766 Remove all color information for all colors except for certain one.
7767
7768 The filter accepts the following options:
7769
7770 @table @option
7771 @item color
7772 The color which will not be replaced with neutral chroma.
7773
7774 @item similarity
7775 Similarity percentage with the above color.
7776 0.01 matches only the exact key color, while 1.0 matches everything.
7777
7778 @item blend
7779 Blend percentage.
7780 0.0 makes pixels either fully gray, or not gray at all.
7781 Higher values result in more preserved color.
7782
7783 @item yuv
7784 Signals that the color passed is already in YUV instead of RGB.
7785
7786 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7787 This can be used to pass exact YUV values as hexadecimal numbers.
7788 @end table
7789
7790 @subsection Commands
7791 This filter supports same @ref{commands} as options.
7792 The command accepts the same syntax of the corresponding option.
7793
7794 If the specified expression is not valid, it is kept at its current
7795 value.
7796
7797 @section chromakey
7798 YUV colorspace color/chroma keying.
7799
7800 The filter accepts the following options:
7801
7802 @table @option
7803 @item color
7804 The color which will be replaced with transparency.
7805
7806 @item similarity
7807 Similarity percentage with the key color.
7808
7809 0.01 matches only the exact key color, while 1.0 matches everything.
7810
7811 @item blend
7812 Blend percentage.
7813
7814 0.0 makes pixels either fully transparent, or not transparent at all.
7815
7816 Higher values result in semi-transparent pixels, with a higher transparency
7817 the more similar the pixels color is to the key color.
7818
7819 @item yuv
7820 Signals that the color passed is already in YUV instead of RGB.
7821
7822 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7823 This can be used to pass exact YUV values as hexadecimal numbers.
7824 @end table
7825
7826 @subsection Commands
7827 This filter supports same @ref{commands} as options.
7828 The command accepts the same syntax of the corresponding option.
7829
7830 If the specified expression is not valid, it is kept at its current
7831 value.
7832
7833 @subsection Examples
7834
7835 @itemize
7836 @item
7837 Make every green pixel in the input image transparent:
7838 @example
7839 ffmpeg -i input.png -vf chromakey=green out.png
7840 @end example
7841
7842 @item
7843 Overlay a greenscreen-video on top of a static black background.
7844 @example
7845 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
7846 @end example
7847 @end itemize
7848
7849 @section chromanr
7850 Reduce chrominance noise.
7851
7852 The filter accepts the following options:
7853
7854 @table @option
7855 @item thres
7856 Set threshold for averaging chrominance values.
7857 Sum of absolute difference of Y, U and V pixel components of current
7858 pixel and neighbour pixels lower than this threshold will be used in
7859 averaging. Luma component is left unchanged and is copied to output.
7860 Default value is 30. Allowed range is from 1 to 200.
7861
7862 @item sizew
7863 Set horizontal radius of rectangle used for averaging.
7864 Allowed range is from 1 to 100. Default value is 5.
7865
7866 @item sizeh
7867 Set vertical radius of rectangle used for averaging.
7868 Allowed range is from 1 to 100. Default value is 5.
7869
7870 @item stepw
7871 Set horizontal step when averaging. Default value is 1.
7872 Allowed range is from 1 to 50.
7873 Mostly useful to speed-up filtering.
7874
7875 @item steph
7876 Set vertical step when averaging. Default value is 1.
7877 Allowed range is from 1 to 50.
7878 Mostly useful to speed-up filtering.
7879
7880 @item threy
7881 Set Y threshold for averaging chrominance values.
7882 Set finer control for max allowed difference between Y components
7883 of current pixel and neigbour pixels.
7884 Default value is 200. Allowed range is from 1 to 200.
7885
7886 @item threu
7887 Set U threshold for averaging chrominance values.
7888 Set finer control for max allowed difference between U components
7889 of current pixel and neigbour pixels.
7890 Default value is 200. Allowed range is from 1 to 200.
7891
7892 @item threv
7893 Set V threshold for averaging chrominance values.
7894 Set finer control for max allowed difference between V components
7895 of current pixel and neigbour pixels.
7896 Default value is 200. Allowed range is from 1 to 200.
7897 @end table
7898
7899 @subsection Commands
7900 This filter supports same @ref{commands} as options.
7901 The command accepts the same syntax of the corresponding option.
7902
7903 @section chromashift
7904 Shift chroma pixels horizontally and/or vertically.
7905
7906 The filter accepts the following options:
7907 @table @option
7908 @item cbh
7909 Set amount to shift chroma-blue horizontally.
7910 @item cbv
7911 Set amount to shift chroma-blue vertically.
7912 @item crh
7913 Set amount to shift chroma-red horizontally.
7914 @item crv
7915 Set amount to shift chroma-red vertically.
7916 @item edge
7917 Set edge mode, can be @var{smear}, default, or @var{warp}.
7918 @end table
7919
7920 @subsection Commands
7921
7922 This filter supports the all above options as @ref{commands}.
7923
7924 @section ciescope
7925
7926 Display CIE color diagram with pixels overlaid onto it.
7927
7928 The filter accepts the following options:
7929
7930 @table @option
7931 @item system
7932 Set color system.
7933
7934 @table @samp
7935 @item ntsc, 470m
7936 @item ebu, 470bg
7937 @item smpte
7938 @item 240m
7939 @item apple
7940 @item widergb
7941 @item cie1931
7942 @item rec709, hdtv
7943 @item uhdtv, rec2020
7944 @item dcip3
7945 @end table
7946
7947 @item cie
7948 Set CIE system.
7949
7950 @table @samp
7951 @item xyy
7952 @item ucs
7953 @item luv
7954 @end table
7955
7956 @item gamuts
7957 Set what gamuts to draw.
7958
7959 See @code{system} option for available values.
7960
7961 @item size, s
7962 Set ciescope size, by default set to 512.
7963
7964 @item intensity, i
7965 Set intensity used to map input pixel values to CIE diagram.
7966
7967 @item contrast
7968 Set contrast used to draw tongue colors that are out of active color system gamut.
7969
7970 @item corrgamma
7971 Correct gamma displayed on scope, by default enabled.
7972
7973 @item showwhite
7974 Show white point on CIE diagram, by default disabled.
7975
7976 @item gamma
7977 Set input gamma. Used only with XYZ input color space.
7978 @end table
7979
7980 @section codecview
7981
7982 Visualize information exported by some codecs.
7983
7984 Some codecs can export information through frames using side-data or other
7985 means. For example, some MPEG based codecs export motion vectors through the
7986 @var{export_mvs} flag in the codec @option{flags2} option.
7987
7988 The filter accepts the following option:
7989
7990 @table @option
7991 @item mv
7992 Set motion vectors to visualize.
7993
7994 Available flags for @var{mv} are:
7995
7996 @table @samp
7997 @item pf
7998 forward predicted MVs of P-frames
7999 @item bf
8000 forward predicted MVs of B-frames
8001 @item bb
8002 backward predicted MVs of B-frames
8003 @end table
8004
8005 @item qp
8006 Display quantization parameters using the chroma planes.
8007
8008 @item mv_type, mvt
8009 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
8010
8011 Available flags for @var{mv_type} are:
8012
8013 @table @samp
8014 @item fp
8015 forward predicted MVs
8016 @item bp
8017 backward predicted MVs
8018 @end table
8019
8020 @item frame_type, ft
8021 Set frame type to visualize motion vectors of.
8022
8023 Available flags for @var{frame_type} are:
8024
8025 @table @samp
8026 @item if
8027 intra-coded frames (I-frames)
8028 @item pf
8029 predicted frames (P-frames)
8030 @item bf
8031 bi-directionally predicted frames (B-frames)
8032 @end table
8033 @end table
8034
8035 @subsection Examples
8036
8037 @itemize
8038 @item
8039 Visualize forward predicted MVs of all frames using @command{ffplay}:
8040 @example
8041 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
8042 @end example
8043
8044 @item
8045 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
8046 @example
8047 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
8048 @end example
8049 @end itemize
8050
8051 @section colorbalance
8052 Modify intensity of primary colors (red, green and blue) of input frames.
8053
8054 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
8055 regions for the red-cyan, green-magenta or blue-yellow balance.
8056
8057 A positive adjustment value shifts the balance towards the primary color, a negative
8058 value towards the complementary color.
8059
8060 The filter accepts the following options:
8061
8062 @table @option
8063 @item rs
8064 @item gs
8065 @item bs
8066 Adjust red, green and blue shadows (darkest pixels).
8067
8068 @item rm
8069 @item gm
8070 @item bm
8071 Adjust red, green and blue midtones (medium pixels).
8072
8073 @item rh
8074 @item gh
8075 @item bh
8076 Adjust red, green and blue highlights (brightest pixels).
8077
8078 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8079
8080 @item pl
8081 Preserve lightness when changing color balance. Default is disabled.
8082 @end table
8083
8084 @subsection Examples
8085
8086 @itemize
8087 @item
8088 Add red color cast to shadows:
8089 @example
8090 colorbalance=rs=.3
8091 @end example
8092 @end itemize
8093
8094 @subsection Commands
8095
8096 This filter supports the all above options as @ref{commands}.
8097
8098 @section colorcontrast
8099
8100 Adjust color contrast between RGB components.
8101
8102 The filter accepts the following options:
8103
8104 @table @option
8105 @item rc
8106 Set the red-cyan contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8107
8108 @item gm
8109 Set the green-magenta contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8110
8111 @item by
8112 Set the blue-yellow contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8113
8114 @item rcw
8115 @item gmw
8116 @item byw
8117 Set the weight of each @code{rc}, @code{gm}, @code{by} option value. Default value is 0.0.
8118 Allowed range is from 0.0 to 1.0. If all weights are 0.0 filtering is disabled.
8119
8120 @item pl
8121 Set the amount of preserving lightness. Default value is 0.0. Allowed range is from 0.0 to 1.0.
8122 @end table
8123
8124 @subsection Commands
8125
8126 This filter supports the all above options as @ref{commands}.
8127
8128 @section colorcorrect
8129
8130 Adjust color white balance selectively for blacks and whites.
8131 This filter operates in YUV colorspace.
8132
8133 The filter accepts the following options:
8134
8135 @table @option
8136 @item rl
8137 Set the red shadow spot. Allowed range is from -1.0 to 1.0.
8138 Default value is 0.
8139
8140 @item bl
8141 Set the blue shadow spot. Allowed range is from -1.0 to 1.0.
8142 Default value is 0.
8143
8144 @item rh
8145 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8146 Default value is 0.
8147
8148 @item bh
8149 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8150 Default value is 0.
8151
8152 @item saturation
8153 Set the amount of saturation. Allowed range is from -3.0 to 3.0.
8154 Default value is 1.
8155 @end table
8156
8157 @subsection Commands
8158
8159 This filter supports the all above options as @ref{commands}.
8160
8161 @section colorchannelmixer
8162
8163 Adjust video input frames by re-mixing color channels.
8164
8165 This filter modifies a color channel by adding the values associated to
8166 the other channels of the same pixels. For example if the value to
8167 modify is red, the output value will be:
8168 @example
8169 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8170 @end example
8171
8172 The filter accepts the following options:
8173
8174 @table @option
8175 @item rr
8176 @item rg
8177 @item rb
8178 @item ra
8179 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8180 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8181
8182 @item gr
8183 @item gg
8184 @item gb
8185 @item ga
8186 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8187 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8188
8189 @item br
8190 @item bg
8191 @item bb
8192 @item ba
8193 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8194 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8195
8196 @item ar
8197 @item ag
8198 @item ab
8199 @item aa
8200 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8201 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8202
8203 Allowed ranges for options are @code{[-2.0, 2.0]}.
8204
8205 @item pl
8206 Preserve lightness when changing colors. Allowed range is from @code{[0.0, 1.0]}.
8207 Default is @code{0.0}, thus disabled.
8208 @end table
8209
8210 @subsection Examples
8211
8212 @itemize
8213 @item
8214 Convert source to grayscale:
8215 @example
8216 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8217 @end example
8218 @item
8219 Simulate sepia tones:
8220 @example
8221 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8222 @end example
8223 @end itemize
8224
8225 @subsection Commands
8226
8227 This filter supports the all above options as @ref{commands}.
8228
8229 @section colorize
8230 Overlay a solid color on the video stream.
8231
8232 The filter accepts the following options:
8233
8234 @table @option
8235 @item hue
8236 Set the color hue. Allowed range is from 0 to 360.
8237 Default value is 0.
8238
8239 @item saturation
8240 Set the color saturation. Allowed range is from 0 to 1.
8241 Default value is 0.5.
8242
8243 @item lightness
8244 Set the color lightness. Allowed range is from 0 to 1.
8245 Default value is 0.5.
8246
8247 @item mix
8248 Set the mix of source lightness. By default is set to 1.0.
8249 Allowed range is from 0.0 to 1.0.
8250 @end table
8251
8252 @subsection Commands
8253
8254 This filter supports the all above options as @ref{commands}.
8255
8256 @section colorkey
8257 RGB colorspace color keying.
8258
8259 The filter accepts the following options:
8260
8261 @table @option
8262 @item color
8263 The color which will be replaced with transparency.
8264
8265 @item similarity
8266 Similarity percentage with the key color.
8267
8268 0.01 matches only the exact key color, while 1.0 matches everything.
8269
8270 @item blend
8271 Blend percentage.
8272
8273 0.0 makes pixels either fully transparent, or not transparent at all.
8274
8275 Higher values result in semi-transparent pixels, with a higher transparency
8276 the more similar the pixels color is to the key color.
8277 @end table
8278
8279 @subsection Examples
8280
8281 @itemize
8282 @item
8283 Make every green pixel in the input image transparent:
8284 @example
8285 ffmpeg -i input.png -vf colorkey=green out.png
8286 @end example
8287
8288 @item
8289 Overlay a greenscreen-video on top of a static background image.
8290 @example
8291 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
8292 @end example
8293 @end itemize
8294
8295 @subsection Commands
8296 This filter supports same @ref{commands} as options.
8297 The command accepts the same syntax of the corresponding option.
8298
8299 If the specified expression is not valid, it is kept at its current
8300 value.
8301
8302 @section colorhold
8303 Remove all color information for all RGB colors except for certain one.
8304
8305 The filter accepts the following options:
8306
8307 @table @option
8308 @item color
8309 The color which will not be replaced with neutral gray.
8310
8311 @item similarity
8312 Similarity percentage with the above color.
8313 0.01 matches only the exact key color, while 1.0 matches everything.
8314
8315 @item blend
8316 Blend percentage. 0.0 makes pixels fully gray.
8317 Higher values result in more preserved color.
8318 @end table
8319
8320 @subsection Commands
8321 This filter supports same @ref{commands} as options.
8322 The command accepts the same syntax of the corresponding option.
8323
8324 If the specified expression is not valid, it is kept at its current
8325 value.
8326
8327 @section colorlevels
8328
8329 Adjust video input frames using levels.
8330
8331 The filter accepts the following options:
8332
8333 @table @option
8334 @item rimin
8335 @item gimin
8336 @item bimin
8337 @item aimin
8338 Adjust red, green, blue and alpha input black point.
8339 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8340
8341 @item rimax
8342 @item gimax
8343 @item bimax
8344 @item aimax
8345 Adjust red, green, blue and alpha input white point.
8346 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8347
8348 Input levels are used to lighten highlights (bright tones), darken shadows
8349 (dark tones), change the balance of bright and dark tones.
8350
8351 @item romin
8352 @item gomin
8353 @item bomin
8354 @item aomin
8355 Adjust red, green, blue and alpha output black point.
8356 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8357
8358 @item romax
8359 @item gomax
8360 @item bomax
8361 @item aomax
8362 Adjust red, green, blue and alpha output white point.
8363 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8364
8365 Output levels allows manual selection of a constrained output level range.
8366 @end table
8367
8368 @subsection Examples
8369
8370 @itemize
8371 @item
8372 Make video output darker:
8373 @example
8374 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8375 @end example
8376
8377 @item
8378 Increase contrast:
8379 @example
8380 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8381 @end example
8382
8383 @item
8384 Make video output lighter:
8385 @example
8386 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8387 @end example
8388
8389 @item
8390 Increase brightness:
8391 @example
8392 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8393 @end example
8394 @end itemize
8395
8396 @subsection Commands
8397
8398 This filter supports the all above options as @ref{commands}.
8399
8400 @section colormatrix
8401
8402 Convert color matrix.
8403
8404 The filter accepts the following options:
8405
8406 @table @option
8407 @item src
8408 @item dst
8409 Specify the source and destination color matrix. Both values must be
8410 specified.
8411
8412 The accepted values are:
8413 @table @samp
8414 @item bt709
8415 BT.709
8416
8417 @item fcc
8418 FCC
8419
8420 @item bt601
8421 BT.601
8422
8423 @item bt470
8424 BT.470
8425
8426 @item bt470bg
8427 BT.470BG
8428
8429 @item smpte170m
8430 SMPTE-170M
8431
8432 @item smpte240m
8433 SMPTE-240M
8434
8435 @item bt2020
8436 BT.2020
8437 @end table
8438 @end table
8439
8440 For example to convert from BT.601 to SMPTE-240M, use the command:
8441 @example
8442 colormatrix=bt601:smpte240m
8443 @end example
8444
8445 @section colorspace
8446
8447 Convert colorspace, transfer characteristics or color primaries.
8448 Input video needs to have an even size.
8449
8450 The filter accepts the following options:
8451
8452 @table @option
8453 @anchor{all}
8454 @item all
8455 Specify all color properties at once.
8456
8457 The accepted values are:
8458 @table @samp
8459 @item bt470m
8460 BT.470M
8461
8462 @item bt470bg
8463 BT.470BG
8464
8465 @item bt601-6-525
8466 BT.601-6 525
8467
8468 @item bt601-6-625
8469 BT.601-6 625
8470
8471 @item bt709
8472 BT.709
8473
8474 @item smpte170m
8475 SMPTE-170M
8476
8477 @item smpte240m
8478 SMPTE-240M
8479
8480 @item bt2020
8481 BT.2020
8482
8483 @end table
8484
8485 @anchor{space}
8486 @item space
8487 Specify output colorspace.
8488
8489 The accepted values are:
8490 @table @samp
8491 @item bt709
8492 BT.709
8493
8494 @item fcc
8495 FCC
8496
8497 @item bt470bg
8498 BT.470BG or BT.601-6 625
8499
8500 @item smpte170m
8501 SMPTE-170M or BT.601-6 525
8502
8503 @item smpte240m
8504 SMPTE-240M
8505
8506 @item ycgco
8507 YCgCo
8508
8509 @item bt2020ncl
8510 BT.2020 with non-constant luminance
8511
8512 @end table
8513
8514 @anchor{trc}
8515 @item trc
8516 Specify output transfer characteristics.
8517
8518 The accepted values are:
8519 @table @samp
8520 @item bt709
8521 BT.709
8522
8523 @item bt470m
8524 BT.470M
8525
8526 @item bt470bg
8527 BT.470BG
8528
8529 @item gamma22
8530 Constant gamma of 2.2
8531
8532 @item gamma28
8533 Constant gamma of 2.8
8534
8535 @item smpte170m
8536 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8537
8538 @item smpte240m
8539 SMPTE-240M
8540
8541 @item srgb
8542 SRGB
8543
8544 @item iec61966-2-1
8545 iec61966-2-1
8546
8547 @item iec61966-2-4
8548 iec61966-2-4
8549
8550 @item xvycc
8551 xvycc
8552
8553 @item bt2020-10
8554 BT.2020 for 10-bits content
8555
8556 @item bt2020-12
8557 BT.2020 for 12-bits content
8558
8559 @end table
8560
8561 @anchor{primaries}
8562 @item primaries
8563 Specify output color primaries.
8564
8565 The accepted values are:
8566 @table @samp
8567 @item bt709
8568 BT.709
8569
8570 @item bt470m
8571 BT.470M
8572
8573 @item bt470bg
8574 BT.470BG or BT.601-6 625
8575
8576 @item smpte170m
8577 SMPTE-170M or BT.601-6 525
8578
8579 @item smpte240m
8580 SMPTE-240M
8581
8582 @item film
8583 film
8584
8585 @item smpte431
8586 SMPTE-431
8587
8588 @item smpte432
8589 SMPTE-432
8590
8591 @item bt2020
8592 BT.2020
8593
8594 @item jedec-p22
8595 JEDEC P22 phosphors
8596
8597 @end table
8598
8599 @anchor{range}
8600 @item range
8601 Specify output color range.
8602
8603 The accepted values are:
8604 @table @samp
8605 @item tv
8606 TV (restricted) range
8607
8608 @item mpeg
8609 MPEG (restricted) range
8610
8611 @item pc
8612 PC (full) range
8613
8614 @item jpeg
8615 JPEG (full) range
8616
8617 @end table
8618
8619 @item format
8620 Specify output color format.
8621
8622 The accepted values are:
8623 @table @samp
8624 @item yuv420p
8625 YUV 4:2:0 planar 8-bits
8626
8627 @item yuv420p10
8628 YUV 4:2:0 planar 10-bits
8629
8630 @item yuv420p12
8631 YUV 4:2:0 planar 12-bits
8632
8633 @item yuv422p
8634 YUV 4:2:2 planar 8-bits
8635
8636 @item yuv422p10
8637 YUV 4:2:2 planar 10-bits
8638
8639 @item yuv422p12
8640 YUV 4:2:2 planar 12-bits
8641
8642 @item yuv444p
8643 YUV 4:4:4 planar 8-bits
8644
8645 @item yuv444p10
8646 YUV 4:4:4 planar 10-bits
8647
8648 @item yuv444p12
8649 YUV 4:4:4 planar 12-bits
8650
8651 @end table
8652
8653 @item fast
8654 Do a fast conversion, which skips gamma/primary correction. This will take
8655 significantly less CPU, but will be mathematically incorrect. To get output
8656 compatible with that produced by the colormatrix filter, use fast=1.
8657
8658 @item dither
8659 Specify dithering mode.
8660
8661 The accepted values are:
8662 @table @samp
8663 @item none
8664 No dithering
8665
8666 @item fsb
8667 Floyd-Steinberg dithering
8668 @end table
8669
8670 @item wpadapt
8671 Whitepoint adaptation mode.
8672
8673 The accepted values are:
8674 @table @samp
8675 @item bradford
8676 Bradford whitepoint adaptation
8677
8678 @item vonkries
8679 von Kries whitepoint adaptation
8680
8681 @item identity
8682 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8683 @end table
8684
8685 @item iall
8686 Override all input properties at once. Same accepted values as @ref{all}.
8687
8688 @item ispace
8689 Override input colorspace. Same accepted values as @ref{space}.
8690
8691 @item iprimaries
8692 Override input color primaries. Same accepted values as @ref{primaries}.
8693
8694 @item itrc
8695 Override input transfer characteristics. Same accepted values as @ref{trc}.
8696
8697 @item irange
8698 Override input color range. Same accepted values as @ref{range}.
8699
8700 @end table
8701
8702 The filter converts the transfer characteristics, color space and color
8703 primaries to the specified user values. The output value, if not specified,
8704 is set to a default value based on the "all" property. If that property is
8705 also not specified, the filter will log an error. The output color range and
8706 format default to the same value as the input color range and format. The
8707 input transfer characteristics, color space, color primaries and color range
8708 should be set on the input data. If any of these are missing, the filter will
8709 log an error and no conversion will take place.
8710
8711 For example to convert the input to SMPTE-240M, use the command:
8712 @example
8713 colorspace=smpte240m
8714 @end example
8715
8716 @section colortemperature
8717 Adjust color temperature in video to simulate variations in ambient color temperature.
8718
8719 The filter accepts the following options:
8720
8721 @table @option
8722 @item temperature
8723 Set the temperature in Kelvin. Allowed range is from 1000 to 40000.
8724 Default value is 6500 K.
8725
8726 @item mix
8727 Set mixing with filtered output. Allowed range is from 0 to 1.
8728 Default value is 1.
8729
8730 @item pl
8731 Set the amount of preserving lightness. Allowed range is from 0 to 1.
8732 Default value is 0.
8733 @end table
8734
8735 @subsection Commands
8736 This filter supports same @ref{commands} as options.
8737
8738 @section convolution
8739
8740 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8741
8742 The filter accepts the following options:
8743
8744 @table @option
8745 @item 0m
8746 @item 1m
8747 @item 2m
8748 @item 3m
8749 Set matrix for each plane.
8750 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8751 and from 1 to 49 odd number of signed integers in @var{row} mode.
8752
8753 @item 0rdiv
8754 @item 1rdiv
8755 @item 2rdiv
8756 @item 3rdiv
8757 Set multiplier for calculated value for each plane.
8758 If unset or 0, it will be sum of all matrix elements.
8759
8760 @item 0bias
8761 @item 1bias
8762 @item 2bias
8763 @item 3bias
8764 Set bias for each plane. This value is added to the result of the multiplication.
8765 Useful for making the overall image brighter or darker. Default is 0.0.
8766
8767 @item 0mode
8768 @item 1mode
8769 @item 2mode
8770 @item 3mode
8771 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8772 Default is @var{square}.
8773 @end table
8774
8775 @subsection Commands
8776
8777 This filter supports the all above options as @ref{commands}.
8778
8779 @subsection Examples
8780
8781 @itemize
8782 @item
8783 Apply sharpen:
8784 @example
8785 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"
8786 @end example
8787
8788 @item
8789 Apply blur:
8790 @example
8791 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"
8792 @end example
8793
8794 @item
8795 Apply edge enhance:
8796 @example
8797 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"
8798 @end example
8799
8800 @item
8801 Apply edge detect:
8802 @example
8803 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"
8804 @end example
8805
8806 @item
8807 Apply laplacian edge detector which includes diagonals:
8808 @example
8809 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"
8810 @end example
8811
8812 @item
8813 Apply emboss:
8814 @example
8815 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"
8816 @end example
8817 @end itemize
8818
8819 @section convolve
8820
8821 Apply 2D convolution of video stream in frequency domain using second stream
8822 as impulse.
8823
8824 The filter accepts the following options:
8825
8826 @table @option
8827 @item planes
8828 Set which planes to process.
8829
8830 @item impulse
8831 Set which impulse video frames will be processed, can be @var{first}
8832 or @var{all}. Default is @var{all}.
8833 @end table
8834
8835 The @code{convolve} filter also supports the @ref{framesync} options.
8836
8837 @section copy
8838
8839 Copy the input video source unchanged to the output. This is mainly useful for
8840 testing purposes.
8841
8842 @anchor{coreimage}
8843 @section coreimage
8844 Video filtering on GPU using Apple's CoreImage API on OSX.
8845
8846 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8847 processed by video hardware. However, software-based OpenGL implementations
8848 exist which means there is no guarantee for hardware processing. It depends on
8849 the respective OSX.
8850
8851 There are many filters and image generators provided by Apple that come with a
8852 large variety of options. The filter has to be referenced by its name along
8853 with its options.
8854
8855 The coreimage filter accepts the following options:
8856 @table @option
8857 @item list_filters
8858 List all available filters and generators along with all their respective
8859 options as well as possible minimum and maximum values along with the default
8860 values.
8861 @example
8862 list_filters=true
8863 @end example
8864
8865 @item filter
8866 Specify all filters by their respective name and options.
8867 Use @var{list_filters} to determine all valid filter names and options.
8868 Numerical options are specified by a float value and are automatically clamped
8869 to their respective value range.  Vector and color options have to be specified
8870 by a list of space separated float values. Character escaping has to be done.
8871 A special option name @code{default} is available to use default options for a
8872 filter.
8873
8874 It is required to specify either @code{default} or at least one of the filter options.
8875 All omitted options are used with their default values.
8876 The syntax of the filter string is as follows:
8877 @example
8878 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8879 @end example
8880
8881 @item output_rect
8882 Specify a rectangle where the output of the filter chain is copied into the
8883 input image. It is given by a list of space separated float values:
8884 @example
8885 output_rect=x\ y\ width\ height
8886 @end example
8887 If not given, the output rectangle equals the dimensions of the input image.
8888 The output rectangle is automatically cropped at the borders of the input
8889 image. Negative values are valid for each component.
8890 @example
8891 output_rect=25\ 25\ 100\ 100
8892 @end example
8893 @end table
8894
8895 Several filters can be chained for successive processing without GPU-HOST
8896 transfers allowing for fast processing of complex filter chains.
8897 Currently, only filters with zero (generators) or exactly one (filters) input
8898 image and one output image are supported. Also, transition filters are not yet
8899 usable as intended.
8900
8901 Some filters generate output images with additional padding depending on the
8902 respective filter kernel. The padding is automatically removed to ensure the
8903 filter output has the same size as the input image.
8904
8905 For image generators, the size of the output image is determined by the
8906 previous output image of the filter chain or the input image of the whole
8907 filterchain, respectively. The generators do not use the pixel information of
8908 this image to generate their output. However, the generated output is
8909 blended onto this image, resulting in partial or complete coverage of the
8910 output image.
8911
8912 The @ref{coreimagesrc} video source can be used for generating input images
8913 which are directly fed into the filter chain. By using it, providing input
8914 images by another video source or an input video is not required.
8915
8916 @subsection Examples
8917
8918 @itemize
8919
8920 @item
8921 List all filters available:
8922 @example
8923 coreimage=list_filters=true
8924 @end example
8925
8926 @item
8927 Use the CIBoxBlur filter with default options to blur an image:
8928 @example
8929 coreimage=filter=CIBoxBlur@@default
8930 @end example
8931
8932 @item
8933 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8934 its center at 100x100 and a radius of 50 pixels:
8935 @example
8936 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8937 @end example
8938
8939 @item
8940 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8941 given as complete and escaped command-line for Apple's standard bash shell:
8942 @example
8943 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8944 @end example
8945 @end itemize
8946
8947 @section cover_rect
8948
8949 Cover a rectangular object
8950
8951 It accepts the following options:
8952
8953 @table @option
8954 @item cover
8955 Filepath of the optional cover image, needs to be in yuv420.
8956
8957 @item mode
8958 Set covering mode.
8959
8960 It accepts the following values:
8961 @table @samp
8962 @item cover
8963 cover it by the supplied image
8964 @item blur
8965 cover it by interpolating the surrounding pixels
8966 @end table
8967
8968 Default value is @var{blur}.
8969 @end table
8970
8971 @subsection Examples
8972
8973 @itemize
8974 @item
8975 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8976 @example
8977 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8978 @end example
8979 @end itemize
8980
8981 @section crop
8982
8983 Crop the input video to given dimensions.
8984
8985 It accepts the following parameters:
8986
8987 @table @option
8988 @item w, out_w
8989 The width of the output video. It defaults to @code{iw}.
8990 This expression is evaluated only once during the filter
8991 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8992
8993 @item h, out_h
8994 The height of the output video. It defaults to @code{ih}.
8995 This expression is evaluated only once during the filter
8996 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8997
8998 @item x
8999 The horizontal position, in the input video, of the left edge of the output
9000 video. It defaults to @code{(in_w-out_w)/2}.
9001 This expression is evaluated per-frame.
9002
9003 @item y
9004 The vertical position, in the input video, of the top edge of the output video.
9005 It defaults to @code{(in_h-out_h)/2}.
9006 This expression is evaluated per-frame.
9007
9008 @item keep_aspect
9009 If set to 1 will force the output display aspect ratio
9010 to be the same of the input, by changing the output sample aspect
9011 ratio. It defaults to 0.
9012
9013 @item exact
9014 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
9015 width/height/x/y as specified and will not be rounded to nearest smaller value.
9016 It defaults to 0.
9017 @end table
9018
9019 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
9020 expressions containing the following constants:
9021
9022 @table @option
9023 @item x
9024 @item y
9025 The computed values for @var{x} and @var{y}. They are evaluated for
9026 each new frame.
9027
9028 @item in_w
9029 @item in_h
9030 The input width and height.
9031
9032 @item iw
9033 @item ih
9034 These are the same as @var{in_w} and @var{in_h}.
9035
9036 @item out_w
9037 @item out_h
9038 The output (cropped) width and height.
9039
9040 @item ow
9041 @item oh
9042 These are the same as @var{out_w} and @var{out_h}.
9043
9044 @item a
9045 same as @var{iw} / @var{ih}
9046
9047 @item sar
9048 input sample aspect ratio
9049
9050 @item dar
9051 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
9052
9053 @item hsub
9054 @item vsub
9055 horizontal and vertical chroma subsample values. For example for the
9056 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9057
9058 @item n
9059 The number of the input frame, starting from 0.
9060
9061 @item pos
9062 the position in the file of the input frame, NAN if unknown
9063
9064 @item t
9065 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
9066
9067 @end table
9068
9069 The expression for @var{out_w} may depend on the value of @var{out_h},
9070 and the expression for @var{out_h} may depend on @var{out_w}, but they
9071 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
9072 evaluated after @var{out_w} and @var{out_h}.
9073
9074 The @var{x} and @var{y} parameters specify the expressions for the
9075 position of the top-left corner of the output (non-cropped) area. They
9076 are evaluated for each frame. If the evaluated value is not valid, it
9077 is approximated to the nearest valid value.
9078
9079 The expression for @var{x} may depend on @var{y}, and the expression
9080 for @var{y} may depend on @var{x}.
9081
9082 @subsection Examples
9083
9084 @itemize
9085 @item
9086 Crop area with size 100x100 at position (12,34).
9087 @example
9088 crop=100:100:12:34
9089 @end example
9090
9091 Using named options, the example above becomes:
9092 @example
9093 crop=w=100:h=100:x=12:y=34
9094 @end example
9095
9096 @item
9097 Crop the central input area with size 100x100:
9098 @example
9099 crop=100:100
9100 @end example
9101
9102 @item
9103 Crop the central input area with size 2/3 of the input video:
9104 @example
9105 crop=2/3*in_w:2/3*in_h
9106 @end example
9107
9108 @item
9109 Crop the input video central square:
9110 @example
9111 crop=out_w=in_h
9112 crop=in_h
9113 @end example
9114
9115 @item
9116 Delimit the rectangle with the top-left corner placed at position
9117 100:100 and the right-bottom corner corresponding to the right-bottom
9118 corner of the input image.
9119 @example
9120 crop=in_w-100:in_h-100:100:100
9121 @end example
9122
9123 @item
9124 Crop 10 pixels from the left and right borders, and 20 pixels from
9125 the top and bottom borders
9126 @example
9127 crop=in_w-2*10:in_h-2*20
9128 @end example
9129
9130 @item
9131 Keep only the bottom right quarter of the input image:
9132 @example
9133 crop=in_w/2:in_h/2:in_w/2:in_h/2
9134 @end example
9135
9136 @item
9137 Crop height for getting Greek harmony:
9138 @example
9139 crop=in_w:1/PHI*in_w
9140 @end example
9141
9142 @item
9143 Apply trembling effect:
9144 @example
9145 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)
9146 @end example
9147
9148 @item
9149 Apply erratic camera effect depending on timestamp:
9150 @example
9151 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)"
9152 @end example
9153
9154 @item
9155 Set x depending on the value of y:
9156 @example
9157 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
9158 @end example
9159 @end itemize
9160
9161 @subsection Commands
9162
9163 This filter supports the following commands:
9164 @table @option
9165 @item w, out_w
9166 @item h, out_h
9167 @item x
9168 @item y
9169 Set width/height of the output video and the horizontal/vertical position
9170 in the input video.
9171 The command accepts the same syntax of the corresponding option.
9172
9173 If the specified expression is not valid, it is kept at its current
9174 value.
9175 @end table
9176
9177 @section cropdetect
9178
9179 Auto-detect the crop size.
9180
9181 It calculates the necessary cropping parameters and prints the
9182 recommended parameters via the logging system. The detected dimensions
9183 correspond to the non-black area of the input video.
9184
9185 It accepts the following parameters:
9186
9187 @table @option
9188
9189 @item limit
9190 Set higher black value threshold, which can be optionally specified
9191 from nothing (0) to everything (255 for 8-bit based formats). An intensity
9192 value greater to the set value is considered non-black. It defaults to 24.
9193 You can also specify a value between 0.0 and 1.0 which will be scaled depending
9194 on the bitdepth of the pixel format.
9195
9196 @item round
9197 The value which the width/height should be divisible by. It defaults to
9198 16. The offset is automatically adjusted to center the video. Use 2 to
9199 get only even dimensions (needed for 4:2:2 video). 16 is best when
9200 encoding to most video codecs.
9201
9202 @item skip
9203 Set the number of initial frames for which evaluation is skipped.
9204 Default is 2. Range is 0 to INT_MAX.
9205
9206 @item reset_count, reset
9207 Set the counter that determines after how many frames cropdetect will
9208 reset the previously detected largest video area and start over to
9209 detect the current optimal crop area. Default value is 0.
9210
9211 This can be useful when channel logos distort the video area. 0
9212 indicates 'never reset', and returns the largest area encountered during
9213 playback.
9214 @end table
9215
9216 @anchor{cue}
9217 @section cue
9218
9219 Delay video filtering until a given wallclock timestamp. The filter first
9220 passes on @option{preroll} amount of frames, then it buffers at most
9221 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9222 it forwards the buffered frames and also any subsequent frames coming in its
9223 input.
9224
9225 The filter can be used synchronize the output of multiple ffmpeg processes for
9226 realtime output devices like decklink. By putting the delay in the filtering
9227 chain and pre-buffering frames the process can pass on data to output almost
9228 immediately after the target wallclock timestamp is reached.
9229
9230 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9231 some use cases.
9232
9233 @table @option
9234
9235 @item cue
9236 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9237
9238 @item preroll
9239 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9240
9241 @item buffer
9242 The maximum duration of content to buffer before waiting for the cue expressed
9243 in seconds. Default is 0.
9244
9245 @end table
9246
9247 @anchor{curves}
9248 @section curves
9249
9250 Apply color adjustments using curves.
9251
9252 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9253 component (red, green and blue) has its values defined by @var{N} key points
9254 tied from each other using a smooth curve. The x-axis represents the pixel
9255 values from the input frame, and the y-axis the new pixel values to be set for
9256 the output frame.
9257
9258 By default, a component curve is defined by the two points @var{(0;0)} and
9259 @var{(1;1)}. This creates a straight line where each original pixel value is
9260 "adjusted" to its own value, which means no change to the image.
9261
9262 The filter allows you to redefine these two points and add some more. A new
9263 curve (using a natural cubic spline interpolation) will be define to pass
9264 smoothly through all these new coordinates. The new defined points needs to be
9265 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9266 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9267 the vector spaces, the values will be clipped accordingly.
9268
9269 The filter accepts the following options:
9270
9271 @table @option
9272 @item preset
9273 Select one of the available color presets. This option can be used in addition
9274 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9275 options takes priority on the preset values.
9276 Available presets are:
9277 @table @samp
9278 @item none
9279 @item color_negative
9280 @item cross_process
9281 @item darker
9282 @item increase_contrast
9283 @item lighter
9284 @item linear_contrast
9285 @item medium_contrast
9286 @item negative
9287 @item strong_contrast
9288 @item vintage
9289 @end table
9290 Default is @code{none}.
9291 @item master, m
9292 Set the master key points. These points will define a second pass mapping. It
9293 is sometimes called a "luminance" or "value" mapping. It can be used with
9294 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9295 post-processing LUT.
9296 @item red, r
9297 Set the key points for the red component.
9298 @item green, g
9299 Set the key points for the green component.
9300 @item blue, b
9301 Set the key points for the blue component.
9302 @item all
9303 Set the key points for all components (not including master).
9304 Can be used in addition to the other key points component
9305 options. In this case, the unset component(s) will fallback on this
9306 @option{all} setting.
9307 @item psfile
9308 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9309 @item plot
9310 Save Gnuplot script of the curves in specified file.
9311 @end table
9312
9313 To avoid some filtergraph syntax conflicts, each key points list need to be
9314 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9315
9316 @subsection Commands
9317
9318 This filter supports same @ref{commands} as options.
9319
9320 @subsection Examples
9321
9322 @itemize
9323 @item
9324 Increase slightly the middle level of blue:
9325 @example
9326 curves=blue='0/0 0.5/0.58 1/1'
9327 @end example
9328
9329 @item
9330 Vintage effect:
9331 @example
9332 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'
9333 @end example
9334 Here we obtain the following coordinates for each components:
9335 @table @var
9336 @item red
9337 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9338 @item green
9339 @code{(0;0) (0.50;0.48) (1;1)}
9340 @item blue
9341 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9342 @end table
9343
9344 @item
9345 The previous example can also be achieved with the associated built-in preset:
9346 @example
9347 curves=preset=vintage
9348 @end example
9349
9350 @item
9351 Or simply:
9352 @example
9353 curves=vintage
9354 @end example
9355
9356 @item
9357 Use a Photoshop preset and redefine the points of the green component:
9358 @example
9359 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9360 @end example
9361
9362 @item
9363 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9364 and @command{gnuplot}:
9365 @example
9366 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9367 gnuplot -p /tmp/curves.plt
9368 @end example
9369 @end itemize
9370
9371 @section datascope
9372
9373 Video data analysis filter.
9374
9375 This filter shows hexadecimal pixel values of part of video.
9376
9377 The filter accepts the following options:
9378
9379 @table @option
9380 @item size, s
9381 Set output video size.
9382
9383 @item x
9384 Set x offset from where to pick pixels.
9385
9386 @item y
9387 Set y offset from where to pick pixels.
9388
9389 @item mode
9390 Set scope mode, can be one of the following:
9391 @table @samp
9392 @item mono
9393 Draw hexadecimal pixel values with white color on black background.
9394
9395 @item color
9396 Draw hexadecimal pixel values with input video pixel color on black
9397 background.
9398
9399 @item color2
9400 Draw hexadecimal pixel values on color background picked from input video,
9401 the text color is picked in such way so its always visible.
9402 @end table
9403
9404 @item axis
9405 Draw rows and columns numbers on left and top of video.
9406
9407 @item opacity
9408 Set background opacity.
9409
9410 @item format
9411 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9412
9413 @item components
9414 Set pixel components to display. By default all pixel components are displayed.
9415 @end table
9416
9417 @subsection Commands
9418
9419 This filter supports same @ref{commands} as options excluding @code{size} option.
9420
9421 @section dblur
9422 Apply Directional blur filter.
9423
9424 The filter accepts the following options:
9425
9426 @table @option
9427 @item angle
9428 Set angle of directional blur. Default is @code{45}.
9429
9430 @item radius
9431 Set radius of directional blur. Default is @code{5}.
9432
9433 @item planes
9434 Set which planes to filter. By default all planes are filtered.
9435 @end table
9436
9437 @subsection Commands
9438 This filter supports same @ref{commands} as options.
9439 The command accepts the same syntax of the corresponding option.
9440
9441 If the specified expression is not valid, it is kept at its current
9442 value.
9443
9444 @section dctdnoiz
9445
9446 Denoise frames using 2D DCT (frequency domain filtering).
9447
9448 This filter is not designed for real time.
9449
9450 The filter accepts the following options:
9451
9452 @table @option
9453 @item sigma, s
9454 Set the noise sigma constant.
9455
9456 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9457 coefficient (absolute value) below this threshold with be dropped.
9458
9459 If you need a more advanced filtering, see @option{expr}.
9460
9461 Default is @code{0}.
9462
9463 @item overlap
9464 Set number overlapping pixels for each block. Since the filter can be slow, you
9465 may want to reduce this value, at the cost of a less effective filter and the
9466 risk of various artefacts.
9467
9468 If the overlapping value doesn't permit processing the whole input width or
9469 height, a warning will be displayed and according borders won't be denoised.
9470
9471 Default value is @var{blocksize}-1, which is the best possible setting.
9472
9473 @item expr, e
9474 Set the coefficient factor expression.
9475
9476 For each coefficient of a DCT block, this expression will be evaluated as a
9477 multiplier value for the coefficient.
9478
9479 If this is option is set, the @option{sigma} option will be ignored.
9480
9481 The absolute value of the coefficient can be accessed through the @var{c}
9482 variable.
9483
9484 @item n
9485 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9486 @var{blocksize}, which is the width and height of the processed blocks.
9487
9488 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9489 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9490 on the speed processing. Also, a larger block size does not necessarily means a
9491 better de-noising.
9492 @end table
9493
9494 @subsection Examples
9495
9496 Apply a denoise with a @option{sigma} of @code{4.5}:
9497 @example
9498 dctdnoiz=4.5
9499 @end example
9500
9501 The same operation can be achieved using the expression system:
9502 @example
9503 dctdnoiz=e='gte(c, 4.5*3)'
9504 @end example
9505
9506 Violent denoise using a block size of @code{16x16}:
9507 @example
9508 dctdnoiz=15:n=4
9509 @end example
9510
9511 @section deband
9512
9513 Remove banding artifacts from input video.
9514 It works by replacing banded pixels with average value of referenced pixels.
9515
9516 The filter accepts the following options:
9517
9518 @table @option
9519 @item 1thr
9520 @item 2thr
9521 @item 3thr
9522 @item 4thr
9523 Set banding detection threshold for each plane. Default is 0.02.
9524 Valid range is 0.00003 to 0.5.
9525 If difference between current pixel and reference pixel is less than threshold,
9526 it will be considered as banded.
9527
9528 @item range, r
9529 Banding detection range in pixels. Default is 16. If positive, random number
9530 in range 0 to set value will be used. If negative, exact absolute value
9531 will be used.
9532 The range defines square of four pixels around current pixel.
9533
9534 @item direction, d
9535 Set direction in radians from which four pixel will be compared. If positive,
9536 random direction from 0 to set direction will be picked. If negative, exact of
9537 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9538 will pick only pixels on same row and -PI/2 will pick only pixels on same
9539 column.
9540
9541 @item blur, b
9542 If enabled, current pixel is compared with average value of all four
9543 surrounding pixels. The default is enabled. If disabled current pixel is
9544 compared with all four surrounding pixels. The pixel is considered banded
9545 if only all four differences with surrounding pixels are less than threshold.
9546
9547 @item coupling, c
9548 If enabled, current pixel is changed if and only if all pixel components are banded,
9549 e.g. banding detection threshold is triggered for all color components.
9550 The default is disabled.
9551 @end table
9552
9553 @subsection Commands
9554
9555 This filter supports the all above options as @ref{commands}.
9556
9557 @section deblock
9558
9559 Remove blocking artifacts from input video.
9560
9561 The filter accepts the following options:
9562
9563 @table @option
9564 @item filter
9565 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9566 This controls what kind of deblocking is applied.
9567
9568 @item block
9569 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9570
9571 @item alpha
9572 @item beta
9573 @item gamma
9574 @item delta
9575 Set blocking detection thresholds. Allowed range is 0 to 1.
9576 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9577 Using higher threshold gives more deblocking strength.
9578 Setting @var{alpha} controls threshold detection at exact edge of block.
9579 Remaining options controls threshold detection near the edge. Each one for
9580 below/above or left/right. Setting any of those to @var{0} disables
9581 deblocking.
9582
9583 @item planes
9584 Set planes to filter. Default is to filter all available planes.
9585 @end table
9586
9587 @subsection Examples
9588
9589 @itemize
9590 @item
9591 Deblock using weak filter and block size of 4 pixels.
9592 @example
9593 deblock=filter=weak:block=4
9594 @end example
9595
9596 @item
9597 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9598 deblocking more edges.
9599 @example
9600 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9601 @end example
9602
9603 @item
9604 Similar as above, but filter only first plane.
9605 @example
9606 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9607 @end example
9608
9609 @item
9610 Similar as above, but filter only second and third plane.
9611 @example
9612 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9613 @end example
9614 @end itemize
9615
9616 @subsection Commands
9617
9618 This filter supports the all above options as @ref{commands}.
9619
9620 @anchor{decimate}
9621 @section decimate
9622
9623 Drop duplicated frames at regular intervals.
9624
9625 The filter accepts the following options:
9626
9627 @table @option
9628 @item cycle
9629 Set the number of frames from which one will be dropped. Setting this to
9630 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9631 Default is @code{5}.
9632
9633 @item dupthresh
9634 Set the threshold for duplicate detection. If the difference metric for a frame
9635 is less than or equal to this value, then it is declared as duplicate. Default
9636 is @code{1.1}
9637
9638 @item scthresh
9639 Set scene change threshold. Default is @code{15}.
9640
9641 @item blockx
9642 @item blocky
9643 Set the size of the x and y-axis blocks used during metric calculations.
9644 Larger blocks give better noise suppression, but also give worse detection of
9645 small movements. Must be a power of two. Default is @code{32}.
9646
9647 @item ppsrc
9648 Mark main input as a pre-processed input and activate clean source input
9649 stream. This allows the input to be pre-processed with various filters to help
9650 the metrics calculation while keeping the frame selection lossless. When set to
9651 @code{1}, the first stream is for the pre-processed input, and the second
9652 stream is the clean source from where the kept frames are chosen. Default is
9653 @code{0}.
9654
9655 @item chroma
9656 Set whether or not chroma is considered in the metric calculations. Default is
9657 @code{1}.
9658 @end table
9659
9660 @section deconvolve
9661
9662 Apply 2D deconvolution of video stream in frequency domain using second stream
9663 as impulse.
9664
9665 The filter accepts the following options:
9666
9667 @table @option
9668 @item planes
9669 Set which planes to process.
9670
9671 @item impulse
9672 Set which impulse video frames will be processed, can be @var{first}
9673 or @var{all}. Default is @var{all}.
9674
9675 @item noise
9676 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9677 and height are not same and not power of 2 or if stream prior to convolving
9678 had noise.
9679 @end table
9680
9681 The @code{deconvolve} filter also supports the @ref{framesync} options.
9682
9683 @section dedot
9684
9685 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9686
9687 It accepts the following options:
9688
9689 @table @option
9690 @item m
9691 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9692 @var{rainbows} for cross-color reduction.
9693
9694 @item lt
9695 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9696
9697 @item tl
9698 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9699
9700 @item tc
9701 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9702
9703 @item ct
9704 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9705 @end table
9706
9707 @section deflate
9708
9709 Apply deflate effect to the video.
9710
9711 This filter replaces the pixel by the local(3x3) average by taking into account
9712 only values lower than the pixel.
9713
9714 It accepts the following options:
9715
9716 @table @option
9717 @item threshold0
9718 @item threshold1
9719 @item threshold2
9720 @item threshold3
9721 Limit the maximum change for each plane, default is 65535.
9722 If 0, plane will remain unchanged.
9723 @end table
9724
9725 @subsection Commands
9726
9727 This filter supports the all above options as @ref{commands}.
9728
9729 @section deflicker
9730
9731 Remove temporal frame luminance variations.
9732
9733 It accepts the following options:
9734
9735 @table @option
9736 @item size, s
9737 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9738
9739 @item mode, m
9740 Set averaging mode to smooth temporal luminance variations.
9741
9742 Available values are:
9743 @table @samp
9744 @item am
9745 Arithmetic mean
9746
9747 @item gm
9748 Geometric mean
9749
9750 @item hm
9751 Harmonic mean
9752
9753 @item qm
9754 Quadratic mean
9755
9756 @item cm
9757 Cubic mean
9758
9759 @item pm
9760 Power mean
9761
9762 @item median
9763 Median
9764 @end table
9765
9766 @item bypass
9767 Do not actually modify frame. Useful when one only wants metadata.
9768 @end table
9769
9770 @section dejudder
9771
9772 Remove judder produced by partially interlaced telecined content.
9773
9774 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9775 source was partially telecined content then the output of @code{pullup,dejudder}
9776 will have a variable frame rate. May change the recorded frame rate of the
9777 container. Aside from that change, this filter will not affect constant frame
9778 rate video.
9779
9780 The option available in this filter is:
9781 @table @option
9782
9783 @item cycle
9784 Specify the length of the window over which the judder repeats.
9785
9786 Accepts any integer greater than 1. Useful values are:
9787 @table @samp
9788
9789 @item 4
9790 If the original was telecined from 24 to 30 fps (Film to NTSC).
9791
9792 @item 5
9793 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9794
9795 @item 20
9796 If a mixture of the two.
9797 @end table
9798
9799 The default is @samp{4}.
9800 @end table
9801
9802 @section delogo
9803
9804 Suppress a TV station logo by a simple interpolation of the surrounding
9805 pixels. Just set a rectangle covering the logo and watch it disappear
9806 (and sometimes something even uglier appear - your mileage may vary).
9807
9808 It accepts the following parameters:
9809 @table @option
9810
9811 @item x
9812 @item y
9813 Specify the top left corner coordinates of the logo. They must be
9814 specified.
9815
9816 @item w
9817 @item h
9818 Specify the width and height of the logo to clear. They must be
9819 specified.
9820
9821 @item show
9822 When set to 1, a green rectangle is drawn on the screen to simplify
9823 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9824 The default value is 0.
9825
9826 The rectangle is drawn on the outermost pixels which will be (partly)
9827 replaced with interpolated values. The values of the next pixels
9828 immediately outside this rectangle in each direction will be used to
9829 compute the interpolated pixel values inside the rectangle.
9830
9831 @end table
9832
9833 @subsection Examples
9834
9835 @itemize
9836 @item
9837 Set a rectangle covering the area with top left corner coordinates 0,0
9838 and size 100x77:
9839 @example
9840 delogo=x=0:y=0:w=100:h=77
9841 @end example
9842
9843 @end itemize
9844
9845 @anchor{derain}
9846 @section derain
9847
9848 Remove the rain in the input image/video by applying the derain methods based on
9849 convolutional neural networks. Supported models:
9850
9851 @itemize
9852 @item
9853 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9854 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9855 @end itemize
9856
9857 Training as well as model generation scripts are provided in
9858 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9859
9860 Native model files (.model) can be generated from TensorFlow model
9861 files (.pb) by using tools/python/convert.py
9862
9863 The filter accepts the following options:
9864
9865 @table @option
9866 @item filter_type
9867 Specify which filter to use. This option accepts the following values:
9868
9869 @table @samp
9870 @item derain
9871 Derain filter. To conduct derain filter, you need to use a derain model.
9872
9873 @item dehaze
9874 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9875 @end table
9876 Default value is @samp{derain}.
9877
9878 @item dnn_backend
9879 Specify which DNN backend to use for model loading and execution. This option accepts
9880 the following values:
9881
9882 @table @samp
9883 @item native
9884 Native implementation of DNN loading and execution.
9885
9886 @item tensorflow
9887 TensorFlow backend. To enable this backend you
9888 need to install the TensorFlow for C library (see
9889 @url{https://www.tensorflow.org/install/lang_c}) and configure FFmpeg with
9890 @code{--enable-libtensorflow}
9891 @end table
9892 Default value is @samp{native}.
9893
9894 @item model
9895 Set path to model file specifying network architecture and its parameters.
9896 Note that different backends use different file formats. TensorFlow and native
9897 backend can load files for only its format.
9898 @end table
9899
9900 It can also be finished with @ref{dnn_processing} filter.
9901
9902 @section deshake
9903
9904 Attempt to fix small changes in horizontal and/or vertical shift. This
9905 filter helps remove camera shake from hand-holding a camera, bumping a
9906 tripod, moving on a vehicle, etc.
9907
9908 The filter accepts the following options:
9909
9910 @table @option
9911
9912 @item x
9913 @item y
9914 @item w
9915 @item h
9916 Specify a rectangular area where to limit the search for motion
9917 vectors.
9918 If desired the search for motion vectors can be limited to a
9919 rectangular area of the frame defined by its top left corner, width
9920 and height. These parameters have the same meaning as the drawbox
9921 filter which can be used to visualise the position of the bounding
9922 box.
9923
9924 This is useful when simultaneous movement of subjects within the frame
9925 might be confused for camera motion by the motion vector search.
9926
9927 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9928 then the full frame is used. This allows later options to be set
9929 without specifying the bounding box for the motion vector search.
9930
9931 Default - search the whole frame.
9932
9933 @item rx
9934 @item ry
9935 Specify the maximum extent of movement in x and y directions in the
9936 range 0-64 pixels. Default 16.
9937
9938 @item edge
9939 Specify how to generate pixels to fill blanks at the edge of the
9940 frame. Available values are:
9941 @table @samp
9942 @item blank, 0
9943 Fill zeroes at blank locations
9944 @item original, 1
9945 Original image at blank locations
9946 @item clamp, 2
9947 Extruded edge value at blank locations
9948 @item mirror, 3
9949 Mirrored edge at blank locations
9950 @end table
9951 Default value is @samp{mirror}.
9952
9953 @item blocksize
9954 Specify the blocksize to use for motion search. Range 4-128 pixels,
9955 default 8.
9956
9957 @item contrast
9958 Specify the contrast threshold for blocks. Only blocks with more than
9959 the specified contrast (difference between darkest and lightest
9960 pixels) will be considered. Range 1-255, default 125.
9961
9962 @item search
9963 Specify the search strategy. Available values are:
9964 @table @samp
9965 @item exhaustive, 0
9966 Set exhaustive search
9967 @item less, 1
9968 Set less exhaustive search.
9969 @end table
9970 Default value is @samp{exhaustive}.
9971
9972 @item filename
9973 If set then a detailed log of the motion search is written to the
9974 specified file.
9975
9976 @end table
9977
9978 @section despill
9979
9980 Remove unwanted contamination of foreground colors, caused by reflected color of
9981 greenscreen or bluescreen.
9982
9983 This filter accepts the following options:
9984
9985 @table @option
9986 @item type
9987 Set what type of despill to use.
9988
9989 @item mix
9990 Set how spillmap will be generated.
9991
9992 @item expand
9993 Set how much to get rid of still remaining spill.
9994
9995 @item red
9996 Controls amount of red in spill area.
9997
9998 @item green
9999 Controls amount of green in spill area.
10000 Should be -1 for greenscreen.
10001
10002 @item blue
10003 Controls amount of blue in spill area.
10004 Should be -1 for bluescreen.
10005
10006 @item brightness
10007 Controls brightness of spill area, preserving colors.
10008
10009 @item alpha
10010 Modify alpha from generated spillmap.
10011 @end table
10012
10013 @subsection Commands
10014
10015 This filter supports the all above options as @ref{commands}.
10016
10017 @section detelecine
10018
10019 Apply an exact inverse of the telecine operation. It requires a predefined
10020 pattern specified using the pattern option which must be the same as that passed
10021 to the telecine filter.
10022
10023 This filter accepts the following options:
10024
10025 @table @option
10026 @item first_field
10027 @table @samp
10028 @item top, t
10029 top field first
10030 @item bottom, b
10031 bottom field first
10032 The default value is @code{top}.
10033 @end table
10034
10035 @item pattern
10036 A string of numbers representing the pulldown pattern you wish to apply.
10037 The default value is @code{23}.
10038
10039 @item start_frame
10040 A number representing position of the first frame with respect to the telecine
10041 pattern. This is to be used if the stream is cut. The default value is @code{0}.
10042 @end table
10043
10044 @section dilation
10045
10046 Apply dilation effect to the video.
10047
10048 This filter replaces the pixel by the local(3x3) maximum.
10049
10050 It accepts the following options:
10051
10052 @table @option
10053 @item threshold0
10054 @item threshold1
10055 @item threshold2
10056 @item threshold3
10057 Limit the maximum change for each plane, default is 65535.
10058 If 0, plane will remain unchanged.
10059
10060 @item coordinates
10061 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10062 pixels are used.
10063
10064 Flags to local 3x3 coordinates maps like this:
10065
10066     1 2 3
10067     4   5
10068     6 7 8
10069 @end table
10070
10071 @subsection Commands
10072
10073 This filter supports the all above options as @ref{commands}.
10074
10075 @section displace
10076
10077 Displace pixels as indicated by second and third input stream.
10078
10079 It takes three input streams and outputs one stream, the first input is the
10080 source, and second and third input are displacement maps.
10081
10082 The second input specifies how much to displace pixels along the
10083 x-axis, while the third input specifies how much to displace pixels
10084 along the y-axis.
10085 If one of displacement map streams terminates, last frame from that
10086 displacement map will be used.
10087
10088 Note that once generated, displacements maps can be reused over and over again.
10089
10090 A description of the accepted options follows.
10091
10092 @table @option
10093 @item edge
10094 Set displace behavior for pixels that are out of range.
10095
10096 Available values are:
10097 @table @samp
10098 @item blank
10099 Missing pixels are replaced by black pixels.
10100
10101 @item smear
10102 Adjacent pixels will spread out to replace missing pixels.
10103
10104 @item wrap
10105 Out of range pixels are wrapped so they point to pixels of other side.
10106
10107 @item mirror
10108 Out of range pixels will be replaced with mirrored pixels.
10109 @end table
10110 Default is @samp{smear}.
10111
10112 @end table
10113
10114 @subsection Examples
10115
10116 @itemize
10117 @item
10118 Add ripple effect to rgb input of video size hd720:
10119 @example
10120 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
10121 @end example
10122
10123 @item
10124 Add wave effect to rgb input of video size hd720:
10125 @example
10126 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
10127 @end example
10128 @end itemize
10129
10130 @section dnn_detect
10131
10132 Do object detection with deep neural networks.
10133
10134 The filter accepts the following options:
10135
10136 @table @option
10137 @item dnn_backend
10138 Specify which DNN backend to use for model loading and execution. This option accepts
10139 only openvino now, tensorflow backends will be added.
10140
10141 @item model
10142 Set path to model file specifying network architecture and its parameters.
10143 Note that different backends use different file formats.
10144
10145 @item input
10146 Set the input name of the dnn network.
10147
10148 @item output
10149 Set the output name of the dnn network.
10150
10151 @item confidence
10152 Set the confidence threshold (default: 0.5).
10153
10154 @item labels
10155 Set path to label file specifying the mapping between label id and name.
10156 Each label name is written in one line, tailing spaces and empty lines are skipped.
10157 The first line is the name of label id 0 (usually it is 'background'),
10158 and the second line is the name of label id 1, etc.
10159 The label id is considered as name if the label file is not provided.
10160
10161 @item backend_configs
10162 Set the configs to be passed into backend
10163
10164 @item async
10165 use DNN async execution if set (default: set),
10166 roll back to sync execution if the backend does not support async.
10167
10168 @end table
10169
10170 @anchor{dnn_processing}
10171 @section dnn_processing
10172
10173 Do image processing with deep neural networks. It works together with another filter
10174 which converts the pixel format of the Frame to what the dnn network requires.
10175
10176 The filter accepts the following options:
10177
10178 @table @option
10179 @item dnn_backend
10180 Specify which DNN backend to use for model loading and execution. This option accepts
10181 the following values:
10182
10183 @table @samp
10184 @item native
10185 Native implementation of DNN loading and execution.
10186
10187 @item tensorflow
10188 TensorFlow backend. To enable this backend you
10189 need to install the TensorFlow for C library (see
10190 @url{https://www.tensorflow.org/install/lang_c}) and configure FFmpeg with
10191 @code{--enable-libtensorflow}
10192
10193 @item openvino
10194 OpenVINO backend. To enable this backend you
10195 need to build and install the OpenVINO for C library (see
10196 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
10197 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
10198 be needed if the header files and libraries are not installed into system path)
10199
10200 @end table
10201
10202 Default value is @samp{native}.
10203
10204 @item model
10205 Set path to model file specifying network architecture and its parameters.
10206 Note that different backends use different file formats. TensorFlow, OpenVINO and native
10207 backend can load files for only its format.
10208
10209 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
10210
10211 @item input
10212 Set the input name of the dnn network.
10213
10214 @item output
10215 Set the output name of the dnn network.
10216
10217 @item backend_configs
10218 Set the configs to be passed into backend
10219
10220 For tensorflow backend, you can set its configs with @option{sess_config} options,
10221 please use tools/python/tf_sess_config.py to get the configs of TensorFlow backend for your system.
10222
10223 @item async
10224 use DNN async execution if set (default: set),
10225 roll back to sync execution if the backend does not support async.
10226
10227 @end table
10228
10229 @subsection Examples
10230
10231 @itemize
10232 @item
10233 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
10234 @example
10235 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
10236 @end example
10237
10238 @item
10239 Halve the pixel value of the frame with format gray32f:
10240 @example
10241 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
10242 @end example
10243
10244 @item
10245 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
10246 @example
10247 ./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
10248 @end example
10249
10250 @item
10251 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported),
10252 please use tools/python/tf_sess_config.py to get the configs of TensorFlow backend for your system.
10253 @example
10254 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y:backend_configs=sess_config=0x10022805320e09cdccccccccccec3f20012a01303801 -y tmp.espcn.jpg
10255 @end example
10256
10257 @end itemize
10258
10259 @section drawbox
10260
10261 Draw a colored box on the input image.
10262
10263 It accepts the following parameters:
10264
10265 @table @option
10266 @item x
10267 @item y
10268 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10269
10270 @item width, w
10271 @item height, h
10272 The expressions which specify the width and height of the box; if 0 they are interpreted as
10273 the input width and height. It defaults to 0.
10274
10275 @item color, c
10276 Specify the color of the box to write. For the general syntax of this option,
10277 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10278 value @code{invert} is used, the box edge color is the same as the
10279 video with inverted luma.
10280
10281 @item thickness, t
10282 The expression which sets the thickness of the box edge.
10283 A value of @code{fill} will create a filled box. Default value is @code{3}.
10284
10285 See below for the list of accepted constants.
10286
10287 @item replace
10288 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10289 will overwrite the video's color and alpha pixels.
10290 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10291 @end table
10292
10293 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10294 following constants:
10295
10296 @table @option
10297 @item dar
10298 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10299
10300 @item hsub
10301 @item vsub
10302 horizontal and vertical chroma subsample values. For example for the
10303 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10304
10305 @item in_h, ih
10306 @item in_w, iw
10307 The input width and height.
10308
10309 @item sar
10310 The input sample aspect ratio.
10311
10312 @item x
10313 @item y
10314 The x and y offset coordinates where the box is drawn.
10315
10316 @item w
10317 @item h
10318 The width and height of the drawn box.
10319
10320 @item t
10321 The thickness of the drawn box.
10322
10323 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10324 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10325
10326 @end table
10327
10328 @subsection Examples
10329
10330 @itemize
10331 @item
10332 Draw a black box around the edge of the input image:
10333 @example
10334 drawbox
10335 @end example
10336
10337 @item
10338 Draw a box with color red and an opacity of 50%:
10339 @example
10340 drawbox=10:20:200:60:red@@0.5
10341 @end example
10342
10343 The previous example can be specified as:
10344 @example
10345 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10346 @end example
10347
10348 @item
10349 Fill the box with pink color:
10350 @example
10351 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10352 @end example
10353
10354 @item
10355 Draw a 2-pixel red 2.40:1 mask:
10356 @example
10357 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
10358 @end example
10359 @end itemize
10360
10361 @subsection Commands
10362 This filter supports same commands as options.
10363 The command accepts the same syntax of the corresponding option.
10364
10365 If the specified expression is not valid, it is kept at its current
10366 value.
10367
10368 @anchor{drawgraph}
10369 @section drawgraph
10370 Draw a graph using input video metadata.
10371
10372 It accepts the following parameters:
10373
10374 @table @option
10375 @item m1
10376 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10377
10378 @item fg1
10379 Set 1st foreground color expression.
10380
10381 @item m2
10382 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10383
10384 @item fg2
10385 Set 2nd foreground color expression.
10386
10387 @item m3
10388 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10389
10390 @item fg3
10391 Set 3rd foreground color expression.
10392
10393 @item m4
10394 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10395
10396 @item fg4
10397 Set 4th foreground color expression.
10398
10399 @item min
10400 Set minimal value of metadata value.
10401
10402 @item max
10403 Set maximal value of metadata value.
10404
10405 @item bg
10406 Set graph background color. Default is white.
10407
10408 @item mode
10409 Set graph mode.
10410
10411 Available values for mode is:
10412 @table @samp
10413 @item bar
10414 @item dot
10415 @item line
10416 @end table
10417
10418 Default is @code{line}.
10419
10420 @item slide
10421 Set slide mode.
10422
10423 Available values for slide is:
10424 @table @samp
10425 @item frame
10426 Draw new frame when right border is reached.
10427
10428 @item replace
10429 Replace old columns with new ones.
10430
10431 @item scroll
10432 Scroll from right to left.
10433
10434 @item rscroll
10435 Scroll from left to right.
10436
10437 @item picture
10438 Draw single picture.
10439 @end table
10440
10441 Default is @code{frame}.
10442
10443 @item size
10444 Set size of graph video. For the syntax of this option, check the
10445 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10446 The default value is @code{900x256}.
10447
10448 @item rate, r
10449 Set the output frame rate. Default value is @code{25}.
10450
10451 The foreground color expressions can use the following variables:
10452 @table @option
10453 @item MIN
10454 Minimal value of metadata value.
10455
10456 @item MAX
10457 Maximal value of metadata value.
10458
10459 @item VAL
10460 Current metadata key value.
10461 @end table
10462
10463 The color is defined as 0xAABBGGRR.
10464 @end table
10465
10466 Example using metadata from @ref{signalstats} filter:
10467 @example
10468 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10469 @end example
10470
10471 Example using metadata from @ref{ebur128} filter:
10472 @example
10473 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10474 @end example
10475
10476 @section drawgrid
10477
10478 Draw a grid on the input image.
10479
10480 It accepts the following parameters:
10481
10482 @table @option
10483 @item x
10484 @item y
10485 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10486
10487 @item width, w
10488 @item height, h
10489 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10490 input width and height, respectively, minus @code{thickness}, so image gets
10491 framed. Default to 0.
10492
10493 @item color, c
10494 Specify the color of the grid. For the general syntax of this option,
10495 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10496 value @code{invert} is used, the grid color is the same as the
10497 video with inverted luma.
10498
10499 @item thickness, t
10500 The expression which sets the thickness of the grid line. Default value is @code{1}.
10501
10502 See below for the list of accepted constants.
10503
10504 @item replace
10505 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10506 will overwrite the video's color and alpha pixels.
10507 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10508 @end table
10509
10510 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10511 following constants:
10512
10513 @table @option
10514 @item dar
10515 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10516
10517 @item hsub
10518 @item vsub
10519 horizontal and vertical chroma subsample values. For example for the
10520 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10521
10522 @item in_h, ih
10523 @item in_w, iw
10524 The input grid cell width and height.
10525
10526 @item sar
10527 The input sample aspect ratio.
10528
10529 @item x
10530 @item y
10531 The x and y coordinates of some point of grid intersection (meant to configure offset).
10532
10533 @item w
10534 @item h
10535 The width and height of the drawn cell.
10536
10537 @item t
10538 The thickness of the drawn cell.
10539
10540 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10541 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10542
10543 @end table
10544
10545 @subsection Examples
10546
10547 @itemize
10548 @item
10549 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10550 @example
10551 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10552 @end example
10553
10554 @item
10555 Draw a white 3x3 grid with an opacity of 50%:
10556 @example
10557 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10558 @end example
10559 @end itemize
10560
10561 @subsection Commands
10562 This filter supports same commands as options.
10563 The command accepts the same syntax of the corresponding option.
10564
10565 If the specified expression is not valid, it is kept at its current
10566 value.
10567
10568 @anchor{drawtext}
10569 @section drawtext
10570
10571 Draw a text string or text from a specified file on top of a video, using the
10572 libfreetype library.
10573
10574 To enable compilation of this filter, you need to configure FFmpeg with
10575 @code{--enable-libfreetype}.
10576 To enable default font fallback and the @var{font} option you need to
10577 configure FFmpeg with @code{--enable-libfontconfig}.
10578 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10579 @code{--enable-libfribidi}.
10580
10581 @subsection Syntax
10582
10583 It accepts the following parameters:
10584
10585 @table @option
10586
10587 @item box
10588 Used to draw a box around text using the background color.
10589 The value must be either 1 (enable) or 0 (disable).
10590 The default value of @var{box} is 0.
10591
10592 @item boxborderw
10593 Set the width of the border to be drawn around the box using @var{boxcolor}.
10594 The default value of @var{boxborderw} is 0.
10595
10596 @item boxcolor
10597 The color to be used for drawing box around text. For the syntax of this
10598 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10599
10600 The default value of @var{boxcolor} is "white".
10601
10602 @item line_spacing
10603 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10604 The default value of @var{line_spacing} is 0.
10605
10606 @item borderw
10607 Set the width of the border to be drawn around the text using @var{bordercolor}.
10608 The default value of @var{borderw} is 0.
10609
10610 @item bordercolor
10611 Set the color to be used for drawing border around text. For the syntax of this
10612 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10613
10614 The default value of @var{bordercolor} is "black".
10615
10616 @item expansion
10617 Select how the @var{text} is expanded. Can be either @code{none},
10618 @code{strftime} (deprecated) or
10619 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10620 below for details.
10621
10622 @item basetime
10623 Set a start time for the count. Value is in microseconds. Only applied
10624 in the deprecated strftime expansion mode. To emulate in normal expansion
10625 mode use the @code{pts} function, supplying the start time (in seconds)
10626 as the second argument.
10627
10628 @item fix_bounds
10629 If true, check and fix text coords to avoid clipping.
10630
10631 @item fontcolor
10632 The color to be used for drawing fonts. For the syntax of this option, check
10633 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10634
10635 The default value of @var{fontcolor} is "black".
10636
10637 @item fontcolor_expr
10638 String which is expanded the same way as @var{text} to obtain dynamic
10639 @var{fontcolor} value. By default this option has empty value and is not
10640 processed. When this option is set, it overrides @var{fontcolor} option.
10641
10642 @item font
10643 The font family to be used for drawing text. By default Sans.
10644
10645 @item fontfile
10646 The font file to be used for drawing text. The path must be included.
10647 This parameter is mandatory if the fontconfig support is disabled.
10648
10649 @item alpha
10650 Draw the text applying alpha blending. The value can
10651 be a number between 0.0 and 1.0.
10652 The expression accepts the same variables @var{x, y} as well.
10653 The default value is 1.
10654 Please see @var{fontcolor_expr}.
10655
10656 @item fontsize
10657 The font size to be used for drawing text.
10658 The default value of @var{fontsize} is 16.
10659
10660 @item text_shaping
10661 If set to 1, attempt to shape the text (for example, reverse the order of
10662 right-to-left text and join Arabic characters) before drawing it.
10663 Otherwise, just draw the text exactly as given.
10664 By default 1 (if supported).
10665
10666 @item ft_load_flags
10667 The flags to be used for loading the fonts.
10668
10669 The flags map the corresponding flags supported by libfreetype, and are
10670 a combination of the following values:
10671 @table @var
10672 @item default
10673 @item no_scale
10674 @item no_hinting
10675 @item render
10676 @item no_bitmap
10677 @item vertical_layout
10678 @item force_autohint
10679 @item crop_bitmap
10680 @item pedantic
10681 @item ignore_global_advance_width
10682 @item no_recurse
10683 @item ignore_transform
10684 @item monochrome
10685 @item linear_design
10686 @item no_autohint
10687 @end table
10688
10689 Default value is "default".
10690
10691 For more information consult the documentation for the FT_LOAD_*
10692 libfreetype flags.
10693
10694 @item shadowcolor
10695 The color to be used for drawing a shadow behind the drawn text. For the
10696 syntax of this option, check the @ref{color syntax,,"Color" section in the
10697 ffmpeg-utils manual,ffmpeg-utils}.
10698
10699 The default value of @var{shadowcolor} is "black".
10700
10701 @item shadowx
10702 @item shadowy
10703 The x and y offsets for the text shadow position with respect to the
10704 position of the text. They can be either positive or negative
10705 values. The default value for both is "0".
10706
10707 @item start_number
10708 The starting frame number for the n/frame_num variable. The default value
10709 is "0".
10710
10711 @item tabsize
10712 The size in number of spaces to use for rendering the tab.
10713 Default value is 4.
10714
10715 @item timecode
10716 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10717 format. It can be used with or without text parameter. @var{timecode_rate}
10718 option must be specified.
10719
10720 @item timecode_rate, rate, r
10721 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10722 integer. Minimum value is "1".
10723 Drop-frame timecode is supported for frame rates 30 & 60.
10724
10725 @item tc24hmax
10726 If set to 1, the output of the timecode option will wrap around at 24 hours.
10727 Default is 0 (disabled).
10728
10729 @item text
10730 The text string to be drawn. The text must be a sequence of UTF-8
10731 encoded characters.
10732 This parameter is mandatory if no file is specified with the parameter
10733 @var{textfile}.
10734
10735 @item textfile
10736 A text file containing text to be drawn. The text must be a sequence
10737 of UTF-8 encoded characters.
10738
10739 This parameter is mandatory if no text string is specified with the
10740 parameter @var{text}.
10741
10742 If both @var{text} and @var{textfile} are specified, an error is thrown.
10743
10744 @item reload
10745 If set to 1, the @var{textfile} will be reloaded before each frame.
10746 Be sure to update it atomically, or it may be read partially, or even fail.
10747
10748 @item x
10749 @item y
10750 The expressions which specify the offsets where text will be drawn
10751 within the video frame. They are relative to the top/left border of the
10752 output image.
10753
10754 The default value of @var{x} and @var{y} is "0".
10755
10756 See below for the list of accepted constants and functions.
10757 @end table
10758
10759 The parameters for @var{x} and @var{y} are expressions containing the
10760 following constants and functions:
10761
10762 @table @option
10763 @item dar
10764 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10765
10766 @item hsub
10767 @item vsub
10768 horizontal and vertical chroma subsample values. For example for the
10769 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10770
10771 @item line_h, lh
10772 the height of each text line
10773
10774 @item main_h, h, H
10775 the input height
10776
10777 @item main_w, w, W
10778 the input width
10779
10780 @item max_glyph_a, ascent
10781 the maximum distance from the baseline to the highest/upper grid
10782 coordinate used to place a glyph outline point, for all the rendered
10783 glyphs.
10784 It is a positive value, due to the grid's orientation with the Y axis
10785 upwards.
10786
10787 @item max_glyph_d, descent
10788 the maximum distance from the baseline to the lowest grid coordinate
10789 used to place a glyph outline point, for all the rendered glyphs.
10790 This is a negative value, due to the grid's orientation, with the Y axis
10791 upwards.
10792
10793 @item max_glyph_h
10794 maximum glyph height, that is the maximum height for all the glyphs
10795 contained in the rendered text, it is equivalent to @var{ascent} -
10796 @var{descent}.
10797
10798 @item max_glyph_w
10799 maximum glyph width, that is the maximum width for all the glyphs
10800 contained in the rendered text
10801
10802 @item n
10803 the number of input frame, starting from 0
10804
10805 @item rand(min, max)
10806 return a random number included between @var{min} and @var{max}
10807
10808 @item sar
10809 The input sample aspect ratio.
10810
10811 @item t
10812 timestamp expressed in seconds, NAN if the input timestamp is unknown
10813
10814 @item text_h, th
10815 the height of the rendered text
10816
10817 @item text_w, tw
10818 the width of the rendered text
10819
10820 @item x
10821 @item y
10822 the x and y offset coordinates where the text is drawn.
10823
10824 These parameters allow the @var{x} and @var{y} expressions to refer
10825 to each other, so you can for example specify @code{y=x/dar}.
10826
10827 @item pict_type
10828 A one character description of the current frame's picture type.
10829
10830 @item pkt_pos
10831 The current packet's position in the input file or stream
10832 (in bytes, from the start of the input). A value of -1 indicates
10833 this info is not available.
10834
10835 @item pkt_duration
10836 The current packet's duration, in seconds.
10837
10838 @item pkt_size
10839 The current packet's size (in bytes).
10840 @end table
10841
10842 @anchor{drawtext_expansion}
10843 @subsection Text expansion
10844
10845 If @option{expansion} is set to @code{strftime},
10846 the filter recognizes strftime() sequences in the provided text and
10847 expands them accordingly. Check the documentation of strftime(). This
10848 feature is deprecated.
10849
10850 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10851
10852 If @option{expansion} is set to @code{normal} (which is the default),
10853 the following expansion mechanism is used.
10854
10855 The backslash character @samp{\}, followed by any character, always expands to
10856 the second character.
10857
10858 Sequences of the form @code{%@{...@}} are expanded. The text between the
10859 braces is a function name, possibly followed by arguments separated by ':'.
10860 If the arguments contain special characters or delimiters (':' or '@}'),
10861 they should be escaped.
10862
10863 Note that they probably must also be escaped as the value for the
10864 @option{text} option in the filter argument string and as the filter
10865 argument in the filtergraph description, and possibly also for the shell,
10866 that makes up to four levels of escaping; using a text file avoids these
10867 problems.
10868
10869 The following functions are available:
10870
10871 @table @command
10872
10873 @item expr, e
10874 The expression evaluation result.
10875
10876 It must take one argument specifying the expression to be evaluated,
10877 which accepts the same constants and functions as the @var{x} and
10878 @var{y} values. Note that not all constants should be used, for
10879 example the text size is not known when evaluating the expression, so
10880 the constants @var{text_w} and @var{text_h} will have an undefined
10881 value.
10882
10883 @item expr_int_format, eif
10884 Evaluate the expression's value and output as formatted integer.
10885
10886 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10887 The second argument specifies the output format. Allowed values are @samp{x},
10888 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10889 @code{printf} function.
10890 The third parameter is optional and sets the number of positions taken by the output.
10891 It can be used to add padding with zeros from the left.
10892
10893 @item gmtime
10894 The time at which the filter is running, expressed in UTC.
10895 It can accept an argument: a strftime() format string.
10896
10897 @item localtime
10898 The time at which the filter is running, expressed in the local time zone.
10899 It can accept an argument: a strftime() format string.
10900
10901 @item metadata
10902 Frame metadata. Takes one or two arguments.
10903
10904 The first argument is mandatory and specifies the metadata key.
10905
10906 The second argument is optional and specifies a default value, used when the
10907 metadata key is not found or empty.
10908
10909 Available metadata can be identified by inspecting entries
10910 starting with TAG included within each frame section
10911 printed by running @code{ffprobe -show_frames}.
10912
10913 String metadata generated in filters leading to
10914 the drawtext filter are also available.
10915
10916 @item n, frame_num
10917 The frame number, starting from 0.
10918
10919 @item pict_type
10920 A one character description of the current picture type.
10921
10922 @item pts
10923 The timestamp of the current frame.
10924 It can take up to three arguments.
10925
10926 The first argument is the format of the timestamp; it defaults to @code{flt}
10927 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10928 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10929 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10930 @code{localtime} stands for the timestamp of the frame formatted as
10931 local time zone time.
10932
10933 The second argument is an offset added to the timestamp.
10934
10935 If the format is set to @code{hms}, a third argument @code{24HH} may be
10936 supplied to present the hour part of the formatted timestamp in 24h format
10937 (00-23).
10938
10939 If the format is set to @code{localtime} or @code{gmtime},
10940 a third argument may be supplied: a strftime() format string.
10941 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10942 @end table
10943
10944 @subsection Commands
10945
10946 This filter supports altering parameters via commands:
10947 @table @option
10948 @item reinit
10949 Alter existing filter parameters.
10950
10951 Syntax for the argument is the same as for filter invocation, e.g.
10952
10953 @example
10954 fontsize=56:fontcolor=green:text='Hello World'
10955 @end example
10956
10957 Full filter invocation with sendcmd would look like this:
10958
10959 @example
10960 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10961 @end example
10962 @end table
10963
10964 If the entire argument can't be parsed or applied as valid values then the filter will
10965 continue with its existing parameters.
10966
10967 @subsection Examples
10968
10969 @itemize
10970 @item
10971 Draw "Test Text" with font FreeSerif, using the default values for the
10972 optional parameters.
10973
10974 @example
10975 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10976 @end example
10977
10978 @item
10979 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10980 and y=50 (counting from the top-left corner of the screen), text is
10981 yellow with a red box around it. Both the text and the box have an
10982 opacity of 20%.
10983
10984 @example
10985 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10986           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10987 @end example
10988
10989 Note that the double quotes are not necessary if spaces are not used
10990 within the parameter list.
10991
10992 @item
10993 Show the text at the center of the video frame:
10994 @example
10995 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10996 @end example
10997
10998 @item
10999 Show the text at a random position, switching to a new position every 30 seconds:
11000 @example
11001 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)"
11002 @end example
11003
11004 @item
11005 Show a text line sliding from right to left in the last row of the video
11006 frame. The file @file{LONG_LINE} is assumed to contain a single line
11007 with no newlines.
11008 @example
11009 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
11010 @end example
11011
11012 @item
11013 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
11014 @example
11015 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
11016 @end example
11017
11018 @item
11019 Draw a single green letter "g", at the center of the input video.
11020 The glyph baseline is placed at half screen height.
11021 @example
11022 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
11023 @end example
11024
11025 @item
11026 Show text for 1 second every 3 seconds:
11027 @example
11028 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
11029 @end example
11030
11031 @item
11032 Use fontconfig to set the font. Note that the colons need to be escaped.
11033 @example
11034 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
11035 @end example
11036
11037 @item
11038 Draw "Test Text" with font size dependent on height of the video.
11039 @example
11040 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
11041 @end example
11042
11043 @item
11044 Print the date of a real-time encoding (see strftime(3)):
11045 @example
11046 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
11047 @end example
11048
11049 @item
11050 Show text fading in and out (appearing/disappearing):
11051 @example
11052 #!/bin/sh
11053 DS=1.0 # display start
11054 DE=10.0 # display end
11055 FID=1.5 # fade in duration
11056 FOD=5 # fade out duration
11057 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 @}"
11058 @end example
11059
11060 @item
11061 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
11062 and the @option{fontsize} value are included in the @option{y} offset.
11063 @example
11064 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
11065 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
11066 @end example
11067
11068 @item
11069 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
11070 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
11071 must have option @option{-export_path_metadata 1} for the special metadata fields
11072 to be available for filters.
11073 @example
11074 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
11075 @end example
11076
11077 @end itemize
11078
11079 For more information about libfreetype, check:
11080 @url{http://www.freetype.org/}.
11081
11082 For more information about fontconfig, check:
11083 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
11084
11085 For more information about libfribidi, check:
11086 @url{http://fribidi.org/}.
11087
11088 @section edgedetect
11089
11090 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
11091
11092 The filter accepts the following options:
11093
11094 @table @option
11095 @item low
11096 @item high
11097 Set low and high threshold values used by the Canny thresholding
11098 algorithm.
11099
11100 The high threshold selects the "strong" edge pixels, which are then
11101 connected through 8-connectivity with the "weak" edge pixels selected
11102 by the low threshold.
11103
11104 @var{low} and @var{high} threshold values must be chosen in the range
11105 [0,1], and @var{low} should be lesser or equal to @var{high}.
11106
11107 Default value for @var{low} is @code{20/255}, and default value for @var{high}
11108 is @code{50/255}.
11109
11110 @item mode
11111 Define the drawing mode.
11112
11113 @table @samp
11114 @item wires
11115 Draw white/gray wires on black background.
11116
11117 @item colormix
11118 Mix the colors to create a paint/cartoon effect.
11119
11120 @item canny
11121 Apply Canny edge detector on all selected planes.
11122 @end table
11123 Default value is @var{wires}.
11124
11125 @item planes
11126 Select planes for filtering. By default all available planes are filtered.
11127 @end table
11128
11129 @subsection Examples
11130
11131 @itemize
11132 @item
11133 Standard edge detection with custom values for the hysteresis thresholding:
11134 @example
11135 edgedetect=low=0.1:high=0.4
11136 @end example
11137
11138 @item
11139 Painting effect without thresholding:
11140 @example
11141 edgedetect=mode=colormix:high=0
11142 @end example
11143 @end itemize
11144
11145 @section elbg
11146
11147 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
11148
11149 For each input image, the filter will compute the optimal mapping from
11150 the input to the output given the codebook length, that is the number
11151 of distinct output colors.
11152
11153 This filter accepts the following options.
11154
11155 @table @option
11156 @item codebook_length, l
11157 Set codebook length. The value must be a positive integer, and
11158 represents the number of distinct output colors. Default value is 256.
11159
11160 @item nb_steps, n
11161 Set the maximum number of iterations to apply for computing the optimal
11162 mapping. The higher the value the better the result and the higher the
11163 computation time. Default value is 1.
11164
11165 @item seed, s
11166 Set a random seed, must be an integer included between 0 and
11167 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
11168 will try to use a good random seed on a best effort basis.
11169
11170 @item pal8
11171 Set pal8 output pixel format. This option does not work with codebook
11172 length greater than 256. Default is disabled.
11173 @end table
11174
11175 @section entropy
11176
11177 Measure graylevel entropy in histogram of color channels of video frames.
11178
11179 It accepts the following parameters:
11180
11181 @table @option
11182 @item mode
11183 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
11184
11185 @var{diff} mode measures entropy of histogram delta values, absolute differences
11186 between neighbour histogram values.
11187 @end table
11188
11189 @section epx
11190 Apply the EPX magnification filter which is designed for pixel art.
11191
11192 It accepts the following option:
11193
11194 @table @option
11195 @item n
11196 Set the scaling dimension: @code{2} for @code{2xEPX}, @code{3} for
11197 @code{3xEPX}.
11198 Default is @code{3}.
11199 @end table
11200
11201 @section eq
11202 Set brightness, contrast, saturation and approximate gamma adjustment.
11203
11204 The filter accepts the following options:
11205
11206 @table @option
11207 @item contrast
11208 Set the contrast expression. The value must be a float value in range
11209 @code{-1000.0} to @code{1000.0}. The default value is "1".
11210
11211 @item brightness
11212 Set the brightness expression. The value must be a float value in
11213 range @code{-1.0} to @code{1.0}. The default value is "0".
11214
11215 @item saturation
11216 Set the saturation expression. The value must be a float in
11217 range @code{0.0} to @code{3.0}. The default value is "1".
11218
11219 @item gamma
11220 Set the gamma expression. The value must be a float in range
11221 @code{0.1} to @code{10.0}.  The default value is "1".
11222
11223 @item gamma_r
11224 Set the gamma expression for red. The value must be a float in
11225 range @code{0.1} to @code{10.0}. The default value is "1".
11226
11227 @item gamma_g
11228 Set the gamma expression for green. The value must be a float in range
11229 @code{0.1} to @code{10.0}. The default value is "1".
11230
11231 @item gamma_b
11232 Set the gamma expression for blue. The value must be a float in range
11233 @code{0.1} to @code{10.0}. The default value is "1".
11234
11235 @item gamma_weight
11236 Set the gamma weight expression. It can be used to reduce the effect
11237 of a high gamma value on bright image areas, e.g. keep them from
11238 getting overamplified and just plain white. The value must be a float
11239 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
11240 gamma correction all the way down while @code{1.0} leaves it at its
11241 full strength. Default is "1".
11242
11243 @item eval
11244 Set when the expressions for brightness, contrast, saturation and
11245 gamma expressions are evaluated.
11246
11247 It accepts the following values:
11248 @table @samp
11249 @item init
11250 only evaluate expressions once during the filter initialization or
11251 when a command is processed
11252
11253 @item frame
11254 evaluate expressions for each incoming frame
11255 @end table
11256
11257 Default value is @samp{init}.
11258 @end table
11259
11260 The expressions accept the following parameters:
11261 @table @option
11262 @item n
11263 frame count of the input frame starting from 0
11264
11265 @item pos
11266 byte position of the corresponding packet in the input file, NAN if
11267 unspecified
11268
11269 @item r
11270 frame rate of the input video, NAN if the input frame rate is unknown
11271
11272 @item t
11273 timestamp expressed in seconds, NAN if the input timestamp is unknown
11274 @end table
11275
11276 @subsection Commands
11277 The filter supports the following commands:
11278
11279 @table @option
11280 @item contrast
11281 Set the contrast expression.
11282
11283 @item brightness
11284 Set the brightness expression.
11285
11286 @item saturation
11287 Set the saturation expression.
11288
11289 @item gamma
11290 Set the gamma expression.
11291
11292 @item gamma_r
11293 Set the gamma_r expression.
11294
11295 @item gamma_g
11296 Set gamma_g expression.
11297
11298 @item gamma_b
11299 Set gamma_b expression.
11300
11301 @item gamma_weight
11302 Set gamma_weight expression.
11303
11304 The command accepts the same syntax of the corresponding option.
11305
11306 If the specified expression is not valid, it is kept at its current
11307 value.
11308
11309 @end table
11310
11311 @section erosion
11312
11313 Apply erosion effect to the video.
11314
11315 This filter replaces the pixel by the local(3x3) minimum.
11316
11317 It accepts the following options:
11318
11319 @table @option
11320 @item threshold0
11321 @item threshold1
11322 @item threshold2
11323 @item threshold3
11324 Limit the maximum change for each plane, default is 65535.
11325 If 0, plane will remain unchanged.
11326
11327 @item coordinates
11328 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11329 pixels are used.
11330
11331 Flags to local 3x3 coordinates maps like this:
11332
11333     1 2 3
11334     4   5
11335     6 7 8
11336 @end table
11337
11338 @subsection Commands
11339
11340 This filter supports the all above options as @ref{commands}.
11341
11342 @section estdif
11343
11344 Deinterlace the input video ("estdif" stands for "Edge Slope
11345 Tracing Deinterlacing Filter").
11346
11347 Spatial only filter that uses edge slope tracing algorithm
11348 to interpolate missing lines.
11349 It accepts the following parameters:
11350
11351 @table @option
11352 @item mode
11353 The interlacing mode to adopt. It accepts one of the following values:
11354
11355 @table @option
11356 @item frame
11357 Output one frame for each frame.
11358 @item field
11359 Output one frame for each field.
11360 @end table
11361
11362 The default value is @code{field}.
11363
11364 @item parity
11365 The picture field parity assumed for the input interlaced video. It accepts one
11366 of the following values:
11367
11368 @table @option
11369 @item tff
11370 Assume the top field is first.
11371 @item bff
11372 Assume the bottom field is first.
11373 @item auto
11374 Enable automatic detection of field parity.
11375 @end table
11376
11377 The default value is @code{auto}.
11378 If the interlacing is unknown or the decoder does not export this information,
11379 top field first will be assumed.
11380
11381 @item deint
11382 Specify which frames to deinterlace. Accepts one of the following
11383 values:
11384
11385 @table @option
11386 @item all
11387 Deinterlace all frames.
11388 @item interlaced
11389 Only deinterlace frames marked as interlaced.
11390 @end table
11391
11392 The default value is @code{all}.
11393
11394 @item rslope
11395 Specify the search radius for edge slope tracing. Default value is 1.
11396 Allowed range is from 1 to 15.
11397
11398 @item redge
11399 Specify the search radius for best edge matching. Default value is 2.
11400 Allowed range is from 0 to 15.
11401
11402 @item interp
11403 Specify the interpolation used. Default is 4-point interpolation. It accepts one
11404 of the following values:
11405
11406 @table @option
11407 @item 2p
11408 Two-point interpolation.
11409 @item 4p
11410 Four-point interpolation.
11411 @item 6p
11412 Six-point interpolation.
11413 @end table
11414 @end table
11415
11416 @subsection Commands
11417 This filter supports same @ref{commands} as options.
11418
11419 @section exposure
11420 Adjust exposure of the video stream.
11421
11422 The filter accepts the following options:
11423
11424 @table @option
11425 @item exposure
11426 Set the exposure correction in EV. Allowed range is from -3.0 to 3.0 EV
11427 Default value is 0 EV.
11428
11429 @item black
11430 Set the black level correction. Allowed range is from -1.0 to 1.0.
11431 Default value is 0.
11432 @end table
11433
11434 @subsection Commands
11435
11436 This filter supports same @ref{commands} as options.
11437
11438 @section extractplanes
11439
11440 Extract color channel components from input video stream into
11441 separate grayscale video streams.
11442
11443 The filter accepts the following option:
11444
11445 @table @option
11446 @item planes
11447 Set plane(s) to extract.
11448
11449 Available values for planes are:
11450 @table @samp
11451 @item y
11452 @item u
11453 @item v
11454 @item a
11455 @item r
11456 @item g
11457 @item b
11458 @end table
11459
11460 Choosing planes not available in the input will result in an error.
11461 That means you cannot select @code{r}, @code{g}, @code{b} planes
11462 with @code{y}, @code{u}, @code{v} planes at same time.
11463 @end table
11464
11465 @subsection Examples
11466
11467 @itemize
11468 @item
11469 Extract luma, u and v color channel component from input video frame
11470 into 3 grayscale outputs:
11471 @example
11472 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
11473 @end example
11474 @end itemize
11475
11476 @section fade
11477
11478 Apply a fade-in/out effect to the input video.
11479
11480 It accepts the following parameters:
11481
11482 @table @option
11483 @item type, t
11484 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11485 effect.
11486 Default is @code{in}.
11487
11488 @item start_frame, s
11489 Specify the number of the frame to start applying the fade
11490 effect at. Default is 0.
11491
11492 @item nb_frames, n
11493 The number of frames that the fade effect lasts. At the end of the
11494 fade-in effect, the output video will have the same intensity as the input video.
11495 At the end of the fade-out transition, the output video will be filled with the
11496 selected @option{color}.
11497 Default is 25.
11498
11499 @item alpha
11500 If set to 1, fade only alpha channel, if one exists on the input.
11501 Default value is 0.
11502
11503 @item start_time, st
11504 Specify the timestamp (in seconds) of the frame to start to apply the fade
11505 effect. If both start_frame and start_time are specified, the fade will start at
11506 whichever comes last.  Default is 0.
11507
11508 @item duration, d
11509 The number of seconds for which the fade effect has to last. At the end of the
11510 fade-in effect the output video will have the same intensity as the input video,
11511 at the end of the fade-out transition the output video will be filled with the
11512 selected @option{color}.
11513 If both duration and nb_frames are specified, duration is used. Default is 0
11514 (nb_frames is used by default).
11515
11516 @item color, c
11517 Specify the color of the fade. Default is "black".
11518 @end table
11519
11520 @subsection Examples
11521
11522 @itemize
11523 @item
11524 Fade in the first 30 frames of video:
11525 @example
11526 fade=in:0:30
11527 @end example
11528
11529 The command above is equivalent to:
11530 @example
11531 fade=t=in:s=0:n=30
11532 @end example
11533
11534 @item
11535 Fade out the last 45 frames of a 200-frame video:
11536 @example
11537 fade=out:155:45
11538 fade=type=out:start_frame=155:nb_frames=45
11539 @end example
11540
11541 @item
11542 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11543 @example
11544 fade=in:0:25, fade=out:975:25
11545 @end example
11546
11547 @item
11548 Make the first 5 frames yellow, then fade in from frame 5-24:
11549 @example
11550 fade=in:5:20:color=yellow
11551 @end example
11552
11553 @item
11554 Fade in alpha over first 25 frames of video:
11555 @example
11556 fade=in:0:25:alpha=1
11557 @end example
11558
11559 @item
11560 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11561 @example
11562 fade=t=in:st=5.5:d=0.5
11563 @end example
11564
11565 @end itemize
11566
11567 @section fftdnoiz
11568 Denoise frames using 3D FFT (frequency domain filtering).
11569
11570 The filter accepts the following options:
11571
11572 @table @option
11573 @item sigma
11574 Set the noise sigma constant. This sets denoising strength.
11575 Default value is 1. Allowed range is from 0 to 30.
11576 Using very high sigma with low overlap may give blocking artifacts.
11577
11578 @item amount
11579 Set amount of denoising. By default all detected noise is reduced.
11580 Default value is 1. Allowed range is from 0 to 1.
11581
11582 @item block
11583 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11584 Actual size of block in pixels is 2 to power of @var{block}, so by default
11585 block size in pixels is 2^4 which is 16.
11586
11587 @item overlap
11588 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11589
11590 @item prev
11591 Set number of previous frames to use for denoising. By default is set to 0.
11592
11593 @item next
11594 Set number of next frames to to use for denoising. By default is set to 0.
11595
11596 @item planes
11597 Set planes which will be filtered, by default are all available filtered
11598 except alpha.
11599 @end table
11600
11601 @section fftfilt
11602 Apply arbitrary expressions to samples in frequency domain
11603
11604 @table @option
11605 @item dc_Y
11606 Adjust the dc value (gain) of the luma plane of the image. The filter
11607 accepts an integer value in range @code{0} to @code{1000}. The default
11608 value is set to @code{0}.
11609
11610 @item dc_U
11611 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11612 filter accepts an integer value in range @code{0} to @code{1000}. The
11613 default value is set to @code{0}.
11614
11615 @item dc_V
11616 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11617 filter accepts an integer value in range @code{0} to @code{1000}. The
11618 default value is set to @code{0}.
11619
11620 @item weight_Y
11621 Set the frequency domain weight expression for the luma plane.
11622
11623 @item weight_U
11624 Set the frequency domain weight expression for the 1st chroma plane.
11625
11626 @item weight_V
11627 Set the frequency domain weight expression for the 2nd chroma plane.
11628
11629 @item eval
11630 Set when the expressions are evaluated.
11631
11632 It accepts the following values:
11633 @table @samp
11634 @item init
11635 Only evaluate expressions once during the filter initialization.
11636
11637 @item frame
11638 Evaluate expressions for each incoming frame.
11639 @end table
11640
11641 Default value is @samp{init}.
11642
11643 The filter accepts the following variables:
11644 @item X
11645 @item Y
11646 The coordinates of the current sample.
11647
11648 @item W
11649 @item H
11650 The width and height of the image.
11651
11652 @item N
11653 The number of input frame, starting from 0.
11654 @end table
11655
11656 @subsection Examples
11657
11658 @itemize
11659 @item
11660 High-pass:
11661 @example
11662 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11663 @end example
11664
11665 @item
11666 Low-pass:
11667 @example
11668 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11669 @end example
11670
11671 @item
11672 Sharpen:
11673 @example
11674 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11675 @end example
11676
11677 @item
11678 Blur:
11679 @example
11680 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11681 @end example
11682
11683 @end itemize
11684
11685 @section field
11686
11687 Extract a single field from an interlaced image using stride
11688 arithmetic to avoid wasting CPU time. The output frames are marked as
11689 non-interlaced.
11690
11691 The filter accepts the following options:
11692
11693 @table @option
11694 @item type
11695 Specify whether to extract the top (if the value is @code{0} or
11696 @code{top}) or the bottom field (if the value is @code{1} or
11697 @code{bottom}).
11698 @end table
11699
11700 @section fieldhint
11701
11702 Create new frames by copying the top and bottom fields from surrounding frames
11703 supplied as numbers by the hint file.
11704
11705 @table @option
11706 @item hint
11707 Set file containing hints: absolute/relative frame numbers.
11708
11709 There must be one line for each frame in a clip. Each line must contain two
11710 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11711 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11712 is current frame number for @code{absolute} mode or out of [-1, 1] range
11713 for @code{relative} mode. First number tells from which frame to pick up top
11714 field and second number tells from which frame to pick up bottom field.
11715
11716 If optionally followed by @code{+} output frame will be marked as interlaced,
11717 else if followed by @code{-} output frame will be marked as progressive, else
11718 it will be marked same as input frame.
11719 If optionally followed by @code{t} output frame will use only top field, or in
11720 case of @code{b} it will use only bottom field.
11721 If line starts with @code{#} or @code{;} that line is skipped.
11722
11723 @item mode
11724 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11725 @end table
11726
11727 Example of first several lines of @code{hint} file for @code{relative} mode:
11728 @example
11729 0,0 - # first frame
11730 1,0 - # second frame, use third's frame top field and second's frame bottom field
11731 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11732 1,0 -
11733 0,0 -
11734 0,0 -
11735 1,0 -
11736 1,0 -
11737 1,0 -
11738 0,0 -
11739 0,0 -
11740 1,0 -
11741 1,0 -
11742 1,0 -
11743 0,0 -
11744 @end example
11745
11746 @section fieldmatch
11747
11748 Field matching filter for inverse telecine. It is meant to reconstruct the
11749 progressive frames from a telecined stream. The filter does not drop duplicated
11750 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11751 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11752
11753 The separation of the field matching and the decimation is notably motivated by
11754 the possibility of inserting a de-interlacing filter fallback between the two.
11755 If the source has mixed telecined and real interlaced content,
11756 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11757 But these remaining combed frames will be marked as interlaced, and thus can be
11758 de-interlaced by a later filter such as @ref{yadif} before decimation.
11759
11760 In addition to the various configuration options, @code{fieldmatch} can take an
11761 optional second stream, activated through the @option{ppsrc} option. If
11762 enabled, the frames reconstruction will be based on the fields and frames from
11763 this second stream. This allows the first input to be pre-processed in order to
11764 help the various algorithms of the filter, while keeping the output lossless
11765 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11766 or brightness/contrast adjustments can help.
11767
11768 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11769 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11770 which @code{fieldmatch} is based on. While the semantic and usage are very
11771 close, some behaviour and options names can differ.
11772
11773 The @ref{decimate} filter currently only works for constant frame rate input.
11774 If your input has mixed telecined (30fps) and progressive content with a lower
11775 framerate like 24fps use the following filterchain to produce the necessary cfr
11776 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11777
11778 The filter accepts the following options:
11779
11780 @table @option
11781 @item order
11782 Specify the assumed field order of the input stream. Available values are:
11783
11784 @table @samp
11785 @item auto
11786 Auto detect parity (use FFmpeg's internal parity value).
11787 @item bff
11788 Assume bottom field first.
11789 @item tff
11790 Assume top field first.
11791 @end table
11792
11793 Note that it is sometimes recommended not to trust the parity announced by the
11794 stream.
11795
11796 Default value is @var{auto}.
11797
11798 @item mode
11799 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11800 sense that it won't risk creating jerkiness due to duplicate frames when
11801 possible, but if there are bad edits or blended fields it will end up
11802 outputting combed frames when a good match might actually exist. On the other
11803 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11804 but will almost always find a good frame if there is one. The other values are
11805 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11806 jerkiness and creating duplicate frames versus finding good matches in sections
11807 with bad edits, orphaned fields, blended fields, etc.
11808
11809 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11810
11811 Available values are:
11812
11813 @table @samp
11814 @item pc
11815 2-way matching (p/c)
11816 @item pc_n
11817 2-way matching, and trying 3rd match if still combed (p/c + n)
11818 @item pc_u
11819 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11820 @item pc_n_ub
11821 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11822 still combed (p/c + n + u/b)
11823 @item pcn
11824 3-way matching (p/c/n)
11825 @item pcn_ub
11826 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11827 detected as combed (p/c/n + u/b)
11828 @end table
11829
11830 The parenthesis at the end indicate the matches that would be used for that
11831 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11832 @var{top}).
11833
11834 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11835 the slowest.
11836
11837 Default value is @var{pc_n}.
11838
11839 @item ppsrc
11840 Mark the main input stream as a pre-processed input, and enable the secondary
11841 input stream as the clean source to pick the fields from. See the filter
11842 introduction for more details. It is similar to the @option{clip2} feature from
11843 VFM/TFM.
11844
11845 Default value is @code{0} (disabled).
11846
11847 @item field
11848 Set the field to match from. It is recommended to set this to the same value as
11849 @option{order} unless you experience matching failures with that setting. In
11850 certain circumstances changing the field that is used to match from can have a
11851 large impact on matching performance. Available values are:
11852
11853 @table @samp
11854 @item auto
11855 Automatic (same value as @option{order}).
11856 @item bottom
11857 Match from the bottom field.
11858 @item top
11859 Match from the top field.
11860 @end table
11861
11862 Default value is @var{auto}.
11863
11864 @item mchroma
11865 Set whether or not chroma is included during the match comparisons. In most
11866 cases it is recommended to leave this enabled. You should set this to @code{0}
11867 only if your clip has bad chroma problems such as heavy rainbowing or other
11868 artifacts. Setting this to @code{0} could also be used to speed things up at
11869 the cost of some accuracy.
11870
11871 Default value is @code{1}.
11872
11873 @item y0
11874 @item y1
11875 These define an exclusion band which excludes the lines between @option{y0} and
11876 @option{y1} from being included in the field matching decision. An exclusion
11877 band can be used to ignore subtitles, a logo, or other things that may
11878 interfere with the matching. @option{y0} sets the starting scan line and
11879 @option{y1} sets the ending line; all lines in between @option{y0} and
11880 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11881 @option{y0} and @option{y1} to the same value will disable the feature.
11882 @option{y0} and @option{y1} defaults to @code{0}.
11883
11884 @item scthresh
11885 Set the scene change detection threshold as a percentage of maximum change on
11886 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11887 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11888 @option{scthresh} is @code{[0.0, 100.0]}.
11889
11890 Default value is @code{12.0}.
11891
11892 @item combmatch
11893 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11894 account the combed scores of matches when deciding what match to use as the
11895 final match. Available values are:
11896
11897 @table @samp
11898 @item none
11899 No final matching based on combed scores.
11900 @item sc
11901 Combed scores are only used when a scene change is detected.
11902 @item full
11903 Use combed scores all the time.
11904 @end table
11905
11906 Default is @var{sc}.
11907
11908 @item combdbg
11909 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11910 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11911 Available values are:
11912
11913 @table @samp
11914 @item none
11915 No forced calculation.
11916 @item pcn
11917 Force p/c/n calculations.
11918 @item pcnub
11919 Force p/c/n/u/b calculations.
11920 @end table
11921
11922 Default value is @var{none}.
11923
11924 @item cthresh
11925 This is the area combing threshold used for combed frame detection. This
11926 essentially controls how "strong" or "visible" combing must be to be detected.
11927 Larger values mean combing must be more visible and smaller values mean combing
11928 can be less visible or strong and still be detected. Valid settings are from
11929 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11930 be detected as combed). This is basically a pixel difference value. A good
11931 range is @code{[8, 12]}.
11932
11933 Default value is @code{9}.
11934
11935 @item chroma
11936 Sets whether or not chroma is considered in the combed frame decision.  Only
11937 disable this if your source has chroma problems (rainbowing, etc.) that are
11938 causing problems for the combed frame detection with chroma enabled. Actually,
11939 using @option{chroma}=@var{0} is usually more reliable, except for the case
11940 where there is chroma only combing in the source.
11941
11942 Default value is @code{0}.
11943
11944 @item blockx
11945 @item blocky
11946 Respectively set the x-axis and y-axis size of the window used during combed
11947 frame detection. This has to do with the size of the area in which
11948 @option{combpel} pixels are required to be detected as combed for a frame to be
11949 declared combed. See the @option{combpel} parameter description for more info.
11950 Possible values are any number that is a power of 2 starting at 4 and going up
11951 to 512.
11952
11953 Default value is @code{16}.
11954
11955 @item combpel
11956 The number of combed pixels inside any of the @option{blocky} by
11957 @option{blockx} size blocks on the frame for the frame to be detected as
11958 combed. While @option{cthresh} controls how "visible" the combing must be, this
11959 setting controls "how much" combing there must be in any localized area (a
11960 window defined by the @option{blockx} and @option{blocky} settings) on the
11961 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11962 which point no frames will ever be detected as combed). This setting is known
11963 as @option{MI} in TFM/VFM vocabulary.
11964
11965 Default value is @code{80}.
11966 @end table
11967
11968 @anchor{p/c/n/u/b meaning}
11969 @subsection p/c/n/u/b meaning
11970
11971 @subsubsection p/c/n
11972
11973 We assume the following telecined stream:
11974
11975 @example
11976 Top fields:     1 2 2 3 4
11977 Bottom fields:  1 2 3 4 4
11978 @end example
11979
11980 The numbers correspond to the progressive frame the fields relate to. Here, the
11981 first two frames are progressive, the 3rd and 4th are combed, and so on.
11982
11983 When @code{fieldmatch} is configured to run a matching from bottom
11984 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11985
11986 @example
11987 Input stream:
11988                 T     1 2 2 3 4
11989                 B     1 2 3 4 4   <-- matching reference
11990
11991 Matches:              c c n n c
11992
11993 Output stream:
11994                 T     1 2 3 4 4
11995                 B     1 2 3 4 4
11996 @end example
11997
11998 As a result of the field matching, we can see that some frames get duplicated.
11999 To perform a complete inverse telecine, you need to rely on a decimation filter
12000 after this operation. See for instance the @ref{decimate} filter.
12001
12002 The same operation now matching from top fields (@option{field}=@var{top})
12003 looks like this:
12004
12005 @example
12006 Input stream:
12007                 T     1 2 2 3 4   <-- matching reference
12008                 B     1 2 3 4 4
12009
12010 Matches:              c c p p c
12011
12012 Output stream:
12013                 T     1 2 2 3 4
12014                 B     1 2 2 3 4
12015 @end example
12016
12017 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
12018 basically, they refer to the frame and field of the opposite parity:
12019
12020 @itemize
12021 @item @var{p} matches the field of the opposite parity in the previous frame
12022 @item @var{c} matches the field of the opposite parity in the current frame
12023 @item @var{n} matches the field of the opposite parity in the next frame
12024 @end itemize
12025
12026 @subsubsection u/b
12027
12028 The @var{u} and @var{b} matching are a bit special in the sense that they match
12029 from the opposite parity flag. In the following examples, we assume that we are
12030 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
12031 'x' is placed above and below each matched fields.
12032
12033 With bottom matching (@option{field}=@var{bottom}):
12034 @example
12035 Match:           c         p           n          b          u
12036
12037                  x       x               x        x          x
12038   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
12039   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
12040                  x         x           x        x              x
12041
12042 Output frames:
12043                  2          1          2          2          2
12044                  2          2          2          1          3
12045 @end example
12046
12047 With top matching (@option{field}=@var{top}):
12048 @example
12049 Match:           c         p           n          b          u
12050
12051                  x         x           x        x              x
12052   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
12053   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
12054                  x       x               x        x          x
12055
12056 Output frames:
12057                  2          2          2          1          2
12058                  2          1          3          2          2
12059 @end example
12060
12061 @subsection Examples
12062
12063 Simple IVTC of a top field first telecined stream:
12064 @example
12065 fieldmatch=order=tff:combmatch=none, decimate
12066 @end example
12067
12068 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
12069 @example
12070 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
12071 @end example
12072
12073 @section fieldorder
12074
12075 Transform the field order of the input video.
12076
12077 It accepts the following parameters:
12078
12079 @table @option
12080
12081 @item order
12082 The output field order. Valid values are @var{tff} for top field first or @var{bff}
12083 for bottom field first.
12084 @end table
12085
12086 The default value is @samp{tff}.
12087
12088 The transformation is done by shifting the picture content up or down
12089 by one line, and filling the remaining line with appropriate picture content.
12090 This method is consistent with most broadcast field order converters.
12091
12092 If the input video is not flagged as being interlaced, or it is already
12093 flagged as being of the required output field order, then this filter does
12094 not alter the incoming video.
12095
12096 It is very useful when converting to or from PAL DV material,
12097 which is bottom field first.
12098
12099 For example:
12100 @example
12101 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
12102 @end example
12103
12104 @section fifo, afifo
12105
12106 Buffer input images and send them when they are requested.
12107
12108 It is mainly useful when auto-inserted by the libavfilter
12109 framework.
12110
12111 It does not take parameters.
12112
12113 @section fillborders
12114
12115 Fill borders of the input video, without changing video stream dimensions.
12116 Sometimes video can have garbage at the four edges and you may not want to
12117 crop video input to keep size multiple of some number.
12118
12119 This filter accepts the following options:
12120
12121 @table @option
12122 @item left
12123 Number of pixels to fill from left border.
12124
12125 @item right
12126 Number of pixels to fill from right border.
12127
12128 @item top
12129 Number of pixels to fill from top border.
12130
12131 @item bottom
12132 Number of pixels to fill from bottom border.
12133
12134 @item mode
12135 Set fill mode.
12136
12137 It accepts the following values:
12138 @table @samp
12139 @item smear
12140 fill pixels using outermost pixels
12141
12142 @item mirror
12143 fill pixels using mirroring (half sample symmetric)
12144
12145 @item fixed
12146 fill pixels with constant value
12147
12148 @item reflect
12149 fill pixels using reflecting (whole sample symmetric)
12150
12151 @item wrap
12152 fill pixels using wrapping
12153
12154 @item fade
12155 fade pixels to constant value
12156 @end table
12157
12158 Default is @var{smear}.
12159
12160 @item color
12161 Set color for pixels in fixed or fade mode. Default is @var{black}.
12162 @end table
12163
12164 @subsection Commands
12165 This filter supports same @ref{commands} as options.
12166 The command accepts the same syntax of the corresponding option.
12167
12168 If the specified expression is not valid, it is kept at its current
12169 value.
12170
12171 @section find_rect
12172
12173 Find a rectangular object
12174
12175 It accepts the following options:
12176
12177 @table @option
12178 @item object
12179 Filepath of the object image, needs to be in gray8.
12180
12181 @item threshold
12182 Detection threshold, default is 0.5.
12183
12184 @item mipmaps
12185 Number of mipmaps, default is 3.
12186
12187 @item xmin, ymin, xmax, ymax
12188 Specifies the rectangle in which to search.
12189
12190 @item discard
12191 Discard frames where object is not detected. Default is disabled.
12192 @end table
12193
12194 @subsection Examples
12195
12196 @itemize
12197 @item
12198 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
12199 @example
12200 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
12201 @end example
12202 @end itemize
12203
12204 @section floodfill
12205
12206 Flood area with values of same pixel components with another values.
12207
12208 It accepts the following options:
12209 @table @option
12210 @item x
12211 Set pixel x coordinate.
12212
12213 @item y
12214 Set pixel y coordinate.
12215
12216 @item s0
12217 Set source #0 component value.
12218
12219 @item s1
12220 Set source #1 component value.
12221
12222 @item s2
12223 Set source #2 component value.
12224
12225 @item s3
12226 Set source #3 component value.
12227
12228 @item d0
12229 Set destination #0 component value.
12230
12231 @item d1
12232 Set destination #1 component value.
12233
12234 @item d2
12235 Set destination #2 component value.
12236
12237 @item d3
12238 Set destination #3 component value.
12239 @end table
12240
12241 @anchor{format}
12242 @section format
12243
12244 Convert the input video to one of the specified pixel formats.
12245 Libavfilter will try to pick one that is suitable as input to
12246 the next filter.
12247
12248 It accepts the following parameters:
12249 @table @option
12250
12251 @item pix_fmts
12252 A '|'-separated list of pixel format names, such as
12253 "pix_fmts=yuv420p|monow|rgb24".
12254
12255 @end table
12256
12257 @subsection Examples
12258
12259 @itemize
12260 @item
12261 Convert the input video to the @var{yuv420p} format
12262 @example
12263 format=pix_fmts=yuv420p
12264 @end example
12265
12266 Convert the input video to any of the formats in the list
12267 @example
12268 format=pix_fmts=yuv420p|yuv444p|yuv410p
12269 @end example
12270 @end itemize
12271
12272 @anchor{fps}
12273 @section fps
12274
12275 Convert the video to specified constant frame rate by duplicating or dropping
12276 frames as necessary.
12277
12278 It accepts the following parameters:
12279 @table @option
12280
12281 @item fps
12282 The desired output frame rate. The default is @code{25}.
12283
12284 @item start_time
12285 Assume the first PTS should be the given value, in seconds. This allows for
12286 padding/trimming at the start of stream. By default, no assumption is made
12287 about the first frame's expected PTS, so no padding or trimming is done.
12288 For example, this could be set to 0 to pad the beginning with duplicates of
12289 the first frame if a video stream starts after the audio stream or to trim any
12290 frames with a negative PTS.
12291
12292 @item round
12293 Timestamp (PTS) rounding method.
12294
12295 Possible values are:
12296 @table @option
12297 @item zero
12298 round towards 0
12299 @item inf
12300 round away from 0
12301 @item down
12302 round towards -infinity
12303 @item up
12304 round towards +infinity
12305 @item near
12306 round to nearest
12307 @end table
12308 The default is @code{near}.
12309
12310 @item eof_action
12311 Action performed when reading the last frame.
12312
12313 Possible values are:
12314 @table @option
12315 @item round
12316 Use same timestamp rounding method as used for other frames.
12317 @item pass
12318 Pass through last frame if input duration has not been reached yet.
12319 @end table
12320 The default is @code{round}.
12321
12322 @end table
12323
12324 Alternatively, the options can be specified as a flat string:
12325 @var{fps}[:@var{start_time}[:@var{round}]].
12326
12327 See also the @ref{setpts} filter.
12328
12329 @subsection Examples
12330
12331 @itemize
12332 @item
12333 A typical usage in order to set the fps to 25:
12334 @example
12335 fps=fps=25
12336 @end example
12337
12338 @item
12339 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12340 @example
12341 fps=fps=film:round=near
12342 @end example
12343 @end itemize
12344
12345 @section framepack
12346
12347 Pack two different video streams into a stereoscopic video, setting proper
12348 metadata on supported codecs. The two views should have the same size and
12349 framerate and processing will stop when the shorter video ends. Please note
12350 that you may conveniently adjust view properties with the @ref{scale} and
12351 @ref{fps} filters.
12352
12353 It accepts the following parameters:
12354 @table @option
12355
12356 @item format
12357 The desired packing format. Supported values are:
12358
12359 @table @option
12360
12361 @item sbs
12362 The views are next to each other (default).
12363
12364 @item tab
12365 The views are on top of each other.
12366
12367 @item lines
12368 The views are packed by line.
12369
12370 @item columns
12371 The views are packed by column.
12372
12373 @item frameseq
12374 The views are temporally interleaved.
12375
12376 @end table
12377
12378 @end table
12379
12380 Some examples:
12381
12382 @example
12383 # Convert left and right views into a frame-sequential video
12384 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12385
12386 # Convert views into a side-by-side video with the same output resolution as the input
12387 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
12388 @end example
12389
12390 @section framerate
12391
12392 Change the frame rate by interpolating new video output frames from the source
12393 frames.
12394
12395 This filter is not designed to function correctly with interlaced media. If
12396 you wish to change the frame rate of interlaced media then you are required
12397 to deinterlace before this filter and re-interlace after this filter.
12398
12399 A description of the accepted options follows.
12400
12401 @table @option
12402 @item fps
12403 Specify the output frames per second. This option can also be specified
12404 as a value alone. The default is @code{50}.
12405
12406 @item interp_start
12407 Specify the start of a range where the output frame will be created as a
12408 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12409 the default is @code{15}.
12410
12411 @item interp_end
12412 Specify the end of a range where the output frame will be created as a
12413 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12414 the default is @code{240}.
12415
12416 @item scene
12417 Specify the level at which a scene change is detected as a value between
12418 0 and 100 to indicate a new scene; a low value reflects a low
12419 probability for the current frame to introduce a new scene, while a higher
12420 value means the current frame is more likely to be one.
12421 The default is @code{8.2}.
12422
12423 @item flags
12424 Specify flags influencing the filter process.
12425
12426 Available value for @var{flags} is:
12427
12428 @table @option
12429 @item scene_change_detect, scd
12430 Enable scene change detection using the value of the option @var{scene}.
12431 This flag is enabled by default.
12432 @end table
12433 @end table
12434
12435 @section framestep
12436
12437 Select one frame every N-th frame.
12438
12439 This filter accepts the following option:
12440 @table @option
12441 @item step
12442 Select frame after every @code{step} frames.
12443 Allowed values are positive integers higher than 0. Default value is @code{1}.
12444 @end table
12445
12446 @section freezedetect
12447
12448 Detect frozen video.
12449
12450 This filter logs a message and sets frame metadata when it detects that the
12451 input video has no significant change in content during a specified duration.
12452 Video freeze detection calculates the mean average absolute difference of all
12453 the components of video frames and compares it to a noise floor.
12454
12455 The printed times and duration are expressed in seconds. The
12456 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12457 whose timestamp equals or exceeds the detection duration and it contains the
12458 timestamp of the first frame of the freeze. The
12459 @code{lavfi.freezedetect.freeze_duration} and
12460 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12461 after the freeze.
12462
12463 The filter accepts the following options:
12464
12465 @table @option
12466 @item noise, n
12467 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12468 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12469 0.001.
12470
12471 @item duration, d
12472 Set freeze duration until notification (default is 2 seconds).
12473 @end table
12474
12475 @section freezeframes
12476
12477 Freeze video frames.
12478
12479 This filter freezes video frames using frame from 2nd input.
12480
12481 The filter accepts the following options:
12482
12483 @table @option
12484 @item first
12485 Set number of first frame from which to start freeze.
12486
12487 @item last
12488 Set number of last frame from which to end freeze.
12489
12490 @item replace
12491 Set number of frame from 2nd input which will be used instead of replaced frames.
12492 @end table
12493
12494 @anchor{frei0r}
12495 @section frei0r
12496
12497 Apply a frei0r effect to the input video.
12498
12499 To enable the compilation of this filter, you need to install the frei0r
12500 header and configure FFmpeg with @code{--enable-frei0r}.
12501
12502 It accepts the following parameters:
12503
12504 @table @option
12505
12506 @item filter_name
12507 The name of the frei0r effect to load. If the environment variable
12508 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12509 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12510 Otherwise, the standard frei0r paths are searched, in this order:
12511 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12512 @file{/usr/lib/frei0r-1/}.
12513
12514 @item filter_params
12515 A '|'-separated list of parameters to pass to the frei0r effect.
12516
12517 @end table
12518
12519 A frei0r effect parameter can be a boolean (its value is either
12520 "y" or "n"), a double, a color (specified as
12521 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12522 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12523 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12524 a position (specified as @var{X}/@var{Y}, where
12525 @var{X} and @var{Y} are floating point numbers) and/or a string.
12526
12527 The number and types of parameters depend on the loaded effect. If an
12528 effect parameter is not specified, the default value is set.
12529
12530 @subsection Examples
12531
12532 @itemize
12533 @item
12534 Apply the distort0r effect, setting the first two double parameters:
12535 @example
12536 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12537 @end example
12538
12539 @item
12540 Apply the colordistance effect, taking a color as the first parameter:
12541 @example
12542 frei0r=colordistance:0.2/0.3/0.4
12543 frei0r=colordistance:violet
12544 frei0r=colordistance:0x112233
12545 @end example
12546
12547 @item
12548 Apply the perspective effect, specifying the top left and top right image
12549 positions:
12550 @example
12551 frei0r=perspective:0.2/0.2|0.8/0.2
12552 @end example
12553 @end itemize
12554
12555 For more information, see
12556 @url{http://frei0r.dyne.org}
12557
12558 @subsection Commands
12559
12560 This filter supports the @option{filter_params} option as @ref{commands}.
12561
12562 @section fspp
12563
12564 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12565
12566 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12567 processing filter, one of them is performed once per block, not per pixel.
12568 This allows for much higher speed.
12569
12570 The filter accepts the following options:
12571
12572 @table @option
12573 @item quality
12574 Set quality. This option defines the number of levels for averaging. It accepts
12575 an integer in the range 4-5. Default value is @code{4}.
12576
12577 @item qp
12578 Force a constant quantization parameter. It accepts an integer in range 0-63.
12579 If not set, the filter will use the QP from the video stream (if available).
12580
12581 @item strength
12582 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12583 more details but also more artifacts, while higher values make the image smoother
12584 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12585
12586 @item use_bframe_qp
12587 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12588 option may cause flicker since the B-Frames have often larger QP. Default is
12589 @code{0} (not enabled).
12590
12591 @end table
12592
12593 @section gblur
12594
12595 Apply Gaussian blur filter.
12596
12597 The filter accepts the following options:
12598
12599 @table @option
12600 @item sigma
12601 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12602
12603 @item steps
12604 Set number of steps for Gaussian approximation. Default is @code{1}.
12605
12606 @item planes
12607 Set which planes to filter. By default all planes are filtered.
12608
12609 @item sigmaV
12610 Set vertical sigma, if negative it will be same as @code{sigma}.
12611 Default is @code{-1}.
12612 @end table
12613
12614 @subsection Commands
12615 This filter supports same commands as options.
12616 The command accepts the same syntax of the corresponding option.
12617
12618 If the specified expression is not valid, it is kept at its current
12619 value.
12620
12621 @section geq
12622
12623 Apply generic equation to each pixel.
12624
12625 The filter accepts the following options:
12626
12627 @table @option
12628 @item lum_expr, lum
12629 Set the luminance expression.
12630 @item cb_expr, cb
12631 Set the chrominance blue expression.
12632 @item cr_expr, cr
12633 Set the chrominance red expression.
12634 @item alpha_expr, a
12635 Set the alpha expression.
12636 @item red_expr, r
12637 Set the red expression.
12638 @item green_expr, g
12639 Set the green expression.
12640 @item blue_expr, b
12641 Set the blue expression.
12642 @end table
12643
12644 The colorspace is selected according to the specified options. If one
12645 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12646 options is specified, the filter will automatically select a YCbCr
12647 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12648 @option{blue_expr} options is specified, it will select an RGB
12649 colorspace.
12650
12651 If one of the chrominance expression is not defined, it falls back on the other
12652 one. If no alpha expression is specified it will evaluate to opaque value.
12653 If none of chrominance expressions are specified, they will evaluate
12654 to the luminance expression.
12655
12656 The expressions can use the following variables and functions:
12657
12658 @table @option
12659 @item N
12660 The sequential number of the filtered frame, starting from @code{0}.
12661
12662 @item X
12663 @item Y
12664 The coordinates of the current sample.
12665
12666 @item W
12667 @item H
12668 The width and height of the image.
12669
12670 @item SW
12671 @item SH
12672 Width and height scale depending on the currently filtered plane. It is the
12673 ratio between the corresponding luma plane number of pixels and the current
12674 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12675 @code{0.5,0.5} for chroma planes.
12676
12677 @item T
12678 Time of the current frame, expressed in seconds.
12679
12680 @item p(x, y)
12681 Return the value of the pixel at location (@var{x},@var{y}) of the current
12682 plane.
12683
12684 @item lum(x, y)
12685 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12686 plane.
12687
12688 @item cb(x, y)
12689 Return the value of the pixel at location (@var{x},@var{y}) of the
12690 blue-difference chroma plane. Return 0 if there is no such plane.
12691
12692 @item cr(x, y)
12693 Return the value of the pixel at location (@var{x},@var{y}) of the
12694 red-difference chroma plane. Return 0 if there is no such plane.
12695
12696 @item r(x, y)
12697 @item g(x, y)
12698 @item b(x, y)
12699 Return the value of the pixel at location (@var{x},@var{y}) of the
12700 red/green/blue component. Return 0 if there is no such component.
12701
12702 @item alpha(x, y)
12703 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12704 plane. Return 0 if there is no such plane.
12705
12706 @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)
12707 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12708 sums of samples within a rectangle. See the functions without the sum postfix.
12709
12710 @item interpolation
12711 Set one of interpolation methods:
12712 @table @option
12713 @item nearest, n
12714 @item bilinear, b
12715 @end table
12716 Default is bilinear.
12717 @end table
12718
12719 For functions, if @var{x} and @var{y} are outside the area, the value will be
12720 automatically clipped to the closer edge.
12721
12722 Please note that this filter can use multiple threads in which case each slice
12723 will have its own expression state. If you want to use only a single expression
12724 state because your expressions depend on previous state then you should limit
12725 the number of filter threads to 1.
12726
12727 @subsection Examples
12728
12729 @itemize
12730 @item
12731 Flip the image horizontally:
12732 @example
12733 geq=p(W-X\,Y)
12734 @end example
12735
12736 @item
12737 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12738 wavelength of 100 pixels:
12739 @example
12740 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12741 @end example
12742
12743 @item
12744 Generate a fancy enigmatic moving light:
12745 @example
12746 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
12747 @end example
12748
12749 @item
12750 Generate a quick emboss effect:
12751 @example
12752 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12753 @end example
12754
12755 @item
12756 Modify RGB components depending on pixel position:
12757 @example
12758 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12759 @end example
12760
12761 @item
12762 Create a radial gradient that is the same size as the input (also see
12763 the @ref{vignette} filter):
12764 @example
12765 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12766 @end example
12767 @end itemize
12768
12769 @section gradfun
12770
12771 Fix the banding artifacts that are sometimes introduced into nearly flat
12772 regions by truncation to 8-bit color depth.
12773 Interpolate the gradients that should go where the bands are, and
12774 dither them.
12775
12776 It is designed for playback only.  Do not use it prior to
12777 lossy compression, because compression tends to lose the dither and
12778 bring back the bands.
12779
12780 It accepts the following parameters:
12781
12782 @table @option
12783
12784 @item strength
12785 The maximum amount by which the filter will change any one pixel. This is also
12786 the threshold for detecting nearly flat regions. Acceptable values range from
12787 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12788 valid range.
12789
12790 @item radius
12791 The neighborhood to fit the gradient to. A larger radius makes for smoother
12792 gradients, but also prevents the filter from modifying the pixels near detailed
12793 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12794 values will be clipped to the valid range.
12795
12796 @end table
12797
12798 Alternatively, the options can be specified as a flat string:
12799 @var{strength}[:@var{radius}]
12800
12801 @subsection Examples
12802
12803 @itemize
12804 @item
12805 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12806 @example
12807 gradfun=3.5:8
12808 @end example
12809
12810 @item
12811 Specify radius, omitting the strength (which will fall-back to the default
12812 value):
12813 @example
12814 gradfun=radius=8
12815 @end example
12816
12817 @end itemize
12818
12819 @anchor{graphmonitor}
12820 @section graphmonitor
12821 Show various filtergraph stats.
12822
12823 With this filter one can debug complete filtergraph.
12824 Especially issues with links filling with queued frames.
12825
12826 The filter accepts the following options:
12827
12828 @table @option
12829 @item size, s
12830 Set video output size. Default is @var{hd720}.
12831
12832 @item opacity, o
12833 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12834
12835 @item mode, m
12836 Set output mode, can be @var{fulll} or @var{compact}.
12837 In @var{compact} mode only filters with some queued frames have displayed stats.
12838
12839 @item flags, f
12840 Set flags which enable which stats are shown in video.
12841
12842 Available values for flags are:
12843 @table @samp
12844 @item queue
12845 Display number of queued frames in each link.
12846
12847 @item frame_count_in
12848 Display number of frames taken from filter.
12849
12850 @item frame_count_out
12851 Display number of frames given out from filter.
12852
12853 @item pts
12854 Display current filtered frame pts.
12855
12856 @item time
12857 Display current filtered frame time.
12858
12859 @item timebase
12860 Display time base for filter link.
12861
12862 @item format
12863 Display used format for filter link.
12864
12865 @item size
12866 Display video size or number of audio channels in case of audio used by filter link.
12867
12868 @item rate
12869 Display video frame rate or sample rate in case of audio used by filter link.
12870
12871 @item eof
12872 Display link output status.
12873 @end table
12874
12875 @item rate, r
12876 Set upper limit for video rate of output stream, Default value is @var{25}.
12877 This guarantee that output video frame rate will not be higher than this value.
12878 @end table
12879
12880 @section greyedge
12881 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12882 and corrects the scene colors accordingly.
12883
12884 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12885
12886 The filter accepts the following options:
12887
12888 @table @option
12889 @item difford
12890 The order of differentiation to be applied on the scene. Must be chosen in the range
12891 [0,2] and default value is 1.
12892
12893 @item minknorm
12894 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12895 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12896 max value instead of calculating Minkowski distance.
12897
12898 @item sigma
12899 The standard deviation of Gaussian blur to be applied on the scene. Must be
12900 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12901 can't be equal to 0 if @var{difford} is greater than 0.
12902 @end table
12903
12904 @subsection Examples
12905 @itemize
12906
12907 @item
12908 Grey Edge:
12909 @example
12910 greyedge=difford=1:minknorm=5:sigma=2
12911 @end example
12912
12913 @item
12914 Max Edge:
12915 @example
12916 greyedge=difford=1:minknorm=0:sigma=2
12917 @end example
12918
12919 @end itemize
12920
12921 @anchor{haldclut}
12922 @section haldclut
12923
12924 Apply a Hald CLUT to a video stream.
12925
12926 First input is the video stream to process, and second one is the Hald CLUT.
12927 The Hald CLUT input can be a simple picture or a complete video stream.
12928
12929 The filter accepts the following options:
12930
12931 @table @option
12932 @item shortest
12933 Force termination when the shortest input terminates. Default is @code{0}.
12934 @item repeatlast
12935 Continue applying the last CLUT after the end of the stream. A value of
12936 @code{0} disable the filter after the last frame of the CLUT is reached.
12937 Default is @code{1}.
12938 @end table
12939
12940 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12941 filters share the same internals).
12942
12943 This filter also supports the @ref{framesync} options.
12944
12945 More information about the Hald CLUT can be found on Eskil Steenberg's website
12946 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12947
12948 @subsection Commands
12949
12950 This filter supports the @code{interp} option as @ref{commands}.
12951
12952 @subsection Workflow examples
12953
12954 @subsubsection Hald CLUT video stream
12955
12956 Generate an identity Hald CLUT stream altered with various effects:
12957 @example
12958 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
12959 @end example
12960
12961 Note: make sure you use a lossless codec.
12962
12963 Then use it with @code{haldclut} to apply it on some random stream:
12964 @example
12965 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12966 @end example
12967
12968 The Hald CLUT will be applied to the 10 first seconds (duration of
12969 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12970 to the remaining frames of the @code{mandelbrot} stream.
12971
12972 @subsubsection Hald CLUT with preview
12973
12974 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12975 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12976 biggest possible square starting at the top left of the picture. The remaining
12977 padding pixels (bottom or right) will be ignored. This area can be used to add
12978 a preview of the Hald CLUT.
12979
12980 Typically, the following generated Hald CLUT will be supported by the
12981 @code{haldclut} filter:
12982
12983 @example
12984 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12985    pad=iw+320 [padded_clut];
12986    smptebars=s=320x256, split [a][b];
12987    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12988    [main][b] overlay=W-320" -frames:v 1 clut.png
12989 @end example
12990
12991 It contains the original and a preview of the effect of the CLUT: SMPTE color
12992 bars are displayed on the right-top, and below the same color bars processed by
12993 the color changes.
12994
12995 Then, the effect of this Hald CLUT can be visualized with:
12996 @example
12997 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12998 @end example
12999
13000 @section hflip
13001
13002 Flip the input video horizontally.
13003
13004 For example, to horizontally flip the input video with @command{ffmpeg}:
13005 @example
13006 ffmpeg -i in.avi -vf "hflip" out.avi
13007 @end example
13008
13009 @section histeq
13010 This filter applies a global color histogram equalization on a
13011 per-frame basis.
13012
13013 It can be used to correct video that has a compressed range of pixel
13014 intensities.  The filter redistributes the pixel intensities to
13015 equalize their distribution across the intensity range. It may be
13016 viewed as an "automatically adjusting contrast filter". This filter is
13017 useful only for correcting degraded or poorly captured source
13018 video.
13019
13020 The filter accepts the following options:
13021
13022 @table @option
13023 @item strength
13024 Determine the amount of equalization to be applied.  As the strength
13025 is reduced, the distribution of pixel intensities more-and-more
13026 approaches that of the input frame. The value must be a float number
13027 in the range [0,1] and defaults to 0.200.
13028
13029 @item intensity
13030 Set the maximum intensity that can generated and scale the output
13031 values appropriately.  The strength should be set as desired and then
13032 the intensity can be limited if needed to avoid washing-out. The value
13033 must be a float number in the range [0,1] and defaults to 0.210.
13034
13035 @item antibanding
13036 Set the antibanding level. If enabled the filter will randomly vary
13037 the luminance of output pixels by a small amount to avoid banding of
13038 the histogram. Possible values are @code{none}, @code{weak} or
13039 @code{strong}. It defaults to @code{none}.
13040 @end table
13041
13042 @anchor{histogram}
13043 @section histogram
13044
13045 Compute and draw a color distribution histogram for the input video.
13046
13047 The computed histogram is a representation of the color component
13048 distribution in an image.
13049
13050 Standard histogram displays the color components distribution in an image.
13051 Displays color graph for each color component. Shows distribution of
13052 the Y, U, V, A or R, G, B components, depending on input format, in the
13053 current frame. Below each graph a color component scale meter is shown.
13054
13055 The filter accepts the following options:
13056
13057 @table @option
13058 @item level_height
13059 Set height of level. Default value is @code{200}.
13060 Allowed range is [50, 2048].
13061
13062 @item scale_height
13063 Set height of color scale. Default value is @code{12}.
13064 Allowed range is [0, 40].
13065
13066 @item display_mode
13067 Set display mode.
13068 It accepts the following values:
13069 @table @samp
13070 @item stack
13071 Per color component graphs are placed below each other.
13072
13073 @item parade
13074 Per color component graphs are placed side by side.
13075
13076 @item overlay
13077 Presents information identical to that in the @code{parade}, except
13078 that the graphs representing color components are superimposed directly
13079 over one another.
13080 @end table
13081 Default is @code{stack}.
13082
13083 @item levels_mode
13084 Set mode. Can be either @code{linear}, or @code{logarithmic}.
13085 Default is @code{linear}.
13086
13087 @item components
13088 Set what color components to display.
13089 Default is @code{7}.
13090
13091 @item fgopacity
13092 Set foreground opacity. Default is @code{0.7}.
13093
13094 @item bgopacity
13095 Set background opacity. Default is @code{0.5}.
13096 @end table
13097
13098 @subsection Examples
13099
13100 @itemize
13101
13102 @item
13103 Calculate and draw histogram:
13104 @example
13105 ffplay -i input -vf histogram
13106 @end example
13107
13108 @end itemize
13109
13110 @anchor{hqdn3d}
13111 @section hqdn3d
13112
13113 This is a high precision/quality 3d denoise filter. It aims to reduce
13114 image noise, producing smooth images and making still images really
13115 still. It should enhance compressibility.
13116
13117 It accepts the following optional parameters:
13118
13119 @table @option
13120 @item luma_spatial
13121 A non-negative floating point number which specifies spatial luma strength.
13122 It defaults to 4.0.
13123
13124 @item chroma_spatial
13125 A non-negative floating point number which specifies spatial chroma strength.
13126 It defaults to 3.0*@var{luma_spatial}/4.0.
13127
13128 @item luma_tmp
13129 A floating point number which specifies luma temporal strength. It defaults to
13130 6.0*@var{luma_spatial}/4.0.
13131
13132 @item chroma_tmp
13133 A floating point number which specifies chroma temporal strength. It defaults to
13134 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
13135 @end table
13136
13137 @subsection Commands
13138 This filter supports same @ref{commands} as options.
13139 The command accepts the same syntax of the corresponding option.
13140
13141 If the specified expression is not valid, it is kept at its current
13142 value.
13143
13144 @anchor{hwdownload}
13145 @section hwdownload
13146
13147 Download hardware frames to system memory.
13148
13149 The input must be in hardware frames, and the output a non-hardware format.
13150 Not all formats will be supported on the output - it may be necessary to insert
13151 an additional @option{format} filter immediately following in the graph to get
13152 the output in a supported format.
13153
13154 @section hwmap
13155
13156 Map hardware frames to system memory or to another device.
13157
13158 This filter has several different modes of operation; which one is used depends
13159 on the input and output formats:
13160 @itemize
13161 @item
13162 Hardware frame input, normal frame output
13163
13164 Map the input frames to system memory and pass them to the output.  If the
13165 original hardware frame is later required (for example, after overlaying
13166 something else on part of it), the @option{hwmap} filter can be used again
13167 in the next mode to retrieve it.
13168 @item
13169 Normal frame input, hardware frame output
13170
13171 If the input is actually a software-mapped hardware frame, then unmap it -
13172 that is, return the original hardware frame.
13173
13174 Otherwise, a device must be provided.  Create new hardware surfaces on that
13175 device for the output, then map them back to the software format at the input
13176 and give those frames to the preceding filter.  This will then act like the
13177 @option{hwupload} filter, but may be able to avoid an additional copy when
13178 the input is already in a compatible format.
13179 @item
13180 Hardware frame input and output
13181
13182 A device must be supplied for the output, either directly or with the
13183 @option{derive_device} option.  The input and output devices must be of
13184 different types and compatible - the exact meaning of this is
13185 system-dependent, but typically it means that they must refer to the same
13186 underlying hardware context (for example, refer to the same graphics card).
13187
13188 If the input frames were originally created on the output device, then unmap
13189 to retrieve the original frames.
13190
13191 Otherwise, map the frames to the output device - create new hardware frames
13192 on the output corresponding to the frames on the input.
13193 @end itemize
13194
13195 The following additional parameters are accepted:
13196
13197 @table @option
13198 @item mode
13199 Set the frame mapping mode.  Some combination of:
13200 @table @var
13201 @item read
13202 The mapped frame should be readable.
13203 @item write
13204 The mapped frame should be writeable.
13205 @item overwrite
13206 The mapping will always overwrite the entire frame.
13207
13208 This may improve performance in some cases, as the original contents of the
13209 frame need not be loaded.
13210 @item direct
13211 The mapping must not involve any copying.
13212
13213 Indirect mappings to copies of frames are created in some cases where either
13214 direct mapping is not possible or it would have unexpected properties.
13215 Setting this flag ensures that the mapping is direct and will fail if that is
13216 not possible.
13217 @end table
13218 Defaults to @var{read+write} if not specified.
13219
13220 @item derive_device @var{type}
13221 Rather than using the device supplied at initialisation, instead derive a new
13222 device of type @var{type} from the device the input frames exist on.
13223
13224 @item reverse
13225 In a hardware to hardware mapping, map in reverse - create frames in the sink
13226 and map them back to the source.  This may be necessary in some cases where
13227 a mapping in one direction is required but only the opposite direction is
13228 supported by the devices being used.
13229
13230 This option is dangerous - it may break the preceding filter in undefined
13231 ways if there are any additional constraints on that filter's output.
13232 Do not use it without fully understanding the implications of its use.
13233 @end table
13234
13235 @anchor{hwupload}
13236 @section hwupload
13237
13238 Upload system memory frames to hardware surfaces.
13239
13240 The device to upload to must be supplied when the filter is initialised.  If
13241 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
13242 option or with the @option{derive_device} option.  The input and output devices
13243 must be of different types and compatible - the exact meaning of this is
13244 system-dependent, but typically it means that they must refer to the same
13245 underlying hardware context (for example, refer to the same graphics card).
13246
13247 The following additional parameters are accepted:
13248
13249 @table @option
13250 @item derive_device @var{type}
13251 Rather than using the device supplied at initialisation, instead derive a new
13252 device of type @var{type} from the device the input frames exist on.
13253 @end table
13254
13255 @anchor{hwupload_cuda}
13256 @section hwupload_cuda
13257
13258 Upload system memory frames to a CUDA device.
13259
13260 It accepts the following optional parameters:
13261
13262 @table @option
13263 @item device
13264 The number of the CUDA device to use
13265 @end table
13266
13267 @section hqx
13268
13269 Apply a high-quality magnification filter designed for pixel art. This filter
13270 was originally created by Maxim Stepin.
13271
13272 It accepts the following option:
13273
13274 @table @option
13275 @item n
13276 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
13277 @code{hq3x} and @code{4} for @code{hq4x}.
13278 Default is @code{3}.
13279 @end table
13280
13281 @section hstack
13282 Stack input videos horizontally.
13283
13284 All streams must be of same pixel format and of same height.
13285
13286 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13287 to create same output.
13288
13289 The filter accepts the following option:
13290
13291 @table @option
13292 @item inputs
13293 Set number of input streams. Default is 2.
13294
13295 @item shortest
13296 If set to 1, force the output to terminate when the shortest input
13297 terminates. Default value is 0.
13298 @end table
13299
13300 @section hue
13301
13302 Modify the hue and/or the saturation of the input.
13303
13304 It accepts the following parameters:
13305
13306 @table @option
13307 @item h
13308 Specify the hue angle as a number of degrees. It accepts an expression,
13309 and defaults to "0".
13310
13311 @item s
13312 Specify the saturation in the [-10,10] range. It accepts an expression and
13313 defaults to "1".
13314
13315 @item H
13316 Specify the hue angle as a number of radians. It accepts an
13317 expression, and defaults to "0".
13318
13319 @item b
13320 Specify the brightness in the [-10,10] range. It accepts an expression and
13321 defaults to "0".
13322 @end table
13323
13324 @option{h} and @option{H} are mutually exclusive, and can't be
13325 specified at the same time.
13326
13327 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13328 expressions containing the following constants:
13329
13330 @table @option
13331 @item n
13332 frame count of the input frame starting from 0
13333
13334 @item pts
13335 presentation timestamp of the input frame expressed in time base units
13336
13337 @item r
13338 frame rate of the input video, NAN if the input frame rate is unknown
13339
13340 @item t
13341 timestamp expressed in seconds, NAN if the input timestamp is unknown
13342
13343 @item tb
13344 time base of the input video
13345 @end table
13346
13347 @subsection Examples
13348
13349 @itemize
13350 @item
13351 Set the hue to 90 degrees and the saturation to 1.0:
13352 @example
13353 hue=h=90:s=1
13354 @end example
13355
13356 @item
13357 Same command but expressing the hue in radians:
13358 @example
13359 hue=H=PI/2:s=1
13360 @end example
13361
13362 @item
13363 Rotate hue and make the saturation swing between 0
13364 and 2 over a period of 1 second:
13365 @example
13366 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13367 @end example
13368
13369 @item
13370 Apply a 3 seconds saturation fade-in effect starting at 0:
13371 @example
13372 hue="s=min(t/3\,1)"
13373 @end example
13374
13375 The general fade-in expression can be written as:
13376 @example
13377 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13378 @end example
13379
13380 @item
13381 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13382 @example
13383 hue="s=max(0\, min(1\, (8-t)/3))"
13384 @end example
13385
13386 The general fade-out expression can be written as:
13387 @example
13388 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13389 @end example
13390
13391 @end itemize
13392
13393 @subsection Commands
13394
13395 This filter supports the following commands:
13396 @table @option
13397 @item b
13398 @item s
13399 @item h
13400 @item H
13401 Modify the hue and/or the saturation and/or brightness of the input video.
13402 The command accepts the same syntax of the corresponding option.
13403
13404 If the specified expression is not valid, it is kept at its current
13405 value.
13406 @end table
13407
13408 @section hysteresis
13409
13410 Grow first stream into second stream by connecting components.
13411 This makes it possible to build more robust edge masks.
13412
13413 This filter accepts the following options:
13414
13415 @table @option
13416 @item planes
13417 Set which planes will be processed as bitmap, unprocessed planes will be
13418 copied from first stream.
13419 By default value 0xf, all planes will be processed.
13420
13421 @item threshold
13422 Set threshold which is used in filtering. If pixel component value is higher than
13423 this value filter algorithm for connecting components is activated.
13424 By default value is 0.
13425 @end table
13426
13427 The @code{hysteresis} filter also supports the @ref{framesync} options.
13428
13429 @section identity
13430
13431 Obtain the identity score between two input videos.
13432
13433 This filter takes two input videos.
13434
13435 Both input videos must have the same resolution and pixel format for
13436 this filter to work correctly. Also it assumes that both inputs
13437 have the same number of frames, which are compared one by one.
13438
13439 The obtained per component, average, min and max identity score is printed through
13440 the logging system.
13441
13442 The filter stores the calculated identity scores of each frame in frame metadata.
13443
13444 In the below example the input file @file{main.mpg} being processed is compared
13445 with the reference file @file{ref.mpg}.
13446
13447 @example
13448 ffmpeg -i main.mpg -i ref.mpg -lavfi identity -f null -
13449 @end example
13450
13451 @section idet
13452
13453 Detect video interlacing type.
13454
13455 This filter tries to detect if the input frames are interlaced, progressive,
13456 top or bottom field first. It will also try to detect fields that are
13457 repeated between adjacent frames (a sign of telecine).
13458
13459 Single frame detection considers only immediately adjacent frames when classifying each frame.
13460 Multiple frame detection incorporates the classification history of previous frames.
13461
13462 The filter will log these metadata values:
13463
13464 @table @option
13465 @item single.current_frame
13466 Detected type of current frame using single-frame detection. One of:
13467 ``tff'' (top field first), ``bff'' (bottom field first),
13468 ``progressive'', or ``undetermined''
13469
13470 @item single.tff
13471 Cumulative number of frames detected as top field first using single-frame detection.
13472
13473 @item multiple.tff
13474 Cumulative number of frames detected as top field first using multiple-frame detection.
13475
13476 @item single.bff
13477 Cumulative number of frames detected as bottom field first using single-frame detection.
13478
13479 @item multiple.current_frame
13480 Detected type of current frame using multiple-frame detection. One of:
13481 ``tff'' (top field first), ``bff'' (bottom field first),
13482 ``progressive'', or ``undetermined''
13483
13484 @item multiple.bff
13485 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13486
13487 @item single.progressive
13488 Cumulative number of frames detected as progressive using single-frame detection.
13489
13490 @item multiple.progressive
13491 Cumulative number of frames detected as progressive using multiple-frame detection.
13492
13493 @item single.undetermined
13494 Cumulative number of frames that could not be classified using single-frame detection.
13495
13496 @item multiple.undetermined
13497 Cumulative number of frames that could not be classified using multiple-frame detection.
13498
13499 @item repeated.current_frame
13500 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13501
13502 @item repeated.neither
13503 Cumulative number of frames with no repeated field.
13504
13505 @item repeated.top
13506 Cumulative number of frames with the top field repeated from the previous frame's top field.
13507
13508 @item repeated.bottom
13509 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13510 @end table
13511
13512 The filter accepts the following options:
13513
13514 @table @option
13515 @item intl_thres
13516 Set interlacing threshold.
13517 @item prog_thres
13518 Set progressive threshold.
13519 @item rep_thres
13520 Threshold for repeated field detection.
13521 @item half_life
13522 Number of frames after which a given frame's contribution to the
13523 statistics is halved (i.e., it contributes only 0.5 to its
13524 classification). The default of 0 means that all frames seen are given
13525 full weight of 1.0 forever.
13526 @item analyze_interlaced_flag
13527 When this is not 0 then idet will use the specified number of frames to determine
13528 if the interlaced flag is accurate, it will not count undetermined frames.
13529 If the flag is found to be accurate it will be used without any further
13530 computations, if it is found to be inaccurate it will be cleared without any
13531 further computations. This allows inserting the idet filter as a low computational
13532 method to clean up the interlaced flag
13533 @end table
13534
13535 @section il
13536
13537 Deinterleave or interleave fields.
13538
13539 This filter allows one to process interlaced images fields without
13540 deinterlacing them. Deinterleaving splits the input frame into 2
13541 fields (so called half pictures). Odd lines are moved to the top
13542 half of the output image, even lines to the bottom half.
13543 You can process (filter) them independently and then re-interleave them.
13544
13545 The filter accepts the following options:
13546
13547 @table @option
13548 @item luma_mode, l
13549 @item chroma_mode, c
13550 @item alpha_mode, a
13551 Available values for @var{luma_mode}, @var{chroma_mode} and
13552 @var{alpha_mode} are:
13553
13554 @table @samp
13555 @item none
13556 Do nothing.
13557
13558 @item deinterleave, d
13559 Deinterleave fields, placing one above the other.
13560
13561 @item interleave, i
13562 Interleave fields. Reverse the effect of deinterleaving.
13563 @end table
13564 Default value is @code{none}.
13565
13566 @item luma_swap, ls
13567 @item chroma_swap, cs
13568 @item alpha_swap, as
13569 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13570 @end table
13571
13572 @subsection Commands
13573
13574 This filter supports the all above options as @ref{commands}.
13575
13576 @section inflate
13577
13578 Apply inflate effect to the video.
13579
13580 This filter replaces the pixel by the local(3x3) average by taking into account
13581 only values higher than the pixel.
13582
13583 It accepts the following options:
13584
13585 @table @option
13586 @item threshold0
13587 @item threshold1
13588 @item threshold2
13589 @item threshold3
13590 Limit the maximum change for each plane, default is 65535.
13591 If 0, plane will remain unchanged.
13592 @end table
13593
13594 @subsection Commands
13595
13596 This filter supports the all above options as @ref{commands}.
13597
13598 @section interlace
13599
13600 Simple interlacing filter from progressive contents. This interleaves upper (or
13601 lower) lines from odd frames with lower (or upper) lines from even frames,
13602 halving the frame rate and preserving image height.
13603
13604 @example
13605    Original        Original             New Frame
13606    Frame 'j'      Frame 'j+1'             (tff)
13607   ==========      ===========       ==================
13608     Line 0  -------------------->    Frame 'j' Line 0
13609     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13610     Line 2 --------------------->    Frame 'j' Line 2
13611     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13612      ...             ...                   ...
13613 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13614 @end example
13615
13616 It accepts the following optional parameters:
13617
13618 @table @option
13619 @item scan
13620 This determines whether the interlaced frame is taken from the even
13621 (tff - default) or odd (bff) lines of the progressive frame.
13622
13623 @item lowpass
13624 Vertical lowpass filter to avoid twitter interlacing and
13625 reduce moire patterns.
13626
13627 @table @samp
13628 @item 0, off
13629 Disable vertical lowpass filter
13630
13631 @item 1, linear
13632 Enable linear filter (default)
13633
13634 @item 2, complex
13635 Enable complex filter. This will slightly less reduce twitter and moire
13636 but better retain detail and subjective sharpness impression.
13637
13638 @end table
13639 @end table
13640
13641 @section kerndeint
13642
13643 Deinterlace input video by applying Donald Graft's adaptive kernel
13644 deinterling. Work on interlaced parts of a video to produce
13645 progressive frames.
13646
13647 The description of the accepted parameters follows.
13648
13649 @table @option
13650 @item thresh
13651 Set the threshold which affects the filter's tolerance when
13652 determining if a pixel line must be processed. It must be an integer
13653 in the range [0,255] and defaults to 10. A value of 0 will result in
13654 applying the process on every pixels.
13655
13656 @item map
13657 Paint pixels exceeding the threshold value to white if set to 1.
13658 Default is 0.
13659
13660 @item order
13661 Set the fields order. Swap fields if set to 1, leave fields alone if
13662 0. Default is 0.
13663
13664 @item sharp
13665 Enable additional sharpening if set to 1. Default is 0.
13666
13667 @item twoway
13668 Enable twoway sharpening if set to 1. Default is 0.
13669 @end table
13670
13671 @subsection Examples
13672
13673 @itemize
13674 @item
13675 Apply default values:
13676 @example
13677 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13678 @end example
13679
13680 @item
13681 Enable additional sharpening:
13682 @example
13683 kerndeint=sharp=1
13684 @end example
13685
13686 @item
13687 Paint processed pixels in white:
13688 @example
13689 kerndeint=map=1
13690 @end example
13691 @end itemize
13692
13693 @section kirsch
13694 Apply kirsch operator to input video stream.
13695
13696 The filter accepts the following option:
13697
13698 @table @option
13699 @item planes
13700 Set which planes will be processed, unprocessed planes will be copied.
13701 By default value 0xf, all planes will be processed.
13702
13703 @item scale
13704 Set value which will be multiplied with filtered result.
13705
13706 @item delta
13707 Set value which will be added to filtered result.
13708 @end table
13709
13710 @subsection Commands
13711
13712 This filter supports the all above options as @ref{commands}.
13713
13714 @section lagfun
13715
13716 Slowly update darker pixels.
13717
13718 This filter makes short flashes of light appear longer.
13719 This filter accepts the following options:
13720
13721 @table @option
13722 @item decay
13723 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13724
13725 @item planes
13726 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13727 @end table
13728
13729 @subsection Commands
13730
13731 This filter supports the all above options as @ref{commands}.
13732
13733 @section lenscorrection
13734
13735 Correct radial lens distortion
13736
13737 This filter can be used to correct for radial distortion as can result from the use
13738 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13739 one can use tools available for example as part of opencv or simply trial-and-error.
13740 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13741 and extract the k1 and k2 coefficients from the resulting matrix.
13742
13743 Note that effectively the same filter is available in the open-source tools Krita and
13744 Digikam from the KDE project.
13745
13746 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13747 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13748 brightness distribution, so you may want to use both filters together in certain
13749 cases, though you will have to take care of ordering, i.e. whether vignetting should
13750 be applied before or after lens correction.
13751
13752 @subsection Options
13753
13754 The filter accepts the following options:
13755
13756 @table @option
13757 @item cx
13758 Relative x-coordinate of the focal point of the image, and thereby the center of the
13759 distortion. This value has a range [0,1] and is expressed as fractions of the image
13760 width. Default is 0.5.
13761 @item cy
13762 Relative y-coordinate of the focal point of the image, and thereby the center of the
13763 distortion. This value has a range [0,1] and is expressed as fractions of the image
13764 height. Default is 0.5.
13765 @item k1
13766 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13767 no correction. Default is 0.
13768 @item k2
13769 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13770 0 means no correction. Default is 0.
13771 @item i
13772 Set interpolation type. Can be @code{nearest} or @code{bilinear}.
13773 Default is @code{nearest}.
13774 @item fc
13775 Specify the color of the unmapped pixels. For the syntax of this option,
13776 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13777 manual,ffmpeg-utils}. Default color is @code{black@@0}.
13778 @end table
13779
13780 The formula that generates the correction is:
13781
13782 @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)
13783
13784 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13785 distances from the focal point in the source and target images, respectively.
13786
13787 @subsection Commands
13788
13789 This filter supports the all above options as @ref{commands}.
13790
13791 @section lensfun
13792
13793 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13794
13795 The @code{lensfun} filter requires the camera make, camera model, and lens model
13796 to apply the lens correction. The filter will load the lensfun database and
13797 query it to find the corresponding camera and lens entries in the database. As
13798 long as these entries can be found with the given options, the filter can
13799 perform corrections on frames. Note that incomplete strings will result in the
13800 filter choosing the best match with the given options, and the filter will
13801 output the chosen camera and lens models (logged with level "info"). You must
13802 provide the make, camera model, and lens model as they are required.
13803
13804 The filter accepts the following options:
13805
13806 @table @option
13807 @item make
13808 The make of the camera (for example, "Canon"). This option is required.
13809
13810 @item model
13811 The model of the camera (for example, "Canon EOS 100D"). This option is
13812 required.
13813
13814 @item lens_model
13815 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13816 option is required.
13817
13818 @item mode
13819 The type of correction to apply. The following values are valid options:
13820
13821 @table @samp
13822 @item vignetting
13823 Enables fixing lens vignetting.
13824
13825 @item geometry
13826 Enables fixing lens geometry. This is the default.
13827
13828 @item subpixel
13829 Enables fixing chromatic aberrations.
13830
13831 @item vig_geo
13832 Enables fixing lens vignetting and lens geometry.
13833
13834 @item vig_subpixel
13835 Enables fixing lens vignetting and chromatic aberrations.
13836
13837 @item distortion
13838 Enables fixing both lens geometry and chromatic aberrations.
13839
13840 @item all
13841 Enables all possible corrections.
13842
13843 @end table
13844 @item focal_length
13845 The focal length of the image/video (zoom; expected constant for video). For
13846 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13847 range should be chosen when using that lens. Default 18.
13848
13849 @item aperture
13850 The aperture of the image/video (expected constant for video). Note that
13851 aperture is only used for vignetting correction. Default 3.5.
13852
13853 @item focus_distance
13854 The focus distance of the image/video (expected constant for video). Note that
13855 focus distance is only used for vignetting and only slightly affects the
13856 vignetting correction process. If unknown, leave it at the default value (which
13857 is 1000).
13858
13859 @item scale
13860 The scale factor which is applied after transformation. After correction the
13861 video is no longer necessarily rectangular. This parameter controls how much of
13862 the resulting image is visible. The value 0 means that a value will be chosen
13863 automatically such that there is little or no unmapped area in the output
13864 image. 1.0 means that no additional scaling is done. Lower values may result
13865 in more of the corrected image being visible, while higher values may avoid
13866 unmapped areas in the output.
13867
13868 @item target_geometry
13869 The target geometry of the output image/video. The following values are valid
13870 options:
13871
13872 @table @samp
13873 @item rectilinear (default)
13874 @item fisheye
13875 @item panoramic
13876 @item equirectangular
13877 @item fisheye_orthographic
13878 @item fisheye_stereographic
13879 @item fisheye_equisolid
13880 @item fisheye_thoby
13881 @end table
13882 @item reverse
13883 Apply the reverse of image correction (instead of correcting distortion, apply
13884 it).
13885
13886 @item interpolation
13887 The type of interpolation used when correcting distortion. The following values
13888 are valid options:
13889
13890 @table @samp
13891 @item nearest
13892 @item linear (default)
13893 @item lanczos
13894 @end table
13895 @end table
13896
13897 @subsection Examples
13898
13899 @itemize
13900 @item
13901 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13902 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13903 aperture of "8.0".
13904
13905 @example
13906 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
13907 @end example
13908
13909 @item
13910 Apply the same as before, but only for the first 5 seconds of video.
13911
13912 @example
13913 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
13914 @end example
13915
13916 @end itemize
13917
13918 @section libvmaf
13919
13920 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13921 score between two input videos.
13922
13923 The obtained VMAF score is printed through the logging system.
13924
13925 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13926 After installing the library it can be enabled using:
13927 @code{./configure --enable-libvmaf}.
13928 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13929
13930 The filter has following options:
13931
13932 @table @option
13933 @item model_path
13934 Set the model path which is to be used for SVM.
13935 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13936
13937 @item log_path
13938 Set the file path to be used to store logs.
13939
13940 @item log_fmt
13941 Set the format of the log file (csv, json or xml).
13942
13943 @item enable_transform
13944 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13945 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13946 Default value: @code{false}
13947
13948 @item phone_model
13949 Invokes the phone model which will generate VMAF scores higher than in the
13950 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13951 Default value: @code{false}
13952
13953 @item psnr
13954 Enables computing psnr along with vmaf.
13955 Default value: @code{false}
13956
13957 @item ssim
13958 Enables computing ssim along with vmaf.
13959 Default value: @code{false}
13960
13961 @item ms_ssim
13962 Enables computing ms_ssim along with vmaf.
13963 Default value: @code{false}
13964
13965 @item pool
13966 Set the pool method to be used for computing vmaf.
13967 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13968
13969 @item n_threads
13970 Set number of threads to be used when computing vmaf.
13971 Default value: @code{0}, which makes use of all available logical processors.
13972
13973 @item n_subsample
13974 Set interval for frame subsampling used when computing vmaf.
13975 Default value: @code{1}
13976
13977 @item enable_conf_interval
13978 Enables confidence interval.
13979 Default value: @code{false}
13980 @end table
13981
13982 This filter also supports the @ref{framesync} options.
13983
13984 @subsection Examples
13985 @itemize
13986 @item
13987 On the below examples the input file @file{main.mpg} being processed is
13988 compared with the reference file @file{ref.mpg}.
13989
13990 @example
13991 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13992 @end example
13993
13994 @item
13995 Example with options:
13996 @example
13997 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13998 @end example
13999
14000 @item
14001 Example with options and different containers:
14002 @example
14003 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 -
14004 @end example
14005 @end itemize
14006
14007 @section limiter
14008
14009 Limits the pixel components values to the specified range [min, max].
14010
14011 The filter accepts the following options:
14012
14013 @table @option
14014 @item min
14015 Lower bound. Defaults to the lowest allowed value for the input.
14016
14017 @item max
14018 Upper bound. Defaults to the highest allowed value for the input.
14019
14020 @item planes
14021 Specify which planes will be processed. Defaults to all available.
14022 @end table
14023
14024 @subsection Commands
14025
14026 This filter supports the all above options as @ref{commands}.
14027
14028 @section loop
14029
14030 Loop video frames.
14031
14032 The filter accepts the following options:
14033
14034 @table @option
14035 @item loop
14036 Set the number of loops. Setting this value to -1 will result in infinite loops.
14037 Default is 0.
14038
14039 @item size
14040 Set maximal size in number of frames. Default is 0.
14041
14042 @item start
14043 Set first frame of loop. Default is 0.
14044 @end table
14045
14046 @subsection Examples
14047
14048 @itemize
14049 @item
14050 Loop single first frame infinitely:
14051 @example
14052 loop=loop=-1:size=1:start=0
14053 @end example
14054
14055 @item
14056 Loop single first frame 10 times:
14057 @example
14058 loop=loop=10:size=1:start=0
14059 @end example
14060
14061 @item
14062 Loop 10 first frames 5 times:
14063 @example
14064 loop=loop=5:size=10:start=0
14065 @end example
14066 @end itemize
14067
14068 @section lut1d
14069
14070 Apply a 1D LUT to an input video.
14071
14072 The filter accepts the following options:
14073
14074 @table @option
14075 @item file
14076 Set the 1D LUT file name.
14077
14078 Currently supported formats:
14079 @table @samp
14080 @item cube
14081 Iridas
14082 @item csp
14083 cineSpace
14084 @end table
14085
14086 @item interp
14087 Select interpolation mode.
14088
14089 Available values are:
14090
14091 @table @samp
14092 @item nearest
14093 Use values from the nearest defined point.
14094 @item linear
14095 Interpolate values using the linear interpolation.
14096 @item cosine
14097 Interpolate values using the cosine interpolation.
14098 @item cubic
14099 Interpolate values using the cubic interpolation.
14100 @item spline
14101 Interpolate values using the spline interpolation.
14102 @end table
14103 @end table
14104
14105 @subsection Commands
14106
14107 This filter supports the all above options as @ref{commands}.
14108
14109 @anchor{lut3d}
14110 @section lut3d
14111
14112 Apply a 3D LUT to an input video.
14113
14114 The filter accepts the following options:
14115
14116 @table @option
14117 @item file
14118 Set the 3D LUT file name.
14119
14120 Currently supported formats:
14121 @table @samp
14122 @item 3dl
14123 AfterEffects
14124 @item cube
14125 Iridas
14126 @item dat
14127 DaVinci
14128 @item m3d
14129 Pandora
14130 @item csp
14131 cineSpace
14132 @end table
14133 @item interp
14134 Select interpolation mode.
14135
14136 Available values are:
14137
14138 @table @samp
14139 @item nearest
14140 Use values from the nearest defined point.
14141 @item trilinear
14142 Interpolate values using the 8 points defining a cube.
14143 @item tetrahedral
14144 Interpolate values using a tetrahedron.
14145 @item pyramid
14146 Interpolate values using a pyramid.
14147 @item prism
14148 Interpolate values using a prism.
14149 @end table
14150 @end table
14151
14152 @subsection Commands
14153
14154 This filter supports the @code{interp} option as @ref{commands}.
14155
14156 @section lumakey
14157
14158 Turn certain luma values into transparency.
14159
14160 The filter accepts the following options:
14161
14162 @table @option
14163 @item threshold
14164 Set the luma which will be used as base for transparency.
14165 Default value is @code{0}.
14166
14167 @item tolerance
14168 Set the range of luma values to be keyed out.
14169 Default value is @code{0.01}.
14170
14171 @item softness
14172 Set the range of softness. Default value is @code{0}.
14173 Use this to control gradual transition from zero to full transparency.
14174 @end table
14175
14176 @subsection Commands
14177 This filter supports same @ref{commands} as options.
14178 The command accepts the same syntax of the corresponding option.
14179
14180 If the specified expression is not valid, it is kept at its current
14181 value.
14182
14183 @section lut, lutrgb, lutyuv
14184
14185 Compute a look-up table for binding each pixel component input value
14186 to an output value, and apply it to the input video.
14187
14188 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
14189 to an RGB input video.
14190
14191 These filters accept the following parameters:
14192 @table @option
14193 @item c0
14194 set first pixel component expression
14195 @item c1
14196 set second pixel component expression
14197 @item c2
14198 set third pixel component expression
14199 @item c3
14200 set fourth pixel component expression, corresponds to the alpha component
14201
14202 @item r
14203 set red component expression
14204 @item g
14205 set green component expression
14206 @item b
14207 set blue component expression
14208 @item a
14209 alpha component expression
14210
14211 @item y
14212 set Y/luminance component expression
14213 @item u
14214 set U/Cb component expression
14215 @item v
14216 set V/Cr component expression
14217 @end table
14218
14219 Each of them specifies the expression to use for computing the lookup table for
14220 the corresponding pixel component values.
14221
14222 The exact component associated to each of the @var{c*} options depends on the
14223 format in input.
14224
14225 The @var{lut} filter requires either YUV or RGB pixel formats in input,
14226 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
14227
14228 The expressions can contain the following constants and functions:
14229
14230 @table @option
14231 @item w
14232 @item h
14233 The input width and height.
14234
14235 @item val
14236 The input value for the pixel component.
14237
14238 @item clipval
14239 The input value, clipped to the @var{minval}-@var{maxval} range.
14240
14241 @item maxval
14242 The maximum value for the pixel component.
14243
14244 @item minval
14245 The minimum value for the pixel component.
14246
14247 @item negval
14248 The negated value for the pixel component value, clipped to the
14249 @var{minval}-@var{maxval} range; it corresponds to the expression
14250 "maxval-clipval+minval".
14251
14252 @item clip(val)
14253 The computed value in @var{val}, clipped to the
14254 @var{minval}-@var{maxval} range.
14255
14256 @item gammaval(gamma)
14257 The computed gamma correction value of the pixel component value,
14258 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
14259 expression
14260 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
14261
14262 @end table
14263
14264 All expressions default to "val".
14265
14266 @subsection Commands
14267
14268 This filter supports same @ref{commands} as options.
14269
14270 @subsection Examples
14271
14272 @itemize
14273 @item
14274 Negate input video:
14275 @example
14276 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
14277 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
14278 @end example
14279
14280 The above is the same as:
14281 @example
14282 lutrgb="r=negval:g=negval:b=negval"
14283 lutyuv="y=negval:u=negval:v=negval"
14284 @end example
14285
14286 @item
14287 Negate luminance:
14288 @example
14289 lutyuv=y=negval
14290 @end example
14291
14292 @item
14293 Remove chroma components, turning the video into a graytone image:
14294 @example
14295 lutyuv="u=128:v=128"
14296 @end example
14297
14298 @item
14299 Apply a luma burning effect:
14300 @example
14301 lutyuv="y=2*val"
14302 @end example
14303
14304 @item
14305 Remove green and blue components:
14306 @example
14307 lutrgb="g=0:b=0"
14308 @end example
14309
14310 @item
14311 Set a constant alpha channel value on input:
14312 @example
14313 format=rgba,lutrgb=a="maxval-minval/2"
14314 @end example
14315
14316 @item
14317 Correct luminance gamma by a factor of 0.5:
14318 @example
14319 lutyuv=y=gammaval(0.5)
14320 @end example
14321
14322 @item
14323 Discard least significant bits of luma:
14324 @example
14325 lutyuv=y='bitand(val, 128+64+32)'
14326 @end example
14327
14328 @item
14329 Technicolor like effect:
14330 @example
14331 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
14332 @end example
14333 @end itemize
14334
14335 @section lut2, tlut2
14336
14337 The @code{lut2} filter takes two input streams and outputs one
14338 stream.
14339
14340 The @code{tlut2} (time lut2) filter takes two consecutive frames
14341 from one single stream.
14342
14343 This filter accepts the following parameters:
14344 @table @option
14345 @item c0
14346 set first pixel component expression
14347 @item c1
14348 set second pixel component expression
14349 @item c2
14350 set third pixel component expression
14351 @item c3
14352 set fourth pixel component expression, corresponds to the alpha component
14353
14354 @item d
14355 set output bit depth, only available for @code{lut2} filter. By default is 0,
14356 which means bit depth is automatically picked from first input format.
14357 @end table
14358
14359 The @code{lut2} filter also supports the @ref{framesync} options.
14360
14361 Each of them specifies the expression to use for computing the lookup table for
14362 the corresponding pixel component values.
14363
14364 The exact component associated to each of the @var{c*} options depends on the
14365 format in inputs.
14366
14367 The expressions can contain the following constants:
14368
14369 @table @option
14370 @item w
14371 @item h
14372 The input width and height.
14373
14374 @item x
14375 The first input value for the pixel component.
14376
14377 @item y
14378 The second input value for the pixel component.
14379
14380 @item bdx
14381 The first input video bit depth.
14382
14383 @item bdy
14384 The second input video bit depth.
14385 @end table
14386
14387 All expressions default to "x".
14388
14389 @subsection Commands
14390
14391 This filter supports the all above options as @ref{commands} except option @code{d}.
14392
14393 @subsection Examples
14394
14395 @itemize
14396 @item
14397 Highlight differences between two RGB video streams:
14398 @example
14399 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)'
14400 @end example
14401
14402 @item
14403 Highlight differences between two YUV video streams:
14404 @example
14405 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)'
14406 @end example
14407
14408 @item
14409 Show max difference between two video streams:
14410 @example
14411 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)))'
14412 @end example
14413 @end itemize
14414
14415 @section maskedclamp
14416
14417 Clamp the first input stream with the second input and third input stream.
14418
14419 Returns the value of first stream to be between second input
14420 stream - @code{undershoot} and third input stream + @code{overshoot}.
14421
14422 This filter accepts the following options:
14423 @table @option
14424 @item undershoot
14425 Default value is @code{0}.
14426
14427 @item overshoot
14428 Default value is @code{0}.
14429
14430 @item planes
14431 Set which planes will be processed as bitmap, unprocessed planes will be
14432 copied from first stream.
14433 By default value 0xf, all planes will be processed.
14434 @end table
14435
14436 @subsection Commands
14437
14438 This filter supports the all above options as @ref{commands}.
14439
14440 @section maskedmax
14441
14442 Merge the second and third input stream into output stream using absolute differences
14443 between second input stream and first input stream and absolute difference between
14444 third input stream and first input stream. The picked value will be from second input
14445 stream if second absolute difference is greater than first one or from third input stream
14446 otherwise.
14447
14448 This filter accepts the following options:
14449 @table @option
14450 @item planes
14451 Set which planes will be processed as bitmap, unprocessed planes will be
14452 copied from first stream.
14453 By default value 0xf, all planes will be processed.
14454 @end table
14455
14456 @subsection Commands
14457
14458 This filter supports the all above options as @ref{commands}.
14459
14460 @section maskedmerge
14461
14462 Merge the first input stream with the second input stream using per pixel
14463 weights in the third input stream.
14464
14465 A value of 0 in the third stream pixel component means that pixel component
14466 from first stream is returned unchanged, while maximum value (eg. 255 for
14467 8-bit videos) means that pixel component from second stream is returned
14468 unchanged. Intermediate values define the amount of merging between both
14469 input stream's pixel components.
14470
14471 This filter accepts the following options:
14472 @table @option
14473 @item planes
14474 Set which planes will be processed as bitmap, unprocessed planes will be
14475 copied from first stream.
14476 By default value 0xf, all planes will be processed.
14477 @end table
14478
14479 @subsection Commands
14480
14481 This filter supports the all above options as @ref{commands}.
14482
14483 @section maskedmin
14484
14485 Merge the second and third input stream into output stream using absolute differences
14486 between second input stream and first input stream and absolute difference between
14487 third input stream and first input stream. The picked value will be from second input
14488 stream if second absolute difference is less than first one or from third input stream
14489 otherwise.
14490
14491 This filter accepts the following options:
14492 @table @option
14493 @item planes
14494 Set which planes will be processed as bitmap, unprocessed planes will be
14495 copied from first stream.
14496 By default value 0xf, all planes will be processed.
14497 @end table
14498
14499 @subsection Commands
14500
14501 This filter supports the all above options as @ref{commands}.
14502
14503 @section maskedthreshold
14504 Pick pixels comparing absolute difference of two video streams with fixed
14505 threshold.
14506
14507 If absolute difference between pixel component of first and second video
14508 stream is equal or lower than user supplied threshold than pixel component
14509 from first video stream is picked, otherwise pixel component from second
14510 video stream is picked.
14511
14512 This filter accepts the following options:
14513 @table @option
14514 @item threshold
14515 Set threshold used when picking pixels from absolute difference from two input
14516 video streams.
14517
14518 @item planes
14519 Set which planes will be processed as bitmap, unprocessed planes will be
14520 copied from second stream.
14521 By default value 0xf, all planes will be processed.
14522 @end table
14523
14524 @subsection Commands
14525
14526 This filter supports the all above options as @ref{commands}.
14527
14528 @section maskfun
14529 Create mask from input video.
14530
14531 For example it is useful to create motion masks after @code{tblend} filter.
14532
14533 This filter accepts the following options:
14534
14535 @table @option
14536 @item low
14537 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14538
14539 @item high
14540 Set high threshold. Any pixel component higher than this value will be set to max value
14541 allowed for current pixel format.
14542
14543 @item planes
14544 Set planes to filter, by default all available planes are filtered.
14545
14546 @item fill
14547 Fill all frame pixels with this value.
14548
14549 @item sum
14550 Set max average pixel value for frame. If sum of all pixel components is higher that this
14551 average, output frame will be completely filled with value set by @var{fill} option.
14552 Typically useful for scene changes when used in combination with @code{tblend} filter.
14553 @end table
14554
14555 @subsection Commands
14556
14557 This filter supports the all above options as @ref{commands}.
14558
14559 @section mcdeint
14560
14561 Apply motion-compensation deinterlacing.
14562
14563 It needs one field per frame as input and must thus be used together
14564 with yadif=1/3 or equivalent.
14565
14566 This filter accepts the following options:
14567 @table @option
14568 @item mode
14569 Set the deinterlacing mode.
14570
14571 It accepts one of the following values:
14572 @table @samp
14573 @item fast
14574 @item medium
14575 @item slow
14576 use iterative motion estimation
14577 @item extra_slow
14578 like @samp{slow}, but use multiple reference frames.
14579 @end table
14580 Default value is @samp{fast}.
14581
14582 @item parity
14583 Set the picture field parity assumed for the input video. It must be
14584 one of the following values:
14585
14586 @table @samp
14587 @item 0, tff
14588 assume top field first
14589 @item 1, bff
14590 assume bottom field first
14591 @end table
14592
14593 Default value is @samp{bff}.
14594
14595 @item qp
14596 Set per-block quantization parameter (QP) used by the internal
14597 encoder.
14598
14599 Higher values should result in a smoother motion vector field but less
14600 optimal individual vectors. Default value is 1.
14601 @end table
14602
14603 @section median
14604
14605 Pick median pixel from certain rectangle defined by radius.
14606
14607 This filter accepts the following options:
14608
14609 @table @option
14610 @item radius
14611 Set horizontal radius size. Default value is @code{1}.
14612 Allowed range is integer from 1 to 127.
14613
14614 @item planes
14615 Set which planes to process. Default is @code{15}, which is all available planes.
14616
14617 @item radiusV
14618 Set vertical radius size. Default value is @code{0}.
14619 Allowed range is integer from 0 to 127.
14620 If it is 0, value will be picked from horizontal @code{radius} option.
14621
14622 @item percentile
14623 Set median percentile. Default value is @code{0.5}.
14624 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14625 minimum values, and @code{1} maximum values.
14626 @end table
14627
14628 @subsection Commands
14629 This filter supports same @ref{commands} as options.
14630 The command accepts the same syntax of the corresponding option.
14631
14632 If the specified expression is not valid, it is kept at its current
14633 value.
14634
14635 @section mergeplanes
14636
14637 Merge color channel components from several video streams.
14638
14639 The filter accepts up to 4 input streams, and merge selected input
14640 planes to the output video.
14641
14642 This filter accepts the following options:
14643 @table @option
14644 @item mapping
14645 Set input to output plane mapping. Default is @code{0}.
14646
14647 The mappings is specified as a bitmap. It should be specified as a
14648 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14649 mapping for the first plane of the output stream. 'A' sets the number of
14650 the input stream to use (from 0 to 3), and 'a' the plane number of the
14651 corresponding input to use (from 0 to 3). The rest of the mappings is
14652 similar, 'Bb' describes the mapping for the output stream second
14653 plane, 'Cc' describes the mapping for the output stream third plane and
14654 'Dd' describes the mapping for the output stream fourth plane.
14655
14656 @item format
14657 Set output pixel format. Default is @code{yuva444p}.
14658 @end table
14659
14660 @subsection Examples
14661
14662 @itemize
14663 @item
14664 Merge three gray video streams of same width and height into single video stream:
14665 @example
14666 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14667 @end example
14668
14669 @item
14670 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14671 @example
14672 [a0][a1]mergeplanes=0x00010210:yuva444p
14673 @end example
14674
14675 @item
14676 Swap Y and A plane in yuva444p stream:
14677 @example
14678 format=yuva444p,mergeplanes=0x03010200:yuva444p
14679 @end example
14680
14681 @item
14682 Swap U and V plane in yuv420p stream:
14683 @example
14684 format=yuv420p,mergeplanes=0x000201:yuv420p
14685 @end example
14686
14687 @item
14688 Cast a rgb24 clip to yuv444p:
14689 @example
14690 format=rgb24,mergeplanes=0x000102:yuv444p
14691 @end example
14692 @end itemize
14693
14694 @section mestimate
14695
14696 Estimate and export motion vectors using block matching algorithms.
14697 Motion vectors are stored in frame side data to be used by other filters.
14698
14699 This filter accepts the following options:
14700 @table @option
14701 @item method
14702 Specify the motion estimation method. Accepts one of the following values:
14703
14704 @table @samp
14705 @item esa
14706 Exhaustive search algorithm.
14707 @item tss
14708 Three step search algorithm.
14709 @item tdls
14710 Two dimensional logarithmic search algorithm.
14711 @item ntss
14712 New three step search algorithm.
14713 @item fss
14714 Four step search algorithm.
14715 @item ds
14716 Diamond search algorithm.
14717 @item hexbs
14718 Hexagon-based search algorithm.
14719 @item epzs
14720 Enhanced predictive zonal search algorithm.
14721 @item umh
14722 Uneven multi-hexagon search algorithm.
14723 @end table
14724 Default value is @samp{esa}.
14725
14726 @item mb_size
14727 Macroblock size. Default @code{16}.
14728
14729 @item search_param
14730 Search parameter. Default @code{7}.
14731 @end table
14732
14733 @section midequalizer
14734
14735 Apply Midway Image Equalization effect using two video streams.
14736
14737 Midway Image Equalization adjusts a pair of images to have the same
14738 histogram, while maintaining their dynamics as much as possible. It's
14739 useful for e.g. matching exposures from a pair of stereo cameras.
14740
14741 This filter has two inputs and one output, which must be of same pixel format, but
14742 may be of different sizes. The output of filter is first input adjusted with
14743 midway histogram of both inputs.
14744
14745 This filter accepts the following option:
14746
14747 @table @option
14748 @item planes
14749 Set which planes to process. Default is @code{15}, which is all available planes.
14750 @end table
14751
14752 @section minterpolate
14753
14754 Convert the video to specified frame rate using motion interpolation.
14755
14756 This filter accepts the following options:
14757 @table @option
14758 @item fps
14759 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}.
14760
14761 @item mi_mode
14762 Motion interpolation mode. Following values are accepted:
14763 @table @samp
14764 @item dup
14765 Duplicate previous or next frame for interpolating new ones.
14766 @item blend
14767 Blend source frames. Interpolated frame is mean of previous and next frames.
14768 @item mci
14769 Motion compensated interpolation. Following options are effective when this mode is selected:
14770
14771 @table @samp
14772 @item mc_mode
14773 Motion compensation mode. Following values are accepted:
14774 @table @samp
14775 @item obmc
14776 Overlapped block motion compensation.
14777 @item aobmc
14778 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14779 @end table
14780 Default mode is @samp{obmc}.
14781
14782 @item me_mode
14783 Motion estimation mode. Following values are accepted:
14784 @table @samp
14785 @item bidir
14786 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14787 @item bilat
14788 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14789 @end table
14790 Default mode is @samp{bilat}.
14791
14792 @item me
14793 The algorithm to be used for motion estimation. Following values are accepted:
14794 @table @samp
14795 @item esa
14796 Exhaustive search algorithm.
14797 @item tss
14798 Three step search algorithm.
14799 @item tdls
14800 Two dimensional logarithmic search algorithm.
14801 @item ntss
14802 New three step search algorithm.
14803 @item fss
14804 Four step search algorithm.
14805 @item ds
14806 Diamond search algorithm.
14807 @item hexbs
14808 Hexagon-based search algorithm.
14809 @item epzs
14810 Enhanced predictive zonal search algorithm.
14811 @item umh
14812 Uneven multi-hexagon search algorithm.
14813 @end table
14814 Default algorithm is @samp{epzs}.
14815
14816 @item mb_size
14817 Macroblock size. Default @code{16}.
14818
14819 @item search_param
14820 Motion estimation search parameter. Default @code{32}.
14821
14822 @item vsbmc
14823 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).
14824 @end table
14825 @end table
14826
14827 @item scd
14828 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:
14829 @table @samp
14830 @item none
14831 Disable scene change detection.
14832 @item fdiff
14833 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14834 @end table
14835 Default method is @samp{fdiff}.
14836
14837 @item scd_threshold
14838 Scene change detection threshold. Default is @code{10.}.
14839 @end table
14840
14841 @section mix
14842
14843 Mix several video input streams into one video stream.
14844
14845 A description of the accepted options follows.
14846
14847 @table @option
14848 @item inputs
14849 The number of inputs. If unspecified, it defaults to 2.
14850
14851 @item weights
14852 Specify weight of each input video stream as sequence.
14853 Each weight is separated by space. If number of weights
14854 is smaller than number of @var{frames} last specified
14855 weight will be used for all remaining unset weights.
14856
14857 @item scale
14858 Specify scale, if it is set it will be multiplied with sum
14859 of each weight multiplied with pixel values to give final destination
14860 pixel value. By default @var{scale} is auto scaled to sum of weights.
14861
14862 @item duration
14863 Specify how end of stream is determined.
14864 @table @samp
14865 @item longest
14866 The duration of the longest input. (default)
14867
14868 @item shortest
14869 The duration of the shortest input.
14870
14871 @item first
14872 The duration of the first input.
14873 @end table
14874 @end table
14875
14876 @subsection Commands
14877
14878 This filter supports the following commands:
14879 @table @option
14880 @item weights
14881 @item scale
14882 Syntax is same as option with same name.
14883 @end table
14884
14885 @section monochrome
14886 Convert video to gray using custom color filter.
14887
14888 A description of the accepted options follows.
14889
14890 @table @option
14891 @item cb
14892 Set the chroma blue spot. Allowed range is from -1 to 1.
14893 Default value is 0.
14894
14895 @item cr
14896 Set the chroma red spot. Allowed range is from -1 to 1.
14897 Default value is 0.
14898
14899 @item size
14900 Set the color filter size. Allowed range is from .1 to 10.
14901 Default value is 1.
14902
14903 @item high
14904 Set the highlights strength. Allowed range is from 0 to 1.
14905 Default value is 0.
14906 @end table
14907
14908 @subsection Commands
14909
14910 This filter supports the all above options as @ref{commands}.
14911
14912 @section mpdecimate
14913
14914 Drop frames that do not differ greatly from the previous frame in
14915 order to reduce frame rate.
14916
14917 The main use of this filter is for very-low-bitrate encoding
14918 (e.g. streaming over dialup modem), but it could in theory be used for
14919 fixing movies that were inverse-telecined incorrectly.
14920
14921 A description of the accepted options follows.
14922
14923 @table @option
14924 @item max
14925 Set the maximum number of consecutive frames which can be dropped (if
14926 positive), or the minimum interval between dropped frames (if
14927 negative). If the value is 0, the frame is dropped disregarding the
14928 number of previous sequentially dropped frames.
14929
14930 Default value is 0.
14931
14932 @item hi
14933 @item lo
14934 @item frac
14935 Set the dropping threshold values.
14936
14937 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14938 represent actual pixel value differences, so a threshold of 64
14939 corresponds to 1 unit of difference for each pixel, or the same spread
14940 out differently over the block.
14941
14942 A frame is a candidate for dropping if no 8x8 blocks differ by more
14943 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14944 meaning the whole image) differ by more than a threshold of @option{lo}.
14945
14946 Default value for @option{hi} is 64*12, default value for @option{lo} is
14947 64*5, and default value for @option{frac} is 0.33.
14948 @end table
14949
14950 @section msad
14951
14952 Obtain the MSAD (Mean Sum of Absolute Differences) between two input videos.
14953
14954 This filter takes two input videos.
14955
14956 Both input videos must have the same resolution and pixel format for
14957 this filter to work correctly. Also it assumes that both inputs
14958 have the same number of frames, which are compared one by one.
14959
14960 The obtained per component, average, min and max MSAD is printed through
14961 the logging system.
14962
14963 The filter stores the calculated MSAD of each frame in frame metadata.
14964
14965 In the below example the input file @file{main.mpg} being processed is compared
14966 with the reference file @file{ref.mpg}.
14967
14968 @example
14969 ffmpeg -i main.mpg -i ref.mpg -lavfi msad -f null -
14970 @end example
14971
14972 @section negate
14973
14974 Negate (invert) the input video.
14975
14976 It accepts the following option:
14977
14978 @table @option
14979
14980 @item negate_alpha
14981 With value 1, it negates the alpha component, if present. Default value is 0.
14982 @end table
14983
14984 @subsection Commands
14985
14986 This filter supports same @ref{commands} as options.
14987
14988 @anchor{nlmeans}
14989 @section nlmeans
14990
14991 Denoise frames using Non-Local Means algorithm.
14992
14993 Each pixel is adjusted by looking for other pixels with similar contexts. This
14994 context similarity is defined by comparing their surrounding patches of size
14995 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14996 around the pixel.
14997
14998 Note that the research area defines centers for patches, which means some
14999 patches will be made of pixels outside that research area.
15000
15001 The filter accepts the following options.
15002
15003 @table @option
15004 @item s
15005 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
15006
15007 @item p
15008 Set patch size. Default is 7. Must be odd number in range [0, 99].
15009
15010 @item pc
15011 Same as @option{p} but for chroma planes.
15012
15013 The default value is @var{0} and means automatic.
15014
15015 @item r
15016 Set research size. Default is 15. Must be odd number in range [0, 99].
15017
15018 @item rc
15019 Same as @option{r} but for chroma planes.
15020
15021 The default value is @var{0} and means automatic.
15022 @end table
15023
15024 @section nnedi
15025
15026 Deinterlace video using neural network edge directed interpolation.
15027
15028 This filter accepts the following options:
15029
15030 @table @option
15031 @item weights
15032 Mandatory option, without binary file filter can not work.
15033 Currently file can be found here:
15034 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
15035
15036 @item deint
15037 Set which frames to deinterlace, by default it is @code{all}.
15038 Can be @code{all} or @code{interlaced}.
15039
15040 @item field
15041 Set mode of operation.
15042
15043 Can be one of the following:
15044
15045 @table @samp
15046 @item af
15047 Use frame flags, both fields.
15048 @item a
15049 Use frame flags, single field.
15050 @item t
15051 Use top field only.
15052 @item b
15053 Use bottom field only.
15054 @item tf
15055 Use both fields, top first.
15056 @item bf
15057 Use both fields, bottom first.
15058 @end table
15059
15060 @item planes
15061 Set which planes to process, by default filter process all frames.
15062
15063 @item nsize
15064 Set size of local neighborhood around each pixel, used by the predictor neural
15065 network.
15066
15067 Can be one of the following:
15068
15069 @table @samp
15070 @item s8x6
15071 @item s16x6
15072 @item s32x6
15073 @item s48x6
15074 @item s8x4
15075 @item s16x4
15076 @item s32x4
15077 @end table
15078
15079 @item nns
15080 Set the number of neurons in predictor neural network.
15081 Can be one of the following:
15082
15083 @table @samp
15084 @item n16
15085 @item n32
15086 @item n64
15087 @item n128
15088 @item n256
15089 @end table
15090
15091 @item qual
15092 Controls the number of different neural network predictions that are blended
15093 together to compute the final output value. Can be @code{fast}, default or
15094 @code{slow}.
15095
15096 @item etype
15097 Set which set of weights to use in the predictor.
15098 Can be one of the following:
15099
15100 @table @samp
15101 @item a, abs
15102 weights trained to minimize absolute error
15103 @item s, mse
15104 weights trained to minimize squared error
15105 @end table
15106
15107 @item pscrn
15108 Controls whether or not the prescreener neural network is used to decide
15109 which pixels should be processed by the predictor neural network and which
15110 can be handled by simple cubic interpolation.
15111 The prescreener is trained to know whether cubic interpolation will be
15112 sufficient for a pixel or whether it should be predicted by the predictor nn.
15113 The computational complexity of the prescreener nn is much less than that of
15114 the predictor nn. Since most pixels can be handled by cubic interpolation,
15115 using the prescreener generally results in much faster processing.
15116 The prescreener is pretty accurate, so the difference between using it and not
15117 using it is almost always unnoticeable.
15118
15119 Can be one of the following:
15120
15121 @table @samp
15122 @item none
15123 @item original
15124 @item new
15125 @item new2
15126 @item new3
15127 @end table
15128
15129 Default is @code{new}.
15130 @end table
15131
15132 @subsection Commands
15133 This filter supports same @ref{commands} as options, excluding @var{weights} option.
15134
15135 @section noformat
15136
15137 Force libavfilter not to use any of the specified pixel formats for the
15138 input to the next filter.
15139
15140 It accepts the following parameters:
15141 @table @option
15142
15143 @item pix_fmts
15144 A '|'-separated list of pixel format names, such as
15145 pix_fmts=yuv420p|monow|rgb24".
15146
15147 @end table
15148
15149 @subsection Examples
15150
15151 @itemize
15152 @item
15153 Force libavfilter to use a format different from @var{yuv420p} for the
15154 input to the vflip filter:
15155 @example
15156 noformat=pix_fmts=yuv420p,vflip
15157 @end example
15158
15159 @item
15160 Convert the input video to any of the formats not contained in the list:
15161 @example
15162 noformat=yuv420p|yuv444p|yuv410p
15163 @end example
15164 @end itemize
15165
15166 @section noise
15167
15168 Add noise on video input frame.
15169
15170 The filter accepts the following options:
15171
15172 @table @option
15173 @item all_seed
15174 @item c0_seed
15175 @item c1_seed
15176 @item c2_seed
15177 @item c3_seed
15178 Set noise seed for specific pixel component or all pixel components in case
15179 of @var{all_seed}. Default value is @code{123457}.
15180
15181 @item all_strength, alls
15182 @item c0_strength, c0s
15183 @item c1_strength, c1s
15184 @item c2_strength, c2s
15185 @item c3_strength, c3s
15186 Set noise strength for specific pixel component or all pixel components in case
15187 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
15188
15189 @item all_flags, allf
15190 @item c0_flags, c0f
15191 @item c1_flags, c1f
15192 @item c2_flags, c2f
15193 @item c3_flags, c3f
15194 Set pixel component flags or set flags for all components if @var{all_flags}.
15195 Available values for component flags are:
15196 @table @samp
15197 @item a
15198 averaged temporal noise (smoother)
15199 @item p
15200 mix random noise with a (semi)regular pattern
15201 @item t
15202 temporal noise (noise pattern changes between frames)
15203 @item u
15204 uniform noise (gaussian otherwise)
15205 @end table
15206 @end table
15207
15208 @subsection Examples
15209
15210 Add temporal and uniform noise to input video:
15211 @example
15212 noise=alls=20:allf=t+u
15213 @end example
15214
15215 @section normalize
15216
15217 Normalize RGB video (aka histogram stretching, contrast stretching).
15218 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
15219
15220 For each channel of each frame, the filter computes the input range and maps
15221 it linearly to the user-specified output range. The output range defaults
15222 to the full dynamic range from pure black to pure white.
15223
15224 Temporal smoothing can be used on the input range to reduce flickering (rapid
15225 changes in brightness) caused when small dark or bright objects enter or leave
15226 the scene. This is similar to the auto-exposure (automatic gain control) on a
15227 video camera, and, like a video camera, it may cause a period of over- or
15228 under-exposure of the video.
15229
15230 The R,G,B channels can be normalized independently, which may cause some
15231 color shifting, or linked together as a single channel, which prevents
15232 color shifting. Linked normalization preserves hue. Independent normalization
15233 does not, so it can be used to remove some color casts. Independent and linked
15234 normalization can be combined in any ratio.
15235
15236 The normalize filter accepts the following options:
15237
15238 @table @option
15239 @item blackpt
15240 @item whitept
15241 Colors which define the output range. The minimum input value is mapped to
15242 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
15243 The defaults are black and white respectively. Specifying white for
15244 @var{blackpt} and black for @var{whitept} will give color-inverted,
15245 normalized video. Shades of grey can be used to reduce the dynamic range
15246 (contrast). Specifying saturated colors here can create some interesting
15247 effects.
15248
15249 @item smoothing
15250 The number of previous frames to use for temporal smoothing. The input range
15251 of each channel is smoothed using a rolling average over the current frame
15252 and the @var{smoothing} previous frames. The default is 0 (no temporal
15253 smoothing).
15254
15255 @item independence
15256 Controls the ratio of independent (color shifting) channel normalization to
15257 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
15258 independent. Defaults to 1.0 (fully independent).
15259
15260 @item strength
15261 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
15262 expensive no-op. Defaults to 1.0 (full strength).
15263
15264 @end table
15265
15266 @subsection Commands
15267 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
15268 The command accepts the same syntax of the corresponding option.
15269
15270 If the specified expression is not valid, it is kept at its current
15271 value.
15272
15273 @subsection Examples
15274
15275 Stretch video contrast to use the full dynamic range, with no temporal
15276 smoothing; may flicker depending on the source content:
15277 @example
15278 normalize=blackpt=black:whitept=white:smoothing=0
15279 @end example
15280
15281 As above, but with 50 frames of temporal smoothing; flicker should be
15282 reduced, depending on the source content:
15283 @example
15284 normalize=blackpt=black:whitept=white:smoothing=50
15285 @end example
15286
15287 As above, but with hue-preserving linked channel normalization:
15288 @example
15289 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
15290 @end example
15291
15292 As above, but with half strength:
15293 @example
15294 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
15295 @end example
15296
15297 Map the darkest input color to red, the brightest input color to cyan:
15298 @example
15299 normalize=blackpt=red:whitept=cyan
15300 @end example
15301
15302 @section null
15303
15304 Pass the video source unchanged to the output.
15305
15306 @section ocr
15307 Optical Character Recognition
15308
15309 This filter uses Tesseract for optical character recognition. To enable
15310 compilation of this filter, you need to configure FFmpeg with
15311 @code{--enable-libtesseract}.
15312
15313 It accepts the following options:
15314
15315 @table @option
15316 @item datapath
15317 Set datapath to tesseract data. Default is to use whatever was
15318 set at installation.
15319
15320 @item language
15321 Set language, default is "eng".
15322
15323 @item whitelist
15324 Set character whitelist.
15325
15326 @item blacklist
15327 Set character blacklist.
15328 @end table
15329
15330 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
15331 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
15332
15333 @section ocv
15334
15335 Apply a video transform using libopencv.
15336
15337 To enable this filter, install the libopencv library and headers and
15338 configure FFmpeg with @code{--enable-libopencv}.
15339
15340 It accepts the following parameters:
15341
15342 @table @option
15343
15344 @item filter_name
15345 The name of the libopencv filter to apply.
15346
15347 @item filter_params
15348 The parameters to pass to the libopencv filter. If not specified, the default
15349 values are assumed.
15350
15351 @end table
15352
15353 Refer to the official libopencv documentation for more precise
15354 information:
15355 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
15356
15357 Several libopencv filters are supported; see the following subsections.
15358
15359 @anchor{dilate}
15360 @subsection dilate
15361
15362 Dilate an image by using a specific structuring element.
15363 It corresponds to the libopencv function @code{cvDilate}.
15364
15365 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
15366
15367 @var{struct_el} represents a structuring element, and has the syntax:
15368 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
15369
15370 @var{cols} and @var{rows} represent the number of columns and rows of
15371 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
15372 point, and @var{shape} the shape for the structuring element. @var{shape}
15373 must be "rect", "cross", "ellipse", or "custom".
15374
15375 If the value for @var{shape} is "custom", it must be followed by a
15376 string of the form "=@var{filename}". The file with name
15377 @var{filename} is assumed to represent a binary image, with each
15378 printable character corresponding to a bright pixel. When a custom
15379 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
15380 or columns and rows of the read file are assumed instead.
15381
15382 The default value for @var{struct_el} is "3x3+0x0/rect".
15383
15384 @var{nb_iterations} specifies the number of times the transform is
15385 applied to the image, and defaults to 1.
15386
15387 Some examples:
15388 @example
15389 # Use the default values
15390 ocv=dilate
15391
15392 # Dilate using a structuring element with a 5x5 cross, iterating two times
15393 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
15394
15395 # Read the shape from the file diamond.shape, iterating two times.
15396 # The file diamond.shape may contain a pattern of characters like this
15397 #   *
15398 #  ***
15399 # *****
15400 #  ***
15401 #   *
15402 # The specified columns and rows are ignored
15403 # but the anchor point coordinates are not
15404 ocv=dilate:0x0+2x2/custom=diamond.shape|2
15405 @end example
15406
15407 @subsection erode
15408
15409 Erode an image by using a specific structuring element.
15410 It corresponds to the libopencv function @code{cvErode}.
15411
15412 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
15413 with the same syntax and semantics as the @ref{dilate} filter.
15414
15415 @subsection smooth
15416
15417 Smooth the input video.
15418
15419 The filter takes the following parameters:
15420 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
15421
15422 @var{type} is the type of smooth filter to apply, and must be one of
15423 the following values: "blur", "blur_no_scale", "median", "gaussian",
15424 or "bilateral". The default value is "gaussian".
15425
15426 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
15427 depends on the smooth type. @var{param1} and
15428 @var{param2} accept integer positive values or 0. @var{param3} and
15429 @var{param4} accept floating point values.
15430
15431 The default value for @var{param1} is 3. The default value for the
15432 other parameters is 0.
15433
15434 These parameters correspond to the parameters assigned to the
15435 libopencv function @code{cvSmooth}.
15436
15437 @section oscilloscope
15438
15439 2D Video Oscilloscope.
15440
15441 Useful to measure spatial impulse, step responses, chroma delays, etc.
15442
15443 It accepts the following parameters:
15444
15445 @table @option
15446 @item x
15447 Set scope center x position.
15448
15449 @item y
15450 Set scope center y position.
15451
15452 @item s
15453 Set scope size, relative to frame diagonal.
15454
15455 @item t
15456 Set scope tilt/rotation.
15457
15458 @item o
15459 Set trace opacity.
15460
15461 @item tx
15462 Set trace center x position.
15463
15464 @item ty
15465 Set trace center y position.
15466
15467 @item tw
15468 Set trace width, relative to width of frame.
15469
15470 @item th
15471 Set trace height, relative to height of frame.
15472
15473 @item c
15474 Set which components to trace. By default it traces first three components.
15475
15476 @item g
15477 Draw trace grid. By default is enabled.
15478
15479 @item st
15480 Draw some statistics. By default is enabled.
15481
15482 @item sc
15483 Draw scope. By default is enabled.
15484 @end table
15485
15486 @subsection Commands
15487 This filter supports same @ref{commands} as options.
15488 The command accepts the same syntax of the corresponding option.
15489
15490 If the specified expression is not valid, it is kept at its current
15491 value.
15492
15493 @subsection Examples
15494
15495 @itemize
15496 @item
15497 Inspect full first row of video frame.
15498 @example
15499 oscilloscope=x=0.5:y=0:s=1
15500 @end example
15501
15502 @item
15503 Inspect full last row of video frame.
15504 @example
15505 oscilloscope=x=0.5:y=1:s=1
15506 @end example
15507
15508 @item
15509 Inspect full 5th line of video frame of height 1080.
15510 @example
15511 oscilloscope=x=0.5:y=5/1080:s=1
15512 @end example
15513
15514 @item
15515 Inspect full last column of video frame.
15516 @example
15517 oscilloscope=x=1:y=0.5:s=1:t=1
15518 @end example
15519
15520 @end itemize
15521
15522 @anchor{overlay}
15523 @section overlay
15524
15525 Overlay one video on top of another.
15526
15527 It takes two inputs and has one output. The first input is the "main"
15528 video on which the second input is overlaid.
15529
15530 It accepts the following parameters:
15531
15532 A description of the accepted options follows.
15533
15534 @table @option
15535 @item x
15536 @item y
15537 Set the expression for the x and y coordinates of the overlaid video
15538 on the main video. Default value is "0" for both expressions. In case
15539 the expression is invalid, it is set to a huge value (meaning that the
15540 overlay will not be displayed within the output visible area).
15541
15542 @item eof_action
15543 See @ref{framesync}.
15544
15545 @item eval
15546 Set when the expressions for @option{x}, and @option{y} are evaluated.
15547
15548 It accepts the following values:
15549 @table @samp
15550 @item init
15551 only evaluate expressions once during the filter initialization or
15552 when a command is processed
15553
15554 @item frame
15555 evaluate expressions for each incoming frame
15556 @end table
15557
15558 Default value is @samp{frame}.
15559
15560 @item shortest
15561 See @ref{framesync}.
15562
15563 @item format
15564 Set the format for the output video.
15565
15566 It accepts the following values:
15567 @table @samp
15568 @item yuv420
15569 force YUV420 output
15570
15571 @item yuv420p10
15572 force YUV420p10 output
15573
15574 @item yuv422
15575 force YUV422 output
15576
15577 @item yuv422p10
15578 force YUV422p10 output
15579
15580 @item yuv444
15581 force YUV444 output
15582
15583 @item rgb
15584 force packed RGB output
15585
15586 @item gbrp
15587 force planar RGB output
15588
15589 @item auto
15590 automatically pick format
15591 @end table
15592
15593 Default value is @samp{yuv420}.
15594
15595 @item repeatlast
15596 See @ref{framesync}.
15597
15598 @item alpha
15599 Set format of alpha of the overlaid video, it can be @var{straight} or
15600 @var{premultiplied}. Default is @var{straight}.
15601 @end table
15602
15603 The @option{x}, and @option{y} expressions can contain the following
15604 parameters.
15605
15606 @table @option
15607 @item main_w, W
15608 @item main_h, H
15609 The main input width and height.
15610
15611 @item overlay_w, w
15612 @item overlay_h, h
15613 The overlay input width and height.
15614
15615 @item x
15616 @item y
15617 The computed values for @var{x} and @var{y}. They are evaluated for
15618 each new frame.
15619
15620 @item hsub
15621 @item vsub
15622 horizontal and vertical chroma subsample values of the output
15623 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15624 @var{vsub} is 1.
15625
15626 @item n
15627 the number of input frame, starting from 0
15628
15629 @item pos
15630 the position in the file of the input frame, NAN if unknown
15631
15632 @item t
15633 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15634
15635 @end table
15636
15637 This filter also supports the @ref{framesync} options.
15638
15639 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15640 when evaluation is done @emph{per frame}, and will evaluate to NAN
15641 when @option{eval} is set to @samp{init}.
15642
15643 Be aware that frames are taken from each input video in timestamp
15644 order, hence, if their initial timestamps differ, it is a good idea
15645 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15646 have them begin in the same zero timestamp, as the example for
15647 the @var{movie} filter does.
15648
15649 You can chain together more overlays but you should test the
15650 efficiency of such approach.
15651
15652 @subsection Commands
15653
15654 This filter supports the following commands:
15655 @table @option
15656 @item x
15657 @item y
15658 Modify the x and y of the overlay input.
15659 The command accepts the same syntax of the corresponding option.
15660
15661 If the specified expression is not valid, it is kept at its current
15662 value.
15663 @end table
15664
15665 @subsection Examples
15666
15667 @itemize
15668 @item
15669 Draw the overlay at 10 pixels from the bottom right corner of the main
15670 video:
15671 @example
15672 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15673 @end example
15674
15675 Using named options the example above becomes:
15676 @example
15677 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15678 @end example
15679
15680 @item
15681 Insert a transparent PNG logo in the bottom left corner of the input,
15682 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15683 @example
15684 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15685 @end example
15686
15687 @item
15688 Insert 2 different transparent PNG logos (second logo on bottom
15689 right corner) using the @command{ffmpeg} tool:
15690 @example
15691 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
15692 @end example
15693
15694 @item
15695 Add a transparent color layer on top of the main video; @code{WxH}
15696 must specify the size of the main input to the overlay filter:
15697 @example
15698 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15699 @end example
15700
15701 @item
15702 Play an original video and a filtered version (here with the deshake
15703 filter) side by side using the @command{ffplay} tool:
15704 @example
15705 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15706 @end example
15707
15708 The above command is the same as:
15709 @example
15710 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15711 @end example
15712
15713 @item
15714 Make a sliding overlay appearing from the left to the right top part of the
15715 screen starting since time 2:
15716 @example
15717 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15718 @end example
15719
15720 @item
15721 Compose output by putting two input videos side to side:
15722 @example
15723 ffmpeg -i left.avi -i right.avi -filter_complex "
15724 nullsrc=size=200x100 [background];
15725 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15726 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15727 [background][left]       overlay=shortest=1       [background+left];
15728 [background+left][right] overlay=shortest=1:x=100 [left+right]
15729 "
15730 @end example
15731
15732 @item
15733 Mask 10-20 seconds of a video by applying the delogo filter to a section
15734 @example
15735 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15736 -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]'
15737 masked.avi
15738 @end example
15739
15740 @item
15741 Chain several overlays in cascade:
15742 @example
15743 nullsrc=s=200x200 [bg];
15744 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15745 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15746 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15747 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15748 [in3] null,       [mid2] overlay=100:100 [out0]
15749 @end example
15750
15751 @end itemize
15752
15753 @anchor{overlay_cuda}
15754 @section overlay_cuda
15755
15756 Overlay one video on top of another.
15757
15758 This is the CUDA variant of the @ref{overlay} filter.
15759 It only accepts CUDA frames. The underlying input pixel formats have to match.
15760
15761 It takes two inputs and has one output. The first input is the "main"
15762 video on which the second input is overlaid.
15763
15764 It accepts the following parameters:
15765
15766 @table @option
15767 @item x
15768 @item y
15769 Set the x and y coordinates of the overlaid video on the main video.
15770 Default value is "0" for both expressions.
15771
15772 @item eof_action
15773 See @ref{framesync}.
15774
15775 @item shortest
15776 See @ref{framesync}.
15777
15778 @item repeatlast
15779 See @ref{framesync}.
15780
15781 @end table
15782
15783 This filter also supports the @ref{framesync} options.
15784
15785 @section owdenoise
15786
15787 Apply Overcomplete Wavelet denoiser.
15788
15789 The filter accepts the following options:
15790
15791 @table @option
15792 @item depth
15793 Set depth.
15794
15795 Larger depth values will denoise lower frequency components more, but
15796 slow down filtering.
15797
15798 Must be an int in the range 8-16, default is @code{8}.
15799
15800 @item luma_strength, ls
15801 Set luma strength.
15802
15803 Must be a double value in the range 0-1000, default is @code{1.0}.
15804
15805 @item chroma_strength, cs
15806 Set chroma strength.
15807
15808 Must be a double value in the range 0-1000, default is @code{1.0}.
15809 @end table
15810
15811 @anchor{pad}
15812 @section pad
15813
15814 Add paddings to the input image, and place the original input at the
15815 provided @var{x}, @var{y} coordinates.
15816
15817 It accepts the following parameters:
15818
15819 @table @option
15820 @item width, w
15821 @item height, h
15822 Specify an expression for the size of the output image with the
15823 paddings added. If the value for @var{width} or @var{height} is 0, the
15824 corresponding input size is used for the output.
15825
15826 The @var{width} expression can reference the value set by the
15827 @var{height} expression, and vice versa.
15828
15829 The default value of @var{width} and @var{height} is 0.
15830
15831 @item x
15832 @item y
15833 Specify the offsets to place the input image at within the padded area,
15834 with respect to the top/left border of the output image.
15835
15836 The @var{x} expression can reference the value set by the @var{y}
15837 expression, and vice versa.
15838
15839 The default value of @var{x} and @var{y} is 0.
15840
15841 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15842 so the input image is centered on the padded area.
15843
15844 @item color
15845 Specify the color of the padded area. For the syntax of this option,
15846 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15847 manual,ffmpeg-utils}.
15848
15849 The default value of @var{color} is "black".
15850
15851 @item eval
15852 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15853
15854 It accepts the following values:
15855
15856 @table @samp
15857 @item init
15858 Only evaluate expressions once during the filter initialization or when
15859 a command is processed.
15860
15861 @item frame
15862 Evaluate expressions for each incoming frame.
15863
15864 @end table
15865
15866 Default value is @samp{init}.
15867
15868 @item aspect
15869 Pad to aspect instead to a resolution.
15870
15871 @end table
15872
15873 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15874 options are expressions containing the following constants:
15875
15876 @table @option
15877 @item in_w
15878 @item in_h
15879 The input video width and height.
15880
15881 @item iw
15882 @item ih
15883 These are the same as @var{in_w} and @var{in_h}.
15884
15885 @item out_w
15886 @item out_h
15887 The output width and height (the size of the padded area), as
15888 specified by the @var{width} and @var{height} expressions.
15889
15890 @item ow
15891 @item oh
15892 These are the same as @var{out_w} and @var{out_h}.
15893
15894 @item x
15895 @item y
15896 The x and y offsets as specified by the @var{x} and @var{y}
15897 expressions, or NAN if not yet specified.
15898
15899 @item a
15900 same as @var{iw} / @var{ih}
15901
15902 @item sar
15903 input sample aspect ratio
15904
15905 @item dar
15906 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15907
15908 @item hsub
15909 @item vsub
15910 The horizontal and vertical chroma subsample values. For example for the
15911 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15912 @end table
15913
15914 @subsection Examples
15915
15916 @itemize
15917 @item
15918 Add paddings with the color "violet" to the input video. The output video
15919 size is 640x480, and the top-left corner of the input video is placed at
15920 column 0, row 40
15921 @example
15922 pad=640:480:0:40:violet
15923 @end example
15924
15925 The example above is equivalent to the following command:
15926 @example
15927 pad=width=640:height=480:x=0:y=40:color=violet
15928 @end example
15929
15930 @item
15931 Pad the input to get an output with dimensions increased by 3/2,
15932 and put the input video at the center of the padded area:
15933 @example
15934 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15935 @end example
15936
15937 @item
15938 Pad the input to get a squared output with size equal to the maximum
15939 value between the input width and height, and put the input video at
15940 the center of the padded area:
15941 @example
15942 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15943 @end example
15944
15945 @item
15946 Pad the input to get a final w/h ratio of 16:9:
15947 @example
15948 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15949 @end example
15950
15951 @item
15952 In case of anamorphic video, in order to set the output display aspect
15953 correctly, it is necessary to use @var{sar} in the expression,
15954 according to the relation:
15955 @example
15956 (ih * X / ih) * sar = output_dar
15957 X = output_dar / sar
15958 @end example
15959
15960 Thus the previous example needs to be modified to:
15961 @example
15962 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15963 @end example
15964
15965 @item
15966 Double the output size and put the input video in the bottom-right
15967 corner of the output padded area:
15968 @example
15969 pad="2*iw:2*ih:ow-iw:oh-ih"
15970 @end example
15971 @end itemize
15972
15973 @anchor{palettegen}
15974 @section palettegen
15975
15976 Generate one palette for a whole video stream.
15977
15978 It accepts the following options:
15979
15980 @table @option
15981 @item max_colors
15982 Set the maximum number of colors to quantize in the palette.
15983 Note: the palette will still contain 256 colors; the unused palette entries
15984 will be black.
15985
15986 @item reserve_transparent
15987 Create a palette of 255 colors maximum and reserve the last one for
15988 transparency. Reserving the transparency color is useful for GIF optimization.
15989 If not set, the maximum of colors in the palette will be 256. You probably want
15990 to disable this option for a standalone image.
15991 Set by default.
15992
15993 @item transparency_color
15994 Set the color that will be used as background for transparency.
15995
15996 @item stats_mode
15997 Set statistics mode.
15998
15999 It accepts the following values:
16000 @table @samp
16001 @item full
16002 Compute full frame histograms.
16003 @item diff
16004 Compute histograms only for the part that differs from previous frame. This
16005 might be relevant to give more importance to the moving part of your input if
16006 the background is static.
16007 @item single
16008 Compute new histogram for each frame.
16009 @end table
16010
16011 Default value is @var{full}.
16012 @end table
16013
16014 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
16015 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
16016 color quantization of the palette. This information is also visible at
16017 @var{info} logging level.
16018
16019 @subsection Examples
16020
16021 @itemize
16022 @item
16023 Generate a representative palette of a given video using @command{ffmpeg}:
16024 @example
16025 ffmpeg -i input.mkv -vf palettegen palette.png
16026 @end example
16027 @end itemize
16028
16029 @section paletteuse
16030
16031 Use a palette to downsample an input video stream.
16032
16033 The filter takes two inputs: one video stream and a palette. The palette must
16034 be a 256 pixels image.
16035
16036 It accepts the following options:
16037
16038 @table @option
16039 @item dither
16040 Select dithering mode. Available algorithms are:
16041 @table @samp
16042 @item bayer
16043 Ordered 8x8 bayer dithering (deterministic)
16044 @item heckbert
16045 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
16046 Note: this dithering is sometimes considered "wrong" and is included as a
16047 reference.
16048 @item floyd_steinberg
16049 Floyd and Steingberg dithering (error diffusion)
16050 @item sierra2
16051 Frankie Sierra dithering v2 (error diffusion)
16052 @item sierra2_4a
16053 Frankie Sierra dithering v2 "Lite" (error diffusion)
16054 @end table
16055
16056 Default is @var{sierra2_4a}.
16057
16058 @item bayer_scale
16059 When @var{bayer} dithering is selected, this option defines the scale of the
16060 pattern (how much the crosshatch pattern is visible). A low value means more
16061 visible pattern for less banding, and higher value means less visible pattern
16062 at the cost of more banding.
16063
16064 The option must be an integer value in the range [0,5]. Default is @var{2}.
16065
16066 @item diff_mode
16067 If set, define the zone to process
16068
16069 @table @samp
16070 @item rectangle
16071 Only the changing rectangle will be reprocessed. This is similar to GIF
16072 cropping/offsetting compression mechanism. This option can be useful for speed
16073 if only a part of the image is changing, and has use cases such as limiting the
16074 scope of the error diffusal @option{dither} to the rectangle that bounds the
16075 moving scene (it leads to more deterministic output if the scene doesn't change
16076 much, and as a result less moving noise and better GIF compression).
16077 @end table
16078
16079 Default is @var{none}.
16080
16081 @item new
16082 Take new palette for each output frame.
16083
16084 @item alpha_threshold
16085 Sets the alpha threshold for transparency. Alpha values above this threshold
16086 will be treated as completely opaque, and values below this threshold will be
16087 treated as completely transparent.
16088
16089 The option must be an integer value in the range [0,255]. Default is @var{128}.
16090 @end table
16091
16092 @subsection Examples
16093
16094 @itemize
16095 @item
16096 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
16097 using @command{ffmpeg}:
16098 @example
16099 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
16100 @end example
16101 @end itemize
16102
16103 @section perspective
16104
16105 Correct perspective of video not recorded perpendicular to the screen.
16106
16107 A description of the accepted parameters follows.
16108
16109 @table @option
16110 @item x0
16111 @item y0
16112 @item x1
16113 @item y1
16114 @item x2
16115 @item y2
16116 @item x3
16117 @item y3
16118 Set coordinates expression for top left, top right, bottom left and bottom right corners.
16119 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
16120 If the @code{sense} option is set to @code{source}, then the specified points will be sent
16121 to the corners of the destination. If the @code{sense} option is set to @code{destination},
16122 then the corners of the source will be sent to the specified coordinates.
16123
16124 The expressions can use the following variables:
16125
16126 @table @option
16127 @item W
16128 @item H
16129 the width and height of video frame.
16130 @item in
16131 Input frame count.
16132 @item on
16133 Output frame count.
16134 @end table
16135
16136 @item interpolation
16137 Set interpolation for perspective correction.
16138
16139 It accepts the following values:
16140 @table @samp
16141 @item linear
16142 @item cubic
16143 @end table
16144
16145 Default value is @samp{linear}.
16146
16147 @item sense
16148 Set interpretation of coordinate options.
16149
16150 It accepts the following values:
16151 @table @samp
16152 @item 0, source
16153
16154 Send point in the source specified by the given coordinates to
16155 the corners of the destination.
16156
16157 @item 1, destination
16158
16159 Send the corners of the source to the point in the destination specified
16160 by the given coordinates.
16161
16162 Default value is @samp{source}.
16163 @end table
16164
16165 @item eval
16166 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
16167
16168 It accepts the following values:
16169 @table @samp
16170 @item init
16171 only evaluate expressions once during the filter initialization or
16172 when a command is processed
16173
16174 @item frame
16175 evaluate expressions for each incoming frame
16176 @end table
16177
16178 Default value is @samp{init}.
16179 @end table
16180
16181 @section phase
16182
16183 Delay interlaced video by one field time so that the field order changes.
16184
16185 The intended use is to fix PAL movies that have been captured with the
16186 opposite field order to the film-to-video transfer.
16187
16188 A description of the accepted parameters follows.
16189
16190 @table @option
16191 @item mode
16192 Set phase mode.
16193
16194 It accepts the following values:
16195 @table @samp
16196 @item t
16197 Capture field order top-first, transfer bottom-first.
16198 Filter will delay the bottom field.
16199
16200 @item b
16201 Capture field order bottom-first, transfer top-first.
16202 Filter will delay the top field.
16203
16204 @item p
16205 Capture and transfer with the same field order. This mode only exists
16206 for the documentation of the other options to refer to, but if you
16207 actually select it, the filter will faithfully do nothing.
16208
16209 @item a
16210 Capture field order determined automatically by field flags, transfer
16211 opposite.
16212 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
16213 basis using field flags. If no field information is available,
16214 then this works just like @samp{u}.
16215
16216 @item u
16217 Capture unknown or varying, transfer opposite.
16218 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
16219 analyzing the images and selecting the alternative that produces best
16220 match between the fields.
16221
16222 @item T
16223 Capture top-first, transfer unknown or varying.
16224 Filter selects among @samp{t} and @samp{p} using image analysis.
16225
16226 @item B
16227 Capture bottom-first, transfer unknown or varying.
16228 Filter selects among @samp{b} and @samp{p} using image analysis.
16229
16230 @item A
16231 Capture determined by field flags, transfer unknown or varying.
16232 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
16233 image analysis. If no field information is available, then this works just
16234 like @samp{U}. This is the default mode.
16235
16236 @item U
16237 Both capture and transfer unknown or varying.
16238 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
16239 @end table
16240 @end table
16241
16242 @subsection Commands
16243
16244 This filter supports the all above options as @ref{commands}.
16245
16246 @section photosensitivity
16247 Reduce various flashes in video, so to help users with epilepsy.
16248
16249 It accepts the following options:
16250 @table @option
16251 @item frames, f
16252 Set how many frames to use when filtering. Default is 30.
16253
16254 @item threshold, t
16255 Set detection threshold factor. Default is 1.
16256 Lower is stricter.
16257
16258 @item skip
16259 Set how many pixels to skip when sampling frames. Default is 1.
16260 Allowed range is from 1 to 1024.
16261
16262 @item bypass
16263 Leave frames unchanged. Default is disabled.
16264 @end table
16265
16266 @section pixdesctest
16267
16268 Pixel format descriptor test filter, mainly useful for internal
16269 testing. The output video should be equal to the input video.
16270
16271 For example:
16272 @example
16273 format=monow, pixdesctest
16274 @end example
16275
16276 can be used to test the monowhite pixel format descriptor definition.
16277
16278 @section pixscope
16279
16280 Display sample values of color channels. Mainly useful for checking color
16281 and levels. Minimum supported resolution is 640x480.
16282
16283 The filters accept the following options:
16284
16285 @table @option
16286 @item x
16287 Set scope X position, relative offset on X axis.
16288
16289 @item y
16290 Set scope Y position, relative offset on Y axis.
16291
16292 @item w
16293 Set scope width.
16294
16295 @item h
16296 Set scope height.
16297
16298 @item o
16299 Set window opacity. This window also holds statistics about pixel area.
16300
16301 @item wx
16302 Set window X position, relative offset on X axis.
16303
16304 @item wy
16305 Set window Y position, relative offset on Y axis.
16306 @end table
16307
16308 @subsection Commands
16309
16310 This filter supports same @ref{commands} as options.
16311
16312 @section pp
16313
16314 Enable the specified chain of postprocessing subfilters using libpostproc. This
16315 library should be automatically selected with a GPL build (@code{--enable-gpl}).
16316 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
16317 Each subfilter and some options have a short and a long name that can be used
16318 interchangeably, i.e. dr/dering are the same.
16319
16320 The filters accept the following options:
16321
16322 @table @option
16323 @item subfilters
16324 Set postprocessing subfilters string.
16325 @end table
16326
16327 All subfilters share common options to determine their scope:
16328
16329 @table @option
16330 @item a/autoq
16331 Honor the quality commands for this subfilter.
16332
16333 @item c/chrom
16334 Do chrominance filtering, too (default).
16335
16336 @item y/nochrom
16337 Do luminance filtering only (no chrominance).
16338
16339 @item n/noluma
16340 Do chrominance filtering only (no luminance).
16341 @end table
16342
16343 These options can be appended after the subfilter name, separated by a '|'.
16344
16345 Available subfilters are:
16346
16347 @table @option
16348 @item hb/hdeblock[|difference[|flatness]]
16349 Horizontal deblocking filter
16350 @table @option
16351 @item difference
16352 Difference factor where higher values mean more deblocking (default: @code{32}).
16353 @item flatness
16354 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16355 @end table
16356
16357 @item vb/vdeblock[|difference[|flatness]]
16358 Vertical deblocking filter
16359 @table @option
16360 @item difference
16361 Difference factor where higher values mean more deblocking (default: @code{32}).
16362 @item flatness
16363 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16364 @end table
16365
16366 @item ha/hadeblock[|difference[|flatness]]
16367 Accurate horizontal deblocking filter
16368 @table @option
16369 @item difference
16370 Difference factor where higher values mean more deblocking (default: @code{32}).
16371 @item flatness
16372 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16373 @end table
16374
16375 @item va/vadeblock[|difference[|flatness]]
16376 Accurate vertical deblocking filter
16377 @table @option
16378 @item difference
16379 Difference factor where higher values mean more deblocking (default: @code{32}).
16380 @item flatness
16381 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16382 @end table
16383 @end table
16384
16385 The horizontal and vertical deblocking filters share the difference and
16386 flatness values so you cannot set different horizontal and vertical
16387 thresholds.
16388
16389 @table @option
16390 @item h1/x1hdeblock
16391 Experimental horizontal deblocking filter
16392
16393 @item v1/x1vdeblock
16394 Experimental vertical deblocking filter
16395
16396 @item dr/dering
16397 Deringing filter
16398
16399 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
16400 @table @option
16401 @item threshold1
16402 larger -> stronger filtering
16403 @item threshold2
16404 larger -> stronger filtering
16405 @item threshold3
16406 larger -> stronger filtering
16407 @end table
16408
16409 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
16410 @table @option
16411 @item f/fullyrange
16412 Stretch luminance to @code{0-255}.
16413 @end table
16414
16415 @item lb/linblenddeint
16416 Linear blend deinterlacing filter that deinterlaces the given block by
16417 filtering all lines with a @code{(1 2 1)} filter.
16418
16419 @item li/linipoldeint
16420 Linear interpolating deinterlacing filter that deinterlaces the given block by
16421 linearly interpolating every second line.
16422
16423 @item ci/cubicipoldeint
16424 Cubic interpolating deinterlacing filter deinterlaces the given block by
16425 cubically interpolating every second line.
16426
16427 @item md/mediandeint
16428 Median deinterlacing filter that deinterlaces the given block by applying a
16429 median filter to every second line.
16430
16431 @item fd/ffmpegdeint
16432 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
16433 second line with a @code{(-1 4 2 4 -1)} filter.
16434
16435 @item l5/lowpass5
16436 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
16437 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
16438
16439 @item fq/forceQuant[|quantizer]
16440 Overrides the quantizer table from the input with the constant quantizer you
16441 specify.
16442 @table @option
16443 @item quantizer
16444 Quantizer to use
16445 @end table
16446
16447 @item de/default
16448 Default pp filter combination (@code{hb|a,vb|a,dr|a})
16449
16450 @item fa/fast
16451 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
16452
16453 @item ac
16454 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
16455 @end table
16456
16457 @subsection Examples
16458
16459 @itemize
16460 @item
16461 Apply horizontal and vertical deblocking, deringing and automatic
16462 brightness/contrast:
16463 @example
16464 pp=hb/vb/dr/al
16465 @end example
16466
16467 @item
16468 Apply default filters without brightness/contrast correction:
16469 @example
16470 pp=de/-al
16471 @end example
16472
16473 @item
16474 Apply default filters and temporal denoiser:
16475 @example
16476 pp=default/tmpnoise|1|2|3
16477 @end example
16478
16479 @item
16480 Apply deblocking on luminance only, and switch vertical deblocking on or off
16481 automatically depending on available CPU time:
16482 @example
16483 pp=hb|y/vb|a
16484 @end example
16485 @end itemize
16486
16487 @section pp7
16488 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16489 similar to spp = 6 with 7 point DCT, where only the center sample is
16490 used after IDCT.
16491
16492 The filter accepts the following options:
16493
16494 @table @option
16495 @item qp
16496 Force a constant quantization parameter. It accepts an integer in range
16497 0 to 63. If not set, the filter will use the QP from the video stream
16498 (if available).
16499
16500 @item mode
16501 Set thresholding mode. Available modes are:
16502
16503 @table @samp
16504 @item hard
16505 Set hard thresholding.
16506 @item soft
16507 Set soft thresholding (better de-ringing effect, but likely blurrier).
16508 @item medium
16509 Set medium thresholding (good results, default).
16510 @end table
16511 @end table
16512
16513 @section premultiply
16514 Apply alpha premultiply effect to input video stream using first plane
16515 of second stream as alpha.
16516
16517 Both streams must have same dimensions and same pixel format.
16518
16519 The filter accepts the following option:
16520
16521 @table @option
16522 @item planes
16523 Set which planes will be processed, unprocessed planes will be copied.
16524 By default value 0xf, all planes will be processed.
16525
16526 @item inplace
16527 Do not require 2nd input for processing, instead use alpha plane from input stream.
16528 @end table
16529
16530 @section prewitt
16531 Apply prewitt operator to input video stream.
16532
16533 The filter accepts the following option:
16534
16535 @table @option
16536 @item planes
16537 Set which planes will be processed, unprocessed planes will be copied.
16538 By default value 0xf, all planes will be processed.
16539
16540 @item scale
16541 Set value which will be multiplied with filtered result.
16542
16543 @item delta
16544 Set value which will be added to filtered result.
16545 @end table
16546
16547 @subsection Commands
16548
16549 This filter supports the all above options as @ref{commands}.
16550
16551 @section pseudocolor
16552
16553 Alter frame colors in video with pseudocolors.
16554
16555 This filter accepts the following options:
16556
16557 @table @option
16558 @item c0
16559 set pixel first component expression
16560
16561 @item c1
16562 set pixel second component expression
16563
16564 @item c2
16565 set pixel third component expression
16566
16567 @item c3
16568 set pixel fourth component expression, corresponds to the alpha component
16569
16570 @item index, i
16571 set component to use as base for altering colors
16572
16573 @item preset, p
16574 Pick one of built-in LUTs. By default is set to none.
16575
16576 Available LUTs:
16577 @table @samp
16578 @item magma
16579 @item inferno
16580 @item plasma
16581 @item viridis
16582 @item turbo
16583 @item cividis
16584 @item range1
16585 @item range2
16586 @item shadows
16587 @item highlights
16588 @end table
16589
16590 @item opacity
16591 Set opacity of output colors. Allowed range is from 0 to 1.
16592 Default value is set to 1.
16593 @end table
16594
16595 Each of the expression options specifies the expression to use for computing
16596 the lookup table for the corresponding pixel component values.
16597
16598 The expressions can contain the following constants and functions:
16599
16600 @table @option
16601 @item w
16602 @item h
16603 The input width and height.
16604
16605 @item val
16606 The input value for the pixel component.
16607
16608 @item ymin, umin, vmin, amin
16609 The minimum allowed component value.
16610
16611 @item ymax, umax, vmax, amax
16612 The maximum allowed component value.
16613 @end table
16614
16615 All expressions default to "val".
16616
16617 @subsection Commands
16618
16619 This filter supports the all above options as @ref{commands}.
16620
16621 @subsection Examples
16622
16623 @itemize
16624 @item
16625 Change too high luma values to gradient:
16626 @example
16627 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'"
16628 @end example
16629 @end itemize
16630
16631 @section psnr
16632
16633 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16634 Ratio) between two input videos.
16635
16636 This filter takes in input two input videos, the first input is
16637 considered the "main" source and is passed unchanged to the
16638 output. The second input is used as a "reference" video for computing
16639 the PSNR.
16640
16641 Both video inputs must have the same resolution and pixel format for
16642 this filter to work correctly. Also it assumes that both inputs
16643 have the same number of frames, which are compared one by one.
16644
16645 The obtained average PSNR is printed through the logging system.
16646
16647 The filter stores the accumulated MSE (mean squared error) of each
16648 frame, and at the end of the processing it is averaged across all frames
16649 equally, and the following formula is applied to obtain the PSNR:
16650
16651 @example
16652 PSNR = 10*log10(MAX^2/MSE)
16653 @end example
16654
16655 Where MAX is the average of the maximum values of each component of the
16656 image.
16657
16658 The description of the accepted parameters follows.
16659
16660 @table @option
16661 @item stats_file, f
16662 If specified the filter will use the named file to save the PSNR of
16663 each individual frame. When filename equals "-" the data is sent to
16664 standard output.
16665
16666 @item stats_version
16667 Specifies which version of the stats file format to use. Details of
16668 each format are written below.
16669 Default value is 1.
16670
16671 @item stats_add_max
16672 Determines whether the max value is output to the stats log.
16673 Default value is 0.
16674 Requires stats_version >= 2. If this is set and stats_version < 2,
16675 the filter will return an error.
16676 @end table
16677
16678 This filter also supports the @ref{framesync} options.
16679
16680 The file printed if @var{stats_file} is selected, contains a sequence of
16681 key/value pairs of the form @var{key}:@var{value} for each compared
16682 couple of frames.
16683
16684 If a @var{stats_version} greater than 1 is specified, a header line precedes
16685 the list of per-frame-pair stats, with key value pairs following the frame
16686 format with the following parameters:
16687
16688 @table @option
16689 @item psnr_log_version
16690 The version of the log file format. Will match @var{stats_version}.
16691
16692 @item fields
16693 A comma separated list of the per-frame-pair parameters included in
16694 the log.
16695 @end table
16696
16697 A description of each shown per-frame-pair parameter follows:
16698
16699 @table @option
16700 @item n
16701 sequential number of the input frame, starting from 1
16702
16703 @item mse_avg
16704 Mean Square Error pixel-by-pixel average difference of the compared
16705 frames, averaged over all the image components.
16706
16707 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16708 Mean Square Error pixel-by-pixel average difference of the compared
16709 frames for the component specified by the suffix.
16710
16711 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16712 Peak Signal to Noise ratio of the compared frames for the component
16713 specified by the suffix.
16714
16715 @item max_avg, max_y, max_u, max_v
16716 Maximum allowed value for each channel, and average over all
16717 channels.
16718 @end table
16719
16720 @subsection Examples
16721 @itemize
16722 @item
16723 For example:
16724 @example
16725 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16726 [main][ref] psnr="stats_file=stats.log" [out]
16727 @end example
16728
16729 On this example the input file being processed is compared with the
16730 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16731 is stored in @file{stats.log}.
16732
16733 @item
16734 Another example with different containers:
16735 @example
16736 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 -
16737 @end example
16738 @end itemize
16739
16740 @anchor{pullup}
16741 @section pullup
16742
16743 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16744 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16745 content.
16746
16747 The pullup filter is designed to take advantage of future context in making
16748 its decisions. This filter is stateless in the sense that it does not lock
16749 onto a pattern to follow, but it instead looks forward to the following
16750 fields in order to identify matches and rebuild progressive frames.
16751
16752 To produce content with an even framerate, insert the fps filter after
16753 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16754 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16755
16756 The filter accepts the following options:
16757
16758 @table @option
16759 @item jl
16760 @item jr
16761 @item jt
16762 @item jb
16763 These options set the amount of "junk" to ignore at the left, right, top, and
16764 bottom of the image, respectively. Left and right are in units of 8 pixels,
16765 while top and bottom are in units of 2 lines.
16766 The default is 8 pixels on each side.
16767
16768 @item sb
16769 Set the strict breaks. Setting this option to 1 will reduce the chances of
16770 filter generating an occasional mismatched frame, but it may also cause an
16771 excessive number of frames to be dropped during high motion sequences.
16772 Conversely, setting it to -1 will make filter match fields more easily.
16773 This may help processing of video where there is slight blurring between
16774 the fields, but may also cause there to be interlaced frames in the output.
16775 Default value is @code{0}.
16776
16777 @item mp
16778 Set the metric plane to use. It accepts the following values:
16779 @table @samp
16780 @item l
16781 Use luma plane.
16782
16783 @item u
16784 Use chroma blue plane.
16785
16786 @item v
16787 Use chroma red plane.
16788 @end table
16789
16790 This option may be set to use chroma plane instead of the default luma plane
16791 for doing filter's computations. This may improve accuracy on very clean
16792 source material, but more likely will decrease accuracy, especially if there
16793 is chroma noise (rainbow effect) or any grayscale video.
16794 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16795 load and make pullup usable in realtime on slow machines.
16796 @end table
16797
16798 For best results (without duplicated frames in the output file) it is
16799 necessary to change the output frame rate. For example, to inverse
16800 telecine NTSC input:
16801 @example
16802 ffmpeg -i input -vf pullup -r 24000/1001 ...
16803 @end example
16804
16805 @section qp
16806
16807 Change video quantization parameters (QP).
16808
16809 The filter accepts the following option:
16810
16811 @table @option
16812 @item qp
16813 Set expression for quantization parameter.
16814 @end table
16815
16816 The expression is evaluated through the eval API and can contain, among others,
16817 the following constants:
16818
16819 @table @var
16820 @item known
16821 1 if index is not 129, 0 otherwise.
16822
16823 @item qp
16824 Sequential index starting from -129 to 128.
16825 @end table
16826
16827 @subsection Examples
16828
16829 @itemize
16830 @item
16831 Some equation like:
16832 @example
16833 qp=2+2*sin(PI*qp)
16834 @end example
16835 @end itemize
16836
16837 @section random
16838
16839 Flush video frames from internal cache of frames into a random order.
16840 No frame is discarded.
16841 Inspired by @ref{frei0r} nervous filter.
16842
16843 @table @option
16844 @item frames
16845 Set size in number of frames of internal cache, in range from @code{2} to
16846 @code{512}. Default is @code{30}.
16847
16848 @item seed
16849 Set seed for random number generator, must be an integer included between
16850 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16851 less than @code{0}, the filter will try to use a good random seed on a
16852 best effort basis.
16853 @end table
16854
16855 @section readeia608
16856
16857 Read closed captioning (EIA-608) information from the top lines of a video frame.
16858
16859 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16860 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16861 with EIA-608 data (starting from 0). A description of each metadata value follows:
16862
16863 @table @option
16864 @item lavfi.readeia608.X.cc
16865 The two bytes stored as EIA-608 data (printed in hexadecimal).
16866
16867 @item lavfi.readeia608.X.line
16868 The number of the line on which the EIA-608 data was identified and read.
16869 @end table
16870
16871 This filter accepts the following options:
16872
16873 @table @option
16874 @item scan_min
16875 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16876
16877 @item scan_max
16878 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16879
16880 @item spw
16881 Set the ratio of width reserved for sync code detection.
16882 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16883
16884 @item chp
16885 Enable checking the parity bit. In the event of a parity error, the filter will output
16886 @code{0x00} for that character. Default is false.
16887
16888 @item lp
16889 Lowpass lines prior to further processing. Default is enabled.
16890 @end table
16891
16892 @subsection Commands
16893
16894 This filter supports the all above options as @ref{commands}.
16895
16896 @subsection Examples
16897
16898 @itemize
16899 @item
16900 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16901 @example
16902 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
16903 @end example
16904 @end itemize
16905
16906 @section readvitc
16907
16908 Read vertical interval timecode (VITC) information from the top lines of a
16909 video frame.
16910
16911 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16912 timecode value, if a valid timecode has been detected. Further metadata key
16913 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16914 timecode data has been found or not.
16915
16916 This filter accepts the following options:
16917
16918 @table @option
16919 @item scan_max
16920 Set the maximum number of lines to scan for VITC data. If the value is set to
16921 @code{-1} the full video frame is scanned. Default is @code{45}.
16922
16923 @item thr_b
16924 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16925 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16926
16927 @item thr_w
16928 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16929 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16930 @end table
16931
16932 @subsection Examples
16933
16934 @itemize
16935 @item
16936 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16937 draw @code{--:--:--:--} as a placeholder:
16938 @example
16939 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16940 @end example
16941 @end itemize
16942
16943 @section remap
16944
16945 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16946
16947 Destination pixel at position (X, Y) will be picked from source (x, y) position
16948 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16949 value for pixel will be used for destination pixel.
16950
16951 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16952 will have Xmap/Ymap video stream dimensions.
16953 Xmap and Ymap input video streams are 16bit depth, single channel.
16954
16955 @table @option
16956 @item format
16957 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16958 Default is @code{color}.
16959
16960 @item fill
16961 Specify the color of the unmapped pixels. For the syntax of this option,
16962 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16963 manual,ffmpeg-utils}. Default color is @code{black}.
16964 @end table
16965
16966 @section removegrain
16967
16968 The removegrain filter is a spatial denoiser for progressive video.
16969
16970 @table @option
16971 @item m0
16972 Set mode for the first plane.
16973
16974 @item m1
16975 Set mode for the second plane.
16976
16977 @item m2
16978 Set mode for the third plane.
16979
16980 @item m3
16981 Set mode for the fourth plane.
16982 @end table
16983
16984 Range of mode is from 0 to 24. Description of each mode follows:
16985
16986 @table @var
16987 @item 0
16988 Leave input plane unchanged. Default.
16989
16990 @item 1
16991 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16992
16993 @item 2
16994 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16995
16996 @item 3
16997 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16998
16999 @item 4
17000 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
17001 This is equivalent to a median filter.
17002
17003 @item 5
17004 Line-sensitive clipping giving the minimal change.
17005
17006 @item 6
17007 Line-sensitive clipping, intermediate.
17008
17009 @item 7
17010 Line-sensitive clipping, intermediate.
17011
17012 @item 8
17013 Line-sensitive clipping, intermediate.
17014
17015 @item 9
17016 Line-sensitive clipping on a line where the neighbours pixels are the closest.
17017
17018 @item 10
17019 Replaces the target pixel with the closest neighbour.
17020
17021 @item 11
17022 [1 2 1] horizontal and vertical kernel blur.
17023
17024 @item 12
17025 Same as mode 11.
17026
17027 @item 13
17028 Bob mode, interpolates top field from the line where the neighbours
17029 pixels are the closest.
17030
17031 @item 14
17032 Bob mode, interpolates bottom field from the line where the neighbours
17033 pixels are the closest.
17034
17035 @item 15
17036 Bob mode, interpolates top field. Same as 13 but with a more complicated
17037 interpolation formula.
17038
17039 @item 16
17040 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
17041 interpolation formula.
17042
17043 @item 17
17044 Clips the pixel with the minimum and maximum of respectively the maximum and
17045 minimum of each pair of opposite neighbour pixels.
17046
17047 @item 18
17048 Line-sensitive clipping using opposite neighbours whose greatest distance from
17049 the current pixel is minimal.
17050
17051 @item 19
17052 Replaces the pixel with the average of its 8 neighbours.
17053
17054 @item 20
17055 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
17056
17057 @item 21
17058 Clips pixels using the averages of opposite neighbour.
17059
17060 @item 22
17061 Same as mode 21 but simpler and faster.
17062
17063 @item 23
17064 Small edge and halo removal, but reputed useless.
17065
17066 @item 24
17067 Similar as 23.
17068 @end table
17069
17070 @section removelogo
17071
17072 Suppress a TV station logo, using an image file to determine which
17073 pixels comprise the logo. It works by filling in the pixels that
17074 comprise the logo with neighboring pixels.
17075
17076 The filter accepts the following options:
17077
17078 @table @option
17079 @item filename, f
17080 Set the filter bitmap file, which can be any image format supported by
17081 libavformat. The width and height of the image file must match those of the
17082 video stream being processed.
17083 @end table
17084
17085 Pixels in the provided bitmap image with a value of zero are not
17086 considered part of the logo, non-zero pixels are considered part of
17087 the logo. If you use white (255) for the logo and black (0) for the
17088 rest, you will be safe. For making the filter bitmap, it is
17089 recommended to take a screen capture of a black frame with the logo
17090 visible, and then using a threshold filter followed by the erode
17091 filter once or twice.
17092
17093 If needed, little splotches can be fixed manually. Remember that if
17094 logo pixels are not covered, the filter quality will be much
17095 reduced. Marking too many pixels as part of the logo does not hurt as
17096 much, but it will increase the amount of blurring needed to cover over
17097 the image and will destroy more information than necessary, and extra
17098 pixels will slow things down on a large logo.
17099
17100 @section repeatfields
17101
17102 This filter uses the repeat_field flag from the Video ES headers and hard repeats
17103 fields based on its value.
17104
17105 @section reverse
17106
17107 Reverse a video clip.
17108
17109 Warning: This filter requires memory to buffer the entire clip, so trimming
17110 is suggested.
17111
17112 @subsection Examples
17113
17114 @itemize
17115 @item
17116 Take the first 5 seconds of a clip, and reverse it.
17117 @example
17118 trim=end=5,reverse
17119 @end example
17120 @end itemize
17121
17122 @section rgbashift
17123 Shift R/G/B/A pixels horizontally and/or vertically.
17124
17125 The filter accepts the following options:
17126 @table @option
17127 @item rh
17128 Set amount to shift red horizontally.
17129 @item rv
17130 Set amount to shift red vertically.
17131 @item gh
17132 Set amount to shift green horizontally.
17133 @item gv
17134 Set amount to shift green vertically.
17135 @item bh
17136 Set amount to shift blue horizontally.
17137 @item bv
17138 Set amount to shift blue vertically.
17139 @item ah
17140 Set amount to shift alpha horizontally.
17141 @item av
17142 Set amount to shift alpha vertically.
17143 @item edge
17144 Set edge mode, can be @var{smear}, default, or @var{warp}.
17145 @end table
17146
17147 @subsection Commands
17148
17149 This filter supports the all above options as @ref{commands}.
17150
17151 @section roberts
17152 Apply roberts cross operator to input video stream.
17153
17154 The filter accepts the following option:
17155
17156 @table @option
17157 @item planes
17158 Set which planes will be processed, unprocessed planes will be copied.
17159 By default value 0xf, all planes will be processed.
17160
17161 @item scale
17162 Set value which will be multiplied with filtered result.
17163
17164 @item delta
17165 Set value which will be added to filtered result.
17166 @end table
17167
17168 @subsection Commands
17169
17170 This filter supports the all above options as @ref{commands}.
17171
17172 @section rotate
17173
17174 Rotate video by an arbitrary angle expressed in radians.
17175
17176 The filter accepts the following options:
17177
17178 A description of the optional parameters follows.
17179 @table @option
17180 @item angle, a
17181 Set an expression for the angle by which to rotate the input video
17182 clockwise, expressed as a number of radians. A negative value will
17183 result in a counter-clockwise rotation. By default it is set to "0".
17184
17185 This expression is evaluated for each frame.
17186
17187 @item out_w, ow
17188 Set the output width expression, default value is "iw".
17189 This expression is evaluated just once during configuration.
17190
17191 @item out_h, oh
17192 Set the output height expression, default value is "ih".
17193 This expression is evaluated just once during configuration.
17194
17195 @item bilinear
17196 Enable bilinear interpolation if set to 1, a value of 0 disables
17197 it. Default value is 1.
17198
17199 @item fillcolor, c
17200 Set the color used to fill the output area not covered by the rotated
17201 image. For the general syntax of this option, check the
17202 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17203 If the special value "none" is selected then no
17204 background is printed (useful for example if the background is never shown).
17205
17206 Default value is "black".
17207 @end table
17208
17209 The expressions for the angle and the output size can contain the
17210 following constants and functions:
17211
17212 @table @option
17213 @item n
17214 sequential number of the input frame, starting from 0. It is always NAN
17215 before the first frame is filtered.
17216
17217 @item t
17218 time in seconds of the input frame, it is set to 0 when the filter is
17219 configured. It is always NAN before the first frame is filtered.
17220
17221 @item hsub
17222 @item vsub
17223 horizontal and vertical chroma subsample values. For example for the
17224 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17225
17226 @item in_w, iw
17227 @item in_h, ih
17228 the input video width and height
17229
17230 @item out_w, ow
17231 @item out_h, oh
17232 the output width and height, that is the size of the padded area as
17233 specified by the @var{width} and @var{height} expressions
17234
17235 @item rotw(a)
17236 @item roth(a)
17237 the minimal width/height required for completely containing the input
17238 video rotated by @var{a} radians.
17239
17240 These are only available when computing the @option{out_w} and
17241 @option{out_h} expressions.
17242 @end table
17243
17244 @subsection Examples
17245
17246 @itemize
17247 @item
17248 Rotate the input by PI/6 radians clockwise:
17249 @example
17250 rotate=PI/6
17251 @end example
17252
17253 @item
17254 Rotate the input by PI/6 radians counter-clockwise:
17255 @example
17256 rotate=-PI/6
17257 @end example
17258
17259 @item
17260 Rotate the input by 45 degrees clockwise:
17261 @example
17262 rotate=45*PI/180
17263 @end example
17264
17265 @item
17266 Apply a constant rotation with period T, starting from an angle of PI/3:
17267 @example
17268 rotate=PI/3+2*PI*t/T
17269 @end example
17270
17271 @item
17272 Make the input video rotation oscillating with a period of T
17273 seconds and an amplitude of A radians:
17274 @example
17275 rotate=A*sin(2*PI/T*t)
17276 @end example
17277
17278 @item
17279 Rotate the video, output size is chosen so that the whole rotating
17280 input video is always completely contained in the output:
17281 @example
17282 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
17283 @end example
17284
17285 @item
17286 Rotate the video, reduce the output size so that no background is ever
17287 shown:
17288 @example
17289 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
17290 @end example
17291 @end itemize
17292
17293 @subsection Commands
17294
17295 The filter supports the following commands:
17296
17297 @table @option
17298 @item a, angle
17299 Set the angle expression.
17300 The command accepts the same syntax of the corresponding option.
17301
17302 If the specified expression is not valid, it is kept at its current
17303 value.
17304 @end table
17305
17306 @section sab
17307
17308 Apply Shape Adaptive Blur.
17309
17310 The filter accepts the following options:
17311
17312 @table @option
17313 @item luma_radius, lr
17314 Set luma blur filter strength, must be a value in range 0.1-4.0, default
17315 value is 1.0. A greater value will result in a more blurred image, and
17316 in slower processing.
17317
17318 @item luma_pre_filter_radius, lpfr
17319 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
17320 value is 1.0.
17321
17322 @item luma_strength, ls
17323 Set luma maximum difference between pixels to still be considered, must
17324 be a value in the 0.1-100.0 range, default value is 1.0.
17325
17326 @item chroma_radius, cr
17327 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
17328 greater value will result in a more blurred image, and in slower
17329 processing.
17330
17331 @item chroma_pre_filter_radius, cpfr
17332 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
17333
17334 @item chroma_strength, cs
17335 Set chroma maximum difference between pixels to still be considered,
17336 must be a value in the -0.9-100.0 range.
17337 @end table
17338
17339 Each chroma option value, if not explicitly specified, is set to the
17340 corresponding luma option value.
17341
17342 @anchor{scale}
17343 @section scale
17344
17345 Scale (resize) the input video, using the libswscale library.
17346
17347 The scale filter forces the output display aspect ratio to be the same
17348 of the input, by changing the output sample aspect ratio.
17349
17350 If the input image format is different from the format requested by
17351 the next filter, the scale filter will convert the input to the
17352 requested format.
17353
17354 @subsection Options
17355 The filter accepts the following options, or any of the options
17356 supported by the libswscale scaler.
17357
17358 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
17359 the complete list of scaler options.
17360
17361 @table @option
17362 @item width, w
17363 @item height, h
17364 Set the output video dimension expression. Default value is the input
17365 dimension.
17366
17367 If the @var{width} or @var{w} value is 0, the input width is used for
17368 the output. If the @var{height} or @var{h} value is 0, the input height
17369 is used for the output.
17370
17371 If one and only one of the values is -n with n >= 1, the scale filter
17372 will use a value that maintains the aspect ratio of the input image,
17373 calculated from the other specified dimension. After that it will,
17374 however, make sure that the calculated dimension is divisible by n and
17375 adjust the value if necessary.
17376
17377 If both values are -n with n >= 1, the behavior will be identical to
17378 both values being set to 0 as previously detailed.
17379
17380 See below for the list of accepted constants for use in the dimension
17381 expression.
17382
17383 @item eval
17384 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
17385
17386 @table @samp
17387 @item init
17388 Only evaluate expressions once during the filter initialization or when a command is processed.
17389
17390 @item frame
17391 Evaluate expressions for each incoming frame.
17392
17393 @end table
17394
17395 Default value is @samp{init}.
17396
17397
17398 @item interl
17399 Set the interlacing mode. It accepts the following values:
17400
17401 @table @samp
17402 @item 1
17403 Force interlaced aware scaling.
17404
17405 @item 0
17406 Do not apply interlaced scaling.
17407
17408 @item -1
17409 Select interlaced aware scaling depending on whether the source frames
17410 are flagged as interlaced or not.
17411 @end table
17412
17413 Default value is @samp{0}.
17414
17415 @item flags
17416 Set libswscale scaling flags. See
17417 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17418 complete list of values. If not explicitly specified the filter applies
17419 the default flags.
17420
17421
17422 @item param0, param1
17423 Set libswscale input parameters for scaling algorithms that need them. See
17424 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17425 complete documentation. If not explicitly specified the filter applies
17426 empty parameters.
17427
17428
17429
17430 @item size, s
17431 Set the video size. For the syntax of this option, check the
17432 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17433
17434 @item in_color_matrix
17435 @item out_color_matrix
17436 Set in/output YCbCr color space type.
17437
17438 This allows the autodetected value to be overridden as well as allows forcing
17439 a specific value used for the output and encoder.
17440
17441 If not specified, the color space type depends on the pixel format.
17442
17443 Possible values:
17444
17445 @table @samp
17446 @item auto
17447 Choose automatically.
17448
17449 @item bt709
17450 Format conforming to International Telecommunication Union (ITU)
17451 Recommendation BT.709.
17452
17453 @item fcc
17454 Set color space conforming to the United States Federal Communications
17455 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
17456
17457 @item bt601
17458 @item bt470
17459 @item smpte170m
17460 Set color space conforming to:
17461
17462 @itemize
17463 @item
17464 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
17465
17466 @item
17467 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
17468
17469 @item
17470 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
17471
17472 @end itemize
17473
17474 @item smpte240m
17475 Set color space conforming to SMPTE ST 240:1999.
17476
17477 @item bt2020
17478 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
17479 @end table
17480
17481 @item in_range
17482 @item out_range
17483 Set in/output YCbCr sample range.
17484
17485 This allows the autodetected value to be overridden as well as allows forcing
17486 a specific value used for the output and encoder. If not specified, the
17487 range depends on the pixel format. Possible values:
17488
17489 @table @samp
17490 @item auto/unknown
17491 Choose automatically.
17492
17493 @item jpeg/full/pc
17494 Set full range (0-255 in case of 8-bit luma).
17495
17496 @item mpeg/limited/tv
17497 Set "MPEG" range (16-235 in case of 8-bit luma).
17498 @end table
17499
17500 @item force_original_aspect_ratio
17501 Enable decreasing or increasing output video width or height if necessary to
17502 keep the original aspect ratio. Possible values:
17503
17504 @table @samp
17505 @item disable
17506 Scale the video as specified and disable this feature.
17507
17508 @item decrease
17509 The output video dimensions will automatically be decreased if needed.
17510
17511 @item increase
17512 The output video dimensions will automatically be increased if needed.
17513
17514 @end table
17515
17516 One useful instance of this option is that when you know a specific device's
17517 maximum allowed resolution, you can use this to limit the output video to
17518 that, while retaining the aspect ratio. For example, device A allows
17519 1280x720 playback, and your video is 1920x800. Using this option (set it to
17520 decrease) and specifying 1280x720 to the command line makes the output
17521 1280x533.
17522
17523 Please note that this is a different thing than specifying -1 for @option{w}
17524 or @option{h}, you still need to specify the output resolution for this option
17525 to work.
17526
17527 @item force_divisible_by
17528 Ensures that both the output dimensions, width and height, are divisible by the
17529 given integer when used together with @option{force_original_aspect_ratio}. This
17530 works similar to using @code{-n} in the @option{w} and @option{h} options.
17531
17532 This option respects the value set for @option{force_original_aspect_ratio},
17533 increasing or decreasing the resolution accordingly. The video's aspect ratio
17534 may be slightly modified.
17535
17536 This option can be handy if you need to have a video fit within or exceed
17537 a defined resolution using @option{force_original_aspect_ratio} but also have
17538 encoder restrictions on width or height divisibility.
17539
17540 @end table
17541
17542 The values of the @option{w} and @option{h} options are expressions
17543 containing the following constants:
17544
17545 @table @var
17546 @item in_w
17547 @item in_h
17548 The input width and height
17549
17550 @item iw
17551 @item ih
17552 These are the same as @var{in_w} and @var{in_h}.
17553
17554 @item out_w
17555 @item out_h
17556 The output (scaled) width and height
17557
17558 @item ow
17559 @item oh
17560 These are the same as @var{out_w} and @var{out_h}
17561
17562 @item a
17563 The same as @var{iw} / @var{ih}
17564
17565 @item sar
17566 input sample aspect ratio
17567
17568 @item dar
17569 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17570
17571 @item hsub
17572 @item vsub
17573 horizontal and vertical input chroma subsample values. For example for the
17574 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17575
17576 @item ohsub
17577 @item ovsub
17578 horizontal and vertical output chroma subsample values. For example for the
17579 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17580
17581 @item n
17582 The (sequential) number of the input frame, starting from 0.
17583 Only available with @code{eval=frame}.
17584
17585 @item t
17586 The presentation timestamp of the input frame, expressed as a number of
17587 seconds. Only available with @code{eval=frame}.
17588
17589 @item pos
17590 The position (byte offset) of the frame in the input stream, or NaN if
17591 this information is unavailable and/or meaningless (for example in case of synthetic video).
17592 Only available with @code{eval=frame}.
17593 @end table
17594
17595 @subsection Examples
17596
17597 @itemize
17598 @item
17599 Scale the input video to a size of 200x100
17600 @example
17601 scale=w=200:h=100
17602 @end example
17603
17604 This is equivalent to:
17605 @example
17606 scale=200:100
17607 @end example
17608
17609 or:
17610 @example
17611 scale=200x100
17612 @end example
17613
17614 @item
17615 Specify a size abbreviation for the output size:
17616 @example
17617 scale=qcif
17618 @end example
17619
17620 which can also be written as:
17621 @example
17622 scale=size=qcif
17623 @end example
17624
17625 @item
17626 Scale the input to 2x:
17627 @example
17628 scale=w=2*iw:h=2*ih
17629 @end example
17630
17631 @item
17632 The above is the same as:
17633 @example
17634 scale=2*in_w:2*in_h
17635 @end example
17636
17637 @item
17638 Scale the input to 2x with forced interlaced scaling:
17639 @example
17640 scale=2*iw:2*ih:interl=1
17641 @end example
17642
17643 @item
17644 Scale the input to half size:
17645 @example
17646 scale=w=iw/2:h=ih/2
17647 @end example
17648
17649 @item
17650 Increase the width, and set the height to the same size:
17651 @example
17652 scale=3/2*iw:ow
17653 @end example
17654
17655 @item
17656 Seek Greek harmony:
17657 @example
17658 scale=iw:1/PHI*iw
17659 scale=ih*PHI:ih
17660 @end example
17661
17662 @item
17663 Increase the height, and set the width to 3/2 of the height:
17664 @example
17665 scale=w=3/2*oh:h=3/5*ih
17666 @end example
17667
17668 @item
17669 Increase the size, making the size a multiple of the chroma
17670 subsample values:
17671 @example
17672 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17673 @end example
17674
17675 @item
17676 Increase the width to a maximum of 500 pixels,
17677 keeping the same aspect ratio as the input:
17678 @example
17679 scale=w='min(500\, iw*3/2):h=-1'
17680 @end example
17681
17682 @item
17683 Make pixels square by combining scale and setsar:
17684 @example
17685 scale='trunc(ih*dar):ih',setsar=1/1
17686 @end example
17687
17688 @item
17689 Make pixels square by combining scale and setsar,
17690 making sure the resulting resolution is even (required by some codecs):
17691 @example
17692 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17693 @end example
17694 @end itemize
17695
17696 @subsection Commands
17697
17698 This filter supports the following commands:
17699 @table @option
17700 @item width, w
17701 @item height, h
17702 Set the output video dimension expression.
17703 The command accepts the same syntax of the corresponding option.
17704
17705 If the specified expression is not valid, it is kept at its current
17706 value.
17707 @end table
17708
17709 @section scale_npp
17710
17711 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17712 format conversion on CUDA video frames. Setting the output width and height
17713 works in the same way as for the @var{scale} filter.
17714
17715 The following additional options are accepted:
17716 @table @option
17717 @item format
17718 The pixel format of the output CUDA frames. If set to the string "same" (the
17719 default), the input format will be kept. Note that automatic format negotiation
17720 and conversion is not yet supported for hardware frames
17721
17722 @item interp_algo
17723 The interpolation algorithm used for resizing. One of the following:
17724 @table @option
17725 @item nn
17726 Nearest neighbour.
17727
17728 @item linear
17729 @item cubic
17730 @item cubic2p_bspline
17731 2-parameter cubic (B=1, C=0)
17732
17733 @item cubic2p_catmullrom
17734 2-parameter cubic (B=0, C=1/2)
17735
17736 @item cubic2p_b05c03
17737 2-parameter cubic (B=1/2, C=3/10)
17738
17739 @item super
17740 Supersampling
17741
17742 @item lanczos
17743 @end table
17744
17745 @item force_original_aspect_ratio
17746 Enable decreasing or increasing output video width or height if necessary to
17747 keep the original aspect ratio. Possible values:
17748
17749 @table @samp
17750 @item disable
17751 Scale the video as specified and disable this feature.
17752
17753 @item decrease
17754 The output video dimensions will automatically be decreased if needed.
17755
17756 @item increase
17757 The output video dimensions will automatically be increased if needed.
17758
17759 @end table
17760
17761 One useful instance of this option is that when you know a specific device's
17762 maximum allowed resolution, you can use this to limit the output video to
17763 that, while retaining the aspect ratio. For example, device A allows
17764 1280x720 playback, and your video is 1920x800. Using this option (set it to
17765 decrease) and specifying 1280x720 to the command line makes the output
17766 1280x533.
17767
17768 Please note that this is a different thing than specifying -1 for @option{w}
17769 or @option{h}, you still need to specify the output resolution for this option
17770 to work.
17771
17772 @item force_divisible_by
17773 Ensures that both the output dimensions, width and height, are divisible by the
17774 given integer when used together with @option{force_original_aspect_ratio}. This
17775 works similar to using @code{-n} in the @option{w} and @option{h} options.
17776
17777 This option respects the value set for @option{force_original_aspect_ratio},
17778 increasing or decreasing the resolution accordingly. The video's aspect ratio
17779 may be slightly modified.
17780
17781 This option can be handy if you need to have a video fit within or exceed
17782 a defined resolution using @option{force_original_aspect_ratio} but also have
17783 encoder restrictions on width or height divisibility.
17784
17785 @end table
17786
17787 @section scale2ref
17788
17789 Scale (resize) the input video, based on a reference video.
17790
17791 See the scale filter for available options, scale2ref supports the same but
17792 uses the reference video instead of the main input as basis. scale2ref also
17793 supports the following additional constants for the @option{w} and
17794 @option{h} options:
17795
17796 @table @var
17797 @item main_w
17798 @item main_h
17799 The main input video's width and height
17800
17801 @item main_a
17802 The same as @var{main_w} / @var{main_h}
17803
17804 @item main_sar
17805 The main input video's sample aspect ratio
17806
17807 @item main_dar, mdar
17808 The main input video's display aspect ratio. Calculated from
17809 @code{(main_w / main_h) * main_sar}.
17810
17811 @item main_hsub
17812 @item main_vsub
17813 The main input video's horizontal and vertical chroma subsample values.
17814 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17815 is 1.
17816
17817 @item main_n
17818 The (sequential) number of the main input frame, starting from 0.
17819 Only available with @code{eval=frame}.
17820
17821 @item main_t
17822 The presentation timestamp of the main input frame, expressed as a number of
17823 seconds. Only available with @code{eval=frame}.
17824
17825 @item main_pos
17826 The position (byte offset) of the frame in the main input stream, or NaN if
17827 this information is unavailable and/or meaningless (for example in case of synthetic video).
17828 Only available with @code{eval=frame}.
17829 @end table
17830
17831 @subsection Examples
17832
17833 @itemize
17834 @item
17835 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17836 @example
17837 'scale2ref[b][a];[a][b]overlay'
17838 @end example
17839
17840 @item
17841 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17842 @example
17843 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17844 @end example
17845 @end itemize
17846
17847 @subsection Commands
17848
17849 This filter supports the following commands:
17850 @table @option
17851 @item width, w
17852 @item height, h
17853 Set the output video dimension expression.
17854 The command accepts the same syntax of the corresponding option.
17855
17856 If the specified expression is not valid, it is kept at its current
17857 value.
17858 @end table
17859
17860 @section scroll
17861 Scroll input video horizontally and/or vertically by constant speed.
17862
17863 The filter accepts the following options:
17864 @table @option
17865 @item horizontal, h
17866 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17867 Negative values changes scrolling direction.
17868
17869 @item vertical, v
17870 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17871 Negative values changes scrolling direction.
17872
17873 @item hpos
17874 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17875
17876 @item vpos
17877 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17878 @end table
17879
17880 @subsection Commands
17881
17882 This filter supports the following @ref{commands}:
17883 @table @option
17884 @item horizontal, h
17885 Set the horizontal scrolling speed.
17886 @item vertical, v
17887 Set the vertical scrolling speed.
17888 @end table
17889
17890 @anchor{scdet}
17891 @section scdet
17892
17893 Detect video scene change.
17894
17895 This filter sets frame metadata with mafd between frame, the scene score, and
17896 forward the frame to the next filter, so they can use these metadata to detect
17897 scene change or others.
17898
17899 In addition, this filter logs a message and sets frame metadata when it detects
17900 a scene change by @option{threshold}.
17901
17902 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17903
17904 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17905 to detect scene change.
17906
17907 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17908 detect scene change with @option{threshold}.
17909
17910 The filter accepts the following options:
17911
17912 @table @option
17913 @item threshold, t
17914 Set the scene change detection threshold as a percentage of maximum change. Good
17915 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17916 @code{[0., 100.]}.
17917
17918 Default value is @code{10.}.
17919
17920 @item sc_pass, s
17921 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17922 You can enable it if you want to get snapshot of scene change frames only.
17923 @end table
17924
17925 @anchor{selectivecolor}
17926 @section selectivecolor
17927
17928 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17929 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17930 by the "purity" of the color (that is, how saturated it already is).
17931
17932 This filter is similar to the Adobe Photoshop Selective Color tool.
17933
17934 The filter accepts the following options:
17935
17936 @table @option
17937 @item correction_method
17938 Select color correction method.
17939
17940 Available values are:
17941 @table @samp
17942 @item absolute
17943 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17944 component value).
17945 @item relative
17946 Specified adjustments are relative to the original component value.
17947 @end table
17948 Default is @code{absolute}.
17949 @item reds
17950 Adjustments for red pixels (pixels where the red component is the maximum)
17951 @item yellows
17952 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17953 @item greens
17954 Adjustments for green pixels (pixels where the green component is the maximum)
17955 @item cyans
17956 Adjustments for cyan pixels (pixels where the red component is the minimum)
17957 @item blues
17958 Adjustments for blue pixels (pixels where the blue component is the maximum)
17959 @item magentas
17960 Adjustments for magenta pixels (pixels where the green component is the minimum)
17961 @item whites
17962 Adjustments for white pixels (pixels where all components are greater than 128)
17963 @item neutrals
17964 Adjustments for all pixels except pure black and pure white
17965 @item blacks
17966 Adjustments for black pixels (pixels where all components are lesser than 128)
17967 @item psfile
17968 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17969 @end table
17970
17971 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17972 4 space separated floating point adjustment values in the [-1,1] range,
17973 respectively to adjust the amount of cyan, magenta, yellow and black for the
17974 pixels of its range.
17975
17976 @subsection Examples
17977
17978 @itemize
17979 @item
17980 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17981 increase magenta by 27% in blue areas:
17982 @example
17983 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17984 @end example
17985
17986 @item
17987 Use a Photoshop selective color preset:
17988 @example
17989 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17990 @end example
17991 @end itemize
17992
17993 @anchor{separatefields}
17994 @section separatefields
17995
17996 The @code{separatefields} takes a frame-based video input and splits
17997 each frame into its components fields, producing a new half height clip
17998 with twice the frame rate and twice the frame count.
17999
18000 This filter use field-dominance information in frame to decide which
18001 of each pair of fields to place first in the output.
18002 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
18003
18004 @section setdar, setsar
18005
18006 The @code{setdar} filter sets the Display Aspect Ratio for the filter
18007 output video.
18008
18009 This is done by changing the specified Sample (aka Pixel) Aspect
18010 Ratio, according to the following equation:
18011 @example
18012 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
18013 @end example
18014
18015 Keep in mind that the @code{setdar} filter does not modify the pixel
18016 dimensions of the video frame. Also, the display aspect ratio set by
18017 this filter may be changed by later filters in the filterchain,
18018 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
18019 applied.
18020
18021 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
18022 the filter output video.
18023
18024 Note that as a consequence of the application of this filter, the
18025 output display aspect ratio will change according to the equation
18026 above.
18027
18028 Keep in mind that the sample aspect ratio set by the @code{setsar}
18029 filter may be changed by later filters in the filterchain, e.g. if
18030 another "setsar" or a "setdar" filter is applied.
18031
18032 It accepts the following parameters:
18033
18034 @table @option
18035 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
18036 Set the aspect ratio used by the filter.
18037
18038 The parameter can be a floating point number string, an expression, or
18039 a string of the form @var{num}:@var{den}, where @var{num} and
18040 @var{den} are the numerator and denominator of the aspect ratio. If
18041 the parameter is not specified, it is assumed the value "0".
18042 In case the form "@var{num}:@var{den}" is used, the @code{:} character
18043 should be escaped.
18044
18045 @item max
18046 Set the maximum integer value to use for expressing numerator and
18047 denominator when reducing the expressed aspect ratio to a rational.
18048 Default value is @code{100}.
18049
18050 @end table
18051
18052 The parameter @var{sar} is an expression containing
18053 the following constants:
18054
18055 @table @option
18056 @item E, PI, PHI
18057 These are approximated values for the mathematical constants e
18058 (Euler's number), pi (Greek pi), and phi (the golden ratio).
18059
18060 @item w, h
18061 The input width and height.
18062
18063 @item a
18064 These are the same as @var{w} / @var{h}.
18065
18066 @item sar
18067 The input sample aspect ratio.
18068
18069 @item dar
18070 The input display aspect ratio. It is the same as
18071 (@var{w} / @var{h}) * @var{sar}.
18072
18073 @item hsub, vsub
18074 Horizontal and vertical chroma subsample values. For example, for the
18075 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
18076 @end table
18077
18078 @subsection Examples
18079
18080 @itemize
18081
18082 @item
18083 To change the display aspect ratio to 16:9, specify one of the following:
18084 @example
18085 setdar=dar=1.77777
18086 setdar=dar=16/9
18087 @end example
18088
18089 @item
18090 To change the sample aspect ratio to 10:11, specify:
18091 @example
18092 setsar=sar=10/11
18093 @end example
18094
18095 @item
18096 To set a display aspect ratio of 16:9, and specify a maximum integer value of
18097 1000 in the aspect ratio reduction, use the command:
18098 @example
18099 setdar=ratio=16/9:max=1000
18100 @end example
18101
18102 @end itemize
18103
18104 @anchor{setfield}
18105 @section setfield
18106
18107 Force field for the output video frame.
18108
18109 The @code{setfield} filter marks the interlace type field for the
18110 output frames. It does not change the input frame, but only sets the
18111 corresponding property, which affects how the frame is treated by
18112 following filters (e.g. @code{fieldorder} or @code{yadif}).
18113
18114 The filter accepts the following options:
18115
18116 @table @option
18117
18118 @item mode
18119 Available values are:
18120
18121 @table @samp
18122 @item auto
18123 Keep the same field property.
18124
18125 @item bff
18126 Mark the frame as bottom-field-first.
18127
18128 @item tff
18129 Mark the frame as top-field-first.
18130
18131 @item prog
18132 Mark the frame as progressive.
18133 @end table
18134 @end table
18135
18136 @anchor{setparams}
18137 @section setparams
18138
18139 Force frame parameter for the output video frame.
18140
18141 The @code{setparams} filter marks interlace and color range for the
18142 output frames. It does not change the input frame, but only sets the
18143 corresponding property, which affects how the frame is treated by
18144 filters/encoders.
18145
18146 @table @option
18147 @item field_mode
18148 Available values are:
18149
18150 @table @samp
18151 @item auto
18152 Keep the same field property (default).
18153
18154 @item bff
18155 Mark the frame as bottom-field-first.
18156
18157 @item tff
18158 Mark the frame as top-field-first.
18159
18160 @item prog
18161 Mark the frame as progressive.
18162 @end table
18163
18164 @item range
18165 Available values are:
18166
18167 @table @samp
18168 @item auto
18169 Keep the same color range property (default).
18170
18171 @item unspecified, unknown
18172 Mark the frame as unspecified color range.
18173
18174 @item limited, tv, mpeg
18175 Mark the frame as limited range.
18176
18177 @item full, pc, jpeg
18178 Mark the frame as full range.
18179 @end table
18180
18181 @item color_primaries
18182 Set the color primaries.
18183 Available values are:
18184
18185 @table @samp
18186 @item auto
18187 Keep the same color primaries property (default).
18188
18189 @item bt709
18190 @item unknown
18191 @item bt470m
18192 @item bt470bg
18193 @item smpte170m
18194 @item smpte240m
18195 @item film
18196 @item bt2020
18197 @item smpte428
18198 @item smpte431
18199 @item smpte432
18200 @item jedec-p22
18201 @end table
18202
18203 @item color_trc
18204 Set the color transfer.
18205 Available values are:
18206
18207 @table @samp
18208 @item auto
18209 Keep the same color trc property (default).
18210
18211 @item bt709
18212 @item unknown
18213 @item bt470m
18214 @item bt470bg
18215 @item smpte170m
18216 @item smpte240m
18217 @item linear
18218 @item log100
18219 @item log316
18220 @item iec61966-2-4
18221 @item bt1361e
18222 @item iec61966-2-1
18223 @item bt2020-10
18224 @item bt2020-12
18225 @item smpte2084
18226 @item smpte428
18227 @item arib-std-b67
18228 @end table
18229
18230 @item colorspace
18231 Set the colorspace.
18232 Available values are:
18233
18234 @table @samp
18235 @item auto
18236 Keep the same colorspace property (default).
18237
18238 @item gbr
18239 @item bt709
18240 @item unknown
18241 @item fcc
18242 @item bt470bg
18243 @item smpte170m
18244 @item smpte240m
18245 @item ycgco
18246 @item bt2020nc
18247 @item bt2020c
18248 @item smpte2085
18249 @item chroma-derived-nc
18250 @item chroma-derived-c
18251 @item ictcp
18252 @end table
18253 @end table
18254
18255 @section shear
18256 Apply shear transform to input video.
18257
18258 This filter supports the following options:
18259
18260 @table @option
18261 @item shx
18262 Shear factor in X-direction. Default value is 0.
18263 Allowed range is from -2 to 2.
18264
18265 @item shy
18266 Shear factor in Y-direction. Default value is 0.
18267 Allowed range is from -2 to 2.
18268
18269 @item fillcolor, c
18270 Set the color used to fill the output area not covered by the transformed
18271 video. For the general syntax of this option, check the
18272 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18273 If the special value "none" is selected then no
18274 background is printed (useful for example if the background is never shown).
18275
18276 Default value is "black".
18277
18278 @item interp
18279 Set interpolation type. Can be @code{bilinear} or @code{nearest}. Default is @code{bilinear}.
18280 @end table
18281
18282 @subsection Commands
18283
18284 This filter supports the all above options as @ref{commands}.
18285
18286 @section showinfo
18287
18288 Show a line containing various information for each input video frame.
18289 The input video is not modified.
18290
18291 This filter supports the following options:
18292
18293 @table @option
18294 @item checksum
18295 Calculate checksums of each plane. By default enabled.
18296 @end table
18297
18298 The shown line contains a sequence of key/value pairs of the form
18299 @var{key}:@var{value}.
18300
18301 The following values are shown in the output:
18302
18303 @table @option
18304 @item n
18305 The (sequential) number of the input frame, starting from 0.
18306
18307 @item pts
18308 The Presentation TimeStamp of the input frame, expressed as a number of
18309 time base units. The time base unit depends on the filter input pad.
18310
18311 @item pts_time
18312 The Presentation TimeStamp of the input frame, expressed as a number of
18313 seconds.
18314
18315 @item pos
18316 The position of the frame in the input stream, or -1 if this information is
18317 unavailable and/or meaningless (for example in case of synthetic video).
18318
18319 @item fmt
18320 The pixel format name.
18321
18322 @item sar
18323 The sample aspect ratio of the input frame, expressed in the form
18324 @var{num}/@var{den}.
18325
18326 @item s
18327 The size of the input frame. For the syntax of this option, check the
18328 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18329
18330 @item i
18331 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
18332 for bottom field first).
18333
18334 @item iskey
18335 This is 1 if the frame is a key frame, 0 otherwise.
18336
18337 @item type
18338 The picture type of the input frame ("I" for an I-frame, "P" for a
18339 P-frame, "B" for a B-frame, or "?" for an unknown type).
18340 Also refer to the documentation of the @code{AVPictureType} enum and of
18341 the @code{av_get_picture_type_char} function defined in
18342 @file{libavutil/avutil.h}.
18343
18344 @item checksum
18345 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
18346
18347 @item plane_checksum
18348 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
18349 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
18350
18351 @item mean
18352 The mean value of pixels in each plane of the input frame, expressed in the form
18353 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
18354
18355 @item stdev
18356 The standard deviation of pixel values in each plane of the input frame, expressed
18357 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
18358
18359 @end table
18360
18361 @section showpalette
18362
18363 Displays the 256 colors palette of each frame. This filter is only relevant for
18364 @var{pal8} pixel format frames.
18365
18366 It accepts the following option:
18367
18368 @table @option
18369 @item s
18370 Set the size of the box used to represent one palette color entry. Default is
18371 @code{30} (for a @code{30x30} pixel box).
18372 @end table
18373
18374 @section shuffleframes
18375
18376 Reorder and/or duplicate and/or drop video frames.
18377
18378 It accepts the following parameters:
18379
18380 @table @option
18381 @item mapping
18382 Set the destination indexes of input frames.
18383 This is space or '|' separated list of indexes that maps input frames to output
18384 frames. Number of indexes also sets maximal value that each index may have.
18385 '-1' index have special meaning and that is to drop frame.
18386 @end table
18387
18388 The first frame has the index 0. The default is to keep the input unchanged.
18389
18390 @subsection Examples
18391
18392 @itemize
18393 @item
18394 Swap second and third frame of every three frames of the input:
18395 @example
18396 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
18397 @end example
18398
18399 @item
18400 Swap 10th and 1st frame of every ten frames of the input:
18401 @example
18402 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
18403 @end example
18404 @end itemize
18405
18406 @section shufflepixels
18407
18408 Reorder pixels in video frames.
18409
18410 This filter accepts the following options:
18411
18412 @table @option
18413 @item direction, d
18414 Set shuffle direction. Can be forward or inverse direction.
18415 Default direction is forward.
18416
18417 @item mode, m
18418 Set shuffle mode. Can be horizontal, vertical or block mode.
18419
18420 @item width, w
18421 @item height, h
18422 Set shuffle block_size. In case of horizontal shuffle mode only width
18423 part of size is used, and in case of vertical shuffle mode only height
18424 part of size is used.
18425
18426 @item seed, s
18427 Set random seed used with shuffling pixels. Mainly useful to set to be able
18428 to reverse filtering process to get original input.
18429 For example, to reverse forward shuffle you need to use same parameters
18430 and exact same seed and to set direction to inverse.
18431 @end table
18432
18433 @section shuffleplanes
18434
18435 Reorder and/or duplicate video planes.
18436
18437 It accepts the following parameters:
18438
18439 @table @option
18440
18441 @item map0
18442 The index of the input plane to be used as the first output plane.
18443
18444 @item map1
18445 The index of the input plane to be used as the second output plane.
18446
18447 @item map2
18448 The index of the input plane to be used as the third output plane.
18449
18450 @item map3
18451 The index of the input plane to be used as the fourth output plane.
18452
18453 @end table
18454
18455 The first plane has the index 0. The default is to keep the input unchanged.
18456
18457 @subsection Examples
18458
18459 @itemize
18460 @item
18461 Swap the second and third planes of the input:
18462 @example
18463 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
18464 @end example
18465 @end itemize
18466
18467 @anchor{signalstats}
18468 @section signalstats
18469 Evaluate various visual metrics that assist in determining issues associated
18470 with the digitization of analog video media.
18471
18472 By default the filter will log these metadata values:
18473
18474 @table @option
18475 @item YMIN
18476 Display the minimal Y value contained within the input frame. Expressed in
18477 range of [0-255].
18478
18479 @item YLOW
18480 Display the Y value at the 10% percentile within the input frame. Expressed in
18481 range of [0-255].
18482
18483 @item YAVG
18484 Display the average Y value within the input frame. Expressed in range of
18485 [0-255].
18486
18487 @item YHIGH
18488 Display the Y value at the 90% percentile within the input frame. Expressed in
18489 range of [0-255].
18490
18491 @item YMAX
18492 Display the maximum Y value contained within the input frame. Expressed in
18493 range of [0-255].
18494
18495 @item UMIN
18496 Display the minimal U value contained within the input frame. Expressed in
18497 range of [0-255].
18498
18499 @item ULOW
18500 Display the U value at the 10% percentile within the input frame. Expressed in
18501 range of [0-255].
18502
18503 @item UAVG
18504 Display the average U value within the input frame. Expressed in range of
18505 [0-255].
18506
18507 @item UHIGH
18508 Display the U value at the 90% percentile within the input frame. Expressed in
18509 range of [0-255].
18510
18511 @item UMAX
18512 Display the maximum U value contained within the input frame. Expressed in
18513 range of [0-255].
18514
18515 @item VMIN
18516 Display the minimal V value contained within the input frame. Expressed in
18517 range of [0-255].
18518
18519 @item VLOW
18520 Display the V value at the 10% percentile within the input frame. Expressed in
18521 range of [0-255].
18522
18523 @item VAVG
18524 Display the average V value within the input frame. Expressed in range of
18525 [0-255].
18526
18527 @item VHIGH
18528 Display the V value at the 90% percentile within the input frame. Expressed in
18529 range of [0-255].
18530
18531 @item VMAX
18532 Display the maximum V value contained within the input frame. Expressed in
18533 range of [0-255].
18534
18535 @item SATMIN
18536 Display the minimal saturation value contained within the input frame.
18537 Expressed in range of [0-~181.02].
18538
18539 @item SATLOW
18540 Display the saturation value at the 10% percentile within the input frame.
18541 Expressed in range of [0-~181.02].
18542
18543 @item SATAVG
18544 Display the average saturation value within the input frame. Expressed in range
18545 of [0-~181.02].
18546
18547 @item SATHIGH
18548 Display the saturation value at the 90% percentile within the input frame.
18549 Expressed in range of [0-~181.02].
18550
18551 @item SATMAX
18552 Display the maximum saturation value contained within the input frame.
18553 Expressed in range of [0-~181.02].
18554
18555 @item HUEMED
18556 Display the median value for hue within the input frame. Expressed in range of
18557 [0-360].
18558
18559 @item HUEAVG
18560 Display the average value for hue within the input frame. Expressed in range of
18561 [0-360].
18562
18563 @item YDIF
18564 Display the average of sample value difference between all values of the Y
18565 plane in the current frame and corresponding values of the previous input frame.
18566 Expressed in range of [0-255].
18567
18568 @item UDIF
18569 Display the average of sample value difference between all values of the U
18570 plane in the current frame and corresponding values of the previous input frame.
18571 Expressed in range of [0-255].
18572
18573 @item VDIF
18574 Display the average of sample value difference between all values of the V
18575 plane in the current frame and corresponding values of the previous input frame.
18576 Expressed in range of [0-255].
18577
18578 @item YBITDEPTH
18579 Display bit depth of Y plane in current frame.
18580 Expressed in range of [0-16].
18581
18582 @item UBITDEPTH
18583 Display bit depth of U plane in current frame.
18584 Expressed in range of [0-16].
18585
18586 @item VBITDEPTH
18587 Display bit depth of V plane in current frame.
18588 Expressed in range of [0-16].
18589 @end table
18590
18591 The filter accepts the following options:
18592
18593 @table @option
18594 @item stat
18595 @item out
18596
18597 @option{stat} specify an additional form of image analysis.
18598 @option{out} output video with the specified type of pixel highlighted.
18599
18600 Both options accept the following values:
18601
18602 @table @samp
18603 @item tout
18604 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18605 unlike the neighboring pixels of the same field. Examples of temporal outliers
18606 include the results of video dropouts, head clogs, or tape tracking issues.
18607
18608 @item vrep
18609 Identify @var{vertical line repetition}. Vertical line repetition includes
18610 similar rows of pixels within a frame. In born-digital video vertical line
18611 repetition is common, but this pattern is uncommon in video digitized from an
18612 analog source. When it occurs in video that results from the digitization of an
18613 analog source it can indicate concealment from a dropout compensator.
18614
18615 @item brng
18616 Identify pixels that fall outside of legal broadcast range.
18617 @end table
18618
18619 @item color, c
18620 Set the highlight color for the @option{out} option. The default color is
18621 yellow.
18622 @end table
18623
18624 @subsection Examples
18625
18626 @itemize
18627 @item
18628 Output data of various video metrics:
18629 @example
18630 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18631 @end example
18632
18633 @item
18634 Output specific data about the minimum and maximum values of the Y plane per frame:
18635 @example
18636 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18637 @end example
18638
18639 @item
18640 Playback video while highlighting pixels that are outside of broadcast range in red.
18641 @example
18642 ffplay example.mov -vf signalstats="out=brng:color=red"
18643 @end example
18644
18645 @item
18646 Playback video with signalstats metadata drawn over the frame.
18647 @example
18648 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18649 @end example
18650
18651 The contents of signalstat_drawtext.txt used in the command are:
18652 @example
18653 time %@{pts:hms@}
18654 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18655 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18656 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18657 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18658
18659 @end example
18660 @end itemize
18661
18662 @anchor{signature}
18663 @section signature
18664
18665 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18666 input. In this case the matching between the inputs can be calculated additionally.
18667 The filter always passes through the first input. The signature of each stream can
18668 be written into a file.
18669
18670 It accepts the following options:
18671
18672 @table @option
18673 @item detectmode
18674 Enable or disable the matching process.
18675
18676 Available values are:
18677
18678 @table @samp
18679 @item off
18680 Disable the calculation of a matching (default).
18681 @item full
18682 Calculate the matching for the whole video and output whether the whole video
18683 matches or only parts.
18684 @item fast
18685 Calculate only until a matching is found or the video ends. Should be faster in
18686 some cases.
18687 @end table
18688
18689 @item nb_inputs
18690 Set the number of inputs. The option value must be a non negative integer.
18691 Default value is 1.
18692
18693 @item filename
18694 Set the path to which the output is written. If there is more than one input,
18695 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18696 integer), that will be replaced with the input number. If no filename is
18697 specified, no output will be written. This is the default.
18698
18699 @item format
18700 Choose the output format.
18701
18702 Available values are:
18703
18704 @table @samp
18705 @item binary
18706 Use the specified binary representation (default).
18707 @item xml
18708 Use the specified xml representation.
18709 @end table
18710
18711 @item th_d
18712 Set threshold to detect one word as similar. The option value must be an integer
18713 greater than zero. The default value is 9000.
18714
18715 @item th_dc
18716 Set threshold to detect all words as similar. The option value must be an integer
18717 greater than zero. The default value is 60000.
18718
18719 @item th_xh
18720 Set threshold to detect frames as similar. The option value must be an integer
18721 greater than zero. The default value is 116.
18722
18723 @item th_di
18724 Set the minimum length of a sequence in frames to recognize it as matching
18725 sequence. The option value must be a non negative integer value.
18726 The default value is 0.
18727
18728 @item th_it
18729 Set the minimum relation, that matching frames to all frames must have.
18730 The option value must be a double value between 0 and 1. The default value is 0.5.
18731 @end table
18732
18733 @subsection Examples
18734
18735 @itemize
18736 @item
18737 To calculate the signature of an input video and store it in signature.bin:
18738 @example
18739 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18740 @end example
18741
18742 @item
18743 To detect whether two videos match and store the signatures in XML format in
18744 signature0.xml and signature1.xml:
18745 @example
18746 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 -
18747 @end example
18748
18749 @end itemize
18750
18751 @anchor{smartblur}
18752 @section smartblur
18753
18754 Blur the input video without impacting the outlines.
18755
18756 It accepts the following options:
18757
18758 @table @option
18759 @item luma_radius, lr
18760 Set the luma radius. The option value must be a float number in
18761 the range [0.1,5.0] that specifies the variance of the gaussian filter
18762 used to blur the image (slower if larger). Default value is 1.0.
18763
18764 @item luma_strength, ls
18765 Set the luma strength. The option value must be a float number
18766 in the range [-1.0,1.0] that configures the blurring. A value included
18767 in [0.0,1.0] will blur the image whereas a value included in
18768 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18769
18770 @item luma_threshold, lt
18771 Set the luma threshold used as a coefficient to determine
18772 whether a pixel should be blurred or not. The option value must be an
18773 integer in the range [-30,30]. A value of 0 will filter all the image,
18774 a value included in [0,30] will filter flat areas and a value included
18775 in [-30,0] will filter edges. Default value is 0.
18776
18777 @item chroma_radius, cr
18778 Set the chroma radius. The option value must be a float number in
18779 the range [0.1,5.0] that specifies the variance of the gaussian filter
18780 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18781
18782 @item chroma_strength, cs
18783 Set the chroma strength. The option value must be a float number
18784 in the range [-1.0,1.0] that configures the blurring. A value included
18785 in [0.0,1.0] will blur the image whereas a value included in
18786 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18787
18788 @item chroma_threshold, ct
18789 Set the chroma threshold used as a coefficient to determine
18790 whether a pixel should be blurred or not. The option value must be an
18791 integer in the range [-30,30]. A value of 0 will filter all the image,
18792 a value included in [0,30] will filter flat areas and a value included
18793 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18794 @end table
18795
18796 If a chroma option is not explicitly set, the corresponding luma value
18797 is set.
18798
18799 @section sobel
18800 Apply sobel operator to input video stream.
18801
18802 The filter accepts the following option:
18803
18804 @table @option
18805 @item planes
18806 Set which planes will be processed, unprocessed planes will be copied.
18807 By default value 0xf, all planes will be processed.
18808
18809 @item scale
18810 Set value which will be multiplied with filtered result.
18811
18812 @item delta
18813 Set value which will be added to filtered result.
18814 @end table
18815
18816 @subsection Commands
18817
18818 This filter supports the all above options as @ref{commands}.
18819
18820 @anchor{spp}
18821 @section spp
18822
18823 Apply a simple postprocessing filter that compresses and decompresses the image
18824 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18825 and average the results.
18826
18827 The filter accepts the following options:
18828
18829 @table @option
18830 @item quality
18831 Set quality. This option defines the number of levels for averaging. It accepts
18832 an integer in the range 0-6. If set to @code{0}, the filter will have no
18833 effect. A value of @code{6} means the higher quality. For each increment of
18834 that value the speed drops by a factor of approximately 2.  Default value is
18835 @code{3}.
18836
18837 @item qp
18838 Force a constant quantization parameter. If not set, the filter will use the QP
18839 from the video stream (if available).
18840
18841 @item mode
18842 Set thresholding mode. Available modes are:
18843
18844 @table @samp
18845 @item hard
18846 Set hard thresholding (default).
18847 @item soft
18848 Set soft thresholding (better de-ringing effect, but likely blurrier).
18849 @end table
18850
18851 @item use_bframe_qp
18852 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18853 option may cause flicker since the B-Frames have often larger QP. Default is
18854 @code{0} (not enabled).
18855 @end table
18856
18857 @subsection Commands
18858
18859 This filter supports the following commands:
18860 @table @option
18861 @item quality, level
18862 Set quality level. The value @code{max} can be used to set the maximum level,
18863 currently @code{6}.
18864 @end table
18865
18866 @anchor{sr}
18867 @section sr
18868
18869 Scale the input by applying one of the super-resolution methods based on
18870 convolutional neural networks. Supported models:
18871
18872 @itemize
18873 @item
18874 Super-Resolution Convolutional Neural Network model (SRCNN).
18875 See @url{https://arxiv.org/abs/1501.00092}.
18876
18877 @item
18878 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18879 See @url{https://arxiv.org/abs/1609.05158}.
18880 @end itemize
18881
18882 Training scripts as well as scripts for model file (.pb) saving can be found at
18883 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18884 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18885
18886 Native model files (.model) can be generated from TensorFlow model
18887 files (.pb) by using tools/python/convert.py
18888
18889 The filter accepts the following options:
18890
18891 @table @option
18892 @item dnn_backend
18893 Specify which DNN backend to use for model loading and execution. This option accepts
18894 the following values:
18895
18896 @table @samp
18897 @item native
18898 Native implementation of DNN loading and execution.
18899
18900 @item tensorflow
18901 TensorFlow backend. To enable this backend you
18902 need to install the TensorFlow for C library (see
18903 @url{https://www.tensorflow.org/install/lang_c}) and configure FFmpeg with
18904 @code{--enable-libtensorflow}
18905 @end table
18906
18907 Default value is @samp{native}.
18908
18909 @item model
18910 Set path to model file specifying network architecture and its parameters.
18911 Note that different backends use different file formats. TensorFlow backend
18912 can load files for both formats, while native backend can load files for only
18913 its format.
18914
18915 @item scale_factor
18916 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18917 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18918 input upscaled using bicubic upscaling with proper scale factor.
18919 @end table
18920
18921 This feature can also be finished with @ref{dnn_processing} filter.
18922
18923 @section ssim
18924
18925 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18926
18927 This filter takes in input two input videos, the first input is
18928 considered the "main" source and is passed unchanged to the
18929 output. The second input is used as a "reference" video for computing
18930 the SSIM.
18931
18932 Both video inputs must have the same resolution and pixel format for
18933 this filter to work correctly. Also it assumes that both inputs
18934 have the same number of frames, which are compared one by one.
18935
18936 The filter stores the calculated SSIM of each frame.
18937
18938 The description of the accepted parameters follows.
18939
18940 @table @option
18941 @item stats_file, f
18942 If specified the filter will use the named file to save the SSIM of
18943 each individual frame. When filename equals "-" the data is sent to
18944 standard output.
18945 @end table
18946
18947 The file printed if @var{stats_file} is selected, contains a sequence of
18948 key/value pairs of the form @var{key}:@var{value} for each compared
18949 couple of frames.
18950
18951 A description of each shown parameter follows:
18952
18953 @table @option
18954 @item n
18955 sequential number of the input frame, starting from 1
18956
18957 @item Y, U, V, R, G, B
18958 SSIM of the compared frames for the component specified by the suffix.
18959
18960 @item All
18961 SSIM of the compared frames for the whole frame.
18962
18963 @item dB
18964 Same as above but in dB representation.
18965 @end table
18966
18967 This filter also supports the @ref{framesync} options.
18968
18969 @subsection Examples
18970 @itemize
18971 @item
18972 For example:
18973 @example
18974 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18975 [main][ref] ssim="stats_file=stats.log" [out]
18976 @end example
18977
18978 On this example the input file being processed is compared with the
18979 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18980 is stored in @file{stats.log}.
18981
18982 @item
18983 Another example with both psnr and ssim at same time:
18984 @example
18985 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18986 @end example
18987
18988 @item
18989 Another example with different containers:
18990 @example
18991 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 -
18992 @end example
18993 @end itemize
18994
18995 @section stereo3d
18996
18997 Convert between different stereoscopic image formats.
18998
18999 The filters accept the following options:
19000
19001 @table @option
19002 @item in
19003 Set stereoscopic image format of input.
19004
19005 Available values for input image formats are:
19006 @table @samp
19007 @item sbsl
19008 side by side parallel (left eye left, right eye right)
19009
19010 @item sbsr
19011 side by side crosseye (right eye left, left eye right)
19012
19013 @item sbs2l
19014 side by side parallel with half width resolution
19015 (left eye left, right eye right)
19016
19017 @item sbs2r
19018 side by side crosseye with half width resolution
19019 (right eye left, left eye right)
19020
19021 @item abl
19022 @item tbl
19023 above-below (left eye above, right eye below)
19024
19025 @item abr
19026 @item tbr
19027 above-below (right eye above, left eye below)
19028
19029 @item ab2l
19030 @item tb2l
19031 above-below with half height resolution
19032 (left eye above, right eye below)
19033
19034 @item ab2r
19035 @item tb2r
19036 above-below with half height resolution
19037 (right eye above, left eye below)
19038
19039 @item al
19040 alternating frames (left eye first, right eye second)
19041
19042 @item ar
19043 alternating frames (right eye first, left eye second)
19044
19045 @item irl
19046 interleaved rows (left eye has top row, right eye starts on next row)
19047
19048 @item irr
19049 interleaved rows (right eye has top row, left eye starts on next row)
19050
19051 @item icl
19052 interleaved columns, left eye first
19053
19054 @item icr
19055 interleaved columns, right eye first
19056
19057 Default value is @samp{sbsl}.
19058 @end table
19059
19060 @item out
19061 Set stereoscopic image format of output.
19062
19063 @table @samp
19064 @item sbsl
19065 side by side parallel (left eye left, right eye right)
19066
19067 @item sbsr
19068 side by side crosseye (right eye left, left eye right)
19069
19070 @item sbs2l
19071 side by side parallel with half width resolution
19072 (left eye left, right eye right)
19073
19074 @item sbs2r
19075 side by side crosseye with half width resolution
19076 (right eye left, left eye right)
19077
19078 @item abl
19079 @item tbl
19080 above-below (left eye above, right eye below)
19081
19082 @item abr
19083 @item tbr
19084 above-below (right eye above, left eye below)
19085
19086 @item ab2l
19087 @item tb2l
19088 above-below with half height resolution
19089 (left eye above, right eye below)
19090
19091 @item ab2r
19092 @item tb2r
19093 above-below with half height resolution
19094 (right eye above, left eye below)
19095
19096 @item al
19097 alternating frames (left eye first, right eye second)
19098
19099 @item ar
19100 alternating frames (right eye first, left eye second)
19101
19102 @item irl
19103 interleaved rows (left eye has top row, right eye starts on next row)
19104
19105 @item irr
19106 interleaved rows (right eye has top row, left eye starts on next row)
19107
19108 @item arbg
19109 anaglyph red/blue gray
19110 (red filter on left eye, blue filter on right eye)
19111
19112 @item argg
19113 anaglyph red/green gray
19114 (red filter on left eye, green filter on right eye)
19115
19116 @item arcg
19117 anaglyph red/cyan gray
19118 (red filter on left eye, cyan filter on right eye)
19119
19120 @item arch
19121 anaglyph red/cyan half colored
19122 (red filter on left eye, cyan filter on right eye)
19123
19124 @item arcc
19125 anaglyph red/cyan color
19126 (red filter on left eye, cyan filter on right eye)
19127
19128 @item arcd
19129 anaglyph red/cyan color optimized with the least squares projection of dubois
19130 (red filter on left eye, cyan filter on right eye)
19131
19132 @item agmg
19133 anaglyph green/magenta gray
19134 (green filter on left eye, magenta filter on right eye)
19135
19136 @item agmh
19137 anaglyph green/magenta half colored
19138 (green filter on left eye, magenta filter on right eye)
19139
19140 @item agmc
19141 anaglyph green/magenta colored
19142 (green filter on left eye, magenta filter on right eye)
19143
19144 @item agmd
19145 anaglyph green/magenta color optimized with the least squares projection of dubois
19146 (green filter on left eye, magenta filter on right eye)
19147
19148 @item aybg
19149 anaglyph yellow/blue gray
19150 (yellow filter on left eye, blue filter on right eye)
19151
19152 @item aybh
19153 anaglyph yellow/blue half colored
19154 (yellow filter on left eye, blue filter on right eye)
19155
19156 @item aybc
19157 anaglyph yellow/blue colored
19158 (yellow filter on left eye, blue filter on right eye)
19159
19160 @item aybd
19161 anaglyph yellow/blue color optimized with the least squares projection of dubois
19162 (yellow filter on left eye, blue filter on right eye)
19163
19164 @item ml
19165 mono output (left eye only)
19166
19167 @item mr
19168 mono output (right eye only)
19169
19170 @item chl
19171 checkerboard, left eye first
19172
19173 @item chr
19174 checkerboard, right eye first
19175
19176 @item icl
19177 interleaved columns, left eye first
19178
19179 @item icr
19180 interleaved columns, right eye first
19181
19182 @item hdmi
19183 HDMI frame pack
19184 @end table
19185
19186 Default value is @samp{arcd}.
19187 @end table
19188
19189 @subsection Examples
19190
19191 @itemize
19192 @item
19193 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
19194 @example
19195 stereo3d=sbsl:aybd
19196 @end example
19197
19198 @item
19199 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
19200 @example
19201 stereo3d=abl:sbsr
19202 @end example
19203 @end itemize
19204
19205 @section streamselect, astreamselect
19206 Select video or audio streams.
19207
19208 The filter accepts the following options:
19209
19210 @table @option
19211 @item inputs
19212 Set number of inputs. Default is 2.
19213
19214 @item map
19215 Set input indexes to remap to outputs.
19216 @end table
19217
19218 @subsection Commands
19219
19220 The @code{streamselect} and @code{astreamselect} filter supports the following
19221 commands:
19222
19223 @table @option
19224 @item map
19225 Set input indexes to remap to outputs.
19226 @end table
19227
19228 @subsection Examples
19229
19230 @itemize
19231 @item
19232 Select first 5 seconds 1st stream and rest of time 2nd stream:
19233 @example
19234 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
19235 @end example
19236
19237 @item
19238 Same as above, but for audio:
19239 @example
19240 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
19241 @end example
19242 @end itemize
19243
19244 @anchor{subtitles}
19245 @section subtitles
19246
19247 Draw subtitles on top of input video using the libass library.
19248
19249 To enable compilation of this filter you need to configure FFmpeg with
19250 @code{--enable-libass}. This filter also requires a build with libavcodec and
19251 libavformat to convert the passed subtitles file to ASS (Advanced Substation
19252 Alpha) subtitles format.
19253
19254 The filter accepts the following options:
19255
19256 @table @option
19257 @item filename, f
19258 Set the filename of the subtitle file to read. It must be specified.
19259
19260 @item original_size
19261 Specify the size of the original video, the video for which the ASS file
19262 was composed. For the syntax of this option, check the
19263 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19264 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
19265 correctly scale the fonts if the aspect ratio has been changed.
19266
19267 @item fontsdir
19268 Set a directory path containing fonts that can be used by the filter.
19269 These fonts will be used in addition to whatever the font provider uses.
19270
19271 @item alpha
19272 Process alpha channel, by default alpha channel is untouched.
19273
19274 @item charenc
19275 Set subtitles input character encoding. @code{subtitles} filter only. Only
19276 useful if not UTF-8.
19277
19278 @item stream_index, si
19279 Set subtitles stream index. @code{subtitles} filter only.
19280
19281 @item force_style
19282 Override default style or script info parameters of the subtitles. It accepts a
19283 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
19284 @end table
19285
19286 If the first key is not specified, it is assumed that the first value
19287 specifies the @option{filename}.
19288
19289 For example, to render the file @file{sub.srt} on top of the input
19290 video, use the command:
19291 @example
19292 subtitles=sub.srt
19293 @end example
19294
19295 which is equivalent to:
19296 @example
19297 subtitles=filename=sub.srt
19298 @end example
19299
19300 To render the default subtitles stream from file @file{video.mkv}, use:
19301 @example
19302 subtitles=video.mkv
19303 @end example
19304
19305 To render the second subtitles stream from that file, use:
19306 @example
19307 subtitles=video.mkv:si=1
19308 @end example
19309
19310 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
19311 @code{DejaVu Serif}, use:
19312 @example
19313 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
19314 @end example
19315
19316 @section super2xsai
19317
19318 Scale the input by 2x and smooth using the Super2xSaI (Scale and
19319 Interpolate) pixel art scaling algorithm.
19320
19321 Useful for enlarging pixel art images without reducing sharpness.
19322
19323 @section swaprect
19324
19325 Swap two rectangular objects in video.
19326
19327 This filter accepts the following options:
19328
19329 @table @option
19330 @item w
19331 Set object width.
19332
19333 @item h
19334 Set object height.
19335
19336 @item x1
19337 Set 1st rect x coordinate.
19338
19339 @item y1
19340 Set 1st rect y coordinate.
19341
19342 @item x2
19343 Set 2nd rect x coordinate.
19344
19345 @item y2
19346 Set 2nd rect y coordinate.
19347
19348 All expressions are evaluated once for each frame.
19349 @end table
19350
19351 The all options are expressions containing the following constants:
19352
19353 @table @option
19354 @item w
19355 @item h
19356 The input width and height.
19357
19358 @item a
19359 same as @var{w} / @var{h}
19360
19361 @item sar
19362 input sample aspect ratio
19363
19364 @item dar
19365 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
19366
19367 @item n
19368 The number of the input frame, starting from 0.
19369
19370 @item t
19371 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
19372
19373 @item pos
19374 the position in the file of the input frame, NAN if unknown
19375 @end table
19376
19377 @subsection Commands
19378
19379 This filter supports the all above options as @ref{commands}.
19380
19381 @section swapuv
19382 Swap U & V plane.
19383
19384 @section tblend
19385 Blend successive video frames.
19386
19387 See @ref{blend}
19388
19389 @section telecine
19390
19391 Apply telecine process to the video.
19392
19393 This filter accepts the following options:
19394
19395 @table @option
19396 @item first_field
19397 @table @samp
19398 @item top, t
19399 top field first
19400 @item bottom, b
19401 bottom field first
19402 The default value is @code{top}.
19403 @end table
19404
19405 @item pattern
19406 A string of numbers representing the pulldown pattern you wish to apply.
19407 The default value is @code{23}.
19408 @end table
19409
19410 @example
19411 Some typical patterns:
19412
19413 NTSC output (30i):
19414 27.5p: 32222
19415 24p: 23 (classic)
19416 24p: 2332 (preferred)
19417 20p: 33
19418 18p: 334
19419 16p: 3444
19420
19421 PAL output (25i):
19422 27.5p: 12222
19423 24p: 222222222223 ("Euro pulldown")
19424 16.67p: 33
19425 16p: 33333334
19426 @end example
19427
19428 @section thistogram
19429
19430 Compute and draw a color distribution histogram for the input video across time.
19431
19432 Unlike @ref{histogram} video filter which only shows histogram of single input frame
19433 at certain time, this filter shows also past histograms of number of frames defined
19434 by @code{width} option.
19435
19436 The computed histogram is a representation of the color component
19437 distribution in an image.
19438
19439 The filter accepts the following options:
19440
19441 @table @option
19442 @item width, w
19443 Set width of single color component output. Default value is @code{0}.
19444 Value of @code{0} means width will be picked from input video.
19445 This also set number of passed histograms to keep.
19446 Allowed range is [0, 8192].
19447
19448 @item display_mode, d
19449 Set display mode.
19450 It accepts the following values:
19451 @table @samp
19452 @item stack
19453 Per color component graphs are placed below each other.
19454
19455 @item parade
19456 Per color component graphs are placed side by side.
19457
19458 @item overlay
19459 Presents information identical to that in the @code{parade}, except
19460 that the graphs representing color components are superimposed directly
19461 over one another.
19462 @end table
19463 Default is @code{stack}.
19464
19465 @item levels_mode, m
19466 Set mode. Can be either @code{linear}, or @code{logarithmic}.
19467 Default is @code{linear}.
19468
19469 @item components, c
19470 Set what color components to display.
19471 Default is @code{7}.
19472
19473 @item bgopacity, b
19474 Set background opacity. Default is @code{0.9}.
19475
19476 @item envelope, e
19477 Show envelope. Default is disabled.
19478
19479 @item ecolor, ec
19480 Set envelope color. Default is @code{gold}.
19481
19482 @item slide
19483 Set slide mode.
19484
19485 Available values for slide is:
19486 @table @samp
19487 @item frame
19488 Draw new frame when right border is reached.
19489
19490 @item replace
19491 Replace old columns with new ones.
19492
19493 @item scroll
19494 Scroll from right to left.
19495
19496 @item rscroll
19497 Scroll from left to right.
19498
19499 @item picture
19500 Draw single picture.
19501 @end table
19502
19503 Default is @code{replace}.
19504 @end table
19505
19506 @section threshold
19507
19508 Apply threshold effect to video stream.
19509
19510 This filter needs four video streams to perform thresholding.
19511 First stream is stream we are filtering.
19512 Second stream is holding threshold values, third stream is holding min values,
19513 and last, fourth stream is holding max values.
19514
19515 The filter accepts the following option:
19516
19517 @table @option
19518 @item planes
19519 Set which planes will be processed, unprocessed planes will be copied.
19520 By default value 0xf, all planes will be processed.
19521 @end table
19522
19523 For example if first stream pixel's component value is less then threshold value
19524 of pixel component from 2nd threshold stream, third stream value will picked,
19525 otherwise fourth stream pixel component value will be picked.
19526
19527 Using color source filter one can perform various types of thresholding:
19528
19529 @subsection Examples
19530
19531 @itemize
19532 @item
19533 Binary threshold, using gray color as threshold:
19534 @example
19535 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19536 @end example
19537
19538 @item
19539 Inverted binary threshold, using gray color as threshold:
19540 @example
19541 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19542 @end example
19543
19544 @item
19545 Truncate binary threshold, using gray color as threshold:
19546 @example
19547 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19548 @end example
19549
19550 @item
19551 Threshold to zero, using gray color as threshold:
19552 @example
19553 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19554 @end example
19555
19556 @item
19557 Inverted threshold to zero, using gray color as threshold:
19558 @example
19559 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19560 @end example
19561 @end itemize
19562
19563 @section thumbnail
19564 Select the most representative frame in a given sequence of consecutive frames.
19565
19566 The filter accepts the following options:
19567
19568 @table @option
19569 @item n
19570 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19571 will pick one of them, and then handle the next batch of @var{n} frames until
19572 the end. Default is @code{100}.
19573 @end table
19574
19575 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19576 value will result in a higher memory usage, so a high value is not recommended.
19577
19578 @subsection Examples
19579
19580 @itemize
19581 @item
19582 Extract one picture each 50 frames:
19583 @example
19584 thumbnail=50
19585 @end example
19586
19587 @item
19588 Complete example of a thumbnail creation with @command{ffmpeg}:
19589 @example
19590 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19591 @end example
19592 @end itemize
19593
19594 @anchor{tile}
19595 @section tile
19596
19597 Tile several successive frames together.
19598
19599 The @ref{untile} filter can do the reverse.
19600
19601 The filter accepts the following options:
19602
19603 @table @option
19604
19605 @item layout
19606 Set the grid size (i.e. the number of lines and columns). For the syntax of
19607 this option, check the
19608 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19609
19610 @item nb_frames
19611 Set the maximum number of frames to render in the given area. It must be less
19612 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19613 the area will be used.
19614
19615 @item margin
19616 Set the outer border margin in pixels.
19617
19618 @item padding
19619 Set the inner border thickness (i.e. the number of pixels between frames). For
19620 more advanced padding options (such as having different values for the edges),
19621 refer to the pad video filter.
19622
19623 @item color
19624 Specify the color of the unused area. For the syntax of this option, check the
19625 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19626 The default value of @var{color} is "black".
19627
19628 @item overlap
19629 Set the number of frames to overlap when tiling several successive frames together.
19630 The value must be between @code{0} and @var{nb_frames - 1}.
19631
19632 @item init_padding
19633 Set the number of frames to initially be empty before displaying first output frame.
19634 This controls how soon will one get first output frame.
19635 The value must be between @code{0} and @var{nb_frames - 1}.
19636 @end table
19637
19638 @subsection Examples
19639
19640 @itemize
19641 @item
19642 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19643 @example
19644 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19645 @end example
19646 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19647 duplicating each output frame to accommodate the originally detected frame
19648 rate.
19649
19650 @item
19651 Display @code{5} pictures in an area of @code{3x2} frames,
19652 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19653 mixed flat and named options:
19654 @example
19655 tile=3x2:nb_frames=5:padding=7:margin=2
19656 @end example
19657 @end itemize
19658
19659 @section tinterlace
19660
19661 Perform various types of temporal field interlacing.
19662
19663 Frames are counted starting from 1, so the first input frame is
19664 considered odd.
19665
19666 The filter accepts the following options:
19667
19668 @table @option
19669
19670 @item mode
19671 Specify the mode of the interlacing. This option can also be specified
19672 as a value alone. See below for a list of values for this option.
19673
19674 Available values are:
19675
19676 @table @samp
19677 @item merge, 0
19678 Move odd frames into the upper field, even into the lower field,
19679 generating a double height frame at half frame rate.
19680 @example
19681  ------> time
19682 Input:
19683 Frame 1         Frame 2         Frame 3         Frame 4
19684
19685 11111           22222           33333           44444
19686 11111           22222           33333           44444
19687 11111           22222           33333           44444
19688 11111           22222           33333           44444
19689
19690 Output:
19691 11111                           33333
19692 22222                           44444
19693 11111                           33333
19694 22222                           44444
19695 11111                           33333
19696 22222                           44444
19697 11111                           33333
19698 22222                           44444
19699 @end example
19700
19701 @item drop_even, 1
19702 Only output odd frames, even frames are dropped, generating a frame with
19703 unchanged height at half frame rate.
19704
19705 @example
19706  ------> time
19707 Input:
19708 Frame 1         Frame 2         Frame 3         Frame 4
19709
19710 11111           22222           33333           44444
19711 11111           22222           33333           44444
19712 11111           22222           33333           44444
19713 11111           22222           33333           44444
19714
19715 Output:
19716 11111                           33333
19717 11111                           33333
19718 11111                           33333
19719 11111                           33333
19720 @end example
19721
19722 @item drop_odd, 2
19723 Only output even frames, odd frames are dropped, generating a frame with
19724 unchanged height at half frame rate.
19725
19726 @example
19727  ------> time
19728 Input:
19729 Frame 1         Frame 2         Frame 3         Frame 4
19730
19731 11111           22222           33333           44444
19732 11111           22222           33333           44444
19733 11111           22222           33333           44444
19734 11111           22222           33333           44444
19735
19736 Output:
19737                 22222                           44444
19738                 22222                           44444
19739                 22222                           44444
19740                 22222                           44444
19741 @end example
19742
19743 @item pad, 3
19744 Expand each frame to full height, but pad alternate lines with black,
19745 generating a frame with double height at the same input frame rate.
19746
19747 @example
19748  ------> time
19749 Input:
19750 Frame 1         Frame 2         Frame 3         Frame 4
19751
19752 11111           22222           33333           44444
19753 11111           22222           33333           44444
19754 11111           22222           33333           44444
19755 11111           22222           33333           44444
19756
19757 Output:
19758 11111           .....           33333           .....
19759 .....           22222           .....           44444
19760 11111           .....           33333           .....
19761 .....           22222           .....           44444
19762 11111           .....           33333           .....
19763 .....           22222           .....           44444
19764 11111           .....           33333           .....
19765 .....           22222           .....           44444
19766 @end example
19767
19768
19769 @item interleave_top, 4
19770 Interleave the upper field from odd frames with the lower field from
19771 even frames, generating a frame with unchanged height at half frame rate.
19772
19773 @example
19774  ------> time
19775 Input:
19776 Frame 1         Frame 2         Frame 3         Frame 4
19777
19778 11111<-         22222           33333<-         44444
19779 11111           22222<-         33333           44444<-
19780 11111<-         22222           33333<-         44444
19781 11111           22222<-         33333           44444<-
19782
19783 Output:
19784 11111                           33333
19785 22222                           44444
19786 11111                           33333
19787 22222                           44444
19788 @end example
19789
19790
19791 @item interleave_bottom, 5
19792 Interleave the lower field from odd frames with the upper field from
19793 even frames, generating a frame with unchanged height at half frame rate.
19794
19795 @example
19796  ------> time
19797 Input:
19798 Frame 1         Frame 2         Frame 3         Frame 4
19799
19800 11111           22222<-         33333           44444<-
19801 11111<-         22222           33333<-         44444
19802 11111           22222<-         33333           44444<-
19803 11111<-         22222           33333<-         44444
19804
19805 Output:
19806 22222                           44444
19807 11111                           33333
19808 22222                           44444
19809 11111                           33333
19810 @end example
19811
19812
19813 @item interlacex2, 6
19814 Double frame rate with unchanged height. Frames are inserted each
19815 containing the second temporal field from the previous input frame and
19816 the first temporal field from the next input frame. This mode relies on
19817 the top_field_first flag. Useful for interlaced video displays with no
19818 field synchronisation.
19819
19820 @example
19821  ------> time
19822 Input:
19823 Frame 1         Frame 2         Frame 3         Frame 4
19824
19825 11111           22222           33333           44444
19826  11111           22222           33333           44444
19827 11111           22222           33333           44444
19828  11111           22222           33333           44444
19829
19830 Output:
19831 11111   22222   22222   33333   33333   44444   44444
19832  11111   11111   22222   22222   33333   33333   44444
19833 11111   22222   22222   33333   33333   44444   44444
19834  11111   11111   22222   22222   33333   33333   44444
19835 @end example
19836
19837
19838 @item mergex2, 7
19839 Move odd frames into the upper field, even into the lower field,
19840 generating a double height frame at same frame rate.
19841
19842 @example
19843  ------> time
19844 Input:
19845 Frame 1         Frame 2         Frame 3         Frame 4
19846
19847 11111           22222           33333           44444
19848 11111           22222           33333           44444
19849 11111           22222           33333           44444
19850 11111           22222           33333           44444
19851
19852 Output:
19853 11111           33333           33333           55555
19854 22222           22222           44444           44444
19855 11111           33333           33333           55555
19856 22222           22222           44444           44444
19857 11111           33333           33333           55555
19858 22222           22222           44444           44444
19859 11111           33333           33333           55555
19860 22222           22222           44444           44444
19861 @end example
19862
19863 @end table
19864
19865 Numeric values are deprecated but are accepted for backward
19866 compatibility reasons.
19867
19868 Default mode is @code{merge}.
19869
19870 @item flags
19871 Specify flags influencing the filter process.
19872
19873 Available value for @var{flags} is:
19874
19875 @table @option
19876 @item low_pass_filter, vlpf
19877 Enable linear vertical low-pass filtering in the filter.
19878 Vertical low-pass filtering is required when creating an interlaced
19879 destination from a progressive source which contains high-frequency
19880 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19881 patterning.
19882
19883 @item complex_filter, cvlpf
19884 Enable complex vertical low-pass filtering.
19885 This will slightly less reduce interlace 'twitter' and Moire
19886 patterning but better retain detail and subjective sharpness impression.
19887
19888 @item bypass_il
19889 Bypass already interlaced frames, only adjust the frame rate.
19890 @end table
19891
19892 Vertical low-pass filtering and bypassing already interlaced frames can only be
19893 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19894
19895 @end table
19896
19897 @section tmedian
19898 Pick median pixels from several successive input video frames.
19899
19900 The filter accepts the following options:
19901
19902 @table @option
19903 @item radius
19904 Set radius of median filter.
19905 Default is 1. Allowed range is from 1 to 127.
19906
19907 @item planes
19908 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19909
19910 @item percentile
19911 Set median percentile. Default value is @code{0.5}.
19912 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19913 minimum values, and @code{1} maximum values.
19914 @end table
19915
19916 @subsection Commands
19917
19918 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19919
19920 @section tmidequalizer
19921
19922 Apply Temporal Midway Video Equalization effect.
19923
19924 Midway Video Equalization adjusts a sequence of video frames to have the same
19925 histograms, while maintaining their dynamics as much as possible. It's
19926 useful for e.g. matching exposures from a video frames sequence.
19927
19928 This filter accepts the following option:
19929
19930 @table @option
19931 @item radius
19932 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19933
19934 @item sigma
19935 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19936 Setting this option to 0 effectively does nothing.
19937
19938 @item planes
19939 Set which planes to process. Default is @code{15}, which is all available planes.
19940 @end table
19941
19942 @section tmix
19943
19944 Mix successive video frames.
19945
19946 A description of the accepted options follows.
19947
19948 @table @option
19949 @item frames
19950 The number of successive frames to mix. If unspecified, it defaults to 3.
19951
19952 @item weights
19953 Specify weight of each input video frame.
19954 Each weight is separated by space. If number of weights is smaller than
19955 number of @var{frames} last specified weight will be used for all remaining
19956 unset weights.
19957
19958 @item scale
19959 Specify scale, if it is set it will be multiplied with sum
19960 of each weight multiplied with pixel values to give final destination
19961 pixel value. By default @var{scale} is auto scaled to sum of weights.
19962 @end table
19963
19964 @subsection Examples
19965
19966 @itemize
19967 @item
19968 Average 7 successive frames:
19969 @example
19970 tmix=frames=7:weights="1 1 1 1 1 1 1"
19971 @end example
19972
19973 @item
19974 Apply simple temporal convolution:
19975 @example
19976 tmix=frames=3:weights="-1 3 -1"
19977 @end example
19978
19979 @item
19980 Similar as above but only showing temporal differences:
19981 @example
19982 tmix=frames=3:weights="-1 2 -1":scale=1
19983 @end example
19984 @end itemize
19985
19986 @subsection Commands
19987
19988 This filter supports the following commands:
19989 @table @option
19990 @item weights
19991 @item scale
19992 Syntax is same as option with same name.
19993 @end table
19994
19995 @anchor{tonemap}
19996 @section tonemap
19997 Tone map colors from different dynamic ranges.
19998
19999 This filter expects data in single precision floating point, as it needs to
20000 operate on (and can output) out-of-range values. Another filter, such as
20001 @ref{zscale}, is needed to convert the resulting frame to a usable format.
20002
20003 The tonemapping algorithms implemented only work on linear light, so input
20004 data should be linearized beforehand (and possibly correctly tagged).
20005
20006 @example
20007 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
20008 @end example
20009
20010 @subsection Options
20011 The filter accepts the following options.
20012
20013 @table @option
20014 @item tonemap
20015 Set the tone map algorithm to use.
20016
20017 Possible values are:
20018 @table @var
20019 @item none
20020 Do not apply any tone map, only desaturate overbright pixels.
20021
20022 @item clip
20023 Hard-clip any out-of-range values. Use it for perfect color accuracy for
20024 in-range values, while distorting out-of-range values.
20025
20026 @item linear
20027 Stretch the entire reference gamut to a linear multiple of the display.
20028
20029 @item gamma
20030 Fit a logarithmic transfer between the tone curves.
20031
20032 @item reinhard
20033 Preserve overall image brightness with a simple curve, using nonlinear
20034 contrast, which results in flattening details and degrading color accuracy.
20035
20036 @item hable
20037 Preserve both dark and bright details better than @var{reinhard}, at the cost
20038 of slightly darkening everything. Use it when detail preservation is more
20039 important than color and brightness accuracy.
20040
20041 @item mobius
20042 Smoothly map out-of-range values, while retaining contrast and colors for
20043 in-range material as much as possible. Use it when color accuracy is more
20044 important than detail preservation.
20045 @end table
20046
20047 Default is none.
20048
20049 @item param
20050 Tune the tone mapping algorithm.
20051
20052 This affects the following algorithms:
20053 @table @var
20054 @item none
20055 Ignored.
20056
20057 @item linear
20058 Specifies the scale factor to use while stretching.
20059 Default to 1.0.
20060
20061 @item gamma
20062 Specifies the exponent of the function.
20063 Default to 1.8.
20064
20065 @item clip
20066 Specify an extra linear coefficient to multiply into the signal before clipping.
20067 Default to 1.0.
20068
20069 @item reinhard
20070 Specify the local contrast coefficient at the display peak.
20071 Default to 0.5, which means that in-gamut values will be about half as bright
20072 as when clipping.
20073
20074 @item hable
20075 Ignored.
20076
20077 @item mobius
20078 Specify the transition point from linear to mobius transform. Every value
20079 below this point is guaranteed to be mapped 1:1. The higher the value, the
20080 more accurate the result will be, at the cost of losing bright details.
20081 Default to 0.3, which due to the steep initial slope still preserves in-range
20082 colors fairly accurately.
20083 @end table
20084
20085 @item desat
20086 Apply desaturation for highlights that exceed this level of brightness. The
20087 higher the parameter, the more color information will be preserved. This
20088 setting helps prevent unnaturally blown-out colors for super-highlights, by
20089 (smoothly) turning into white instead. This makes images feel more natural,
20090 at the cost of reducing information about out-of-range colors.
20091
20092 The default of 2.0 is somewhat conservative and will mostly just apply to
20093 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
20094
20095 This option works only if the input frame has a supported color tag.
20096
20097 @item peak
20098 Override signal/nominal/reference peak with this value. Useful when the
20099 embedded peak information in display metadata is not reliable or when tone
20100 mapping from a lower range to a higher range.
20101 @end table
20102
20103 @section tpad
20104
20105 Temporarily pad video frames.
20106
20107 The filter accepts the following options:
20108
20109 @table @option
20110 @item start
20111 Specify number of delay frames before input video stream. Default is 0.
20112
20113 @item stop
20114 Specify number of padding frames after input video stream.
20115 Set to -1 to pad indefinitely. Default is 0.
20116
20117 @item start_mode
20118 Set kind of frames added to beginning of stream.
20119 Can be either @var{add} or @var{clone}.
20120 With @var{add} frames of solid-color are added.
20121 With @var{clone} frames are clones of first frame.
20122 Default is @var{add}.
20123
20124 @item stop_mode
20125 Set kind of frames added to end of stream.
20126 Can be either @var{add} or @var{clone}.
20127 With @var{add} frames of solid-color are added.
20128 With @var{clone} frames are clones of last frame.
20129 Default is @var{add}.
20130
20131 @item start_duration, stop_duration
20132 Specify the duration of the start/stop delay. See
20133 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20134 for the accepted syntax.
20135 These options override @var{start} and @var{stop}. Default is 0.
20136
20137 @item color
20138 Specify the color of the padded area. For the syntax of this option,
20139 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
20140 manual,ffmpeg-utils}.
20141
20142 The default value of @var{color} is "black".
20143 @end table
20144
20145 @anchor{transpose}
20146 @section transpose
20147
20148 Transpose rows with columns in the input video and optionally flip it.
20149
20150 It accepts the following parameters:
20151
20152 @table @option
20153
20154 @item dir
20155 Specify the transposition direction.
20156
20157 Can assume the following values:
20158 @table @samp
20159 @item 0, 4, cclock_flip
20160 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
20161 @example
20162 L.R     L.l
20163 . . ->  . .
20164 l.r     R.r
20165 @end example
20166
20167 @item 1, 5, clock
20168 Rotate by 90 degrees clockwise, that is:
20169 @example
20170 L.R     l.L
20171 . . ->  . .
20172 l.r     r.R
20173 @end example
20174
20175 @item 2, 6, cclock
20176 Rotate by 90 degrees counterclockwise, that is:
20177 @example
20178 L.R     R.r
20179 . . ->  . .
20180 l.r     L.l
20181 @end example
20182
20183 @item 3, 7, clock_flip
20184 Rotate by 90 degrees clockwise and vertically flip, that is:
20185 @example
20186 L.R     r.R
20187 . . ->  . .
20188 l.r     l.L
20189 @end example
20190 @end table
20191
20192 For values between 4-7, the transposition is only done if the input
20193 video geometry is portrait and not landscape. These values are
20194 deprecated, the @code{passthrough} option should be used instead.
20195
20196 Numerical values are deprecated, and should be dropped in favor of
20197 symbolic constants.
20198
20199 @item passthrough
20200 Do not apply the transposition if the input geometry matches the one
20201 specified by the specified value. It accepts the following values:
20202 @table @samp
20203 @item none
20204 Always apply transposition.
20205 @item portrait
20206 Preserve portrait geometry (when @var{height} >= @var{width}).
20207 @item landscape
20208 Preserve landscape geometry (when @var{width} >= @var{height}).
20209 @end table
20210
20211 Default value is @code{none}.
20212 @end table
20213
20214 For example to rotate by 90 degrees clockwise and preserve portrait
20215 layout:
20216 @example
20217 transpose=dir=1:passthrough=portrait
20218 @end example
20219
20220 The command above can also be specified as:
20221 @example
20222 transpose=1:portrait
20223 @end example
20224
20225 @section transpose_npp
20226
20227 Transpose rows with columns in the input video and optionally flip it.
20228 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
20229
20230 It accepts the following parameters:
20231
20232 @table @option
20233
20234 @item dir
20235 Specify the transposition direction.
20236
20237 Can assume the following values:
20238 @table @samp
20239 @item cclock_flip
20240 Rotate by 90 degrees counterclockwise and vertically flip. (default)
20241
20242 @item clock
20243 Rotate by 90 degrees clockwise.
20244
20245 @item cclock
20246 Rotate by 90 degrees counterclockwise.
20247
20248 @item clock_flip
20249 Rotate by 90 degrees clockwise and vertically flip.
20250 @end table
20251
20252 @item passthrough
20253 Do not apply the transposition if the input geometry matches the one
20254 specified by the specified value. It accepts the following values:
20255 @table @samp
20256 @item none
20257 Always apply transposition. (default)
20258 @item portrait
20259 Preserve portrait geometry (when @var{height} >= @var{width}).
20260 @item landscape
20261 Preserve landscape geometry (when @var{width} >= @var{height}).
20262 @end table
20263
20264 @end table
20265
20266 @section trim
20267 Trim the input so that the output contains one continuous subpart of the input.
20268
20269 It accepts the following parameters:
20270 @table @option
20271 @item start
20272 Specify the time of the start of the kept section, i.e. the frame with the
20273 timestamp @var{start} will be the first frame in the output.
20274
20275 @item end
20276 Specify the time of the first frame that will be dropped, i.e. the frame
20277 immediately preceding the one with the timestamp @var{end} will be the last
20278 frame in the output.
20279
20280 @item start_pts
20281 This is the same as @var{start}, except this option sets the start timestamp
20282 in timebase units instead of seconds.
20283
20284 @item end_pts
20285 This is the same as @var{end}, except this option sets the end timestamp
20286 in timebase units instead of seconds.
20287
20288 @item duration
20289 The maximum duration of the output in seconds.
20290
20291 @item start_frame
20292 The number of the first frame that should be passed to the output.
20293
20294 @item end_frame
20295 The number of the first frame that should be dropped.
20296 @end table
20297
20298 @option{start}, @option{end}, and @option{duration} are expressed as time
20299 duration specifications; see
20300 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20301 for the accepted syntax.
20302
20303 Note that the first two sets of the start/end options and the @option{duration}
20304 option look at the frame timestamp, while the _frame variants simply count the
20305 frames that pass through the filter. Also note that this filter does not modify
20306 the timestamps. If you wish for the output timestamps to start at zero, insert a
20307 setpts filter after the trim filter.
20308
20309 If multiple start or end options are set, this filter tries to be greedy and
20310 keep all the frames that match at least one of the specified constraints. To keep
20311 only the part that matches all the constraints at once, chain multiple trim
20312 filters.
20313
20314 The defaults are such that all the input is kept. So it is possible to set e.g.
20315 just the end values to keep everything before the specified time.
20316
20317 Examples:
20318 @itemize
20319 @item
20320 Drop everything except the second minute of input:
20321 @example
20322 ffmpeg -i INPUT -vf trim=60:120
20323 @end example
20324
20325 @item
20326 Keep only the first second:
20327 @example
20328 ffmpeg -i INPUT -vf trim=duration=1
20329 @end example
20330
20331 @end itemize
20332
20333 @section unpremultiply
20334 Apply alpha unpremultiply effect to input video stream using first plane
20335 of second stream as alpha.
20336
20337 Both streams must have same dimensions and same pixel format.
20338
20339 The filter accepts the following option:
20340
20341 @table @option
20342 @item planes
20343 Set which planes will be processed, unprocessed planes will be copied.
20344 By default value 0xf, all planes will be processed.
20345
20346 If the format has 1 or 2 components, then luma is bit 0.
20347 If the format has 3 or 4 components:
20348 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
20349 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
20350 If present, the alpha channel is always the last bit.
20351
20352 @item inplace
20353 Do not require 2nd input for processing, instead use alpha plane from input stream.
20354 @end table
20355
20356 @anchor{unsharp}
20357 @section unsharp
20358
20359 Sharpen or blur the input video.
20360
20361 It accepts the following parameters:
20362
20363 @table @option
20364 @item luma_msize_x, lx
20365 Set the luma matrix horizontal size. It must be an odd integer between
20366 3 and 23. The default value is 5.
20367
20368 @item luma_msize_y, ly
20369 Set the luma matrix vertical size. It must be an odd integer between 3
20370 and 23. The default value is 5.
20371
20372 @item luma_amount, la
20373 Set the luma effect strength. It must be a floating point number, reasonable
20374 values lay between -1.5 and 1.5.
20375
20376 Negative values will blur the input video, while positive values will
20377 sharpen it, a value of zero will disable the effect.
20378
20379 Default value is 1.0.
20380
20381 @item chroma_msize_x, cx
20382 Set the chroma matrix horizontal size. It must be an odd integer
20383 between 3 and 23. The default value is 5.
20384
20385 @item chroma_msize_y, cy
20386 Set the chroma matrix vertical size. It must be an odd integer
20387 between 3 and 23. The default value is 5.
20388
20389 @item chroma_amount, ca
20390 Set the chroma effect strength. It must be a floating point number, reasonable
20391 values lay between -1.5 and 1.5.
20392
20393 Negative values will blur the input video, while positive values will
20394 sharpen it, a value of zero will disable the effect.
20395
20396 Default value is 0.0.
20397
20398 @end table
20399
20400 All parameters are optional and default to the equivalent of the
20401 string '5:5:1.0:5:5:0.0'.
20402
20403 @subsection Examples
20404
20405 @itemize
20406 @item
20407 Apply strong luma sharpen effect:
20408 @example
20409 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
20410 @end example
20411
20412 @item
20413 Apply a strong blur of both luma and chroma parameters:
20414 @example
20415 unsharp=7:7:-2:7:7:-2
20416 @end example
20417 @end itemize
20418
20419 @anchor{untile}
20420 @section untile
20421
20422 Decompose a video made of tiled images into the individual images.
20423
20424 The frame rate of the output video is the frame rate of the input video
20425 multiplied by the number of tiles.
20426
20427 This filter does the reverse of @ref{tile}.
20428
20429 The filter accepts the following options:
20430
20431 @table @option
20432
20433 @item layout
20434 Set the grid size (i.e. the number of lines and columns). For the syntax of
20435 this option, check the
20436 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20437 @end table
20438
20439 @subsection Examples
20440
20441 @itemize
20442 @item
20443 Produce a 1-second video from a still image file made of 25 frames stacked
20444 vertically, like an analogic film reel:
20445 @example
20446 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
20447 @end example
20448 @end itemize
20449
20450 @section uspp
20451
20452 Apply ultra slow/simple postprocessing filter that compresses and decompresses
20453 the image at several (or - in the case of @option{quality} level @code{8} - all)
20454 shifts and average the results.
20455
20456 The way this differs from the behavior of spp is that uspp actually encodes &
20457 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
20458 DCT similar to MJPEG.
20459
20460 The filter accepts the following options:
20461
20462 @table @option
20463 @item quality
20464 Set quality. This option defines the number of levels for averaging. It accepts
20465 an integer in the range 0-8. If set to @code{0}, the filter will have no
20466 effect. A value of @code{8} means the higher quality. For each increment of
20467 that value the speed drops by a factor of approximately 2.  Default value is
20468 @code{3}.
20469
20470 @item qp
20471 Force a constant quantization parameter. If not set, the filter will use the QP
20472 from the video stream (if available).
20473 @end table
20474
20475 @section v360
20476
20477 Convert 360 videos between various formats.
20478
20479 The filter accepts the following options:
20480
20481 @table @option
20482
20483 @item input
20484 @item output
20485 Set format of the input/output video.
20486
20487 Available formats:
20488
20489 @table @samp
20490
20491 @item e
20492 @item equirect
20493 Equirectangular projection.
20494
20495 @item c3x2
20496 @item c6x1
20497 @item c1x6
20498 Cubemap with 3x2/6x1/1x6 layout.
20499
20500 Format specific options:
20501
20502 @table @option
20503 @item in_pad
20504 @item out_pad
20505 Set padding proportion for the input/output cubemap. Values in decimals.
20506
20507 Example values:
20508 @table @samp
20509 @item 0
20510 No padding.
20511 @item 0.01
20512 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)
20513 @end table
20514
20515 Default value is @b{@samp{0}}.
20516 Maximum value is @b{@samp{0.1}}.
20517
20518 @item fin_pad
20519 @item fout_pad
20520 Set fixed padding for the input/output cubemap. Values in pixels.
20521
20522 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
20523
20524 @item in_forder
20525 @item out_forder
20526 Set order of faces for the input/output cubemap. Choose one direction for each position.
20527
20528 Designation of directions:
20529 @table @samp
20530 @item r
20531 right
20532 @item l
20533 left
20534 @item u
20535 up
20536 @item d
20537 down
20538 @item f
20539 forward
20540 @item b
20541 back
20542 @end table
20543
20544 Default value is @b{@samp{rludfb}}.
20545
20546 @item in_frot
20547 @item out_frot
20548 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20549
20550 Designation of angles:
20551 @table @samp
20552 @item 0
20553 0 degrees clockwise
20554 @item 1
20555 90 degrees clockwise
20556 @item 2
20557 180 degrees clockwise
20558 @item 3
20559 270 degrees clockwise
20560 @end table
20561
20562 Default value is @b{@samp{000000}}.
20563 @end table
20564
20565 @item eac
20566 Equi-Angular Cubemap.
20567
20568 @item flat
20569 @item gnomonic
20570 @item rectilinear
20571 Regular video.
20572
20573 Format specific options:
20574 @table @option
20575 @item h_fov
20576 @item v_fov
20577 @item d_fov
20578 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20579
20580 If diagonal field of view is set it overrides horizontal and vertical field of view.
20581
20582 @item ih_fov
20583 @item iv_fov
20584 @item id_fov
20585 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20586
20587 If diagonal field of view is set it overrides horizontal and vertical field of view.
20588 @end table
20589
20590 @item dfisheye
20591 Dual fisheye.
20592
20593 Format specific options:
20594 @table @option
20595 @item h_fov
20596 @item v_fov
20597 @item d_fov
20598 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20599
20600 If diagonal field of view is set it overrides horizontal and vertical field of view.
20601
20602 @item ih_fov
20603 @item iv_fov
20604 @item id_fov
20605 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20606
20607 If diagonal field of view is set it overrides horizontal and vertical field of view.
20608 @end table
20609
20610 @item barrel
20611 @item fb
20612 @item barrelsplit
20613 Facebook's 360 formats.
20614
20615 @item sg
20616 Stereographic format.
20617
20618 Format specific options:
20619 @table @option
20620 @item h_fov
20621 @item v_fov
20622 @item d_fov
20623 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20624
20625 If diagonal field of view is set it overrides horizontal and vertical field of view.
20626
20627 @item ih_fov
20628 @item iv_fov
20629 @item id_fov
20630 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20631
20632 If diagonal field of view is set it overrides horizontal and vertical field of view.
20633 @end table
20634
20635 @item mercator
20636 Mercator format.
20637
20638 @item ball
20639 Ball format, gives significant distortion toward the back.
20640
20641 @item hammer
20642 Hammer-Aitoff map projection format.
20643
20644 @item sinusoidal
20645 Sinusoidal map projection format.
20646
20647 @item fisheye
20648 Fisheye projection.
20649
20650 Format specific options:
20651 @table @option
20652 @item h_fov
20653 @item v_fov
20654 @item d_fov
20655 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20656
20657 If diagonal field of view is set it overrides horizontal and vertical field of view.
20658
20659 @item ih_fov
20660 @item iv_fov
20661 @item id_fov
20662 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20663
20664 If diagonal field of view is set it overrides horizontal and vertical field of view.
20665 @end table
20666
20667 @item pannini
20668 Pannini projection.
20669
20670 Format specific options:
20671 @table @option
20672 @item h_fov
20673 Set output pannini parameter.
20674
20675 @item ih_fov
20676 Set input pannini parameter.
20677 @end table
20678
20679 @item cylindrical
20680 Cylindrical projection.
20681
20682 Format specific options:
20683 @table @option
20684 @item h_fov
20685 @item v_fov
20686 @item d_fov
20687 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20688
20689 If diagonal field of view is set it overrides horizontal and vertical field of view.
20690
20691 @item ih_fov
20692 @item iv_fov
20693 @item id_fov
20694 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20695
20696 If diagonal field of view is set it overrides horizontal and vertical field of view.
20697 @end table
20698
20699 @item perspective
20700 Perspective projection. @i{(output only)}
20701
20702 Format specific options:
20703 @table @option
20704 @item v_fov
20705 Set perspective parameter.
20706 @end table
20707
20708 @item tetrahedron
20709 Tetrahedron projection.
20710
20711 @item tsp
20712 Truncated square pyramid projection.
20713
20714 @item he
20715 @item hequirect
20716 Half equirectangular projection.
20717
20718 @item equisolid
20719 Equisolid format.
20720
20721 Format specific options:
20722 @table @option
20723 @item h_fov
20724 @item v_fov
20725 @item d_fov
20726 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20727
20728 If diagonal field of view is set it overrides horizontal and vertical field of view.
20729
20730 @item ih_fov
20731 @item iv_fov
20732 @item id_fov
20733 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20734
20735 If diagonal field of view is set it overrides horizontal and vertical field of view.
20736 @end table
20737
20738 @item og
20739 Orthographic format.
20740
20741 Format specific options:
20742 @table @option
20743 @item h_fov
20744 @item v_fov
20745 @item d_fov
20746 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20747
20748 If diagonal field of view is set it overrides horizontal and vertical field of view.
20749
20750 @item ih_fov
20751 @item iv_fov
20752 @item id_fov
20753 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20754
20755 If diagonal field of view is set it overrides horizontal and vertical field of view.
20756 @end table
20757
20758 @item octahedron
20759 Octahedron projection.
20760 @end table
20761
20762 @item interp
20763 Set interpolation method.@*
20764 @i{Note: more complex interpolation methods require much more memory to run.}
20765
20766 Available methods:
20767
20768 @table @samp
20769 @item near
20770 @item nearest
20771 Nearest neighbour.
20772 @item line
20773 @item linear
20774 Bilinear interpolation.
20775 @item lagrange9
20776 Lagrange9 interpolation.
20777 @item cube
20778 @item cubic
20779 Bicubic interpolation.
20780 @item lanc
20781 @item lanczos
20782 Lanczos interpolation.
20783 @item sp16
20784 @item spline16
20785 Spline16 interpolation.
20786 @item gauss
20787 @item gaussian
20788 Gaussian interpolation.
20789 @item mitchell
20790 Mitchell interpolation.
20791 @end table
20792
20793 Default value is @b{@samp{line}}.
20794
20795 @item w
20796 @item h
20797 Set the output video resolution.
20798
20799 Default resolution depends on formats.
20800
20801 @item in_stereo
20802 @item out_stereo
20803 Set the input/output stereo format.
20804
20805 @table @samp
20806 @item 2d
20807 2D mono
20808 @item sbs
20809 Side by side
20810 @item tb
20811 Top bottom
20812 @end table
20813
20814 Default value is @b{@samp{2d}} for input and output format.
20815
20816 @item yaw
20817 @item pitch
20818 @item roll
20819 Set rotation for the output video. Values in degrees.
20820
20821 @item rorder
20822 Set rotation order for the output video. Choose one item for each position.
20823
20824 @table @samp
20825 @item y, Y
20826 yaw
20827 @item p, P
20828 pitch
20829 @item r, R
20830 roll
20831 @end table
20832
20833 Default value is @b{@samp{ypr}}.
20834
20835 @item h_flip
20836 @item v_flip
20837 @item d_flip
20838 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20839
20840 @item ih_flip
20841 @item iv_flip
20842 Set if input video is flipped horizontally/vertically. Boolean values.
20843
20844 @item in_trans
20845 Set if input video is transposed. Boolean value, by default disabled.
20846
20847 @item out_trans
20848 Set if output video needs to be transposed. Boolean value, by default disabled.
20849
20850 @item alpha_mask
20851 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20852 @end table
20853
20854 @subsection Examples
20855
20856 @itemize
20857 @item
20858 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20859 @example
20860 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20861 @end example
20862 @item
20863 Extract back view of Equi-Angular Cubemap:
20864 @example
20865 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20866 @end example
20867 @item
20868 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20869 @example
20870 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20871 @end example
20872 @end itemize
20873
20874 @subsection Commands
20875
20876 This filter supports subset of above options as @ref{commands}.
20877
20878 @section vaguedenoiser
20879
20880 Apply a wavelet based denoiser.
20881
20882 It transforms each frame from the video input into the wavelet domain,
20883 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20884 the obtained coefficients. It does an inverse wavelet transform after.
20885 Due to wavelet properties, it should give a nice smoothed result, and
20886 reduced noise, without blurring picture features.
20887
20888 This filter accepts the following options:
20889
20890 @table @option
20891 @item threshold
20892 The filtering strength. The higher, the more filtered the video will be.
20893 Hard thresholding can use a higher threshold than soft thresholding
20894 before the video looks overfiltered. Default value is 2.
20895
20896 @item method
20897 The filtering method the filter will use.
20898
20899 It accepts the following values:
20900 @table @samp
20901 @item hard
20902 All values under the threshold will be zeroed.
20903
20904 @item soft
20905 All values under the threshold will be zeroed. All values above will be
20906 reduced by the threshold.
20907
20908 @item garrote
20909 Scales or nullifies coefficients - intermediary between (more) soft and
20910 (less) hard thresholding.
20911 @end table
20912
20913 Default is garrote.
20914
20915 @item nsteps
20916 Number of times, the wavelet will decompose the picture. Picture can't
20917 be decomposed beyond a particular point (typically, 8 for a 640x480
20918 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20919
20920 @item percent
20921 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20922
20923 @item planes
20924 A list of the planes to process. By default all planes are processed.
20925
20926 @item type
20927 The threshold type the filter will use.
20928
20929 It accepts the following values:
20930 @table @samp
20931 @item universal
20932 Threshold used is same for all decompositions.
20933
20934 @item bayes
20935 Threshold used depends also on each decomposition coefficients.
20936 @end table
20937
20938 Default is universal.
20939 @end table
20940
20941 @section vectorscope
20942
20943 Display 2 color component values in the two dimensional graph (which is called
20944 a vectorscope).
20945
20946 This filter accepts the following options:
20947
20948 @table @option
20949 @item mode, m
20950 Set vectorscope mode.
20951
20952 It accepts the following values:
20953 @table @samp
20954 @item gray
20955 @item tint
20956 Gray values are displayed on graph, higher brightness means more pixels have
20957 same component color value on location in graph. This is the default mode.
20958
20959 @item color
20960 Gray values are displayed on graph. Surrounding pixels values which are not
20961 present in video frame are drawn in gradient of 2 color components which are
20962 set by option @code{x} and @code{y}. The 3rd color component is static.
20963
20964 @item color2
20965 Actual color components values present in video frame are displayed on graph.
20966
20967 @item color3
20968 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20969 on graph increases value of another color component, which is luminance by
20970 default values of @code{x} and @code{y}.
20971
20972 @item color4
20973 Actual colors present in video frame are displayed on graph. If two different
20974 colors map to same position on graph then color with higher value of component
20975 not present in graph is picked.
20976
20977 @item color5
20978 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20979 component picked from radial gradient.
20980 @end table
20981
20982 @item x
20983 Set which color component will be represented on X-axis. Default is @code{1}.
20984
20985 @item y
20986 Set which color component will be represented on Y-axis. Default is @code{2}.
20987
20988 @item intensity, i
20989 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20990 of color component which represents frequency of (X, Y) location in graph.
20991
20992 @item envelope, e
20993 @table @samp
20994 @item none
20995 No envelope, this is default.
20996
20997 @item instant
20998 Instant envelope, even darkest single pixel will be clearly highlighted.
20999
21000 @item peak
21001 Hold maximum and minimum values presented in graph over time. This way you
21002 can still spot out of range values without constantly looking at vectorscope.
21003
21004 @item peak+instant
21005 Peak and instant envelope combined together.
21006 @end table
21007
21008 @item graticule, g
21009 Set what kind of graticule to draw.
21010 @table @samp
21011 @item none
21012 @item green
21013 @item color
21014 @item invert
21015 @end table
21016
21017 @item opacity, o
21018 Set graticule opacity.
21019
21020 @item flags, f
21021 Set graticule flags.
21022
21023 @table @samp
21024 @item white
21025 Draw graticule for white point.
21026
21027 @item black
21028 Draw graticule for black point.
21029
21030 @item name
21031 Draw color points short names.
21032 @end table
21033
21034 @item bgopacity, b
21035 Set background opacity.
21036
21037 @item lthreshold, l
21038 Set low threshold for color component not represented on X or Y axis.
21039 Values lower than this value will be ignored. Default is 0.
21040 Note this value is multiplied with actual max possible value one pixel component
21041 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
21042 is 0.1 * 255 = 25.
21043
21044 @item hthreshold, h
21045 Set high threshold for color component not represented on X or Y axis.
21046 Values higher than this value will be ignored. Default is 1.
21047 Note this value is multiplied with actual max possible value one pixel component
21048 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
21049 is 0.9 * 255 = 230.
21050
21051 @item colorspace, c
21052 Set what kind of colorspace to use when drawing graticule.
21053 @table @samp
21054 @item auto
21055 @item 601
21056 @item 709
21057 @end table
21058 Default is auto.
21059
21060 @item tint0, t0
21061 @item tint1, t1
21062 Set color tint for gray/tint vectorscope mode. By default both options are zero.
21063 This means no tint, and output will remain gray.
21064 @end table
21065
21066 @anchor{vidstabdetect}
21067 @section vidstabdetect
21068
21069 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
21070 @ref{vidstabtransform} for pass 2.
21071
21072 This filter generates a file with relative translation and rotation
21073 transform information about subsequent frames, which is then used by
21074 the @ref{vidstabtransform} filter.
21075
21076 To enable compilation of this filter you need to configure FFmpeg with
21077 @code{--enable-libvidstab}.
21078
21079 This filter accepts the following options:
21080
21081 @table @option
21082 @item result
21083 Set the path to the file used to write the transforms information.
21084 Default value is @file{transforms.trf}.
21085
21086 @item shakiness
21087 Set how shaky the video is and how quick the camera is. It accepts an
21088 integer in the range 1-10, a value of 1 means little shakiness, a
21089 value of 10 means strong shakiness. Default value is 5.
21090
21091 @item accuracy
21092 Set the accuracy of the detection process. It must be a value in the
21093 range 1-15. A value of 1 means low accuracy, a value of 15 means high
21094 accuracy. Default value is 15.
21095
21096 @item stepsize
21097 Set stepsize of the search process. The region around minimum is
21098 scanned with 1 pixel resolution. Default value is 6.
21099
21100 @item mincontrast
21101 Set minimum contrast. Below this value a local measurement field is
21102 discarded. Must be a floating point value in the range 0-1. Default
21103 value is 0.3.
21104
21105 @item tripod
21106 Set reference frame number for tripod mode.
21107
21108 If enabled, the motion of the frames is compared to a reference frame
21109 in the filtered stream, identified by the specified number. The idea
21110 is to compensate all movements in a more-or-less static scene and keep
21111 the camera view absolutely still.
21112
21113 If set to 0, it is disabled. The frames are counted starting from 1.
21114
21115 @item show
21116 Show fields and transforms in the resulting frames. It accepts an
21117 integer in the range 0-2. Default value is 0, which disables any
21118 visualization.
21119 @end table
21120
21121 @subsection Examples
21122
21123 @itemize
21124 @item
21125 Use default values:
21126 @example
21127 vidstabdetect
21128 @end example
21129
21130 @item
21131 Analyze strongly shaky movie and put the results in file
21132 @file{mytransforms.trf}:
21133 @example
21134 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
21135 @end example
21136
21137 @item
21138 Visualize the result of internal transformations in the resulting
21139 video:
21140 @example
21141 vidstabdetect=show=1
21142 @end example
21143
21144 @item
21145 Analyze a video with medium shakiness using @command{ffmpeg}:
21146 @example
21147 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
21148 @end example
21149 @end itemize
21150
21151 @anchor{vidstabtransform}
21152 @section vidstabtransform
21153
21154 Video stabilization/deshaking: pass 2 of 2,
21155 see @ref{vidstabdetect} for pass 1.
21156
21157 Read a file with transform information for each frame and
21158 apply/compensate them. Together with the @ref{vidstabdetect}
21159 filter this can be used to deshake videos. See also
21160 @url{http://public.hronopik.de/vid.stab}. It is important to also use
21161 the @ref{unsharp} filter, see below.
21162
21163 To enable compilation of this filter you need to configure FFmpeg with
21164 @code{--enable-libvidstab}.
21165
21166 @subsection Options
21167
21168 @table @option
21169 @item input
21170 Set path to the file used to read the transforms. Default value is
21171 @file{transforms.trf}.
21172
21173 @item smoothing
21174 Set the number of frames (value*2 + 1) used for lowpass filtering the
21175 camera movements. Default value is 10.
21176
21177 For example a number of 10 means that 21 frames are used (10 in the
21178 past and 10 in the future) to smoothen the motion in the video. A
21179 larger value leads to a smoother video, but limits the acceleration of
21180 the camera (pan/tilt movements). 0 is a special case where a static
21181 camera is simulated.
21182
21183 @item optalgo
21184 Set the camera path optimization algorithm.
21185
21186 Accepted values are:
21187 @table @samp
21188 @item gauss
21189 gaussian kernel low-pass filter on camera motion (default)
21190 @item avg
21191 averaging on transformations
21192 @end table
21193
21194 @item maxshift
21195 Set maximal number of pixels to translate frames. Default value is -1,
21196 meaning no limit.
21197
21198 @item maxangle
21199 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
21200 value is -1, meaning no limit.
21201
21202 @item crop
21203 Specify how to deal with borders that may be visible due to movement
21204 compensation.
21205
21206 Available values are:
21207 @table @samp
21208 @item keep
21209 keep image information from previous frame (default)
21210 @item black
21211 fill the border black
21212 @end table
21213
21214 @item invert
21215 Invert transforms if set to 1. Default value is 0.
21216
21217 @item relative
21218 Consider transforms as relative to previous frame if set to 1,
21219 absolute if set to 0. Default value is 0.
21220
21221 @item zoom
21222 Set percentage to zoom. A positive value will result in a zoom-in
21223 effect, a negative value in a zoom-out effect. Default value is 0 (no
21224 zoom).
21225
21226 @item optzoom
21227 Set optimal zooming to avoid borders.
21228
21229 Accepted values are:
21230 @table @samp
21231 @item 0
21232 disabled
21233 @item 1
21234 optimal static zoom value is determined (only very strong movements
21235 will lead to visible borders) (default)
21236 @item 2
21237 optimal adaptive zoom value is determined (no borders will be
21238 visible), see @option{zoomspeed}
21239 @end table
21240
21241 Note that the value given at zoom is added to the one calculated here.
21242
21243 @item zoomspeed
21244 Set percent to zoom maximally each frame (enabled when
21245 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
21246 0.25.
21247
21248 @item interpol
21249 Specify type of interpolation.
21250
21251 Available values are:
21252 @table @samp
21253 @item no
21254 no interpolation
21255 @item linear
21256 linear only horizontal
21257 @item bilinear
21258 linear in both directions (default)
21259 @item bicubic
21260 cubic in both directions (slow)
21261 @end table
21262
21263 @item tripod
21264 Enable virtual tripod mode if set to 1, which is equivalent to
21265 @code{relative=0:smoothing=0}. Default value is 0.
21266
21267 Use also @code{tripod} option of @ref{vidstabdetect}.
21268
21269 @item debug
21270 Increase log verbosity if set to 1. Also the detected global motions
21271 are written to the temporary file @file{global_motions.trf}. Default
21272 value is 0.
21273 @end table
21274
21275 @subsection Examples
21276
21277 @itemize
21278 @item
21279 Use @command{ffmpeg} for a typical stabilization with default values:
21280 @example
21281 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
21282 @end example
21283
21284 Note the use of the @ref{unsharp} filter which is always recommended.
21285
21286 @item
21287 Zoom in a bit more and load transform data from a given file:
21288 @example
21289 vidstabtransform=zoom=5:input="mytransforms.trf"
21290 @end example
21291
21292 @item
21293 Smoothen the video even more:
21294 @example
21295 vidstabtransform=smoothing=30
21296 @end example
21297 @end itemize
21298
21299 @section vflip
21300
21301 Flip the input video vertically.
21302
21303 For example, to vertically flip a video with @command{ffmpeg}:
21304 @example
21305 ffmpeg -i in.avi -vf "vflip" out.avi
21306 @end example
21307
21308 @section vfrdet
21309
21310 Detect variable frame rate video.
21311
21312 This filter tries to detect if the input is variable or constant frame rate.
21313
21314 At end it will output number of frames detected as having variable delta pts,
21315 and ones with constant delta pts.
21316 If there was frames with variable delta, than it will also show min, max and
21317 average delta encountered.
21318
21319 @section vibrance
21320
21321 Boost or alter saturation.
21322
21323 The filter accepts the following options:
21324 @table @option
21325 @item intensity
21326 Set strength of boost if positive value or strength of alter if negative value.
21327 Default is 0. Allowed range is from -2 to 2.
21328
21329 @item rbal
21330 Set the red balance. Default is 1. Allowed range is from -10 to 10.
21331
21332 @item gbal
21333 Set the green balance. Default is 1. Allowed range is from -10 to 10.
21334
21335 @item bbal
21336 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
21337
21338 @item rlum
21339 Set the red luma coefficient.
21340
21341 @item glum
21342 Set the green luma coefficient.
21343
21344 @item blum
21345 Set the blue luma coefficient.
21346
21347 @item alternate
21348 If @code{intensity} is negative and this is set to 1, colors will change,
21349 otherwise colors will be less saturated, more towards gray.
21350 @end table
21351
21352 @subsection Commands
21353
21354 This filter supports the all above options as @ref{commands}.
21355
21356 @section vif
21357
21358 Obtain the average VIF (Visual Information Fidelity) between two input videos.
21359
21360 This filter takes two input videos.
21361
21362 Both input videos must have the same resolution and pixel format for
21363 this filter to work correctly. Also it assumes that both inputs
21364 have the same number of frames, which are compared one by one.
21365
21366 The obtained average VIF score is printed through the logging system.
21367
21368 The filter stores the calculated VIF score of each frame.
21369
21370 In the below example the input file @file{main.mpg} being processed is compared
21371 with the reference file @file{ref.mpg}.
21372
21373 @example
21374 ffmpeg -i main.mpg -i ref.mpg -lavfi vif -f null -
21375 @end example
21376
21377 @anchor{vignette}
21378 @section vignette
21379
21380 Make or reverse a natural vignetting effect.
21381
21382 The filter accepts the following options:
21383
21384 @table @option
21385 @item angle, a
21386 Set lens angle expression as a number of radians.
21387
21388 The value is clipped in the @code{[0,PI/2]} range.
21389
21390 Default value: @code{"PI/5"}
21391
21392 @item x0
21393 @item y0
21394 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
21395 by default.
21396
21397 @item mode
21398 Set forward/backward mode.
21399
21400 Available modes are:
21401 @table @samp
21402 @item forward
21403 The larger the distance from the central point, the darker the image becomes.
21404
21405 @item backward
21406 The larger the distance from the central point, the brighter the image becomes.
21407 This can be used to reverse a vignette effect, though there is no automatic
21408 detection to extract the lens @option{angle} and other settings (yet). It can
21409 also be used to create a burning effect.
21410 @end table
21411
21412 Default value is @samp{forward}.
21413
21414 @item eval
21415 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
21416
21417 It accepts the following values:
21418 @table @samp
21419 @item init
21420 Evaluate expressions only once during the filter initialization.
21421
21422 @item frame
21423 Evaluate expressions for each incoming frame. This is way slower than the
21424 @samp{init} mode since it requires all the scalers to be re-computed, but it
21425 allows advanced dynamic expressions.
21426 @end table
21427
21428 Default value is @samp{init}.
21429
21430 @item dither
21431 Set dithering to reduce the circular banding effects. Default is @code{1}
21432 (enabled).
21433
21434 @item aspect
21435 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
21436 Setting this value to the SAR of the input will make a rectangular vignetting
21437 following the dimensions of the video.
21438
21439 Default is @code{1/1}.
21440 @end table
21441
21442 @subsection Expressions
21443
21444 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
21445 following parameters.
21446
21447 @table @option
21448 @item w
21449 @item h
21450 input width and height
21451
21452 @item n
21453 the number of input frame, starting from 0
21454
21455 @item pts
21456 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
21457 @var{TB} units, NAN if undefined
21458
21459 @item r
21460 frame rate of the input video, NAN if the input frame rate is unknown
21461
21462 @item t
21463 the PTS (Presentation TimeStamp) of the filtered video frame,
21464 expressed in seconds, NAN if undefined
21465
21466 @item tb
21467 time base of the input video
21468 @end table
21469
21470
21471 @subsection Examples
21472
21473 @itemize
21474 @item
21475 Apply simple strong vignetting effect:
21476 @example
21477 vignette=PI/4
21478 @end example
21479
21480 @item
21481 Make a flickering vignetting:
21482 @example
21483 vignette='PI/4+random(1)*PI/50':eval=frame
21484 @end example
21485
21486 @end itemize
21487
21488 @section vmafmotion
21489
21490 Obtain the average VMAF motion score of a video.
21491 It is one of the component metrics of VMAF.
21492
21493 The obtained average motion score is printed through the logging system.
21494
21495 The filter accepts the following options:
21496
21497 @table @option
21498 @item stats_file
21499 If specified, the filter will use the named file to save the motion score of
21500 each frame with respect to the previous frame.
21501 When filename equals "-" the data is sent to standard output.
21502 @end table
21503
21504 Example:
21505 @example
21506 ffmpeg -i ref.mpg -vf vmafmotion -f null -
21507 @end example
21508
21509 @section vstack
21510 Stack input videos vertically.
21511
21512 All streams must be of same pixel format and of same width.
21513
21514 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
21515 to create same output.
21516
21517 The filter accepts the following options:
21518
21519 @table @option
21520 @item inputs
21521 Set number of input streams. Default is 2.
21522
21523 @item shortest
21524 If set to 1, force the output to terminate when the shortest input
21525 terminates. Default value is 0.
21526 @end table
21527
21528 @section w3fdif
21529
21530 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
21531 Deinterlacing Filter").
21532
21533 Based on the process described by Martin Weston for BBC R&D, and
21534 implemented based on the de-interlace algorithm written by Jim
21535 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
21536 uses filter coefficients calculated by BBC R&D.
21537
21538 This filter uses field-dominance information in frame to decide which
21539 of each pair of fields to place first in the output.
21540 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
21541
21542 There are two sets of filter coefficients, so called "simple"
21543 and "complex". Which set of filter coefficients is used can
21544 be set by passing an optional parameter:
21545
21546 @table @option
21547 @item filter
21548 Set the interlacing filter coefficients. Accepts one of the following values:
21549
21550 @table @samp
21551 @item simple
21552 Simple filter coefficient set.
21553 @item complex
21554 More-complex filter coefficient set.
21555 @end table
21556 Default value is @samp{complex}.
21557
21558 @item mode
21559 The interlacing mode to adopt. It accepts one of the following values:
21560
21561 @table @option
21562 @item frame
21563 Output one frame for each frame.
21564 @item field
21565 Output one frame for each field.
21566 @end table
21567
21568 The default value is @code{field}.
21569
21570 @item parity
21571 The picture field parity assumed for the input interlaced video. It accepts one
21572 of the following values:
21573
21574 @table @option
21575 @item tff
21576 Assume the top field is first.
21577 @item bff
21578 Assume the bottom field is first.
21579 @item auto
21580 Enable automatic detection of field parity.
21581 @end table
21582
21583 The default value is @code{auto}.
21584 If the interlacing is unknown or the decoder does not export this information,
21585 top field first will be assumed.
21586
21587 @item deint
21588 Specify which frames to deinterlace. Accepts one of the following values:
21589
21590 @table @samp
21591 @item all
21592 Deinterlace all frames,
21593 @item interlaced
21594 Only deinterlace frames marked as interlaced.
21595 @end table
21596
21597 Default value is @samp{all}.
21598 @end table
21599
21600 @subsection Commands
21601 This filter supports same @ref{commands} as options.
21602
21603 @section waveform
21604 Video waveform monitor.
21605
21606 The waveform monitor plots color component intensity. By default luminance
21607 only. Each column of the waveform corresponds to a column of pixels in the
21608 source video.
21609
21610 It accepts the following options:
21611
21612 @table @option
21613 @item mode, m
21614 Can be either @code{row}, or @code{column}. Default is @code{column}.
21615 In row mode, the graph on the left side represents color component value 0 and
21616 the right side represents value = 255. In column mode, the top side represents
21617 color component value = 0 and bottom side represents value = 255.
21618
21619 @item intensity, i
21620 Set intensity. Smaller values are useful to find out how many values of the same
21621 luminance are distributed across input rows/columns.
21622 Default value is @code{0.04}. Allowed range is [0, 1].
21623
21624 @item mirror, r
21625 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21626 In mirrored mode, higher values will be represented on the left
21627 side for @code{row} mode and at the top for @code{column} mode. Default is
21628 @code{1} (mirrored).
21629
21630 @item display, d
21631 Set display mode.
21632 It accepts the following values:
21633 @table @samp
21634 @item overlay
21635 Presents information identical to that in the @code{parade}, except
21636 that the graphs representing color components are superimposed directly
21637 over one another.
21638
21639 This display mode makes it easier to spot relative differences or similarities
21640 in overlapping areas of the color components that are supposed to be identical,
21641 such as neutral whites, grays, or blacks.
21642
21643 @item stack
21644 Display separate graph for the color components side by side in
21645 @code{row} mode or one below the other in @code{column} mode.
21646
21647 @item parade
21648 Display separate graph for the color components side by side in
21649 @code{column} mode or one below the other in @code{row} mode.
21650
21651 Using this display mode makes it easy to spot color casts in the highlights
21652 and shadows of an image, by comparing the contours of the top and the bottom
21653 graphs of each waveform. Since whites, grays, and blacks are characterized
21654 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21655 should display three waveforms of roughly equal width/height. If not, the
21656 correction is easy to perform by making level adjustments the three waveforms.
21657 @end table
21658 Default is @code{stack}.
21659
21660 @item components, c
21661 Set which color components to display. Default is 1, which means only luminance
21662 or red color component if input is in RGB colorspace. If is set for example to
21663 7 it will display all 3 (if) available color components.
21664
21665 @item envelope, e
21666 @table @samp
21667 @item none
21668 No envelope, this is default.
21669
21670 @item instant
21671 Instant envelope, minimum and maximum values presented in graph will be easily
21672 visible even with small @code{step} value.
21673
21674 @item peak
21675 Hold minimum and maximum values presented in graph across time. This way you
21676 can still spot out of range values without constantly looking at waveforms.
21677
21678 @item peak+instant
21679 Peak and instant envelope combined together.
21680 @end table
21681
21682 @item filter, f
21683 @table @samp
21684 @item lowpass
21685 No filtering, this is default.
21686
21687 @item flat
21688 Luma and chroma combined together.
21689
21690 @item aflat
21691 Similar as above, but shows difference between blue and red chroma.
21692
21693 @item xflat
21694 Similar as above, but use different colors.
21695
21696 @item yflat
21697 Similar as above, but again with different colors.
21698
21699 @item chroma
21700 Displays only chroma.
21701
21702 @item color
21703 Displays actual color value on waveform.
21704
21705 @item acolor
21706 Similar as above, but with luma showing frequency of chroma values.
21707 @end table
21708
21709 @item graticule, g
21710 Set which graticule to display.
21711
21712 @table @samp
21713 @item none
21714 Do not display graticule.
21715
21716 @item green
21717 Display green graticule showing legal broadcast ranges.
21718
21719 @item orange
21720 Display orange graticule showing legal broadcast ranges.
21721
21722 @item invert
21723 Display invert graticule showing legal broadcast ranges.
21724 @end table
21725
21726 @item opacity, o
21727 Set graticule opacity.
21728
21729 @item flags, fl
21730 Set graticule flags.
21731
21732 @table @samp
21733 @item numbers
21734 Draw numbers above lines. By default enabled.
21735
21736 @item dots
21737 Draw dots instead of lines.
21738 @end table
21739
21740 @item scale, s
21741 Set scale used for displaying graticule.
21742
21743 @table @samp
21744 @item digital
21745 @item millivolts
21746 @item ire
21747 @end table
21748 Default is digital.
21749
21750 @item bgopacity, b
21751 Set background opacity.
21752
21753 @item tint0, t0
21754 @item tint1, t1
21755 Set tint for output.
21756 Only used with lowpass filter and when display is not overlay and input
21757 pixel formats are not RGB.
21758 @end table
21759
21760 @section weave, doubleweave
21761
21762 The @code{weave} takes a field-based video input and join
21763 each two sequential fields into single frame, producing a new double
21764 height clip with half the frame rate and half the frame count.
21765
21766 The @code{doubleweave} works same as @code{weave} but without
21767 halving frame rate and frame count.
21768
21769 It accepts the following option:
21770
21771 @table @option
21772 @item first_field
21773 Set first field. Available values are:
21774
21775 @table @samp
21776 @item top, t
21777 Set the frame as top-field-first.
21778
21779 @item bottom, b
21780 Set the frame as bottom-field-first.
21781 @end table
21782 @end table
21783
21784 @subsection Examples
21785
21786 @itemize
21787 @item
21788 Interlace video using @ref{select} and @ref{separatefields} filter:
21789 @example
21790 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21791 @end example
21792 @end itemize
21793
21794 @section xbr
21795 Apply the xBR high-quality magnification filter which is designed for pixel
21796 art. It follows a set of edge-detection rules, see
21797 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21798
21799 It accepts the following option:
21800
21801 @table @option
21802 @item n
21803 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21804 @code{3xBR} and @code{4} for @code{4xBR}.
21805 Default is @code{3}.
21806 @end table
21807
21808 @section xfade
21809
21810 Apply cross fade from one input video stream to another input video stream.
21811 The cross fade is applied for specified duration.
21812
21813 Both inputs must be constant frame-rate and have the same resolution, pixel format,
21814 frame rate and timebase.
21815
21816 The filter accepts the following options:
21817
21818 @table @option
21819 @item transition
21820 Set one of available transition effects:
21821
21822 @table @samp
21823 @item custom
21824 @item fade
21825 @item wipeleft
21826 @item wiperight
21827 @item wipeup
21828 @item wipedown
21829 @item slideleft
21830 @item slideright
21831 @item slideup
21832 @item slidedown
21833 @item circlecrop
21834 @item rectcrop
21835 @item distance
21836 @item fadeblack
21837 @item fadewhite
21838 @item radial
21839 @item smoothleft
21840 @item smoothright
21841 @item smoothup
21842 @item smoothdown
21843 @item circleopen
21844 @item circleclose
21845 @item vertopen
21846 @item vertclose
21847 @item horzopen
21848 @item horzclose
21849 @item dissolve
21850 @item pixelize
21851 @item diagtl
21852 @item diagtr
21853 @item diagbl
21854 @item diagbr
21855 @item hlslice
21856 @item hrslice
21857 @item vuslice
21858 @item vdslice
21859 @item hblur
21860 @item fadegrays
21861 @item wipetl
21862 @item wipetr
21863 @item wipebl
21864 @item wipebr
21865 @item squeezeh
21866 @item squeezev
21867 @end table
21868 Default transition effect is fade.
21869
21870 @item duration
21871 Set cross fade duration in seconds.
21872 Default duration is 1 second.
21873
21874 @item offset
21875 Set cross fade start relative to first input stream in seconds.
21876 Default offset is 0.
21877
21878 @item expr
21879 Set expression for custom transition effect.
21880
21881 The expressions can use the following variables and functions:
21882
21883 @table @option
21884 @item X
21885 @item Y
21886 The coordinates of the current sample.
21887
21888 @item W
21889 @item H
21890 The width and height of the image.
21891
21892 @item P
21893 Progress of transition effect.
21894
21895 @item PLANE
21896 Currently processed plane.
21897
21898 @item A
21899 Return value of first input at current location and plane.
21900
21901 @item B
21902 Return value of second input at current location and plane.
21903
21904 @item a0(x, y)
21905 @item a1(x, y)
21906 @item a2(x, y)
21907 @item a3(x, y)
21908 Return the value of the pixel at location (@var{x},@var{y}) of the
21909 first/second/third/fourth component of first input.
21910
21911 @item b0(x, y)
21912 @item b1(x, y)
21913 @item b2(x, y)
21914 @item b3(x, y)
21915 Return the value of the pixel at location (@var{x},@var{y}) of the
21916 first/second/third/fourth component of second input.
21917 @end table
21918 @end table
21919
21920 @subsection Examples
21921
21922 @itemize
21923 @item
21924 Cross fade from one input video to another input video, with fade transition and duration of transition
21925 of 2 seconds starting at offset of 5 seconds:
21926 @example
21927 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21928 @end example
21929 @end itemize
21930
21931 @section xmedian
21932 Pick median pixels from several input videos.
21933
21934 The filter accepts the following options:
21935
21936 @table @option
21937 @item inputs
21938 Set number of inputs.
21939 Default is 3. Allowed range is from 3 to 255.
21940 If number of inputs is even number, than result will be mean value between two median values.
21941
21942 @item planes
21943 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21944
21945 @item percentile
21946 Set median percentile. Default value is @code{0.5}.
21947 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21948 minimum values, and @code{1} maximum values.
21949 @end table
21950
21951 @subsection Commands
21952
21953 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21954
21955 @section xstack
21956 Stack video inputs into custom layout.
21957
21958 All streams must be of same pixel format.
21959
21960 The filter accepts the following options:
21961
21962 @table @option
21963 @item inputs
21964 Set number of input streams. Default is 2.
21965
21966 @item layout
21967 Specify layout of inputs.
21968 This option requires the desired layout configuration to be explicitly set by the user.
21969 This sets position of each video input in output. Each input
21970 is separated by '|'.
21971 The first number represents the column, and the second number represents the row.
21972 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21973 where X is video input from which to take width or height.
21974 Multiple values can be used when separated by '+'. In such
21975 case values are summed together.
21976
21977 Note that if inputs are of different sizes gaps may appear, as not all of
21978 the output video frame will be filled. Similarly, videos can overlap each
21979 other if their position doesn't leave enough space for the full frame of
21980 adjoining videos.
21981
21982 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21983 a layout must be set by the user.
21984
21985 @item shortest
21986 If set to 1, force the output to terminate when the shortest input
21987 terminates. Default value is 0.
21988
21989 @item fill
21990 If set to valid color, all unused pixels will be filled with that color.
21991 By default fill is set to none, so it is disabled.
21992 @end table
21993
21994 @subsection Examples
21995
21996 @itemize
21997 @item
21998 Display 4 inputs into 2x2 grid.
21999
22000 Layout:
22001 @example
22002 input1(0, 0)  | input3(w0, 0)
22003 input2(0, h0) | input4(w0, h0)
22004 @end example
22005
22006 @example
22007 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
22008 @end example
22009
22010 Note that if inputs are of different sizes, gaps or overlaps may occur.
22011
22012 @item
22013 Display 4 inputs into 1x4 grid.
22014
22015 Layout:
22016 @example
22017 input1(0, 0)
22018 input2(0, h0)
22019 input3(0, h0+h1)
22020 input4(0, h0+h1+h2)
22021 @end example
22022
22023 @example
22024 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
22025 @end example
22026
22027 Note that if inputs are of different widths, unused space will appear.
22028
22029 @item
22030 Display 9 inputs into 3x3 grid.
22031
22032 Layout:
22033 @example
22034 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
22035 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
22036 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
22037 @end example
22038
22039 @example
22040 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
22041 @end example
22042
22043 Note that if inputs are of different sizes, gaps or overlaps may occur.
22044
22045 @item
22046 Display 16 inputs into 4x4 grid.
22047
22048 Layout:
22049 @example
22050 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
22051 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
22052 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
22053 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
22054 @end example
22055
22056 @example
22057 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|
22058 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
22059 @end example
22060
22061 Note that if inputs are of different sizes, gaps or overlaps may occur.
22062
22063 @end itemize
22064
22065 @anchor{yadif}
22066 @section yadif
22067
22068 Deinterlace the input video ("yadif" means "yet another deinterlacing
22069 filter").
22070
22071 It accepts the following parameters:
22072
22073
22074 @table @option
22075
22076 @item mode
22077 The interlacing mode to adopt. It accepts one of the following values:
22078
22079 @table @option
22080 @item 0, send_frame
22081 Output one frame for each frame.
22082 @item 1, send_field
22083 Output one frame for each field.
22084 @item 2, send_frame_nospatial
22085 Like @code{send_frame}, but it skips the spatial interlacing check.
22086 @item 3, send_field_nospatial
22087 Like @code{send_field}, but it skips the spatial interlacing check.
22088 @end table
22089
22090 The default value is @code{send_frame}.
22091
22092 @item parity
22093 The picture field parity assumed for the input interlaced video. It accepts one
22094 of the following values:
22095
22096 @table @option
22097 @item 0, tff
22098 Assume the top field is first.
22099 @item 1, bff
22100 Assume the bottom field is first.
22101 @item -1, auto
22102 Enable automatic detection of field parity.
22103 @end table
22104
22105 The default value is @code{auto}.
22106 If the interlacing is unknown or the decoder does not export this information,
22107 top field first will be assumed.
22108
22109 @item deint
22110 Specify which frames to deinterlace. Accepts one of the following
22111 values:
22112
22113 @table @option
22114 @item 0, all
22115 Deinterlace all frames.
22116 @item 1, interlaced
22117 Only deinterlace frames marked as interlaced.
22118 @end table
22119
22120 The default value is @code{all}.
22121 @end table
22122
22123 @section yadif_cuda
22124
22125 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
22126 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
22127 and/or nvenc.
22128
22129 It accepts the following parameters:
22130
22131
22132 @table @option
22133
22134 @item mode
22135 The interlacing mode to adopt. It accepts one of the following values:
22136
22137 @table @option
22138 @item 0, send_frame
22139 Output one frame for each frame.
22140 @item 1, send_field
22141 Output one frame for each field.
22142 @item 2, send_frame_nospatial
22143 Like @code{send_frame}, but it skips the spatial interlacing check.
22144 @item 3, send_field_nospatial
22145 Like @code{send_field}, but it skips the spatial interlacing check.
22146 @end table
22147
22148 The default value is @code{send_frame}.
22149
22150 @item parity
22151 The picture field parity assumed for the input interlaced video. It accepts one
22152 of the following values:
22153
22154 @table @option
22155 @item 0, tff
22156 Assume the top field is first.
22157 @item 1, bff
22158 Assume the bottom field is first.
22159 @item -1, auto
22160 Enable automatic detection of field parity.
22161 @end table
22162
22163 The default value is @code{auto}.
22164 If the interlacing is unknown or the decoder does not export this information,
22165 top field first will be assumed.
22166
22167 @item deint
22168 Specify which frames to deinterlace. Accepts one of the following
22169 values:
22170
22171 @table @option
22172 @item 0, all
22173 Deinterlace all frames.
22174 @item 1, interlaced
22175 Only deinterlace frames marked as interlaced.
22176 @end table
22177
22178 The default value is @code{all}.
22179 @end table
22180
22181 @section yaepblur
22182
22183 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
22184 The algorithm is described in
22185 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
22186
22187 It accepts the following parameters:
22188
22189 @table @option
22190 @item radius, r
22191 Set the window radius. Default value is 3.
22192
22193 @item planes, p
22194 Set which planes to filter. Default is only the first plane.
22195
22196 @item sigma, s
22197 Set blur strength. Default value is 128.
22198 @end table
22199
22200 @subsection Commands
22201 This filter supports same @ref{commands} as options.
22202
22203 @section zoompan
22204
22205 Apply Zoom & Pan effect.
22206
22207 This filter accepts the following options:
22208
22209 @table @option
22210 @item zoom, z
22211 Set the zoom expression. Range is 1-10. Default is 1.
22212
22213 @item x
22214 @item y
22215 Set the x and y expression. Default is 0.
22216
22217 @item d
22218 Set the duration expression in number of frames.
22219 This sets for how many number of frames effect will last for
22220 single input image. Default is 90.
22221
22222 @item s
22223 Set the output image size, default is 'hd720'.
22224
22225 @item fps
22226 Set the output frame rate, default is '25'.
22227 @end table
22228
22229 Each expression can contain the following constants:
22230
22231 @table @option
22232 @item in_w, iw
22233 Input width.
22234
22235 @item in_h, ih
22236 Input height.
22237
22238 @item out_w, ow
22239 Output width.
22240
22241 @item out_h, oh
22242 Output height.
22243
22244 @item in
22245 Input frame count.
22246
22247 @item on
22248 Output frame count.
22249
22250 @item in_time, it
22251 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
22252
22253 @item out_time, time, ot
22254 The output timestamp expressed in seconds.
22255
22256 @item x
22257 @item y
22258 Last calculated 'x' and 'y' position from 'x' and 'y' expression
22259 for current input frame.
22260
22261 @item px
22262 @item py
22263 'x' and 'y' of last output frame of previous input frame or 0 when there was
22264 not yet such frame (first input frame).
22265
22266 @item zoom
22267 Last calculated zoom from 'z' expression for current input frame.
22268
22269 @item pzoom
22270 Last calculated zoom of last output frame of previous input frame.
22271
22272 @item duration
22273 Number of output frames for current input frame. Calculated from 'd' expression
22274 for each input frame.
22275
22276 @item pduration
22277 number of output frames created for previous input frame
22278
22279 @item a
22280 Rational number: input width / input height
22281
22282 @item sar
22283 sample aspect ratio
22284
22285 @item dar
22286 display aspect ratio
22287
22288 @end table
22289
22290 @subsection Examples
22291
22292 @itemize
22293 @item
22294 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
22295 @example
22296 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
22297 @end example
22298
22299 @item
22300 Zoom in up to 1.5x and pan always at center of picture:
22301 @example
22302 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22303 @end example
22304
22305 @item
22306 Same as above but without pausing:
22307 @example
22308 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22309 @end example
22310
22311 @item
22312 Zoom in 2x into center of picture only for the first second of the input video:
22313 @example
22314 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22315 @end example
22316
22317 @end itemize
22318
22319 @anchor{zscale}
22320 @section zscale
22321 Scale (resize) the input video, using the z.lib library:
22322 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
22323 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
22324
22325 The zscale filter forces the output display aspect ratio to be the same
22326 as the input, by changing the output sample aspect ratio.
22327
22328 If the input image format is different from the format requested by
22329 the next filter, the zscale filter will convert the input to the
22330 requested format.
22331
22332 @subsection Options
22333 The filter accepts the following options.
22334
22335 @table @option
22336 @item width, w
22337 @item height, h
22338 Set the output video dimension expression. Default value is the input
22339 dimension.
22340
22341 If the @var{width} or @var{w} value is 0, the input width is used for
22342 the output. If the @var{height} or @var{h} value is 0, the input height
22343 is used for the output.
22344
22345 If one and only one of the values is -n with n >= 1, the zscale filter
22346 will use a value that maintains the aspect ratio of the input image,
22347 calculated from the other specified dimension. After that it will,
22348 however, make sure that the calculated dimension is divisible by n and
22349 adjust the value if necessary.
22350
22351 If both values are -n with n >= 1, the behavior will be identical to
22352 both values being set to 0 as previously detailed.
22353
22354 See below for the list of accepted constants for use in the dimension
22355 expression.
22356
22357 @item size, s
22358 Set the video size. For the syntax of this option, check the
22359 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22360
22361 @item dither, d
22362 Set the dither type.
22363
22364 Possible values are:
22365 @table @var
22366 @item none
22367 @item ordered
22368 @item random
22369 @item error_diffusion
22370 @end table
22371
22372 Default is none.
22373
22374 @item filter, f
22375 Set the resize filter type.
22376
22377 Possible values are:
22378 @table @var
22379 @item point
22380 @item bilinear
22381 @item bicubic
22382 @item spline16
22383 @item spline36
22384 @item lanczos
22385 @end table
22386
22387 Default is bilinear.
22388
22389 @item range, r
22390 Set the color range.
22391
22392 Possible values are:
22393 @table @var
22394 @item input
22395 @item limited
22396 @item full
22397 @end table
22398
22399 Default is same as input.
22400
22401 @item primaries, p
22402 Set the color primaries.
22403
22404 Possible values are:
22405 @table @var
22406 @item input
22407 @item 709
22408 @item unspecified
22409 @item 170m
22410 @item 240m
22411 @item 2020
22412 @end table
22413
22414 Default is same as input.
22415
22416 @item transfer, t
22417 Set the transfer characteristics.
22418
22419 Possible values are:
22420 @table @var
22421 @item input
22422 @item 709
22423 @item unspecified
22424 @item 601
22425 @item linear
22426 @item 2020_10
22427 @item 2020_12
22428 @item smpte2084
22429 @item iec61966-2-1
22430 @item arib-std-b67
22431 @end table
22432
22433 Default is same as input.
22434
22435 @item matrix, m
22436 Set the colorspace matrix.
22437
22438 Possible value are:
22439 @table @var
22440 @item input
22441 @item 709
22442 @item unspecified
22443 @item 470bg
22444 @item 170m
22445 @item 2020_ncl
22446 @item 2020_cl
22447 @end table
22448
22449 Default is same as input.
22450
22451 @item rangein, rin
22452 Set the input color range.
22453
22454 Possible values are:
22455 @table @var
22456 @item input
22457 @item limited
22458 @item full
22459 @end table
22460
22461 Default is same as input.
22462
22463 @item primariesin, pin
22464 Set the input color primaries.
22465
22466 Possible values are:
22467 @table @var
22468 @item input
22469 @item 709
22470 @item unspecified
22471 @item 170m
22472 @item 240m
22473 @item 2020
22474 @end table
22475
22476 Default is same as input.
22477
22478 @item transferin, tin
22479 Set the input transfer characteristics.
22480
22481 Possible values are:
22482 @table @var
22483 @item input
22484 @item 709
22485 @item unspecified
22486 @item 601
22487 @item linear
22488 @item 2020_10
22489 @item 2020_12
22490 @end table
22491
22492 Default is same as input.
22493
22494 @item matrixin, min
22495 Set the input colorspace matrix.
22496
22497 Possible value are:
22498 @table @var
22499 @item input
22500 @item 709
22501 @item unspecified
22502 @item 470bg
22503 @item 170m
22504 @item 2020_ncl
22505 @item 2020_cl
22506 @end table
22507
22508 @item chromal, c
22509 Set the output chroma location.
22510
22511 Possible values are:
22512 @table @var
22513 @item input
22514 @item left
22515 @item center
22516 @item topleft
22517 @item top
22518 @item bottomleft
22519 @item bottom
22520 @end table
22521
22522 @item chromalin, cin
22523 Set the input chroma location.
22524
22525 Possible values are:
22526 @table @var
22527 @item input
22528 @item left
22529 @item center
22530 @item topleft
22531 @item top
22532 @item bottomleft
22533 @item bottom
22534 @end table
22535
22536 @item npl
22537 Set the nominal peak luminance.
22538
22539 @item param_a
22540 Parameter A for scaling filters. Parameter "b" for bicubic, and the number of
22541 filter taps for lanczos.
22542
22543 @item param_b
22544 Parameter B for scaling filters. Parameter "c" for bicubic.
22545 @end table
22546
22547 The values of the @option{w} and @option{h} options are expressions
22548 containing the following constants:
22549
22550 @table @var
22551 @item in_w
22552 @item in_h
22553 The input width and height
22554
22555 @item iw
22556 @item ih
22557 These are the same as @var{in_w} and @var{in_h}.
22558
22559 @item out_w
22560 @item out_h
22561 The output (scaled) width and height
22562
22563 @item ow
22564 @item oh
22565 These are the same as @var{out_w} and @var{out_h}
22566
22567 @item a
22568 The same as @var{iw} / @var{ih}
22569
22570 @item sar
22571 input sample aspect ratio
22572
22573 @item dar
22574 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22575
22576 @item hsub
22577 @item vsub
22578 horizontal and vertical input chroma subsample values. For example for the
22579 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22580
22581 @item ohsub
22582 @item ovsub
22583 horizontal and vertical output chroma subsample values. For example for the
22584 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22585 @end table
22586
22587 @subsection Commands
22588
22589 This filter supports the following commands:
22590 @table @option
22591 @item width, w
22592 @item height, h
22593 Set the output video dimension expression.
22594 The command accepts the same syntax of the corresponding option.
22595
22596 If the specified expression is not valid, it is kept at its current
22597 value.
22598 @end table
22599
22600 @c man end VIDEO FILTERS
22601
22602 @chapter OpenCL Video Filters
22603 @c man begin OPENCL VIDEO FILTERS
22604
22605 Below is a description of the currently available OpenCL video filters.
22606
22607 To enable compilation of these filters you need to configure FFmpeg with
22608 @code{--enable-opencl}.
22609
22610 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22611 @table @option
22612
22613 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22614 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22615 given device parameters.
22616
22617 @item -filter_hw_device @var{name}
22618 Pass the hardware device called @var{name} to all filters in any filter graph.
22619
22620 @end table
22621
22622 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22623
22624 @itemize
22625 @item
22626 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22627 @example
22628 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22629 @end example
22630 @end itemize
22631
22632 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.
22633
22634 @section avgblur_opencl
22635
22636 Apply average blur filter.
22637
22638 The filter accepts the following options:
22639
22640 @table @option
22641 @item sizeX
22642 Set horizontal radius size.
22643 Range is @code{[1, 1024]} and default value is @code{1}.
22644
22645 @item planes
22646 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22647
22648 @item sizeY
22649 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22650 @end table
22651
22652 @subsection Example
22653
22654 @itemize
22655 @item
22656 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.
22657 @example
22658 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22659 @end example
22660 @end itemize
22661
22662 @section boxblur_opencl
22663
22664 Apply a boxblur algorithm to the input video.
22665
22666 It accepts the following parameters:
22667
22668 @table @option
22669
22670 @item luma_radius, lr
22671 @item luma_power, lp
22672 @item chroma_radius, cr
22673 @item chroma_power, cp
22674 @item alpha_radius, ar
22675 @item alpha_power, ap
22676
22677 @end table
22678
22679 A description of the accepted options follows.
22680
22681 @table @option
22682 @item luma_radius, lr
22683 @item chroma_radius, cr
22684 @item alpha_radius, ar
22685 Set an expression for the box radius in pixels used for blurring the
22686 corresponding input plane.
22687
22688 The radius value must be a non-negative number, and must not be
22689 greater than the value of the expression @code{min(w,h)/2} for the
22690 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22691 planes.
22692
22693 Default value for @option{luma_radius} is "2". If not specified,
22694 @option{chroma_radius} and @option{alpha_radius} default to the
22695 corresponding value set for @option{luma_radius}.
22696
22697 The expressions can contain the following constants:
22698 @table @option
22699 @item w
22700 @item h
22701 The input width and height in pixels.
22702
22703 @item cw
22704 @item ch
22705 The input chroma image width and height in pixels.
22706
22707 @item hsub
22708 @item vsub
22709 The horizontal and vertical chroma subsample values. For example, for the
22710 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22711 @end table
22712
22713 @item luma_power, lp
22714 @item chroma_power, cp
22715 @item alpha_power, ap
22716 Specify how many times the boxblur filter is applied to the
22717 corresponding plane.
22718
22719 Default value for @option{luma_power} is 2. If not specified,
22720 @option{chroma_power} and @option{alpha_power} default to the
22721 corresponding value set for @option{luma_power}.
22722
22723 A value of 0 will disable the effect.
22724 @end table
22725
22726 @subsection Examples
22727
22728 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.
22729
22730 @itemize
22731 @item
22732 Apply a boxblur filter with the luma, chroma, and alpha radius
22733 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.
22734 @example
22735 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22736 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22737 @end example
22738
22739 @item
22740 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.
22741
22742 For the luma plane, a 2x2 box radius will be run once.
22743
22744 For the chroma plane, a 4x4 box radius will be run 5 times.
22745
22746 For the alpha plane, a 3x3 box radius will be run 7 times.
22747 @example
22748 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22749 @end example
22750 @end itemize
22751
22752 @section colorkey_opencl
22753 RGB colorspace color keying.
22754
22755 The filter accepts the following options:
22756
22757 @table @option
22758 @item color
22759 The color which will be replaced with transparency.
22760
22761 @item similarity
22762 Similarity percentage with the key color.
22763
22764 0.01 matches only the exact key color, while 1.0 matches everything.
22765
22766 @item blend
22767 Blend percentage.
22768
22769 0.0 makes pixels either fully transparent, or not transparent at all.
22770
22771 Higher values result in semi-transparent pixels, with a higher transparency
22772 the more similar the pixels color is to the key color.
22773 @end table
22774
22775 @subsection Examples
22776
22777 @itemize
22778 @item
22779 Make every semi-green pixel in the input transparent with some slight blending:
22780 @example
22781 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22782 @end example
22783 @end itemize
22784
22785 @section convolution_opencl
22786
22787 Apply convolution of 3x3, 5x5, 7x7 matrix.
22788
22789 The filter accepts the following options:
22790
22791 @table @option
22792 @item 0m
22793 @item 1m
22794 @item 2m
22795 @item 3m
22796 Set matrix for each plane.
22797 Matrix is sequence of 9, 25 or 49 signed numbers.
22798 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22799
22800 @item 0rdiv
22801 @item 1rdiv
22802 @item 2rdiv
22803 @item 3rdiv
22804 Set multiplier for calculated value for each plane.
22805 If unset or 0, it will be sum of all matrix elements.
22806 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22807
22808 @item 0bias
22809 @item 1bias
22810 @item 2bias
22811 @item 3bias
22812 Set bias for each plane. This value is added to the result of the multiplication.
22813 Useful for making the overall image brighter or darker.
22814 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22815
22816 @end table
22817
22818 @subsection Examples
22819
22820 @itemize
22821 @item
22822 Apply sharpen:
22823 @example
22824 -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
22825 @end example
22826
22827 @item
22828 Apply blur:
22829 @example
22830 -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
22831 @end example
22832
22833 @item
22834 Apply edge enhance:
22835 @example
22836 -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
22837 @end example
22838
22839 @item
22840 Apply edge detect:
22841 @example
22842 -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
22843 @end example
22844
22845 @item
22846 Apply laplacian edge detector which includes diagonals:
22847 @example
22848 -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
22849 @end example
22850
22851 @item
22852 Apply emboss:
22853 @example
22854 -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
22855 @end example
22856 @end itemize
22857
22858 @section erosion_opencl
22859
22860 Apply erosion effect to the video.
22861
22862 This filter replaces the pixel by the local(3x3) minimum.
22863
22864 It accepts the following options:
22865
22866 @table @option
22867 @item threshold0
22868 @item threshold1
22869 @item threshold2
22870 @item threshold3
22871 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22872 If @code{0}, plane will remain unchanged.
22873
22874 @item coordinates
22875 Flag which specifies the pixel to refer to.
22876 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22877
22878 Flags to local 3x3 coordinates region centered on @code{x}:
22879
22880     1 2 3
22881
22882     4 x 5
22883
22884     6 7 8
22885 @end table
22886
22887 @subsection Example
22888
22889 @itemize
22890 @item
22891 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.
22892 @example
22893 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22894 @end example
22895 @end itemize
22896
22897 @section deshake_opencl
22898 Feature-point based video stabilization filter.
22899
22900 The filter accepts the following options:
22901
22902 @table @option
22903 @item tripod
22904 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22905
22906 @item debug
22907 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22908
22909 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22910
22911 Viewing point matches in the output video is only supported for RGB input.
22912
22913 Defaults to @code{0}.
22914
22915 @item adaptive_crop
22916 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22917
22918 Defaults to @code{1}.
22919
22920 @item refine_features
22921 Whether or not feature points should be refined at a sub-pixel level.
22922
22923 This can be turned off for a slight performance gain at the cost of precision.
22924
22925 Defaults to @code{1}.
22926
22927 @item smooth_strength
22928 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22929
22930 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22931
22932 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22933
22934 Defaults to @code{0.0}.
22935
22936 @item smooth_window_multiplier
22937 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22938
22939 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22940
22941 Acceptable values range from @code{0.1} to @code{10.0}.
22942
22943 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22944 potentially improving smoothness, but also increase latency and memory usage.
22945
22946 Defaults to @code{2.0}.
22947
22948 @end table
22949
22950 @subsection Examples
22951
22952 @itemize
22953 @item
22954 Stabilize a video with a fixed, medium smoothing strength:
22955 @example
22956 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22957 @end example
22958
22959 @item
22960 Stabilize a video with debugging (both in console and in rendered video):
22961 @example
22962 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22963 @end example
22964 @end itemize
22965
22966 @section dilation_opencl
22967
22968 Apply dilation effect to the video.
22969
22970 This filter replaces the pixel by the local(3x3) maximum.
22971
22972 It accepts the following options:
22973
22974 @table @option
22975 @item threshold0
22976 @item threshold1
22977 @item threshold2
22978 @item threshold3
22979 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22980 If @code{0}, plane will remain unchanged.
22981
22982 @item coordinates
22983 Flag which specifies the pixel to refer to.
22984 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22985
22986 Flags to local 3x3 coordinates region centered on @code{x}:
22987
22988     1 2 3
22989
22990     4 x 5
22991
22992     6 7 8
22993 @end table
22994
22995 @subsection Example
22996
22997 @itemize
22998 @item
22999 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.
23000 @example
23001 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
23002 @end example
23003 @end itemize
23004
23005 @section nlmeans_opencl
23006
23007 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
23008
23009 @section overlay_opencl
23010
23011 Overlay one video on top of another.
23012
23013 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
23014 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
23015
23016 The filter accepts the following options:
23017
23018 @table @option
23019
23020 @item x
23021 Set the x coordinate of the overlaid video on the main video.
23022 Default value is @code{0}.
23023
23024 @item y
23025 Set the y coordinate of the overlaid video on the main video.
23026 Default value is @code{0}.
23027
23028 @end table
23029
23030 @subsection Examples
23031
23032 @itemize
23033 @item
23034 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
23035 @example
23036 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
23037 @end example
23038 @item
23039 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
23040 @example
23041 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
23042 @end example
23043
23044 @end itemize
23045
23046 @section pad_opencl
23047
23048 Add paddings to the input image, and place the original input at the
23049 provided @var{x}, @var{y} coordinates.
23050
23051 It accepts the following options:
23052
23053 @table @option
23054 @item width, w
23055 @item height, h
23056 Specify an expression for the size of the output image with the
23057 paddings added. If the value for @var{width} or @var{height} is 0, the
23058 corresponding input size is used for the output.
23059
23060 The @var{width} expression can reference the value set by the
23061 @var{height} expression, and vice versa.
23062
23063 The default value of @var{width} and @var{height} is 0.
23064
23065 @item x
23066 @item y
23067 Specify the offsets to place the input image at within the padded area,
23068 with respect to the top/left border of the output image.
23069
23070 The @var{x} expression can reference the value set by the @var{y}
23071 expression, and vice versa.
23072
23073 The default value of @var{x} and @var{y} is 0.
23074
23075 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
23076 so the input image is centered on the padded area.
23077
23078 @item color
23079 Specify the color of the padded area. For the syntax of this option,
23080 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
23081 manual,ffmpeg-utils}.
23082
23083 @item aspect
23084 Pad to an aspect instead to a resolution.
23085 @end table
23086
23087 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
23088 options are expressions containing the following constants:
23089
23090 @table @option
23091 @item in_w
23092 @item in_h
23093 The input video width and height.
23094
23095 @item iw
23096 @item ih
23097 These are the same as @var{in_w} and @var{in_h}.
23098
23099 @item out_w
23100 @item out_h
23101 The output width and height (the size of the padded area), as
23102 specified by the @var{width} and @var{height} expressions.
23103
23104 @item ow
23105 @item oh
23106 These are the same as @var{out_w} and @var{out_h}.
23107
23108 @item x
23109 @item y
23110 The x and y offsets as specified by the @var{x} and @var{y}
23111 expressions, or NAN if not yet specified.
23112
23113 @item a
23114 same as @var{iw} / @var{ih}
23115
23116 @item sar
23117 input sample aspect ratio
23118
23119 @item dar
23120 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
23121 @end table
23122
23123 @section prewitt_opencl
23124
23125 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
23126
23127 The filter accepts the following option:
23128
23129 @table @option
23130 @item planes
23131 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
23132
23133 @item scale
23134 Set value which will be multiplied with filtered result.
23135 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
23136
23137 @item delta
23138 Set value which will be added to filtered result.
23139 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
23140 @end table
23141
23142 @subsection Example
23143
23144 @itemize
23145 @item
23146 Apply the Prewitt operator with scale set to 2 and delta set to 10.
23147 @example
23148 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
23149 @end example
23150 @end itemize
23151
23152 @anchor{program_opencl}
23153 @section program_opencl
23154
23155 Filter video using an OpenCL program.
23156
23157 @table @option
23158
23159 @item source
23160 OpenCL program source file.
23161
23162 @item kernel
23163 Kernel name in program.
23164
23165 @item inputs
23166 Number of inputs to the filter.  Defaults to 1.
23167
23168 @item size, s
23169 Size of output frames.  Defaults to the same as the first input.
23170
23171 @end table
23172
23173 The @code{program_opencl} filter also supports the @ref{framesync} options.
23174
23175 The program source file must contain a kernel function with the given name,
23176 which will be run once for each plane of the output.  Each run on a plane
23177 gets enqueued as a separate 2D global NDRange with one work-item for each
23178 pixel to be generated.  The global ID offset for each work-item is therefore
23179 the coordinates of a pixel in the destination image.
23180
23181 The kernel function needs to take the following arguments:
23182 @itemize
23183 @item
23184 Destination image, @var{__write_only image2d_t}.
23185
23186 This image will become the output; the kernel should write all of it.
23187 @item
23188 Frame index, @var{unsigned int}.
23189
23190 This is a counter starting from zero and increasing by one for each frame.
23191 @item
23192 Source images, @var{__read_only image2d_t}.
23193
23194 These are the most recent images on each input.  The kernel may read from
23195 them to generate the output, but they can't be written to.
23196 @end itemize
23197
23198 Example programs:
23199
23200 @itemize
23201 @item
23202 Copy the input to the output (output must be the same size as the input).
23203 @verbatim
23204 __kernel void copy(__write_only image2d_t destination,
23205                    unsigned int index,
23206                    __read_only  image2d_t source)
23207 {
23208     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
23209
23210     int2 location = (int2)(get_global_id(0), get_global_id(1));
23211
23212     float4 value = read_imagef(source, sampler, location);
23213
23214     write_imagef(destination, location, value);
23215 }
23216 @end verbatim
23217
23218 @item
23219 Apply a simple transformation, rotating the input by an amount increasing
23220 with the index counter.  Pixel values are linearly interpolated by the
23221 sampler, and the output need not have the same dimensions as the input.
23222 @verbatim
23223 __kernel void rotate_image(__write_only image2d_t dst,
23224                            unsigned int index,
23225                            __read_only  image2d_t src)
23226 {
23227     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23228                                CLK_FILTER_LINEAR);
23229
23230     float angle = (float)index / 100.0f;
23231
23232     float2 dst_dim = convert_float2(get_image_dim(dst));
23233     float2 src_dim = convert_float2(get_image_dim(src));
23234
23235     float2 dst_cen = dst_dim / 2.0f;
23236     float2 src_cen = src_dim / 2.0f;
23237
23238     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
23239
23240     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
23241     float2 src_pos = {
23242         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
23243         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
23244     };
23245     src_pos = src_pos * src_dim / dst_dim;
23246
23247     float2 src_loc = src_pos + src_cen;
23248
23249     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
23250         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
23251         write_imagef(dst, dst_loc, 0.5f);
23252     else
23253         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
23254 }
23255 @end verbatim
23256
23257 @item
23258 Blend two inputs together, with the amount of each input used varying
23259 with the index counter.
23260 @verbatim
23261 __kernel void blend_images(__write_only image2d_t dst,
23262                            unsigned int index,
23263                            __read_only  image2d_t src1,
23264                            __read_only  image2d_t src2)
23265 {
23266     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23267                                CLK_FILTER_LINEAR);
23268
23269     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
23270
23271     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
23272     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
23273     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
23274
23275     float4 val1 = read_imagef(src1, sampler, src1_loc);
23276     float4 val2 = read_imagef(src2, sampler, src2_loc);
23277
23278     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
23279 }
23280 @end verbatim
23281
23282 @end itemize
23283
23284 @section roberts_opencl
23285 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
23286
23287 The filter accepts the following option:
23288
23289 @table @option
23290 @item planes
23291 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
23292
23293 @item scale
23294 Set value which will be multiplied with filtered result.
23295 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
23296
23297 @item delta
23298 Set value which will be added to filtered result.
23299 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
23300 @end table
23301
23302 @subsection Example
23303
23304 @itemize
23305 @item
23306 Apply the Roberts cross operator with scale set to 2 and delta set to 10
23307 @example
23308 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
23309 @end example
23310 @end itemize
23311
23312 @section sobel_opencl
23313
23314 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
23315
23316 The filter accepts the following option:
23317
23318 @table @option
23319 @item planes
23320 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
23321
23322 @item scale
23323 Set value which will be multiplied with filtered result.
23324 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
23325
23326 @item delta
23327 Set value which will be added to filtered result.
23328 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
23329 @end table
23330
23331 @subsection Example
23332
23333 @itemize
23334 @item
23335 Apply sobel operator with scale set to 2 and delta set to 10
23336 @example
23337 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
23338 @end example
23339 @end itemize
23340
23341 @section tonemap_opencl
23342
23343 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
23344
23345 It accepts the following parameters:
23346
23347 @table @option
23348 @item tonemap
23349 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
23350
23351 @item param
23352 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
23353
23354 @item desat
23355 Apply desaturation for highlights that exceed this level of brightness. The
23356 higher the parameter, the more color information will be preserved. This
23357 setting helps prevent unnaturally blown-out colors for super-highlights, by
23358 (smoothly) turning into white instead. This makes images feel more natural,
23359 at the cost of reducing information about out-of-range colors.
23360
23361 The default value is 0.5, and the algorithm here is a little different from
23362 the cpu version tonemap currently. A setting of 0.0 disables this option.
23363
23364 @item threshold
23365 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
23366 is used to detect whether the scene has changed or not. If the distance between
23367 the current frame average brightness and the current running average exceeds
23368 a threshold value, we would re-calculate scene average and peak brightness.
23369 The default value is 0.2.
23370
23371 @item format
23372 Specify the output pixel format.
23373
23374 Currently supported formats are:
23375 @table @var
23376 @item p010
23377 @item nv12
23378 @end table
23379
23380 @item range, r
23381 Set the output color range.
23382
23383 Possible values are:
23384 @table @var
23385 @item tv/mpeg
23386 @item pc/jpeg
23387 @end table
23388
23389 Default is same as input.
23390
23391 @item primaries, p
23392 Set the output color primaries.
23393
23394 Possible values are:
23395 @table @var
23396 @item bt709
23397 @item bt2020
23398 @end table
23399
23400 Default is same as input.
23401
23402 @item transfer, t
23403 Set the output transfer characteristics.
23404
23405 Possible values are:
23406 @table @var
23407 @item bt709
23408 @item bt2020
23409 @end table
23410
23411 Default is bt709.
23412
23413 @item matrix, m
23414 Set the output colorspace matrix.
23415
23416 Possible value are:
23417 @table @var
23418 @item bt709
23419 @item bt2020
23420 @end table
23421
23422 Default is same as input.
23423
23424 @end table
23425
23426 @subsection Example
23427
23428 @itemize
23429 @item
23430 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
23431 @example
23432 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
23433 @end example
23434 @end itemize
23435
23436 @section unsharp_opencl
23437
23438 Sharpen or blur the input video.
23439
23440 It accepts the following parameters:
23441
23442 @table @option
23443 @item luma_msize_x, lx
23444 Set the luma matrix horizontal size.
23445 Range is @code{[1, 23]} and default value is @code{5}.
23446
23447 @item luma_msize_y, ly
23448 Set the luma matrix vertical size.
23449 Range is @code{[1, 23]} and default value is @code{5}.
23450
23451 @item luma_amount, la
23452 Set the luma effect strength.
23453 Range is @code{[-10, 10]} and default value is @code{1.0}.
23454
23455 Negative values will blur the input video, while positive values will
23456 sharpen it, a value of zero will disable the effect.
23457
23458 @item chroma_msize_x, cx
23459 Set the chroma matrix horizontal size.
23460 Range is @code{[1, 23]} and default value is @code{5}.
23461
23462 @item chroma_msize_y, cy
23463 Set the chroma matrix vertical size.
23464 Range is @code{[1, 23]} and default value is @code{5}.
23465
23466 @item chroma_amount, ca
23467 Set the chroma effect strength.
23468 Range is @code{[-10, 10]} and default value is @code{0.0}.
23469
23470 Negative values will blur the input video, while positive values will
23471 sharpen it, a value of zero will disable the effect.
23472
23473 @end table
23474
23475 All parameters are optional and default to the equivalent of the
23476 string '5:5:1.0:5:5:0.0'.
23477
23478 @subsection Examples
23479
23480 @itemize
23481 @item
23482 Apply strong luma sharpen effect:
23483 @example
23484 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
23485 @end example
23486
23487 @item
23488 Apply a strong blur of both luma and chroma parameters:
23489 @example
23490 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
23491 @end example
23492 @end itemize
23493
23494 @section xfade_opencl
23495
23496 Cross fade two videos with custom transition effect by using OpenCL.
23497
23498 It accepts the following options:
23499
23500 @table @option
23501 @item transition
23502 Set one of possible transition effects.
23503
23504 @table @option
23505 @item custom
23506 Select custom transition effect, the actual transition description
23507 will be picked from source and kernel options.
23508
23509 @item fade
23510 @item wipeleft
23511 @item wiperight
23512 @item wipeup
23513 @item wipedown
23514 @item slideleft
23515 @item slideright
23516 @item slideup
23517 @item slidedown
23518
23519 Default transition is fade.
23520 @end table
23521
23522 @item source
23523 OpenCL program source file for custom transition.
23524
23525 @item kernel
23526 Set name of kernel to use for custom transition from program source file.
23527
23528 @item duration
23529 Set duration of video transition.
23530
23531 @item offset
23532 Set time of start of transition relative to first video.
23533 @end table
23534
23535 The program source file must contain a kernel function with the given name,
23536 which will be run once for each plane of the output.  Each run on a plane
23537 gets enqueued as a separate 2D global NDRange with one work-item for each
23538 pixel to be generated.  The global ID offset for each work-item is therefore
23539 the coordinates of a pixel in the destination image.
23540
23541 The kernel function needs to take the following arguments:
23542 @itemize
23543 @item
23544 Destination image, @var{__write_only image2d_t}.
23545
23546 This image will become the output; the kernel should write all of it.
23547
23548 @item
23549 First Source image, @var{__read_only image2d_t}.
23550 Second Source image, @var{__read_only image2d_t}.
23551
23552 These are the most recent images on each input.  The kernel may read from
23553 them to generate the output, but they can't be written to.
23554
23555 @item
23556 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
23557 @end itemize
23558
23559 Example programs:
23560
23561 @itemize
23562 @item
23563 Apply dots curtain transition effect:
23564 @verbatim
23565 __kernel void blend_images(__write_only image2d_t dst,
23566                            __read_only  image2d_t src1,
23567                            __read_only  image2d_t src2,
23568                            float progress)
23569 {
23570     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23571                                CLK_FILTER_LINEAR);
23572     int2  p = (int2)(get_global_id(0), get_global_id(1));
23573     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23574     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23575     rp = rp / dim;
23576
23577     float2 dots = (float2)(20.0, 20.0);
23578     float2 center = (float2)(0,0);
23579     float2 unused;
23580
23581     float4 val1 = read_imagef(src1, sampler, p);
23582     float4 val2 = read_imagef(src2, sampler, p);
23583     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23584
23585     write_imagef(dst, p, next ? val1 : val2);
23586 }
23587 @end verbatim
23588
23589 @end itemize
23590
23591 @c man end OPENCL VIDEO FILTERS
23592
23593 @chapter VAAPI Video Filters
23594 @c man begin VAAPI VIDEO FILTERS
23595
23596 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23597
23598 To enable compilation of these filters you need to configure FFmpeg with
23599 @code{--enable-vaapi}.
23600
23601 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}
23602
23603 @section tonemap_vaapi
23604
23605 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23606 It maps the dynamic range of HDR10 content to the SDR content.
23607 It currently only accepts HDR10 as input.
23608
23609 It accepts the following parameters:
23610
23611 @table @option
23612 @item format
23613 Specify the output pixel format.
23614
23615 Currently supported formats are:
23616 @table @var
23617 @item p010
23618 @item nv12
23619 @end table
23620
23621 Default is nv12.
23622
23623 @item primaries, p
23624 Set the output color primaries.
23625
23626 Default is same as input.
23627
23628 @item transfer, t
23629 Set the output transfer characteristics.
23630
23631 Default is bt709.
23632
23633 @item matrix, m
23634 Set the output colorspace matrix.
23635
23636 Default is same as input.
23637
23638 @end table
23639
23640 @subsection Example
23641
23642 @itemize
23643 @item
23644 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23645 @example
23646 tonemap_vaapi=format=p010:t=bt2020-10
23647 @end example
23648 @end itemize
23649
23650 @c man end VAAPI VIDEO FILTERS
23651
23652 @chapter Video Sources
23653 @c man begin VIDEO SOURCES
23654
23655 Below is a description of the currently available video sources.
23656
23657 @section buffer
23658
23659 Buffer video frames, and make them available to the filter chain.
23660
23661 This source is mainly intended for a programmatic use, in particular
23662 through the interface defined in @file{libavfilter/buffersrc.h}.
23663
23664 It accepts the following parameters:
23665
23666 @table @option
23667
23668 @item video_size
23669 Specify the size (width and height) of the buffered video frames. For the
23670 syntax of this option, check the
23671 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23672
23673 @item width
23674 The input video width.
23675
23676 @item height
23677 The input video height.
23678
23679 @item pix_fmt
23680 A string representing the pixel format of the buffered video frames.
23681 It may be a number corresponding to a pixel format, or a pixel format
23682 name.
23683
23684 @item time_base
23685 Specify the timebase assumed by the timestamps of the buffered frames.
23686
23687 @item frame_rate
23688 Specify the frame rate expected for the video stream.
23689
23690 @item pixel_aspect, sar
23691 The sample (pixel) aspect ratio of the input video.
23692
23693 @item sws_param
23694 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23695 to the filtergraph description to specify swscale flags for automatically
23696 inserted scalers. See @ref{Filtergraph syntax}.
23697
23698 @item hw_frames_ctx
23699 When using a hardware pixel format, this should be a reference to an
23700 AVHWFramesContext describing input frames.
23701 @end table
23702
23703 For example:
23704 @example
23705 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23706 @end example
23707
23708 will instruct the source to accept video frames with size 320x240 and
23709 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23710 square pixels (1:1 sample aspect ratio).
23711 Since the pixel format with name "yuv410p" corresponds to the number 6
23712 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23713 this example corresponds to:
23714 @example
23715 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23716 @end example
23717
23718 Alternatively, the options can be specified as a flat string, but this
23719 syntax is deprecated:
23720
23721 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23722
23723 @section cellauto
23724
23725 Create a pattern generated by an elementary cellular automaton.
23726
23727 The initial state of the cellular automaton can be defined through the
23728 @option{filename} and @option{pattern} options. If such options are
23729 not specified an initial state is created randomly.
23730
23731 At each new frame a new row in the video is filled with the result of
23732 the cellular automaton next generation. The behavior when the whole
23733 frame is filled is defined by the @option{scroll} option.
23734
23735 This source accepts the following options:
23736
23737 @table @option
23738 @item filename, f
23739 Read the initial cellular automaton state, i.e. the starting row, from
23740 the specified file.
23741 In the file, each non-whitespace character is considered an alive
23742 cell, a newline will terminate the row, and further characters in the
23743 file will be ignored.
23744
23745 @item pattern, p
23746 Read the initial cellular automaton state, i.e. the starting row, from
23747 the specified string.
23748
23749 Each non-whitespace character in the string is considered an alive
23750 cell, a newline will terminate the row, and further characters in the
23751 string will be ignored.
23752
23753 @item rate, r
23754 Set the video rate, that is the number of frames generated per second.
23755 Default is 25.
23756
23757 @item random_fill_ratio, ratio
23758 Set the random fill ratio for the initial cellular automaton row. It
23759 is a floating point number value ranging from 0 to 1, defaults to
23760 1/PHI.
23761
23762 This option is ignored when a file or a pattern is specified.
23763
23764 @item random_seed, seed
23765 Set the seed for filling randomly the initial row, must be an integer
23766 included between 0 and UINT32_MAX. If not specified, or if explicitly
23767 set to -1, the filter will try to use a good random seed on a best
23768 effort basis.
23769
23770 @item rule
23771 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23772 Default value is 110.
23773
23774 @item size, s
23775 Set the size of the output video. For the syntax of this option, check the
23776 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23777
23778 If @option{filename} or @option{pattern} is specified, the size is set
23779 by default to the width of the specified initial state row, and the
23780 height is set to @var{width} * PHI.
23781
23782 If @option{size} is set, it must contain the width of the specified
23783 pattern string, and the specified pattern will be centered in the
23784 larger row.
23785
23786 If a filename or a pattern string is not specified, the size value
23787 defaults to "320x518" (used for a randomly generated initial state).
23788
23789 @item scroll
23790 If set to 1, scroll the output upward when all the rows in the output
23791 have been already filled. If set to 0, the new generated row will be
23792 written over the top row just after the bottom row is filled.
23793 Defaults to 1.
23794
23795 @item start_full, full
23796 If set to 1, completely fill the output with generated rows before
23797 outputting the first frame.
23798 This is the default behavior, for disabling set the value to 0.
23799
23800 @item stitch
23801 If set to 1, stitch the left and right row edges together.
23802 This is the default behavior, for disabling set the value to 0.
23803 @end table
23804
23805 @subsection Examples
23806
23807 @itemize
23808 @item
23809 Read the initial state from @file{pattern}, and specify an output of
23810 size 200x400.
23811 @example
23812 cellauto=f=pattern:s=200x400
23813 @end example
23814
23815 @item
23816 Generate a random initial row with a width of 200 cells, with a fill
23817 ratio of 2/3:
23818 @example
23819 cellauto=ratio=2/3:s=200x200
23820 @end example
23821
23822 @item
23823 Create a pattern generated by rule 18 starting by a single alive cell
23824 centered on an initial row with width 100:
23825 @example
23826 cellauto=p=@@:s=100x400:full=0:rule=18
23827 @end example
23828
23829 @item
23830 Specify a more elaborated initial pattern:
23831 @example
23832 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23833 @end example
23834
23835 @end itemize
23836
23837 @anchor{coreimagesrc}
23838 @section coreimagesrc
23839 Video source generated on GPU using Apple's CoreImage API on OSX.
23840
23841 This video source is a specialized version of the @ref{coreimage} video filter.
23842 Use a core image generator at the beginning of the applied filterchain to
23843 generate the content.
23844
23845 The coreimagesrc video source accepts the following options:
23846 @table @option
23847 @item list_generators
23848 List all available generators along with all their respective options as well as
23849 possible minimum and maximum values along with the default values.
23850 @example
23851 list_generators=true
23852 @end example
23853
23854 @item size, s
23855 Specify the size of the sourced video. For the syntax of this option, check the
23856 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23857 The default value is @code{320x240}.
23858
23859 @item rate, r
23860 Specify the frame rate of the sourced video, as the number of frames
23861 generated per second. It has to be a string in the format
23862 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23863 number or a valid video frame rate abbreviation. The default value is
23864 "25".
23865
23866 @item sar
23867 Set the sample aspect ratio of the sourced video.
23868
23869 @item duration, d
23870 Set the duration of the sourced video. See
23871 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23872 for the accepted syntax.
23873
23874 If not specified, or the expressed duration is negative, the video is
23875 supposed to be generated forever.
23876 @end table
23877
23878 Additionally, all options of the @ref{coreimage} video filter are accepted.
23879 A complete filterchain can be used for further processing of the
23880 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23881 and examples for details.
23882
23883 @subsection Examples
23884
23885 @itemize
23886
23887 @item
23888 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23889 given as complete and escaped command-line for Apple's standard bash shell:
23890 @example
23891 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23892 @end example
23893 This example is equivalent to the QRCode example of @ref{coreimage} without the
23894 need for a nullsrc video source.
23895 @end itemize
23896
23897
23898 @section gradients
23899 Generate several gradients.
23900
23901 @table @option
23902 @item size, s
23903 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23904 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23905
23906 @item rate, r
23907 Set frame rate, expressed as number of frames per second. Default
23908 value is "25".
23909
23910 @item c0, c1, c2, c3, c4, c5, c6, c7
23911 Set 8 colors. Default values for colors is to pick random one.
23912
23913 @item x0, y0, y0, y1
23914 Set gradient line source and destination points. If negative or out of range, random ones
23915 are picked.
23916
23917 @item nb_colors, n
23918 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23919
23920 @item seed
23921 Set seed for picking gradient line points.
23922
23923 @item duration, d
23924 Set the duration of the sourced video. See
23925 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23926 for the accepted syntax.
23927
23928 If not specified, or the expressed duration is negative, the video is
23929 supposed to be generated forever.
23930
23931 @item speed
23932 Set speed of gradients rotation.
23933 @end table
23934
23935
23936 @section mandelbrot
23937
23938 Generate a Mandelbrot set fractal, and progressively zoom towards the
23939 point specified with @var{start_x} and @var{start_y}.
23940
23941 This source accepts the following options:
23942
23943 @table @option
23944
23945 @item end_pts
23946 Set the terminal pts value. Default value is 400.
23947
23948 @item end_scale
23949 Set the terminal scale value.
23950 Must be a floating point value. Default value is 0.3.
23951
23952 @item inner
23953 Set the inner coloring mode, that is the algorithm used to draw the
23954 Mandelbrot fractal internal region.
23955
23956 It shall assume one of the following values:
23957 @table @option
23958 @item black
23959 Set black mode.
23960 @item convergence
23961 Show time until convergence.
23962 @item mincol
23963 Set color based on point closest to the origin of the iterations.
23964 @item period
23965 Set period mode.
23966 @end table
23967
23968 Default value is @var{mincol}.
23969
23970 @item bailout
23971 Set the bailout value. Default value is 10.0.
23972
23973 @item maxiter
23974 Set the maximum of iterations performed by the rendering
23975 algorithm. Default value is 7189.
23976
23977 @item outer
23978 Set outer coloring mode.
23979 It shall assume one of following values:
23980 @table @option
23981 @item iteration_count
23982 Set iteration count mode.
23983 @item normalized_iteration_count
23984 set normalized iteration count mode.
23985 @end table
23986 Default value is @var{normalized_iteration_count}.
23987
23988 @item rate, r
23989 Set frame rate, expressed as number of frames per second. Default
23990 value is "25".
23991
23992 @item size, s
23993 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23994 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23995
23996 @item start_scale
23997 Set the initial scale value. Default value is 3.0.
23998
23999 @item start_x
24000 Set the initial x position. Must be a floating point value between
24001 -100 and 100. Default value is -0.743643887037158704752191506114774.
24002
24003 @item start_y
24004 Set the initial y position. Must be a floating point value between
24005 -100 and 100. Default value is -0.131825904205311970493132056385139.
24006 @end table
24007
24008 @section mptestsrc
24009
24010 Generate various test patterns, as generated by the MPlayer test filter.
24011
24012 The size of the generated video is fixed, and is 256x256.
24013 This source is useful in particular for testing encoding features.
24014
24015 This source accepts the following options:
24016
24017 @table @option
24018
24019 @item rate, r
24020 Specify the frame rate of the sourced video, as the number of frames
24021 generated per second. It has to be a string in the format
24022 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
24023 number or a valid video frame rate abbreviation. The default value is
24024 "25".
24025
24026 @item duration, d
24027 Set the duration of the sourced video. See
24028 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
24029 for the accepted syntax.
24030
24031 If not specified, or the expressed duration is negative, the video is
24032 supposed to be generated forever.
24033
24034 @item test, t
24035
24036 Set the number or the name of the test to perform. Supported tests are:
24037 @table @option
24038 @item dc_luma
24039 @item dc_chroma
24040 @item freq_luma
24041 @item freq_chroma
24042 @item amp_luma
24043 @item amp_chroma
24044 @item cbp
24045 @item mv
24046 @item ring1
24047 @item ring2
24048 @item all
24049
24050 @item max_frames, m
24051 Set the maximum number of frames generated for each test, default value is 30.
24052
24053 @end table
24054
24055 Default value is "all", which will cycle through the list of all tests.
24056 @end table
24057
24058 Some examples:
24059 @example
24060 mptestsrc=t=dc_luma
24061 @end example
24062
24063 will generate a "dc_luma" test pattern.
24064
24065 @section frei0r_src
24066
24067 Provide a frei0r source.
24068
24069 To enable compilation of this filter you need to install the frei0r
24070 header and configure FFmpeg with @code{--enable-frei0r}.
24071
24072 This source accepts the following parameters:
24073
24074 @table @option
24075
24076 @item size
24077 The size of the video to generate. For the syntax of this option, check the
24078 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24079
24080 @item framerate
24081 The framerate of the generated video. It may be a string of the form
24082 @var{num}/@var{den} or a frame rate abbreviation.
24083
24084 @item filter_name
24085 The name to the frei0r source to load. For more information regarding frei0r and
24086 how to set the parameters, read the @ref{frei0r} section in the video filters
24087 documentation.
24088
24089 @item filter_params
24090 A '|'-separated list of parameters to pass to the frei0r source.
24091
24092 @end table
24093
24094 For example, to generate a frei0r partik0l source with size 200x200
24095 and frame rate 10 which is overlaid on the overlay filter main input:
24096 @example
24097 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
24098 @end example
24099
24100 @section life
24101
24102 Generate a life pattern.
24103
24104 This source is based on a generalization of John Conway's life game.
24105
24106 The sourced input represents a life grid, each pixel represents a cell
24107 which can be in one of two possible states, alive or dead. Every cell
24108 interacts with its eight neighbours, which are the cells that are
24109 horizontally, vertically, or diagonally adjacent.
24110
24111 At each interaction the grid evolves according to the adopted rule,
24112 which specifies the number of neighbor alive cells which will make a
24113 cell stay alive or born. The @option{rule} option allows one to specify
24114 the rule to adopt.
24115
24116 This source accepts the following options:
24117
24118 @table @option
24119 @item filename, f
24120 Set the file from which to read the initial grid state. In the file,
24121 each non-whitespace character is considered an alive cell, and newline
24122 is used to delimit the end of each row.
24123
24124 If this option is not specified, the initial grid is generated
24125 randomly.
24126
24127 @item rate, r
24128 Set the video rate, that is the number of frames generated per second.
24129 Default is 25.
24130
24131 @item random_fill_ratio, ratio
24132 Set the random fill ratio for the initial random grid. It is a
24133 floating point number value ranging from 0 to 1, defaults to 1/PHI.
24134 It is ignored when a file is specified.
24135
24136 @item random_seed, seed
24137 Set the seed for filling the initial random grid, must be an integer
24138 included between 0 and UINT32_MAX. If not specified, or if explicitly
24139 set to -1, the filter will try to use a good random seed on a best
24140 effort basis.
24141
24142 @item rule
24143 Set the life rule.
24144
24145 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
24146 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
24147 @var{NS} specifies the number of alive neighbor cells which make a
24148 live cell stay alive, and @var{NB} the number of alive neighbor cells
24149 which make a dead cell to become alive (i.e. to "born").
24150 "s" and "b" can be used in place of "S" and "B", respectively.
24151
24152 Alternatively a rule can be specified by an 18-bits integer. The 9
24153 high order bits are used to encode the next cell state if it is alive
24154 for each number of neighbor alive cells, the low order bits specify
24155 the rule for "borning" new cells. Higher order bits encode for an
24156 higher number of neighbor cells.
24157 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
24158 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
24159
24160 Default value is "S23/B3", which is the original Conway's game of life
24161 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
24162 cells, and will born a new cell if there are three alive cells around
24163 a dead cell.
24164
24165 @item size, s
24166 Set the size of the output video. For the syntax of this option, check the
24167 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24168
24169 If @option{filename} is specified, the size is set by default to the
24170 same size of the input file. If @option{size} is set, it must contain
24171 the size specified in the input file, and the initial grid defined in
24172 that file is centered in the larger resulting area.
24173
24174 If a filename is not specified, the size value defaults to "320x240"
24175 (used for a randomly generated initial grid).
24176
24177 @item stitch
24178 If set to 1, stitch the left and right grid edges together, and the
24179 top and bottom edges also. Defaults to 1.
24180
24181 @item mold
24182 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
24183 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
24184 value from 0 to 255.
24185
24186 @item life_color
24187 Set the color of living (or new born) cells.
24188
24189 @item death_color
24190 Set the color of dead cells. If @option{mold} is set, this is the first color
24191 used to represent a dead cell.
24192
24193 @item mold_color
24194 Set mold color, for definitely dead and moldy cells.
24195
24196 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
24197 ffmpeg-utils manual,ffmpeg-utils}.
24198 @end table
24199
24200 @subsection Examples
24201
24202 @itemize
24203 @item
24204 Read a grid from @file{pattern}, and center it on a grid of size
24205 300x300 pixels:
24206 @example
24207 life=f=pattern:s=300x300
24208 @end example
24209
24210 @item
24211 Generate a random grid of size 200x200, with a fill ratio of 2/3:
24212 @example
24213 life=ratio=2/3:s=200x200
24214 @end example
24215
24216 @item
24217 Specify a custom rule for evolving a randomly generated grid:
24218 @example
24219 life=rule=S14/B34
24220 @end example
24221
24222 @item
24223 Full example with slow death effect (mold) using @command{ffplay}:
24224 @example
24225 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
24226 @end example
24227 @end itemize
24228
24229 @anchor{allrgb}
24230 @anchor{allyuv}
24231 @anchor{color}
24232 @anchor{haldclutsrc}
24233 @anchor{nullsrc}
24234 @anchor{pal75bars}
24235 @anchor{pal100bars}
24236 @anchor{rgbtestsrc}
24237 @anchor{smptebars}
24238 @anchor{smptehdbars}
24239 @anchor{testsrc}
24240 @anchor{testsrc2}
24241 @anchor{yuvtestsrc}
24242 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
24243
24244 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
24245
24246 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
24247
24248 The @code{color} source provides an uniformly colored input.
24249
24250 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
24251 @ref{haldclut} filter.
24252
24253 The @code{nullsrc} source returns unprocessed video frames. It is
24254 mainly useful to be employed in analysis / debugging tools, or as the
24255 source for filters which ignore the input data.
24256
24257 The @code{pal75bars} source generates a color bars pattern, based on
24258 EBU PAL recommendations with 75% color levels.
24259
24260 The @code{pal100bars} source generates a color bars pattern, based on
24261 EBU PAL recommendations with 100% color levels.
24262
24263 The @code{rgbtestsrc} source generates an RGB test pattern useful for
24264 detecting RGB vs BGR issues. You should see a red, green and blue
24265 stripe from top to bottom.
24266
24267 The @code{smptebars} source generates a color bars pattern, based on
24268 the SMPTE Engineering Guideline EG 1-1990.
24269
24270 The @code{smptehdbars} source generates a color bars pattern, based on
24271 the SMPTE RP 219-2002.
24272
24273 The @code{testsrc} source generates a test video pattern, showing a
24274 color pattern, a scrolling gradient and a timestamp. This is mainly
24275 intended for testing purposes.
24276
24277 The @code{testsrc2} source is similar to testsrc, but supports more
24278 pixel formats instead of just @code{rgb24}. This allows using it as an
24279 input for other tests without requiring a format conversion.
24280
24281 The @code{yuvtestsrc} source generates an YUV test pattern. You should
24282 see a y, cb and cr stripe from top to bottom.
24283
24284 The sources accept the following parameters:
24285
24286 @table @option
24287
24288 @item level
24289 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
24290 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
24291 pixels to be used as identity matrix for 3D lookup tables. Each component is
24292 coded on a @code{1/(N*N)} scale.
24293
24294 @item color, c
24295 Specify the color of the source, only available in the @code{color}
24296 source. For the syntax of this option, check the
24297 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
24298
24299 @item size, s
24300 Specify the size of the sourced video. For the syntax of this option, check the
24301 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24302 The default value is @code{320x240}.
24303
24304 This option is not available with the @code{allrgb}, @code{allyuv}, and
24305 @code{haldclutsrc} filters.
24306
24307 @item rate, r
24308 Specify the frame rate of the sourced video, as the number of frames
24309 generated per second. It has to be a string in the format
24310 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
24311 number or a valid video frame rate abbreviation. The default value is
24312 "25".
24313
24314 @item duration, d
24315 Set the duration of the sourced video. See
24316 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
24317 for the accepted syntax.
24318
24319 If not specified, or the expressed duration is negative, the video is
24320 supposed to be generated forever.
24321
24322 Since the frame rate is used as time base, all frames including the last one
24323 will have their full duration. If the specified duration is not a multiple
24324 of the frame duration, it will be rounded up.
24325
24326 @item sar
24327 Set the sample aspect ratio of the sourced video.
24328
24329 @item alpha
24330 Specify the alpha (opacity) of the background, only available in the
24331 @code{testsrc2} source. The value must be between 0 (fully transparent) and
24332 255 (fully opaque, the default).
24333
24334 @item decimals, n
24335 Set the number of decimals to show in the timestamp, only available in the
24336 @code{testsrc} source.
24337
24338 The displayed timestamp value will correspond to the original
24339 timestamp value multiplied by the power of 10 of the specified
24340 value. Default value is 0.
24341 @end table
24342
24343 @subsection Examples
24344
24345 @itemize
24346 @item
24347 Generate a video with a duration of 5.3 seconds, with size
24348 176x144 and a frame rate of 10 frames per second:
24349 @example
24350 testsrc=duration=5.3:size=qcif:rate=10
24351 @end example
24352
24353 @item
24354 The following graph description will generate a red source
24355 with an opacity of 0.2, with size "qcif" and a frame rate of 10
24356 frames per second:
24357 @example
24358 color=c=red@@0.2:s=qcif:r=10
24359 @end example
24360
24361 @item
24362 If the input content is to be ignored, @code{nullsrc} can be used. The
24363 following command generates noise in the luminance plane by employing
24364 the @code{geq} filter:
24365 @example
24366 nullsrc=s=256x256, geq=random(1)*255:128:128
24367 @end example
24368 @end itemize
24369
24370 @subsection Commands
24371
24372 The @code{color} source supports the following commands:
24373
24374 @table @option
24375 @item c, color
24376 Set the color of the created image. Accepts the same syntax of the
24377 corresponding @option{color} option.
24378 @end table
24379
24380 @section openclsrc
24381
24382 Generate video using an OpenCL program.
24383
24384 @table @option
24385
24386 @item source
24387 OpenCL program source file.
24388
24389 @item kernel
24390 Kernel name in program.
24391
24392 @item size, s
24393 Size of frames to generate.  This must be set.
24394
24395 @item format
24396 Pixel format to use for the generated frames.  This must be set.
24397
24398 @item rate, r
24399 Number of frames generated every second.  Default value is '25'.
24400
24401 @end table
24402
24403 For details of how the program loading works, see the @ref{program_opencl}
24404 filter.
24405
24406 Example programs:
24407
24408 @itemize
24409 @item
24410 Generate a colour ramp by setting pixel values from the position of the pixel
24411 in the output image.  (Note that this will work with all pixel formats, but
24412 the generated output will not be the same.)
24413 @verbatim
24414 __kernel void ramp(__write_only image2d_t dst,
24415                    unsigned int index)
24416 {
24417     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24418
24419     float4 val;
24420     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
24421
24422     write_imagef(dst, loc, val);
24423 }
24424 @end verbatim
24425
24426 @item
24427 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
24428 @verbatim
24429 __kernel void sierpinski_carpet(__write_only image2d_t dst,
24430                                 unsigned int index)
24431 {
24432     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24433
24434     float4 value = 0.0f;
24435     int x = loc.x + index;
24436     int y = loc.y + index;
24437     while (x > 0 || y > 0) {
24438         if (x % 3 == 1 && y % 3 == 1) {
24439             value = 1.0f;
24440             break;
24441         }
24442         x /= 3;
24443         y /= 3;
24444     }
24445
24446     write_imagef(dst, loc, value);
24447 }
24448 @end verbatim
24449
24450 @end itemize
24451
24452 @section sierpinski
24453
24454 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
24455
24456 This source accepts the following options:
24457
24458 @table @option
24459 @item size, s
24460 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
24461 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
24462
24463 @item rate, r
24464 Set frame rate, expressed as number of frames per second. Default
24465 value is "25".
24466
24467 @item seed
24468 Set seed which is used for random panning.
24469
24470 @item jump
24471 Set max jump for single pan destination. Allowed range is from 1 to 10000.
24472
24473 @item type
24474 Set fractal type, can be default @code{carpet} or @code{triangle}.
24475 @end table
24476
24477 @c man end VIDEO SOURCES
24478
24479 @chapter Video Sinks
24480 @c man begin VIDEO SINKS
24481
24482 Below is a description of the currently available video sinks.
24483
24484 @section buffersink
24485
24486 Buffer video frames, and make them available to the end of the filter
24487 graph.
24488
24489 This sink is mainly intended for programmatic use, in particular
24490 through the interface defined in @file{libavfilter/buffersink.h}
24491 or the options system.
24492
24493 It accepts a pointer to an AVBufferSinkContext structure, which
24494 defines the incoming buffers' formats, to be passed as the opaque
24495 parameter to @code{avfilter_init_filter} for initialization.
24496
24497 @section nullsink
24498
24499 Null video sink: do absolutely nothing with the input video. It is
24500 mainly useful as a template and for use in analysis / debugging
24501 tools.
24502
24503 @c man end VIDEO SINKS
24504
24505 @chapter Multimedia Filters
24506 @c man begin MULTIMEDIA FILTERS
24507
24508 Below is a description of the currently available multimedia filters.
24509
24510 @section abitscope
24511
24512 Convert input audio to a video output, displaying the audio bit scope.
24513
24514 The filter accepts the following options:
24515
24516 @table @option
24517 @item rate, r
24518 Set frame rate, expressed as number of frames per second. Default
24519 value is "25".
24520
24521 @item size, s
24522 Specify the video size for the output. For the syntax of this option, check the
24523 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24524 Default value is @code{1024x256}.
24525
24526 @item colors
24527 Specify list of colors separated by space or by '|' which will be used to
24528 draw channels. Unrecognized or missing colors will be replaced
24529 by white color.
24530 @end table
24531
24532 @section adrawgraph
24533 Draw a graph using input audio metadata.
24534
24535 See @ref{drawgraph}
24536
24537 @section agraphmonitor
24538
24539 See @ref{graphmonitor}.
24540
24541 @section ahistogram
24542
24543 Convert input audio to a video output, displaying the volume histogram.
24544
24545 The filter accepts the following options:
24546
24547 @table @option
24548 @item dmode
24549 Specify how histogram is calculated.
24550
24551 It accepts the following values:
24552 @table @samp
24553 @item single
24554 Use single histogram for all channels.
24555 @item separate
24556 Use separate histogram for each channel.
24557 @end table
24558 Default is @code{single}.
24559
24560 @item rate, r
24561 Set frame rate, expressed as number of frames per second. Default
24562 value is "25".
24563
24564 @item size, s
24565 Specify the video size for the output. For the syntax of this option, check the
24566 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24567 Default value is @code{hd720}.
24568
24569 @item scale
24570 Set display scale.
24571
24572 It accepts the following values:
24573 @table @samp
24574 @item log
24575 logarithmic
24576 @item sqrt
24577 square root
24578 @item cbrt
24579 cubic root
24580 @item lin
24581 linear
24582 @item rlog
24583 reverse logarithmic
24584 @end table
24585 Default is @code{log}.
24586
24587 @item ascale
24588 Set amplitude scale.
24589
24590 It accepts the following values:
24591 @table @samp
24592 @item log
24593 logarithmic
24594 @item lin
24595 linear
24596 @end table
24597 Default is @code{log}.
24598
24599 @item acount
24600 Set how much frames to accumulate in histogram.
24601 Default is 1. Setting this to -1 accumulates all frames.
24602
24603 @item rheight
24604 Set histogram ratio of window height.
24605
24606 @item slide
24607 Set sonogram sliding.
24608
24609 It accepts the following values:
24610 @table @samp
24611 @item replace
24612 replace old rows with new ones.
24613 @item scroll
24614 scroll from top to bottom.
24615 @end table
24616 Default is @code{replace}.
24617 @end table
24618
24619 @section aphasemeter
24620
24621 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24622 representing mean phase of current audio frame. A video output can also be produced and is
24623 enabled by default. The audio is passed through as first output.
24624
24625 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24626 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24627 and @code{1} means channels are in phase.
24628
24629 The filter accepts the following options, all related to its video output:
24630
24631 @table @option
24632 @item rate, r
24633 Set the output frame rate. Default value is @code{25}.
24634
24635 @item size, s
24636 Set the video size for the output. For the syntax of this option, check the
24637 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24638 Default value is @code{800x400}.
24639
24640 @item rc
24641 @item gc
24642 @item bc
24643 Specify the red, green, blue contrast. Default values are @code{2},
24644 @code{7} and @code{1}.
24645 Allowed range is @code{[0, 255]}.
24646
24647 @item mpc
24648 Set color which will be used for drawing median phase. If color is
24649 @code{none} which is default, no median phase value will be drawn.
24650
24651 @item video
24652 Enable video output. Default is enabled.
24653 @end table
24654
24655 @subsection phasing detection
24656
24657 The filter also detects out of phase and mono sequences in stereo streams.
24658 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24659
24660 The filter accepts the following options for this detection:
24661
24662 @table @option
24663 @item phasing
24664 Enable mono and out of phase detection. Default is disabled.
24665
24666 @item tolerance, t
24667 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24668 Allowed range is @code{[0, 1]}.
24669
24670 @item angle, a
24671 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24672 Allowed range is @code{[90, 180]}.
24673
24674 @item duration, d
24675 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24676 @end table
24677
24678 @subsection Examples
24679
24680 @itemize
24681 @item
24682 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24683 @example
24684 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24685 @end example
24686 @end itemize
24687
24688 @section avectorscope
24689
24690 Convert input audio to a video output, representing the audio vector
24691 scope.
24692
24693 The filter is used to measure the difference between channels of stereo
24694 audio stream. A monaural signal, consisting of identical left and right
24695 signal, results in straight vertical line. Any stereo separation is visible
24696 as a deviation from this line, creating a Lissajous figure.
24697 If the straight (or deviation from it) but horizontal line appears this
24698 indicates that the left and right channels are out of phase.
24699
24700 The filter accepts the following options:
24701
24702 @table @option
24703 @item mode, m
24704 Set the vectorscope mode.
24705
24706 Available values are:
24707 @table @samp
24708 @item lissajous
24709 Lissajous rotated by 45 degrees.
24710
24711 @item lissajous_xy
24712 Same as above but not rotated.
24713
24714 @item polar
24715 Shape resembling half of circle.
24716 @end table
24717
24718 Default value is @samp{lissajous}.
24719
24720 @item size, s
24721 Set the video size for the output. For the syntax of this option, check the
24722 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24723 Default value is @code{400x400}.
24724
24725 @item rate, r
24726 Set the output frame rate. Default value is @code{25}.
24727
24728 @item rc
24729 @item gc
24730 @item bc
24731 @item ac
24732 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24733 @code{160}, @code{80} and @code{255}.
24734 Allowed range is @code{[0, 255]}.
24735
24736 @item rf
24737 @item gf
24738 @item bf
24739 @item af
24740 Specify the red, green, blue and alpha fade. Default values are @code{15},
24741 @code{10}, @code{5} and @code{5}.
24742 Allowed range is @code{[0, 255]}.
24743
24744 @item zoom
24745 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24746 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24747
24748 @item draw
24749 Set the vectorscope drawing mode.
24750
24751 Available values are:
24752 @table @samp
24753 @item dot
24754 Draw dot for each sample.
24755
24756 @item line
24757 Draw line between previous and current sample.
24758 @end table
24759
24760 Default value is @samp{dot}.
24761
24762 @item scale
24763 Specify amplitude scale of audio samples.
24764
24765 Available values are:
24766 @table @samp
24767 @item lin
24768 Linear.
24769
24770 @item sqrt
24771 Square root.
24772
24773 @item cbrt
24774 Cubic root.
24775
24776 @item log
24777 Logarithmic.
24778 @end table
24779
24780 @item swap
24781 Swap left channel axis with right channel axis.
24782
24783 @item mirror
24784 Mirror axis.
24785
24786 @table @samp
24787 @item none
24788 No mirror.
24789
24790 @item x
24791 Mirror only x axis.
24792
24793 @item y
24794 Mirror only y axis.
24795
24796 @item xy
24797 Mirror both axis.
24798 @end table
24799
24800 @end table
24801
24802 @subsection Examples
24803
24804 @itemize
24805 @item
24806 Complete example using @command{ffplay}:
24807 @example
24808 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24809              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24810 @end example
24811 @end itemize
24812
24813 @section bench, abench
24814
24815 Benchmark part of a filtergraph.
24816
24817 The filter accepts the following options:
24818
24819 @table @option
24820 @item action
24821 Start or stop a timer.
24822
24823 Available values are:
24824 @table @samp
24825 @item start
24826 Get the current time, set it as frame metadata (using the key
24827 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24828
24829 @item stop
24830 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24831 the input frame metadata to get the time difference. Time difference, average,
24832 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24833 @code{min}) are then printed. The timestamps are expressed in seconds.
24834 @end table
24835 @end table
24836
24837 @subsection Examples
24838
24839 @itemize
24840 @item
24841 Benchmark @ref{selectivecolor} filter:
24842 @example
24843 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24844 @end example
24845 @end itemize
24846
24847 @section concat
24848
24849 Concatenate audio and video streams, joining them together one after the
24850 other.
24851
24852 The filter works on segments of synchronized video and audio streams. All
24853 segments must have the same number of streams of each type, and that will
24854 also be the number of streams at output.
24855
24856 The filter accepts the following options:
24857
24858 @table @option
24859
24860 @item n
24861 Set the number of segments. Default is 2.
24862
24863 @item v
24864 Set the number of output video streams, that is also the number of video
24865 streams in each segment. Default is 1.
24866
24867 @item a
24868 Set the number of output audio streams, that is also the number of audio
24869 streams in each segment. Default is 0.
24870
24871 @item unsafe
24872 Activate unsafe mode: do not fail if segments have a different format.
24873
24874 @end table
24875
24876 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24877 @var{a} audio outputs.
24878
24879 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24880 segment, in the same order as the outputs, then the inputs for the second
24881 segment, etc.
24882
24883 Related streams do not always have exactly the same duration, for various
24884 reasons including codec frame size or sloppy authoring. For that reason,
24885 related synchronized streams (e.g. a video and its audio track) should be
24886 concatenated at once. The concat filter will use the duration of the longest
24887 stream in each segment (except the last one), and if necessary pad shorter
24888 audio streams with silence.
24889
24890 For this filter to work correctly, all segments must start at timestamp 0.
24891
24892 All corresponding streams must have the same parameters in all segments; the
24893 filtering system will automatically select a common pixel format for video
24894 streams, and a common sample format, sample rate and channel layout for
24895 audio streams, but other settings, such as resolution, must be converted
24896 explicitly by the user.
24897
24898 Different frame rates are acceptable but will result in variable frame rate
24899 at output; be sure to configure the output file to handle it.
24900
24901 @subsection Examples
24902
24903 @itemize
24904 @item
24905 Concatenate an opening, an episode and an ending, all in bilingual version
24906 (video in stream 0, audio in streams 1 and 2):
24907 @example
24908 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24909   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24910    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24911   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24912 @end example
24913
24914 @item
24915 Concatenate two parts, handling audio and video separately, using the
24916 (a)movie sources, and adjusting the resolution:
24917 @example
24918 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24919 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24920 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24921 @end example
24922 Note that a desync will happen at the stitch if the audio and video streams
24923 do not have exactly the same duration in the first file.
24924
24925 @end itemize
24926
24927 @subsection Commands
24928
24929 This filter supports the following commands:
24930 @table @option
24931 @item next
24932 Close the current segment and step to the next one
24933 @end table
24934
24935 @anchor{ebur128}
24936 @section ebur128
24937
24938 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24939 level. By default, it logs a message at a frequency of 10Hz with the
24940 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24941 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24942
24943 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24944 sample format is double-precision floating point. The input stream will be converted to
24945 this specification, if needed. Users may need to insert aformat and/or aresample filters
24946 after this filter to obtain the original parameters.
24947
24948 The filter also has a video output (see the @var{video} option) with a real
24949 time graph to observe the loudness evolution. The graphic contains the logged
24950 message mentioned above, so it is not printed anymore when this option is set,
24951 unless the verbose logging is set. The main graphing area contains the
24952 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24953 the momentary loudness (400 milliseconds), but can optionally be configured
24954 to instead display short-term loudness (see @var{gauge}).
24955
24956 The green area marks a  +/- 1LU target range around the target loudness
24957 (-23LUFS by default, unless modified through @var{target}).
24958
24959 More information about the Loudness Recommendation EBU R128 on
24960 @url{http://tech.ebu.ch/loudness}.
24961
24962 The filter accepts the following options:
24963
24964 @table @option
24965
24966 @item video
24967 Activate the video output. The audio stream is passed unchanged whether this
24968 option is set or no. The video stream will be the first output stream if
24969 activated. Default is @code{0}.
24970
24971 @item size
24972 Set the video size. This option is for video only. For the syntax of this
24973 option, check the
24974 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24975 Default and minimum resolution is @code{640x480}.
24976
24977 @item meter
24978 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24979 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24980 other integer value between this range is allowed.
24981
24982 @item metadata
24983 Set metadata injection. If set to @code{1}, the audio input will be segmented
24984 into 100ms output frames, each of them containing various loudness information
24985 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24986
24987 Default is @code{0}.
24988
24989 @item framelog
24990 Force the frame logging level.
24991
24992 Available values are:
24993 @table @samp
24994 @item info
24995 information logging level
24996 @item verbose
24997 verbose logging level
24998 @end table
24999
25000 By default, the logging level is set to @var{info}. If the @option{video} or
25001 the @option{metadata} options are set, it switches to @var{verbose}.
25002
25003 @item peak
25004 Set peak mode(s).
25005
25006 Available modes can be cumulated (the option is a @code{flag} type). Possible
25007 values are:
25008 @table @samp
25009 @item none
25010 Disable any peak mode (default).
25011 @item sample
25012 Enable sample-peak mode.
25013
25014 Simple peak mode looking for the higher sample value. It logs a message
25015 for sample-peak (identified by @code{SPK}).
25016 @item true
25017 Enable true-peak mode.
25018
25019 If enabled, the peak lookup is done on an over-sampled version of the input
25020 stream for better peak accuracy. It logs a message for true-peak.
25021 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
25022 This mode requires a build with @code{libswresample}.
25023 @end table
25024
25025 @item dualmono
25026 Treat mono input files as "dual mono". If a mono file is intended for playback
25027 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
25028 If set to @code{true}, this option will compensate for this effect.
25029 Multi-channel input files are not affected by this option.
25030
25031 @item panlaw
25032 Set a specific pan law to be used for the measurement of dual mono files.
25033 This parameter is optional, and has a default value of -3.01dB.
25034
25035 @item target
25036 Set a specific target level (in LUFS) used as relative zero in the visualization.
25037 This parameter is optional and has a default value of -23LUFS as specified
25038 by EBU R128. However, material published online may prefer a level of -16LUFS
25039 (e.g. for use with podcasts or video platforms).
25040
25041 @item gauge
25042 Set the value displayed by the gauge. Valid values are @code{momentary} and s
25043 @code{shortterm}. By default the momentary value will be used, but in certain
25044 scenarios it may be more useful to observe the short term value instead (e.g.
25045 live mixing).
25046
25047 @item scale
25048 Sets the display scale for the loudness. Valid parameters are @code{absolute}
25049 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
25050 video output, not the summary or continuous log output.
25051 @end table
25052
25053 @subsection Examples
25054
25055 @itemize
25056 @item
25057 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
25058 @example
25059 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
25060 @end example
25061
25062 @item
25063 Run an analysis with @command{ffmpeg}:
25064 @example
25065 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
25066 @end example
25067 @end itemize
25068
25069 @section interleave, ainterleave
25070
25071 Temporally interleave frames from several inputs.
25072
25073 @code{interleave} works with video inputs, @code{ainterleave} with audio.
25074
25075 These filters read frames from several inputs and send the oldest
25076 queued frame to the output.
25077
25078 Input streams must have well defined, monotonically increasing frame
25079 timestamp values.
25080
25081 In order to submit one frame to output, these filters need to enqueue
25082 at least one frame for each input, so they cannot work in case one
25083 input is not yet terminated and will not receive incoming frames.
25084
25085 For example consider the case when one input is a @code{select} filter
25086 which always drops input frames. The @code{interleave} filter will keep
25087 reading from that input, but it will never be able to send new frames
25088 to output until the input sends an end-of-stream signal.
25089
25090 Also, depending on inputs synchronization, the filters will drop
25091 frames in case one input receives more frames than the other ones, and
25092 the queue is already filled.
25093
25094 These filters accept the following options:
25095
25096 @table @option
25097 @item nb_inputs, n
25098 Set the number of different inputs, it is 2 by default.
25099
25100 @item duration
25101 How to determine the end-of-stream.
25102
25103 @table @option
25104 @item longest
25105 The duration of the longest input. (default)
25106
25107 @item shortest
25108 The duration of the shortest input.
25109
25110 @item first
25111 The duration of the first input.
25112 @end table
25113
25114 @end table
25115
25116 @subsection Examples
25117
25118 @itemize
25119 @item
25120 Interleave frames belonging to different streams using @command{ffmpeg}:
25121 @example
25122 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
25123 @end example
25124
25125 @item
25126 Add flickering blur effect:
25127 @example
25128 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
25129 @end example
25130 @end itemize
25131
25132 @section metadata, ametadata
25133
25134 Manipulate frame metadata.
25135
25136 This filter accepts the following options:
25137
25138 @table @option
25139 @item mode
25140 Set mode of operation of the filter.
25141
25142 Can be one of the following:
25143
25144 @table @samp
25145 @item select
25146 If both @code{value} and @code{key} is set, select frames
25147 which have such metadata. If only @code{key} is set, select
25148 every frame that has such key in metadata.
25149
25150 @item add
25151 Add new metadata @code{key} and @code{value}. If key is already available
25152 do nothing.
25153
25154 @item modify
25155 Modify value of already present key.
25156
25157 @item delete
25158 If @code{value} is set, delete only keys that have such value.
25159 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
25160 the frame.
25161
25162 @item print
25163 Print key and its value if metadata was found. If @code{key} is not set print all
25164 metadata values available in frame.
25165 @end table
25166
25167 @item key
25168 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
25169
25170 @item value
25171 Set metadata value which will be used. This option is mandatory for
25172 @code{modify} and @code{add} mode.
25173
25174 @item function
25175 Which function to use when comparing metadata value and @code{value}.
25176
25177 Can be one of following:
25178
25179 @table @samp
25180 @item same_str
25181 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
25182
25183 @item starts_with
25184 Values are interpreted as strings, returns true if metadata value starts with
25185 the @code{value} option string.
25186
25187 @item less
25188 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
25189
25190 @item equal
25191 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
25192
25193 @item greater
25194 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
25195
25196 @item expr
25197 Values are interpreted as floats, returns true if expression from option @code{expr}
25198 evaluates to true.
25199
25200 @item ends_with
25201 Values are interpreted as strings, returns true if metadata value ends with
25202 the @code{value} option string.
25203 @end table
25204
25205 @item expr
25206 Set expression which is used when @code{function} is set to @code{expr}.
25207 The expression is evaluated through the eval API and can contain the following
25208 constants:
25209
25210 @table @option
25211 @item VALUE1
25212 Float representation of @code{value} from metadata key.
25213
25214 @item VALUE2
25215 Float representation of @code{value} as supplied by user in @code{value} option.
25216 @end table
25217
25218 @item file
25219 If specified in @code{print} mode, output is written to the named file. Instead of
25220 plain filename any writable url can be specified. Filename ``-'' is a shorthand
25221 for standard output. If @code{file} option is not set, output is written to the log
25222 with AV_LOG_INFO loglevel.
25223
25224 @item direct
25225 Reduces buffering in print mode when output is written to a URL set using @var{file}.
25226
25227 @end table
25228
25229 @subsection Examples
25230
25231 @itemize
25232 @item
25233 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
25234 between 0 and 1.
25235 @example
25236 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
25237 @end example
25238 @item
25239 Print silencedetect output to file @file{metadata.txt}.
25240 @example
25241 silencedetect,ametadata=mode=print:file=metadata.txt
25242 @end example
25243 @item
25244 Direct all metadata to a pipe with file descriptor 4.
25245 @example
25246 metadata=mode=print:file='pipe\:4'
25247 @end example
25248 @end itemize
25249
25250 @section perms, aperms
25251
25252 Set read/write permissions for the output frames.
25253
25254 These filters are mainly aimed at developers to test direct path in the
25255 following filter in the filtergraph.
25256
25257 The filters accept the following options:
25258
25259 @table @option
25260 @item mode
25261 Select the permissions mode.
25262
25263 It accepts the following values:
25264 @table @samp
25265 @item none
25266 Do nothing. This is the default.
25267 @item ro
25268 Set all the output frames read-only.
25269 @item rw
25270 Set all the output frames directly writable.
25271 @item toggle
25272 Make the frame read-only if writable, and writable if read-only.
25273 @item random
25274 Set each output frame read-only or writable randomly.
25275 @end table
25276
25277 @item seed
25278 Set the seed for the @var{random} mode, must be an integer included between
25279 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
25280 @code{-1}, the filter will try to use a good random seed on a best effort
25281 basis.
25282 @end table
25283
25284 Note: in case of auto-inserted filter between the permission filter and the
25285 following one, the permission might not be received as expected in that
25286 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
25287 perms/aperms filter can avoid this problem.
25288
25289 @section realtime, arealtime
25290
25291 Slow down filtering to match real time approximately.
25292
25293 These filters will pause the filtering for a variable amount of time to
25294 match the output rate with the input timestamps.
25295 They are similar to the @option{re} option to @code{ffmpeg}.
25296
25297 They accept the following options:
25298
25299 @table @option
25300 @item limit
25301 Time limit for the pauses. Any pause longer than that will be considered
25302 a timestamp discontinuity and reset the timer. Default is 2 seconds.
25303 @item speed
25304 Speed factor for processing. The value must be a float larger than zero.
25305 Values larger than 1.0 will result in faster than realtime processing,
25306 smaller will slow processing down. The @var{limit} is automatically adapted
25307 accordingly. Default is 1.0.
25308
25309 A processing speed faster than what is possible without these filters cannot
25310 be achieved.
25311 @end table
25312
25313 @anchor{select}
25314 @section select, aselect
25315
25316 Select frames to pass in output.
25317
25318 This filter accepts the following options:
25319
25320 @table @option
25321
25322 @item expr, e
25323 Set expression, which is evaluated for each input frame.
25324
25325 If the expression is evaluated to zero, the frame is discarded.
25326
25327 If the evaluation result is negative or NaN, the frame is sent to the
25328 first output; otherwise it is sent to the output with index
25329 @code{ceil(val)-1}, assuming that the input index starts from 0.
25330
25331 For example a value of @code{1.2} corresponds to the output with index
25332 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
25333
25334 @item outputs, n
25335 Set the number of outputs. The output to which to send the selected
25336 frame is based on the result of the evaluation. Default value is 1.
25337 @end table
25338
25339 The expression can contain the following constants:
25340
25341 @table @option
25342 @item n
25343 The (sequential) number of the filtered frame, starting from 0.
25344
25345 @item selected_n
25346 The (sequential) number of the selected frame, starting from 0.
25347
25348 @item prev_selected_n
25349 The sequential number of the last selected frame. It's NAN if undefined.
25350
25351 @item TB
25352 The timebase of the input timestamps.
25353
25354 @item pts
25355 The PTS (Presentation TimeStamp) of the filtered video frame,
25356 expressed in @var{TB} units. It's NAN if undefined.
25357
25358 @item t
25359 The PTS of the filtered video frame,
25360 expressed in seconds. It's NAN if undefined.
25361
25362 @item prev_pts
25363 The PTS of the previously filtered video frame. It's NAN if undefined.
25364
25365 @item prev_selected_pts
25366 The PTS of the last previously filtered video frame. It's NAN if undefined.
25367
25368 @item prev_selected_t
25369 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
25370
25371 @item start_pts
25372 The PTS of the first video frame in the video. It's NAN if undefined.
25373
25374 @item start_t
25375 The time of the first video frame in the video. It's NAN if undefined.
25376
25377 @item pict_type @emph{(video only)}
25378 The type of the filtered frame. It can assume one of the following
25379 values:
25380 @table @option
25381 @item I
25382 @item P
25383 @item B
25384 @item S
25385 @item SI
25386 @item SP
25387 @item BI
25388 @end table
25389
25390 @item interlace_type @emph{(video only)}
25391 The frame interlace type. It can assume one of the following values:
25392 @table @option
25393 @item PROGRESSIVE
25394 The frame is progressive (not interlaced).
25395 @item TOPFIRST
25396 The frame is top-field-first.
25397 @item BOTTOMFIRST
25398 The frame is bottom-field-first.
25399 @end table
25400
25401 @item consumed_sample_n @emph{(audio only)}
25402 the number of selected samples before the current frame
25403
25404 @item samples_n @emph{(audio only)}
25405 the number of samples in the current frame
25406
25407 @item sample_rate @emph{(audio only)}
25408 the input sample rate
25409
25410 @item key
25411 This is 1 if the filtered frame is a key-frame, 0 otherwise.
25412
25413 @item pos
25414 the position in the file of the filtered frame, -1 if the information
25415 is not available (e.g. for synthetic video)
25416
25417 @item scene @emph{(video only)}
25418 value between 0 and 1 to indicate a new scene; a low value reflects a low
25419 probability for the current frame to introduce a new scene, while a higher
25420 value means the current frame is more likely to be one (see the example below)
25421
25422 @item concatdec_select
25423 The concat demuxer can select only part of a concat input file by setting an
25424 inpoint and an outpoint, but the output packets may not be entirely contained
25425 in the selected interval. By using this variable, it is possible to skip frames
25426 generated by the concat demuxer which are not exactly contained in the selected
25427 interval.
25428
25429 This works by comparing the frame pts against the @var{lavf.concat.start_time}
25430 and the @var{lavf.concat.duration} packet metadata values which are also
25431 present in the decoded frames.
25432
25433 The @var{concatdec_select} variable is -1 if the frame pts is at least
25434 start_time and either the duration metadata is missing or the frame pts is less
25435 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
25436 missing.
25437
25438 That basically means that an input frame is selected if its pts is within the
25439 interval set by the concat demuxer.
25440
25441 @end table
25442
25443 The default value of the select expression is "1".
25444
25445 @subsection Examples
25446
25447 @itemize
25448 @item
25449 Select all frames in input:
25450 @example
25451 select
25452 @end example
25453
25454 The example above is the same as:
25455 @example
25456 select=1
25457 @end example
25458
25459 @item
25460 Skip all frames:
25461 @example
25462 select=0
25463 @end example
25464
25465 @item
25466 Select only I-frames:
25467 @example
25468 select='eq(pict_type\,I)'
25469 @end example
25470
25471 @item
25472 Select one frame every 100:
25473 @example
25474 select='not(mod(n\,100))'
25475 @end example
25476
25477 @item
25478 Select only frames contained in the 10-20 time interval:
25479 @example
25480 select=between(t\,10\,20)
25481 @end example
25482
25483 @item
25484 Select only I-frames contained in the 10-20 time interval:
25485 @example
25486 select=between(t\,10\,20)*eq(pict_type\,I)
25487 @end example
25488
25489 @item
25490 Select frames with a minimum distance of 10 seconds:
25491 @example
25492 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
25493 @end example
25494
25495 @item
25496 Use aselect to select only audio frames with samples number > 100:
25497 @example
25498 aselect='gt(samples_n\,100)'
25499 @end example
25500
25501 @item
25502 Create a mosaic of the first scenes:
25503 @example
25504 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
25505 @end example
25506
25507 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
25508 choice.
25509
25510 @item
25511 Send even and odd frames to separate outputs, and compose them:
25512 @example
25513 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
25514 @end example
25515
25516 @item
25517 Select useful frames from an ffconcat file which is using inpoints and
25518 outpoints but where the source files are not intra frame only.
25519 @example
25520 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
25521 @end example
25522 @end itemize
25523
25524 @section sendcmd, asendcmd
25525
25526 Send commands to filters in the filtergraph.
25527
25528 These filters read commands to be sent to other filters in the
25529 filtergraph.
25530
25531 @code{sendcmd} must be inserted between two video filters,
25532 @code{asendcmd} must be inserted between two audio filters, but apart
25533 from that they act the same way.
25534
25535 The specification of commands can be provided in the filter arguments
25536 with the @var{commands} option, or in a file specified by the
25537 @var{filename} option.
25538
25539 These filters accept the following options:
25540 @table @option
25541 @item commands, c
25542 Set the commands to be read and sent to the other filters.
25543 @item filename, f
25544 Set the filename of the commands to be read and sent to the other
25545 filters.
25546 @end table
25547
25548 @subsection Commands syntax
25549
25550 A commands description consists of a sequence of interval
25551 specifications, comprising a list of commands to be executed when a
25552 particular event related to that interval occurs. The occurring event
25553 is typically the current frame time entering or leaving a given time
25554 interval.
25555
25556 An interval is specified by the following syntax:
25557 @example
25558 @var{START}[-@var{END}] @var{COMMANDS};
25559 @end example
25560
25561 The time interval is specified by the @var{START} and @var{END} times.
25562 @var{END} is optional and defaults to the maximum time.
25563
25564 The current frame time is considered within the specified interval if
25565 it is included in the interval [@var{START}, @var{END}), that is when
25566 the time is greater or equal to @var{START} and is lesser than
25567 @var{END}.
25568
25569 @var{COMMANDS} consists of a sequence of one or more command
25570 specifications, separated by ",", relating to that interval.  The
25571 syntax of a command specification is given by:
25572 @example
25573 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25574 @end example
25575
25576 @var{FLAGS} is optional and specifies the type of events relating to
25577 the time interval which enable sending the specified command, and must
25578 be a non-null sequence of identifier flags separated by "+" or "|" and
25579 enclosed between "[" and "]".
25580
25581 The following flags are recognized:
25582 @table @option
25583 @item enter
25584 The command is sent when the current frame timestamp enters the
25585 specified interval. In other words, the command is sent when the
25586 previous frame timestamp was not in the given interval, and the
25587 current is.
25588
25589 @item leave
25590 The command is sent when the current frame timestamp leaves the
25591 specified interval. In other words, the command is sent when the
25592 previous frame timestamp was in the given interval, and the
25593 current is not.
25594
25595 @item expr
25596 The command @var{ARG} is interpreted as expression and result of
25597 expression is passed as @var{ARG}.
25598
25599 The expression is evaluated through the eval API and can contain the following
25600 constants:
25601
25602 @table @option
25603 @item POS
25604 Original position in the file of the frame, or undefined if undefined
25605 for the current frame.
25606
25607 @item PTS
25608 The presentation timestamp in input.
25609
25610 @item N
25611 The count of the input frame for video or audio, starting from 0.
25612
25613 @item T
25614 The time in seconds of the current frame.
25615
25616 @item TS
25617 The start time in seconds of the current command interval.
25618
25619 @item TE
25620 The end time in seconds of the current command interval.
25621
25622 @item TI
25623 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25624 @end table
25625
25626 @end table
25627
25628 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25629 assumed.
25630
25631 @var{TARGET} specifies the target of the command, usually the name of
25632 the filter class or a specific filter instance name.
25633
25634 @var{COMMAND} specifies the name of the command for the target filter.
25635
25636 @var{ARG} is optional and specifies the optional list of argument for
25637 the given @var{COMMAND}.
25638
25639 Between one interval specification and another, whitespaces, or
25640 sequences of characters starting with @code{#} until the end of line,
25641 are ignored and can be used to annotate comments.
25642
25643 A simplified BNF description of the commands specification syntax
25644 follows:
25645 @example
25646 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25647 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25648 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25649 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25650 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25651 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25652 @end example
25653
25654 @subsection Examples
25655
25656 @itemize
25657 @item
25658 Specify audio tempo change at second 4:
25659 @example
25660 asendcmd=c='4.0 atempo tempo 1.5',atempo
25661 @end example
25662
25663 @item
25664 Target a specific filter instance:
25665 @example
25666 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25667 @end example
25668
25669 @item
25670 Specify a list of drawtext and hue commands in a file.
25671 @example
25672 # show text in the interval 5-10
25673 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25674          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25675
25676 # desaturate the image in the interval 15-20
25677 15.0-20.0 [enter] hue s 0,
25678           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25679           [leave] hue s 1,
25680           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25681
25682 # apply an exponential saturation fade-out effect, starting from time 25
25683 25 [enter] hue s exp(25-t)
25684 @end example
25685
25686 A filtergraph allowing to read and process the above command list
25687 stored in a file @file{test.cmd}, can be specified with:
25688 @example
25689 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25690 @end example
25691 @end itemize
25692
25693 @anchor{setpts}
25694 @section setpts, asetpts
25695
25696 Change the PTS (presentation timestamp) of the input frames.
25697
25698 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25699
25700 This filter accepts the following options:
25701
25702 @table @option
25703
25704 @item expr
25705 The expression which is evaluated for each frame to construct its timestamp.
25706
25707 @end table
25708
25709 The expression is evaluated through the eval API and can contain the following
25710 constants:
25711
25712 @table @option
25713 @item FRAME_RATE, FR
25714 frame rate, only defined for constant frame-rate video
25715
25716 @item PTS
25717 The presentation timestamp in input
25718
25719 @item N
25720 The count of the input frame for video or the number of consumed samples,
25721 not including the current frame for audio, starting from 0.
25722
25723 @item NB_CONSUMED_SAMPLES
25724 The number of consumed samples, not including the current frame (only
25725 audio)
25726
25727 @item NB_SAMPLES, S
25728 The number of samples in the current frame (only audio)
25729
25730 @item SAMPLE_RATE, SR
25731 The audio sample rate.
25732
25733 @item STARTPTS
25734 The PTS of the first frame.
25735
25736 @item STARTT
25737 the time in seconds of the first frame
25738
25739 @item INTERLACED
25740 State whether the current frame is interlaced.
25741
25742 @item T
25743 the time in seconds of the current frame
25744
25745 @item POS
25746 original position in the file of the frame, or undefined if undefined
25747 for the current frame
25748
25749 @item PREV_INPTS
25750 The previous input PTS.
25751
25752 @item PREV_INT
25753 previous input time in seconds
25754
25755 @item PREV_OUTPTS
25756 The previous output PTS.
25757
25758 @item PREV_OUTT
25759 previous output time in seconds
25760
25761 @item RTCTIME
25762 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25763 instead.
25764
25765 @item RTCSTART
25766 The wallclock (RTC) time at the start of the movie in microseconds.
25767
25768 @item TB
25769 The timebase of the input timestamps.
25770
25771 @end table
25772
25773 @subsection Examples
25774
25775 @itemize
25776 @item
25777 Start counting PTS from zero
25778 @example
25779 setpts=PTS-STARTPTS
25780 @end example
25781
25782 @item
25783 Apply fast motion effect:
25784 @example
25785 setpts=0.5*PTS
25786 @end example
25787
25788 @item
25789 Apply slow motion effect:
25790 @example
25791 setpts=2.0*PTS
25792 @end example
25793
25794 @item
25795 Set fixed rate of 25 frames per second:
25796 @example
25797 setpts=N/(25*TB)
25798 @end example
25799
25800 @item
25801 Set fixed rate 25 fps with some jitter:
25802 @example
25803 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25804 @end example
25805
25806 @item
25807 Apply an offset of 10 seconds to the input PTS:
25808 @example
25809 setpts=PTS+10/TB
25810 @end example
25811
25812 @item
25813 Generate timestamps from a "live source" and rebase onto the current timebase:
25814 @example
25815 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25816 @end example
25817
25818 @item
25819 Generate timestamps by counting samples:
25820 @example
25821 asetpts=N/SR/TB
25822 @end example
25823
25824 @end itemize
25825
25826 @section setrange
25827
25828 Force color range for the output video frame.
25829
25830 The @code{setrange} filter marks the color range property for the
25831 output frames. It does not change the input frame, but only sets the
25832 corresponding property, which affects how the frame is treated by
25833 following filters.
25834
25835 The filter accepts the following options:
25836
25837 @table @option
25838
25839 @item range
25840 Available values are:
25841
25842 @table @samp
25843 @item auto
25844 Keep the same color range property.
25845
25846 @item unspecified, unknown
25847 Set the color range as unspecified.
25848
25849 @item limited, tv, mpeg
25850 Set the color range as limited.
25851
25852 @item full, pc, jpeg
25853 Set the color range as full.
25854 @end table
25855 @end table
25856
25857 @section settb, asettb
25858
25859 Set the timebase to use for the output frames timestamps.
25860 It is mainly useful for testing timebase configuration.
25861
25862 It accepts the following parameters:
25863
25864 @table @option
25865
25866 @item expr, tb
25867 The expression which is evaluated into the output timebase.
25868
25869 @end table
25870
25871 The value for @option{tb} is an arithmetic expression representing a
25872 rational. The expression can contain the constants "AVTB" (the default
25873 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25874 audio only). Default value is "intb".
25875
25876 @subsection Examples
25877
25878 @itemize
25879 @item
25880 Set the timebase to 1/25:
25881 @example
25882 settb=expr=1/25
25883 @end example
25884
25885 @item
25886 Set the timebase to 1/10:
25887 @example
25888 settb=expr=0.1
25889 @end example
25890
25891 @item
25892 Set the timebase to 1001/1000:
25893 @example
25894 settb=1+0.001
25895 @end example
25896
25897 @item
25898 Set the timebase to 2*intb:
25899 @example
25900 settb=2*intb
25901 @end example
25902
25903 @item
25904 Set the default timebase value:
25905 @example
25906 settb=AVTB
25907 @end example
25908 @end itemize
25909
25910 @section showcqt
25911 Convert input audio to a video output representing frequency spectrum
25912 logarithmically using Brown-Puckette constant Q transform algorithm with
25913 direct frequency domain coefficient calculation (but the transform itself
25914 is not really constant Q, instead the Q factor is actually variable/clamped),
25915 with musical tone scale, from E0 to D#10.
25916
25917 The filter accepts the following options:
25918
25919 @table @option
25920 @item size, s
25921 Specify the video size for the output. It must be even. For the syntax of this option,
25922 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25923 Default value is @code{1920x1080}.
25924
25925 @item fps, rate, r
25926 Set the output frame rate. Default value is @code{25}.
25927
25928 @item bar_h
25929 Set the bargraph height. It must be even. Default value is @code{-1} which
25930 computes the bargraph height automatically.
25931
25932 @item axis_h
25933 Set the axis height. It must be even. Default value is @code{-1} which computes
25934 the axis height automatically.
25935
25936 @item sono_h
25937 Set the sonogram height. It must be even. Default value is @code{-1} which
25938 computes the sonogram height automatically.
25939
25940 @item fullhd
25941 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25942 instead. Default value is @code{1}.
25943
25944 @item sono_v, volume
25945 Specify the sonogram volume expression. It can contain variables:
25946 @table @option
25947 @item bar_v
25948 the @var{bar_v} evaluated expression
25949 @item frequency, freq, f
25950 the frequency where it is evaluated
25951 @item timeclamp, tc
25952 the value of @var{timeclamp} option
25953 @end table
25954 and functions:
25955 @table @option
25956 @item a_weighting(f)
25957 A-weighting of equal loudness
25958 @item b_weighting(f)
25959 B-weighting of equal loudness
25960 @item c_weighting(f)
25961 C-weighting of equal loudness.
25962 @end table
25963 Default value is @code{16}.
25964
25965 @item bar_v, volume2
25966 Specify the bargraph volume expression. It can contain variables:
25967 @table @option
25968 @item sono_v
25969 the @var{sono_v} evaluated expression
25970 @item frequency, freq, f
25971 the frequency where it is evaluated
25972 @item timeclamp, tc
25973 the value of @var{timeclamp} option
25974 @end table
25975 and functions:
25976 @table @option
25977 @item a_weighting(f)
25978 A-weighting of equal loudness
25979 @item b_weighting(f)
25980 B-weighting of equal loudness
25981 @item c_weighting(f)
25982 C-weighting of equal loudness.
25983 @end table
25984 Default value is @code{sono_v}.
25985
25986 @item sono_g, gamma
25987 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25988 higher gamma makes the spectrum having more range. Default value is @code{3}.
25989 Acceptable range is @code{[1, 7]}.
25990
25991 @item bar_g, gamma2
25992 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25993 @code{[1, 7]}.
25994
25995 @item bar_t
25996 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25997 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25998
25999 @item timeclamp, tc
26000 Specify the transform timeclamp. At low frequency, there is trade-off between
26001 accuracy in time domain and frequency domain. If timeclamp is lower,
26002 event in time domain is represented more accurately (such as fast bass drum),
26003 otherwise event in frequency domain is represented more accurately
26004 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
26005
26006 @item attack
26007 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
26008 limits future samples by applying asymmetric windowing in time domain, useful
26009 when low latency is required. Accepted range is @code{[0, 1]}.
26010
26011 @item basefreq
26012 Specify the transform base frequency. Default value is @code{20.01523126408007475},
26013 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
26014
26015 @item endfreq
26016 Specify the transform end frequency. Default value is @code{20495.59681441799654},
26017 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
26018
26019 @item coeffclamp
26020 This option is deprecated and ignored.
26021
26022 @item tlength
26023 Specify the transform length in time domain. Use this option to control accuracy
26024 trade-off between time domain and frequency domain at every frequency sample.
26025 It can contain variables:
26026 @table @option
26027 @item frequency, freq, f
26028 the frequency where it is evaluated
26029 @item timeclamp, tc
26030 the value of @var{timeclamp} option.
26031 @end table
26032 Default value is @code{384*tc/(384+tc*f)}.
26033
26034 @item count
26035 Specify the transform count for every video frame. Default value is @code{6}.
26036 Acceptable range is @code{[1, 30]}.
26037
26038 @item fcount
26039 Specify the transform count for every single pixel. Default value is @code{0},
26040 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
26041
26042 @item fontfile
26043 Specify font file for use with freetype to draw the axis. If not specified,
26044 use embedded font. Note that drawing with font file or embedded font is not
26045 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
26046 option instead.
26047
26048 @item font
26049 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
26050 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
26051 escaping.
26052
26053 @item fontcolor
26054 Specify font color expression. This is arithmetic expression that should return
26055 integer value 0xRRGGBB. It can contain variables:
26056 @table @option
26057 @item frequency, freq, f
26058 the frequency where it is evaluated
26059 @item timeclamp, tc
26060 the value of @var{timeclamp} option
26061 @end table
26062 and functions:
26063 @table @option
26064 @item midi(f)
26065 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
26066 @item r(x), g(x), b(x)
26067 red, green, and blue value of intensity x.
26068 @end table
26069 Default value is @code{st(0, (midi(f)-59.5)/12);
26070 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
26071 r(1-ld(1)) + b(ld(1))}.
26072
26073 @item axisfile
26074 Specify image file to draw the axis. This option override @var{fontfile} and
26075 @var{fontcolor} option.
26076
26077 @item axis, text
26078 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
26079 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
26080 Default value is @code{1}.
26081
26082 @item csp
26083 Set colorspace. The accepted values are:
26084 @table @samp
26085 @item unspecified
26086 Unspecified (default)
26087
26088 @item bt709
26089 BT.709
26090
26091 @item fcc
26092 FCC
26093
26094 @item bt470bg
26095 BT.470BG or BT.601-6 625
26096
26097 @item smpte170m
26098 SMPTE-170M or BT.601-6 525
26099
26100 @item smpte240m
26101 SMPTE-240M
26102
26103 @item bt2020ncl
26104 BT.2020 with non-constant luminance
26105
26106 @end table
26107
26108 @item cscheme
26109 Set spectrogram color scheme. This is list of floating point values with format
26110 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
26111 The default is @code{1|0.5|0|0|0.5|1}.
26112
26113 @end table
26114
26115 @subsection Examples
26116
26117 @itemize
26118 @item
26119 Playing audio while showing the spectrum:
26120 @example
26121 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
26122 @end example
26123
26124 @item
26125 Same as above, but with frame rate 30 fps:
26126 @example
26127 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
26128 @end example
26129
26130 @item
26131 Playing at 1280x720:
26132 @example
26133 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
26134 @end example
26135
26136 @item
26137 Disable sonogram display:
26138 @example
26139 sono_h=0
26140 @end example
26141
26142 @item
26143 A1 and its harmonics: A1, A2, (near)E3, A3:
26144 @example
26145 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),
26146                  asplit[a][out1]; [a] showcqt [out0]'
26147 @end example
26148
26149 @item
26150 Same as above, but with more accuracy in frequency domain:
26151 @example
26152 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),
26153                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
26154 @end example
26155
26156 @item
26157 Custom volume:
26158 @example
26159 bar_v=10:sono_v=bar_v*a_weighting(f)
26160 @end example
26161
26162 @item
26163 Custom gamma, now spectrum is linear to the amplitude.
26164 @example
26165 bar_g=2:sono_g=2
26166 @end example
26167
26168 @item
26169 Custom tlength equation:
26170 @example
26171 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)))'
26172 @end example
26173
26174 @item
26175 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
26176 @example
26177 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
26178 @end example
26179
26180 @item
26181 Custom font using fontconfig:
26182 @example
26183 font='Courier New,Monospace,mono|bold'
26184 @end example
26185
26186 @item
26187 Custom frequency range with custom axis using image file:
26188 @example
26189 axisfile=myaxis.png:basefreq=40:endfreq=10000
26190 @end example
26191 @end itemize
26192
26193 @section showfreqs
26194
26195 Convert input audio to video output representing the audio power spectrum.
26196 Audio amplitude is on Y-axis while frequency is on X-axis.
26197
26198 The filter accepts the following options:
26199
26200 @table @option
26201 @item size, s
26202 Specify size of video. For the syntax of this option, check the
26203 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26204 Default is @code{1024x512}.
26205
26206 @item mode
26207 Set display mode.
26208 This set how each frequency bin will be represented.
26209
26210 It accepts the following values:
26211 @table @samp
26212 @item line
26213 @item bar
26214 @item dot
26215 @end table
26216 Default is @code{bar}.
26217
26218 @item ascale
26219 Set amplitude scale.
26220
26221 It accepts the following values:
26222 @table @samp
26223 @item lin
26224 Linear scale.
26225
26226 @item sqrt
26227 Square root scale.
26228
26229 @item cbrt
26230 Cubic root scale.
26231
26232 @item log
26233 Logarithmic scale.
26234 @end table
26235 Default is @code{log}.
26236
26237 @item fscale
26238 Set frequency scale.
26239
26240 It accepts the following values:
26241 @table @samp
26242 @item lin
26243 Linear scale.
26244
26245 @item log
26246 Logarithmic scale.
26247
26248 @item rlog
26249 Reverse logarithmic scale.
26250 @end table
26251 Default is @code{lin}.
26252
26253 @item win_size
26254 Set window size. Allowed range is from 16 to 65536.
26255
26256 Default is @code{2048}
26257
26258 @item win_func
26259 Set windowing function.
26260
26261 It accepts the following values:
26262 @table @samp
26263 @item rect
26264 @item bartlett
26265 @item hanning
26266 @item hamming
26267 @item blackman
26268 @item welch
26269 @item flattop
26270 @item bharris
26271 @item bnuttall
26272 @item bhann
26273 @item sine
26274 @item nuttall
26275 @item lanczos
26276 @item gauss
26277 @item tukey
26278 @item dolph
26279 @item cauchy
26280 @item parzen
26281 @item poisson
26282 @item bohman
26283 @end table
26284 Default is @code{hanning}.
26285
26286 @item overlap
26287 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26288 which means optimal overlap for selected window function will be picked.
26289
26290 @item averaging
26291 Set time averaging. Setting this to 0 will display current maximal peaks.
26292 Default is @code{1}, which means time averaging is disabled.
26293
26294 @item colors
26295 Specify list of colors separated by space or by '|' which will be used to
26296 draw channel frequencies. Unrecognized or missing colors will be replaced
26297 by white color.
26298
26299 @item cmode
26300 Set channel display mode.
26301
26302 It accepts the following values:
26303 @table @samp
26304 @item combined
26305 @item separate
26306 @end table
26307 Default is @code{combined}.
26308
26309 @item minamp
26310 Set minimum amplitude used in @code{log} amplitude scaler.
26311
26312 @item data
26313 Set data display mode.
26314
26315 It accepts the following values:
26316 @table @samp
26317 @item magnitude
26318 @item phase
26319 @item delay
26320 @end table
26321 Default is @code{magnitude}.
26322 @end table
26323
26324 @section showspatial
26325
26326 Convert stereo input audio to a video output, representing the spatial relationship
26327 between two channels.
26328
26329 The filter accepts the following options:
26330
26331 @table @option
26332 @item size, s
26333 Specify the video size for the output. For the syntax of this option, check the
26334 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26335 Default value is @code{512x512}.
26336
26337 @item win_size
26338 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
26339
26340 @item win_func
26341 Set window function.
26342
26343 It accepts the following values:
26344 @table @samp
26345 @item rect
26346 @item bartlett
26347 @item hann
26348 @item hanning
26349 @item hamming
26350 @item blackman
26351 @item welch
26352 @item flattop
26353 @item bharris
26354 @item bnuttall
26355 @item bhann
26356 @item sine
26357 @item nuttall
26358 @item lanczos
26359 @item gauss
26360 @item tukey
26361 @item dolph
26362 @item cauchy
26363 @item parzen
26364 @item poisson
26365 @item bohman
26366 @end table
26367
26368 Default value is @code{hann}.
26369
26370 @item overlap
26371 Set ratio of overlap window. Default value is @code{0.5}.
26372 When value is @code{1} overlap is set to recommended size for specific
26373 window function currently used.
26374 @end table
26375
26376 @anchor{showspectrum}
26377 @section showspectrum
26378
26379 Convert input audio to a video output, representing the audio frequency
26380 spectrum.
26381
26382 The filter accepts the following options:
26383
26384 @table @option
26385 @item size, s
26386 Specify the video size for the output. For the syntax of this option, check the
26387 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26388 Default value is @code{640x512}.
26389
26390 @item slide
26391 Specify how the spectrum should slide along the window.
26392
26393 It accepts the following values:
26394 @table @samp
26395 @item replace
26396 the samples start again on the left when they reach the right
26397 @item scroll
26398 the samples scroll from right to left
26399 @item fullframe
26400 frames are only produced when the samples reach the right
26401 @item rscroll
26402 the samples scroll from left to right
26403 @end table
26404
26405 Default value is @code{replace}.
26406
26407 @item mode
26408 Specify display mode.
26409
26410 It accepts the following values:
26411 @table @samp
26412 @item combined
26413 all channels are displayed in the same row
26414 @item separate
26415 all channels are displayed in separate rows
26416 @end table
26417
26418 Default value is @samp{combined}.
26419
26420 @item color
26421 Specify display color mode.
26422
26423 It accepts the following values:
26424 @table @samp
26425 @item channel
26426 each channel is displayed in a separate color
26427 @item intensity
26428 each channel is displayed using the same color scheme
26429 @item rainbow
26430 each channel is displayed using the rainbow color scheme
26431 @item moreland
26432 each channel is displayed using the moreland color scheme
26433 @item nebulae
26434 each channel is displayed using the nebulae color scheme
26435 @item fire
26436 each channel is displayed using the fire color scheme
26437 @item fiery
26438 each channel is displayed using the fiery color scheme
26439 @item fruit
26440 each channel is displayed using the fruit color scheme
26441 @item cool
26442 each channel is displayed using the cool color scheme
26443 @item magma
26444 each channel is displayed using the magma color scheme
26445 @item green
26446 each channel is displayed using the green color scheme
26447 @item viridis
26448 each channel is displayed using the viridis color scheme
26449 @item plasma
26450 each channel is displayed using the plasma color scheme
26451 @item cividis
26452 each channel is displayed using the cividis color scheme
26453 @item terrain
26454 each channel is displayed using the terrain color scheme
26455 @end table
26456
26457 Default value is @samp{channel}.
26458
26459 @item scale
26460 Specify scale used for calculating intensity color values.
26461
26462 It accepts the following values:
26463 @table @samp
26464 @item lin
26465 linear
26466 @item sqrt
26467 square root, default
26468 @item cbrt
26469 cubic root
26470 @item log
26471 logarithmic
26472 @item 4thrt
26473 4th root
26474 @item 5thrt
26475 5th root
26476 @end table
26477
26478 Default value is @samp{sqrt}.
26479
26480 @item fscale
26481 Specify frequency scale.
26482
26483 It accepts the following values:
26484 @table @samp
26485 @item lin
26486 linear
26487 @item log
26488 logarithmic
26489 @end table
26490
26491 Default value is @samp{lin}.
26492
26493 @item saturation
26494 Set saturation modifier for displayed colors. Negative values provide
26495 alternative color scheme. @code{0} is no saturation at all.
26496 Saturation must be in [-10.0, 10.0] range.
26497 Default value is @code{1}.
26498
26499 @item win_func
26500 Set window function.
26501
26502 It accepts the following values:
26503 @table @samp
26504 @item rect
26505 @item bartlett
26506 @item hann
26507 @item hanning
26508 @item hamming
26509 @item blackman
26510 @item welch
26511 @item flattop
26512 @item bharris
26513 @item bnuttall
26514 @item bhann
26515 @item sine
26516 @item nuttall
26517 @item lanczos
26518 @item gauss
26519 @item tukey
26520 @item dolph
26521 @item cauchy
26522 @item parzen
26523 @item poisson
26524 @item bohman
26525 @end table
26526
26527 Default value is @code{hann}.
26528
26529 @item orientation
26530 Set orientation of time vs frequency axis. Can be @code{vertical} or
26531 @code{horizontal}. Default is @code{vertical}.
26532
26533 @item overlap
26534 Set ratio of overlap window. Default value is @code{0}.
26535 When value is @code{1} overlap is set to recommended size for specific
26536 window function currently used.
26537
26538 @item gain
26539 Set scale gain for calculating intensity color values.
26540 Default value is @code{1}.
26541
26542 @item data
26543 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
26544
26545 @item rotation
26546 Set color rotation, must be in [-1.0, 1.0] range.
26547 Default value is @code{0}.
26548
26549 @item start
26550 Set start frequency from which to display spectrogram. Default is @code{0}.
26551
26552 @item stop
26553 Set stop frequency to which to display spectrogram. Default is @code{0}.
26554
26555 @item fps
26556 Set upper frame rate limit. Default is @code{auto}, unlimited.
26557
26558 @item legend
26559 Draw time and frequency axes and legends. Default is disabled.
26560 @end table
26561
26562 The usage is very similar to the showwaves filter; see the examples in that
26563 section.
26564
26565 @subsection Examples
26566
26567 @itemize
26568 @item
26569 Large window with logarithmic color scaling:
26570 @example
26571 showspectrum=s=1280x480:scale=log
26572 @end example
26573
26574 @item
26575 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26576 @example
26577 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26578              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26579 @end example
26580 @end itemize
26581
26582 @section showspectrumpic
26583
26584 Convert input audio to a single video frame, representing the audio frequency
26585 spectrum.
26586
26587 The filter accepts the following options:
26588
26589 @table @option
26590 @item size, s
26591 Specify the video size for the output. For the syntax of this option, check the
26592 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26593 Default value is @code{4096x2048}.
26594
26595 @item mode
26596 Specify display mode.
26597
26598 It accepts the following values:
26599 @table @samp
26600 @item combined
26601 all channels are displayed in the same row
26602 @item separate
26603 all channels are displayed in separate rows
26604 @end table
26605 Default value is @samp{combined}.
26606
26607 @item color
26608 Specify display color mode.
26609
26610 It accepts the following values:
26611 @table @samp
26612 @item channel
26613 each channel is displayed in a separate color
26614 @item intensity
26615 each channel is displayed using the same color scheme
26616 @item rainbow
26617 each channel is displayed using the rainbow color scheme
26618 @item moreland
26619 each channel is displayed using the moreland color scheme
26620 @item nebulae
26621 each channel is displayed using the nebulae color scheme
26622 @item fire
26623 each channel is displayed using the fire color scheme
26624 @item fiery
26625 each channel is displayed using the fiery color scheme
26626 @item fruit
26627 each channel is displayed using the fruit color scheme
26628 @item cool
26629 each channel is displayed using the cool color scheme
26630 @item magma
26631 each channel is displayed using the magma color scheme
26632 @item green
26633 each channel is displayed using the green color scheme
26634 @item viridis
26635 each channel is displayed using the viridis color scheme
26636 @item plasma
26637 each channel is displayed using the plasma color scheme
26638 @item cividis
26639 each channel is displayed using the cividis color scheme
26640 @item terrain
26641 each channel is displayed using the terrain color scheme
26642 @end table
26643 Default value is @samp{intensity}.
26644
26645 @item scale
26646 Specify scale used for calculating intensity color values.
26647
26648 It accepts the following values:
26649 @table @samp
26650 @item lin
26651 linear
26652 @item sqrt
26653 square root, default
26654 @item cbrt
26655 cubic root
26656 @item log
26657 logarithmic
26658 @item 4thrt
26659 4th root
26660 @item 5thrt
26661 5th root
26662 @end table
26663 Default value is @samp{log}.
26664
26665 @item fscale
26666 Specify frequency scale.
26667
26668 It accepts the following values:
26669 @table @samp
26670 @item lin
26671 linear
26672 @item log
26673 logarithmic
26674 @end table
26675
26676 Default value is @samp{lin}.
26677
26678 @item saturation
26679 Set saturation modifier for displayed colors. Negative values provide
26680 alternative color scheme. @code{0} is no saturation at all.
26681 Saturation must be in [-10.0, 10.0] range.
26682 Default value is @code{1}.
26683
26684 @item win_func
26685 Set window function.
26686
26687 It accepts the following values:
26688 @table @samp
26689 @item rect
26690 @item bartlett
26691 @item hann
26692 @item hanning
26693 @item hamming
26694 @item blackman
26695 @item welch
26696 @item flattop
26697 @item bharris
26698 @item bnuttall
26699 @item bhann
26700 @item sine
26701 @item nuttall
26702 @item lanczos
26703 @item gauss
26704 @item tukey
26705 @item dolph
26706 @item cauchy
26707 @item parzen
26708 @item poisson
26709 @item bohman
26710 @end table
26711 Default value is @code{hann}.
26712
26713 @item orientation
26714 Set orientation of time vs frequency axis. Can be @code{vertical} or
26715 @code{horizontal}. Default is @code{vertical}.
26716
26717 @item gain
26718 Set scale gain for calculating intensity color values.
26719 Default value is @code{1}.
26720
26721 @item legend
26722 Draw time and frequency axes and legends. Default is enabled.
26723
26724 @item rotation
26725 Set color rotation, must be in [-1.0, 1.0] range.
26726 Default value is @code{0}.
26727
26728 @item start
26729 Set start frequency from which to display spectrogram. Default is @code{0}.
26730
26731 @item stop
26732 Set stop frequency to which to display spectrogram. Default is @code{0}.
26733 @end table
26734
26735 @subsection Examples
26736
26737 @itemize
26738 @item
26739 Extract an audio spectrogram of a whole audio track
26740 in a 1024x1024 picture using @command{ffmpeg}:
26741 @example
26742 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26743 @end example
26744 @end itemize
26745
26746 @section showvolume
26747
26748 Convert input audio volume to a video output.
26749
26750 The filter accepts the following options:
26751
26752 @table @option
26753 @item rate, r
26754 Set video rate.
26755
26756 @item b
26757 Set border width, allowed range is [0, 5]. Default is 1.
26758
26759 @item w
26760 Set channel width, allowed range is [80, 8192]. Default is 400.
26761
26762 @item h
26763 Set channel height, allowed range is [1, 900]. Default is 20.
26764
26765 @item f
26766 Set fade, allowed range is [0, 1]. Default is 0.95.
26767
26768 @item c
26769 Set volume color expression.
26770
26771 The expression can use the following variables:
26772
26773 @table @option
26774 @item VOLUME
26775 Current max volume of channel in dB.
26776
26777 @item PEAK
26778 Current peak.
26779
26780 @item CHANNEL
26781 Current channel number, starting from 0.
26782 @end table
26783
26784 @item t
26785 If set, displays channel names. Default is enabled.
26786
26787 @item v
26788 If set, displays volume values. Default is enabled.
26789
26790 @item o
26791 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26792 default is @code{h}.
26793
26794 @item s
26795 Set step size, allowed range is [0, 5]. Default is 0, which means
26796 step is disabled.
26797
26798 @item p
26799 Set background opacity, allowed range is [0, 1]. Default is 0.
26800
26801 @item m
26802 Set metering mode, can be peak: @code{p} or rms: @code{r},
26803 default is @code{p}.
26804
26805 @item ds
26806 Set display scale, can be linear: @code{lin} or log: @code{log},
26807 default is @code{lin}.
26808
26809 @item dm
26810 In second.
26811 If set to > 0., display a line for the max level
26812 in the previous seconds.
26813 default is disabled: @code{0.}
26814
26815 @item dmc
26816 The color of the max line. Use when @code{dm} option is set to > 0.
26817 default is: @code{orange}
26818 @end table
26819
26820 @section showwaves
26821
26822 Convert input audio to a video output, representing the samples waves.
26823
26824 The filter accepts the following options:
26825
26826 @table @option
26827 @item size, s
26828 Specify the video size for the output. For the syntax of this option, check the
26829 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26830 Default value is @code{600x240}.
26831
26832 @item mode
26833 Set display mode.
26834
26835 Available values are:
26836 @table @samp
26837 @item point
26838 Draw a point for each sample.
26839
26840 @item line
26841 Draw a vertical line for each sample.
26842
26843 @item p2p
26844 Draw a point for each sample and a line between them.
26845
26846 @item cline
26847 Draw a centered vertical line for each sample.
26848 @end table
26849
26850 Default value is @code{point}.
26851
26852 @item n
26853 Set the number of samples which are printed on the same column. A
26854 larger value will decrease the frame rate. Must be a positive
26855 integer. This option can be set only if the value for @var{rate}
26856 is not explicitly specified.
26857
26858 @item rate, r
26859 Set the (approximate) output frame rate. This is done by setting the
26860 option @var{n}. Default value is "25".
26861
26862 @item split_channels
26863 Set if channels should be drawn separately or overlap. Default value is 0.
26864
26865 @item colors
26866 Set colors separated by '|' which are going to be used for drawing of each channel.
26867
26868 @item scale
26869 Set amplitude scale.
26870
26871 Available values are:
26872 @table @samp
26873 @item lin
26874 Linear.
26875
26876 @item log
26877 Logarithmic.
26878
26879 @item sqrt
26880 Square root.
26881
26882 @item cbrt
26883 Cubic root.
26884 @end table
26885
26886 Default is linear.
26887
26888 @item draw
26889 Set the draw mode. This is mostly useful to set for high @var{n}.
26890
26891 Available values are:
26892 @table @samp
26893 @item scale
26894 Scale pixel values for each drawn sample.
26895
26896 @item full
26897 Draw every sample directly.
26898 @end table
26899
26900 Default value is @code{scale}.
26901 @end table
26902
26903 @subsection Examples
26904
26905 @itemize
26906 @item
26907 Output the input file audio and the corresponding video representation
26908 at the same time:
26909 @example
26910 amovie=a.mp3,asplit[out0],showwaves[out1]
26911 @end example
26912
26913 @item
26914 Create a synthetic signal and show it with showwaves, forcing a
26915 frame rate of 30 frames per second:
26916 @example
26917 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26918 @end example
26919 @end itemize
26920
26921 @section showwavespic
26922
26923 Convert input audio to a single video frame, representing the samples waves.
26924
26925 The filter accepts the following options:
26926
26927 @table @option
26928 @item size, s
26929 Specify the video size for the output. For the syntax of this option, check the
26930 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26931 Default value is @code{600x240}.
26932
26933 @item split_channels
26934 Set if channels should be drawn separately or overlap. Default value is 0.
26935
26936 @item colors
26937 Set colors separated by '|' which are going to be used for drawing of each channel.
26938
26939 @item scale
26940 Set amplitude scale.
26941
26942 Available values are:
26943 @table @samp
26944 @item lin
26945 Linear.
26946
26947 @item log
26948 Logarithmic.
26949
26950 @item sqrt
26951 Square root.
26952
26953 @item cbrt
26954 Cubic root.
26955 @end table
26956
26957 Default is linear.
26958
26959 @item draw
26960 Set the draw mode.
26961
26962 Available values are:
26963 @table @samp
26964 @item scale
26965 Scale pixel values for each drawn sample.
26966
26967 @item full
26968 Draw every sample directly.
26969 @end table
26970
26971 Default value is @code{scale}.
26972
26973 @item filter
26974 Set the filter mode.
26975
26976 Available values are:
26977 @table @samp
26978 @item average
26979 Use average samples values for each drawn sample.
26980
26981 @item peak
26982 Use peak samples values for each drawn sample.
26983 @end table
26984
26985 Default value is @code{average}.
26986 @end table
26987
26988 @subsection Examples
26989
26990 @itemize
26991 @item
26992 Extract a channel split representation of the wave form of a whole audio track
26993 in a 1024x800 picture using @command{ffmpeg}:
26994 @example
26995 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26996 @end example
26997 @end itemize
26998
26999 @section sidedata, asidedata
27000
27001 Delete frame side data, or select frames based on it.
27002
27003 This filter accepts the following options:
27004
27005 @table @option
27006 @item mode
27007 Set mode of operation of the filter.
27008
27009 Can be one of the following:
27010
27011 @table @samp
27012 @item select
27013 Select every frame with side data of @code{type}.
27014
27015 @item delete
27016 Delete side data of @code{type}. If @code{type} is not set, delete all side
27017 data in the frame.
27018
27019 @end table
27020
27021 @item type
27022 Set side data type used with all modes. Must be set for @code{select} mode. For
27023 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
27024 in @file{libavutil/frame.h}. For example, to choose
27025 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
27026
27027 @end table
27028
27029 @section spectrumsynth
27030
27031 Synthesize audio from 2 input video spectrums, first input stream represents
27032 magnitude across time and second represents phase across time.
27033 The filter will transform from frequency domain as displayed in videos back
27034 to time domain as presented in audio output.
27035
27036 This filter is primarily created for reversing processed @ref{showspectrum}
27037 filter outputs, but can synthesize sound from other spectrograms too.
27038 But in such case results are going to be poor if the phase data is not
27039 available, because in such cases phase data need to be recreated, usually
27040 it's just recreated from random noise.
27041 For best results use gray only output (@code{channel} color mode in
27042 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
27043 @code{lin} scale for phase video. To produce phase, for 2nd video, use
27044 @code{data} option. Inputs videos should generally use @code{fullframe}
27045 slide mode as that saves resources needed for decoding video.
27046
27047 The filter accepts the following options:
27048
27049 @table @option
27050 @item sample_rate
27051 Specify sample rate of output audio, the sample rate of audio from which
27052 spectrum was generated may differ.
27053
27054 @item channels
27055 Set number of channels represented in input video spectrums.
27056
27057 @item scale
27058 Set scale which was used when generating magnitude input spectrum.
27059 Can be @code{lin} or @code{log}. Default is @code{log}.
27060
27061 @item slide
27062 Set slide which was used when generating inputs spectrums.
27063 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
27064 Default is @code{fullframe}.
27065
27066 @item win_func
27067 Set window function used for resynthesis.
27068
27069 @item overlap
27070 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
27071 which means optimal overlap for selected window function will be picked.
27072
27073 @item orientation
27074 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
27075 Default is @code{vertical}.
27076 @end table
27077
27078 @subsection Examples
27079
27080 @itemize
27081 @item
27082 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
27083 then resynthesize videos back to audio with spectrumsynth:
27084 @example
27085 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
27086 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
27087 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
27088 @end example
27089 @end itemize
27090
27091 @section split, asplit
27092
27093 Split input into several identical outputs.
27094
27095 @code{asplit} works with audio input, @code{split} with video.
27096
27097 The filter accepts a single parameter which specifies the number of outputs. If
27098 unspecified, it defaults to 2.
27099
27100 @subsection Examples
27101
27102 @itemize
27103 @item
27104 Create two separate outputs from the same input:
27105 @example
27106 [in] split [out0][out1]
27107 @end example
27108
27109 @item
27110 To create 3 or more outputs, you need to specify the number of
27111 outputs, like in:
27112 @example
27113 [in] asplit=3 [out0][out1][out2]
27114 @end example
27115
27116 @item
27117 Create two separate outputs from the same input, one cropped and
27118 one padded:
27119 @example
27120 [in] split [splitout1][splitout2];
27121 [splitout1] crop=100:100:0:0    [cropout];
27122 [splitout2] pad=200:200:100:100 [padout];
27123 @end example
27124
27125 @item
27126 Create 5 copies of the input audio with @command{ffmpeg}:
27127 @example
27128 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
27129 @end example
27130 @end itemize
27131
27132 @section zmq, azmq
27133
27134 Receive commands sent through a libzmq client, and forward them to
27135 filters in the filtergraph.
27136
27137 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
27138 must be inserted between two video filters, @code{azmq} between two
27139 audio filters. Both are capable to send messages to any filter type.
27140
27141 To enable these filters you need to install the libzmq library and
27142 headers and configure FFmpeg with @code{--enable-libzmq}.
27143
27144 For more information about libzmq see:
27145 @url{http://www.zeromq.org/}
27146
27147 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
27148 receives messages sent through a network interface defined by the
27149 @option{bind_address} (or the abbreviation "@option{b}") option.
27150 Default value of this option is @file{tcp://localhost:5555}. You may
27151 want to alter this value to your needs, but do not forget to escape any
27152 ':' signs (see @ref{filtergraph escaping}).
27153
27154 The received message must be in the form:
27155 @example
27156 @var{TARGET} @var{COMMAND} [@var{ARG}]
27157 @end example
27158
27159 @var{TARGET} specifies the target of the command, usually the name of
27160 the filter class or a specific filter instance name. The default
27161 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
27162 but you can override this by using the @samp{filter_name@@id} syntax
27163 (see @ref{Filtergraph syntax}).
27164
27165 @var{COMMAND} specifies the name of the command for the target filter.
27166
27167 @var{ARG} is optional and specifies the optional argument list for the
27168 given @var{COMMAND}.
27169
27170 Upon reception, the message is processed and the corresponding command
27171 is injected into the filtergraph. Depending on the result, the filter
27172 will send a reply to the client, adopting the format:
27173 @example
27174 @var{ERROR_CODE} @var{ERROR_REASON}
27175 @var{MESSAGE}
27176 @end example
27177
27178 @var{MESSAGE} is optional.
27179
27180 @subsection Examples
27181
27182 Look at @file{tools/zmqsend} for an example of a zmq client which can
27183 be used to send commands processed by these filters.
27184
27185 Consider the following filtergraph generated by @command{ffplay}.
27186 In this example the last overlay filter has an instance name. All other
27187 filters will have default instance names.
27188
27189 @example
27190 ffplay -dumpgraph 1 -f lavfi "
27191 color=s=100x100:c=red  [l];
27192 color=s=100x100:c=blue [r];
27193 nullsrc=s=200x100, zmq [bg];
27194 [bg][l]   overlay     [bg+l];
27195 [bg+l][r] overlay@@my=x=100 "
27196 @end example
27197
27198 To change the color of the left side of the video, the following
27199 command can be used:
27200 @example
27201 echo Parsed_color_0 c yellow | tools/zmqsend
27202 @end example
27203
27204 To change the right side:
27205 @example
27206 echo Parsed_color_1 c pink | tools/zmqsend
27207 @end example
27208
27209 To change the position of the right side:
27210 @example
27211 echo overlay@@my x 150 | tools/zmqsend
27212 @end example
27213
27214
27215 @c man end MULTIMEDIA FILTERS
27216
27217 @chapter Multimedia Sources
27218 @c man begin MULTIMEDIA SOURCES
27219
27220 Below is a description of the currently available multimedia sources.
27221
27222 @section amovie
27223
27224 This is the same as @ref{movie} source, except it selects an audio
27225 stream by default.
27226
27227 @anchor{movie}
27228 @section movie
27229
27230 Read audio and/or video stream(s) from a movie container.
27231
27232 It accepts the following parameters:
27233
27234 @table @option
27235 @item filename
27236 The name of the resource to read (not necessarily a file; it can also be a
27237 device or a stream accessed through some protocol).
27238
27239 @item format_name, f
27240 Specifies the format assumed for the movie to read, and can be either
27241 the name of a container or an input device. If not specified, the
27242 format is guessed from @var{movie_name} or by probing.
27243
27244 @item seek_point, sp
27245 Specifies the seek point in seconds. The frames will be output
27246 starting from this seek point. The parameter is evaluated with
27247 @code{av_strtod}, so the numerical value may be suffixed by an IS
27248 postfix. The default value is "0".
27249
27250 @item streams, s
27251 Specifies the streams to read. Several streams can be specified,
27252 separated by "+". The source will then have as many outputs, in the
27253 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
27254 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
27255 respectively the default (best suited) video and audio stream. Default
27256 is "dv", or "da" if the filter is called as "amovie".
27257
27258 @item stream_index, si
27259 Specifies the index of the video stream to read. If the value is -1,
27260 the most suitable video stream will be automatically selected. The default
27261 value is "-1". Deprecated. If the filter is called "amovie", it will select
27262 audio instead of video.
27263
27264 @item loop
27265 Specifies how many times to read the stream in sequence.
27266 If the value is 0, the stream will be looped infinitely.
27267 Default value is "1".
27268
27269 Note that when the movie is looped the source timestamps are not
27270 changed, so it will generate non monotonically increasing timestamps.
27271
27272 @item discontinuity
27273 Specifies the time difference between frames above which the point is
27274 considered a timestamp discontinuity which is removed by adjusting the later
27275 timestamps.
27276 @end table
27277
27278 It allows overlaying a second video on top of the main input of
27279 a filtergraph, as shown in this graph:
27280 @example
27281 input -----------> deltapts0 --> overlay --> output
27282                                     ^
27283                                     |
27284 movie --> scale--> deltapts1 -------+
27285 @end example
27286 @subsection Examples
27287
27288 @itemize
27289 @item
27290 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
27291 on top of the input labelled "in":
27292 @example
27293 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
27294 [in] setpts=PTS-STARTPTS [main];
27295 [main][over] overlay=16:16 [out]
27296 @end example
27297
27298 @item
27299 Read from a video4linux2 device, and overlay it on top of the input
27300 labelled "in":
27301 @example
27302 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
27303 [in] setpts=PTS-STARTPTS [main];
27304 [main][over] overlay=16:16 [out]
27305 @end example
27306
27307 @item
27308 Read the first video stream and the audio stream with id 0x81 from
27309 dvd.vob; the video is connected to the pad named "video" and the audio is
27310 connected to the pad named "audio":
27311 @example
27312 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
27313 @end example
27314 @end itemize
27315
27316 @subsection Commands
27317
27318 Both movie and amovie support the following commands:
27319 @table @option
27320 @item seek
27321 Perform seek using "av_seek_frame".
27322 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
27323 @itemize
27324 @item
27325 @var{stream_index}: If stream_index is -1, a default
27326 stream is selected, and @var{timestamp} is automatically converted
27327 from AV_TIME_BASE units to the stream specific time_base.
27328 @item
27329 @var{timestamp}: Timestamp in AVStream.time_base units
27330 or, if no stream is specified, in AV_TIME_BASE units.
27331 @item
27332 @var{flags}: Flags which select direction and seeking mode.
27333 @end itemize
27334
27335 @item get_duration
27336 Get movie duration in AV_TIME_BASE units.
27337
27338 @end table
27339
27340 @c man end MULTIMEDIA SOURCES