]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: fix obvious mistake for minimum accepted value
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @section acue
644
645 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
646 filter.
647
648 @section adeclick
649 Remove impulsive noise from input audio.
650
651 Samples detected as impulsive noise are replaced by interpolated samples using
652 autoregressive modelling.
653
654 @table @option
655 @item w
656 Set window size, in milliseconds. Allowed range is from @code{10} to
657 @code{100}. Default value is @code{55} milliseconds.
658 This sets size of window which will be processed at once.
659
660 @item o
661 Set window overlap, in percentage of window size. Allowed range is from
662 @code{50} to @code{95}. Default value is @code{75} percent.
663 Setting this to a very high value increases impulsive noise removal but makes
664 whole process much slower.
665
666 @item a
667 Set autoregression order, in percentage of window size. Allowed range is from
668 @code{0} to @code{25}. Default value is @code{2} percent. This option also
669 controls quality of interpolated samples using neighbour good samples.
670
671 @item t
672 Set threshold value. Allowed range is from @code{1} to @code{100}.
673 Default value is @code{2}.
674 This controls the strength of impulsive noise which is going to be removed.
675 The lower value, the more samples will be detected as impulsive noise.
676
677 @item b
678 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
679 @code{10}. Default value is @code{2}.
680 If any two samples detected as noise are spaced less than this value then any
681 sample between those two samples will be also detected as noise.
682
683 @item m
684 Set overlap method.
685
686 It accepts the following values:
687 @table @option
688 @item a
689 Select overlap-add method. Even not interpolated samples are slightly
690 changed with this method.
691
692 @item s
693 Select overlap-save method. Not interpolated samples remain unchanged.
694 @end table
695
696 Default value is @code{a}.
697 @end table
698
699 @section adeclip
700 Remove clipped samples from input audio.
701
702 Samples detected as clipped are replaced by interpolated samples using
703 autoregressive modelling.
704
705 @table @option
706 @item w
707 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
708 Default value is @code{55} milliseconds.
709 This sets size of window which will be processed at once.
710
711 @item o
712 Set window overlap, in percentage of window size. Allowed range is from @code{50}
713 to @code{95}. Default value is @code{75} percent.
714
715 @item a
716 Set autoregression order, in percentage of window size. Allowed range is from
717 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
718 quality of interpolated samples using neighbour good samples.
719
720 @item t
721 Set threshold value. Allowed range is from @code{1} to @code{100}.
722 Default value is @code{10}. Higher values make clip detection less aggressive.
723
724 @item n
725 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
726 Default value is @code{1000}. Higher values make clip detection less aggressive.
727
728 @item m
729 Set overlap method.
730
731 It accepts the following values:
732 @table @option
733 @item a
734 Select overlap-add method. Even not interpolated samples are slightly changed
735 with this method.
736
737 @item s
738 Select overlap-save method. Not interpolated samples remain unchanged.
739 @end table
740
741 Default value is @code{a}.
742 @end table
743
744 @section adelay
745
746 Delay one or more audio channels.
747
748 Samples in delayed channel are filled with silence.
749
750 The filter accepts the following option:
751
752 @table @option
753 @item delays
754 Set list of delays in milliseconds for each channel separated by '|'.
755 Unused delays will be silently ignored. If number of given delays is
756 smaller than number of channels all remaining channels will not be delayed.
757 If you want to delay exact number of samples, append 'S' to number.
758 If you want instead to delay in seconds, append 's' to number.
759
760 @item all
761 Use last set delay for all remaining channels. By default is disabled.
762 This option if enabled changes how option @code{delays} is interpreted.
763 @end table
764
765 @subsection Examples
766
767 @itemize
768 @item
769 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
770 the second channel (and any other channels that may be present) unchanged.
771 @example
772 adelay=1500|0|500
773 @end example
774
775 @item
776 Delay second channel by 500 samples, the third channel by 700 samples and leave
777 the first channel (and any other channels that may be present) unchanged.
778 @example
779 adelay=0|500S|700S
780 @end example
781
782 @item
783 Delay all channels by same number of samples:
784 @example
785 adelay=delays=64S:all=1
786 @end example
787 @end itemize
788
789 @section adenorm
790 Remedy denormals in audio by adding extremely low-level noise.
791
792 This filter shall be placed before any filter that can produce denormals.
793
794 A description of the accepted parameters follows.
795
796 @table @option
797 @item level
798 Set level of added noise in dB. Default is @code{-351}.
799 Allowed range is from -451 to -90.
800
801 @item type
802 Set type of added noise.
803
804 @table @option
805 @item dc
806 Add DC signal.
807 @item ac
808 Add AC signal.
809 @item square
810 Add square signal.
811 @item pulse
812 Add pulse signal.
813 @end table
814
815 Default is @code{dc}.
816 @end table
817
818 @subsection Commands
819
820 This filter supports the all above options as @ref{commands}.
821
822 @section aderivative, aintegral
823
824 Compute derivative/integral of audio stream.
825
826 Applying both filters one after another produces original audio.
827
828 @section aecho
829
830 Apply echoing to the input audio.
831
832 Echoes are reflected sound and can occur naturally amongst mountains
833 (and sometimes large buildings) when talking or shouting; digital echo
834 effects emulate this behaviour and are often used to help fill out the
835 sound of a single instrument or vocal. The time difference between the
836 original signal and the reflection is the @code{delay}, and the
837 loudness of the reflected signal is the @code{decay}.
838 Multiple echoes can have different delays and decays.
839
840 A description of the accepted parameters follows.
841
842 @table @option
843 @item in_gain
844 Set input gain of reflected signal. Default is @code{0.6}.
845
846 @item out_gain
847 Set output gain of reflected signal. Default is @code{0.3}.
848
849 @item delays
850 Set list of time intervals in milliseconds between original signal and reflections
851 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
852 Default is @code{1000}.
853
854 @item decays
855 Set list of loudness of reflected signals separated by '|'.
856 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
857 Default is @code{0.5}.
858 @end table
859
860 @subsection Examples
861
862 @itemize
863 @item
864 Make it sound as if there are twice as many instruments as are actually playing:
865 @example
866 aecho=0.8:0.88:60:0.4
867 @end example
868
869 @item
870 If delay is very short, then it sounds like a (metallic) robot playing music:
871 @example
872 aecho=0.8:0.88:6:0.4
873 @end example
874
875 @item
876 A longer delay will sound like an open air concert in the mountains:
877 @example
878 aecho=0.8:0.9:1000:0.3
879 @end example
880
881 @item
882 Same as above but with one more mountain:
883 @example
884 aecho=0.8:0.9:1000|1800:0.3|0.25
885 @end example
886 @end itemize
887
888 @section aemphasis
889 Audio emphasis filter creates or restores material directly taken from LPs or
890 emphased CDs with different filter curves. E.g. to store music on vinyl the
891 signal has to be altered by a filter first to even out the disadvantages of
892 this recording medium.
893 Once the material is played back the inverse filter has to be applied to
894 restore the distortion of the frequency response.
895
896 The filter accepts the following options:
897
898 @table @option
899 @item level_in
900 Set input gain.
901
902 @item level_out
903 Set output gain.
904
905 @item mode
906 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
907 use @code{production} mode. Default is @code{reproduction} mode.
908
909 @item type
910 Set filter type. Selects medium. Can be one of the following:
911
912 @table @option
913 @item col
914 select Columbia.
915 @item emi
916 select EMI.
917 @item bsi
918 select BSI (78RPM).
919 @item riaa
920 select RIAA.
921 @item cd
922 select Compact Disc (CD).
923 @item 50fm
924 select 50µs (FM).
925 @item 75fm
926 select 75µs (FM).
927 @item 50kf
928 select 50µs (FM-KF).
929 @item 75kf
930 select 75µs (FM-KF).
931 @end table
932 @end table
933
934 @subsection Commands
935
936 This filter supports the all above options as @ref{commands}.
937
938 @section aeval
939
940 Modify an audio signal according to the specified expressions.
941
942 This filter accepts one or more expressions (one for each channel),
943 which are evaluated and used to modify a corresponding audio signal.
944
945 It accepts the following parameters:
946
947 @table @option
948 @item exprs
949 Set the '|'-separated expressions list for each separate channel. If
950 the number of input channels is greater than the number of
951 expressions, the last specified expression is used for the remaining
952 output channels.
953
954 @item channel_layout, c
955 Set output channel layout. If not specified, the channel layout is
956 specified by the number of expressions. If set to @samp{same}, it will
957 use by default the same input channel layout.
958 @end table
959
960 Each expression in @var{exprs} can contain the following constants and functions:
961
962 @table @option
963 @item ch
964 channel number of the current expression
965
966 @item n
967 number of the evaluated sample, starting from 0
968
969 @item s
970 sample rate
971
972 @item t
973 time of the evaluated sample expressed in seconds
974
975 @item nb_in_channels
976 @item nb_out_channels
977 input and output number of channels
978
979 @item val(CH)
980 the value of input channel with number @var{CH}
981 @end table
982
983 Note: this filter is slow. For faster processing you should use a
984 dedicated filter.
985
986 @subsection Examples
987
988 @itemize
989 @item
990 Half volume:
991 @example
992 aeval=val(ch)/2:c=same
993 @end example
994
995 @item
996 Invert phase of the second channel:
997 @example
998 aeval=val(0)|-val(1)
999 @end example
1000 @end itemize
1001
1002 @anchor{afade}
1003 @section afade
1004
1005 Apply fade-in/out effect to input audio.
1006
1007 A description of the accepted parameters follows.
1008
1009 @table @option
1010 @item type, t
1011 Specify the effect type, can be either @code{in} for fade-in, or
1012 @code{out} for a fade-out effect. Default is @code{in}.
1013
1014 @item start_sample, ss
1015 Specify the number of the start sample for starting to apply the fade
1016 effect. Default is 0.
1017
1018 @item nb_samples, ns
1019 Specify the number of samples for which the fade effect has to last. At
1020 the end of the fade-in effect the output audio will have the same
1021 volume as the input audio, at the end of the fade-out transition
1022 the output audio will be silence. Default is 44100.
1023
1024 @item start_time, st
1025 Specify the start time of the fade effect. Default is 0.
1026 The value must be specified as a time duration; see
1027 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1028 for the accepted syntax.
1029 If set this option is used instead of @var{start_sample}.
1030
1031 @item duration, d
1032 Specify the duration of the fade effect. See
1033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1034 for the accepted syntax.
1035 At the end of the fade-in effect the output audio will have the same
1036 volume as the input audio, at the end of the fade-out transition
1037 the output audio will be silence.
1038 By default the duration is determined by @var{nb_samples}.
1039 If set this option is used instead of @var{nb_samples}.
1040
1041 @item curve
1042 Set curve for fade transition.
1043
1044 It accepts the following values:
1045 @table @option
1046 @item tri
1047 select triangular, linear slope (default)
1048 @item qsin
1049 select quarter of sine wave
1050 @item hsin
1051 select half of sine wave
1052 @item esin
1053 select exponential sine wave
1054 @item log
1055 select logarithmic
1056 @item ipar
1057 select inverted parabola
1058 @item qua
1059 select quadratic
1060 @item cub
1061 select cubic
1062 @item squ
1063 select square root
1064 @item cbr
1065 select cubic root
1066 @item par
1067 select parabola
1068 @item exp
1069 select exponential
1070 @item iqsin
1071 select inverted quarter of sine wave
1072 @item ihsin
1073 select inverted half of sine wave
1074 @item dese
1075 select double-exponential seat
1076 @item desi
1077 select double-exponential sigmoid
1078 @item losi
1079 select logistic sigmoid
1080 @item sinc
1081 select sine cardinal function
1082 @item isinc
1083 select inverted sine cardinal function
1084 @item nofade
1085 no fade applied
1086 @end table
1087 @end table
1088
1089 @subsection Examples
1090
1091 @itemize
1092 @item
1093 Fade in first 15 seconds of audio:
1094 @example
1095 afade=t=in:ss=0:d=15
1096 @end example
1097
1098 @item
1099 Fade out last 25 seconds of a 900 seconds audio:
1100 @example
1101 afade=t=out:st=875:d=25
1102 @end example
1103 @end itemize
1104
1105 @section afftdn
1106 Denoise audio samples with FFT.
1107
1108 A description of the accepted parameters follows.
1109
1110 @table @option
1111 @item nr
1112 Set the noise reduction in dB, allowed range is 0.01 to 97.
1113 Default value is 12 dB.
1114
1115 @item nf
1116 Set the noise floor in dB, allowed range is -80 to -20.
1117 Default value is -50 dB.
1118
1119 @item nt
1120 Set the noise type.
1121
1122 It accepts the following values:
1123 @table @option
1124 @item w
1125 Select white noise.
1126
1127 @item v
1128 Select vinyl noise.
1129
1130 @item s
1131 Select shellac noise.
1132
1133 @item c
1134 Select custom noise, defined in @code{bn} option.
1135
1136 Default value is white noise.
1137 @end table
1138
1139 @item bn
1140 Set custom band noise for every one of 15 bands.
1141 Bands are separated by ' ' or '|'.
1142
1143 @item rf
1144 Set the residual floor in dB, allowed range is -80 to -20.
1145 Default value is -38 dB.
1146
1147 @item tn
1148 Enable noise tracking. By default is disabled.
1149 With this enabled, noise floor is automatically adjusted.
1150
1151 @item tr
1152 Enable residual tracking. By default is disabled.
1153
1154 @item om
1155 Set the output mode.
1156
1157 It accepts the following values:
1158 @table @option
1159 @item i
1160 Pass input unchanged.
1161
1162 @item o
1163 Pass noise filtered out.
1164
1165 @item n
1166 Pass only noise.
1167
1168 Default value is @var{o}.
1169 @end table
1170 @end table
1171
1172 @subsection Commands
1173
1174 This filter supports the following commands:
1175 @table @option
1176 @item sample_noise, sn
1177 Start or stop measuring noise profile.
1178 Syntax for the command is : "start" or "stop" string.
1179 After measuring noise profile is stopped it will be
1180 automatically applied in filtering.
1181
1182 @item noise_reduction, nr
1183 Change noise reduction. Argument is single float number.
1184 Syntax for the command is : "@var{noise_reduction}"
1185
1186 @item noise_floor, nf
1187 Change noise floor. Argument is single float number.
1188 Syntax for the command is : "@var{noise_floor}"
1189
1190 @item output_mode, om
1191 Change output mode operation.
1192 Syntax for the command is : "i", "o" or "n" string.
1193 @end table
1194
1195 @section afftfilt
1196 Apply arbitrary expressions to samples in frequency domain.
1197
1198 @table @option
1199 @item real
1200 Set frequency domain real expression for each separate channel separated
1201 by '|'. Default is "re".
1202 If the number of input channels is greater than the number of
1203 expressions, the last specified expression is used for the remaining
1204 output channels.
1205
1206 @item imag
1207 Set frequency domain imaginary expression for each separate channel
1208 separated by '|'. Default is "im".
1209
1210 Each expression in @var{real} and @var{imag} can contain the following
1211 constants and functions:
1212
1213 @table @option
1214 @item sr
1215 sample rate
1216
1217 @item b
1218 current frequency bin number
1219
1220 @item nb
1221 number of available bins
1222
1223 @item ch
1224 channel number of the current expression
1225
1226 @item chs
1227 number of channels
1228
1229 @item pts
1230 current frame pts
1231
1232 @item re
1233 current real part of frequency bin of current channel
1234
1235 @item im
1236 current imaginary part of frequency bin of current channel
1237
1238 @item real(b, ch)
1239 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1240
1241 @item imag(b, ch)
1242 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1243 @end table
1244
1245 @item win_size
1246 Set window size. Allowed range is from 16 to 131072.
1247 Default is @code{4096}
1248
1249 @item win_func
1250 Set window function. Default is @code{hann}.
1251
1252 @item overlap
1253 Set window overlap. If set to 1, the recommended overlap for selected
1254 window function will be picked. Default is @code{0.75}.
1255 @end table
1256
1257 @subsection Examples
1258
1259 @itemize
1260 @item
1261 Leave almost only low frequencies in audio:
1262 @example
1263 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1264 @end example
1265
1266 @item
1267 Apply robotize effect:
1268 @example
1269 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1270 @end example
1271
1272 @item
1273 Apply whisper effect:
1274 @example
1275 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1276 @end example
1277 @end itemize
1278
1279 @anchor{afir}
1280 @section afir
1281
1282 Apply an arbitrary Finite Impulse Response filter.
1283
1284 This filter is designed for applying long FIR filters,
1285 up to 60 seconds long.
1286
1287 It can be used as component for digital crossover filters,
1288 room equalization, cross talk cancellation, wavefield synthesis,
1289 auralization, ambiophonics, ambisonics and spatialization.
1290
1291 This filter uses the streams higher than first one as FIR coefficients.
1292 If the non-first stream holds a single channel, it will be used
1293 for all input channels in the first stream, otherwise
1294 the number of channels in the non-first stream must be same as
1295 the number of channels in the first stream.
1296
1297 It accepts the following parameters:
1298
1299 @table @option
1300 @item dry
1301 Set dry gain. This sets input gain.
1302
1303 @item wet
1304 Set wet gain. This sets final output gain.
1305
1306 @item length
1307 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1308
1309 @item gtype
1310 Enable applying gain measured from power of IR.
1311
1312 Set which approach to use for auto gain measurement.
1313
1314 @table @option
1315 @item none
1316 Do not apply any gain.
1317
1318 @item peak
1319 select peak gain, very conservative approach. This is default value.
1320
1321 @item dc
1322 select DC gain, limited application.
1323
1324 @item gn
1325 select gain to noise approach, this is most popular one.
1326 @end table
1327
1328 @item irgain
1329 Set gain to be applied to IR coefficients before filtering.
1330 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1331
1332 @item irfmt
1333 Set format of IR stream. Can be @code{mono} or @code{input}.
1334 Default is @code{input}.
1335
1336 @item maxir
1337 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1338 Allowed range is 0.1 to 60 seconds.
1339
1340 @item response
1341 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1342 By default it is disabled.
1343
1344 @item channel
1345 Set for which IR channel to display frequency response. By default is first channel
1346 displayed. This option is used only when @var{response} is enabled.
1347
1348 @item size
1349 Set video stream size. This option is used only when @var{response} is enabled.
1350
1351 @item rate
1352 Set video stream frame rate. This option is used only when @var{response} is enabled.
1353
1354 @item minp
1355 Set minimal partition size used for convolution. Default is @var{8192}.
1356 Allowed range is from @var{1} to @var{32768}.
1357 Lower values decreases latency at cost of higher CPU usage.
1358
1359 @item maxp
1360 Set maximal partition size used for convolution. Default is @var{8192}.
1361 Allowed range is from @var{8} to @var{32768}.
1362 Lower values may increase CPU usage.
1363
1364 @item nbirs
1365 Set number of input impulse responses streams which will be switchable at runtime.
1366 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1367
1368 @item ir
1369 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1370 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1371 This option can be changed at runtime via @ref{commands}.
1372 @end table
1373
1374 @subsection Examples
1375
1376 @itemize
1377 @item
1378 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1379 @example
1380 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1381 @end example
1382 @end itemize
1383
1384 @anchor{aformat}
1385 @section aformat
1386
1387 Set output format constraints for the input audio. The framework will
1388 negotiate the most appropriate format to minimize conversions.
1389
1390 It accepts the following parameters:
1391 @table @option
1392
1393 @item sample_fmts, f
1394 A '|'-separated list of requested sample formats.
1395
1396 @item sample_rates, r
1397 A '|'-separated list of requested sample rates.
1398
1399 @item channel_layouts, cl
1400 A '|'-separated list of requested channel layouts.
1401
1402 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1403 for the required syntax.
1404 @end table
1405
1406 If a parameter is omitted, all values are allowed.
1407
1408 Force the output to either unsigned 8-bit or signed 16-bit stereo
1409 @example
1410 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1411 @end example
1412
1413 @section afreqshift
1414 Apply frequency shift to input audio samples.
1415
1416 The filter accepts the following options:
1417
1418 @table @option
1419 @item shift
1420 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1421 Default value is 0.0.
1422
1423 @item level
1424 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1425 Default value is 1.0.
1426 @end table
1427
1428 @subsection Commands
1429
1430 This filter supports the all above options as @ref{commands}.
1431
1432 @section agate
1433
1434 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1435 processing reduces disturbing noise between useful signals.
1436
1437 Gating is done by detecting the volume below a chosen level @var{threshold}
1438 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1439 floor is set via @var{range}. Because an exact manipulation of the signal
1440 would cause distortion of the waveform the reduction can be levelled over
1441 time. This is done by setting @var{attack} and @var{release}.
1442
1443 @var{attack} determines how long the signal has to fall below the threshold
1444 before any reduction will occur and @var{release} sets the time the signal
1445 has to rise above the threshold to reduce the reduction again.
1446 Shorter signals than the chosen attack time will be left untouched.
1447
1448 @table @option
1449 @item level_in
1450 Set input level before filtering.
1451 Default is 1. Allowed range is from 0.015625 to 64.
1452
1453 @item mode
1454 Set the mode of operation. Can be @code{upward} or @code{downward}.
1455 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1456 will be amplified, expanding dynamic range in upward direction.
1457 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1458
1459 @item range
1460 Set the level of gain reduction when the signal is below the threshold.
1461 Default is 0.06125. Allowed range is from 0 to 1.
1462 Setting this to 0 disables reduction and then filter behaves like expander.
1463
1464 @item threshold
1465 If a signal rises above this level the gain reduction is released.
1466 Default is 0.125. Allowed range is from 0 to 1.
1467
1468 @item ratio
1469 Set a ratio by which the signal is reduced.
1470 Default is 2. Allowed range is from 1 to 9000.
1471
1472 @item attack
1473 Amount of milliseconds the signal has to rise above the threshold before gain
1474 reduction stops.
1475 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1476
1477 @item release
1478 Amount of milliseconds the signal has to fall below the threshold before the
1479 reduction is increased again. Default is 250 milliseconds.
1480 Allowed range is from 0.01 to 9000.
1481
1482 @item makeup
1483 Set amount of amplification of signal after processing.
1484 Default is 1. Allowed range is from 1 to 64.
1485
1486 @item knee
1487 Curve the sharp knee around the threshold to enter gain reduction more softly.
1488 Default is 2.828427125. Allowed range is from 1 to 8.
1489
1490 @item detection
1491 Choose if exact signal should be taken for detection or an RMS like one.
1492 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1493
1494 @item link
1495 Choose if the average level between all channels or the louder channel affects
1496 the reduction.
1497 Default is @code{average}. Can be @code{average} or @code{maximum}.
1498 @end table
1499
1500 @subsection Commands
1501
1502 This filter supports the all above options as @ref{commands}.
1503
1504 @section aiir
1505
1506 Apply an arbitrary Infinite Impulse Response filter.
1507
1508 It accepts the following parameters:
1509
1510 @table @option
1511 @item zeros, z
1512 Set B/numerator/zeros/reflection coefficients.
1513
1514 @item poles, p
1515 Set A/denominator/poles/ladder coefficients.
1516
1517 @item gains, k
1518 Set channels gains.
1519
1520 @item dry_gain
1521 Set input gain.
1522
1523 @item wet_gain
1524 Set output gain.
1525
1526 @item format, f
1527 Set coefficients format.
1528
1529 @table @samp
1530 @item ll
1531 lattice-ladder function
1532 @item sf
1533 analog transfer function
1534 @item tf
1535 digital transfer function
1536 @item zp
1537 Z-plane zeros/poles, cartesian (default)
1538 @item pr
1539 Z-plane zeros/poles, polar radians
1540 @item pd
1541 Z-plane zeros/poles, polar degrees
1542 @item sp
1543 S-plane zeros/poles
1544 @end table
1545
1546 @item process, r
1547 Set type of processing.
1548
1549 @table @samp
1550 @item d
1551 direct processing
1552 @item s
1553 serial processing
1554 @item p
1555 parallel processing
1556 @end table
1557
1558 @item precision, e
1559 Set filtering precision.
1560
1561 @table @samp
1562 @item dbl
1563 double-precision floating-point (default)
1564 @item flt
1565 single-precision floating-point
1566 @item i32
1567 32-bit integers
1568 @item i16
1569 16-bit integers
1570 @end table
1571
1572 @item normalize, n
1573 Normalize filter coefficients, by default is enabled.
1574 Enabling it will normalize magnitude response at DC to 0dB.
1575
1576 @item mix
1577 How much to use filtered signal in output. Default is 1.
1578 Range is between 0 and 1.
1579
1580 @item response
1581 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1582 By default it is disabled.
1583
1584 @item channel
1585 Set for which IR channel to display frequency response. By default is first channel
1586 displayed. This option is used only when @var{response} is enabled.
1587
1588 @item size
1589 Set video stream size. This option is used only when @var{response} is enabled.
1590 @end table
1591
1592 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1593 order.
1594
1595 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1596 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1597 imaginary unit.
1598
1599 Different coefficients and gains can be provided for every channel, in such case
1600 use '|' to separate coefficients or gains. Last provided coefficients will be
1601 used for all remaining channels.
1602
1603 @subsection Examples
1604
1605 @itemize
1606 @item
1607 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1608 @example
1609 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1610 @end example
1611
1612 @item
1613 Same as above but in @code{zp} format:
1614 @example
1615 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1616 @end example
1617
1618 @item
1619 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1620 @example
1621 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1622 @end example
1623 @end itemize
1624
1625 @section alimiter
1626
1627 The limiter prevents an input signal from rising over a desired threshold.
1628 This limiter uses lookahead technology to prevent your signal from distorting.
1629 It means that there is a small delay after the signal is processed. Keep in mind
1630 that the delay it produces is the attack time you set.
1631
1632 The filter accepts the following options:
1633
1634 @table @option
1635 @item level_in
1636 Set input gain. Default is 1.
1637
1638 @item level_out
1639 Set output gain. Default is 1.
1640
1641 @item limit
1642 Don't let signals above this level pass the limiter. Default is 1.
1643
1644 @item attack
1645 The limiter will reach its attenuation level in this amount of time in
1646 milliseconds. Default is 5 milliseconds.
1647
1648 @item release
1649 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1650 Default is 50 milliseconds.
1651
1652 @item asc
1653 When gain reduction is always needed ASC takes care of releasing to an
1654 average reduction level rather than reaching a reduction of 0 in the release
1655 time.
1656
1657 @item asc_level
1658 Select how much the release time is affected by ASC, 0 means nearly no changes
1659 in release time while 1 produces higher release times.
1660
1661 @item level
1662 Auto level output signal. Default is enabled.
1663 This normalizes audio back to 0dB if enabled.
1664 @end table
1665
1666 Depending on picked setting it is recommended to upsample input 2x or 4x times
1667 with @ref{aresample} before applying this filter.
1668
1669 @section allpass
1670
1671 Apply a two-pole all-pass filter with central frequency (in Hz)
1672 @var{frequency}, and filter-width @var{width}.
1673 An all-pass filter changes the audio's frequency to phase relationship
1674 without changing its frequency to amplitude relationship.
1675
1676 The filter accepts the following options:
1677
1678 @table @option
1679 @item frequency, f
1680 Set frequency in Hz.
1681
1682 @item width_type, t
1683 Set method to specify band-width of filter.
1684 @table @option
1685 @item h
1686 Hz
1687 @item q
1688 Q-Factor
1689 @item o
1690 octave
1691 @item s
1692 slope
1693 @item k
1694 kHz
1695 @end table
1696
1697 @item width, w
1698 Specify the band-width of a filter in width_type units.
1699
1700 @item mix, m
1701 How much to use filtered signal in output. Default is 1.
1702 Range is between 0 and 1.
1703
1704 @item channels, c
1705 Specify which channels to filter, by default all available are filtered.
1706
1707 @item normalize, n
1708 Normalize biquad coefficients, by default is disabled.
1709 Enabling it will normalize magnitude response at DC to 0dB.
1710
1711 @item order, o
1712 Set the filter order, can be 1 or 2. Default is 2.
1713
1714 @item transform, a
1715 Set transform type of IIR filter.
1716 @table @option
1717 @item di
1718 @item dii
1719 @item tdii
1720 @item latt
1721 @end table
1722
1723 @item precision, r
1724 Set precison of filtering.
1725 @table @option
1726 @item auto
1727 Pick automatic sample format depending on surround filters.
1728 @item s16
1729 Always use signed 16-bit.
1730 @item s32
1731 Always use signed 32-bit.
1732 @item f32
1733 Always use float 32-bit.
1734 @item f64
1735 Always use float 64-bit.
1736 @end table
1737 @end table
1738
1739 @subsection Commands
1740
1741 This filter supports the following commands:
1742 @table @option
1743 @item frequency, f
1744 Change allpass frequency.
1745 Syntax for the command is : "@var{frequency}"
1746
1747 @item width_type, t
1748 Change allpass width_type.
1749 Syntax for the command is : "@var{width_type}"
1750
1751 @item width, w
1752 Change allpass width.
1753 Syntax for the command is : "@var{width}"
1754
1755 @item mix, m
1756 Change allpass mix.
1757 Syntax for the command is : "@var{mix}"
1758 @end table
1759
1760 @section aloop
1761
1762 Loop audio samples.
1763
1764 The filter accepts the following options:
1765
1766 @table @option
1767 @item loop
1768 Set the number of loops. Setting this value to -1 will result in infinite loops.
1769 Default is 0.
1770
1771 @item size
1772 Set maximal number of samples. Default is 0.
1773
1774 @item start
1775 Set first sample of loop. Default is 0.
1776 @end table
1777
1778 @anchor{amerge}
1779 @section amerge
1780
1781 Merge two or more audio streams into a single multi-channel stream.
1782
1783 The filter accepts the following options:
1784
1785 @table @option
1786
1787 @item inputs
1788 Set the number of inputs. Default is 2.
1789
1790 @end table
1791
1792 If the channel layouts of the inputs are disjoint, and therefore compatible,
1793 the channel layout of the output will be set accordingly and the channels
1794 will be reordered as necessary. If the channel layouts of the inputs are not
1795 disjoint, the output will have all the channels of the first input then all
1796 the channels of the second input, in that order, and the channel layout of
1797 the output will be the default value corresponding to the total number of
1798 channels.
1799
1800 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1801 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1802 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1803 first input, b1 is the first channel of the second input).
1804
1805 On the other hand, if both input are in stereo, the output channels will be
1806 in the default order: a1, a2, b1, b2, and the channel layout will be
1807 arbitrarily set to 4.0, which may or may not be the expected value.
1808
1809 All inputs must have the same sample rate, and format.
1810
1811 If inputs do not have the same duration, the output will stop with the
1812 shortest.
1813
1814 @subsection Examples
1815
1816 @itemize
1817 @item
1818 Merge two mono files into a stereo stream:
1819 @example
1820 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1821 @end example
1822
1823 @item
1824 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1825 @example
1826 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1827 @end example
1828 @end itemize
1829
1830 @section amix
1831
1832 Mixes multiple audio inputs into a single output.
1833
1834 Note that this filter only supports float samples (the @var{amerge}
1835 and @var{pan} audio filters support many formats). If the @var{amix}
1836 input has integer samples then @ref{aresample} will be automatically
1837 inserted to perform the conversion to float samples.
1838
1839 For example
1840 @example
1841 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1842 @end example
1843 will mix 3 input audio streams to a single output with the same duration as the
1844 first input and a dropout transition time of 3 seconds.
1845
1846 It accepts the following parameters:
1847 @table @option
1848
1849 @item inputs
1850 The number of inputs. If unspecified, it defaults to 2.
1851
1852 @item duration
1853 How to determine the end-of-stream.
1854 @table @option
1855
1856 @item longest
1857 The duration of the longest input. (default)
1858
1859 @item shortest
1860 The duration of the shortest input.
1861
1862 @item first
1863 The duration of the first input.
1864
1865 @end table
1866
1867 @item dropout_transition
1868 The transition time, in seconds, for volume renormalization when an input
1869 stream ends. The default value is 2 seconds.
1870
1871 @item weights
1872 Specify weight of each input audio stream as sequence.
1873 Each weight is separated by space. By default all inputs have same weight.
1874 @end table
1875
1876 @subsection Commands
1877
1878 This filter supports the following commands:
1879 @table @option
1880 @item weights
1881 Syntax is same as option with same name.
1882 @end table
1883
1884 @section amultiply
1885
1886 Multiply first audio stream with second audio stream and store result
1887 in output audio stream. Multiplication is done by multiplying each
1888 sample from first stream with sample at same position from second stream.
1889
1890 With this element-wise multiplication one can create amplitude fades and
1891 amplitude modulations.
1892
1893 @section anequalizer
1894
1895 High-order parametric multiband equalizer for each channel.
1896
1897 It accepts the following parameters:
1898 @table @option
1899 @item params
1900
1901 This option string is in format:
1902 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1903 Each equalizer band is separated by '|'.
1904
1905 @table @option
1906 @item chn
1907 Set channel number to which equalization will be applied.
1908 If input doesn't have that channel the entry is ignored.
1909
1910 @item f
1911 Set central frequency for band.
1912 If input doesn't have that frequency the entry is ignored.
1913
1914 @item w
1915 Set band width in Hertz.
1916
1917 @item g
1918 Set band gain in dB.
1919
1920 @item t
1921 Set filter type for band, optional, can be:
1922
1923 @table @samp
1924 @item 0
1925 Butterworth, this is default.
1926
1927 @item 1
1928 Chebyshev type 1.
1929
1930 @item 2
1931 Chebyshev type 2.
1932 @end table
1933 @end table
1934
1935 @item curves
1936 With this option activated frequency response of anequalizer is displayed
1937 in video stream.
1938
1939 @item size
1940 Set video stream size. Only useful if curves option is activated.
1941
1942 @item mgain
1943 Set max gain that will be displayed. Only useful if curves option is activated.
1944 Setting this to a reasonable value makes it possible to display gain which is derived from
1945 neighbour bands which are too close to each other and thus produce higher gain
1946 when both are activated.
1947
1948 @item fscale
1949 Set frequency scale used to draw frequency response in video output.
1950 Can be linear or logarithmic. Default is logarithmic.
1951
1952 @item colors
1953 Set color for each channel curve which is going to be displayed in video stream.
1954 This is list of color names separated by space or by '|'.
1955 Unrecognised or missing colors will be replaced by white color.
1956 @end table
1957
1958 @subsection Examples
1959
1960 @itemize
1961 @item
1962 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1963 for first 2 channels using Chebyshev type 1 filter:
1964 @example
1965 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1966 @end example
1967 @end itemize
1968
1969 @subsection Commands
1970
1971 This filter supports the following commands:
1972 @table @option
1973 @item change
1974 Alter existing filter parameters.
1975 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1976
1977 @var{fN} is existing filter number, starting from 0, if no such filter is available
1978 error is returned.
1979 @var{freq} set new frequency parameter.
1980 @var{width} set new width parameter in Hertz.
1981 @var{gain} set new gain parameter in dB.
1982
1983 Full filter invocation with asendcmd may look like this:
1984 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1985 @end table
1986
1987 @section anlmdn
1988
1989 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1990
1991 Each sample is adjusted by looking for other samples with similar contexts. This
1992 context similarity is defined by comparing their surrounding patches of size
1993 @option{p}. Patches are searched in an area of @option{r} around the sample.
1994
1995 The filter accepts the following options:
1996
1997 @table @option
1998 @item s
1999 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2000
2001 @item p
2002 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2003 Default value is 2 milliseconds.
2004
2005 @item r
2006 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2007 Default value is 6 milliseconds.
2008
2009 @item o
2010 Set the output mode.
2011
2012 It accepts the following values:
2013 @table @option
2014 @item i
2015 Pass input unchanged.
2016
2017 @item o
2018 Pass noise filtered out.
2019
2020 @item n
2021 Pass only noise.
2022
2023 Default value is @var{o}.
2024 @end table
2025
2026 @item m
2027 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2028 @end table
2029
2030 @subsection Commands
2031
2032 This filter supports the all above options as @ref{commands}.
2033
2034 @section anlms
2035 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2036
2037 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2038 relate to producing the least mean square of the error signal (difference between the desired,
2039 2nd input audio stream and the actual signal, the 1st input audio stream).
2040
2041 A description of the accepted options follows.
2042
2043 @table @option
2044 @item order
2045 Set filter order.
2046
2047 @item mu
2048 Set filter mu.
2049
2050 @item eps
2051 Set the filter eps.
2052
2053 @item leakage
2054 Set the filter leakage.
2055
2056 @item out_mode
2057 It accepts the following values:
2058 @table @option
2059 @item i
2060 Pass the 1st input.
2061
2062 @item d
2063 Pass the 2nd input.
2064
2065 @item o
2066 Pass filtered samples.
2067
2068 @item n
2069 Pass difference between desired and filtered samples.
2070
2071 Default value is @var{o}.
2072 @end table
2073 @end table
2074
2075 @subsection Examples
2076
2077 @itemize
2078 @item
2079 One of many usages of this filter is noise reduction, input audio is filtered
2080 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2081 @example
2082 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2083 @end example
2084 @end itemize
2085
2086 @subsection Commands
2087
2088 This filter supports the same commands as options, excluding option @code{order}.
2089
2090 @section anull
2091
2092 Pass the audio source unchanged to the output.
2093
2094 @section apad
2095
2096 Pad the end of an audio stream with silence.
2097
2098 This can be used together with @command{ffmpeg} @option{-shortest} to
2099 extend audio streams to the same length as the video stream.
2100
2101 A description of the accepted options follows.
2102
2103 @table @option
2104 @item packet_size
2105 Set silence packet size. Default value is 4096.
2106
2107 @item pad_len
2108 Set the number of samples of silence to add to the end. After the
2109 value is reached, the stream is terminated. This option is mutually
2110 exclusive with @option{whole_len}.
2111
2112 @item whole_len
2113 Set the minimum total number of samples in the output audio stream. If
2114 the value is longer than the input audio length, silence is added to
2115 the end, until the value is reached. This option is mutually exclusive
2116 with @option{pad_len}.
2117
2118 @item pad_dur
2119 Specify the duration of samples of silence to add. See
2120 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2121 for the accepted syntax. Used only if set to non-zero value.
2122
2123 @item whole_dur
2124 Specify the minimum total duration in the output audio stream. See
2125 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2126 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2127 the input audio length, silence is added to the end, until the value is reached.
2128 This option is mutually exclusive with @option{pad_dur}
2129 @end table
2130
2131 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2132 nor @option{whole_dur} option is set, the filter will add silence to the end of
2133 the input stream indefinitely.
2134
2135 @subsection Examples
2136
2137 @itemize
2138 @item
2139 Add 1024 samples of silence to the end of the input:
2140 @example
2141 apad=pad_len=1024
2142 @end example
2143
2144 @item
2145 Make sure the audio output will contain at least 10000 samples, pad
2146 the input with silence if required:
2147 @example
2148 apad=whole_len=10000
2149 @end example
2150
2151 @item
2152 Use @command{ffmpeg} to pad the audio input with silence, so that the
2153 video stream will always result the shortest and will be converted
2154 until the end in the output file when using the @option{shortest}
2155 option:
2156 @example
2157 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2158 @end example
2159 @end itemize
2160
2161 @section aphaser
2162 Add a phasing effect to the input audio.
2163
2164 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2165 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2166
2167 A description of the accepted parameters follows.
2168
2169 @table @option
2170 @item in_gain
2171 Set input gain. Default is 0.4.
2172
2173 @item out_gain
2174 Set output gain. Default is 0.74
2175
2176 @item delay
2177 Set delay in milliseconds. Default is 3.0.
2178
2179 @item decay
2180 Set decay. Default is 0.4.
2181
2182 @item speed
2183 Set modulation speed in Hz. Default is 0.5.
2184
2185 @item type
2186 Set modulation type. Default is triangular.
2187
2188 It accepts the following values:
2189 @table @samp
2190 @item triangular, t
2191 @item sinusoidal, s
2192 @end table
2193 @end table
2194
2195 @section aphaseshift
2196 Apply phase shift to input audio samples.
2197
2198 The filter accepts the following options:
2199
2200 @table @option
2201 @item shift
2202 Specify phase shift. Allowed range is from -1.0 to 1.0.
2203 Default value is 0.0.
2204
2205 @item level
2206 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2207 Default value is 1.0.
2208 @end table
2209
2210 @subsection Commands
2211
2212 This filter supports the all above options as @ref{commands}.
2213
2214 @section apulsator
2215
2216 Audio pulsator is something between an autopanner and a tremolo.
2217 But it can produce funny stereo effects as well. Pulsator changes the volume
2218 of the left and right channel based on a LFO (low frequency oscillator) with
2219 different waveforms and shifted phases.
2220 This filter have the ability to define an offset between left and right
2221 channel. An offset of 0 means that both LFO shapes match each other.
2222 The left and right channel are altered equally - a conventional tremolo.
2223 An offset of 50% means that the shape of the right channel is exactly shifted
2224 in phase (or moved backwards about half of the frequency) - pulsator acts as
2225 an autopanner. At 1 both curves match again. Every setting in between moves the
2226 phase shift gapless between all stages and produces some "bypassing" sounds with
2227 sine and triangle waveforms. The more you set the offset near 1 (starting from
2228 the 0.5) the faster the signal passes from the left to the right speaker.
2229
2230 The filter accepts the following options:
2231
2232 @table @option
2233 @item level_in
2234 Set input gain. By default it is 1. Range is [0.015625 - 64].
2235
2236 @item level_out
2237 Set output gain. By default it is 1. Range is [0.015625 - 64].
2238
2239 @item mode
2240 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2241 sawup or sawdown. Default is sine.
2242
2243 @item amount
2244 Set modulation. Define how much of original signal is affected by the LFO.
2245
2246 @item offset_l
2247 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2248
2249 @item offset_r
2250 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2251
2252 @item width
2253 Set pulse width. Default is 1. Allowed range is [0 - 2].
2254
2255 @item timing
2256 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2257
2258 @item bpm
2259 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2260 is set to bpm.
2261
2262 @item ms
2263 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2264 is set to ms.
2265
2266 @item hz
2267 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2268 if timing is set to hz.
2269 @end table
2270
2271 @anchor{aresample}
2272 @section aresample
2273
2274 Resample the input audio to the specified parameters, using the
2275 libswresample library. If none are specified then the filter will
2276 automatically convert between its input and output.
2277
2278 This filter is also able to stretch/squeeze the audio data to make it match
2279 the timestamps or to inject silence / cut out audio to make it match the
2280 timestamps, do a combination of both or do neither.
2281
2282 The filter accepts the syntax
2283 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2284 expresses a sample rate and @var{resampler_options} is a list of
2285 @var{key}=@var{value} pairs, separated by ":". See the
2286 @ref{Resampler Options,,"Resampler Options" section in the
2287 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2288 for the complete list of supported options.
2289
2290 @subsection Examples
2291
2292 @itemize
2293 @item
2294 Resample the input audio to 44100Hz:
2295 @example
2296 aresample=44100
2297 @end example
2298
2299 @item
2300 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2301 samples per second compensation:
2302 @example
2303 aresample=async=1000
2304 @end example
2305 @end itemize
2306
2307 @section areverse
2308
2309 Reverse an audio clip.
2310
2311 Warning: This filter requires memory to buffer the entire clip, so trimming
2312 is suggested.
2313
2314 @subsection Examples
2315
2316 @itemize
2317 @item
2318 Take the first 5 seconds of a clip, and reverse it.
2319 @example
2320 atrim=end=5,areverse
2321 @end example
2322 @end itemize
2323
2324 @section arnndn
2325
2326 Reduce noise from speech using Recurrent Neural Networks.
2327
2328 This filter accepts the following options:
2329
2330 @table @option
2331 @item model, m
2332 Set train model file to load. This option is always required.
2333
2334 @item mix
2335 Set how much to mix filtered samples into final output.
2336 Allowed range is from -1 to 1. Default value is 1.
2337 Negative values are special, they set how much to keep filtered noise
2338 in the final filter output. Set this option to -1 to hear actual
2339 noise removed from input signal.
2340 @end table
2341
2342 @section asetnsamples
2343
2344 Set the number of samples per each output audio frame.
2345
2346 The last output packet may contain a different number of samples, as
2347 the filter will flush all the remaining samples when the input audio
2348 signals its end.
2349
2350 The filter accepts the following options:
2351
2352 @table @option
2353
2354 @item nb_out_samples, n
2355 Set the number of frames per each output audio frame. The number is
2356 intended as the number of samples @emph{per each channel}.
2357 Default value is 1024.
2358
2359 @item pad, p
2360 If set to 1, the filter will pad the last audio frame with zeroes, so
2361 that the last frame will contain the same number of samples as the
2362 previous ones. Default value is 1.
2363 @end table
2364
2365 For example, to set the number of per-frame samples to 1234 and
2366 disable padding for the last frame, use:
2367 @example
2368 asetnsamples=n=1234:p=0
2369 @end example
2370
2371 @section asetrate
2372
2373 Set the sample rate without altering the PCM data.
2374 This will result in a change of speed and pitch.
2375
2376 The filter accepts the following options:
2377
2378 @table @option
2379 @item sample_rate, r
2380 Set the output sample rate. Default is 44100 Hz.
2381 @end table
2382
2383 @section ashowinfo
2384
2385 Show a line containing various information for each input audio frame.
2386 The input audio is not modified.
2387
2388 The shown line contains a sequence of key/value pairs of the form
2389 @var{key}:@var{value}.
2390
2391 The following values are shown in the output:
2392
2393 @table @option
2394 @item n
2395 The (sequential) number of the input frame, starting from 0.
2396
2397 @item pts
2398 The presentation timestamp of the input frame, in time base units; the time base
2399 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2400
2401 @item pts_time
2402 The presentation timestamp of the input frame in seconds.
2403
2404 @item pos
2405 position of the frame in the input stream, -1 if this information in
2406 unavailable and/or meaningless (for example in case of synthetic audio)
2407
2408 @item fmt
2409 The sample format.
2410
2411 @item chlayout
2412 The channel layout.
2413
2414 @item rate
2415 The sample rate for the audio frame.
2416
2417 @item nb_samples
2418 The number of samples (per channel) in the frame.
2419
2420 @item checksum
2421 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2422 audio, the data is treated as if all the planes were concatenated.
2423
2424 @item plane_checksums
2425 A list of Adler-32 checksums for each data plane.
2426 @end table
2427
2428 @section asoftclip
2429 Apply audio soft clipping.
2430
2431 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2432 along a smooth curve, rather than the abrupt shape of hard-clipping.
2433
2434 This filter accepts the following options:
2435
2436 @table @option
2437 @item type
2438 Set type of soft-clipping.
2439
2440 It accepts the following values:
2441 @table @option
2442 @item hard
2443 @item tanh
2444 @item atan
2445 @item cubic
2446 @item exp
2447 @item alg
2448 @item quintic
2449 @item sin
2450 @item erf
2451 @end table
2452
2453 @item param
2454 Set additional parameter which controls sigmoid function.
2455
2456 @item oversample
2457 Set oversampling factor.
2458 @end table
2459
2460 @subsection Commands
2461
2462 This filter supports the all above options as @ref{commands}.
2463
2464 @section asr
2465 Automatic Speech Recognition
2466
2467 This filter uses PocketSphinx for speech recognition. To enable
2468 compilation of this filter, you need to configure FFmpeg with
2469 @code{--enable-pocketsphinx}.
2470
2471 It accepts the following options:
2472
2473 @table @option
2474 @item rate
2475 Set sampling rate of input audio. Defaults is @code{16000}.
2476 This need to match speech models, otherwise one will get poor results.
2477
2478 @item hmm
2479 Set dictionary containing acoustic model files.
2480
2481 @item dict
2482 Set pronunciation dictionary.
2483
2484 @item lm
2485 Set language model file.
2486
2487 @item lmctl
2488 Set language model set.
2489
2490 @item lmname
2491 Set which language model to use.
2492
2493 @item logfn
2494 Set output for log messages.
2495 @end table
2496
2497 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2498
2499 @anchor{astats}
2500 @section astats
2501
2502 Display time domain statistical information about the audio channels.
2503 Statistics are calculated and displayed for each audio channel and,
2504 where applicable, an overall figure is also given.
2505
2506 It accepts the following option:
2507 @table @option
2508 @item length
2509 Short window length in seconds, used for peak and trough RMS measurement.
2510 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2511
2512 @item metadata
2513
2514 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2515 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2516 disabled.
2517
2518 Available keys for each channel are:
2519 DC_offset
2520 Min_level
2521 Max_level
2522 Min_difference
2523 Max_difference
2524 Mean_difference
2525 RMS_difference
2526 Peak_level
2527 RMS_peak
2528 RMS_trough
2529 Crest_factor
2530 Flat_factor
2531 Peak_count
2532 Noise_floor
2533 Noise_floor_count
2534 Bit_depth
2535 Dynamic_range
2536 Zero_crossings
2537 Zero_crossings_rate
2538 Number_of_NaNs
2539 Number_of_Infs
2540 Number_of_denormals
2541
2542 and for Overall:
2543 DC_offset
2544 Min_level
2545 Max_level
2546 Min_difference
2547 Max_difference
2548 Mean_difference
2549 RMS_difference
2550 Peak_level
2551 RMS_level
2552 RMS_peak
2553 RMS_trough
2554 Flat_factor
2555 Peak_count
2556 Noise_floor
2557 Noise_floor_count
2558 Bit_depth
2559 Number_of_samples
2560 Number_of_NaNs
2561 Number_of_Infs
2562 Number_of_denormals
2563
2564 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2565 this @code{lavfi.astats.Overall.Peak_count}.
2566
2567 For description what each key means read below.
2568
2569 @item reset
2570 Set number of frame after which stats are going to be recalculated.
2571 Default is disabled.
2572
2573 @item measure_perchannel
2574 Select the entries which need to be measured per channel. The metadata keys can
2575 be used as flags, default is @option{all} which measures everything.
2576 @option{none} disables all per channel measurement.
2577
2578 @item measure_overall
2579 Select the entries which need to be measured overall. The metadata keys can
2580 be used as flags, default is @option{all} which measures everything.
2581 @option{none} disables all overall measurement.
2582
2583 @end table
2584
2585 A description of each shown parameter follows:
2586
2587 @table @option
2588 @item DC offset
2589 Mean amplitude displacement from zero.
2590
2591 @item Min level
2592 Minimal sample level.
2593
2594 @item Max level
2595 Maximal sample level.
2596
2597 @item Min difference
2598 Minimal difference between two consecutive samples.
2599
2600 @item Max difference
2601 Maximal difference between two consecutive samples.
2602
2603 @item Mean difference
2604 Mean difference between two consecutive samples.
2605 The average of each difference between two consecutive samples.
2606
2607 @item RMS difference
2608 Root Mean Square difference between two consecutive samples.
2609
2610 @item Peak level dB
2611 @item RMS level dB
2612 Standard peak and RMS level measured in dBFS.
2613
2614 @item RMS peak dB
2615 @item RMS trough dB
2616 Peak and trough values for RMS level measured over a short window.
2617
2618 @item Crest factor
2619 Standard ratio of peak to RMS level (note: not in dB).
2620
2621 @item Flat factor
2622 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2623 (i.e. either @var{Min level} or @var{Max level}).
2624
2625 @item Peak count
2626 Number of occasions (not the number of samples) that the signal attained either
2627 @var{Min level} or @var{Max level}.
2628
2629 @item Noise floor dB
2630 Minimum local peak measured in dBFS over a short window.
2631
2632 @item Noise floor count
2633 Number of occasions (not the number of samples) that the signal attained
2634 @var{Noise floor}.
2635
2636 @item Bit depth
2637 Overall bit depth of audio. Number of bits used for each sample.
2638
2639 @item Dynamic range
2640 Measured dynamic range of audio in dB.
2641
2642 @item Zero crossings
2643 Number of points where the waveform crosses the zero level axis.
2644
2645 @item Zero crossings rate
2646 Rate of Zero crossings and number of audio samples.
2647 @end table
2648
2649 @section asubboost
2650 Boost subwoofer frequencies.
2651
2652 The filter accepts the following options:
2653
2654 @table @option
2655 @item dry
2656 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2657 Default value is 0.7.
2658
2659 @item wet
2660 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2661 Default value is 0.7.
2662
2663 @item decay
2664 Set delay line decay gain value. Allowed range is from 0 to 1.
2665 Default value is 0.7.
2666
2667 @item feedback
2668 Set delay line feedback gain value. Allowed range is from 0 to 1.
2669 Default value is 0.9.
2670
2671 @item cutoff
2672 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2673 Default value is 100.
2674
2675 @item slope
2676 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2677 Default value is 0.5.
2678
2679 @item delay
2680 Set delay. Allowed range is from 1 to 100.
2681 Default value is 20.
2682 @end table
2683
2684 @subsection Commands
2685
2686 This filter supports the all above options as @ref{commands}.
2687
2688 @section asubcut
2689 Cut subwoofer frequencies.
2690
2691 This filter allows to set custom, steeper
2692 roll off than highpass filter, and thus is able to more attenuate
2693 frequency content in stop-band.
2694
2695 The filter accepts the following options:
2696
2697 @table @option
2698 @item cutoff
2699 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2700 Default value is 20.
2701
2702 @item order
2703 Set filter order. Available values are from 3 to 20.
2704 Default value is 10.
2705
2706 @item level
2707 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2708 @end table
2709
2710 @subsection Commands
2711
2712 This filter supports the all above options as @ref{commands}.
2713
2714 @section asupercut
2715 Cut super frequencies.
2716
2717 The filter accepts the following options:
2718
2719 @table @option
2720 @item cutoff
2721 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2722 Default value is 20000.
2723
2724 @item order
2725 Set filter order. Available values are from 3 to 20.
2726 Default value is 10.
2727
2728 @item level
2729 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2730 @end table
2731
2732 @subsection Commands
2733
2734 This filter supports the all above options as @ref{commands}.
2735
2736 @section atempo
2737
2738 Adjust audio tempo.
2739
2740 The filter accepts exactly one parameter, the audio tempo. If not
2741 specified then the filter will assume nominal 1.0 tempo. Tempo must
2742 be in the [0.5, 100.0] range.
2743
2744 Note that tempo greater than 2 will skip some samples rather than
2745 blend them in.  If for any reason this is a concern it is always
2746 possible to daisy-chain several instances of atempo to achieve the
2747 desired product tempo.
2748
2749 @subsection Examples
2750
2751 @itemize
2752 @item
2753 Slow down audio to 80% tempo:
2754 @example
2755 atempo=0.8
2756 @end example
2757
2758 @item
2759 To speed up audio to 300% tempo:
2760 @example
2761 atempo=3
2762 @end example
2763
2764 @item
2765 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2766 @example
2767 atempo=sqrt(3),atempo=sqrt(3)
2768 @end example
2769 @end itemize
2770
2771 @subsection Commands
2772
2773 This filter supports the following commands:
2774 @table @option
2775 @item tempo
2776 Change filter tempo scale factor.
2777 Syntax for the command is : "@var{tempo}"
2778 @end table
2779
2780 @section atrim
2781
2782 Trim the input so that the output contains one continuous subpart of the input.
2783
2784 It accepts the following parameters:
2785 @table @option
2786 @item start
2787 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2788 sample with the timestamp @var{start} will be the first sample in the output.
2789
2790 @item end
2791 Specify time of the first audio sample that will be dropped, i.e. the
2792 audio sample immediately preceding the one with the timestamp @var{end} will be
2793 the last sample in the output.
2794
2795 @item start_pts
2796 Same as @var{start}, except this option sets the start timestamp in samples
2797 instead of seconds.
2798
2799 @item end_pts
2800 Same as @var{end}, except this option sets the end timestamp in samples instead
2801 of seconds.
2802
2803 @item duration
2804 The maximum duration of the output in seconds.
2805
2806 @item start_sample
2807 The number of the first sample that should be output.
2808
2809 @item end_sample
2810 The number of the first sample that should be dropped.
2811 @end table
2812
2813 @option{start}, @option{end}, and @option{duration} are expressed as time
2814 duration specifications; see
2815 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2816
2817 Note that the first two sets of the start/end options and the @option{duration}
2818 option look at the frame timestamp, while the _sample options simply count the
2819 samples that pass through the filter. So start/end_pts and start/end_sample will
2820 give different results when the timestamps are wrong, inexact or do not start at
2821 zero. Also note that this filter does not modify the timestamps. If you wish
2822 to have the output timestamps start at zero, insert the asetpts filter after the
2823 atrim filter.
2824
2825 If multiple start or end options are set, this filter tries to be greedy and
2826 keep all samples that match at least one of the specified constraints. To keep
2827 only the part that matches all the constraints at once, chain multiple atrim
2828 filters.
2829
2830 The defaults are such that all the input is kept. So it is possible to set e.g.
2831 just the end values to keep everything before the specified time.
2832
2833 Examples:
2834 @itemize
2835 @item
2836 Drop everything except the second minute of input:
2837 @example
2838 ffmpeg -i INPUT -af atrim=60:120
2839 @end example
2840
2841 @item
2842 Keep only the first 1000 samples:
2843 @example
2844 ffmpeg -i INPUT -af atrim=end_sample=1000
2845 @end example
2846
2847 @end itemize
2848
2849 @section axcorrelate
2850 Calculate normalized cross-correlation between two input audio streams.
2851
2852 Resulted samples are always between -1 and 1 inclusive.
2853 If result is 1 it means two input samples are highly correlated in that selected segment.
2854 Result 0 means they are not correlated at all.
2855 If result is -1 it means two input samples are out of phase, which means they cancel each
2856 other.
2857
2858 The filter accepts the following options:
2859
2860 @table @option
2861 @item size
2862 Set size of segment over which cross-correlation is calculated.
2863 Default is 256. Allowed range is from 2 to 131072.
2864
2865 @item algo
2866 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2867 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2868 are always zero and thus need much less calculations to make.
2869 This is generally not true, but is valid for typical audio streams.
2870 @end table
2871
2872 @subsection Examples
2873
2874 @itemize
2875 @item
2876 Calculate correlation between channels in stereo audio stream:
2877 @example
2878 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2879 @end example
2880 @end itemize
2881
2882 @section bandpass
2883
2884 Apply a two-pole Butterworth band-pass filter with central
2885 frequency @var{frequency}, and (3dB-point) band-width width.
2886 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2887 instead of the default: constant 0dB peak gain.
2888 The filter roll off at 6dB per octave (20dB per decade).
2889
2890 The filter accepts the following options:
2891
2892 @table @option
2893 @item frequency, f
2894 Set the filter's central frequency. Default is @code{3000}.
2895
2896 @item csg
2897 Constant skirt gain if set to 1. Defaults to 0.
2898
2899 @item width_type, t
2900 Set method to specify band-width of filter.
2901 @table @option
2902 @item h
2903 Hz
2904 @item q
2905 Q-Factor
2906 @item o
2907 octave
2908 @item s
2909 slope
2910 @item k
2911 kHz
2912 @end table
2913
2914 @item width, w
2915 Specify the band-width of a filter in width_type units.
2916
2917 @item mix, m
2918 How much to use filtered signal in output. Default is 1.
2919 Range is between 0 and 1.
2920
2921 @item channels, c
2922 Specify which channels to filter, by default all available are filtered.
2923
2924 @item normalize, n
2925 Normalize biquad coefficients, by default is disabled.
2926 Enabling it will normalize magnitude response at DC to 0dB.
2927
2928 @item transform, a
2929 Set transform type of IIR filter.
2930 @table @option
2931 @item di
2932 @item dii
2933 @item tdii
2934 @item latt
2935 @end table
2936
2937 @item precision, r
2938 Set precison of filtering.
2939 @table @option
2940 @item auto
2941 Pick automatic sample format depending on surround filters.
2942 @item s16
2943 Always use signed 16-bit.
2944 @item s32
2945 Always use signed 32-bit.
2946 @item f32
2947 Always use float 32-bit.
2948 @item f64
2949 Always use float 64-bit.
2950 @end table
2951 @end table
2952
2953 @subsection Commands
2954
2955 This filter supports the following commands:
2956 @table @option
2957 @item frequency, f
2958 Change bandpass frequency.
2959 Syntax for the command is : "@var{frequency}"
2960
2961 @item width_type, t
2962 Change bandpass width_type.
2963 Syntax for the command is : "@var{width_type}"
2964
2965 @item width, w
2966 Change bandpass width.
2967 Syntax for the command is : "@var{width}"
2968
2969 @item mix, m
2970 Change bandpass mix.
2971 Syntax for the command is : "@var{mix}"
2972 @end table
2973
2974 @section bandreject
2975
2976 Apply a two-pole Butterworth band-reject filter with central
2977 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2978 The filter roll off at 6dB per octave (20dB per decade).
2979
2980 The filter accepts the following options:
2981
2982 @table @option
2983 @item frequency, f
2984 Set the filter's central frequency. Default is @code{3000}.
2985
2986 @item width_type, t
2987 Set method to specify band-width of filter.
2988 @table @option
2989 @item h
2990 Hz
2991 @item q
2992 Q-Factor
2993 @item o
2994 octave
2995 @item s
2996 slope
2997 @item k
2998 kHz
2999 @end table
3000
3001 @item width, w
3002 Specify the band-width of a filter in width_type units.
3003
3004 @item mix, m
3005 How much to use filtered signal in output. Default is 1.
3006 Range is between 0 and 1.
3007
3008 @item channels, c
3009 Specify which channels to filter, by default all available are filtered.
3010
3011 @item normalize, n
3012 Normalize biquad coefficients, by default is disabled.
3013 Enabling it will normalize magnitude response at DC to 0dB.
3014
3015 @item transform, a
3016 Set transform type of IIR filter.
3017 @table @option
3018 @item di
3019 @item dii
3020 @item tdii
3021 @item latt
3022 @end table
3023
3024 @item precision, r
3025 Set precison of filtering.
3026 @table @option
3027 @item auto
3028 Pick automatic sample format depending on surround filters.
3029 @item s16
3030 Always use signed 16-bit.
3031 @item s32
3032 Always use signed 32-bit.
3033 @item f32
3034 Always use float 32-bit.
3035 @item f64
3036 Always use float 64-bit.
3037 @end table
3038 @end table
3039
3040 @subsection Commands
3041
3042 This filter supports the following commands:
3043 @table @option
3044 @item frequency, f
3045 Change bandreject frequency.
3046 Syntax for the command is : "@var{frequency}"
3047
3048 @item width_type, t
3049 Change bandreject width_type.
3050 Syntax for the command is : "@var{width_type}"
3051
3052 @item width, w
3053 Change bandreject width.
3054 Syntax for the command is : "@var{width}"
3055
3056 @item mix, m
3057 Change bandreject mix.
3058 Syntax for the command is : "@var{mix}"
3059 @end table
3060
3061 @section bass, lowshelf
3062
3063 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3064 shelving filter with a response similar to that of a standard
3065 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3066
3067 The filter accepts the following options:
3068
3069 @table @option
3070 @item gain, g
3071 Give the gain at 0 Hz. Its useful range is about -20
3072 (for a large cut) to +20 (for a large boost).
3073 Beware of clipping when using a positive gain.
3074
3075 @item frequency, f
3076 Set the filter's central frequency and so can be used
3077 to extend or reduce the frequency range to be boosted or cut.
3078 The default value is @code{100} Hz.
3079
3080 @item width_type, t
3081 Set method to specify band-width of filter.
3082 @table @option
3083 @item h
3084 Hz
3085 @item q
3086 Q-Factor
3087 @item o
3088 octave
3089 @item s
3090 slope
3091 @item k
3092 kHz
3093 @end table
3094
3095 @item width, w
3096 Determine how steep is the filter's shelf transition.
3097
3098 @item mix, m
3099 How much to use filtered signal in output. Default is 1.
3100 Range is between 0 and 1.
3101
3102 @item channels, c
3103 Specify which channels to filter, by default all available are filtered.
3104
3105 @item normalize, n
3106 Normalize biquad coefficients, by default is disabled.
3107 Enabling it will normalize magnitude response at DC to 0dB.
3108
3109 @item transform, a
3110 Set transform type of IIR filter.
3111 @table @option
3112 @item di
3113 @item dii
3114 @item tdii
3115 @item latt
3116 @end table
3117
3118 @item precision, r
3119 Set precison of filtering.
3120 @table @option
3121 @item auto
3122 Pick automatic sample format depending on surround filters.
3123 @item s16
3124 Always use signed 16-bit.
3125 @item s32
3126 Always use signed 32-bit.
3127 @item f32
3128 Always use float 32-bit.
3129 @item f64
3130 Always use float 64-bit.
3131 @end table
3132 @end table
3133
3134 @subsection Commands
3135
3136 This filter supports the following commands:
3137 @table @option
3138 @item frequency, f
3139 Change bass frequency.
3140 Syntax for the command is : "@var{frequency}"
3141
3142 @item width_type, t
3143 Change bass width_type.
3144 Syntax for the command is : "@var{width_type}"
3145
3146 @item width, w
3147 Change bass width.
3148 Syntax for the command is : "@var{width}"
3149
3150 @item gain, g
3151 Change bass gain.
3152 Syntax for the command is : "@var{gain}"
3153
3154 @item mix, m
3155 Change bass mix.
3156 Syntax for the command is : "@var{mix}"
3157 @end table
3158
3159 @section biquad
3160
3161 Apply a biquad IIR filter with the given coefficients.
3162 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3163 are the numerator and denominator coefficients respectively.
3164 and @var{channels}, @var{c} specify which channels to filter, by default all
3165 available are filtered.
3166
3167 @subsection Commands
3168
3169 This filter supports the following commands:
3170 @table @option
3171 @item a0
3172 @item a1
3173 @item a2
3174 @item b0
3175 @item b1
3176 @item b2
3177 Change biquad parameter.
3178 Syntax for the command is : "@var{value}"
3179
3180 @item mix, m
3181 How much to use filtered signal in output. Default is 1.
3182 Range is between 0 and 1.
3183
3184 @item channels, c
3185 Specify which channels to filter, by default all available are filtered.
3186
3187 @item normalize, n
3188 Normalize biquad coefficients, by default is disabled.
3189 Enabling it will normalize magnitude response at DC to 0dB.
3190
3191 @item transform, a
3192 Set transform type of IIR filter.
3193 @table @option
3194 @item di
3195 @item dii
3196 @item tdii
3197 @item latt
3198 @end table
3199
3200 @item precision, r
3201 Set precison of filtering.
3202 @table @option
3203 @item auto
3204 Pick automatic sample format depending on surround filters.
3205 @item s16
3206 Always use signed 16-bit.
3207 @item s32
3208 Always use signed 32-bit.
3209 @item f32
3210 Always use float 32-bit.
3211 @item f64
3212 Always use float 64-bit.
3213 @end table
3214 @end table
3215
3216 @section bs2b
3217 Bauer stereo to binaural transformation, which improves headphone listening of
3218 stereo audio records.
3219
3220 To enable compilation of this filter you need to configure FFmpeg with
3221 @code{--enable-libbs2b}.
3222
3223 It accepts the following parameters:
3224 @table @option
3225
3226 @item profile
3227 Pre-defined crossfeed level.
3228 @table @option
3229
3230 @item default
3231 Default level (fcut=700, feed=50).
3232
3233 @item cmoy
3234 Chu Moy circuit (fcut=700, feed=60).
3235
3236 @item jmeier
3237 Jan Meier circuit (fcut=650, feed=95).
3238
3239 @end table
3240
3241 @item fcut
3242 Cut frequency (in Hz).
3243
3244 @item feed
3245 Feed level (in Hz).
3246
3247 @end table
3248
3249 @section channelmap
3250
3251 Remap input channels to new locations.
3252
3253 It accepts the following parameters:
3254 @table @option
3255 @item map
3256 Map channels from input to output. The argument is a '|'-separated list of
3257 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3258 @var{in_channel} form. @var{in_channel} can be either the name of the input
3259 channel (e.g. FL for front left) or its index in the input channel layout.
3260 @var{out_channel} is the name of the output channel or its index in the output
3261 channel layout. If @var{out_channel} is not given then it is implicitly an
3262 index, starting with zero and increasing by one for each mapping.
3263
3264 @item channel_layout
3265 The channel layout of the output stream.
3266 @end table
3267
3268 If no mapping is present, the filter will implicitly map input channels to
3269 output channels, preserving indices.
3270
3271 @subsection Examples
3272
3273 @itemize
3274 @item
3275 For example, assuming a 5.1+downmix input MOV file,
3276 @example
3277 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3278 @end example
3279 will create an output WAV file tagged as stereo from the downmix channels of
3280 the input.
3281
3282 @item
3283 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3284 @example
3285 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3286 @end example
3287 @end itemize
3288
3289 @section channelsplit
3290
3291 Split each channel from an input audio stream into a separate output stream.
3292
3293 It accepts the following parameters:
3294 @table @option
3295 @item channel_layout
3296 The channel layout of the input stream. The default is "stereo".
3297 @item channels
3298 A channel layout describing the channels to be extracted as separate output streams
3299 or "all" to extract each input channel as a separate stream. The default is "all".
3300
3301 Choosing channels not present in channel layout in the input will result in an error.
3302 @end table
3303
3304 @subsection Examples
3305
3306 @itemize
3307 @item
3308 For example, assuming a stereo input MP3 file,
3309 @example
3310 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3311 @end example
3312 will create an output Matroska file with two audio streams, one containing only
3313 the left channel and the other the right channel.
3314
3315 @item
3316 Split a 5.1 WAV file into per-channel files:
3317 @example
3318 ffmpeg -i in.wav -filter_complex
3319 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3320 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3321 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3322 side_right.wav
3323 @end example
3324
3325 @item
3326 Extract only LFE from a 5.1 WAV file:
3327 @example
3328 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3329 -map '[LFE]' lfe.wav
3330 @end example
3331 @end itemize
3332
3333 @section chorus
3334 Add a chorus effect to the audio.
3335
3336 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3337
3338 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3339 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3340 The modulation depth defines the range the modulated delay is played before or after
3341 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3342 sound tuned around the original one, like in a chorus where some vocals are slightly
3343 off key.
3344
3345 It accepts the following parameters:
3346 @table @option
3347 @item in_gain
3348 Set input gain. Default is 0.4.
3349
3350 @item out_gain
3351 Set output gain. Default is 0.4.
3352
3353 @item delays
3354 Set delays. A typical delay is around 40ms to 60ms.
3355
3356 @item decays
3357 Set decays.
3358
3359 @item speeds
3360 Set speeds.
3361
3362 @item depths
3363 Set depths.
3364 @end table
3365
3366 @subsection Examples
3367
3368 @itemize
3369 @item
3370 A single delay:
3371 @example
3372 chorus=0.7:0.9:55:0.4:0.25:2
3373 @end example
3374
3375 @item
3376 Two delays:
3377 @example
3378 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3379 @end example
3380
3381 @item
3382 Fuller sounding chorus with three delays:
3383 @example
3384 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
3385 @end example
3386 @end itemize
3387
3388 @section compand
3389 Compress or expand the audio's dynamic range.
3390
3391 It accepts the following parameters:
3392
3393 @table @option
3394
3395 @item attacks
3396 @item decays
3397 A list of times in seconds for each channel over which the instantaneous level
3398 of the input signal is averaged to determine its volume. @var{attacks} refers to
3399 increase of volume and @var{decays} refers to decrease of volume. For most
3400 situations, the attack time (response to the audio getting louder) should be
3401 shorter than the decay time, because the human ear is more sensitive to sudden
3402 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3403 a typical value for decay is 0.8 seconds.
3404 If specified number of attacks & decays is lower than number of channels, the last
3405 set attack/decay will be used for all remaining channels.
3406
3407 @item points
3408 A list of points for the transfer function, specified in dB relative to the
3409 maximum possible signal amplitude. Each key points list must be defined using
3410 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3411 @code{x0/y0 x1/y1 x2/y2 ....}
3412
3413 The input values must be in strictly increasing order but the transfer function
3414 does not have to be monotonically rising. The point @code{0/0} is assumed but
3415 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3416 function are @code{-70/-70|-60/-20|1/0}.
3417
3418 @item soft-knee
3419 Set the curve radius in dB for all joints. It defaults to 0.01.
3420
3421 @item gain
3422 Set the additional gain in dB to be applied at all points on the transfer
3423 function. This allows for easy adjustment of the overall gain.
3424 It defaults to 0.
3425
3426 @item volume
3427 Set an initial volume, in dB, to be assumed for each channel when filtering
3428 starts. This permits the user to supply a nominal level initially, so that, for
3429 example, a very large gain is not applied to initial signal levels before the
3430 companding has begun to operate. A typical value for audio which is initially
3431 quiet is -90 dB. It defaults to 0.
3432
3433 @item delay
3434 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3435 delayed before being fed to the volume adjuster. Specifying a delay
3436 approximately equal to the attack/decay times allows the filter to effectively
3437 operate in predictive rather than reactive mode. It defaults to 0.
3438
3439 @end table
3440
3441 @subsection Examples
3442
3443 @itemize
3444 @item
3445 Make music with both quiet and loud passages suitable for listening to in a
3446 noisy environment:
3447 @example
3448 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3449 @end example
3450
3451 Another example for audio with whisper and explosion parts:
3452 @example
3453 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3454 @end example
3455
3456 @item
3457 A noise gate for when the noise is at a lower level than the signal:
3458 @example
3459 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3460 @end example
3461
3462 @item
3463 Here is another noise gate, this time for when the noise is at a higher level
3464 than the signal (making it, in some ways, similar to squelch):
3465 @example
3466 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3467 @end example
3468
3469 @item
3470 2:1 compression starting at -6dB:
3471 @example
3472 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3473 @end example
3474
3475 @item
3476 2:1 compression starting at -9dB:
3477 @example
3478 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3479 @end example
3480
3481 @item
3482 2:1 compression starting at -12dB:
3483 @example
3484 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3485 @end example
3486
3487 @item
3488 2:1 compression starting at -18dB:
3489 @example
3490 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3491 @end example
3492
3493 @item
3494 3:1 compression starting at -15dB:
3495 @example
3496 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3497 @end example
3498
3499 @item
3500 Compressor/Gate:
3501 @example
3502 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3503 @end example
3504
3505 @item
3506 Expander:
3507 @example
3508 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
3509 @end example
3510
3511 @item
3512 Hard limiter at -6dB:
3513 @example
3514 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3515 @end example
3516
3517 @item
3518 Hard limiter at -12dB:
3519 @example
3520 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3521 @end example
3522
3523 @item
3524 Hard noise gate at -35 dB:
3525 @example
3526 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3527 @end example
3528
3529 @item
3530 Soft limiter:
3531 @example
3532 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3533 @end example
3534 @end itemize
3535
3536 @section compensationdelay
3537
3538 Compensation Delay Line is a metric based delay to compensate differing
3539 positions of microphones or speakers.
3540
3541 For example, you have recorded guitar with two microphones placed in
3542 different locations. Because the front of sound wave has fixed speed in
3543 normal conditions, the phasing of microphones can vary and depends on
3544 their location and interposition. The best sound mix can be achieved when
3545 these microphones are in phase (synchronized). Note that a distance of
3546 ~30 cm between microphones makes one microphone capture the signal in
3547 antiphase to the other microphone. That makes the final mix sound moody.
3548 This filter helps to solve phasing problems by adding different delays
3549 to each microphone track and make them synchronized.
3550
3551 The best result can be reached when you take one track as base and
3552 synchronize other tracks one by one with it.
3553 Remember that synchronization/delay tolerance depends on sample rate, too.
3554 Higher sample rates will give more tolerance.
3555
3556 The filter accepts the following parameters:
3557
3558 @table @option
3559 @item mm
3560 Set millimeters distance. This is compensation distance for fine tuning.
3561 Default is 0.
3562
3563 @item cm
3564 Set cm distance. This is compensation distance for tightening distance setup.
3565 Default is 0.
3566
3567 @item m
3568 Set meters distance. This is compensation distance for hard distance setup.
3569 Default is 0.
3570
3571 @item dry
3572 Set dry amount. Amount of unprocessed (dry) signal.
3573 Default is 0.
3574
3575 @item wet
3576 Set wet amount. Amount of processed (wet) signal.
3577 Default is 1.
3578
3579 @item temp
3580 Set temperature in degrees Celsius. This is the temperature of the environment.
3581 Default is 20.
3582 @end table
3583
3584 @section crossfeed
3585 Apply headphone crossfeed filter.
3586
3587 Crossfeed is the process of blending the left and right channels of stereo
3588 audio recording.
3589 It is mainly used to reduce extreme stereo separation of low frequencies.
3590
3591 The intent is to produce more speaker like sound to the listener.
3592
3593 The filter accepts the following options:
3594
3595 @table @option
3596 @item strength
3597 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3598 This sets gain of low shelf filter for side part of stereo image.
3599 Default is -6dB. Max allowed is -30db when strength is set to 1.
3600
3601 @item range
3602 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3603 This sets cut off frequency of low shelf filter. Default is cut off near
3604 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3605
3606 @item slope
3607 Set curve slope of low shelf filter. Default is 0.5.
3608 Allowed range is from 0.01 to 1.
3609
3610 @item level_in
3611 Set input gain. Default is 0.9.
3612
3613 @item level_out
3614 Set output gain. Default is 1.
3615 @end table
3616
3617 @subsection Commands
3618
3619 This filter supports the all above options as @ref{commands}.
3620
3621 @section crystalizer
3622 Simple algorithm to expand audio dynamic range.
3623
3624 The filter accepts the following options:
3625
3626 @table @option
3627 @item i
3628 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3629 (unchanged sound) to 10.0 (maximum effect).
3630
3631 @item c
3632 Enable clipping. By default is enabled.
3633 @end table
3634
3635 @subsection Commands
3636
3637 This filter supports the all above options as @ref{commands}.
3638
3639 @section dcshift
3640 Apply a DC shift to the audio.
3641
3642 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3643 in the recording chain) from the audio. The effect of a DC offset is reduced
3644 headroom and hence volume. The @ref{astats} filter can be used to determine if
3645 a signal has a DC offset.
3646
3647 @table @option
3648 @item shift
3649 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3650 the audio.
3651
3652 @item limitergain
3653 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3654 used to prevent clipping.
3655 @end table
3656
3657 @section deesser
3658
3659 Apply de-essing to the audio samples.
3660
3661 @table @option
3662 @item i
3663 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3664 Default is 0.
3665
3666 @item m
3667 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3668 Default is 0.5.
3669
3670 @item f
3671 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3672 Default is 0.5.
3673
3674 @item s
3675 Set the output mode.
3676
3677 It accepts the following values:
3678 @table @option
3679 @item i
3680 Pass input unchanged.
3681
3682 @item o
3683 Pass ess filtered out.
3684
3685 @item e
3686 Pass only ess.
3687
3688 Default value is @var{o}.
3689 @end table
3690
3691 @end table
3692
3693 @section drmeter
3694 Measure audio dynamic range.
3695
3696 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3697 is found in transition material. And anything less that 8 have very poor dynamics
3698 and is very compressed.
3699
3700 The filter accepts the following options:
3701
3702 @table @option
3703 @item length
3704 Set window length in seconds used to split audio into segments of equal length.
3705 Default is 3 seconds.
3706 @end table
3707
3708 @section dynaudnorm
3709 Dynamic Audio Normalizer.
3710
3711 This filter applies a certain amount of gain to the input audio in order
3712 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3713 contrast to more "simple" normalization algorithms, the Dynamic Audio
3714 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3715 This allows for applying extra gain to the "quiet" sections of the audio
3716 while avoiding distortions or clipping the "loud" sections. In other words:
3717 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3718 sections, in the sense that the volume of each section is brought to the
3719 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3720 this goal *without* applying "dynamic range compressing". It will retain 100%
3721 of the dynamic range *within* each section of the audio file.
3722
3723 @table @option
3724 @item framelen, f
3725 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3726 Default is 500 milliseconds.
3727 The Dynamic Audio Normalizer processes the input audio in small chunks,
3728 referred to as frames. This is required, because a peak magnitude has no
3729 meaning for just a single sample value. Instead, we need to determine the
3730 peak magnitude for a contiguous sequence of sample values. While a "standard"
3731 normalizer would simply use the peak magnitude of the complete file, the
3732 Dynamic Audio Normalizer determines the peak magnitude individually for each
3733 frame. The length of a frame is specified in milliseconds. By default, the
3734 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3735 been found to give good results with most files.
3736 Note that the exact frame length, in number of samples, will be determined
3737 automatically, based on the sampling rate of the individual input audio file.
3738
3739 @item gausssize, g
3740 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3741 number. Default is 31.
3742 Probably the most important parameter of the Dynamic Audio Normalizer is the
3743 @code{window size} of the Gaussian smoothing filter. The filter's window size
3744 is specified in frames, centered around the current frame. For the sake of
3745 simplicity, this must be an odd number. Consequently, the default value of 31
3746 takes into account the current frame, as well as the 15 preceding frames and
3747 the 15 subsequent frames. Using a larger window results in a stronger
3748 smoothing effect and thus in less gain variation, i.e. slower gain
3749 adaptation. Conversely, using a smaller window results in a weaker smoothing
3750 effect and thus in more gain variation, i.e. faster gain adaptation.
3751 In other words, the more you increase this value, the more the Dynamic Audio
3752 Normalizer will behave like a "traditional" normalization filter. On the
3753 contrary, the more you decrease this value, the more the Dynamic Audio
3754 Normalizer will behave like a dynamic range compressor.
3755
3756 @item peak, p
3757 Set the target peak value. This specifies the highest permissible magnitude
3758 level for the normalized audio input. This filter will try to approach the
3759 target peak magnitude as closely as possible, but at the same time it also
3760 makes sure that the normalized signal will never exceed the peak magnitude.
3761 A frame's maximum local gain factor is imposed directly by the target peak
3762 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3763 It is not recommended to go above this value.
3764
3765 @item maxgain, m
3766 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3767 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3768 factor for each input frame, i.e. the maximum gain factor that does not
3769 result in clipping or distortion. The maximum gain factor is determined by
3770 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3771 additionally bounds the frame's maximum gain factor by a predetermined
3772 (global) maximum gain factor. This is done in order to avoid excessive gain
3773 factors in "silent" or almost silent frames. By default, the maximum gain
3774 factor is 10.0, For most inputs the default value should be sufficient and
3775 it usually is not recommended to increase this value. Though, for input
3776 with an extremely low overall volume level, it may be necessary to allow even
3777 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3778 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3779 Instead, a "sigmoid" threshold function will be applied. This way, the
3780 gain factors will smoothly approach the threshold value, but never exceed that
3781 value.
3782
3783 @item targetrms, r
3784 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3785 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3786 This means that the maximum local gain factor for each frame is defined
3787 (only) by the frame's highest magnitude sample. This way, the samples can
3788 be amplified as much as possible without exceeding the maximum signal
3789 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3790 Normalizer can also take into account the frame's root mean square,
3791 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3792 determine the power of a time-varying signal. It is therefore considered
3793 that the RMS is a better approximation of the "perceived loudness" than
3794 just looking at the signal's peak magnitude. Consequently, by adjusting all
3795 frames to a constant RMS value, a uniform "perceived loudness" can be
3796 established. If a target RMS value has been specified, a frame's local gain
3797 factor is defined as the factor that would result in exactly that RMS value.
3798 Note, however, that the maximum local gain factor is still restricted by the
3799 frame's highest magnitude sample, in order to prevent clipping.
3800
3801 @item coupling, n
3802 Enable channels coupling. By default is enabled.
3803 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3804 amount. This means the same gain factor will be applied to all channels, i.e.
3805 the maximum possible gain factor is determined by the "loudest" channel.
3806 However, in some recordings, it may happen that the volume of the different
3807 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3808 In this case, this option can be used to disable the channel coupling. This way,
3809 the gain factor will be determined independently for each channel, depending
3810 only on the individual channel's highest magnitude sample. This allows for
3811 harmonizing the volume of the different channels.
3812
3813 @item correctdc, c
3814 Enable DC bias correction. By default is disabled.
3815 An audio signal (in the time domain) is a sequence of sample values.
3816 In the Dynamic Audio Normalizer these sample values are represented in the
3817 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3818 audio signal, or "waveform", should be centered around the zero point.
3819 That means if we calculate the mean value of all samples in a file, or in a
3820 single frame, then the result should be 0.0 or at least very close to that
3821 value. If, however, there is a significant deviation of the mean value from
3822 0.0, in either positive or negative direction, this is referred to as a
3823 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3824 Audio Normalizer provides optional DC bias correction.
3825 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3826 the mean value, or "DC correction" offset, of each input frame and subtract
3827 that value from all of the frame's sample values which ensures those samples
3828 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3829 boundaries, the DC correction offset values will be interpolated smoothly
3830 between neighbouring frames.
3831
3832 @item altboundary, b
3833 Enable alternative boundary mode. By default is disabled.
3834 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3835 around each frame. This includes the preceding frames as well as the
3836 subsequent frames. However, for the "boundary" frames, located at the very
3837 beginning and at the very end of the audio file, not all neighbouring
3838 frames are available. In particular, for the first few frames in the audio
3839 file, the preceding frames are not known. And, similarly, for the last few
3840 frames in the audio file, the subsequent frames are not known. Thus, the
3841 question arises which gain factors should be assumed for the missing frames
3842 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3843 to deal with this situation. The default boundary mode assumes a gain factor
3844 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3845 "fade out" at the beginning and at the end of the input, respectively.
3846
3847 @item compress, s
3848 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3849 By default, the Dynamic Audio Normalizer does not apply "traditional"
3850 compression. This means that signal peaks will not be pruned and thus the
3851 full dynamic range will be retained within each local neighbourhood. However,
3852 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3853 normalization algorithm with a more "traditional" compression.
3854 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3855 (thresholding) function. If (and only if) the compression feature is enabled,
3856 all input frames will be processed by a soft knee thresholding function prior
3857 to the actual normalization process. Put simply, the thresholding function is
3858 going to prune all samples whose magnitude exceeds a certain threshold value.
3859 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3860 value. Instead, the threshold value will be adjusted for each individual
3861 frame.
3862 In general, smaller parameters result in stronger compression, and vice versa.
3863 Values below 3.0 are not recommended, because audible distortion may appear.
3864
3865 @item threshold, t
3866 Set the target threshold value. This specifies the lowest permissible
3867 magnitude level for the audio input which will be normalized.
3868 If input frame volume is above this value frame will be normalized.
3869 Otherwise frame may not be normalized at all. The default value is set
3870 to 0, which means all input frames will be normalized.
3871 This option is mostly useful if digital noise is not wanted to be amplified.
3872 @end table
3873
3874 @subsection Commands
3875
3876 This filter supports the all above options as @ref{commands}.
3877
3878 @section earwax
3879
3880 Make audio easier to listen to on headphones.
3881
3882 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3883 so that when listened to on headphones the stereo image is moved from
3884 inside your head (standard for headphones) to outside and in front of
3885 the listener (standard for speakers).
3886
3887 Ported from SoX.
3888
3889 @section equalizer
3890
3891 Apply a two-pole peaking equalisation (EQ) filter. With this
3892 filter, the signal-level at and around a selected frequency can
3893 be increased or decreased, whilst (unlike bandpass and bandreject
3894 filters) that at all other frequencies is unchanged.
3895
3896 In order to produce complex equalisation curves, this filter can
3897 be given several times, each with a different central frequency.
3898
3899 The filter accepts the following options:
3900
3901 @table @option
3902 @item frequency, f
3903 Set the filter's central frequency in Hz.
3904
3905 @item width_type, t
3906 Set method to specify band-width of filter.
3907 @table @option
3908 @item h
3909 Hz
3910 @item q
3911 Q-Factor
3912 @item o
3913 octave
3914 @item s
3915 slope
3916 @item k
3917 kHz
3918 @end table
3919
3920 @item width, w
3921 Specify the band-width of a filter in width_type units.
3922
3923 @item gain, g
3924 Set the required gain or attenuation in dB.
3925 Beware of clipping when using a positive gain.
3926
3927 @item mix, m
3928 How much to use filtered signal in output. Default is 1.
3929 Range is between 0 and 1.
3930
3931 @item channels, c
3932 Specify which channels to filter, by default all available are filtered.
3933
3934 @item normalize, n
3935 Normalize biquad coefficients, by default is disabled.
3936 Enabling it will normalize magnitude response at DC to 0dB.
3937
3938 @item transform, a
3939 Set transform type of IIR filter.
3940 @table @option
3941 @item di
3942 @item dii
3943 @item tdii
3944 @item latt
3945 @end table
3946
3947 @item precision, r
3948 Set precison of filtering.
3949 @table @option
3950 @item auto
3951 Pick automatic sample format depending on surround filters.
3952 @item s16
3953 Always use signed 16-bit.
3954 @item s32
3955 Always use signed 32-bit.
3956 @item f32
3957 Always use float 32-bit.
3958 @item f64
3959 Always use float 64-bit.
3960 @end table
3961 @end table
3962
3963 @subsection Examples
3964 @itemize
3965 @item
3966 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3967 @example
3968 equalizer=f=1000:t=h:width=200:g=-10
3969 @end example
3970
3971 @item
3972 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3973 @example
3974 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3975 @end example
3976 @end itemize
3977
3978 @subsection Commands
3979
3980 This filter supports the following commands:
3981 @table @option
3982 @item frequency, f
3983 Change equalizer frequency.
3984 Syntax for the command is : "@var{frequency}"
3985
3986 @item width_type, t
3987 Change equalizer width_type.
3988 Syntax for the command is : "@var{width_type}"
3989
3990 @item width, w
3991 Change equalizer width.
3992 Syntax for the command is : "@var{width}"
3993
3994 @item gain, g
3995 Change equalizer gain.
3996 Syntax for the command is : "@var{gain}"
3997
3998 @item mix, m
3999 Change equalizer mix.
4000 Syntax for the command is : "@var{mix}"
4001 @end table
4002
4003 @section extrastereo
4004
4005 Linearly increases the difference between left and right channels which
4006 adds some sort of "live" effect to playback.
4007
4008 The filter accepts the following options:
4009
4010 @table @option
4011 @item m
4012 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4013 (average of both channels), with 1.0 sound will be unchanged, with
4014 -1.0 left and right channels will be swapped.
4015
4016 @item c
4017 Enable clipping. By default is enabled.
4018 @end table
4019
4020 @subsection Commands
4021
4022 This filter supports the all above options as @ref{commands}.
4023
4024 @section firequalizer
4025 Apply FIR Equalization using arbitrary frequency response.
4026
4027 The filter accepts the following option:
4028
4029 @table @option
4030 @item gain
4031 Set gain curve equation (in dB). The expression can contain variables:
4032 @table @option
4033 @item f
4034 the evaluated frequency
4035 @item sr
4036 sample rate
4037 @item ch
4038 channel number, set to 0 when multichannels evaluation is disabled
4039 @item chid
4040 channel id, see libavutil/channel_layout.h, set to the first channel id when
4041 multichannels evaluation is disabled
4042 @item chs
4043 number of channels
4044 @item chlayout
4045 channel_layout, see libavutil/channel_layout.h
4046
4047 @end table
4048 and functions:
4049 @table @option
4050 @item gain_interpolate(f)
4051 interpolate gain on frequency f based on gain_entry
4052 @item cubic_interpolate(f)
4053 same as gain_interpolate, but smoother
4054 @end table
4055 This option is also available as command. Default is @code{gain_interpolate(f)}.
4056
4057 @item gain_entry
4058 Set gain entry for gain_interpolate function. The expression can
4059 contain functions:
4060 @table @option
4061 @item entry(f, g)
4062 store gain entry at frequency f with value g
4063 @end table
4064 This option is also available as command.
4065
4066 @item delay
4067 Set filter delay in seconds. Higher value means more accurate.
4068 Default is @code{0.01}.
4069
4070 @item accuracy
4071 Set filter accuracy in Hz. Lower value means more accurate.
4072 Default is @code{5}.
4073
4074 @item wfunc
4075 Set window function. Acceptable values are:
4076 @table @option
4077 @item rectangular
4078 rectangular window, useful when gain curve is already smooth
4079 @item hann
4080 hann window (default)
4081 @item hamming
4082 hamming window
4083 @item blackman
4084 blackman window
4085 @item nuttall3
4086 3-terms continuous 1st derivative nuttall window
4087 @item mnuttall3
4088 minimum 3-terms discontinuous nuttall window
4089 @item nuttall
4090 4-terms continuous 1st derivative nuttall window
4091 @item bnuttall
4092 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4093 @item bharris
4094 blackman-harris window
4095 @item tukey
4096 tukey window
4097 @end table
4098
4099 @item fixed
4100 If enabled, use fixed number of audio samples. This improves speed when
4101 filtering with large delay. Default is disabled.
4102
4103 @item multi
4104 Enable multichannels evaluation on gain. Default is disabled.
4105
4106 @item zero_phase
4107 Enable zero phase mode by subtracting timestamp to compensate delay.
4108 Default is disabled.
4109
4110 @item scale
4111 Set scale used by gain. Acceptable values are:
4112 @table @option
4113 @item linlin
4114 linear frequency, linear gain
4115 @item linlog
4116 linear frequency, logarithmic (in dB) gain (default)
4117 @item loglin
4118 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4119 @item loglog
4120 logarithmic frequency, logarithmic gain
4121 @end table
4122
4123 @item dumpfile
4124 Set file for dumping, suitable for gnuplot.
4125
4126 @item dumpscale
4127 Set scale for dumpfile. Acceptable values are same with scale option.
4128 Default is linlog.
4129
4130 @item fft2
4131 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4132 Default is disabled.
4133
4134 @item min_phase
4135 Enable minimum phase impulse response. Default is disabled.
4136 @end table
4137
4138 @subsection Examples
4139 @itemize
4140 @item
4141 lowpass at 1000 Hz:
4142 @example
4143 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4144 @end example
4145 @item
4146 lowpass at 1000 Hz with gain_entry:
4147 @example
4148 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4149 @end example
4150 @item
4151 custom equalization:
4152 @example
4153 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4154 @end example
4155 @item
4156 higher delay with zero phase to compensate delay:
4157 @example
4158 firequalizer=delay=0.1:fixed=on:zero_phase=on
4159 @end example
4160 @item
4161 lowpass on left channel, highpass on right channel:
4162 @example
4163 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4164 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4165 @end example
4166 @end itemize
4167
4168 @section flanger
4169 Apply a flanging effect to the audio.
4170
4171 The filter accepts the following options:
4172
4173 @table @option
4174 @item delay
4175 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4176
4177 @item depth
4178 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4179
4180 @item regen
4181 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4182 Default value is 0.
4183
4184 @item width
4185 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4186 Default value is 71.
4187
4188 @item speed
4189 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4190
4191 @item shape
4192 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4193 Default value is @var{sinusoidal}.
4194
4195 @item phase
4196 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4197 Default value is 25.
4198
4199 @item interp
4200 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4201 Default is @var{linear}.
4202 @end table
4203
4204 @section haas
4205 Apply Haas effect to audio.
4206
4207 Note that this makes most sense to apply on mono signals.
4208 With this filter applied to mono signals it give some directionality and
4209 stretches its stereo image.
4210
4211 The filter accepts the following options:
4212
4213 @table @option
4214 @item level_in
4215 Set input level. By default is @var{1}, or 0dB
4216
4217 @item level_out
4218 Set output level. By default is @var{1}, or 0dB.
4219
4220 @item side_gain
4221 Set gain applied to side part of signal. By default is @var{1}.
4222
4223 @item middle_source
4224 Set kind of middle source. Can be one of the following:
4225
4226 @table @samp
4227 @item left
4228 Pick left channel.
4229
4230 @item right
4231 Pick right channel.
4232
4233 @item mid
4234 Pick middle part signal of stereo image.
4235
4236 @item side
4237 Pick side part signal of stereo image.
4238 @end table
4239
4240 @item middle_phase
4241 Change middle phase. By default is disabled.
4242
4243 @item left_delay
4244 Set left channel delay. By default is @var{2.05} milliseconds.
4245
4246 @item left_balance
4247 Set left channel balance. By default is @var{-1}.
4248
4249 @item left_gain
4250 Set left channel gain. By default is @var{1}.
4251
4252 @item left_phase
4253 Change left phase. By default is disabled.
4254
4255 @item right_delay
4256 Set right channel delay. By defaults is @var{2.12} milliseconds.
4257
4258 @item right_balance
4259 Set right channel balance. By default is @var{1}.
4260
4261 @item right_gain
4262 Set right channel gain. By default is @var{1}.
4263
4264 @item right_phase
4265 Change right phase. By default is enabled.
4266 @end table
4267
4268 @section hdcd
4269
4270 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4271 embedded HDCD codes is expanded into a 20-bit PCM stream.
4272
4273 The filter supports the Peak Extend and Low-level Gain Adjustment features
4274 of HDCD, and detects the Transient Filter flag.
4275
4276 @example
4277 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4278 @end example
4279
4280 When using the filter with wav, note the default encoding for wav is 16-bit,
4281 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4282 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4283 @example
4284 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4285 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4286 @end example
4287
4288 The filter accepts the following options:
4289
4290 @table @option
4291 @item disable_autoconvert
4292 Disable any automatic format conversion or resampling in the filter graph.
4293
4294 @item process_stereo
4295 Process the stereo channels together. If target_gain does not match between
4296 channels, consider it invalid and use the last valid target_gain.
4297
4298 @item cdt_ms
4299 Set the code detect timer period in ms.
4300
4301 @item force_pe
4302 Always extend peaks above -3dBFS even if PE isn't signaled.
4303
4304 @item analyze_mode
4305 Replace audio with a solid tone and adjust the amplitude to signal some
4306 specific aspect of the decoding process. The output file can be loaded in
4307 an audio editor alongside the original to aid analysis.
4308
4309 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4310
4311 Modes are:
4312 @table @samp
4313 @item 0, off
4314 Disabled
4315 @item 1, lle
4316 Gain adjustment level at each sample
4317 @item 2, pe
4318 Samples where peak extend occurs
4319 @item 3, cdt
4320 Samples where the code detect timer is active
4321 @item 4, tgm
4322 Samples where the target gain does not match between channels
4323 @end table
4324 @end table
4325
4326 @section headphone
4327
4328 Apply head-related transfer functions (HRTFs) to create virtual
4329 loudspeakers around the user for binaural listening via headphones.
4330 The HRIRs are provided via additional streams, for each channel
4331 one stereo input stream is needed.
4332
4333 The filter accepts the following options:
4334
4335 @table @option
4336 @item map
4337 Set mapping of input streams for convolution.
4338 The argument is a '|'-separated list of channel names in order as they
4339 are given as additional stream inputs for filter.
4340 This also specify number of input streams. Number of input streams
4341 must be not less than number of channels in first stream plus one.
4342
4343 @item gain
4344 Set gain applied to audio. Value is in dB. Default is 0.
4345
4346 @item type
4347 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4348 processing audio in time domain which is slow.
4349 @var{freq} is processing audio in frequency domain which is fast.
4350 Default is @var{freq}.
4351
4352 @item lfe
4353 Set custom gain for LFE channels. Value is in dB. Default is 0.
4354
4355 @item size
4356 Set size of frame in number of samples which will be processed at once.
4357 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4358
4359 @item hrir
4360 Set format of hrir stream.
4361 Default value is @var{stereo}. Alternative value is @var{multich}.
4362 If value is set to @var{stereo}, number of additional streams should
4363 be greater or equal to number of input channels in first input stream.
4364 Also each additional stream should have stereo number of channels.
4365 If value is set to @var{multich}, number of additional streams should
4366 be exactly one. Also number of input channels of additional stream
4367 should be equal or greater than twice number of channels of first input
4368 stream.
4369 @end table
4370
4371 @subsection Examples
4372
4373 @itemize
4374 @item
4375 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4376 each amovie filter use stereo file with IR coefficients as input.
4377 The files give coefficients for each position of virtual loudspeaker:
4378 @example
4379 ffmpeg -i input.wav
4380 -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"
4381 output.wav
4382 @end example
4383
4384 @item
4385 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4386 but now in @var{multich} @var{hrir} format.
4387 @example
4388 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"
4389 output.wav
4390 @end example
4391 @end itemize
4392
4393 @section highpass
4394
4395 Apply a high-pass filter with 3dB point frequency.
4396 The filter can be either single-pole, or double-pole (the default).
4397 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4398
4399 The filter accepts the following options:
4400
4401 @table @option
4402 @item frequency, f
4403 Set frequency in Hz. Default is 3000.
4404
4405 @item poles, p
4406 Set number of poles. Default is 2.
4407
4408 @item width_type, t
4409 Set method to specify band-width of filter.
4410 @table @option
4411 @item h
4412 Hz
4413 @item q
4414 Q-Factor
4415 @item o
4416 octave
4417 @item s
4418 slope
4419 @item k
4420 kHz
4421 @end table
4422
4423 @item width, w
4424 Specify the band-width of a filter in width_type units.
4425 Applies only to double-pole filter.
4426 The default is 0.707q and gives a Butterworth response.
4427
4428 @item mix, m
4429 How much to use filtered signal in output. Default is 1.
4430 Range is between 0 and 1.
4431
4432 @item channels, c
4433 Specify which channels to filter, by default all available are filtered.
4434
4435 @item normalize, n
4436 Normalize biquad coefficients, by default is disabled.
4437 Enabling it will normalize magnitude response at DC to 0dB.
4438
4439 @item transform, a
4440 Set transform type of IIR filter.
4441 @table @option
4442 @item di
4443 @item dii
4444 @item tdii
4445 @item latt
4446 @end table
4447
4448 @item precision, r
4449 Set precison of filtering.
4450 @table @option
4451 @item auto
4452 Pick automatic sample format depending on surround filters.
4453 @item s16
4454 Always use signed 16-bit.
4455 @item s32
4456 Always use signed 32-bit.
4457 @item f32
4458 Always use float 32-bit.
4459 @item f64
4460 Always use float 64-bit.
4461 @end table
4462 @end table
4463
4464 @subsection Commands
4465
4466 This filter supports the following commands:
4467 @table @option
4468 @item frequency, f
4469 Change highpass frequency.
4470 Syntax for the command is : "@var{frequency}"
4471
4472 @item width_type, t
4473 Change highpass width_type.
4474 Syntax for the command is : "@var{width_type}"
4475
4476 @item width, w
4477 Change highpass width.
4478 Syntax for the command is : "@var{width}"
4479
4480 @item mix, m
4481 Change highpass mix.
4482 Syntax for the command is : "@var{mix}"
4483 @end table
4484
4485 @section join
4486
4487 Join multiple input streams into one multi-channel stream.
4488
4489 It accepts the following parameters:
4490 @table @option
4491
4492 @item inputs
4493 The number of input streams. It defaults to 2.
4494
4495 @item channel_layout
4496 The desired output channel layout. It defaults to stereo.
4497
4498 @item map
4499 Map channels from inputs to output. The argument is a '|'-separated list of
4500 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4501 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4502 can be either the name of the input channel (e.g. FL for front left) or its
4503 index in the specified input stream. @var{out_channel} is the name of the output
4504 channel.
4505 @end table
4506
4507 The filter will attempt to guess the mappings when they are not specified
4508 explicitly. It does so by first trying to find an unused matching input channel
4509 and if that fails it picks the first unused input channel.
4510
4511 Join 3 inputs (with properly set channel layouts):
4512 @example
4513 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4514 @end example
4515
4516 Build a 5.1 output from 6 single-channel streams:
4517 @example
4518 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4519 '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'
4520 out
4521 @end example
4522
4523 @section ladspa
4524
4525 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4526
4527 To enable compilation of this filter you need to configure FFmpeg with
4528 @code{--enable-ladspa}.
4529
4530 @table @option
4531 @item file, f
4532 Specifies the name of LADSPA plugin library to load. If the environment
4533 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4534 each one of the directories specified by the colon separated list in
4535 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4536 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4537 @file{/usr/lib/ladspa/}.
4538
4539 @item plugin, p
4540 Specifies the plugin within the library. Some libraries contain only
4541 one plugin, but others contain many of them. If this is not set filter
4542 will list all available plugins within the specified library.
4543
4544 @item controls, c
4545 Set the '|' separated list of controls which are zero or more floating point
4546 values that determine the behavior of the loaded plugin (for example delay,
4547 threshold or gain).
4548 Controls need to be defined using the following syntax:
4549 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4550 @var{valuei} is the value set on the @var{i}-th control.
4551 Alternatively they can be also defined using the following syntax:
4552 @var{value0}|@var{value1}|@var{value2}|..., where
4553 @var{valuei} is the value set on the @var{i}-th control.
4554 If @option{controls} is set to @code{help}, all available controls and
4555 their valid ranges are printed.
4556
4557 @item sample_rate, s
4558 Specify the sample rate, default to 44100. Only used if plugin have
4559 zero inputs.
4560
4561 @item nb_samples, n
4562 Set the number of samples per channel per each output frame, default
4563 is 1024. Only used if plugin have zero inputs.
4564
4565 @item duration, d
4566 Set the minimum duration of the sourced audio. See
4567 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4568 for the accepted syntax.
4569 Note that the resulting duration may be greater than the specified duration,
4570 as the generated audio is always cut at the end of a complete frame.
4571 If not specified, or the expressed duration is negative, the audio is
4572 supposed to be generated forever.
4573 Only used if plugin have zero inputs.
4574
4575 @item latency, l
4576 Enable latency compensation, by default is disabled.
4577 Only used if plugin have inputs.
4578 @end table
4579
4580 @subsection Examples
4581
4582 @itemize
4583 @item
4584 List all available plugins within amp (LADSPA example plugin) library:
4585 @example
4586 ladspa=file=amp
4587 @end example
4588
4589 @item
4590 List all available controls and their valid ranges for @code{vcf_notch}
4591 plugin from @code{VCF} library:
4592 @example
4593 ladspa=f=vcf:p=vcf_notch:c=help
4594 @end example
4595
4596 @item
4597 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4598 plugin library:
4599 @example
4600 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4601 @end example
4602
4603 @item
4604 Add reverberation to the audio using TAP-plugins
4605 (Tom's Audio Processing plugins):
4606 @example
4607 ladspa=file=tap_reverb:tap_reverb
4608 @end example
4609
4610 @item
4611 Generate white noise, with 0.2 amplitude:
4612 @example
4613 ladspa=file=cmt:noise_source_white:c=c0=.2
4614 @end example
4615
4616 @item
4617 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4618 @code{C* Audio Plugin Suite} (CAPS) library:
4619 @example
4620 ladspa=file=caps:Click:c=c1=20'
4621 @end example
4622
4623 @item
4624 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4625 @example
4626 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4627 @end example
4628
4629 @item
4630 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4631 @code{SWH Plugins} collection:
4632 @example
4633 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4634 @end example
4635
4636 @item
4637 Attenuate low frequencies using Multiband EQ from Steve Harris
4638 @code{SWH Plugins} collection:
4639 @example
4640 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4641 @end example
4642
4643 @item
4644 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4645 (CAPS) library:
4646 @example
4647 ladspa=caps:Narrower
4648 @end example
4649
4650 @item
4651 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4652 @example
4653 ladspa=caps:White:.2
4654 @end example
4655
4656 @item
4657 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4658 @example
4659 ladspa=caps:Fractal:c=c1=1
4660 @end example
4661
4662 @item
4663 Dynamic volume normalization using @code{VLevel} plugin:
4664 @example
4665 ladspa=vlevel-ladspa:vlevel_mono
4666 @end example
4667 @end itemize
4668
4669 @subsection Commands
4670
4671 This filter supports the following commands:
4672 @table @option
4673 @item cN
4674 Modify the @var{N}-th control value.
4675
4676 If the specified value is not valid, it is ignored and prior one is kept.
4677 @end table
4678
4679 @section loudnorm
4680
4681 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4682 Support for both single pass (livestreams, files) and double pass (files) modes.
4683 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4684 detect true peaks, the audio stream will be upsampled to 192 kHz.
4685 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4686
4687 The filter accepts the following options:
4688
4689 @table @option
4690 @item I, i
4691 Set integrated loudness target.
4692 Range is -70.0 - -5.0. Default value is -24.0.
4693
4694 @item LRA, lra
4695 Set loudness range target.
4696 Range is 1.0 - 20.0. Default value is 7.0.
4697
4698 @item TP, tp
4699 Set maximum true peak.
4700 Range is -9.0 - +0.0. Default value is -2.0.
4701
4702 @item measured_I, measured_i
4703 Measured IL of input file.
4704 Range is -99.0 - +0.0.
4705
4706 @item measured_LRA, measured_lra
4707 Measured LRA of input file.
4708 Range is  0.0 - 99.0.
4709
4710 @item measured_TP, measured_tp
4711 Measured true peak of input file.
4712 Range is  -99.0 - +99.0.
4713
4714 @item measured_thresh
4715 Measured threshold of input file.
4716 Range is -99.0 - +0.0.
4717
4718 @item offset
4719 Set offset gain. Gain is applied before the true-peak limiter.
4720 Range is  -99.0 - +99.0. Default is +0.0.
4721
4722 @item linear
4723 Normalize by linearly scaling the source audio.
4724 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4725 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4726 be lower than source LRA and the change in integrated loudness shouldn't
4727 result in a true peak which exceeds the target TP. If any of these
4728 conditions aren't met, normalization mode will revert to @var{dynamic}.
4729 Options are @code{true} or @code{false}. Default is @code{true}.
4730
4731 @item dual_mono
4732 Treat mono input files as "dual-mono". If a mono file is intended for playback
4733 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4734 If set to @code{true}, this option will compensate for this effect.
4735 Multi-channel input files are not affected by this option.
4736 Options are true or false. Default is false.
4737
4738 @item print_format
4739 Set print format for stats. Options are summary, json, or none.
4740 Default value is none.
4741 @end table
4742
4743 @section lowpass
4744
4745 Apply a low-pass filter with 3dB point frequency.
4746 The filter can be either single-pole or double-pole (the default).
4747 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4748
4749 The filter accepts the following options:
4750
4751 @table @option
4752 @item frequency, f
4753 Set frequency in Hz. Default is 500.
4754
4755 @item poles, p
4756 Set number of poles. Default is 2.
4757
4758 @item width_type, t
4759 Set method to specify band-width of filter.
4760 @table @option
4761 @item h
4762 Hz
4763 @item q
4764 Q-Factor
4765 @item o
4766 octave
4767 @item s
4768 slope
4769 @item k
4770 kHz
4771 @end table
4772
4773 @item width, w
4774 Specify the band-width of a filter in width_type units.
4775 Applies only to double-pole filter.
4776 The default is 0.707q and gives a Butterworth response.
4777
4778 @item mix, m
4779 How much to use filtered signal in output. Default is 1.
4780 Range is between 0 and 1.
4781
4782 @item channels, c
4783 Specify which channels to filter, by default all available are filtered.
4784
4785 @item normalize, n
4786 Normalize biquad coefficients, by default is disabled.
4787 Enabling it will normalize magnitude response at DC to 0dB.
4788
4789 @item transform, a
4790 Set transform type of IIR filter.
4791 @table @option
4792 @item di
4793 @item dii
4794 @item tdii
4795 @item latt
4796 @end table
4797
4798 @item precision, r
4799 Set precison of filtering.
4800 @table @option
4801 @item auto
4802 Pick automatic sample format depending on surround filters.
4803 @item s16
4804 Always use signed 16-bit.
4805 @item s32
4806 Always use signed 32-bit.
4807 @item f32
4808 Always use float 32-bit.
4809 @item f64
4810 Always use float 64-bit.
4811 @end table
4812 @end table
4813
4814 @subsection Examples
4815 @itemize
4816 @item
4817 Lowpass only LFE channel, it LFE is not present it does nothing:
4818 @example
4819 lowpass=c=LFE
4820 @end example
4821 @end itemize
4822
4823 @subsection Commands
4824
4825 This filter supports the following commands:
4826 @table @option
4827 @item frequency, f
4828 Change lowpass frequency.
4829 Syntax for the command is : "@var{frequency}"
4830
4831 @item width_type, t
4832 Change lowpass width_type.
4833 Syntax for the command is : "@var{width_type}"
4834
4835 @item width, w
4836 Change lowpass width.
4837 Syntax for the command is : "@var{width}"
4838
4839 @item mix, m
4840 Change lowpass mix.
4841 Syntax for the command is : "@var{mix}"
4842 @end table
4843
4844 @section lv2
4845
4846 Load a LV2 (LADSPA Version 2) plugin.
4847
4848 To enable compilation of this filter you need to configure FFmpeg with
4849 @code{--enable-lv2}.
4850
4851 @table @option
4852 @item plugin, p
4853 Specifies the plugin URI. You may need to escape ':'.
4854
4855 @item controls, c
4856 Set the '|' separated list of controls which are zero or more floating point
4857 values that determine the behavior of the loaded plugin (for example delay,
4858 threshold or gain).
4859 If @option{controls} is set to @code{help}, all available controls and
4860 their valid ranges are printed.
4861
4862 @item sample_rate, s
4863 Specify the sample rate, default to 44100. Only used if plugin have
4864 zero inputs.
4865
4866 @item nb_samples, n
4867 Set the number of samples per channel per each output frame, default
4868 is 1024. Only used if plugin have zero inputs.
4869
4870 @item duration, d
4871 Set the minimum duration of the sourced audio. See
4872 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4873 for the accepted syntax.
4874 Note that the resulting duration may be greater than the specified duration,
4875 as the generated audio is always cut at the end of a complete frame.
4876 If not specified, or the expressed duration is negative, the audio is
4877 supposed to be generated forever.
4878 Only used if plugin have zero inputs.
4879 @end table
4880
4881 @subsection Examples
4882
4883 @itemize
4884 @item
4885 Apply bass enhancer plugin from Calf:
4886 @example
4887 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4888 @end example
4889
4890 @item
4891 Apply vinyl plugin from Calf:
4892 @example
4893 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4894 @end example
4895
4896 @item
4897 Apply bit crusher plugin from ArtyFX:
4898 @example
4899 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4900 @end example
4901 @end itemize
4902
4903 @section mcompand
4904 Multiband Compress or expand the audio's dynamic range.
4905
4906 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4907 This is akin to the crossover of a loudspeaker, and results in flat frequency
4908 response when absent compander action.
4909
4910 It accepts the following parameters:
4911
4912 @table @option
4913 @item args
4914 This option syntax is:
4915 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4916 For explanation of each item refer to compand filter documentation.
4917 @end table
4918
4919 @anchor{pan}
4920 @section pan
4921
4922 Mix channels with specific gain levels. The filter accepts the output
4923 channel layout followed by a set of channels definitions.
4924
4925 This filter is also designed to efficiently remap the channels of an audio
4926 stream.
4927
4928 The filter accepts parameters of the form:
4929 "@var{l}|@var{outdef}|@var{outdef}|..."
4930
4931 @table @option
4932 @item l
4933 output channel layout or number of channels
4934
4935 @item outdef
4936 output channel specification, of the form:
4937 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4938
4939 @item out_name
4940 output channel to define, either a channel name (FL, FR, etc.) or a channel
4941 number (c0, c1, etc.)
4942
4943 @item gain
4944 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4945
4946 @item in_name
4947 input channel to use, see out_name for details; it is not possible to mix
4948 named and numbered input channels
4949 @end table
4950
4951 If the `=' in a channel specification is replaced by `<', then the gains for
4952 that specification will be renormalized so that the total is 1, thus
4953 avoiding clipping noise.
4954
4955 @subsection Mixing examples
4956
4957 For example, if you want to down-mix from stereo to mono, but with a bigger
4958 factor for the left channel:
4959 @example
4960 pan=1c|c0=0.9*c0+0.1*c1
4961 @end example
4962
4963 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4964 7-channels surround:
4965 @example
4966 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4967 @end example
4968
4969 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4970 that should be preferred (see "-ac" option) unless you have very specific
4971 needs.
4972
4973 @subsection Remapping examples
4974
4975 The channel remapping will be effective if, and only if:
4976
4977 @itemize
4978 @item gain coefficients are zeroes or ones,
4979 @item only one input per channel output,
4980 @end itemize
4981
4982 If all these conditions are satisfied, the filter will notify the user ("Pure
4983 channel mapping detected"), and use an optimized and lossless method to do the
4984 remapping.
4985
4986 For example, if you have a 5.1 source and want a stereo audio stream by
4987 dropping the extra channels:
4988 @example
4989 pan="stereo| c0=FL | c1=FR"
4990 @end example
4991
4992 Given the same source, you can also switch front left and front right channels
4993 and keep the input channel layout:
4994 @example
4995 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4996 @end example
4997
4998 If the input is a stereo audio stream, you can mute the front left channel (and
4999 still keep the stereo channel layout) with:
5000 @example
5001 pan="stereo|c1=c1"
5002 @end example
5003
5004 Still with a stereo audio stream input, you can copy the right channel in both
5005 front left and right:
5006 @example
5007 pan="stereo| c0=FR | c1=FR"
5008 @end example
5009
5010 @section replaygain
5011
5012 ReplayGain scanner filter. This filter takes an audio stream as an input and
5013 outputs it unchanged.
5014 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5015
5016 @section resample
5017
5018 Convert the audio sample format, sample rate and channel layout. It is
5019 not meant to be used directly.
5020
5021 @section rubberband
5022 Apply time-stretching and pitch-shifting with librubberband.
5023
5024 To enable compilation of this filter, you need to configure FFmpeg with
5025 @code{--enable-librubberband}.
5026
5027 The filter accepts the following options:
5028
5029 @table @option
5030 @item tempo
5031 Set tempo scale factor.
5032
5033 @item pitch
5034 Set pitch scale factor.
5035
5036 @item transients
5037 Set transients detector.
5038 Possible values are:
5039 @table @var
5040 @item crisp
5041 @item mixed
5042 @item smooth
5043 @end table
5044
5045 @item detector
5046 Set detector.
5047 Possible values are:
5048 @table @var
5049 @item compound
5050 @item percussive
5051 @item soft
5052 @end table
5053
5054 @item phase
5055 Set phase.
5056 Possible values are:
5057 @table @var
5058 @item laminar
5059 @item independent
5060 @end table
5061
5062 @item window
5063 Set processing window size.
5064 Possible values are:
5065 @table @var
5066 @item standard
5067 @item short
5068 @item long
5069 @end table
5070
5071 @item smoothing
5072 Set smoothing.
5073 Possible values are:
5074 @table @var
5075 @item off
5076 @item on
5077 @end table
5078
5079 @item formant
5080 Enable formant preservation when shift pitching.
5081 Possible values are:
5082 @table @var
5083 @item shifted
5084 @item preserved
5085 @end table
5086
5087 @item pitchq
5088 Set pitch quality.
5089 Possible values are:
5090 @table @var
5091 @item quality
5092 @item speed
5093 @item consistency
5094 @end table
5095
5096 @item channels
5097 Set channels.
5098 Possible values are:
5099 @table @var
5100 @item apart
5101 @item together
5102 @end table
5103 @end table
5104
5105 @subsection Commands
5106
5107 This filter supports the following commands:
5108 @table @option
5109 @item tempo
5110 Change filter tempo scale factor.
5111 Syntax for the command is : "@var{tempo}"
5112
5113 @item pitch
5114 Change filter pitch scale factor.
5115 Syntax for the command is : "@var{pitch}"
5116 @end table
5117
5118 @section sidechaincompress
5119
5120 This filter acts like normal compressor but has the ability to compress
5121 detected signal using second input signal.
5122 It needs two input streams and returns one output stream.
5123 First input stream will be processed depending on second stream signal.
5124 The filtered signal then can be filtered with other filters in later stages of
5125 processing. See @ref{pan} and @ref{amerge} filter.
5126
5127 The filter accepts the following options:
5128
5129 @table @option
5130 @item level_in
5131 Set input gain. Default is 1. Range is between 0.015625 and 64.
5132
5133 @item mode
5134 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5135 Default is @code{downward}.
5136
5137 @item threshold
5138 If a signal of second stream raises above this level it will affect the gain
5139 reduction of first stream.
5140 By default is 0.125. Range is between 0.00097563 and 1.
5141
5142 @item ratio
5143 Set a ratio about which the signal is reduced. 1:2 means that if the level
5144 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5145 Default is 2. Range is between 1 and 20.
5146
5147 @item attack
5148 Amount of milliseconds the signal has to rise above the threshold before gain
5149 reduction starts. Default is 20. Range is between 0.01 and 2000.
5150
5151 @item release
5152 Amount of milliseconds the signal has to fall below the threshold before
5153 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5154
5155 @item makeup
5156 Set the amount by how much signal will be amplified after processing.
5157 Default is 1. Range is from 1 to 64.
5158
5159 @item knee
5160 Curve the sharp knee around the threshold to enter gain reduction more softly.
5161 Default is 2.82843. Range is between 1 and 8.
5162
5163 @item link
5164 Choose if the @code{average} level between all channels of side-chain stream
5165 or the louder(@code{maximum}) channel of side-chain stream affects the
5166 reduction. Default is @code{average}.
5167
5168 @item detection
5169 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5170 of @code{rms}. Default is @code{rms} which is mainly smoother.
5171
5172 @item level_sc
5173 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5174
5175 @item mix
5176 How much to use compressed signal in output. Default is 1.
5177 Range is between 0 and 1.
5178 @end table
5179
5180 @subsection Commands
5181
5182 This filter supports the all above options as @ref{commands}.
5183
5184 @subsection Examples
5185
5186 @itemize
5187 @item
5188 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5189 depending on the signal of 2nd input and later compressed signal to be
5190 merged with 2nd input:
5191 @example
5192 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5193 @end example
5194 @end itemize
5195
5196 @section sidechaingate
5197
5198 A sidechain gate acts like a normal (wideband) gate but has the ability to
5199 filter the detected signal before sending it to the gain reduction stage.
5200 Normally a gate uses the full range signal to detect a level above the
5201 threshold.
5202 For example: If you cut all lower frequencies from your sidechain signal
5203 the gate will decrease the volume of your track only if not enough highs
5204 appear. With this technique you are able to reduce the resonation of a
5205 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5206 guitar.
5207 It needs two input streams and returns one output stream.
5208 First input stream will be processed depending on second stream signal.
5209
5210 The filter accepts the following options:
5211
5212 @table @option
5213 @item level_in
5214 Set input level before filtering.
5215 Default is 1. Allowed range is from 0.015625 to 64.
5216
5217 @item mode
5218 Set the mode of operation. Can be @code{upward} or @code{downward}.
5219 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5220 will be amplified, expanding dynamic range in upward direction.
5221 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5222
5223 @item range
5224 Set the level of gain reduction when the signal is below the threshold.
5225 Default is 0.06125. Allowed range is from 0 to 1.
5226 Setting this to 0 disables reduction and then filter behaves like expander.
5227
5228 @item threshold
5229 If a signal rises above this level the gain reduction is released.
5230 Default is 0.125. Allowed range is from 0 to 1.
5231
5232 @item ratio
5233 Set a ratio about which the signal is reduced.
5234 Default is 2. Allowed range is from 1 to 9000.
5235
5236 @item attack
5237 Amount of milliseconds the signal has to rise above the threshold before gain
5238 reduction stops.
5239 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5240
5241 @item release
5242 Amount of milliseconds the signal has to fall below the threshold before the
5243 reduction is increased again. Default is 250 milliseconds.
5244 Allowed range is from 0.01 to 9000.
5245
5246 @item makeup
5247 Set amount of amplification of signal after processing.
5248 Default is 1. Allowed range is from 1 to 64.
5249
5250 @item knee
5251 Curve the sharp knee around the threshold to enter gain reduction more softly.
5252 Default is 2.828427125. Allowed range is from 1 to 8.
5253
5254 @item detection
5255 Choose if exact signal should be taken for detection or an RMS like one.
5256 Default is rms. Can be peak or rms.
5257
5258 @item link
5259 Choose if the average level between all channels or the louder channel affects
5260 the reduction.
5261 Default is average. Can be average or maximum.
5262
5263 @item level_sc
5264 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5265 @end table
5266
5267 @subsection Commands
5268
5269 This filter supports the all above options as @ref{commands}.
5270
5271 @section silencedetect
5272
5273 Detect silence in an audio stream.
5274
5275 This filter logs a message when it detects that the input audio volume is less
5276 or equal to a noise tolerance value for a duration greater or equal to the
5277 minimum detected noise duration.
5278
5279 The printed times and duration are expressed in seconds. The
5280 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5281 is set on the first frame whose timestamp equals or exceeds the detection
5282 duration and it contains the timestamp of the first frame of the silence.
5283
5284 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5285 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5286 keys are set on the first frame after the silence. If @option{mono} is
5287 enabled, and each channel is evaluated separately, the @code{.X}
5288 suffixed keys are used, and @code{X} corresponds to the channel number.
5289
5290 The filter accepts the following options:
5291
5292 @table @option
5293 @item noise, n
5294 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5295 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5296
5297 @item duration, d
5298 Set silence duration until notification (default is 2 seconds). See
5299 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5300 for the accepted syntax.
5301
5302 @item mono, m
5303 Process each channel separately, instead of combined. By default is disabled.
5304 @end table
5305
5306 @subsection Examples
5307
5308 @itemize
5309 @item
5310 Detect 5 seconds of silence with -50dB noise tolerance:
5311 @example
5312 silencedetect=n=-50dB:d=5
5313 @end example
5314
5315 @item
5316 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5317 tolerance in @file{silence.mp3}:
5318 @example
5319 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5320 @end example
5321 @end itemize
5322
5323 @section silenceremove
5324
5325 Remove silence from the beginning, middle or end of the audio.
5326
5327 The filter accepts the following options:
5328
5329 @table @option
5330 @item start_periods
5331 This value is used to indicate if audio should be trimmed at beginning of
5332 the audio. A value of zero indicates no silence should be trimmed from the
5333 beginning. When specifying a non-zero value, it trims audio up until it
5334 finds non-silence. Normally, when trimming silence from beginning of audio
5335 the @var{start_periods} will be @code{1} but it can be increased to higher
5336 values to trim all audio up to specific count of non-silence periods.
5337 Default value is @code{0}.
5338
5339 @item start_duration
5340 Specify the amount of time that non-silence must be detected before it stops
5341 trimming audio. By increasing the duration, bursts of noises can be treated
5342 as silence and trimmed off. Default value is @code{0}.
5343
5344 @item start_threshold
5345 This indicates what sample value should be treated as silence. For digital
5346 audio, a value of @code{0} may be fine but for audio recorded from analog,
5347 you may wish to increase the value to account for background noise.
5348 Can be specified in dB (in case "dB" is appended to the specified value)
5349 or amplitude ratio. Default value is @code{0}.
5350
5351 @item start_silence
5352 Specify max duration of silence at beginning that will be kept after
5353 trimming. Default is 0, which is equal to trimming all samples detected
5354 as silence.
5355
5356 @item start_mode
5357 Specify mode of detection of silence end in start of multi-channel audio.
5358 Can be @var{any} or @var{all}. Default is @var{any}.
5359 With @var{any}, any sample that is detected as non-silence will cause
5360 stopped trimming of silence.
5361 With @var{all}, only if all channels are detected as non-silence will cause
5362 stopped trimming of silence.
5363
5364 @item stop_periods
5365 Set the count for trimming silence from the end of audio.
5366 To remove silence from the middle of a file, specify a @var{stop_periods}
5367 that is negative. This value is then treated as a positive value and is
5368 used to indicate the effect should restart processing as specified by
5369 @var{start_periods}, making it suitable for removing periods of silence
5370 in the middle of the audio.
5371 Default value is @code{0}.
5372
5373 @item stop_duration
5374 Specify a duration of silence that must exist before audio is not copied any
5375 more. By specifying a higher duration, silence that is wanted can be left in
5376 the audio.
5377 Default value is @code{0}.
5378
5379 @item stop_threshold
5380 This is the same as @option{start_threshold} but for trimming silence from
5381 the end of audio.
5382 Can be specified in dB (in case "dB" is appended to the specified value)
5383 or amplitude ratio. Default value is @code{0}.
5384
5385 @item stop_silence
5386 Specify max duration of silence at end that will be kept after
5387 trimming. Default is 0, which is equal to trimming all samples detected
5388 as silence.
5389
5390 @item stop_mode
5391 Specify mode of detection of silence start in end of multi-channel audio.
5392 Can be @var{any} or @var{all}. Default is @var{any}.
5393 With @var{any}, any sample that is detected as non-silence will cause
5394 stopped trimming of silence.
5395 With @var{all}, only if all channels are detected as non-silence will cause
5396 stopped trimming of silence.
5397
5398 @item detection
5399 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5400 and works better with digital silence which is exactly 0.
5401 Default value is @code{rms}.
5402
5403 @item window
5404 Set duration in number of seconds used to calculate size of window in number
5405 of samples for detecting silence.
5406 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5407 @end table
5408
5409 @subsection Examples
5410
5411 @itemize
5412 @item
5413 The following example shows how this filter can be used to start a recording
5414 that does not contain the delay at the start which usually occurs between
5415 pressing the record button and the start of the performance:
5416 @example
5417 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5418 @end example
5419
5420 @item
5421 Trim all silence encountered from beginning to end where there is more than 1
5422 second of silence in audio:
5423 @example
5424 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5425 @end example
5426
5427 @item
5428 Trim all digital silence samples, using peak detection, from beginning to end
5429 where there is more than 0 samples of digital silence in audio and digital
5430 silence is detected in all channels at same positions in stream:
5431 @example
5432 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5433 @end example
5434 @end itemize
5435
5436 @section sofalizer
5437
5438 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5439 loudspeakers around the user for binaural listening via headphones (audio
5440 formats up to 9 channels supported).
5441 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5442 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5443 Austrian Academy of Sciences.
5444
5445 To enable compilation of this filter you need to configure FFmpeg with
5446 @code{--enable-libmysofa}.
5447
5448 The filter accepts the following options:
5449
5450 @table @option
5451 @item sofa
5452 Set the SOFA file used for rendering.
5453
5454 @item gain
5455 Set gain applied to audio. Value is in dB. Default is 0.
5456
5457 @item rotation
5458 Set rotation of virtual loudspeakers in deg. Default is 0.
5459
5460 @item elevation
5461 Set elevation of virtual speakers in deg. Default is 0.
5462
5463 @item radius
5464 Set distance in meters between loudspeakers and the listener with near-field
5465 HRTFs. Default is 1.
5466
5467 @item type
5468 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5469 processing audio in time domain which is slow.
5470 @var{freq} is processing audio in frequency domain which is fast.
5471 Default is @var{freq}.
5472
5473 @item speakers
5474 Set custom positions of virtual loudspeakers. Syntax for this option is:
5475 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5476 Each virtual loudspeaker is described with short channel name following with
5477 azimuth and elevation in degrees.
5478 Each virtual loudspeaker description is separated by '|'.
5479 For example to override front left and front right channel positions use:
5480 'speakers=FL 45 15|FR 345 15'.
5481 Descriptions with unrecognised channel names are ignored.
5482
5483 @item lfegain
5484 Set custom gain for LFE channels. Value is in dB. Default is 0.
5485
5486 @item framesize
5487 Set custom frame size in number of samples. Default is 1024.
5488 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5489 is set to @var{freq}.
5490
5491 @item normalize
5492 Should all IRs be normalized upon importing SOFA file.
5493 By default is enabled.
5494
5495 @item interpolate
5496 Should nearest IRs be interpolated with neighbor IRs if exact position
5497 does not match. By default is disabled.
5498
5499 @item minphase
5500 Minphase all IRs upon loading of SOFA file. By default is disabled.
5501
5502 @item anglestep
5503 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5504
5505 @item radstep
5506 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5507 @end table
5508
5509 @subsection Examples
5510
5511 @itemize
5512 @item
5513 Using ClubFritz6 sofa file:
5514 @example
5515 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5516 @end example
5517
5518 @item
5519 Using ClubFritz12 sofa file and bigger radius with small rotation:
5520 @example
5521 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5522 @end example
5523
5524 @item
5525 Similar as above but with custom speaker positions for front left, front right, back left and back right
5526 and also with custom gain:
5527 @example
5528 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5529 @end example
5530 @end itemize
5531
5532 @section speechnorm
5533 Speech Normalizer.
5534
5535 This filter expands or compresses each half-cycle of audio samples
5536 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5537 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5538
5539 The filter accepts the following options:
5540
5541 @table @option
5542 @item peak, p
5543 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5544 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5545
5546 @item expansion, e
5547 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5548 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5549 would be such that local peak value reaches target peak value but never to surpass it and that
5550 ratio between new and previous peak value does not surpass this option value.
5551
5552 @item compression, c
5553 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5554 This option controls maximum local half-cycle of samples compression. This option is used
5555 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5556 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5557 that peak's half-cycle will be compressed by current compression factor.
5558
5559 @item threshold, t
5560 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5561 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5562 Any half-cycle samples with their local peak value below or same as this option value will be
5563 compressed by current compression factor, otherwise, if greater than threshold value they will be
5564 expanded with expansion factor so that it could reach peak target value but never surpass it.
5565
5566 @item raise, r
5567 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5568 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5569 each new half-cycle until it reaches @option{expansion} value.
5570 Setting this options too high may lead to distortions.
5571
5572 @item fall, f
5573 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5574 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5575 each new half-cycle until it reaches @option{compression} value.
5576
5577 @item channels, h
5578 Specify which channels to filter, by default all available channels are filtered.
5579
5580 @item invert, i
5581 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5582 option. When enabled any half-cycle of samples with their local peak value below or same as
5583 @option{threshold} option will be expanded otherwise it will be compressed.
5584
5585 @item link, l
5586 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5587 When disabled each filtered channel gain calculation is independent, otherwise when this option
5588 is enabled the minimum of all possible gains for each filtered channel is used.
5589 @end table
5590
5591 @subsection Commands
5592
5593 This filter supports the all above options as @ref{commands}.
5594
5595 @section stereotools
5596
5597 This filter has some handy utilities to manage stereo signals, for converting
5598 M/S stereo recordings to L/R signal while having control over the parameters
5599 or spreading the stereo image of master track.
5600
5601 The filter accepts the following options:
5602
5603 @table @option
5604 @item level_in
5605 Set input level before filtering for both channels. Defaults is 1.
5606 Allowed range is from 0.015625 to 64.
5607
5608 @item level_out
5609 Set output level after filtering for both channels. Defaults is 1.
5610 Allowed range is from 0.015625 to 64.
5611
5612 @item balance_in
5613 Set input balance between both channels. Default is 0.
5614 Allowed range is from -1 to 1.
5615
5616 @item balance_out
5617 Set output balance between both channels. Default is 0.
5618 Allowed range is from -1 to 1.
5619
5620 @item softclip
5621 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5622 clipping. Disabled by default.
5623
5624 @item mutel
5625 Mute the left channel. Disabled by default.
5626
5627 @item muter
5628 Mute the right channel. Disabled by default.
5629
5630 @item phasel
5631 Change the phase of the left channel. Disabled by default.
5632
5633 @item phaser
5634 Change the phase of the right channel. Disabled by default.
5635
5636 @item mode
5637 Set stereo mode. Available values are:
5638
5639 @table @samp
5640 @item lr>lr
5641 Left/Right to Left/Right, this is default.
5642
5643 @item lr>ms
5644 Left/Right to Mid/Side.
5645
5646 @item ms>lr
5647 Mid/Side to Left/Right.
5648
5649 @item lr>ll
5650 Left/Right to Left/Left.
5651
5652 @item lr>rr
5653 Left/Right to Right/Right.
5654
5655 @item lr>l+r
5656 Left/Right to Left + Right.
5657
5658 @item lr>rl
5659 Left/Right to Right/Left.
5660
5661 @item ms>ll
5662 Mid/Side to Left/Left.
5663
5664 @item ms>rr
5665 Mid/Side to Right/Right.
5666
5667 @item ms>rl
5668 Mid/Side to Right/Left.
5669
5670 @item lr>l-r
5671 Left/Right to Left - Right.
5672 @end table
5673
5674 @item slev
5675 Set level of side signal. Default is 1.
5676 Allowed range is from 0.015625 to 64.
5677
5678 @item sbal
5679 Set balance of side signal. Default is 0.
5680 Allowed range is from -1 to 1.
5681
5682 @item mlev
5683 Set level of the middle signal. Default is 1.
5684 Allowed range is from 0.015625 to 64.
5685
5686 @item mpan
5687 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5688
5689 @item base
5690 Set stereo base between mono and inversed channels. Default is 0.
5691 Allowed range is from -1 to 1.
5692
5693 @item delay
5694 Set delay in milliseconds how much to delay left from right channel and
5695 vice versa. Default is 0. Allowed range is from -20 to 20.
5696
5697 @item sclevel
5698 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5699
5700 @item phase
5701 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5702
5703 @item bmode_in, bmode_out
5704 Set balance mode for balance_in/balance_out option.
5705
5706 Can be one of the following:
5707
5708 @table @samp
5709 @item balance
5710 Classic balance mode. Attenuate one channel at time.
5711 Gain is raised up to 1.
5712
5713 @item amplitude
5714 Similar as classic mode above but gain is raised up to 2.
5715
5716 @item power
5717 Equal power distribution, from -6dB to +6dB range.
5718 @end table
5719 @end table
5720
5721 @subsection Commands
5722
5723 This filter supports the all above options as @ref{commands}.
5724
5725 @subsection Examples
5726
5727 @itemize
5728 @item
5729 Apply karaoke like effect:
5730 @example
5731 stereotools=mlev=0.015625
5732 @end example
5733
5734 @item
5735 Convert M/S signal to L/R:
5736 @example
5737 "stereotools=mode=ms>lr"
5738 @end example
5739 @end itemize
5740
5741 @section stereowiden
5742
5743 This filter enhance the stereo effect by suppressing signal common to both
5744 channels and by delaying the signal of left into right and vice versa,
5745 thereby widening the stereo effect.
5746
5747 The filter accepts the following options:
5748
5749 @table @option
5750 @item delay
5751 Time in milliseconds of the delay of left signal into right and vice versa.
5752 Default is 20 milliseconds.
5753
5754 @item feedback
5755 Amount of gain in delayed signal into right and vice versa. Gives a delay
5756 effect of left signal in right output and vice versa which gives widening
5757 effect. Default is 0.3.
5758
5759 @item crossfeed
5760 Cross feed of left into right with inverted phase. This helps in suppressing
5761 the mono. If the value is 1 it will cancel all the signal common to both
5762 channels. Default is 0.3.
5763
5764 @item drymix
5765 Set level of input signal of original channel. Default is 0.8.
5766 @end table
5767
5768 @subsection Commands
5769
5770 This filter supports the all above options except @code{delay} as @ref{commands}.
5771
5772 @section superequalizer
5773 Apply 18 band equalizer.
5774
5775 The filter accepts the following options:
5776 @table @option
5777 @item 1b
5778 Set 65Hz band gain.
5779 @item 2b
5780 Set 92Hz band gain.
5781 @item 3b
5782 Set 131Hz band gain.
5783 @item 4b
5784 Set 185Hz band gain.
5785 @item 5b
5786 Set 262Hz band gain.
5787 @item 6b
5788 Set 370Hz band gain.
5789 @item 7b
5790 Set 523Hz band gain.
5791 @item 8b
5792 Set 740Hz band gain.
5793 @item 9b
5794 Set 1047Hz band gain.
5795 @item 10b
5796 Set 1480Hz band gain.
5797 @item 11b
5798 Set 2093Hz band gain.
5799 @item 12b
5800 Set 2960Hz band gain.
5801 @item 13b
5802 Set 4186Hz band gain.
5803 @item 14b
5804 Set 5920Hz band gain.
5805 @item 15b
5806 Set 8372Hz band gain.
5807 @item 16b
5808 Set 11840Hz band gain.
5809 @item 17b
5810 Set 16744Hz band gain.
5811 @item 18b
5812 Set 20000Hz band gain.
5813 @end table
5814
5815 @section surround
5816 Apply audio surround upmix filter.
5817
5818 This filter allows to produce multichannel output from audio stream.
5819
5820 The filter accepts the following options:
5821
5822 @table @option
5823 @item chl_out
5824 Set output channel layout. By default, this is @var{5.1}.
5825
5826 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5827 for the required syntax.
5828
5829 @item chl_in
5830 Set input channel layout. By default, this is @var{stereo}.
5831
5832 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5833 for the required syntax.
5834
5835 @item level_in
5836 Set input volume level. By default, this is @var{1}.
5837
5838 @item level_out
5839 Set output volume level. By default, this is @var{1}.
5840
5841 @item lfe
5842 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5843
5844 @item lfe_low
5845 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5846
5847 @item lfe_high
5848 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5849
5850 @item lfe_mode
5851 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5852 In @var{add} mode, LFE channel is created from input audio and added to output.
5853 In @var{sub} mode, LFE channel is created from input audio and added to output but
5854 also all non-LFE output channels are subtracted with output LFE channel.
5855
5856 @item angle
5857 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5858 Default is @var{90}.
5859
5860 @item fc_in
5861 Set front center input volume. By default, this is @var{1}.
5862
5863 @item fc_out
5864 Set front center output volume. By default, this is @var{1}.
5865
5866 @item fl_in
5867 Set front left input volume. By default, this is @var{1}.
5868
5869 @item fl_out
5870 Set front left output volume. By default, this is @var{1}.
5871
5872 @item fr_in
5873 Set front right input volume. By default, this is @var{1}.
5874
5875 @item fr_out
5876 Set front right output volume. By default, this is @var{1}.
5877
5878 @item sl_in
5879 Set side left input volume. By default, this is @var{1}.
5880
5881 @item sl_out
5882 Set side left output volume. By default, this is @var{1}.
5883
5884 @item sr_in
5885 Set side right input volume. By default, this is @var{1}.
5886
5887 @item sr_out
5888 Set side right output volume. By default, this is @var{1}.
5889
5890 @item bl_in
5891 Set back left input volume. By default, this is @var{1}.
5892
5893 @item bl_out
5894 Set back left output volume. By default, this is @var{1}.
5895
5896 @item br_in
5897 Set back right input volume. By default, this is @var{1}.
5898
5899 @item br_out
5900 Set back right output volume. By default, this is @var{1}.
5901
5902 @item bc_in
5903 Set back center input volume. By default, this is @var{1}.
5904
5905 @item bc_out
5906 Set back center output volume. By default, this is @var{1}.
5907
5908 @item lfe_in
5909 Set LFE input volume. By default, this is @var{1}.
5910
5911 @item lfe_out
5912 Set LFE output volume. By default, this is @var{1}.
5913
5914 @item allx
5915 Set spread usage of stereo image across X axis for all channels.
5916
5917 @item ally
5918 Set spread usage of stereo image across Y axis for all channels.
5919
5920 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5921 Set spread usage of stereo image across X axis for each channel.
5922
5923 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5924 Set spread usage of stereo image across Y axis for each channel.
5925
5926 @item win_size
5927 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5928
5929 @item win_func
5930 Set window function.
5931
5932 It accepts the following values:
5933 @table @samp
5934 @item rect
5935 @item bartlett
5936 @item hann, hanning
5937 @item hamming
5938 @item blackman
5939 @item welch
5940 @item flattop
5941 @item bharris
5942 @item bnuttall
5943 @item bhann
5944 @item sine
5945 @item nuttall
5946 @item lanczos
5947 @item gauss
5948 @item tukey
5949 @item dolph
5950 @item cauchy
5951 @item parzen
5952 @item poisson
5953 @item bohman
5954 @end table
5955 Default is @code{hann}.
5956
5957 @item overlap
5958 Set window overlap. If set to 1, the recommended overlap for selected
5959 window function will be picked. Default is @code{0.5}.
5960 @end table
5961
5962 @section treble, highshelf
5963
5964 Boost or cut treble (upper) frequencies of the audio using a two-pole
5965 shelving filter with a response similar to that of a standard
5966 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5967
5968 The filter accepts the following options:
5969
5970 @table @option
5971 @item gain, g
5972 Give the gain at whichever is the lower of ~22 kHz and the
5973 Nyquist frequency. Its useful range is about -20 (for a large cut)
5974 to +20 (for a large boost). Beware of clipping when using a positive gain.
5975
5976 @item frequency, f
5977 Set the filter's central frequency and so can be used
5978 to extend or reduce the frequency range to be boosted or cut.
5979 The default value is @code{3000} Hz.
5980
5981 @item width_type, t
5982 Set method to specify band-width of filter.
5983 @table @option
5984 @item h
5985 Hz
5986 @item q
5987 Q-Factor
5988 @item o
5989 octave
5990 @item s
5991 slope
5992 @item k
5993 kHz
5994 @end table
5995
5996 @item width, w
5997 Determine how steep is the filter's shelf transition.
5998
5999 @item mix, m
6000 How much to use filtered signal in output. Default is 1.
6001 Range is between 0 and 1.
6002
6003 @item channels, c
6004 Specify which channels to filter, by default all available are filtered.
6005
6006 @item normalize, n
6007 Normalize biquad coefficients, by default is disabled.
6008 Enabling it will normalize magnitude response at DC to 0dB.
6009
6010 @item transform, a
6011 Set transform type of IIR filter.
6012 @table @option
6013 @item di
6014 @item dii
6015 @item tdii
6016 @item latt
6017 @end table
6018
6019 @item precision, r
6020 Set precison of filtering.
6021 @table @option
6022 @item auto
6023 Pick automatic sample format depending on surround filters.
6024 @item s16
6025 Always use signed 16-bit.
6026 @item s32
6027 Always use signed 32-bit.
6028 @item f32
6029 Always use float 32-bit.
6030 @item f64
6031 Always use float 64-bit.
6032 @end table
6033 @end table
6034
6035 @subsection Commands
6036
6037 This filter supports the following commands:
6038 @table @option
6039 @item frequency, f
6040 Change treble frequency.
6041 Syntax for the command is : "@var{frequency}"
6042
6043 @item width_type, t
6044 Change treble width_type.
6045 Syntax for the command is : "@var{width_type}"
6046
6047 @item width, w
6048 Change treble width.
6049 Syntax for the command is : "@var{width}"
6050
6051 @item gain, g
6052 Change treble gain.
6053 Syntax for the command is : "@var{gain}"
6054
6055 @item mix, m
6056 Change treble mix.
6057 Syntax for the command is : "@var{mix}"
6058 @end table
6059
6060 @section tremolo
6061
6062 Sinusoidal amplitude modulation.
6063
6064 The filter accepts the following options:
6065
6066 @table @option
6067 @item f
6068 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6069 (20 Hz or lower) will result in a tremolo effect.
6070 This filter may also be used as a ring modulator by specifying
6071 a modulation frequency higher than 20 Hz.
6072 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6073
6074 @item d
6075 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6076 Default value is 0.5.
6077 @end table
6078
6079 @section vibrato
6080
6081 Sinusoidal phase modulation.
6082
6083 The filter accepts the following options:
6084
6085 @table @option
6086 @item f
6087 Modulation frequency in Hertz.
6088 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6089
6090 @item d
6091 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6092 Default value is 0.5.
6093 @end table
6094
6095 @section volume
6096
6097 Adjust the input audio volume.
6098
6099 It accepts the following parameters:
6100 @table @option
6101
6102 @item volume
6103 Set audio volume expression.
6104
6105 Output values are clipped to the maximum value.
6106
6107 The output audio volume is given by the relation:
6108 @example
6109 @var{output_volume} = @var{volume} * @var{input_volume}
6110 @end example
6111
6112 The default value for @var{volume} is "1.0".
6113
6114 @item precision
6115 This parameter represents the mathematical precision.
6116
6117 It determines which input sample formats will be allowed, which affects the
6118 precision of the volume scaling.
6119
6120 @table @option
6121 @item fixed
6122 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6123 @item float
6124 32-bit floating-point; this limits input sample format to FLT. (default)
6125 @item double
6126 64-bit floating-point; this limits input sample format to DBL.
6127 @end table
6128
6129 @item replaygain
6130 Choose the behaviour on encountering ReplayGain side data in input frames.
6131
6132 @table @option
6133 @item drop
6134 Remove ReplayGain side data, ignoring its contents (the default).
6135
6136 @item ignore
6137 Ignore ReplayGain side data, but leave it in the frame.
6138
6139 @item track
6140 Prefer the track gain, if present.
6141
6142 @item album
6143 Prefer the album gain, if present.
6144 @end table
6145
6146 @item replaygain_preamp
6147 Pre-amplification gain in dB to apply to the selected replaygain gain.
6148
6149 Default value for @var{replaygain_preamp} is 0.0.
6150
6151 @item replaygain_noclip
6152 Prevent clipping by limiting the gain applied.
6153
6154 Default value for @var{replaygain_noclip} is 1.
6155
6156 @item eval
6157 Set when the volume expression is evaluated.
6158
6159 It accepts the following values:
6160 @table @samp
6161 @item once
6162 only evaluate expression once during the filter initialization, or
6163 when the @samp{volume} command is sent
6164
6165 @item frame
6166 evaluate expression for each incoming frame
6167 @end table
6168
6169 Default value is @samp{once}.
6170 @end table
6171
6172 The volume expression can contain the following parameters.
6173
6174 @table @option
6175 @item n
6176 frame number (starting at zero)
6177 @item nb_channels
6178 number of channels
6179 @item nb_consumed_samples
6180 number of samples consumed by the filter
6181 @item nb_samples
6182 number of samples in the current frame
6183 @item pos
6184 original frame position in the file
6185 @item pts
6186 frame PTS
6187 @item sample_rate
6188 sample rate
6189 @item startpts
6190 PTS at start of stream
6191 @item startt
6192 time at start of stream
6193 @item t
6194 frame time
6195 @item tb
6196 timestamp timebase
6197 @item volume
6198 last set volume value
6199 @end table
6200
6201 Note that when @option{eval} is set to @samp{once} only the
6202 @var{sample_rate} and @var{tb} variables are available, all other
6203 variables will evaluate to NAN.
6204
6205 @subsection Commands
6206
6207 This filter supports the following commands:
6208 @table @option
6209 @item volume
6210 Modify the volume expression.
6211 The command accepts the same syntax of the corresponding option.
6212
6213 If the specified expression is not valid, it is kept at its current
6214 value.
6215 @end table
6216
6217 @subsection Examples
6218
6219 @itemize
6220 @item
6221 Halve the input audio volume:
6222 @example
6223 volume=volume=0.5
6224 volume=volume=1/2
6225 volume=volume=-6.0206dB
6226 @end example
6227
6228 In all the above example the named key for @option{volume} can be
6229 omitted, for example like in:
6230 @example
6231 volume=0.5
6232 @end example
6233
6234 @item
6235 Increase input audio power by 6 decibels using fixed-point precision:
6236 @example
6237 volume=volume=6dB:precision=fixed
6238 @end example
6239
6240 @item
6241 Fade volume after time 10 with an annihilation period of 5 seconds:
6242 @example
6243 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6244 @end example
6245 @end itemize
6246
6247 @section volumedetect
6248
6249 Detect the volume of the input video.
6250
6251 The filter has no parameters. The input is not modified. Statistics about
6252 the volume will be printed in the log when the input stream end is reached.
6253
6254 In particular it will show the mean volume (root mean square), maximum
6255 volume (on a per-sample basis), and the beginning of a histogram of the
6256 registered volume values (from the maximum value to a cumulated 1/1000 of
6257 the samples).
6258
6259 All volumes are in decibels relative to the maximum PCM value.
6260
6261 @subsection Examples
6262
6263 Here is an excerpt of the output:
6264 @example
6265 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6266 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6267 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6268 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6269 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6270 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6271 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6272 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6273 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6274 @end example
6275
6276 It means that:
6277 @itemize
6278 @item
6279 The mean square energy is approximately -27 dB, or 10^-2.7.
6280 @item
6281 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6282 @item
6283 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6284 @end itemize
6285
6286 In other words, raising the volume by +4 dB does not cause any clipping,
6287 raising it by +5 dB causes clipping for 6 samples, etc.
6288
6289 @c man end AUDIO FILTERS
6290
6291 @chapter Audio Sources
6292 @c man begin AUDIO SOURCES
6293
6294 Below is a description of the currently available audio sources.
6295
6296 @section abuffer
6297
6298 Buffer audio frames, and make them available to the filter chain.
6299
6300 This source is mainly intended for a programmatic use, in particular
6301 through the interface defined in @file{libavfilter/buffersrc.h}.
6302
6303 It accepts the following parameters:
6304 @table @option
6305
6306 @item time_base
6307 The timebase which will be used for timestamps of submitted frames. It must be
6308 either a floating-point number or in @var{numerator}/@var{denominator} form.
6309
6310 @item sample_rate
6311 The sample rate of the incoming audio buffers.
6312
6313 @item sample_fmt
6314 The sample format of the incoming audio buffers.
6315 Either a sample format name or its corresponding integer representation from
6316 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6317
6318 @item channel_layout
6319 The channel layout of the incoming audio buffers.
6320 Either a channel layout name from channel_layout_map in
6321 @file{libavutil/channel_layout.c} or its corresponding integer representation
6322 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6323
6324 @item channels
6325 The number of channels of the incoming audio buffers.
6326 If both @var{channels} and @var{channel_layout} are specified, then they
6327 must be consistent.
6328
6329 @end table
6330
6331 @subsection Examples
6332
6333 @example
6334 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6335 @end example
6336
6337 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6338 Since the sample format with name "s16p" corresponds to the number
6339 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6340 equivalent to:
6341 @example
6342 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6343 @end example
6344
6345 @section aevalsrc
6346
6347 Generate an audio signal specified by an expression.
6348
6349 This source accepts in input one or more expressions (one for each
6350 channel), which are evaluated and used to generate a corresponding
6351 audio signal.
6352
6353 This source accepts the following options:
6354
6355 @table @option
6356 @item exprs
6357 Set the '|'-separated expressions list for each separate channel. In case the
6358 @option{channel_layout} option is not specified, the selected channel layout
6359 depends on the number of provided expressions. Otherwise the last
6360 specified expression is applied to the remaining output channels.
6361
6362 @item channel_layout, c
6363 Set the channel layout. The number of channels in the specified layout
6364 must be equal to the number of specified expressions.
6365
6366 @item duration, d
6367 Set the minimum duration of the sourced audio. See
6368 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6369 for the accepted syntax.
6370 Note that the resulting duration may be greater than the specified
6371 duration, as the generated audio is always cut at the end of a
6372 complete frame.
6373
6374 If not specified, or the expressed duration is negative, the audio is
6375 supposed to be generated forever.
6376
6377 @item nb_samples, n
6378 Set the number of samples per channel per each output frame,
6379 default to 1024.
6380
6381 @item sample_rate, s
6382 Specify the sample rate, default to 44100.
6383 @end table
6384
6385 Each expression in @var{exprs} can contain the following constants:
6386
6387 @table @option
6388 @item n
6389 number of the evaluated sample, starting from 0
6390
6391 @item t
6392 time of the evaluated sample expressed in seconds, starting from 0
6393
6394 @item s
6395 sample rate
6396
6397 @end table
6398
6399 @subsection Examples
6400
6401 @itemize
6402 @item
6403 Generate silence:
6404 @example
6405 aevalsrc=0
6406 @end example
6407
6408 @item
6409 Generate a sin signal with frequency of 440 Hz, set sample rate to
6410 8000 Hz:
6411 @example
6412 aevalsrc="sin(440*2*PI*t):s=8000"
6413 @end example
6414
6415 @item
6416 Generate a two channels signal, specify the channel layout (Front
6417 Center + Back Center) explicitly:
6418 @example
6419 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6420 @end example
6421
6422 @item
6423 Generate white noise:
6424 @example
6425 aevalsrc="-2+random(0)"
6426 @end example
6427
6428 @item
6429 Generate an amplitude modulated signal:
6430 @example
6431 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6432 @end example
6433
6434 @item
6435 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6436 @example
6437 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6438 @end example
6439
6440 @end itemize
6441
6442 @section afirsrc
6443
6444 Generate a FIR coefficients using frequency sampling method.
6445
6446 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6447
6448 The filter accepts the following options:
6449
6450 @table @option
6451 @item taps, t
6452 Set number of filter coefficents in output audio stream.
6453 Default value is 1025.
6454
6455 @item frequency, f
6456 Set frequency points from where magnitude and phase are set.
6457 This must be in non decreasing order, and first element must be 0, while last element
6458 must be 1. Elements are separated by white spaces.
6459
6460 @item magnitude, m
6461 Set magnitude value for every frequency point set by @option{frequency}.
6462 Number of values must be same as number of frequency points.
6463 Values are separated by white spaces.
6464
6465 @item phase, p
6466 Set phase value for every frequency point set by @option{frequency}.
6467 Number of values must be same as number of frequency points.
6468 Values are separated by white spaces.
6469
6470 @item sample_rate, r
6471 Set sample rate, default is 44100.
6472
6473 @item nb_samples, n
6474 Set number of samples per each frame. Default is 1024.
6475
6476 @item win_func, w
6477 Set window function. Default is blackman.
6478 @end table
6479
6480 @section anullsrc
6481
6482 The null audio source, return unprocessed audio frames. It is mainly useful
6483 as a template and to be employed in analysis / debugging tools, or as
6484 the source for filters which ignore the input data (for example the sox
6485 synth filter).
6486
6487 This source accepts the following options:
6488
6489 @table @option
6490
6491 @item channel_layout, cl
6492
6493 Specifies the channel layout, and can be either an integer or a string
6494 representing a channel layout. The default value of @var{channel_layout}
6495 is "stereo".
6496
6497 Check the channel_layout_map definition in
6498 @file{libavutil/channel_layout.c} for the mapping between strings and
6499 channel layout values.
6500
6501 @item sample_rate, r
6502 Specifies the sample rate, and defaults to 44100.
6503
6504 @item nb_samples, n
6505 Set the number of samples per requested frames.
6506
6507 @item duration, d
6508 Set the duration of the sourced audio. See
6509 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6510 for the accepted syntax.
6511
6512 If not specified, or the expressed duration is negative, the audio is
6513 supposed to be generated forever.
6514 @end table
6515
6516 @subsection Examples
6517
6518 @itemize
6519 @item
6520 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6521 @example
6522 anullsrc=r=48000:cl=4
6523 @end example
6524
6525 @item
6526 Do the same operation with a more obvious syntax:
6527 @example
6528 anullsrc=r=48000:cl=mono
6529 @end example
6530 @end itemize
6531
6532 All the parameters need to be explicitly defined.
6533
6534 @section flite
6535
6536 Synthesize a voice utterance using the libflite library.
6537
6538 To enable compilation of this filter you need to configure FFmpeg with
6539 @code{--enable-libflite}.
6540
6541 Note that versions of the flite library prior to 2.0 are not thread-safe.
6542
6543 The filter accepts the following options:
6544
6545 @table @option
6546
6547 @item list_voices
6548 If set to 1, list the names of the available voices and exit
6549 immediately. Default value is 0.
6550
6551 @item nb_samples, n
6552 Set the maximum number of samples per frame. Default value is 512.
6553
6554 @item textfile
6555 Set the filename containing the text to speak.
6556
6557 @item text
6558 Set the text to speak.
6559
6560 @item voice, v
6561 Set the voice to use for the speech synthesis. Default value is
6562 @code{kal}. See also the @var{list_voices} option.
6563 @end table
6564
6565 @subsection Examples
6566
6567 @itemize
6568 @item
6569 Read from file @file{speech.txt}, and synthesize the text using the
6570 standard flite voice:
6571 @example
6572 flite=textfile=speech.txt
6573 @end example
6574
6575 @item
6576 Read the specified text selecting the @code{slt} voice:
6577 @example
6578 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6579 @end example
6580
6581 @item
6582 Input text to ffmpeg:
6583 @example
6584 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6585 @end example
6586
6587 @item
6588 Make @file{ffplay} speak the specified text, using @code{flite} and
6589 the @code{lavfi} device:
6590 @example
6591 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6592 @end example
6593 @end itemize
6594
6595 For more information about libflite, check:
6596 @url{http://www.festvox.org/flite/}
6597
6598 @section anoisesrc
6599
6600 Generate a noise audio signal.
6601
6602 The filter accepts the following options:
6603
6604 @table @option
6605 @item sample_rate, r
6606 Specify the sample rate. Default value is 48000 Hz.
6607
6608 @item amplitude, a
6609 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6610 is 1.0.
6611
6612 @item duration, d
6613 Specify the duration of the generated audio stream. Not specifying this option
6614 results in noise with an infinite length.
6615
6616 @item color, colour, c
6617 Specify the color of noise. Available noise colors are white, pink, brown,
6618 blue, violet and velvet. Default color is white.
6619
6620 @item seed, s
6621 Specify a value used to seed the PRNG.
6622
6623 @item nb_samples, n
6624 Set the number of samples per each output frame, default is 1024.
6625 @end table
6626
6627 @subsection Examples
6628
6629 @itemize
6630
6631 @item
6632 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6633 @example
6634 anoisesrc=d=60:c=pink:r=44100:a=0.5
6635 @end example
6636 @end itemize
6637
6638 @section hilbert
6639
6640 Generate odd-tap Hilbert transform FIR coefficients.
6641
6642 The resulting stream can be used with @ref{afir} filter for phase-shifting
6643 the signal by 90 degrees.
6644
6645 This is used in many matrix coding schemes and for analytic signal generation.
6646 The process is often written as a multiplication by i (or j), the imaginary unit.
6647
6648 The filter accepts the following options:
6649
6650 @table @option
6651
6652 @item sample_rate, s
6653 Set sample rate, default is 44100.
6654
6655 @item taps, t
6656 Set length of FIR filter, default is 22051.
6657
6658 @item nb_samples, n
6659 Set number of samples per each frame.
6660
6661 @item win_func, w
6662 Set window function to be used when generating FIR coefficients.
6663 @end table
6664
6665 @section sinc
6666
6667 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6668
6669 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6670
6671 The filter accepts the following options:
6672
6673 @table @option
6674 @item sample_rate, r
6675 Set sample rate, default is 44100.
6676
6677 @item nb_samples, n
6678 Set number of samples per each frame. Default is 1024.
6679
6680 @item hp
6681 Set high-pass frequency. Default is 0.
6682
6683 @item lp
6684 Set low-pass frequency. Default is 0.
6685 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6686 is higher than 0 then filter will create band-pass filter coefficients,
6687 otherwise band-reject filter coefficients.
6688
6689 @item phase
6690 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6691
6692 @item beta
6693 Set Kaiser window beta.
6694
6695 @item att
6696 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6697
6698 @item round
6699 Enable rounding, by default is disabled.
6700
6701 @item hptaps
6702 Set number of taps for high-pass filter.
6703
6704 @item lptaps
6705 Set number of taps for low-pass filter.
6706 @end table
6707
6708 @section sine
6709
6710 Generate an audio signal made of a sine wave with amplitude 1/8.
6711
6712 The audio signal is bit-exact.
6713
6714 The filter accepts the following options:
6715
6716 @table @option
6717
6718 @item frequency, f
6719 Set the carrier frequency. Default is 440 Hz.
6720
6721 @item beep_factor, b
6722 Enable a periodic beep every second with frequency @var{beep_factor} times
6723 the carrier frequency. Default is 0, meaning the beep is disabled.
6724
6725 @item sample_rate, r
6726 Specify the sample rate, default is 44100.
6727
6728 @item duration, d
6729 Specify the duration of the generated audio stream.
6730
6731 @item samples_per_frame
6732 Set the number of samples per output frame.
6733
6734 The expression can contain the following constants:
6735
6736 @table @option
6737 @item n
6738 The (sequential) number of the output audio frame, starting from 0.
6739
6740 @item pts
6741 The PTS (Presentation TimeStamp) of the output audio frame,
6742 expressed in @var{TB} units.
6743
6744 @item t
6745 The PTS of the output audio frame, expressed in seconds.
6746
6747 @item TB
6748 The timebase of the output audio frames.
6749 @end table
6750
6751 Default is @code{1024}.
6752 @end table
6753
6754 @subsection Examples
6755
6756 @itemize
6757
6758 @item
6759 Generate a simple 440 Hz sine wave:
6760 @example
6761 sine
6762 @end example
6763
6764 @item
6765 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6766 @example
6767 sine=220:4:d=5
6768 sine=f=220:b=4:d=5
6769 sine=frequency=220:beep_factor=4:duration=5
6770 @end example
6771
6772 @item
6773 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6774 pattern:
6775 @example
6776 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6777 @end example
6778 @end itemize
6779
6780 @c man end AUDIO SOURCES
6781
6782 @chapter Audio Sinks
6783 @c man begin AUDIO SINKS
6784
6785 Below is a description of the currently available audio sinks.
6786
6787 @section abuffersink
6788
6789 Buffer audio frames, and make them available to the end of filter chain.
6790
6791 This sink is mainly intended for programmatic use, in particular
6792 through the interface defined in @file{libavfilter/buffersink.h}
6793 or the options system.
6794
6795 It accepts a pointer to an AVABufferSinkContext structure, which
6796 defines the incoming buffers' formats, to be passed as the opaque
6797 parameter to @code{avfilter_init_filter} for initialization.
6798 @section anullsink
6799
6800 Null audio sink; do absolutely nothing with the input audio. It is
6801 mainly useful as a template and for use in analysis / debugging
6802 tools.
6803
6804 @c man end AUDIO SINKS
6805
6806 @chapter Video Filters
6807 @c man begin VIDEO FILTERS
6808
6809 When you configure your FFmpeg build, you can disable any of the
6810 existing filters using @code{--disable-filters}.
6811 The configure output will show the video filters included in your
6812 build.
6813
6814 Below is a description of the currently available video filters.
6815
6816 @section addroi
6817
6818 Mark a region of interest in a video frame.
6819
6820 The frame data is passed through unchanged, but metadata is attached
6821 to the frame indicating regions of interest which can affect the
6822 behaviour of later encoding.  Multiple regions can be marked by
6823 applying the filter multiple times.
6824
6825 @table @option
6826 @item x
6827 Region distance in pixels from the left edge of the frame.
6828 @item y
6829 Region distance in pixels from the top edge of the frame.
6830 @item w
6831 Region width in pixels.
6832 @item h
6833 Region height in pixels.
6834
6835 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6836 and may contain the following variables:
6837 @table @option
6838 @item iw
6839 Width of the input frame.
6840 @item ih
6841 Height of the input frame.
6842 @end table
6843
6844 @item qoffset
6845 Quantisation offset to apply within the region.
6846
6847 This must be a real value in the range -1 to +1.  A value of zero
6848 indicates no quality change.  A negative value asks for better quality
6849 (less quantisation), while a positive value asks for worse quality
6850 (greater quantisation).
6851
6852 The range is calibrated so that the extreme values indicate the
6853 largest possible offset - if the rest of the frame is encoded with the
6854 worst possible quality, an offset of -1 indicates that this region
6855 should be encoded with the best possible quality anyway.  Intermediate
6856 values are then interpolated in some codec-dependent way.
6857
6858 For example, in 10-bit H.264 the quantisation parameter varies between
6859 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6860 this region should be encoded with a QP around one-tenth of the full
6861 range better than the rest of the frame.  So, if most of the frame
6862 were to be encoded with a QP of around 30, this region would get a QP
6863 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6864 An extreme value of -1 would indicate that this region should be
6865 encoded with the best possible quality regardless of the treatment of
6866 the rest of the frame - that is, should be encoded at a QP of -12.
6867 @item clear
6868 If set to true, remove any existing regions of interest marked on the
6869 frame before adding the new one.
6870 @end table
6871
6872 @subsection Examples
6873
6874 @itemize
6875 @item
6876 Mark the centre quarter of the frame as interesting.
6877 @example
6878 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6879 @end example
6880 @item
6881 Mark the 100-pixel-wide region on the left edge of the frame as very
6882 uninteresting (to be encoded at much lower quality than the rest of
6883 the frame).
6884 @example
6885 addroi=0:0:100:ih:+1/5
6886 @end example
6887 @end itemize
6888
6889 @section alphaextract
6890
6891 Extract the alpha component from the input as a grayscale video. This
6892 is especially useful with the @var{alphamerge} filter.
6893
6894 @section alphamerge
6895
6896 Add or replace the alpha component of the primary input with the
6897 grayscale value of a second input. This is intended for use with
6898 @var{alphaextract} to allow the transmission or storage of frame
6899 sequences that have alpha in a format that doesn't support an alpha
6900 channel.
6901
6902 For example, to reconstruct full frames from a normal YUV-encoded video
6903 and a separate video created with @var{alphaextract}, you might use:
6904 @example
6905 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6906 @end example
6907
6908 @section amplify
6909
6910 Amplify differences between current pixel and pixels of adjacent frames in
6911 same pixel location.
6912
6913 This filter accepts the following options:
6914
6915 @table @option
6916 @item radius
6917 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6918 For example radius of 3 will instruct filter to calculate average of 7 frames.
6919
6920 @item factor
6921 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6922
6923 @item threshold
6924 Set threshold for difference amplification. Any difference greater or equal to
6925 this value will not alter source pixel. Default is 10.
6926 Allowed range is from 0 to 65535.
6927
6928 @item tolerance
6929 Set tolerance for difference amplification. Any difference lower to
6930 this value will not alter source pixel. Default is 0.
6931 Allowed range is from 0 to 65535.
6932
6933 @item low
6934 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6935 This option controls maximum possible value that will decrease source pixel value.
6936
6937 @item high
6938 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6939 This option controls maximum possible value that will increase source pixel value.
6940
6941 @item planes
6942 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6943 @end table
6944
6945 @subsection Commands
6946
6947 This filter supports the following @ref{commands} that corresponds to option of same name:
6948 @table @option
6949 @item factor
6950 @item threshold
6951 @item tolerance
6952 @item low
6953 @item high
6954 @item planes
6955 @end table
6956
6957 @section ass
6958
6959 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6960 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6961 Substation Alpha) subtitles files.
6962
6963 This filter accepts the following option in addition to the common options from
6964 the @ref{subtitles} filter:
6965
6966 @table @option
6967 @item shaping
6968 Set the shaping engine
6969
6970 Available values are:
6971 @table @samp
6972 @item auto
6973 The default libass shaping engine, which is the best available.
6974 @item simple
6975 Fast, font-agnostic shaper that can do only substitutions
6976 @item complex
6977 Slower shaper using OpenType for substitutions and positioning
6978 @end table
6979
6980 The default is @code{auto}.
6981 @end table
6982
6983 @section atadenoise
6984 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6985
6986 The filter accepts the following options:
6987
6988 @table @option
6989 @item 0a
6990 Set threshold A for 1st plane. Default is 0.02.
6991 Valid range is 0 to 0.3.
6992
6993 @item 0b
6994 Set threshold B for 1st plane. Default is 0.04.
6995 Valid range is 0 to 5.
6996
6997 @item 1a
6998 Set threshold A for 2nd plane. Default is 0.02.
6999 Valid range is 0 to 0.3.
7000
7001 @item 1b
7002 Set threshold B for 2nd plane. Default is 0.04.
7003 Valid range is 0 to 5.
7004
7005 @item 2a
7006 Set threshold A for 3rd plane. Default is 0.02.
7007 Valid range is 0 to 0.3.
7008
7009 @item 2b
7010 Set threshold B for 3rd plane. Default is 0.04.
7011 Valid range is 0 to 5.
7012
7013 Threshold A is designed to react on abrupt changes in the input signal and
7014 threshold B is designed to react on continuous changes in the input signal.
7015
7016 @item s
7017 Set number of frames filter will use for averaging. Default is 9. Must be odd
7018 number in range [5, 129].
7019
7020 @item p
7021 Set what planes of frame filter will use for averaging. Default is all.
7022
7023 @item a
7024 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7025 Alternatively can be set to @code{s} serial.
7026
7027 Parallel can be faster then serial, while other way around is never true.
7028 Parallel will abort early on first change being greater then thresholds, while serial
7029 will continue processing other side of frames if they are equal or below thresholds.
7030 @end table
7031
7032 @subsection Commands
7033 This filter supports same @ref{commands} as options except option @code{s}.
7034 The command accepts the same syntax of the corresponding option.
7035
7036 @section avgblur
7037
7038 Apply average blur filter.
7039
7040 The filter accepts the following options:
7041
7042 @table @option
7043 @item sizeX
7044 Set horizontal radius size.
7045
7046 @item planes
7047 Set which planes to filter. By default all planes are filtered.
7048
7049 @item sizeY
7050 Set vertical radius size, if zero it will be same as @code{sizeX}.
7051 Default is @code{0}.
7052 @end table
7053
7054 @subsection Commands
7055 This filter supports same commands as options.
7056 The command accepts the same syntax of the corresponding option.
7057
7058 If the specified expression is not valid, it is kept at its current
7059 value.
7060
7061 @section bbox
7062
7063 Compute the bounding box for the non-black pixels in the input frame
7064 luminance plane.
7065
7066 This filter computes the bounding box containing all the pixels with a
7067 luminance value greater than the minimum allowed value.
7068 The parameters describing the bounding box are printed on the filter
7069 log.
7070
7071 The filter accepts the following option:
7072
7073 @table @option
7074 @item min_val
7075 Set the minimal luminance value. Default is @code{16}.
7076 @end table
7077
7078 @section bilateral
7079 Apply bilateral filter, spatial smoothing while preserving edges.
7080
7081 The filter accepts the following options:
7082 @table @option
7083 @item sigmaS
7084 Set sigma of gaussian function to calculate spatial weight.
7085 Allowed range is 0 to 512. Default is 0.1.
7086
7087 @item sigmaR
7088 Set sigma of gaussian function to calculate range weight.
7089 Allowed range is 0 to 1. Default is 0.1.
7090
7091 @item planes
7092 Set planes to filter. Default is first only.
7093 @end table
7094
7095 @section bitplanenoise
7096
7097 Show and measure bit plane noise.
7098
7099 The filter accepts the following options:
7100
7101 @table @option
7102 @item bitplane
7103 Set which plane to analyze. Default is @code{1}.
7104
7105 @item filter
7106 Filter out noisy pixels from @code{bitplane} set above.
7107 Default is disabled.
7108 @end table
7109
7110 @section blackdetect
7111
7112 Detect video intervals that are (almost) completely black. Can be
7113 useful to detect chapter transitions, commercials, or invalid
7114 recordings.
7115
7116 The filter outputs its detection analysis to both the log as well as
7117 frame metadata. If a black segment of at least the specified minimum
7118 duration is found, a line with the start and end timestamps as well
7119 as duration is printed to the log with level @code{info}. In addition,
7120 a log line with level @code{debug} is printed per frame showing the
7121 black amount detected for that frame.
7122
7123 The filter also attaches metadata to the first frame of a black
7124 segment with key @code{lavfi.black_start} and to the first frame
7125 after the black segment ends with key @code{lavfi.black_end}. The
7126 value is the frame's timestamp. This metadata is added regardless
7127 of the minimum duration specified.
7128
7129 The filter accepts the following options:
7130
7131 @table @option
7132 @item black_min_duration, d
7133 Set the minimum detected black duration expressed in seconds. It must
7134 be a non-negative floating point number.
7135
7136 Default value is 2.0.
7137
7138 @item picture_black_ratio_th, pic_th
7139 Set the threshold for considering a picture "black".
7140 Express the minimum value for the ratio:
7141 @example
7142 @var{nb_black_pixels} / @var{nb_pixels}
7143 @end example
7144
7145 for which a picture is considered black.
7146 Default value is 0.98.
7147
7148 @item pixel_black_th, pix_th
7149 Set the threshold for considering a pixel "black".
7150
7151 The threshold expresses the maximum pixel luminance value for which a
7152 pixel is considered "black". The provided value is scaled according to
7153 the following equation:
7154 @example
7155 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7156 @end example
7157
7158 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7159 the input video format, the range is [0-255] for YUV full-range
7160 formats and [16-235] for YUV non full-range formats.
7161
7162 Default value is 0.10.
7163 @end table
7164
7165 The following example sets the maximum pixel threshold to the minimum
7166 value, and detects only black intervals of 2 or more seconds:
7167 @example
7168 blackdetect=d=2:pix_th=0.00
7169 @end example
7170
7171 @section blackframe
7172
7173 Detect frames that are (almost) completely black. Can be useful to
7174 detect chapter transitions or commercials. Output lines consist of
7175 the frame number of the detected frame, the percentage of blackness,
7176 the position in the file if known or -1 and the timestamp in seconds.
7177
7178 In order to display the output lines, you need to set the loglevel at
7179 least to the AV_LOG_INFO value.
7180
7181 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7182 The value represents the percentage of pixels in the picture that
7183 are below the threshold value.
7184
7185 It accepts the following parameters:
7186
7187 @table @option
7188
7189 @item amount
7190 The percentage of the pixels that have to be below the threshold; it defaults to
7191 @code{98}.
7192
7193 @item threshold, thresh
7194 The threshold below which a pixel value is considered black; it defaults to
7195 @code{32}.
7196
7197 @end table
7198
7199 @anchor{blend}
7200 @section blend
7201
7202 Blend two video frames into each other.
7203
7204 The @code{blend} filter takes two input streams and outputs one
7205 stream, the first input is the "top" layer and second input is
7206 "bottom" layer.  By default, the output terminates when the longest input terminates.
7207
7208 The @code{tblend} (time blend) filter takes two consecutive frames
7209 from one single stream, and outputs the result obtained by blending
7210 the new frame on top of the old frame.
7211
7212 A description of the accepted options follows.
7213
7214 @table @option
7215 @item c0_mode
7216 @item c1_mode
7217 @item c2_mode
7218 @item c3_mode
7219 @item all_mode
7220 Set blend mode for specific pixel component or all pixel components in case
7221 of @var{all_mode}. Default value is @code{normal}.
7222
7223 Available values for component modes are:
7224 @table @samp
7225 @item addition
7226 @item grainmerge
7227 @item and
7228 @item average
7229 @item burn
7230 @item darken
7231 @item difference
7232 @item grainextract
7233 @item divide
7234 @item dodge
7235 @item freeze
7236 @item exclusion
7237 @item extremity
7238 @item glow
7239 @item hardlight
7240 @item hardmix
7241 @item heat
7242 @item lighten
7243 @item linearlight
7244 @item multiply
7245 @item multiply128
7246 @item negation
7247 @item normal
7248 @item or
7249 @item overlay
7250 @item phoenix
7251 @item pinlight
7252 @item reflect
7253 @item screen
7254 @item softlight
7255 @item subtract
7256 @item vividlight
7257 @item xor
7258 @end table
7259
7260 @item c0_opacity
7261 @item c1_opacity
7262 @item c2_opacity
7263 @item c3_opacity
7264 @item all_opacity
7265 Set blend opacity for specific pixel component or all pixel components in case
7266 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7267
7268 @item c0_expr
7269 @item c1_expr
7270 @item c2_expr
7271 @item c3_expr
7272 @item all_expr
7273 Set blend expression for specific pixel component or all pixel components in case
7274 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7275
7276 The expressions can use the following variables:
7277
7278 @table @option
7279 @item N
7280 The sequential number of the filtered frame, starting from @code{0}.
7281
7282 @item X
7283 @item Y
7284 the coordinates of the current sample
7285
7286 @item W
7287 @item H
7288 the width and height of currently filtered plane
7289
7290 @item SW
7291 @item SH
7292 Width and height scale for the plane being filtered. It is the
7293 ratio between the dimensions of the current plane to the luma plane,
7294 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7295 the luma plane and @code{0.5,0.5} for the chroma planes.
7296
7297 @item T
7298 Time of the current frame, expressed in seconds.
7299
7300 @item TOP, A
7301 Value of pixel component at current location for first video frame (top layer).
7302
7303 @item BOTTOM, B
7304 Value of pixel component at current location for second video frame (bottom layer).
7305 @end table
7306 @end table
7307
7308 The @code{blend} filter also supports the @ref{framesync} options.
7309
7310 @subsection Examples
7311
7312 @itemize
7313 @item
7314 Apply transition from bottom layer to top layer in first 10 seconds:
7315 @example
7316 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7317 @end example
7318
7319 @item
7320 Apply linear horizontal transition from top layer to bottom layer:
7321 @example
7322 blend=all_expr='A*(X/W)+B*(1-X/W)'
7323 @end example
7324
7325 @item
7326 Apply 1x1 checkerboard effect:
7327 @example
7328 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7329 @end example
7330
7331 @item
7332 Apply uncover left effect:
7333 @example
7334 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7335 @end example
7336
7337 @item
7338 Apply uncover down effect:
7339 @example
7340 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7341 @end example
7342
7343 @item
7344 Apply uncover up-left effect:
7345 @example
7346 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7347 @end example
7348
7349 @item
7350 Split diagonally video and shows top and bottom layer on each side:
7351 @example
7352 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7353 @end example
7354
7355 @item
7356 Display differences between the current and the previous frame:
7357 @example
7358 tblend=all_mode=grainextract
7359 @end example
7360 @end itemize
7361
7362 @section bm3d
7363
7364 Denoise frames using Block-Matching 3D algorithm.
7365
7366 The filter accepts the following options.
7367
7368 @table @option
7369 @item sigma
7370 Set denoising strength. Default value is 1.
7371 Allowed range is from 0 to 999.9.
7372 The denoising algorithm is very sensitive to sigma, so adjust it
7373 according to the source.
7374
7375 @item block
7376 Set local patch size. This sets dimensions in 2D.
7377
7378 @item bstep
7379 Set sliding step for processing blocks. Default value is 4.
7380 Allowed range is from 1 to 64.
7381 Smaller values allows processing more reference blocks and is slower.
7382
7383 @item group
7384 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7385 When set to 1, no block matching is done. Larger values allows more blocks
7386 in single group.
7387 Allowed range is from 1 to 256.
7388
7389 @item range
7390 Set radius for search block matching. Default is 9.
7391 Allowed range is from 1 to INT32_MAX.
7392
7393 @item mstep
7394 Set step between two search locations for block matching. Default is 1.
7395 Allowed range is from 1 to 64. Smaller is slower.
7396
7397 @item thmse
7398 Set threshold of mean square error for block matching. Valid range is 0 to
7399 INT32_MAX.
7400
7401 @item hdthr
7402 Set thresholding parameter for hard thresholding in 3D transformed domain.
7403 Larger values results in stronger hard-thresholding filtering in frequency
7404 domain.
7405
7406 @item estim
7407 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7408 Default is @code{basic}.
7409
7410 @item ref
7411 If enabled, filter will use 2nd stream for block matching.
7412 Default is disabled for @code{basic} value of @var{estim} option,
7413 and always enabled if value of @var{estim} is @code{final}.
7414
7415 @item planes
7416 Set planes to filter. Default is all available except alpha.
7417 @end table
7418
7419 @subsection Examples
7420
7421 @itemize
7422 @item
7423 Basic filtering with bm3d:
7424 @example
7425 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7426 @end example
7427
7428 @item
7429 Same as above, but filtering only luma:
7430 @example
7431 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7432 @end example
7433
7434 @item
7435 Same as above, but with both estimation modes:
7436 @example
7437 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
7438 @end example
7439
7440 @item
7441 Same as above, but prefilter with @ref{nlmeans} filter instead:
7442 @example
7443 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
7444 @end example
7445 @end itemize
7446
7447 @section boxblur
7448
7449 Apply a boxblur algorithm to the input video.
7450
7451 It accepts the following parameters:
7452
7453 @table @option
7454
7455 @item luma_radius, lr
7456 @item luma_power, lp
7457 @item chroma_radius, cr
7458 @item chroma_power, cp
7459 @item alpha_radius, ar
7460 @item alpha_power, ap
7461
7462 @end table
7463
7464 A description of the accepted options follows.
7465
7466 @table @option
7467 @item luma_radius, lr
7468 @item chroma_radius, cr
7469 @item alpha_radius, ar
7470 Set an expression for the box radius in pixels used for blurring the
7471 corresponding input plane.
7472
7473 The radius value must be a non-negative number, and must not be
7474 greater than the value of the expression @code{min(w,h)/2} for the
7475 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7476 planes.
7477
7478 Default value for @option{luma_radius} is "2". If not specified,
7479 @option{chroma_radius} and @option{alpha_radius} default to the
7480 corresponding value set for @option{luma_radius}.
7481
7482 The expressions can contain the following constants:
7483 @table @option
7484 @item w
7485 @item h
7486 The input width and height in pixels.
7487
7488 @item cw
7489 @item ch
7490 The input chroma image width and height in pixels.
7491
7492 @item hsub
7493 @item vsub
7494 The horizontal and vertical chroma subsample values. For example, for the
7495 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7496 @end table
7497
7498 @item luma_power, lp
7499 @item chroma_power, cp
7500 @item alpha_power, ap
7501 Specify how many times the boxblur filter is applied to the
7502 corresponding plane.
7503
7504 Default value for @option{luma_power} is 2. If not specified,
7505 @option{chroma_power} and @option{alpha_power} default to the
7506 corresponding value set for @option{luma_power}.
7507
7508 A value of 0 will disable the effect.
7509 @end table
7510
7511 @subsection Examples
7512
7513 @itemize
7514 @item
7515 Apply a boxblur filter with the luma, chroma, and alpha radii
7516 set to 2:
7517 @example
7518 boxblur=luma_radius=2:luma_power=1
7519 boxblur=2:1
7520 @end example
7521
7522 @item
7523 Set the luma radius to 2, and alpha and chroma radius to 0:
7524 @example
7525 boxblur=2:1:cr=0:ar=0
7526 @end example
7527
7528 @item
7529 Set the luma and chroma radii to a fraction of the video dimension:
7530 @example
7531 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7532 @end example
7533 @end itemize
7534
7535 @section bwdif
7536
7537 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7538 Deinterlacing Filter").
7539
7540 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7541 interpolation algorithms.
7542 It accepts the following parameters:
7543
7544 @table @option
7545 @item mode
7546 The interlacing mode to adopt. It accepts one of the following values:
7547
7548 @table @option
7549 @item 0, send_frame
7550 Output one frame for each frame.
7551 @item 1, send_field
7552 Output one frame for each field.
7553 @end table
7554
7555 The default value is @code{send_field}.
7556
7557 @item parity
7558 The picture field parity assumed for the input interlaced video. It accepts one
7559 of the following values:
7560
7561 @table @option
7562 @item 0, tff
7563 Assume the top field is first.
7564 @item 1, bff
7565 Assume the bottom field is first.
7566 @item -1, auto
7567 Enable automatic detection of field parity.
7568 @end table
7569
7570 The default value is @code{auto}.
7571 If the interlacing is unknown or the decoder does not export this information,
7572 top field first will be assumed.
7573
7574 @item deint
7575 Specify which frames to deinterlace. Accepts one of the following
7576 values:
7577
7578 @table @option
7579 @item 0, all
7580 Deinterlace all frames.
7581 @item 1, interlaced
7582 Only deinterlace frames marked as interlaced.
7583 @end table
7584
7585 The default value is @code{all}.
7586 @end table
7587
7588 @section cas
7589
7590 Apply Contrast Adaptive Sharpen filter to video stream.
7591
7592 The filter accepts the following options:
7593
7594 @table @option
7595 @item strength
7596 Set the sharpening strength. Default value is 0.
7597
7598 @item planes
7599 Set planes to filter. Default value is to filter all
7600 planes except alpha plane.
7601 @end table
7602
7603 @section chromahold
7604 Remove all color information for all colors except for certain one.
7605
7606 The filter accepts the following options:
7607
7608 @table @option
7609 @item color
7610 The color which will not be replaced with neutral chroma.
7611
7612 @item similarity
7613 Similarity percentage with the above color.
7614 0.01 matches only the exact key color, while 1.0 matches everything.
7615
7616 @item blend
7617 Blend percentage.
7618 0.0 makes pixels either fully gray, or not gray at all.
7619 Higher values result in more preserved color.
7620
7621 @item yuv
7622 Signals that the color passed is already in YUV instead of RGB.
7623
7624 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7625 This can be used to pass exact YUV values as hexadecimal numbers.
7626 @end table
7627
7628 @subsection Commands
7629 This filter supports same @ref{commands} as options.
7630 The command accepts the same syntax of the corresponding option.
7631
7632 If the specified expression is not valid, it is kept at its current
7633 value.
7634
7635 @section chromakey
7636 YUV colorspace color/chroma keying.
7637
7638 The filter accepts the following options:
7639
7640 @table @option
7641 @item color
7642 The color which will be replaced with transparency.
7643
7644 @item similarity
7645 Similarity percentage with the key color.
7646
7647 0.01 matches only the exact key color, while 1.0 matches everything.
7648
7649 @item blend
7650 Blend percentage.
7651
7652 0.0 makes pixels either fully transparent, or not transparent at all.
7653
7654 Higher values result in semi-transparent pixels, with a higher transparency
7655 the more similar the pixels color is to the key color.
7656
7657 @item yuv
7658 Signals that the color passed is already in YUV instead of RGB.
7659
7660 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7661 This can be used to pass exact YUV values as hexadecimal numbers.
7662 @end table
7663
7664 @subsection Commands
7665 This filter supports same @ref{commands} as options.
7666 The command accepts the same syntax of the corresponding option.
7667
7668 If the specified expression is not valid, it is kept at its current
7669 value.
7670
7671 @subsection Examples
7672
7673 @itemize
7674 @item
7675 Make every green pixel in the input image transparent:
7676 @example
7677 ffmpeg -i input.png -vf chromakey=green out.png
7678 @end example
7679
7680 @item
7681 Overlay a greenscreen-video on top of a static black background.
7682 @example
7683 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
7684 @end example
7685 @end itemize
7686
7687 @section chromanr
7688 Reduce chrominance noise.
7689
7690 The filter accepts the following options:
7691
7692 @table @option
7693 @item thres
7694 Set threshold for averaging chrominance values.
7695 Sum of absolute difference of U and V pixel components or current
7696 pixel and neighbour pixels lower than this threshold will be used in
7697 averaging. Luma component is left unchanged and is copied to output.
7698 Default value is 30. Allowed range is from 1 to 200.
7699
7700 @item sizew
7701 Set horizontal radius of rectangle used for averaging.
7702 Allowed range is from 1 to 100. Default value is 5.
7703
7704 @item sizeh
7705 Set vertical radius of rectangle used for averaging.
7706 Allowed range is from 1 to 100. Default value is 5.
7707
7708 @item stepw
7709 Set horizontal step when averaging. Default value is 1.
7710 Allowed range is from 1 to 50.
7711 Mostly useful to speed-up filtering.
7712
7713 @item steph
7714 Set vertical step when averaging. Default value is 1.
7715 Allowed range is from 1 to 50.
7716 Mostly useful to speed-up filtering.
7717 @end table
7718
7719 @subsection Commands
7720 This filter supports same @ref{commands} as options.
7721 The command accepts the same syntax of the corresponding option.
7722
7723 @section chromashift
7724 Shift chroma pixels horizontally and/or vertically.
7725
7726 The filter accepts the following options:
7727 @table @option
7728 @item cbh
7729 Set amount to shift chroma-blue horizontally.
7730 @item cbv
7731 Set amount to shift chroma-blue vertically.
7732 @item crh
7733 Set amount to shift chroma-red horizontally.
7734 @item crv
7735 Set amount to shift chroma-red vertically.
7736 @item edge
7737 Set edge mode, can be @var{smear}, default, or @var{warp}.
7738 @end table
7739
7740 @subsection Commands
7741
7742 This filter supports the all above options as @ref{commands}.
7743
7744 @section ciescope
7745
7746 Display CIE color diagram with pixels overlaid onto it.
7747
7748 The filter accepts the following options:
7749
7750 @table @option
7751 @item system
7752 Set color system.
7753
7754 @table @samp
7755 @item ntsc, 470m
7756 @item ebu, 470bg
7757 @item smpte
7758 @item 240m
7759 @item apple
7760 @item widergb
7761 @item cie1931
7762 @item rec709, hdtv
7763 @item uhdtv, rec2020
7764 @item dcip3
7765 @end table
7766
7767 @item cie
7768 Set CIE system.
7769
7770 @table @samp
7771 @item xyy
7772 @item ucs
7773 @item luv
7774 @end table
7775
7776 @item gamuts
7777 Set what gamuts to draw.
7778
7779 See @code{system} option for available values.
7780
7781 @item size, s
7782 Set ciescope size, by default set to 512.
7783
7784 @item intensity, i
7785 Set intensity used to map input pixel values to CIE diagram.
7786
7787 @item contrast
7788 Set contrast used to draw tongue colors that are out of active color system gamut.
7789
7790 @item corrgamma
7791 Correct gamma displayed on scope, by default enabled.
7792
7793 @item showwhite
7794 Show white point on CIE diagram, by default disabled.
7795
7796 @item gamma
7797 Set input gamma. Used only with XYZ input color space.
7798 @end table
7799
7800 @section codecview
7801
7802 Visualize information exported by some codecs.
7803
7804 Some codecs can export information through frames using side-data or other
7805 means. For example, some MPEG based codecs export motion vectors through the
7806 @var{export_mvs} flag in the codec @option{flags2} option.
7807
7808 The filter accepts the following option:
7809
7810 @table @option
7811 @item mv
7812 Set motion vectors to visualize.
7813
7814 Available flags for @var{mv} are:
7815
7816 @table @samp
7817 @item pf
7818 forward predicted MVs of P-frames
7819 @item bf
7820 forward predicted MVs of B-frames
7821 @item bb
7822 backward predicted MVs of B-frames
7823 @end table
7824
7825 @item qp
7826 Display quantization parameters using the chroma planes.
7827
7828 @item mv_type, mvt
7829 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7830
7831 Available flags for @var{mv_type} are:
7832
7833 @table @samp
7834 @item fp
7835 forward predicted MVs
7836 @item bp
7837 backward predicted MVs
7838 @end table
7839
7840 @item frame_type, ft
7841 Set frame type to visualize motion vectors of.
7842
7843 Available flags for @var{frame_type} are:
7844
7845 @table @samp
7846 @item if
7847 intra-coded frames (I-frames)
7848 @item pf
7849 predicted frames (P-frames)
7850 @item bf
7851 bi-directionally predicted frames (B-frames)
7852 @end table
7853 @end table
7854
7855 @subsection Examples
7856
7857 @itemize
7858 @item
7859 Visualize forward predicted MVs of all frames using @command{ffplay}:
7860 @example
7861 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7862 @end example
7863
7864 @item
7865 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7866 @example
7867 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7868 @end example
7869 @end itemize
7870
7871 @section colorbalance
7872 Modify intensity of primary colors (red, green and blue) of input frames.
7873
7874 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7875 regions for the red-cyan, green-magenta or blue-yellow balance.
7876
7877 A positive adjustment value shifts the balance towards the primary color, a negative
7878 value towards the complementary color.
7879
7880 The filter accepts the following options:
7881
7882 @table @option
7883 @item rs
7884 @item gs
7885 @item bs
7886 Adjust red, green and blue shadows (darkest pixels).
7887
7888 @item rm
7889 @item gm
7890 @item bm
7891 Adjust red, green and blue midtones (medium pixels).
7892
7893 @item rh
7894 @item gh
7895 @item bh
7896 Adjust red, green and blue highlights (brightest pixels).
7897
7898 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7899
7900 @item pl
7901 Preserve lightness when changing color balance. Default is disabled.
7902 @end table
7903
7904 @subsection Examples
7905
7906 @itemize
7907 @item
7908 Add red color cast to shadows:
7909 @example
7910 colorbalance=rs=.3
7911 @end example
7912 @end itemize
7913
7914 @subsection Commands
7915
7916 This filter supports the all above options as @ref{commands}.
7917
7918 @section colorchannelmixer
7919
7920 Adjust video input frames by re-mixing color channels.
7921
7922 This filter modifies a color channel by adding the values associated to
7923 the other channels of the same pixels. For example if the value to
7924 modify is red, the output value will be:
7925 @example
7926 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7927 @end example
7928
7929 The filter accepts the following options:
7930
7931 @table @option
7932 @item rr
7933 @item rg
7934 @item rb
7935 @item ra
7936 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7937 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7938
7939 @item gr
7940 @item gg
7941 @item gb
7942 @item ga
7943 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7944 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7945
7946 @item br
7947 @item bg
7948 @item bb
7949 @item ba
7950 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7951 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7952
7953 @item ar
7954 @item ag
7955 @item ab
7956 @item aa
7957 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7958 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7959
7960 Allowed ranges for options are @code{[-2.0, 2.0]}.
7961 @end table
7962
7963 @subsection Examples
7964
7965 @itemize
7966 @item
7967 Convert source to grayscale:
7968 @example
7969 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7970 @end example
7971 @item
7972 Simulate sepia tones:
7973 @example
7974 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7975 @end example
7976 @end itemize
7977
7978 @subsection Commands
7979
7980 This filter supports the all above options as @ref{commands}.
7981
7982 @section colorkey
7983 RGB colorspace color keying.
7984
7985 The filter accepts the following options:
7986
7987 @table @option
7988 @item color
7989 The color which will be replaced with transparency.
7990
7991 @item similarity
7992 Similarity percentage with the key color.
7993
7994 0.01 matches only the exact key color, while 1.0 matches everything.
7995
7996 @item blend
7997 Blend percentage.
7998
7999 0.0 makes pixels either fully transparent, or not transparent at all.
8000
8001 Higher values result in semi-transparent pixels, with a higher transparency
8002 the more similar the pixels color is to the key color.
8003 @end table
8004
8005 @subsection Examples
8006
8007 @itemize
8008 @item
8009 Make every green pixel in the input image transparent:
8010 @example
8011 ffmpeg -i input.png -vf colorkey=green out.png
8012 @end example
8013
8014 @item
8015 Overlay a greenscreen-video on top of a static background image.
8016 @example
8017 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
8018 @end example
8019 @end itemize
8020
8021 @subsection Commands
8022 This filter supports same @ref{commands} as options.
8023 The command accepts the same syntax of the corresponding option.
8024
8025 If the specified expression is not valid, it is kept at its current
8026 value.
8027
8028 @section colorhold
8029 Remove all color information for all RGB colors except for certain one.
8030
8031 The filter accepts the following options:
8032
8033 @table @option
8034 @item color
8035 The color which will not be replaced with neutral gray.
8036
8037 @item similarity
8038 Similarity percentage with the above color.
8039 0.01 matches only the exact key color, while 1.0 matches everything.
8040
8041 @item blend
8042 Blend percentage. 0.0 makes pixels fully gray.
8043 Higher values result in more preserved color.
8044 @end table
8045
8046 @subsection Commands
8047 This filter supports same @ref{commands} as options.
8048 The command accepts the same syntax of the corresponding option.
8049
8050 If the specified expression is not valid, it is kept at its current
8051 value.
8052
8053 @section colorlevels
8054
8055 Adjust video input frames using levels.
8056
8057 The filter accepts the following options:
8058
8059 @table @option
8060 @item rimin
8061 @item gimin
8062 @item bimin
8063 @item aimin
8064 Adjust red, green, blue and alpha input black point.
8065 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8066
8067 @item rimax
8068 @item gimax
8069 @item bimax
8070 @item aimax
8071 Adjust red, green, blue and alpha input white point.
8072 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8073
8074 Input levels are used to lighten highlights (bright tones), darken shadows
8075 (dark tones), change the balance of bright and dark tones.
8076
8077 @item romin
8078 @item gomin
8079 @item bomin
8080 @item aomin
8081 Adjust red, green, blue and alpha output black point.
8082 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8083
8084 @item romax
8085 @item gomax
8086 @item bomax
8087 @item aomax
8088 Adjust red, green, blue and alpha output white point.
8089 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8090
8091 Output levels allows manual selection of a constrained output level range.
8092 @end table
8093
8094 @subsection Examples
8095
8096 @itemize
8097 @item
8098 Make video output darker:
8099 @example
8100 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8101 @end example
8102
8103 @item
8104 Increase contrast:
8105 @example
8106 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8107 @end example
8108
8109 @item
8110 Make video output lighter:
8111 @example
8112 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8113 @end example
8114
8115 @item
8116 Increase brightness:
8117 @example
8118 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8119 @end example
8120 @end itemize
8121
8122 @subsection Commands
8123
8124 This filter supports the all above options as @ref{commands}.
8125
8126 @section colormatrix
8127
8128 Convert color matrix.
8129
8130 The filter accepts the following options:
8131
8132 @table @option
8133 @item src
8134 @item dst
8135 Specify the source and destination color matrix. Both values must be
8136 specified.
8137
8138 The accepted values are:
8139 @table @samp
8140 @item bt709
8141 BT.709
8142
8143 @item fcc
8144 FCC
8145
8146 @item bt601
8147 BT.601
8148
8149 @item bt470
8150 BT.470
8151
8152 @item bt470bg
8153 BT.470BG
8154
8155 @item smpte170m
8156 SMPTE-170M
8157
8158 @item smpte240m
8159 SMPTE-240M
8160
8161 @item bt2020
8162 BT.2020
8163 @end table
8164 @end table
8165
8166 For example to convert from BT.601 to SMPTE-240M, use the command:
8167 @example
8168 colormatrix=bt601:smpte240m
8169 @end example
8170
8171 @section colorspace
8172
8173 Convert colorspace, transfer characteristics or color primaries.
8174 Input video needs to have an even size.
8175
8176 The filter accepts the following options:
8177
8178 @table @option
8179 @anchor{all}
8180 @item all
8181 Specify all color properties at once.
8182
8183 The accepted values are:
8184 @table @samp
8185 @item bt470m
8186 BT.470M
8187
8188 @item bt470bg
8189 BT.470BG
8190
8191 @item bt601-6-525
8192 BT.601-6 525
8193
8194 @item bt601-6-625
8195 BT.601-6 625
8196
8197 @item bt709
8198 BT.709
8199
8200 @item smpte170m
8201 SMPTE-170M
8202
8203 @item smpte240m
8204 SMPTE-240M
8205
8206 @item bt2020
8207 BT.2020
8208
8209 @end table
8210
8211 @anchor{space}
8212 @item space
8213 Specify output colorspace.
8214
8215 The accepted values are:
8216 @table @samp
8217 @item bt709
8218 BT.709
8219
8220 @item fcc
8221 FCC
8222
8223 @item bt470bg
8224 BT.470BG or BT.601-6 625
8225
8226 @item smpte170m
8227 SMPTE-170M or BT.601-6 525
8228
8229 @item smpte240m
8230 SMPTE-240M
8231
8232 @item ycgco
8233 YCgCo
8234
8235 @item bt2020ncl
8236 BT.2020 with non-constant luminance
8237
8238 @end table
8239
8240 @anchor{trc}
8241 @item trc
8242 Specify output transfer characteristics.
8243
8244 The accepted values are:
8245 @table @samp
8246 @item bt709
8247 BT.709
8248
8249 @item bt470m
8250 BT.470M
8251
8252 @item bt470bg
8253 BT.470BG
8254
8255 @item gamma22
8256 Constant gamma of 2.2
8257
8258 @item gamma28
8259 Constant gamma of 2.8
8260
8261 @item smpte170m
8262 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8263
8264 @item smpte240m
8265 SMPTE-240M
8266
8267 @item srgb
8268 SRGB
8269
8270 @item iec61966-2-1
8271 iec61966-2-1
8272
8273 @item iec61966-2-4
8274 iec61966-2-4
8275
8276 @item xvycc
8277 xvycc
8278
8279 @item bt2020-10
8280 BT.2020 for 10-bits content
8281
8282 @item bt2020-12
8283 BT.2020 for 12-bits content
8284
8285 @end table
8286
8287 @anchor{primaries}
8288 @item primaries
8289 Specify output color primaries.
8290
8291 The accepted values are:
8292 @table @samp
8293 @item bt709
8294 BT.709
8295
8296 @item bt470m
8297 BT.470M
8298
8299 @item bt470bg
8300 BT.470BG or BT.601-6 625
8301
8302 @item smpte170m
8303 SMPTE-170M or BT.601-6 525
8304
8305 @item smpte240m
8306 SMPTE-240M
8307
8308 @item film
8309 film
8310
8311 @item smpte431
8312 SMPTE-431
8313
8314 @item smpte432
8315 SMPTE-432
8316
8317 @item bt2020
8318 BT.2020
8319
8320 @item jedec-p22
8321 JEDEC P22 phosphors
8322
8323 @end table
8324
8325 @anchor{range}
8326 @item range
8327 Specify output color range.
8328
8329 The accepted values are:
8330 @table @samp
8331 @item tv
8332 TV (restricted) range
8333
8334 @item mpeg
8335 MPEG (restricted) range
8336
8337 @item pc
8338 PC (full) range
8339
8340 @item jpeg
8341 JPEG (full) range
8342
8343 @end table
8344
8345 @item format
8346 Specify output color format.
8347
8348 The accepted values are:
8349 @table @samp
8350 @item yuv420p
8351 YUV 4:2:0 planar 8-bits
8352
8353 @item yuv420p10
8354 YUV 4:2:0 planar 10-bits
8355
8356 @item yuv420p12
8357 YUV 4:2:0 planar 12-bits
8358
8359 @item yuv422p
8360 YUV 4:2:2 planar 8-bits
8361
8362 @item yuv422p10
8363 YUV 4:2:2 planar 10-bits
8364
8365 @item yuv422p12
8366 YUV 4:2:2 planar 12-bits
8367
8368 @item yuv444p
8369 YUV 4:4:4 planar 8-bits
8370
8371 @item yuv444p10
8372 YUV 4:4:4 planar 10-bits
8373
8374 @item yuv444p12
8375 YUV 4:4:4 planar 12-bits
8376
8377 @end table
8378
8379 @item fast
8380 Do a fast conversion, which skips gamma/primary correction. This will take
8381 significantly less CPU, but will be mathematically incorrect. To get output
8382 compatible with that produced by the colormatrix filter, use fast=1.
8383
8384 @item dither
8385 Specify dithering mode.
8386
8387 The accepted values are:
8388 @table @samp
8389 @item none
8390 No dithering
8391
8392 @item fsb
8393 Floyd-Steinberg dithering
8394 @end table
8395
8396 @item wpadapt
8397 Whitepoint adaptation mode.
8398
8399 The accepted values are:
8400 @table @samp
8401 @item bradford
8402 Bradford whitepoint adaptation
8403
8404 @item vonkries
8405 von Kries whitepoint adaptation
8406
8407 @item identity
8408 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8409 @end table
8410
8411 @item iall
8412 Override all input properties at once. Same accepted values as @ref{all}.
8413
8414 @item ispace
8415 Override input colorspace. Same accepted values as @ref{space}.
8416
8417 @item iprimaries
8418 Override input color primaries. Same accepted values as @ref{primaries}.
8419
8420 @item itrc
8421 Override input transfer characteristics. Same accepted values as @ref{trc}.
8422
8423 @item irange
8424 Override input color range. Same accepted values as @ref{range}.
8425
8426 @end table
8427
8428 The filter converts the transfer characteristics, color space and color
8429 primaries to the specified user values. The output value, if not specified,
8430 is set to a default value based on the "all" property. If that property is
8431 also not specified, the filter will log an error. The output color range and
8432 format default to the same value as the input color range and format. The
8433 input transfer characteristics, color space, color primaries and color range
8434 should be set on the input data. If any of these are missing, the filter will
8435 log an error and no conversion will take place.
8436
8437 For example to convert the input to SMPTE-240M, use the command:
8438 @example
8439 colorspace=smpte240m
8440 @end example
8441
8442 @section convolution
8443
8444 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8445
8446 The filter accepts the following options:
8447
8448 @table @option
8449 @item 0m
8450 @item 1m
8451 @item 2m
8452 @item 3m
8453 Set matrix for each plane.
8454 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8455 and from 1 to 49 odd number of signed integers in @var{row} mode.
8456
8457 @item 0rdiv
8458 @item 1rdiv
8459 @item 2rdiv
8460 @item 3rdiv
8461 Set multiplier for calculated value for each plane.
8462 If unset or 0, it will be sum of all matrix elements.
8463
8464 @item 0bias
8465 @item 1bias
8466 @item 2bias
8467 @item 3bias
8468 Set bias for each plane. This value is added to the result of the multiplication.
8469 Useful for making the overall image brighter or darker. Default is 0.0.
8470
8471 @item 0mode
8472 @item 1mode
8473 @item 2mode
8474 @item 3mode
8475 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8476 Default is @var{square}.
8477 @end table
8478
8479 @subsection Examples
8480
8481 @itemize
8482 @item
8483 Apply sharpen:
8484 @example
8485 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"
8486 @end example
8487
8488 @item
8489 Apply blur:
8490 @example
8491 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"
8492 @end example
8493
8494 @item
8495 Apply edge enhance:
8496 @example
8497 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"
8498 @end example
8499
8500 @item
8501 Apply edge detect:
8502 @example
8503 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"
8504 @end example
8505
8506 @item
8507 Apply laplacian edge detector which includes diagonals:
8508 @example
8509 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"
8510 @end example
8511
8512 @item
8513 Apply emboss:
8514 @example
8515 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"
8516 @end example
8517 @end itemize
8518
8519 @section convolve
8520
8521 Apply 2D convolution of video stream in frequency domain using second stream
8522 as impulse.
8523
8524 The filter accepts the following options:
8525
8526 @table @option
8527 @item planes
8528 Set which planes to process.
8529
8530 @item impulse
8531 Set which impulse video frames will be processed, can be @var{first}
8532 or @var{all}. Default is @var{all}.
8533 @end table
8534
8535 The @code{convolve} filter also supports the @ref{framesync} options.
8536
8537 @section copy
8538
8539 Copy the input video source unchanged to the output. This is mainly useful for
8540 testing purposes.
8541
8542 @anchor{coreimage}
8543 @section coreimage
8544 Video filtering on GPU using Apple's CoreImage API on OSX.
8545
8546 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8547 processed by video hardware. However, software-based OpenGL implementations
8548 exist which means there is no guarantee for hardware processing. It depends on
8549 the respective OSX.
8550
8551 There are many filters and image generators provided by Apple that come with a
8552 large variety of options. The filter has to be referenced by its name along
8553 with its options.
8554
8555 The coreimage filter accepts the following options:
8556 @table @option
8557 @item list_filters
8558 List all available filters and generators along with all their respective
8559 options as well as possible minimum and maximum values along with the default
8560 values.
8561 @example
8562 list_filters=true
8563 @end example
8564
8565 @item filter
8566 Specify all filters by their respective name and options.
8567 Use @var{list_filters} to determine all valid filter names and options.
8568 Numerical options are specified by a float value and are automatically clamped
8569 to their respective value range.  Vector and color options have to be specified
8570 by a list of space separated float values. Character escaping has to be done.
8571 A special option name @code{default} is available to use default options for a
8572 filter.
8573
8574 It is required to specify either @code{default} or at least one of the filter options.
8575 All omitted options are used with their default values.
8576 The syntax of the filter string is as follows:
8577 @example
8578 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8579 @end example
8580
8581 @item output_rect
8582 Specify a rectangle where the output of the filter chain is copied into the
8583 input image. It is given by a list of space separated float values:
8584 @example
8585 output_rect=x\ y\ width\ height
8586 @end example
8587 If not given, the output rectangle equals the dimensions of the input image.
8588 The output rectangle is automatically cropped at the borders of the input
8589 image. Negative values are valid for each component.
8590 @example
8591 output_rect=25\ 25\ 100\ 100
8592 @end example
8593 @end table
8594
8595 Several filters can be chained for successive processing without GPU-HOST
8596 transfers allowing for fast processing of complex filter chains.
8597 Currently, only filters with zero (generators) or exactly one (filters) input
8598 image and one output image are supported. Also, transition filters are not yet
8599 usable as intended.
8600
8601 Some filters generate output images with additional padding depending on the
8602 respective filter kernel. The padding is automatically removed to ensure the
8603 filter output has the same size as the input image.
8604
8605 For image generators, the size of the output image is determined by the
8606 previous output image of the filter chain or the input image of the whole
8607 filterchain, respectively. The generators do not use the pixel information of
8608 this image to generate their output. However, the generated output is
8609 blended onto this image, resulting in partial or complete coverage of the
8610 output image.
8611
8612 The @ref{coreimagesrc} video source can be used for generating input images
8613 which are directly fed into the filter chain. By using it, providing input
8614 images by another video source or an input video is not required.
8615
8616 @subsection Examples
8617
8618 @itemize
8619
8620 @item
8621 List all filters available:
8622 @example
8623 coreimage=list_filters=true
8624 @end example
8625
8626 @item
8627 Use the CIBoxBlur filter with default options to blur an image:
8628 @example
8629 coreimage=filter=CIBoxBlur@@default
8630 @end example
8631
8632 @item
8633 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8634 its center at 100x100 and a radius of 50 pixels:
8635 @example
8636 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8637 @end example
8638
8639 @item
8640 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8641 given as complete and escaped command-line for Apple's standard bash shell:
8642 @example
8643 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8644 @end example
8645 @end itemize
8646
8647 @section cover_rect
8648
8649 Cover a rectangular object
8650
8651 It accepts the following options:
8652
8653 @table @option
8654 @item cover
8655 Filepath of the optional cover image, needs to be in yuv420.
8656
8657 @item mode
8658 Set covering mode.
8659
8660 It accepts the following values:
8661 @table @samp
8662 @item cover
8663 cover it by the supplied image
8664 @item blur
8665 cover it by interpolating the surrounding pixels
8666 @end table
8667
8668 Default value is @var{blur}.
8669 @end table
8670
8671 @subsection Examples
8672
8673 @itemize
8674 @item
8675 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8676 @example
8677 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8678 @end example
8679 @end itemize
8680
8681 @section crop
8682
8683 Crop the input video to given dimensions.
8684
8685 It accepts the following parameters:
8686
8687 @table @option
8688 @item w, out_w
8689 The width of the output video. It defaults to @code{iw}.
8690 This expression is evaluated only once during the filter
8691 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8692
8693 @item h, out_h
8694 The height of the output video. It defaults to @code{ih}.
8695 This expression is evaluated only once during the filter
8696 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8697
8698 @item x
8699 The horizontal position, in the input video, of the left edge of the output
8700 video. It defaults to @code{(in_w-out_w)/2}.
8701 This expression is evaluated per-frame.
8702
8703 @item y
8704 The vertical position, in the input video, of the top edge of the output video.
8705 It defaults to @code{(in_h-out_h)/2}.
8706 This expression is evaluated per-frame.
8707
8708 @item keep_aspect
8709 If set to 1 will force the output display aspect ratio
8710 to be the same of the input, by changing the output sample aspect
8711 ratio. It defaults to 0.
8712
8713 @item exact
8714 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8715 width/height/x/y as specified and will not be rounded to nearest smaller value.
8716 It defaults to 0.
8717 @end table
8718
8719 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8720 expressions containing the following constants:
8721
8722 @table @option
8723 @item x
8724 @item y
8725 The computed values for @var{x} and @var{y}. They are evaluated for
8726 each new frame.
8727
8728 @item in_w
8729 @item in_h
8730 The input width and height.
8731
8732 @item iw
8733 @item ih
8734 These are the same as @var{in_w} and @var{in_h}.
8735
8736 @item out_w
8737 @item out_h
8738 The output (cropped) width and height.
8739
8740 @item ow
8741 @item oh
8742 These are the same as @var{out_w} and @var{out_h}.
8743
8744 @item a
8745 same as @var{iw} / @var{ih}
8746
8747 @item sar
8748 input sample aspect ratio
8749
8750 @item dar
8751 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8752
8753 @item hsub
8754 @item vsub
8755 horizontal and vertical chroma subsample values. For example for the
8756 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8757
8758 @item n
8759 The number of the input frame, starting from 0.
8760
8761 @item pos
8762 the position in the file of the input frame, NAN if unknown
8763
8764 @item t
8765 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8766
8767 @end table
8768
8769 The expression for @var{out_w} may depend on the value of @var{out_h},
8770 and the expression for @var{out_h} may depend on @var{out_w}, but they
8771 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8772 evaluated after @var{out_w} and @var{out_h}.
8773
8774 The @var{x} and @var{y} parameters specify the expressions for the
8775 position of the top-left corner of the output (non-cropped) area. They
8776 are evaluated for each frame. If the evaluated value is not valid, it
8777 is approximated to the nearest valid value.
8778
8779 The expression for @var{x} may depend on @var{y}, and the expression
8780 for @var{y} may depend on @var{x}.
8781
8782 @subsection Examples
8783
8784 @itemize
8785 @item
8786 Crop area with size 100x100 at position (12,34).
8787 @example
8788 crop=100:100:12:34
8789 @end example
8790
8791 Using named options, the example above becomes:
8792 @example
8793 crop=w=100:h=100:x=12:y=34
8794 @end example
8795
8796 @item
8797 Crop the central input area with size 100x100:
8798 @example
8799 crop=100:100
8800 @end example
8801
8802 @item
8803 Crop the central input area with size 2/3 of the input video:
8804 @example
8805 crop=2/3*in_w:2/3*in_h
8806 @end example
8807
8808 @item
8809 Crop the input video central square:
8810 @example
8811 crop=out_w=in_h
8812 crop=in_h
8813 @end example
8814
8815 @item
8816 Delimit the rectangle with the top-left corner placed at position
8817 100:100 and the right-bottom corner corresponding to the right-bottom
8818 corner of the input image.
8819 @example
8820 crop=in_w-100:in_h-100:100:100
8821 @end example
8822
8823 @item
8824 Crop 10 pixels from the left and right borders, and 20 pixels from
8825 the top and bottom borders
8826 @example
8827 crop=in_w-2*10:in_h-2*20
8828 @end example
8829
8830 @item
8831 Keep only the bottom right quarter of the input image:
8832 @example
8833 crop=in_w/2:in_h/2:in_w/2:in_h/2
8834 @end example
8835
8836 @item
8837 Crop height for getting Greek harmony:
8838 @example
8839 crop=in_w:1/PHI*in_w
8840 @end example
8841
8842 @item
8843 Apply trembling effect:
8844 @example
8845 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)
8846 @end example
8847
8848 @item
8849 Apply erratic camera effect depending on timestamp:
8850 @example
8851 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)"
8852 @end example
8853
8854 @item
8855 Set x depending on the value of y:
8856 @example
8857 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8858 @end example
8859 @end itemize
8860
8861 @subsection Commands
8862
8863 This filter supports the following commands:
8864 @table @option
8865 @item w, out_w
8866 @item h, out_h
8867 @item x
8868 @item y
8869 Set width/height of the output video and the horizontal/vertical position
8870 in the input video.
8871 The command accepts the same syntax of the corresponding option.
8872
8873 If the specified expression is not valid, it is kept at its current
8874 value.
8875 @end table
8876
8877 @section cropdetect
8878
8879 Auto-detect the crop size.
8880
8881 It calculates the necessary cropping parameters and prints the
8882 recommended parameters via the logging system. The detected dimensions
8883 correspond to the non-black area of the input video.
8884
8885 It accepts the following parameters:
8886
8887 @table @option
8888
8889 @item limit
8890 Set higher black value threshold, which can be optionally specified
8891 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8892 value greater to the set value is considered non-black. It defaults to 24.
8893 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8894 on the bitdepth of the pixel format.
8895
8896 @item round
8897 The value which the width/height should be divisible by. It defaults to
8898 16. The offset is automatically adjusted to center the video. Use 2 to
8899 get only even dimensions (needed for 4:2:2 video). 16 is best when
8900 encoding to most video codecs.
8901
8902 @item reset_count, reset
8903 Set the counter that determines after how many frames cropdetect will
8904 reset the previously detected largest video area and start over to
8905 detect the current optimal crop area. Default value is 0.
8906
8907 This can be useful when channel logos distort the video area. 0
8908 indicates 'never reset', and returns the largest area encountered during
8909 playback.
8910 @end table
8911
8912 @anchor{cue}
8913 @section cue
8914
8915 Delay video filtering until a given wallclock timestamp. The filter first
8916 passes on @option{preroll} amount of frames, then it buffers at most
8917 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8918 it forwards the buffered frames and also any subsequent frames coming in its
8919 input.
8920
8921 The filter can be used synchronize the output of multiple ffmpeg processes for
8922 realtime output devices like decklink. By putting the delay in the filtering
8923 chain and pre-buffering frames the process can pass on data to output almost
8924 immediately after the target wallclock timestamp is reached.
8925
8926 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8927 some use cases.
8928
8929 @table @option
8930
8931 @item cue
8932 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8933
8934 @item preroll
8935 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8936
8937 @item buffer
8938 The maximum duration of content to buffer before waiting for the cue expressed
8939 in seconds. Default is 0.
8940
8941 @end table
8942
8943 @anchor{curves}
8944 @section curves
8945
8946 Apply color adjustments using curves.
8947
8948 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8949 component (red, green and blue) has its values defined by @var{N} key points
8950 tied from each other using a smooth curve. The x-axis represents the pixel
8951 values from the input frame, and the y-axis the new pixel values to be set for
8952 the output frame.
8953
8954 By default, a component curve is defined by the two points @var{(0;0)} and
8955 @var{(1;1)}. This creates a straight line where each original pixel value is
8956 "adjusted" to its own value, which means no change to the image.
8957
8958 The filter allows you to redefine these two points and add some more. A new
8959 curve (using a natural cubic spline interpolation) will be define to pass
8960 smoothly through all these new coordinates. The new defined points needs to be
8961 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8962 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8963 the vector spaces, the values will be clipped accordingly.
8964
8965 The filter accepts the following options:
8966
8967 @table @option
8968 @item preset
8969 Select one of the available color presets. This option can be used in addition
8970 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8971 options takes priority on the preset values.
8972 Available presets are:
8973 @table @samp
8974 @item none
8975 @item color_negative
8976 @item cross_process
8977 @item darker
8978 @item increase_contrast
8979 @item lighter
8980 @item linear_contrast
8981 @item medium_contrast
8982 @item negative
8983 @item strong_contrast
8984 @item vintage
8985 @end table
8986 Default is @code{none}.
8987 @item master, m
8988 Set the master key points. These points will define a second pass mapping. It
8989 is sometimes called a "luminance" or "value" mapping. It can be used with
8990 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8991 post-processing LUT.
8992 @item red, r
8993 Set the key points for the red component.
8994 @item green, g
8995 Set the key points for the green component.
8996 @item blue, b
8997 Set the key points for the blue component.
8998 @item all
8999 Set the key points for all components (not including master).
9000 Can be used in addition to the other key points component
9001 options. In this case, the unset component(s) will fallback on this
9002 @option{all} setting.
9003 @item psfile
9004 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9005 @item plot
9006 Save Gnuplot script of the curves in specified file.
9007 @end table
9008
9009 To avoid some filtergraph syntax conflicts, each key points list need to be
9010 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9011
9012 @subsection Examples
9013
9014 @itemize
9015 @item
9016 Increase slightly the middle level of blue:
9017 @example
9018 curves=blue='0/0 0.5/0.58 1/1'
9019 @end example
9020
9021 @item
9022 Vintage effect:
9023 @example
9024 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'
9025 @end example
9026 Here we obtain the following coordinates for each components:
9027 @table @var
9028 @item red
9029 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9030 @item green
9031 @code{(0;0) (0.50;0.48) (1;1)}
9032 @item blue
9033 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9034 @end table
9035
9036 @item
9037 The previous example can also be achieved with the associated built-in preset:
9038 @example
9039 curves=preset=vintage
9040 @end example
9041
9042 @item
9043 Or simply:
9044 @example
9045 curves=vintage
9046 @end example
9047
9048 @item
9049 Use a Photoshop preset and redefine the points of the green component:
9050 @example
9051 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9052 @end example
9053
9054 @item
9055 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9056 and @command{gnuplot}:
9057 @example
9058 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9059 gnuplot -p /tmp/curves.plt
9060 @end example
9061 @end itemize
9062
9063 @section datascope
9064
9065 Video data analysis filter.
9066
9067 This filter shows hexadecimal pixel values of part of video.
9068
9069 The filter accepts the following options:
9070
9071 @table @option
9072 @item size, s
9073 Set output video size.
9074
9075 @item x
9076 Set x offset from where to pick pixels.
9077
9078 @item y
9079 Set y offset from where to pick pixels.
9080
9081 @item mode
9082 Set scope mode, can be one of the following:
9083 @table @samp
9084 @item mono
9085 Draw hexadecimal pixel values with white color on black background.
9086
9087 @item color
9088 Draw hexadecimal pixel values with input video pixel color on black
9089 background.
9090
9091 @item color2
9092 Draw hexadecimal pixel values on color background picked from input video,
9093 the text color is picked in such way so its always visible.
9094 @end table
9095
9096 @item axis
9097 Draw rows and columns numbers on left and top of video.
9098
9099 @item opacity
9100 Set background opacity.
9101
9102 @item format
9103 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9104 @end table
9105
9106 @section dblur
9107 Apply Directional blur filter.
9108
9109 The filter accepts the following options:
9110
9111 @table @option
9112 @item angle
9113 Set angle of directional blur. Default is @code{45}.
9114
9115 @item radius
9116 Set radius of directional blur. Default is @code{5}.
9117
9118 @item planes
9119 Set which planes to filter. By default all planes are filtered.
9120 @end table
9121
9122 @subsection Commands
9123 This filter supports same @ref{commands} as options.
9124 The command accepts the same syntax of the corresponding option.
9125
9126 If the specified expression is not valid, it is kept at its current
9127 value.
9128
9129 @section dctdnoiz
9130
9131 Denoise frames using 2D DCT (frequency domain filtering).
9132
9133 This filter is not designed for real time.
9134
9135 The filter accepts the following options:
9136
9137 @table @option
9138 @item sigma, s
9139 Set the noise sigma constant.
9140
9141 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9142 coefficient (absolute value) below this threshold with be dropped.
9143
9144 If you need a more advanced filtering, see @option{expr}.
9145
9146 Default is @code{0}.
9147
9148 @item overlap
9149 Set number overlapping pixels for each block. Since the filter can be slow, you
9150 may want to reduce this value, at the cost of a less effective filter and the
9151 risk of various artefacts.
9152
9153 If the overlapping value doesn't permit processing the whole input width or
9154 height, a warning will be displayed and according borders won't be denoised.
9155
9156 Default value is @var{blocksize}-1, which is the best possible setting.
9157
9158 @item expr, e
9159 Set the coefficient factor expression.
9160
9161 For each coefficient of a DCT block, this expression will be evaluated as a
9162 multiplier value for the coefficient.
9163
9164 If this is option is set, the @option{sigma} option will be ignored.
9165
9166 The absolute value of the coefficient can be accessed through the @var{c}
9167 variable.
9168
9169 @item n
9170 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9171 @var{blocksize}, which is the width and height of the processed blocks.
9172
9173 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9174 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9175 on the speed processing. Also, a larger block size does not necessarily means a
9176 better de-noising.
9177 @end table
9178
9179 @subsection Examples
9180
9181 Apply a denoise with a @option{sigma} of @code{4.5}:
9182 @example
9183 dctdnoiz=4.5
9184 @end example
9185
9186 The same operation can be achieved using the expression system:
9187 @example
9188 dctdnoiz=e='gte(c, 4.5*3)'
9189 @end example
9190
9191 Violent denoise using a block size of @code{16x16}:
9192 @example
9193 dctdnoiz=15:n=4
9194 @end example
9195
9196 @section deband
9197
9198 Remove banding artifacts from input video.
9199 It works by replacing banded pixels with average value of referenced pixels.
9200
9201 The filter accepts the following options:
9202
9203 @table @option
9204 @item 1thr
9205 @item 2thr
9206 @item 3thr
9207 @item 4thr
9208 Set banding detection threshold for each plane. Default is 0.02.
9209 Valid range is 0.00003 to 0.5.
9210 If difference between current pixel and reference pixel is less than threshold,
9211 it will be considered as banded.
9212
9213 @item range, r
9214 Banding detection range in pixels. Default is 16. If positive, random number
9215 in range 0 to set value will be used. If negative, exact absolute value
9216 will be used.
9217 The range defines square of four pixels around current pixel.
9218
9219 @item direction, d
9220 Set direction in radians from which four pixel will be compared. If positive,
9221 random direction from 0 to set direction will be picked. If negative, exact of
9222 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9223 will pick only pixels on same row and -PI/2 will pick only pixels on same
9224 column.
9225
9226 @item blur, b
9227 If enabled, current pixel is compared with average value of all four
9228 surrounding pixels. The default is enabled. If disabled current pixel is
9229 compared with all four surrounding pixels. The pixel is considered banded
9230 if only all four differences with surrounding pixels are less than threshold.
9231
9232 @item coupling, c
9233 If enabled, current pixel is changed if and only if all pixel components are banded,
9234 e.g. banding detection threshold is triggered for all color components.
9235 The default is disabled.
9236 @end table
9237
9238 @section deblock
9239
9240 Remove blocking artifacts from input video.
9241
9242 The filter accepts the following options:
9243
9244 @table @option
9245 @item filter
9246 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9247 This controls what kind of deblocking is applied.
9248
9249 @item block
9250 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9251
9252 @item alpha
9253 @item beta
9254 @item gamma
9255 @item delta
9256 Set blocking detection thresholds. Allowed range is 0 to 1.
9257 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9258 Using higher threshold gives more deblocking strength.
9259 Setting @var{alpha} controls threshold detection at exact edge of block.
9260 Remaining options controls threshold detection near the edge. Each one for
9261 below/above or left/right. Setting any of those to @var{0} disables
9262 deblocking.
9263
9264 @item planes
9265 Set planes to filter. Default is to filter all available planes.
9266 @end table
9267
9268 @subsection Examples
9269
9270 @itemize
9271 @item
9272 Deblock using weak filter and block size of 4 pixels.
9273 @example
9274 deblock=filter=weak:block=4
9275 @end example
9276
9277 @item
9278 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9279 deblocking more edges.
9280 @example
9281 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9282 @end example
9283
9284 @item
9285 Similar as above, but filter only first plane.
9286 @example
9287 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9288 @end example
9289
9290 @item
9291 Similar as above, but filter only second and third plane.
9292 @example
9293 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9294 @end example
9295 @end itemize
9296
9297 @anchor{decimate}
9298 @section decimate
9299
9300 Drop duplicated frames at regular intervals.
9301
9302 The filter accepts the following options:
9303
9304 @table @option
9305 @item cycle
9306 Set the number of frames from which one will be dropped. Setting this to
9307 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9308 Default is @code{5}.
9309
9310 @item dupthresh
9311 Set the threshold for duplicate detection. If the difference metric for a frame
9312 is less than or equal to this value, then it is declared as duplicate. Default
9313 is @code{1.1}
9314
9315 @item scthresh
9316 Set scene change threshold. Default is @code{15}.
9317
9318 @item blockx
9319 @item blocky
9320 Set the size of the x and y-axis blocks used during metric calculations.
9321 Larger blocks give better noise suppression, but also give worse detection of
9322 small movements. Must be a power of two. Default is @code{32}.
9323
9324 @item ppsrc
9325 Mark main input as a pre-processed input and activate clean source input
9326 stream. This allows the input to be pre-processed with various filters to help
9327 the metrics calculation while keeping the frame selection lossless. When set to
9328 @code{1}, the first stream is for the pre-processed input, and the second
9329 stream is the clean source from where the kept frames are chosen. Default is
9330 @code{0}.
9331
9332 @item chroma
9333 Set whether or not chroma is considered in the metric calculations. Default is
9334 @code{1}.
9335 @end table
9336
9337 @section deconvolve
9338
9339 Apply 2D deconvolution of video stream in frequency domain using second stream
9340 as impulse.
9341
9342 The filter accepts the following options:
9343
9344 @table @option
9345 @item planes
9346 Set which planes to process.
9347
9348 @item impulse
9349 Set which impulse video frames will be processed, can be @var{first}
9350 or @var{all}. Default is @var{all}.
9351
9352 @item noise
9353 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9354 and height are not same and not power of 2 or if stream prior to convolving
9355 had noise.
9356 @end table
9357
9358 The @code{deconvolve} filter also supports the @ref{framesync} options.
9359
9360 @section dedot
9361
9362 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9363
9364 It accepts the following options:
9365
9366 @table @option
9367 @item m
9368 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9369 @var{rainbows} for cross-color reduction.
9370
9371 @item lt
9372 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9373
9374 @item tl
9375 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9376
9377 @item tc
9378 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9379
9380 @item ct
9381 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9382 @end table
9383
9384 @section deflate
9385
9386 Apply deflate effect to the video.
9387
9388 This filter replaces the pixel by the local(3x3) average by taking into account
9389 only values lower than the pixel.
9390
9391 It accepts the following options:
9392
9393 @table @option
9394 @item threshold0
9395 @item threshold1
9396 @item threshold2
9397 @item threshold3
9398 Limit the maximum change for each plane, default is 65535.
9399 If 0, plane will remain unchanged.
9400 @end table
9401
9402 @subsection Commands
9403
9404 This filter supports the all above options as @ref{commands}.
9405
9406 @section deflicker
9407
9408 Remove temporal frame luminance variations.
9409
9410 It accepts the following options:
9411
9412 @table @option
9413 @item size, s
9414 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9415
9416 @item mode, m
9417 Set averaging mode to smooth temporal luminance variations.
9418
9419 Available values are:
9420 @table @samp
9421 @item am
9422 Arithmetic mean
9423
9424 @item gm
9425 Geometric mean
9426
9427 @item hm
9428 Harmonic mean
9429
9430 @item qm
9431 Quadratic mean
9432
9433 @item cm
9434 Cubic mean
9435
9436 @item pm
9437 Power mean
9438
9439 @item median
9440 Median
9441 @end table
9442
9443 @item bypass
9444 Do not actually modify frame. Useful when one only wants metadata.
9445 @end table
9446
9447 @section dejudder
9448
9449 Remove judder produced by partially interlaced telecined content.
9450
9451 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9452 source was partially telecined content then the output of @code{pullup,dejudder}
9453 will have a variable frame rate. May change the recorded frame rate of the
9454 container. Aside from that change, this filter will not affect constant frame
9455 rate video.
9456
9457 The option available in this filter is:
9458 @table @option
9459
9460 @item cycle
9461 Specify the length of the window over which the judder repeats.
9462
9463 Accepts any integer greater than 1. Useful values are:
9464 @table @samp
9465
9466 @item 4
9467 If the original was telecined from 24 to 30 fps (Film to NTSC).
9468
9469 @item 5
9470 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9471
9472 @item 20
9473 If a mixture of the two.
9474 @end table
9475
9476 The default is @samp{4}.
9477 @end table
9478
9479 @section delogo
9480
9481 Suppress a TV station logo by a simple interpolation of the surrounding
9482 pixels. Just set a rectangle covering the logo and watch it disappear
9483 (and sometimes something even uglier appear - your mileage may vary).
9484
9485 It accepts the following parameters:
9486 @table @option
9487
9488 @item x
9489 @item y
9490 Specify the top left corner coordinates of the logo. They must be
9491 specified.
9492
9493 @item w
9494 @item h
9495 Specify the width and height of the logo to clear. They must be
9496 specified.
9497
9498 @item band, t
9499 Specify the thickness of the fuzzy edge of the rectangle (added to
9500 @var{w} and @var{h}). The default value is 1. This option is
9501 deprecated, setting higher values should no longer be necessary and
9502 is not recommended.
9503
9504 @item show
9505 When set to 1, a green rectangle is drawn on the screen to simplify
9506 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9507 The default value is 0.
9508
9509 The rectangle is drawn on the outermost pixels which will be (partly)
9510 replaced with interpolated values. The values of the next pixels
9511 immediately outside this rectangle in each direction will be used to
9512 compute the interpolated pixel values inside the rectangle.
9513
9514 @end table
9515
9516 @subsection Examples
9517
9518 @itemize
9519 @item
9520 Set a rectangle covering the area with top left corner coordinates 0,0
9521 and size 100x77, and a band of size 10:
9522 @example
9523 delogo=x=0:y=0:w=100:h=77:band=10
9524 @end example
9525
9526 @end itemize
9527
9528 @anchor{derain}
9529 @section derain
9530
9531 Remove the rain in the input image/video by applying the derain methods based on
9532 convolutional neural networks. Supported models:
9533
9534 @itemize
9535 @item
9536 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9537 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9538 @end itemize
9539
9540 Training as well as model generation scripts are provided in
9541 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9542
9543 Native model files (.model) can be generated from TensorFlow model
9544 files (.pb) by using tools/python/convert.py
9545
9546 The filter accepts the following options:
9547
9548 @table @option
9549 @item filter_type
9550 Specify which filter to use. This option accepts the following values:
9551
9552 @table @samp
9553 @item derain
9554 Derain filter. To conduct derain filter, you need to use a derain model.
9555
9556 @item dehaze
9557 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9558 @end table
9559 Default value is @samp{derain}.
9560
9561 @item dnn_backend
9562 Specify which DNN backend to use for model loading and execution. This option accepts
9563 the following values:
9564
9565 @table @samp
9566 @item native
9567 Native implementation of DNN loading and execution.
9568
9569 @item tensorflow
9570 TensorFlow backend. To enable this backend you
9571 need to install the TensorFlow for C library (see
9572 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9573 @code{--enable-libtensorflow}
9574 @end table
9575 Default value is @samp{native}.
9576
9577 @item model
9578 Set path to model file specifying network architecture and its parameters.
9579 Note that different backends use different file formats. TensorFlow and native
9580 backend can load files for only its format.
9581 @end table
9582
9583 It can also be finished with @ref{dnn_processing} filter.
9584
9585 @section deshake
9586
9587 Attempt to fix small changes in horizontal and/or vertical shift. This
9588 filter helps remove camera shake from hand-holding a camera, bumping a
9589 tripod, moving on a vehicle, etc.
9590
9591 The filter accepts the following options:
9592
9593 @table @option
9594
9595 @item x
9596 @item y
9597 @item w
9598 @item h
9599 Specify a rectangular area where to limit the search for motion
9600 vectors.
9601 If desired the search for motion vectors can be limited to a
9602 rectangular area of the frame defined by its top left corner, width
9603 and height. These parameters have the same meaning as the drawbox
9604 filter which can be used to visualise the position of the bounding
9605 box.
9606
9607 This is useful when simultaneous movement of subjects within the frame
9608 might be confused for camera motion by the motion vector search.
9609
9610 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9611 then the full frame is used. This allows later options to be set
9612 without specifying the bounding box for the motion vector search.
9613
9614 Default - search the whole frame.
9615
9616 @item rx
9617 @item ry
9618 Specify the maximum extent of movement in x and y directions in the
9619 range 0-64 pixels. Default 16.
9620
9621 @item edge
9622 Specify how to generate pixels to fill blanks at the edge of the
9623 frame. Available values are:
9624 @table @samp
9625 @item blank, 0
9626 Fill zeroes at blank locations
9627 @item original, 1
9628 Original image at blank locations
9629 @item clamp, 2
9630 Extruded edge value at blank locations
9631 @item mirror, 3
9632 Mirrored edge at blank locations
9633 @end table
9634 Default value is @samp{mirror}.
9635
9636 @item blocksize
9637 Specify the blocksize to use for motion search. Range 4-128 pixels,
9638 default 8.
9639
9640 @item contrast
9641 Specify the contrast threshold for blocks. Only blocks with more than
9642 the specified contrast (difference between darkest and lightest
9643 pixels) will be considered. Range 1-255, default 125.
9644
9645 @item search
9646 Specify the search strategy. Available values are:
9647 @table @samp
9648 @item exhaustive, 0
9649 Set exhaustive search
9650 @item less, 1
9651 Set less exhaustive search.
9652 @end table
9653 Default value is @samp{exhaustive}.
9654
9655 @item filename
9656 If set then a detailed log of the motion search is written to the
9657 specified file.
9658
9659 @end table
9660
9661 @section despill
9662
9663 Remove unwanted contamination of foreground colors, caused by reflected color of
9664 greenscreen or bluescreen.
9665
9666 This filter accepts the following options:
9667
9668 @table @option
9669 @item type
9670 Set what type of despill to use.
9671
9672 @item mix
9673 Set how spillmap will be generated.
9674
9675 @item expand
9676 Set how much to get rid of still remaining spill.
9677
9678 @item red
9679 Controls amount of red in spill area.
9680
9681 @item green
9682 Controls amount of green in spill area.
9683 Should be -1 for greenscreen.
9684
9685 @item blue
9686 Controls amount of blue in spill area.
9687 Should be -1 for bluescreen.
9688
9689 @item brightness
9690 Controls brightness of spill area, preserving colors.
9691
9692 @item alpha
9693 Modify alpha from generated spillmap.
9694 @end table
9695
9696 @subsection Commands
9697
9698 This filter supports the all above options as @ref{commands}.
9699
9700 @section detelecine
9701
9702 Apply an exact inverse of the telecine operation. It requires a predefined
9703 pattern specified using the pattern option which must be the same as that passed
9704 to the telecine filter.
9705
9706 This filter accepts the following options:
9707
9708 @table @option
9709 @item first_field
9710 @table @samp
9711 @item top, t
9712 top field first
9713 @item bottom, b
9714 bottom field first
9715 The default value is @code{top}.
9716 @end table
9717
9718 @item pattern
9719 A string of numbers representing the pulldown pattern you wish to apply.
9720 The default value is @code{23}.
9721
9722 @item start_frame
9723 A number representing position of the first frame with respect to the telecine
9724 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9725 @end table
9726
9727 @section dilation
9728
9729 Apply dilation effect to the video.
9730
9731 This filter replaces the pixel by the local(3x3) maximum.
9732
9733 It accepts the following options:
9734
9735 @table @option
9736 @item threshold0
9737 @item threshold1
9738 @item threshold2
9739 @item threshold3
9740 Limit the maximum change for each plane, default is 65535.
9741 If 0, plane will remain unchanged.
9742
9743 @item coordinates
9744 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9745 pixels are used.
9746
9747 Flags to local 3x3 coordinates maps like this:
9748
9749     1 2 3
9750     4   5
9751     6 7 8
9752 @end table
9753
9754 @subsection Commands
9755
9756 This filter supports the all above options as @ref{commands}.
9757
9758 @section displace
9759
9760 Displace pixels as indicated by second and third input stream.
9761
9762 It takes three input streams and outputs one stream, the first input is the
9763 source, and second and third input are displacement maps.
9764
9765 The second input specifies how much to displace pixels along the
9766 x-axis, while the third input specifies how much to displace pixels
9767 along the y-axis.
9768 If one of displacement map streams terminates, last frame from that
9769 displacement map will be used.
9770
9771 Note that once generated, displacements maps can be reused over and over again.
9772
9773 A description of the accepted options follows.
9774
9775 @table @option
9776 @item edge
9777 Set displace behavior for pixels that are out of range.
9778
9779 Available values are:
9780 @table @samp
9781 @item blank
9782 Missing pixels are replaced by black pixels.
9783
9784 @item smear
9785 Adjacent pixels will spread out to replace missing pixels.
9786
9787 @item wrap
9788 Out of range pixels are wrapped so they point to pixels of other side.
9789
9790 @item mirror
9791 Out of range pixels will be replaced with mirrored pixels.
9792 @end table
9793 Default is @samp{smear}.
9794
9795 @end table
9796
9797 @subsection Examples
9798
9799 @itemize
9800 @item
9801 Add ripple effect to rgb input of video size hd720:
9802 @example
9803 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
9804 @end example
9805
9806 @item
9807 Add wave effect to rgb input of video size hd720:
9808 @example
9809 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
9810 @end example
9811 @end itemize
9812
9813 @anchor{dnn_processing}
9814 @section dnn_processing
9815
9816 Do image processing with deep neural networks. It works together with another filter
9817 which converts the pixel format of the Frame to what the dnn network requires.
9818
9819 The filter accepts the following options:
9820
9821 @table @option
9822 @item dnn_backend
9823 Specify which DNN backend to use for model loading and execution. This option accepts
9824 the following values:
9825
9826 @table @samp
9827 @item native
9828 Native implementation of DNN loading and execution.
9829
9830 @item tensorflow
9831 TensorFlow backend. To enable this backend you
9832 need to install the TensorFlow for C library (see
9833 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9834 @code{--enable-libtensorflow}
9835
9836 @item openvino
9837 OpenVINO backend. To enable this backend you
9838 need to build and install the OpenVINO for C library (see
9839 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9840 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9841 be needed if the header files and libraries are not installed into system path)
9842
9843 @end table
9844
9845 Default value is @samp{native}.
9846
9847 @item model
9848 Set path to model file specifying network architecture and its parameters.
9849 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9850 backend can load files for only its format.
9851
9852 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9853
9854 @item input
9855 Set the input name of the dnn network.
9856
9857 @item output
9858 Set the output name of the dnn network.
9859
9860 @end table
9861
9862 @subsection Examples
9863
9864 @itemize
9865 @item
9866 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9867 @example
9868 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9869 @end example
9870
9871 @item
9872 Halve the pixel value of the frame with format gray32f:
9873 @example
9874 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
9875 @end example
9876
9877 @item
9878 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9879 @example
9880 ./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
9881 @end example
9882
9883 @item
9884 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9885 @example
9886 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9887 @end example
9888
9889 @end itemize
9890
9891 @section drawbox
9892
9893 Draw a colored box on the input image.
9894
9895 It accepts the following parameters:
9896
9897 @table @option
9898 @item x
9899 @item y
9900 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9901
9902 @item width, w
9903 @item height, h
9904 The expressions which specify the width and height of the box; if 0 they are interpreted as
9905 the input width and height. It defaults to 0.
9906
9907 @item color, c
9908 Specify the color of the box to write. For the general syntax of this option,
9909 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9910 value @code{invert} is used, the box edge color is the same as the
9911 video with inverted luma.
9912
9913 @item thickness, t
9914 The expression which sets the thickness of the box edge.
9915 A value of @code{fill} will create a filled box. Default value is @code{3}.
9916
9917 See below for the list of accepted constants.
9918
9919 @item replace
9920 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9921 will overwrite the video's color and alpha pixels.
9922 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9923 @end table
9924
9925 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9926 following constants:
9927
9928 @table @option
9929 @item dar
9930 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9931
9932 @item hsub
9933 @item vsub
9934 horizontal and vertical chroma subsample values. For example for the
9935 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9936
9937 @item in_h, ih
9938 @item in_w, iw
9939 The input width and height.
9940
9941 @item sar
9942 The input sample aspect ratio.
9943
9944 @item x
9945 @item y
9946 The x and y offset coordinates where the box is drawn.
9947
9948 @item w
9949 @item h
9950 The width and height of the drawn box.
9951
9952 @item t
9953 The thickness of the drawn box.
9954
9955 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9956 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9957
9958 @end table
9959
9960 @subsection Examples
9961
9962 @itemize
9963 @item
9964 Draw a black box around the edge of the input image:
9965 @example
9966 drawbox
9967 @end example
9968
9969 @item
9970 Draw a box with color red and an opacity of 50%:
9971 @example
9972 drawbox=10:20:200:60:red@@0.5
9973 @end example
9974
9975 The previous example can be specified as:
9976 @example
9977 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9978 @end example
9979
9980 @item
9981 Fill the box with pink color:
9982 @example
9983 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9984 @end example
9985
9986 @item
9987 Draw a 2-pixel red 2.40:1 mask:
9988 @example
9989 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
9990 @end example
9991 @end itemize
9992
9993 @subsection Commands
9994 This filter supports same commands as options.
9995 The command accepts the same syntax of the corresponding option.
9996
9997 If the specified expression is not valid, it is kept at its current
9998 value.
9999
10000 @anchor{drawgraph}
10001 @section drawgraph
10002 Draw a graph using input video metadata.
10003
10004 It accepts the following parameters:
10005
10006 @table @option
10007 @item m1
10008 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10009
10010 @item fg1
10011 Set 1st foreground color expression.
10012
10013 @item m2
10014 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10015
10016 @item fg2
10017 Set 2nd foreground color expression.
10018
10019 @item m3
10020 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10021
10022 @item fg3
10023 Set 3rd foreground color expression.
10024
10025 @item m4
10026 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10027
10028 @item fg4
10029 Set 4th foreground color expression.
10030
10031 @item min
10032 Set minimal value of metadata value.
10033
10034 @item max
10035 Set maximal value of metadata value.
10036
10037 @item bg
10038 Set graph background color. Default is white.
10039
10040 @item mode
10041 Set graph mode.
10042
10043 Available values for mode is:
10044 @table @samp
10045 @item bar
10046 @item dot
10047 @item line
10048 @end table
10049
10050 Default is @code{line}.
10051
10052 @item slide
10053 Set slide mode.
10054
10055 Available values for slide is:
10056 @table @samp
10057 @item frame
10058 Draw new frame when right border is reached.
10059
10060 @item replace
10061 Replace old columns with new ones.
10062
10063 @item scroll
10064 Scroll from right to left.
10065
10066 @item rscroll
10067 Scroll from left to right.
10068
10069 @item picture
10070 Draw single picture.
10071 @end table
10072
10073 Default is @code{frame}.
10074
10075 @item size
10076 Set size of graph video. For the syntax of this option, check the
10077 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10078 The default value is @code{900x256}.
10079
10080 @item rate, r
10081 Set the output frame rate. Default value is @code{25}.
10082
10083 The foreground color expressions can use the following variables:
10084 @table @option
10085 @item MIN
10086 Minimal value of metadata value.
10087
10088 @item MAX
10089 Maximal value of metadata value.
10090
10091 @item VAL
10092 Current metadata key value.
10093 @end table
10094
10095 The color is defined as 0xAABBGGRR.
10096 @end table
10097
10098 Example using metadata from @ref{signalstats} filter:
10099 @example
10100 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10101 @end example
10102
10103 Example using metadata from @ref{ebur128} filter:
10104 @example
10105 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10106 @end example
10107
10108 @section drawgrid
10109
10110 Draw a grid on the input image.
10111
10112 It accepts the following parameters:
10113
10114 @table @option
10115 @item x
10116 @item y
10117 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10118
10119 @item width, w
10120 @item height, h
10121 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10122 input width and height, respectively, minus @code{thickness}, so image gets
10123 framed. Default to 0.
10124
10125 @item color, c
10126 Specify the color of the grid. For the general syntax of this option,
10127 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10128 value @code{invert} is used, the grid color is the same as the
10129 video with inverted luma.
10130
10131 @item thickness, t
10132 The expression which sets the thickness of the grid line. Default value is @code{1}.
10133
10134 See below for the list of accepted constants.
10135
10136 @item replace
10137 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10138 will overwrite the video's color and alpha pixels.
10139 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10140 @end table
10141
10142 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10143 following constants:
10144
10145 @table @option
10146 @item dar
10147 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10148
10149 @item hsub
10150 @item vsub
10151 horizontal and vertical chroma subsample values. For example for the
10152 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10153
10154 @item in_h, ih
10155 @item in_w, iw
10156 The input grid cell width and height.
10157
10158 @item sar
10159 The input sample aspect ratio.
10160
10161 @item x
10162 @item y
10163 The x and y coordinates of some point of grid intersection (meant to configure offset).
10164
10165 @item w
10166 @item h
10167 The width and height of the drawn cell.
10168
10169 @item t
10170 The thickness of the drawn cell.
10171
10172 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10173 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10174
10175 @end table
10176
10177 @subsection Examples
10178
10179 @itemize
10180 @item
10181 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10182 @example
10183 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10184 @end example
10185
10186 @item
10187 Draw a white 3x3 grid with an opacity of 50%:
10188 @example
10189 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10190 @end example
10191 @end itemize
10192
10193 @subsection Commands
10194 This filter supports same commands as options.
10195 The command accepts the same syntax of the corresponding option.
10196
10197 If the specified expression is not valid, it is kept at its current
10198 value.
10199
10200 @anchor{drawtext}
10201 @section drawtext
10202
10203 Draw a text string or text from a specified file on top of a video, using the
10204 libfreetype library.
10205
10206 To enable compilation of this filter, you need to configure FFmpeg with
10207 @code{--enable-libfreetype}.
10208 To enable default font fallback and the @var{font} option you need to
10209 configure FFmpeg with @code{--enable-libfontconfig}.
10210 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10211 @code{--enable-libfribidi}.
10212
10213 @subsection Syntax
10214
10215 It accepts the following parameters:
10216
10217 @table @option
10218
10219 @item box
10220 Used to draw a box around text using the background color.
10221 The value must be either 1 (enable) or 0 (disable).
10222 The default value of @var{box} is 0.
10223
10224 @item boxborderw
10225 Set the width of the border to be drawn around the box using @var{boxcolor}.
10226 The default value of @var{boxborderw} is 0.
10227
10228 @item boxcolor
10229 The color to be used for drawing box around text. For the syntax of this
10230 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10231
10232 The default value of @var{boxcolor} is "white".
10233
10234 @item line_spacing
10235 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10236 The default value of @var{line_spacing} is 0.
10237
10238 @item borderw
10239 Set the width of the border to be drawn around the text using @var{bordercolor}.
10240 The default value of @var{borderw} is 0.
10241
10242 @item bordercolor
10243 Set the color to be used for drawing border around text. For the syntax of this
10244 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10245
10246 The default value of @var{bordercolor} is "black".
10247
10248 @item expansion
10249 Select how the @var{text} is expanded. Can be either @code{none},
10250 @code{strftime} (deprecated) or
10251 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10252 below for details.
10253
10254 @item basetime
10255 Set a start time for the count. Value is in microseconds. Only applied
10256 in the deprecated strftime expansion mode. To emulate in normal expansion
10257 mode use the @code{pts} function, supplying the start time (in seconds)
10258 as the second argument.
10259
10260 @item fix_bounds
10261 If true, check and fix text coords to avoid clipping.
10262
10263 @item fontcolor
10264 The color to be used for drawing fonts. For the syntax of this option, check
10265 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10266
10267 The default value of @var{fontcolor} is "black".
10268
10269 @item fontcolor_expr
10270 String which is expanded the same way as @var{text} to obtain dynamic
10271 @var{fontcolor} value. By default this option has empty value and is not
10272 processed. When this option is set, it overrides @var{fontcolor} option.
10273
10274 @item font
10275 The font family to be used for drawing text. By default Sans.
10276
10277 @item fontfile
10278 The font file to be used for drawing text. The path must be included.
10279 This parameter is mandatory if the fontconfig support is disabled.
10280
10281 @item alpha
10282 Draw the text applying alpha blending. The value can
10283 be a number between 0.0 and 1.0.
10284 The expression accepts the same variables @var{x, y} as well.
10285 The default value is 1.
10286 Please see @var{fontcolor_expr}.
10287
10288 @item fontsize
10289 The font size to be used for drawing text.
10290 The default value of @var{fontsize} is 16.
10291
10292 @item text_shaping
10293 If set to 1, attempt to shape the text (for example, reverse the order of
10294 right-to-left text and join Arabic characters) before drawing it.
10295 Otherwise, just draw the text exactly as given.
10296 By default 1 (if supported).
10297
10298 @item ft_load_flags
10299 The flags to be used for loading the fonts.
10300
10301 The flags map the corresponding flags supported by libfreetype, and are
10302 a combination of the following values:
10303 @table @var
10304 @item default
10305 @item no_scale
10306 @item no_hinting
10307 @item render
10308 @item no_bitmap
10309 @item vertical_layout
10310 @item force_autohint
10311 @item crop_bitmap
10312 @item pedantic
10313 @item ignore_global_advance_width
10314 @item no_recurse
10315 @item ignore_transform
10316 @item monochrome
10317 @item linear_design
10318 @item no_autohint
10319 @end table
10320
10321 Default value is "default".
10322
10323 For more information consult the documentation for the FT_LOAD_*
10324 libfreetype flags.
10325
10326 @item shadowcolor
10327 The color to be used for drawing a shadow behind the drawn text. For the
10328 syntax of this option, check the @ref{color syntax,,"Color" section in the
10329 ffmpeg-utils manual,ffmpeg-utils}.
10330
10331 The default value of @var{shadowcolor} is "black".
10332
10333 @item shadowx
10334 @item shadowy
10335 The x and y offsets for the text shadow position with respect to the
10336 position of the text. They can be either positive or negative
10337 values. The default value for both is "0".
10338
10339 @item start_number
10340 The starting frame number for the n/frame_num variable. The default value
10341 is "0".
10342
10343 @item tabsize
10344 The size in number of spaces to use for rendering the tab.
10345 Default value is 4.
10346
10347 @item timecode
10348 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10349 format. It can be used with or without text parameter. @var{timecode_rate}
10350 option must be specified.
10351
10352 @item timecode_rate, rate, r
10353 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10354 integer. Minimum value is "1".
10355 Drop-frame timecode is supported for frame rates 30 & 60.
10356
10357 @item tc24hmax
10358 If set to 1, the output of the timecode option will wrap around at 24 hours.
10359 Default is 0 (disabled).
10360
10361 @item text
10362 The text string to be drawn. The text must be a sequence of UTF-8
10363 encoded characters.
10364 This parameter is mandatory if no file is specified with the parameter
10365 @var{textfile}.
10366
10367 @item textfile
10368 A text file containing text to be drawn. The text must be a sequence
10369 of UTF-8 encoded characters.
10370
10371 This parameter is mandatory if no text string is specified with the
10372 parameter @var{text}.
10373
10374 If both @var{text} and @var{textfile} are specified, an error is thrown.
10375
10376 @item reload
10377 If set to 1, the @var{textfile} will be reloaded before each frame.
10378 Be sure to update it atomically, or it may be read partially, or even fail.
10379
10380 @item x
10381 @item y
10382 The expressions which specify the offsets where text will be drawn
10383 within the video frame. They are relative to the top/left border of the
10384 output image.
10385
10386 The default value of @var{x} and @var{y} is "0".
10387
10388 See below for the list of accepted constants and functions.
10389 @end table
10390
10391 The parameters for @var{x} and @var{y} are expressions containing the
10392 following constants and functions:
10393
10394 @table @option
10395 @item dar
10396 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10397
10398 @item hsub
10399 @item vsub
10400 horizontal and vertical chroma subsample values. For example for the
10401 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10402
10403 @item line_h, lh
10404 the height of each text line
10405
10406 @item main_h, h, H
10407 the input height
10408
10409 @item main_w, w, W
10410 the input width
10411
10412 @item max_glyph_a, ascent
10413 the maximum distance from the baseline to the highest/upper grid
10414 coordinate used to place a glyph outline point, for all the rendered
10415 glyphs.
10416 It is a positive value, due to the grid's orientation with the Y axis
10417 upwards.
10418
10419 @item max_glyph_d, descent
10420 the maximum distance from the baseline to the lowest grid coordinate
10421 used to place a glyph outline point, for all the rendered glyphs.
10422 This is a negative value, due to the grid's orientation, with the Y axis
10423 upwards.
10424
10425 @item max_glyph_h
10426 maximum glyph height, that is the maximum height for all the glyphs
10427 contained in the rendered text, it is equivalent to @var{ascent} -
10428 @var{descent}.
10429
10430 @item max_glyph_w
10431 maximum glyph width, that is the maximum width for all the glyphs
10432 contained in the rendered text
10433
10434 @item n
10435 the number of input frame, starting from 0
10436
10437 @item rand(min, max)
10438 return a random number included between @var{min} and @var{max}
10439
10440 @item sar
10441 The input sample aspect ratio.
10442
10443 @item t
10444 timestamp expressed in seconds, NAN if the input timestamp is unknown
10445
10446 @item text_h, th
10447 the height of the rendered text
10448
10449 @item text_w, tw
10450 the width of the rendered text
10451
10452 @item x
10453 @item y
10454 the x and y offset coordinates where the text is drawn.
10455
10456 These parameters allow the @var{x} and @var{y} expressions to refer
10457 to each other, so you can for example specify @code{y=x/dar}.
10458
10459 @item pict_type
10460 A one character description of the current frame's picture type.
10461
10462 @item pkt_pos
10463 The current packet's position in the input file or stream
10464 (in bytes, from the start of the input). A value of -1 indicates
10465 this info is not available.
10466
10467 @item pkt_duration
10468 The current packet's duration, in seconds.
10469
10470 @item pkt_size
10471 The current packet's size (in bytes).
10472 @end table
10473
10474 @anchor{drawtext_expansion}
10475 @subsection Text expansion
10476
10477 If @option{expansion} is set to @code{strftime},
10478 the filter recognizes strftime() sequences in the provided text and
10479 expands them accordingly. Check the documentation of strftime(). This
10480 feature is deprecated.
10481
10482 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10483
10484 If @option{expansion} is set to @code{normal} (which is the default),
10485 the following expansion mechanism is used.
10486
10487 The backslash character @samp{\}, followed by any character, always expands to
10488 the second character.
10489
10490 Sequences of the form @code{%@{...@}} are expanded. The text between the
10491 braces is a function name, possibly followed by arguments separated by ':'.
10492 If the arguments contain special characters or delimiters (':' or '@}'),
10493 they should be escaped.
10494
10495 Note that they probably must also be escaped as the value for the
10496 @option{text} option in the filter argument string and as the filter
10497 argument in the filtergraph description, and possibly also for the shell,
10498 that makes up to four levels of escaping; using a text file avoids these
10499 problems.
10500
10501 The following functions are available:
10502
10503 @table @command
10504
10505 @item expr, e
10506 The expression evaluation result.
10507
10508 It must take one argument specifying the expression to be evaluated,
10509 which accepts the same constants and functions as the @var{x} and
10510 @var{y} values. Note that not all constants should be used, for
10511 example the text size is not known when evaluating the expression, so
10512 the constants @var{text_w} and @var{text_h} will have an undefined
10513 value.
10514
10515 @item expr_int_format, eif
10516 Evaluate the expression's value and output as formatted integer.
10517
10518 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10519 The second argument specifies the output format. Allowed values are @samp{x},
10520 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10521 @code{printf} function.
10522 The third parameter is optional and sets the number of positions taken by the output.
10523 It can be used to add padding with zeros from the left.
10524
10525 @item gmtime
10526 The time at which the filter is running, expressed in UTC.
10527 It can accept an argument: a strftime() format string.
10528
10529 @item localtime
10530 The time at which the filter is running, expressed in the local time zone.
10531 It can accept an argument: a strftime() format string.
10532
10533 @item metadata
10534 Frame metadata. Takes one or two arguments.
10535
10536 The first argument is mandatory and specifies the metadata key.
10537
10538 The second argument is optional and specifies a default value, used when the
10539 metadata key is not found or empty.
10540
10541 Available metadata can be identified by inspecting entries
10542 starting with TAG included within each frame section
10543 printed by running @code{ffprobe -show_frames}.
10544
10545 String metadata generated in filters leading to
10546 the drawtext filter are also available.
10547
10548 @item n, frame_num
10549 The frame number, starting from 0.
10550
10551 @item pict_type
10552 A one character description of the current picture type.
10553
10554 @item pts
10555 The timestamp of the current frame.
10556 It can take up to three arguments.
10557
10558 The first argument is the format of the timestamp; it defaults to @code{flt}
10559 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10560 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10561 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10562 @code{localtime} stands for the timestamp of the frame formatted as
10563 local time zone time.
10564
10565 The second argument is an offset added to the timestamp.
10566
10567 If the format is set to @code{hms}, a third argument @code{24HH} may be
10568 supplied to present the hour part of the formatted timestamp in 24h format
10569 (00-23).
10570
10571 If the format is set to @code{localtime} or @code{gmtime},
10572 a third argument may be supplied: a strftime() format string.
10573 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10574 @end table
10575
10576 @subsection Commands
10577
10578 This filter supports altering parameters via commands:
10579 @table @option
10580 @item reinit
10581 Alter existing filter parameters.
10582
10583 Syntax for the argument is the same as for filter invocation, e.g.
10584
10585 @example
10586 fontsize=56:fontcolor=green:text='Hello World'
10587 @end example
10588
10589 Full filter invocation with sendcmd would look like this:
10590
10591 @example
10592 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10593 @end example
10594 @end table
10595
10596 If the entire argument can't be parsed or applied as valid values then the filter will
10597 continue with its existing parameters.
10598
10599 @subsection Examples
10600
10601 @itemize
10602 @item
10603 Draw "Test Text" with font FreeSerif, using the default values for the
10604 optional parameters.
10605
10606 @example
10607 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10608 @end example
10609
10610 @item
10611 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10612 and y=50 (counting from the top-left corner of the screen), text is
10613 yellow with a red box around it. Both the text and the box have an
10614 opacity of 20%.
10615
10616 @example
10617 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10618           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10619 @end example
10620
10621 Note that the double quotes are not necessary if spaces are not used
10622 within the parameter list.
10623
10624 @item
10625 Show the text at the center of the video frame:
10626 @example
10627 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10628 @end example
10629
10630 @item
10631 Show the text at a random position, switching to a new position every 30 seconds:
10632 @example
10633 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)"
10634 @end example
10635
10636 @item
10637 Show a text line sliding from right to left in the last row of the video
10638 frame. The file @file{LONG_LINE} is assumed to contain a single line
10639 with no newlines.
10640 @example
10641 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10642 @end example
10643
10644 @item
10645 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10646 @example
10647 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10648 @end example
10649
10650 @item
10651 Draw a single green letter "g", at the center of the input video.
10652 The glyph baseline is placed at half screen height.
10653 @example
10654 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10655 @end example
10656
10657 @item
10658 Show text for 1 second every 3 seconds:
10659 @example
10660 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10661 @end example
10662
10663 @item
10664 Use fontconfig to set the font. Note that the colons need to be escaped.
10665 @example
10666 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10667 @end example
10668
10669 @item
10670 Draw "Test Text" with font size dependent on height of the video.
10671 @example
10672 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10673 @end example
10674
10675 @item
10676 Print the date of a real-time encoding (see strftime(3)):
10677 @example
10678 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10679 @end example
10680
10681 @item
10682 Show text fading in and out (appearing/disappearing):
10683 @example
10684 #!/bin/sh
10685 DS=1.0 # display start
10686 DE=10.0 # display end
10687 FID=1.5 # fade in duration
10688 FOD=5 # fade out duration
10689 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 @}"
10690 @end example
10691
10692 @item
10693 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10694 and the @option{fontsize} value are included in the @option{y} offset.
10695 @example
10696 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10697 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10698 @end example
10699
10700 @item
10701 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10702 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10703 must have option @option{-export_path_metadata 1} for the special metadata fields
10704 to be available for filters.
10705 @example
10706 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10707 @end example
10708
10709 @end itemize
10710
10711 For more information about libfreetype, check:
10712 @url{http://www.freetype.org/}.
10713
10714 For more information about fontconfig, check:
10715 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10716
10717 For more information about libfribidi, check:
10718 @url{http://fribidi.org/}.
10719
10720 @section edgedetect
10721
10722 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10723
10724 The filter accepts the following options:
10725
10726 @table @option
10727 @item low
10728 @item high
10729 Set low and high threshold values used by the Canny thresholding
10730 algorithm.
10731
10732 The high threshold selects the "strong" edge pixels, which are then
10733 connected through 8-connectivity with the "weak" edge pixels selected
10734 by the low threshold.
10735
10736 @var{low} and @var{high} threshold values must be chosen in the range
10737 [0,1], and @var{low} should be lesser or equal to @var{high}.
10738
10739 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10740 is @code{50/255}.
10741
10742 @item mode
10743 Define the drawing mode.
10744
10745 @table @samp
10746 @item wires
10747 Draw white/gray wires on black background.
10748
10749 @item colormix
10750 Mix the colors to create a paint/cartoon effect.
10751
10752 @item canny
10753 Apply Canny edge detector on all selected planes.
10754 @end table
10755 Default value is @var{wires}.
10756
10757 @item planes
10758 Select planes for filtering. By default all available planes are filtered.
10759 @end table
10760
10761 @subsection Examples
10762
10763 @itemize
10764 @item
10765 Standard edge detection with custom values for the hysteresis thresholding:
10766 @example
10767 edgedetect=low=0.1:high=0.4
10768 @end example
10769
10770 @item
10771 Painting effect without thresholding:
10772 @example
10773 edgedetect=mode=colormix:high=0
10774 @end example
10775 @end itemize
10776
10777 @section elbg
10778
10779 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10780
10781 For each input image, the filter will compute the optimal mapping from
10782 the input to the output given the codebook length, that is the number
10783 of distinct output colors.
10784
10785 This filter accepts the following options.
10786
10787 @table @option
10788 @item codebook_length, l
10789 Set codebook length. The value must be a positive integer, and
10790 represents the number of distinct output colors. Default value is 256.
10791
10792 @item nb_steps, n
10793 Set the maximum number of iterations to apply for computing the optimal
10794 mapping. The higher the value the better the result and the higher the
10795 computation time. Default value is 1.
10796
10797 @item seed, s
10798 Set a random seed, must be an integer included between 0 and
10799 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10800 will try to use a good random seed on a best effort basis.
10801
10802 @item pal8
10803 Set pal8 output pixel format. This option does not work with codebook
10804 length greater than 256.
10805 @end table
10806
10807 @section entropy
10808
10809 Measure graylevel entropy in histogram of color channels of video frames.
10810
10811 It accepts the following parameters:
10812
10813 @table @option
10814 @item mode
10815 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10816
10817 @var{diff} mode measures entropy of histogram delta values, absolute differences
10818 between neighbour histogram values.
10819 @end table
10820
10821 @section eq
10822 Set brightness, contrast, saturation and approximate gamma adjustment.
10823
10824 The filter accepts the following options:
10825
10826 @table @option
10827 @item contrast
10828 Set the contrast expression. The value must be a float value in range
10829 @code{-1000.0} to @code{1000.0}. The default value is "1".
10830
10831 @item brightness
10832 Set the brightness expression. The value must be a float value in
10833 range @code{-1.0} to @code{1.0}. The default value is "0".
10834
10835 @item saturation
10836 Set the saturation expression. The value must be a float in
10837 range @code{0.0} to @code{3.0}. The default value is "1".
10838
10839 @item gamma
10840 Set the gamma expression. The value must be a float in range
10841 @code{0.1} to @code{10.0}.  The default value is "1".
10842
10843 @item gamma_r
10844 Set the gamma expression for red. The value must be a float in
10845 range @code{0.1} to @code{10.0}. The default value is "1".
10846
10847 @item gamma_g
10848 Set the gamma expression for green. The value must be a float in range
10849 @code{0.1} to @code{10.0}. The default value is "1".
10850
10851 @item gamma_b
10852 Set the gamma expression for blue. The value must be a float in range
10853 @code{0.1} to @code{10.0}. The default value is "1".
10854
10855 @item gamma_weight
10856 Set the gamma weight expression. It can be used to reduce the effect
10857 of a high gamma value on bright image areas, e.g. keep them from
10858 getting overamplified and just plain white. The value must be a float
10859 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10860 gamma correction all the way down while @code{1.0} leaves it at its
10861 full strength. Default is "1".
10862
10863 @item eval
10864 Set when the expressions for brightness, contrast, saturation and
10865 gamma expressions are evaluated.
10866
10867 It accepts the following values:
10868 @table @samp
10869 @item init
10870 only evaluate expressions once during the filter initialization or
10871 when a command is processed
10872
10873 @item frame
10874 evaluate expressions for each incoming frame
10875 @end table
10876
10877 Default value is @samp{init}.
10878 @end table
10879
10880 The expressions accept the following parameters:
10881 @table @option
10882 @item n
10883 frame count of the input frame starting from 0
10884
10885 @item pos
10886 byte position of the corresponding packet in the input file, NAN if
10887 unspecified
10888
10889 @item r
10890 frame rate of the input video, NAN if the input frame rate is unknown
10891
10892 @item t
10893 timestamp expressed in seconds, NAN if the input timestamp is unknown
10894 @end table
10895
10896 @subsection Commands
10897 The filter supports the following commands:
10898
10899 @table @option
10900 @item contrast
10901 Set the contrast expression.
10902
10903 @item brightness
10904 Set the brightness expression.
10905
10906 @item saturation
10907 Set the saturation expression.
10908
10909 @item gamma
10910 Set the gamma expression.
10911
10912 @item gamma_r
10913 Set the gamma_r expression.
10914
10915 @item gamma_g
10916 Set gamma_g expression.
10917
10918 @item gamma_b
10919 Set gamma_b expression.
10920
10921 @item gamma_weight
10922 Set gamma_weight expression.
10923
10924 The command accepts the same syntax of the corresponding option.
10925
10926 If the specified expression is not valid, it is kept at its current
10927 value.
10928
10929 @end table
10930
10931 @section erosion
10932
10933 Apply erosion effect to the video.
10934
10935 This filter replaces the pixel by the local(3x3) minimum.
10936
10937 It accepts the following options:
10938
10939 @table @option
10940 @item threshold0
10941 @item threshold1
10942 @item threshold2
10943 @item threshold3
10944 Limit the maximum change for each plane, default is 65535.
10945 If 0, plane will remain unchanged.
10946
10947 @item coordinates
10948 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10949 pixels are used.
10950
10951 Flags to local 3x3 coordinates maps like this:
10952
10953     1 2 3
10954     4   5
10955     6 7 8
10956 @end table
10957
10958 @subsection Commands
10959
10960 This filter supports the all above options as @ref{commands}.
10961
10962 @section extractplanes
10963
10964 Extract color channel components from input video stream into
10965 separate grayscale video streams.
10966
10967 The filter accepts the following option:
10968
10969 @table @option
10970 @item planes
10971 Set plane(s) to extract.
10972
10973 Available values for planes are:
10974 @table @samp
10975 @item y
10976 @item u
10977 @item v
10978 @item a
10979 @item r
10980 @item g
10981 @item b
10982 @end table
10983
10984 Choosing planes not available in the input will result in an error.
10985 That means you cannot select @code{r}, @code{g}, @code{b} planes
10986 with @code{y}, @code{u}, @code{v} planes at same time.
10987 @end table
10988
10989 @subsection Examples
10990
10991 @itemize
10992 @item
10993 Extract luma, u and v color channel component from input video frame
10994 into 3 grayscale outputs:
10995 @example
10996 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
10997 @end example
10998 @end itemize
10999
11000 @section fade
11001
11002 Apply a fade-in/out effect to the input video.
11003
11004 It accepts the following parameters:
11005
11006 @table @option
11007 @item type, t
11008 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11009 effect.
11010 Default is @code{in}.
11011
11012 @item start_frame, s
11013 Specify the number of the frame to start applying the fade
11014 effect at. Default is 0.
11015
11016 @item nb_frames, n
11017 The number of frames that the fade effect lasts. At the end of the
11018 fade-in effect, the output video will have the same intensity as the input video.
11019 At the end of the fade-out transition, the output video will be filled with the
11020 selected @option{color}.
11021 Default is 25.
11022
11023 @item alpha
11024 If set to 1, fade only alpha channel, if one exists on the input.
11025 Default value is 0.
11026
11027 @item start_time, st
11028 Specify the timestamp (in seconds) of the frame to start to apply the fade
11029 effect. If both start_frame and start_time are specified, the fade will start at
11030 whichever comes last.  Default is 0.
11031
11032 @item duration, d
11033 The number of seconds for which the fade effect has to last. At the end of the
11034 fade-in effect the output video will have the same intensity as the input video,
11035 at the end of the fade-out transition the output video will be filled with the
11036 selected @option{color}.
11037 If both duration and nb_frames are specified, duration is used. Default is 0
11038 (nb_frames is used by default).
11039
11040 @item color, c
11041 Specify the color of the fade. Default is "black".
11042 @end table
11043
11044 @subsection Examples
11045
11046 @itemize
11047 @item
11048 Fade in the first 30 frames of video:
11049 @example
11050 fade=in:0:30
11051 @end example
11052
11053 The command above is equivalent to:
11054 @example
11055 fade=t=in:s=0:n=30
11056 @end example
11057
11058 @item
11059 Fade out the last 45 frames of a 200-frame video:
11060 @example
11061 fade=out:155:45
11062 fade=type=out:start_frame=155:nb_frames=45
11063 @end example
11064
11065 @item
11066 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11067 @example
11068 fade=in:0:25, fade=out:975:25
11069 @end example
11070
11071 @item
11072 Make the first 5 frames yellow, then fade in from frame 5-24:
11073 @example
11074 fade=in:5:20:color=yellow
11075 @end example
11076
11077 @item
11078 Fade in alpha over first 25 frames of video:
11079 @example
11080 fade=in:0:25:alpha=1
11081 @end example
11082
11083 @item
11084 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11085 @example
11086 fade=t=in:st=5.5:d=0.5
11087 @end example
11088
11089 @end itemize
11090
11091 @section fftdnoiz
11092 Denoise frames using 3D FFT (frequency domain filtering).
11093
11094 The filter accepts the following options:
11095
11096 @table @option
11097 @item sigma
11098 Set the noise sigma constant. This sets denoising strength.
11099 Default value is 1. Allowed range is from 0 to 30.
11100 Using very high sigma with low overlap may give blocking artifacts.
11101
11102 @item amount
11103 Set amount of denoising. By default all detected noise is reduced.
11104 Default value is 1. Allowed range is from 0 to 1.
11105
11106 @item block
11107 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11108 Actual size of block in pixels is 2 to power of @var{block}, so by default
11109 block size in pixels is 2^4 which is 16.
11110
11111 @item overlap
11112 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11113
11114 @item prev
11115 Set number of previous frames to use for denoising. By default is set to 0.
11116
11117 @item next
11118 Set number of next frames to to use for denoising. By default is set to 0.
11119
11120 @item planes
11121 Set planes which will be filtered, by default are all available filtered
11122 except alpha.
11123 @end table
11124
11125 @section fftfilt
11126 Apply arbitrary expressions to samples in frequency domain
11127
11128 @table @option
11129 @item dc_Y
11130 Adjust the dc value (gain) of the luma plane of the image. The filter
11131 accepts an integer value in range @code{0} to @code{1000}. The default
11132 value is set to @code{0}.
11133
11134 @item dc_U
11135 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11136 filter accepts an integer value in range @code{0} to @code{1000}. The
11137 default value is set to @code{0}.
11138
11139 @item dc_V
11140 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11141 filter accepts an integer value in range @code{0} to @code{1000}. The
11142 default value is set to @code{0}.
11143
11144 @item weight_Y
11145 Set the frequency domain weight expression for the luma plane.
11146
11147 @item weight_U
11148 Set the frequency domain weight expression for the 1st chroma plane.
11149
11150 @item weight_V
11151 Set the frequency domain weight expression for the 2nd chroma plane.
11152
11153 @item eval
11154 Set when the expressions are evaluated.
11155
11156 It accepts the following values:
11157 @table @samp
11158 @item init
11159 Only evaluate expressions once during the filter initialization.
11160
11161 @item frame
11162 Evaluate expressions for each incoming frame.
11163 @end table
11164
11165 Default value is @samp{init}.
11166
11167 The filter accepts the following variables:
11168 @item X
11169 @item Y
11170 The coordinates of the current sample.
11171
11172 @item W
11173 @item H
11174 The width and height of the image.
11175
11176 @item N
11177 The number of input frame, starting from 0.
11178 @end table
11179
11180 @subsection Examples
11181
11182 @itemize
11183 @item
11184 High-pass:
11185 @example
11186 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11187 @end example
11188
11189 @item
11190 Low-pass:
11191 @example
11192 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11193 @end example
11194
11195 @item
11196 Sharpen:
11197 @example
11198 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11199 @end example
11200
11201 @item
11202 Blur:
11203 @example
11204 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11205 @end example
11206
11207 @end itemize
11208
11209 @section field
11210
11211 Extract a single field from an interlaced image using stride
11212 arithmetic to avoid wasting CPU time. The output frames are marked as
11213 non-interlaced.
11214
11215 The filter accepts the following options:
11216
11217 @table @option
11218 @item type
11219 Specify whether to extract the top (if the value is @code{0} or
11220 @code{top}) or the bottom field (if the value is @code{1} or
11221 @code{bottom}).
11222 @end table
11223
11224 @section fieldhint
11225
11226 Create new frames by copying the top and bottom fields from surrounding frames
11227 supplied as numbers by the hint file.
11228
11229 @table @option
11230 @item hint
11231 Set file containing hints: absolute/relative frame numbers.
11232
11233 There must be one line for each frame in a clip. Each line must contain two
11234 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11235 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11236 is current frame number for @code{absolute} mode or out of [-1, 1] range
11237 for @code{relative} mode. First number tells from which frame to pick up top
11238 field and second number tells from which frame to pick up bottom field.
11239
11240 If optionally followed by @code{+} output frame will be marked as interlaced,
11241 else if followed by @code{-} output frame will be marked as progressive, else
11242 it will be marked same as input frame.
11243 If optionally followed by @code{t} output frame will use only top field, or in
11244 case of @code{b} it will use only bottom field.
11245 If line starts with @code{#} or @code{;} that line is skipped.
11246
11247 @item mode
11248 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11249 @end table
11250
11251 Example of first several lines of @code{hint} file for @code{relative} mode:
11252 @example
11253 0,0 - # first frame
11254 1,0 - # second frame, use third's frame top field and second's frame bottom field
11255 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11256 1,0 -
11257 0,0 -
11258 0,0 -
11259 1,0 -
11260 1,0 -
11261 1,0 -
11262 0,0 -
11263 0,0 -
11264 1,0 -
11265 1,0 -
11266 1,0 -
11267 0,0 -
11268 @end example
11269
11270 @section fieldmatch
11271
11272 Field matching filter for inverse telecine. It is meant to reconstruct the
11273 progressive frames from a telecined stream. The filter does not drop duplicated
11274 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11275 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11276
11277 The separation of the field matching and the decimation is notably motivated by
11278 the possibility of inserting a de-interlacing filter fallback between the two.
11279 If the source has mixed telecined and real interlaced content,
11280 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11281 But these remaining combed frames will be marked as interlaced, and thus can be
11282 de-interlaced by a later filter such as @ref{yadif} before decimation.
11283
11284 In addition to the various configuration options, @code{fieldmatch} can take an
11285 optional second stream, activated through the @option{ppsrc} option. If
11286 enabled, the frames reconstruction will be based on the fields and frames from
11287 this second stream. This allows the first input to be pre-processed in order to
11288 help the various algorithms of the filter, while keeping the output lossless
11289 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11290 or brightness/contrast adjustments can help.
11291
11292 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11293 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11294 which @code{fieldmatch} is based on. While the semantic and usage are very
11295 close, some behaviour and options names can differ.
11296
11297 The @ref{decimate} filter currently only works for constant frame rate input.
11298 If your input has mixed telecined (30fps) and progressive content with a lower
11299 framerate like 24fps use the following filterchain to produce the necessary cfr
11300 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11301
11302 The filter accepts the following options:
11303
11304 @table @option
11305 @item order
11306 Specify the assumed field order of the input stream. Available values are:
11307
11308 @table @samp
11309 @item auto
11310 Auto detect parity (use FFmpeg's internal parity value).
11311 @item bff
11312 Assume bottom field first.
11313 @item tff
11314 Assume top field first.
11315 @end table
11316
11317 Note that it is sometimes recommended not to trust the parity announced by the
11318 stream.
11319
11320 Default value is @var{auto}.
11321
11322 @item mode
11323 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11324 sense that it won't risk creating jerkiness due to duplicate frames when
11325 possible, but if there are bad edits or blended fields it will end up
11326 outputting combed frames when a good match might actually exist. On the other
11327 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11328 but will almost always find a good frame if there is one. The other values are
11329 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11330 jerkiness and creating duplicate frames versus finding good matches in sections
11331 with bad edits, orphaned fields, blended fields, etc.
11332
11333 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11334
11335 Available values are:
11336
11337 @table @samp
11338 @item pc
11339 2-way matching (p/c)
11340 @item pc_n
11341 2-way matching, and trying 3rd match if still combed (p/c + n)
11342 @item pc_u
11343 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11344 @item pc_n_ub
11345 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11346 still combed (p/c + n + u/b)
11347 @item pcn
11348 3-way matching (p/c/n)
11349 @item pcn_ub
11350 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11351 detected as combed (p/c/n + u/b)
11352 @end table
11353
11354 The parenthesis at the end indicate the matches that would be used for that
11355 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11356 @var{top}).
11357
11358 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11359 the slowest.
11360
11361 Default value is @var{pc_n}.
11362
11363 @item ppsrc
11364 Mark the main input stream as a pre-processed input, and enable the secondary
11365 input stream as the clean source to pick the fields from. See the filter
11366 introduction for more details. It is similar to the @option{clip2} feature from
11367 VFM/TFM.
11368
11369 Default value is @code{0} (disabled).
11370
11371 @item field
11372 Set the field to match from. It is recommended to set this to the same value as
11373 @option{order} unless you experience matching failures with that setting. In
11374 certain circumstances changing the field that is used to match from can have a
11375 large impact on matching performance. Available values are:
11376
11377 @table @samp
11378 @item auto
11379 Automatic (same value as @option{order}).
11380 @item bottom
11381 Match from the bottom field.
11382 @item top
11383 Match from the top field.
11384 @end table
11385
11386 Default value is @var{auto}.
11387
11388 @item mchroma
11389 Set whether or not chroma is included during the match comparisons. In most
11390 cases it is recommended to leave this enabled. You should set this to @code{0}
11391 only if your clip has bad chroma problems such as heavy rainbowing or other
11392 artifacts. Setting this to @code{0} could also be used to speed things up at
11393 the cost of some accuracy.
11394
11395 Default value is @code{1}.
11396
11397 @item y0
11398 @item y1
11399 These define an exclusion band which excludes the lines between @option{y0} and
11400 @option{y1} from being included in the field matching decision. An exclusion
11401 band can be used to ignore subtitles, a logo, or other things that may
11402 interfere with the matching. @option{y0} sets the starting scan line and
11403 @option{y1} sets the ending line; all lines in between @option{y0} and
11404 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11405 @option{y0} and @option{y1} to the same value will disable the feature.
11406 @option{y0} and @option{y1} defaults to @code{0}.
11407
11408 @item scthresh
11409 Set the scene change detection threshold as a percentage of maximum change on
11410 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11411 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11412 @option{scthresh} is @code{[0.0, 100.0]}.
11413
11414 Default value is @code{12.0}.
11415
11416 @item combmatch
11417 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11418 account the combed scores of matches when deciding what match to use as the
11419 final match. Available values are:
11420
11421 @table @samp
11422 @item none
11423 No final matching based on combed scores.
11424 @item sc
11425 Combed scores are only used when a scene change is detected.
11426 @item full
11427 Use combed scores all the time.
11428 @end table
11429
11430 Default is @var{sc}.
11431
11432 @item combdbg
11433 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11434 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11435 Available values are:
11436
11437 @table @samp
11438 @item none
11439 No forced calculation.
11440 @item pcn
11441 Force p/c/n calculations.
11442 @item pcnub
11443 Force p/c/n/u/b calculations.
11444 @end table
11445
11446 Default value is @var{none}.
11447
11448 @item cthresh
11449 This is the area combing threshold used for combed frame detection. This
11450 essentially controls how "strong" or "visible" combing must be to be detected.
11451 Larger values mean combing must be more visible and smaller values mean combing
11452 can be less visible or strong and still be detected. Valid settings are from
11453 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11454 be detected as combed). This is basically a pixel difference value. A good
11455 range is @code{[8, 12]}.
11456
11457 Default value is @code{9}.
11458
11459 @item chroma
11460 Sets whether or not chroma is considered in the combed frame decision.  Only
11461 disable this if your source has chroma problems (rainbowing, etc.) that are
11462 causing problems for the combed frame detection with chroma enabled. Actually,
11463 using @option{chroma}=@var{0} is usually more reliable, except for the case
11464 where there is chroma only combing in the source.
11465
11466 Default value is @code{0}.
11467
11468 @item blockx
11469 @item blocky
11470 Respectively set the x-axis and y-axis size of the window used during combed
11471 frame detection. This has to do with the size of the area in which
11472 @option{combpel} pixels are required to be detected as combed for a frame to be
11473 declared combed. See the @option{combpel} parameter description for more info.
11474 Possible values are any number that is a power of 2 starting at 4 and going up
11475 to 512.
11476
11477 Default value is @code{16}.
11478
11479 @item combpel
11480 The number of combed pixels inside any of the @option{blocky} by
11481 @option{blockx} size blocks on the frame for the frame to be detected as
11482 combed. While @option{cthresh} controls how "visible" the combing must be, this
11483 setting controls "how much" combing there must be in any localized area (a
11484 window defined by the @option{blockx} and @option{blocky} settings) on the
11485 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11486 which point no frames will ever be detected as combed). This setting is known
11487 as @option{MI} in TFM/VFM vocabulary.
11488
11489 Default value is @code{80}.
11490 @end table
11491
11492 @anchor{p/c/n/u/b meaning}
11493 @subsection p/c/n/u/b meaning
11494
11495 @subsubsection p/c/n
11496
11497 We assume the following telecined stream:
11498
11499 @example
11500 Top fields:     1 2 2 3 4
11501 Bottom fields:  1 2 3 4 4
11502 @end example
11503
11504 The numbers correspond to the progressive frame the fields relate to. Here, the
11505 first two frames are progressive, the 3rd and 4th are combed, and so on.
11506
11507 When @code{fieldmatch} is configured to run a matching from bottom
11508 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11509
11510 @example
11511 Input stream:
11512                 T     1 2 2 3 4
11513                 B     1 2 3 4 4   <-- matching reference
11514
11515 Matches:              c c n n c
11516
11517 Output stream:
11518                 T     1 2 3 4 4
11519                 B     1 2 3 4 4
11520 @end example
11521
11522 As a result of the field matching, we can see that some frames get duplicated.
11523 To perform a complete inverse telecine, you need to rely on a decimation filter
11524 after this operation. See for instance the @ref{decimate} filter.
11525
11526 The same operation now matching from top fields (@option{field}=@var{top})
11527 looks like this:
11528
11529 @example
11530 Input stream:
11531                 T     1 2 2 3 4   <-- matching reference
11532                 B     1 2 3 4 4
11533
11534 Matches:              c c p p c
11535
11536 Output stream:
11537                 T     1 2 2 3 4
11538                 B     1 2 2 3 4
11539 @end example
11540
11541 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11542 basically, they refer to the frame and field of the opposite parity:
11543
11544 @itemize
11545 @item @var{p} matches the field of the opposite parity in the previous frame
11546 @item @var{c} matches the field of the opposite parity in the current frame
11547 @item @var{n} matches the field of the opposite parity in the next frame
11548 @end itemize
11549
11550 @subsubsection u/b
11551
11552 The @var{u} and @var{b} matching are a bit special in the sense that they match
11553 from the opposite parity flag. In the following examples, we assume that we are
11554 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11555 'x' is placed above and below each matched fields.
11556
11557 With bottom matching (@option{field}=@var{bottom}):
11558 @example
11559 Match:           c         p           n          b          u
11560
11561                  x       x               x        x          x
11562   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11563   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11564                  x         x           x        x              x
11565
11566 Output frames:
11567                  2          1          2          2          2
11568                  2          2          2          1          3
11569 @end example
11570
11571 With top matching (@option{field}=@var{top}):
11572 @example
11573 Match:           c         p           n          b          u
11574
11575                  x         x           x        x              x
11576   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11577   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11578                  x       x               x        x          x
11579
11580 Output frames:
11581                  2          2          2          1          2
11582                  2          1          3          2          2
11583 @end example
11584
11585 @subsection Examples
11586
11587 Simple IVTC of a top field first telecined stream:
11588 @example
11589 fieldmatch=order=tff:combmatch=none, decimate
11590 @end example
11591
11592 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11593 @example
11594 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11595 @end example
11596
11597 @section fieldorder
11598
11599 Transform the field order of the input video.
11600
11601 It accepts the following parameters:
11602
11603 @table @option
11604
11605 @item order
11606 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11607 for bottom field first.
11608 @end table
11609
11610 The default value is @samp{tff}.
11611
11612 The transformation is done by shifting the picture content up or down
11613 by one line, and filling the remaining line with appropriate picture content.
11614 This method is consistent with most broadcast field order converters.
11615
11616 If the input video is not flagged as being interlaced, or it is already
11617 flagged as being of the required output field order, then this filter does
11618 not alter the incoming video.
11619
11620 It is very useful when converting to or from PAL DV material,
11621 which is bottom field first.
11622
11623 For example:
11624 @example
11625 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11626 @end example
11627
11628 @section fifo, afifo
11629
11630 Buffer input images and send them when they are requested.
11631
11632 It is mainly useful when auto-inserted by the libavfilter
11633 framework.
11634
11635 It does not take parameters.
11636
11637 @section fillborders
11638
11639 Fill borders of the input video, without changing video stream dimensions.
11640 Sometimes video can have garbage at the four edges and you may not want to
11641 crop video input to keep size multiple of some number.
11642
11643 This filter accepts the following options:
11644
11645 @table @option
11646 @item left
11647 Number of pixels to fill from left border.
11648
11649 @item right
11650 Number of pixels to fill from right border.
11651
11652 @item top
11653 Number of pixels to fill from top border.
11654
11655 @item bottom
11656 Number of pixels to fill from bottom border.
11657
11658 @item mode
11659 Set fill mode.
11660
11661 It accepts the following values:
11662 @table @samp
11663 @item smear
11664 fill pixels using outermost pixels
11665
11666 @item mirror
11667 fill pixels using mirroring
11668
11669 @item fixed
11670 fill pixels with constant value
11671 @end table
11672
11673 Default is @var{smear}.
11674
11675 @item color
11676 Set color for pixels in fixed mode. Default is @var{black}.
11677 @end table
11678
11679 @subsection Commands
11680 This filter supports same @ref{commands} as options.
11681 The command accepts the same syntax of the corresponding option.
11682
11683 If the specified expression is not valid, it is kept at its current
11684 value.
11685
11686 @section find_rect
11687
11688 Find a rectangular object
11689
11690 It accepts the following options:
11691
11692 @table @option
11693 @item object
11694 Filepath of the object image, needs to be in gray8.
11695
11696 @item threshold
11697 Detection threshold, default is 0.5.
11698
11699 @item mipmaps
11700 Number of mipmaps, default is 3.
11701
11702 @item xmin, ymin, xmax, ymax
11703 Specifies the rectangle in which to search.
11704 @end table
11705
11706 @subsection Examples
11707
11708 @itemize
11709 @item
11710 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11711 @example
11712 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11713 @end example
11714 @end itemize
11715
11716 @section floodfill
11717
11718 Flood area with values of same pixel components with another values.
11719
11720 It accepts the following options:
11721 @table @option
11722 @item x
11723 Set pixel x coordinate.
11724
11725 @item y
11726 Set pixel y coordinate.
11727
11728 @item s0
11729 Set source #0 component value.
11730
11731 @item s1
11732 Set source #1 component value.
11733
11734 @item s2
11735 Set source #2 component value.
11736
11737 @item s3
11738 Set source #3 component value.
11739
11740 @item d0
11741 Set destination #0 component value.
11742
11743 @item d1
11744 Set destination #1 component value.
11745
11746 @item d2
11747 Set destination #2 component value.
11748
11749 @item d3
11750 Set destination #3 component value.
11751 @end table
11752
11753 @anchor{format}
11754 @section format
11755
11756 Convert the input video to one of the specified pixel formats.
11757 Libavfilter will try to pick one that is suitable as input to
11758 the next filter.
11759
11760 It accepts the following parameters:
11761 @table @option
11762
11763 @item pix_fmts
11764 A '|'-separated list of pixel format names, such as
11765 "pix_fmts=yuv420p|monow|rgb24".
11766
11767 @end table
11768
11769 @subsection Examples
11770
11771 @itemize
11772 @item
11773 Convert the input video to the @var{yuv420p} format
11774 @example
11775 format=pix_fmts=yuv420p
11776 @end example
11777
11778 Convert the input video to any of the formats in the list
11779 @example
11780 format=pix_fmts=yuv420p|yuv444p|yuv410p
11781 @end example
11782 @end itemize
11783
11784 @anchor{fps}
11785 @section fps
11786
11787 Convert the video to specified constant frame rate by duplicating or dropping
11788 frames as necessary.
11789
11790 It accepts the following parameters:
11791 @table @option
11792
11793 @item fps
11794 The desired output frame rate. The default is @code{25}.
11795
11796 @item start_time
11797 Assume the first PTS should be the given value, in seconds. This allows for
11798 padding/trimming at the start of stream. By default, no assumption is made
11799 about the first frame's expected PTS, so no padding or trimming is done.
11800 For example, this could be set to 0 to pad the beginning with duplicates of
11801 the first frame if a video stream starts after the audio stream or to trim any
11802 frames with a negative PTS.
11803
11804 @item round
11805 Timestamp (PTS) rounding method.
11806
11807 Possible values are:
11808 @table @option
11809 @item zero
11810 round towards 0
11811 @item inf
11812 round away from 0
11813 @item down
11814 round towards -infinity
11815 @item up
11816 round towards +infinity
11817 @item near
11818 round to nearest
11819 @end table
11820 The default is @code{near}.
11821
11822 @item eof_action
11823 Action performed when reading the last frame.
11824
11825 Possible values are:
11826 @table @option
11827 @item round
11828 Use same timestamp rounding method as used for other frames.
11829 @item pass
11830 Pass through last frame if input duration has not been reached yet.
11831 @end table
11832 The default is @code{round}.
11833
11834 @end table
11835
11836 Alternatively, the options can be specified as a flat string:
11837 @var{fps}[:@var{start_time}[:@var{round}]].
11838
11839 See also the @ref{setpts} filter.
11840
11841 @subsection Examples
11842
11843 @itemize
11844 @item
11845 A typical usage in order to set the fps to 25:
11846 @example
11847 fps=fps=25
11848 @end example
11849
11850 @item
11851 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11852 @example
11853 fps=fps=film:round=near
11854 @end example
11855 @end itemize
11856
11857 @section framepack
11858
11859 Pack two different video streams into a stereoscopic video, setting proper
11860 metadata on supported codecs. The two views should have the same size and
11861 framerate and processing will stop when the shorter video ends. Please note
11862 that you may conveniently adjust view properties with the @ref{scale} and
11863 @ref{fps} filters.
11864
11865 It accepts the following parameters:
11866 @table @option
11867
11868 @item format
11869 The desired packing format. Supported values are:
11870
11871 @table @option
11872
11873 @item sbs
11874 The views are next to each other (default).
11875
11876 @item tab
11877 The views are on top of each other.
11878
11879 @item lines
11880 The views are packed by line.
11881
11882 @item columns
11883 The views are packed by column.
11884
11885 @item frameseq
11886 The views are temporally interleaved.
11887
11888 @end table
11889
11890 @end table
11891
11892 Some examples:
11893
11894 @example
11895 # Convert left and right views into a frame-sequential video
11896 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11897
11898 # Convert views into a side-by-side video with the same output resolution as the input
11899 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
11900 @end example
11901
11902 @section framerate
11903
11904 Change the frame rate by interpolating new video output frames from the source
11905 frames.
11906
11907 This filter is not designed to function correctly with interlaced media. If
11908 you wish to change the frame rate of interlaced media then you are required
11909 to deinterlace before this filter and re-interlace after this filter.
11910
11911 A description of the accepted options follows.
11912
11913 @table @option
11914 @item fps
11915 Specify the output frames per second. This option can also be specified
11916 as a value alone. The default is @code{50}.
11917
11918 @item interp_start
11919 Specify the start of a range where the output frame will be created as a
11920 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11921 the default is @code{15}.
11922
11923 @item interp_end
11924 Specify the end of a range where the output frame will be created as a
11925 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11926 the default is @code{240}.
11927
11928 @item scene
11929 Specify the level at which a scene change is detected as a value between
11930 0 and 100 to indicate a new scene; a low value reflects a low
11931 probability for the current frame to introduce a new scene, while a higher
11932 value means the current frame is more likely to be one.
11933 The default is @code{8.2}.
11934
11935 @item flags
11936 Specify flags influencing the filter process.
11937
11938 Available value for @var{flags} is:
11939
11940 @table @option
11941 @item scene_change_detect, scd
11942 Enable scene change detection using the value of the option @var{scene}.
11943 This flag is enabled by default.
11944 @end table
11945 @end table
11946
11947 @section framestep
11948
11949 Select one frame every N-th frame.
11950
11951 This filter accepts the following option:
11952 @table @option
11953 @item step
11954 Select frame after every @code{step} frames.
11955 Allowed values are positive integers higher than 0. Default value is @code{1}.
11956 @end table
11957
11958 @section freezedetect
11959
11960 Detect frozen video.
11961
11962 This filter logs a message and sets frame metadata when it detects that the
11963 input video has no significant change in content during a specified duration.
11964 Video freeze detection calculates the mean average absolute difference of all
11965 the components of video frames and compares it to a noise floor.
11966
11967 The printed times and duration are expressed in seconds. The
11968 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11969 whose timestamp equals or exceeds the detection duration and it contains the
11970 timestamp of the first frame of the freeze. The
11971 @code{lavfi.freezedetect.freeze_duration} and
11972 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11973 after the freeze.
11974
11975 The filter accepts the following options:
11976
11977 @table @option
11978 @item noise, n
11979 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11980 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11981 0.001.
11982
11983 @item duration, d
11984 Set freeze duration until notification (default is 2 seconds).
11985 @end table
11986
11987 @section freezeframes
11988
11989 Freeze video frames.
11990
11991 This filter freezes video frames using frame from 2nd input.
11992
11993 The filter accepts the following options:
11994
11995 @table @option
11996 @item first
11997 Set number of first frame from which to start freeze.
11998
11999 @item last
12000 Set number of last frame from which to end freeze.
12001
12002 @item replace
12003 Set number of frame from 2nd input which will be used instead of replaced frames.
12004 @end table
12005
12006 @anchor{frei0r}
12007 @section frei0r
12008
12009 Apply a frei0r effect to the input video.
12010
12011 To enable the compilation of this filter, you need to install the frei0r
12012 header and configure FFmpeg with @code{--enable-frei0r}.
12013
12014 It accepts the following parameters:
12015
12016 @table @option
12017
12018 @item filter_name
12019 The name of the frei0r effect to load. If the environment variable
12020 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12021 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12022 Otherwise, the standard frei0r paths are searched, in this order:
12023 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12024 @file{/usr/lib/frei0r-1/}.
12025
12026 @item filter_params
12027 A '|'-separated list of parameters to pass to the frei0r effect.
12028
12029 @end table
12030
12031 A frei0r effect parameter can be a boolean (its value is either
12032 "y" or "n"), a double, a color (specified as
12033 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12034 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12035 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12036 a position (specified as @var{X}/@var{Y}, where
12037 @var{X} and @var{Y} are floating point numbers) and/or a string.
12038
12039 The number and types of parameters depend on the loaded effect. If an
12040 effect parameter is not specified, the default value is set.
12041
12042 @subsection Examples
12043
12044 @itemize
12045 @item
12046 Apply the distort0r effect, setting the first two double parameters:
12047 @example
12048 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12049 @end example
12050
12051 @item
12052 Apply the colordistance effect, taking a color as the first parameter:
12053 @example
12054 frei0r=colordistance:0.2/0.3/0.4
12055 frei0r=colordistance:violet
12056 frei0r=colordistance:0x112233
12057 @end example
12058
12059 @item
12060 Apply the perspective effect, specifying the top left and top right image
12061 positions:
12062 @example
12063 frei0r=perspective:0.2/0.2|0.8/0.2
12064 @end example
12065 @end itemize
12066
12067 For more information, see
12068 @url{http://frei0r.dyne.org}
12069
12070 @subsection Commands
12071
12072 This filter supports the @option{filter_params} option as @ref{commands}.
12073
12074 @section fspp
12075
12076 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12077
12078 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12079 processing filter, one of them is performed once per block, not per pixel.
12080 This allows for much higher speed.
12081
12082 The filter accepts the following options:
12083
12084 @table @option
12085 @item quality
12086 Set quality. This option defines the number of levels for averaging. It accepts
12087 an integer in the range 4-5. Default value is @code{4}.
12088
12089 @item qp
12090 Force a constant quantization parameter. It accepts an integer in range 0-63.
12091 If not set, the filter will use the QP from the video stream (if available).
12092
12093 @item strength
12094 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12095 more details but also more artifacts, while higher values make the image smoother
12096 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12097
12098 @item use_bframe_qp
12099 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12100 option may cause flicker since the B-Frames have often larger QP. Default is
12101 @code{0} (not enabled).
12102
12103 @end table
12104
12105 @section gblur
12106
12107 Apply Gaussian blur filter.
12108
12109 The filter accepts the following options:
12110
12111 @table @option
12112 @item sigma
12113 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12114
12115 @item steps
12116 Set number of steps for Gaussian approximation. Default is @code{1}.
12117
12118 @item planes
12119 Set which planes to filter. By default all planes are filtered.
12120
12121 @item sigmaV
12122 Set vertical sigma, if negative it will be same as @code{sigma}.
12123 Default is @code{-1}.
12124 @end table
12125
12126 @subsection Commands
12127 This filter supports same commands as options.
12128 The command accepts the same syntax of the corresponding option.
12129
12130 If the specified expression is not valid, it is kept at its current
12131 value.
12132
12133 @section geq
12134
12135 Apply generic equation to each pixel.
12136
12137 The filter accepts the following options:
12138
12139 @table @option
12140 @item lum_expr, lum
12141 Set the luminance expression.
12142 @item cb_expr, cb
12143 Set the chrominance blue expression.
12144 @item cr_expr, cr
12145 Set the chrominance red expression.
12146 @item alpha_expr, a
12147 Set the alpha expression.
12148 @item red_expr, r
12149 Set the red expression.
12150 @item green_expr, g
12151 Set the green expression.
12152 @item blue_expr, b
12153 Set the blue expression.
12154 @end table
12155
12156 The colorspace is selected according to the specified options. If one
12157 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12158 options is specified, the filter will automatically select a YCbCr
12159 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12160 @option{blue_expr} options is specified, it will select an RGB
12161 colorspace.
12162
12163 If one of the chrominance expression is not defined, it falls back on the other
12164 one. If no alpha expression is specified it will evaluate to opaque value.
12165 If none of chrominance expressions are specified, they will evaluate
12166 to the luminance expression.
12167
12168 The expressions can use the following variables and functions:
12169
12170 @table @option
12171 @item N
12172 The sequential number of the filtered frame, starting from @code{0}.
12173
12174 @item X
12175 @item Y
12176 The coordinates of the current sample.
12177
12178 @item W
12179 @item H
12180 The width and height of the image.
12181
12182 @item SW
12183 @item SH
12184 Width and height scale depending on the currently filtered plane. It is the
12185 ratio between the corresponding luma plane number of pixels and the current
12186 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12187 @code{0.5,0.5} for chroma planes.
12188
12189 @item T
12190 Time of the current frame, expressed in seconds.
12191
12192 @item p(x, y)
12193 Return the value of the pixel at location (@var{x},@var{y}) of the current
12194 plane.
12195
12196 @item lum(x, y)
12197 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12198 plane.
12199
12200 @item cb(x, y)
12201 Return the value of the pixel at location (@var{x},@var{y}) of the
12202 blue-difference chroma plane. Return 0 if there is no such plane.
12203
12204 @item cr(x, y)
12205 Return the value of the pixel at location (@var{x},@var{y}) of the
12206 red-difference chroma plane. Return 0 if there is no such plane.
12207
12208 @item r(x, y)
12209 @item g(x, y)
12210 @item b(x, y)
12211 Return the value of the pixel at location (@var{x},@var{y}) of the
12212 red/green/blue component. Return 0 if there is no such component.
12213
12214 @item alpha(x, y)
12215 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12216 plane. Return 0 if there is no such plane.
12217
12218 @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)
12219 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12220 sums of samples within a rectangle. See the functions without the sum postfix.
12221
12222 @item interpolation
12223 Set one of interpolation methods:
12224 @table @option
12225 @item nearest, n
12226 @item bilinear, b
12227 @end table
12228 Default is bilinear.
12229 @end table
12230
12231 For functions, if @var{x} and @var{y} are outside the area, the value will be
12232 automatically clipped to the closer edge.
12233
12234 Please note that this filter can use multiple threads in which case each slice
12235 will have its own expression state. If you want to use only a single expression
12236 state because your expressions depend on previous state then you should limit
12237 the number of filter threads to 1.
12238
12239 @subsection Examples
12240
12241 @itemize
12242 @item
12243 Flip the image horizontally:
12244 @example
12245 geq=p(W-X\,Y)
12246 @end example
12247
12248 @item
12249 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12250 wavelength of 100 pixels:
12251 @example
12252 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12253 @end example
12254
12255 @item
12256 Generate a fancy enigmatic moving light:
12257 @example
12258 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
12259 @end example
12260
12261 @item
12262 Generate a quick emboss effect:
12263 @example
12264 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12265 @end example
12266
12267 @item
12268 Modify RGB components depending on pixel position:
12269 @example
12270 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12271 @end example
12272
12273 @item
12274 Create a radial gradient that is the same size as the input (also see
12275 the @ref{vignette} filter):
12276 @example
12277 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12278 @end example
12279 @end itemize
12280
12281 @section gradfun
12282
12283 Fix the banding artifacts that are sometimes introduced into nearly flat
12284 regions by truncation to 8-bit color depth.
12285 Interpolate the gradients that should go where the bands are, and
12286 dither them.
12287
12288 It is designed for playback only.  Do not use it prior to
12289 lossy compression, because compression tends to lose the dither and
12290 bring back the bands.
12291
12292 It accepts the following parameters:
12293
12294 @table @option
12295
12296 @item strength
12297 The maximum amount by which the filter will change any one pixel. This is also
12298 the threshold for detecting nearly flat regions. Acceptable values range from
12299 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12300 valid range.
12301
12302 @item radius
12303 The neighborhood to fit the gradient to. A larger radius makes for smoother
12304 gradients, but also prevents the filter from modifying the pixels near detailed
12305 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12306 values will be clipped to the valid range.
12307
12308 @end table
12309
12310 Alternatively, the options can be specified as a flat string:
12311 @var{strength}[:@var{radius}]
12312
12313 @subsection Examples
12314
12315 @itemize
12316 @item
12317 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12318 @example
12319 gradfun=3.5:8
12320 @end example
12321
12322 @item
12323 Specify radius, omitting the strength (which will fall-back to the default
12324 value):
12325 @example
12326 gradfun=radius=8
12327 @end example
12328
12329 @end itemize
12330
12331 @anchor{graphmonitor}
12332 @section graphmonitor
12333 Show various filtergraph stats.
12334
12335 With this filter one can debug complete filtergraph.
12336 Especially issues with links filling with queued frames.
12337
12338 The filter accepts the following options:
12339
12340 @table @option
12341 @item size, s
12342 Set video output size. Default is @var{hd720}.
12343
12344 @item opacity, o
12345 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12346
12347 @item mode, m
12348 Set output mode, can be @var{fulll} or @var{compact}.
12349 In @var{compact} mode only filters with some queued frames have displayed stats.
12350
12351 @item flags, f
12352 Set flags which enable which stats are shown in video.
12353
12354 Available values for flags are:
12355 @table @samp
12356 @item queue
12357 Display number of queued frames in each link.
12358
12359 @item frame_count_in
12360 Display number of frames taken from filter.
12361
12362 @item frame_count_out
12363 Display number of frames given out from filter.
12364
12365 @item pts
12366 Display current filtered frame pts.
12367
12368 @item time
12369 Display current filtered frame time.
12370
12371 @item timebase
12372 Display time base for filter link.
12373
12374 @item format
12375 Display used format for filter link.
12376
12377 @item size
12378 Display video size or number of audio channels in case of audio used by filter link.
12379
12380 @item rate
12381 Display video frame rate or sample rate in case of audio used by filter link.
12382
12383 @item eof
12384 Display link output status.
12385 @end table
12386
12387 @item rate, r
12388 Set upper limit for video rate of output stream, Default value is @var{25}.
12389 This guarantee that output video frame rate will not be higher than this value.
12390 @end table
12391
12392 @section greyedge
12393 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12394 and corrects the scene colors accordingly.
12395
12396 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12397
12398 The filter accepts the following options:
12399
12400 @table @option
12401 @item difford
12402 The order of differentiation to be applied on the scene. Must be chosen in the range
12403 [0,2] and default value is 1.
12404
12405 @item minknorm
12406 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12407 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12408 max value instead of calculating Minkowski distance.
12409
12410 @item sigma
12411 The standard deviation of Gaussian blur to be applied on the scene. Must be
12412 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12413 can't be equal to 0 if @var{difford} is greater than 0.
12414 @end table
12415
12416 @subsection Examples
12417 @itemize
12418
12419 @item
12420 Grey Edge:
12421 @example
12422 greyedge=difford=1:minknorm=5:sigma=2
12423 @end example
12424
12425 @item
12426 Max Edge:
12427 @example
12428 greyedge=difford=1:minknorm=0:sigma=2
12429 @end example
12430
12431 @end itemize
12432
12433 @anchor{haldclut}
12434 @section haldclut
12435
12436 Apply a Hald CLUT to a video stream.
12437
12438 First input is the video stream to process, and second one is the Hald CLUT.
12439 The Hald CLUT input can be a simple picture or a complete video stream.
12440
12441 The filter accepts the following options:
12442
12443 @table @option
12444 @item shortest
12445 Force termination when the shortest input terminates. Default is @code{0}.
12446 @item repeatlast
12447 Continue applying the last CLUT after the end of the stream. A value of
12448 @code{0} disable the filter after the last frame of the CLUT is reached.
12449 Default is @code{1}.
12450 @end table
12451
12452 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12453 filters share the same internals).
12454
12455 This filter also supports the @ref{framesync} options.
12456
12457 More information about the Hald CLUT can be found on Eskil Steenberg's website
12458 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12459
12460 @subsection Workflow examples
12461
12462 @subsubsection Hald CLUT video stream
12463
12464 Generate an identity Hald CLUT stream altered with various effects:
12465 @example
12466 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
12467 @end example
12468
12469 Note: make sure you use a lossless codec.
12470
12471 Then use it with @code{haldclut} to apply it on some random stream:
12472 @example
12473 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12474 @end example
12475
12476 The Hald CLUT will be applied to the 10 first seconds (duration of
12477 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12478 to the remaining frames of the @code{mandelbrot} stream.
12479
12480 @subsubsection Hald CLUT with preview
12481
12482 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12483 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12484 biggest possible square starting at the top left of the picture. The remaining
12485 padding pixels (bottom or right) will be ignored. This area can be used to add
12486 a preview of the Hald CLUT.
12487
12488 Typically, the following generated Hald CLUT will be supported by the
12489 @code{haldclut} filter:
12490
12491 @example
12492 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12493    pad=iw+320 [padded_clut];
12494    smptebars=s=320x256, split [a][b];
12495    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12496    [main][b] overlay=W-320" -frames:v 1 clut.png
12497 @end example
12498
12499 It contains the original and a preview of the effect of the CLUT: SMPTE color
12500 bars are displayed on the right-top, and below the same color bars processed by
12501 the color changes.
12502
12503 Then, the effect of this Hald CLUT can be visualized with:
12504 @example
12505 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12506 @end example
12507
12508 @section hflip
12509
12510 Flip the input video horizontally.
12511
12512 For example, to horizontally flip the input video with @command{ffmpeg}:
12513 @example
12514 ffmpeg -i in.avi -vf "hflip" out.avi
12515 @end example
12516
12517 @section histeq
12518 This filter applies a global color histogram equalization on a
12519 per-frame basis.
12520
12521 It can be used to correct video that has a compressed range of pixel
12522 intensities.  The filter redistributes the pixel intensities to
12523 equalize their distribution across the intensity range. It may be
12524 viewed as an "automatically adjusting contrast filter". This filter is
12525 useful only for correcting degraded or poorly captured source
12526 video.
12527
12528 The filter accepts the following options:
12529
12530 @table @option
12531 @item strength
12532 Determine the amount of equalization to be applied.  As the strength
12533 is reduced, the distribution of pixel intensities more-and-more
12534 approaches that of the input frame. The value must be a float number
12535 in the range [0,1] and defaults to 0.200.
12536
12537 @item intensity
12538 Set the maximum intensity that can generated and scale the output
12539 values appropriately.  The strength should be set as desired and then
12540 the intensity can be limited if needed to avoid washing-out. The value
12541 must be a float number in the range [0,1] and defaults to 0.210.
12542
12543 @item antibanding
12544 Set the antibanding level. If enabled the filter will randomly vary
12545 the luminance of output pixels by a small amount to avoid banding of
12546 the histogram. Possible values are @code{none}, @code{weak} or
12547 @code{strong}. It defaults to @code{none}.
12548 @end table
12549
12550 @anchor{histogram}
12551 @section histogram
12552
12553 Compute and draw a color distribution histogram for the input video.
12554
12555 The computed histogram is a representation of the color component
12556 distribution in an image.
12557
12558 Standard histogram displays the color components distribution in an image.
12559 Displays color graph for each color component. Shows distribution of
12560 the Y, U, V, A or R, G, B components, depending on input format, in the
12561 current frame. Below each graph a color component scale meter is shown.
12562
12563 The filter accepts the following options:
12564
12565 @table @option
12566 @item level_height
12567 Set height of level. Default value is @code{200}.
12568 Allowed range is [50, 2048].
12569
12570 @item scale_height
12571 Set height of color scale. Default value is @code{12}.
12572 Allowed range is [0, 40].
12573
12574 @item display_mode
12575 Set display mode.
12576 It accepts the following values:
12577 @table @samp
12578 @item stack
12579 Per color component graphs are placed below each other.
12580
12581 @item parade
12582 Per color component graphs are placed side by side.
12583
12584 @item overlay
12585 Presents information identical to that in the @code{parade}, except
12586 that the graphs representing color components are superimposed directly
12587 over one another.
12588 @end table
12589 Default is @code{stack}.
12590
12591 @item levels_mode
12592 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12593 Default is @code{linear}.
12594
12595 @item components
12596 Set what color components to display.
12597 Default is @code{7}.
12598
12599 @item fgopacity
12600 Set foreground opacity. Default is @code{0.7}.
12601
12602 @item bgopacity
12603 Set background opacity. Default is @code{0.5}.
12604 @end table
12605
12606 @subsection Examples
12607
12608 @itemize
12609
12610 @item
12611 Calculate and draw histogram:
12612 @example
12613 ffplay -i input -vf histogram
12614 @end example
12615
12616 @end itemize
12617
12618 @anchor{hqdn3d}
12619 @section hqdn3d
12620
12621 This is a high precision/quality 3d denoise filter. It aims to reduce
12622 image noise, producing smooth images and making still images really
12623 still. It should enhance compressibility.
12624
12625 It accepts the following optional parameters:
12626
12627 @table @option
12628 @item luma_spatial
12629 A non-negative floating point number which specifies spatial luma strength.
12630 It defaults to 4.0.
12631
12632 @item chroma_spatial
12633 A non-negative floating point number which specifies spatial chroma strength.
12634 It defaults to 3.0*@var{luma_spatial}/4.0.
12635
12636 @item luma_tmp
12637 A floating point number which specifies luma temporal strength. It defaults to
12638 6.0*@var{luma_spatial}/4.0.
12639
12640 @item chroma_tmp
12641 A floating point number which specifies chroma temporal strength. It defaults to
12642 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12643 @end table
12644
12645 @subsection Commands
12646 This filter supports same @ref{commands} as options.
12647 The command accepts the same syntax of the corresponding option.
12648
12649 If the specified expression is not valid, it is kept at its current
12650 value.
12651
12652 @anchor{hwdownload}
12653 @section hwdownload
12654
12655 Download hardware frames to system memory.
12656
12657 The input must be in hardware frames, and the output a non-hardware format.
12658 Not all formats will be supported on the output - it may be necessary to insert
12659 an additional @option{format} filter immediately following in the graph to get
12660 the output in a supported format.
12661
12662 @section hwmap
12663
12664 Map hardware frames to system memory or to another device.
12665
12666 This filter has several different modes of operation; which one is used depends
12667 on the input and output formats:
12668 @itemize
12669 @item
12670 Hardware frame input, normal frame output
12671
12672 Map the input frames to system memory and pass them to the output.  If the
12673 original hardware frame is later required (for example, after overlaying
12674 something else on part of it), the @option{hwmap} filter can be used again
12675 in the next mode to retrieve it.
12676 @item
12677 Normal frame input, hardware frame output
12678
12679 If the input is actually a software-mapped hardware frame, then unmap it -
12680 that is, return the original hardware frame.
12681
12682 Otherwise, a device must be provided.  Create new hardware surfaces on that
12683 device for the output, then map them back to the software format at the input
12684 and give those frames to the preceding filter.  This will then act like the
12685 @option{hwupload} filter, but may be able to avoid an additional copy when
12686 the input is already in a compatible format.
12687 @item
12688 Hardware frame input and output
12689
12690 A device must be supplied for the output, either directly or with the
12691 @option{derive_device} option.  The input and output devices must be of
12692 different types and compatible - the exact meaning of this is
12693 system-dependent, but typically it means that they must refer to the same
12694 underlying hardware context (for example, refer to the same graphics card).
12695
12696 If the input frames were originally created on the output device, then unmap
12697 to retrieve the original frames.
12698
12699 Otherwise, map the frames to the output device - create new hardware frames
12700 on the output corresponding to the frames on the input.
12701 @end itemize
12702
12703 The following additional parameters are accepted:
12704
12705 @table @option
12706 @item mode
12707 Set the frame mapping mode.  Some combination of:
12708 @table @var
12709 @item read
12710 The mapped frame should be readable.
12711 @item write
12712 The mapped frame should be writeable.
12713 @item overwrite
12714 The mapping will always overwrite the entire frame.
12715
12716 This may improve performance in some cases, as the original contents of the
12717 frame need not be loaded.
12718 @item direct
12719 The mapping must not involve any copying.
12720
12721 Indirect mappings to copies of frames are created in some cases where either
12722 direct mapping is not possible or it would have unexpected properties.
12723 Setting this flag ensures that the mapping is direct and will fail if that is
12724 not possible.
12725 @end table
12726 Defaults to @var{read+write} if not specified.
12727
12728 @item derive_device @var{type}
12729 Rather than using the device supplied at initialisation, instead derive a new
12730 device of type @var{type} from the device the input frames exist on.
12731
12732 @item reverse
12733 In a hardware to hardware mapping, map in reverse - create frames in the sink
12734 and map them back to the source.  This may be necessary in some cases where
12735 a mapping in one direction is required but only the opposite direction is
12736 supported by the devices being used.
12737
12738 This option is dangerous - it may break the preceding filter in undefined
12739 ways if there are any additional constraints on that filter's output.
12740 Do not use it without fully understanding the implications of its use.
12741 @end table
12742
12743 @anchor{hwupload}
12744 @section hwupload
12745
12746 Upload system memory frames to hardware surfaces.
12747
12748 The device to upload to must be supplied when the filter is initialised.  If
12749 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12750 option or with the @option{derive_device} option.  The input and output devices
12751 must be of different types and compatible - the exact meaning of this is
12752 system-dependent, but typically it means that they must refer to the same
12753 underlying hardware context (for example, refer to the same graphics card).
12754
12755 The following additional parameters are accepted:
12756
12757 @table @option
12758 @item derive_device @var{type}
12759 Rather than using the device supplied at initialisation, instead derive a new
12760 device of type @var{type} from the device the input frames exist on.
12761 @end table
12762
12763 @anchor{hwupload_cuda}
12764 @section hwupload_cuda
12765
12766 Upload system memory frames to a CUDA device.
12767
12768 It accepts the following optional parameters:
12769
12770 @table @option
12771 @item device
12772 The number of the CUDA device to use
12773 @end table
12774
12775 @section hqx
12776
12777 Apply a high-quality magnification filter designed for pixel art. This filter
12778 was originally created by Maxim Stepin.
12779
12780 It accepts the following option:
12781
12782 @table @option
12783 @item n
12784 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12785 @code{hq3x} and @code{4} for @code{hq4x}.
12786 Default is @code{3}.
12787 @end table
12788
12789 @section hstack
12790 Stack input videos horizontally.
12791
12792 All streams must be of same pixel format and of same height.
12793
12794 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12795 to create same output.
12796
12797 The filter accepts the following option:
12798
12799 @table @option
12800 @item inputs
12801 Set number of input streams. Default is 2.
12802
12803 @item shortest
12804 If set to 1, force the output to terminate when the shortest input
12805 terminates. Default value is 0.
12806 @end table
12807
12808 @section hue
12809
12810 Modify the hue and/or the saturation of the input.
12811
12812 It accepts the following parameters:
12813
12814 @table @option
12815 @item h
12816 Specify the hue angle as a number of degrees. It accepts an expression,
12817 and defaults to "0".
12818
12819 @item s
12820 Specify the saturation in the [-10,10] range. It accepts an expression and
12821 defaults to "1".
12822
12823 @item H
12824 Specify the hue angle as a number of radians. It accepts an
12825 expression, and defaults to "0".
12826
12827 @item b
12828 Specify the brightness in the [-10,10] range. It accepts an expression and
12829 defaults to "0".
12830 @end table
12831
12832 @option{h} and @option{H} are mutually exclusive, and can't be
12833 specified at the same time.
12834
12835 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12836 expressions containing the following constants:
12837
12838 @table @option
12839 @item n
12840 frame count of the input frame starting from 0
12841
12842 @item pts
12843 presentation timestamp of the input frame expressed in time base units
12844
12845 @item r
12846 frame rate of the input video, NAN if the input frame rate is unknown
12847
12848 @item t
12849 timestamp expressed in seconds, NAN if the input timestamp is unknown
12850
12851 @item tb
12852 time base of the input video
12853 @end table
12854
12855 @subsection Examples
12856
12857 @itemize
12858 @item
12859 Set the hue to 90 degrees and the saturation to 1.0:
12860 @example
12861 hue=h=90:s=1
12862 @end example
12863
12864 @item
12865 Same command but expressing the hue in radians:
12866 @example
12867 hue=H=PI/2:s=1
12868 @end example
12869
12870 @item
12871 Rotate hue and make the saturation swing between 0
12872 and 2 over a period of 1 second:
12873 @example
12874 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12875 @end example
12876
12877 @item
12878 Apply a 3 seconds saturation fade-in effect starting at 0:
12879 @example
12880 hue="s=min(t/3\,1)"
12881 @end example
12882
12883 The general fade-in expression can be written as:
12884 @example
12885 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12886 @end example
12887
12888 @item
12889 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12890 @example
12891 hue="s=max(0\, min(1\, (8-t)/3))"
12892 @end example
12893
12894 The general fade-out expression can be written as:
12895 @example
12896 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12897 @end example
12898
12899 @end itemize
12900
12901 @subsection Commands
12902
12903 This filter supports the following commands:
12904 @table @option
12905 @item b
12906 @item s
12907 @item h
12908 @item H
12909 Modify the hue and/or the saturation and/or brightness of the input video.
12910 The command accepts the same syntax of the corresponding option.
12911
12912 If the specified expression is not valid, it is kept at its current
12913 value.
12914 @end table
12915
12916 @section hysteresis
12917
12918 Grow first stream into second stream by connecting components.
12919 This makes it possible to build more robust edge masks.
12920
12921 This filter accepts the following options:
12922
12923 @table @option
12924 @item planes
12925 Set which planes will be processed as bitmap, unprocessed planes will be
12926 copied from first stream.
12927 By default value 0xf, all planes will be processed.
12928
12929 @item threshold
12930 Set threshold which is used in filtering. If pixel component value is higher than
12931 this value filter algorithm for connecting components is activated.
12932 By default value is 0.
12933 @end table
12934
12935 The @code{hysteresis} filter also supports the @ref{framesync} options.
12936
12937 @section idet
12938
12939 Detect video interlacing type.
12940
12941 This filter tries to detect if the input frames are interlaced, progressive,
12942 top or bottom field first. It will also try to detect fields that are
12943 repeated between adjacent frames (a sign of telecine).
12944
12945 Single frame detection considers only immediately adjacent frames when classifying each frame.
12946 Multiple frame detection incorporates the classification history of previous frames.
12947
12948 The filter will log these metadata values:
12949
12950 @table @option
12951 @item single.current_frame
12952 Detected type of current frame using single-frame detection. One of:
12953 ``tff'' (top field first), ``bff'' (bottom field first),
12954 ``progressive'', or ``undetermined''
12955
12956 @item single.tff
12957 Cumulative number of frames detected as top field first using single-frame detection.
12958
12959 @item multiple.tff
12960 Cumulative number of frames detected as top field first using multiple-frame detection.
12961
12962 @item single.bff
12963 Cumulative number of frames detected as bottom field first using single-frame detection.
12964
12965 @item multiple.current_frame
12966 Detected type of current frame using multiple-frame detection. One of:
12967 ``tff'' (top field first), ``bff'' (bottom field first),
12968 ``progressive'', or ``undetermined''
12969
12970 @item multiple.bff
12971 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12972
12973 @item single.progressive
12974 Cumulative number of frames detected as progressive using single-frame detection.
12975
12976 @item multiple.progressive
12977 Cumulative number of frames detected as progressive using multiple-frame detection.
12978
12979 @item single.undetermined
12980 Cumulative number of frames that could not be classified using single-frame detection.
12981
12982 @item multiple.undetermined
12983 Cumulative number of frames that could not be classified using multiple-frame detection.
12984
12985 @item repeated.current_frame
12986 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12987
12988 @item repeated.neither
12989 Cumulative number of frames with no repeated field.
12990
12991 @item repeated.top
12992 Cumulative number of frames with the top field repeated from the previous frame's top field.
12993
12994 @item repeated.bottom
12995 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12996 @end table
12997
12998 The filter accepts the following options:
12999
13000 @table @option
13001 @item intl_thres
13002 Set interlacing threshold.
13003 @item prog_thres
13004 Set progressive threshold.
13005 @item rep_thres
13006 Threshold for repeated field detection.
13007 @item half_life
13008 Number of frames after which a given frame's contribution to the
13009 statistics is halved (i.e., it contributes only 0.5 to its
13010 classification). The default of 0 means that all frames seen are given
13011 full weight of 1.0 forever.
13012 @item analyze_interlaced_flag
13013 When this is not 0 then idet will use the specified number of frames to determine
13014 if the interlaced flag is accurate, it will not count undetermined frames.
13015 If the flag is found to be accurate it will be used without any further
13016 computations, if it is found to be inaccurate it will be cleared without any
13017 further computations. This allows inserting the idet filter as a low computational
13018 method to clean up the interlaced flag
13019 @end table
13020
13021 @section il
13022
13023 Deinterleave or interleave fields.
13024
13025 This filter allows one to process interlaced images fields without
13026 deinterlacing them. Deinterleaving splits the input frame into 2
13027 fields (so called half pictures). Odd lines are moved to the top
13028 half of the output image, even lines to the bottom half.
13029 You can process (filter) them independently and then re-interleave them.
13030
13031 The filter accepts the following options:
13032
13033 @table @option
13034 @item luma_mode, l
13035 @item chroma_mode, c
13036 @item alpha_mode, a
13037 Available values for @var{luma_mode}, @var{chroma_mode} and
13038 @var{alpha_mode} are:
13039
13040 @table @samp
13041 @item none
13042 Do nothing.
13043
13044 @item deinterleave, d
13045 Deinterleave fields, placing one above the other.
13046
13047 @item interleave, i
13048 Interleave fields. Reverse the effect of deinterleaving.
13049 @end table
13050 Default value is @code{none}.
13051
13052 @item luma_swap, ls
13053 @item chroma_swap, cs
13054 @item alpha_swap, as
13055 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13056 @end table
13057
13058 @subsection Commands
13059
13060 This filter supports the all above options as @ref{commands}.
13061
13062 @section inflate
13063
13064 Apply inflate effect to the video.
13065
13066 This filter replaces the pixel by the local(3x3) average by taking into account
13067 only values higher than the pixel.
13068
13069 It accepts the following options:
13070
13071 @table @option
13072 @item threshold0
13073 @item threshold1
13074 @item threshold2
13075 @item threshold3
13076 Limit the maximum change for each plane, default is 65535.
13077 If 0, plane will remain unchanged.
13078 @end table
13079
13080 @subsection Commands
13081
13082 This filter supports the all above options as @ref{commands}.
13083
13084 @section interlace
13085
13086 Simple interlacing filter from progressive contents. This interleaves upper (or
13087 lower) lines from odd frames with lower (or upper) lines from even frames,
13088 halving the frame rate and preserving image height.
13089
13090 @example
13091    Original        Original             New Frame
13092    Frame 'j'      Frame 'j+1'             (tff)
13093   ==========      ===========       ==================
13094     Line 0  -------------------->    Frame 'j' Line 0
13095     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13096     Line 2 --------------------->    Frame 'j' Line 2
13097     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13098      ...             ...                   ...
13099 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13100 @end example
13101
13102 It accepts the following optional parameters:
13103
13104 @table @option
13105 @item scan
13106 This determines whether the interlaced frame is taken from the even
13107 (tff - default) or odd (bff) lines of the progressive frame.
13108
13109 @item lowpass
13110 Vertical lowpass filter to avoid twitter interlacing and
13111 reduce moire patterns.
13112
13113 @table @samp
13114 @item 0, off
13115 Disable vertical lowpass filter
13116
13117 @item 1, linear
13118 Enable linear filter (default)
13119
13120 @item 2, complex
13121 Enable complex filter. This will slightly less reduce twitter and moire
13122 but better retain detail and subjective sharpness impression.
13123
13124 @end table
13125 @end table
13126
13127 @section kerndeint
13128
13129 Deinterlace input video by applying Donald Graft's adaptive kernel
13130 deinterling. Work on interlaced parts of a video to produce
13131 progressive frames.
13132
13133 The description of the accepted parameters follows.
13134
13135 @table @option
13136 @item thresh
13137 Set the threshold which affects the filter's tolerance when
13138 determining if a pixel line must be processed. It must be an integer
13139 in the range [0,255] and defaults to 10. A value of 0 will result in
13140 applying the process on every pixels.
13141
13142 @item map
13143 Paint pixels exceeding the threshold value to white if set to 1.
13144 Default is 0.
13145
13146 @item order
13147 Set the fields order. Swap fields if set to 1, leave fields alone if
13148 0. Default is 0.
13149
13150 @item sharp
13151 Enable additional sharpening if set to 1. Default is 0.
13152
13153 @item twoway
13154 Enable twoway sharpening if set to 1. Default is 0.
13155 @end table
13156
13157 @subsection Examples
13158
13159 @itemize
13160 @item
13161 Apply default values:
13162 @example
13163 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13164 @end example
13165
13166 @item
13167 Enable additional sharpening:
13168 @example
13169 kerndeint=sharp=1
13170 @end example
13171
13172 @item
13173 Paint processed pixels in white:
13174 @example
13175 kerndeint=map=1
13176 @end example
13177 @end itemize
13178
13179 @section lagfun
13180
13181 Slowly update darker pixels.
13182
13183 This filter makes short flashes of light appear longer.
13184 This filter accepts the following options:
13185
13186 @table @option
13187 @item decay
13188 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13189
13190 @item planes
13191 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13192 @end table
13193
13194 @section lenscorrection
13195
13196 Correct radial lens distortion
13197
13198 This filter can be used to correct for radial distortion as can result from the use
13199 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13200 one can use tools available for example as part of opencv or simply trial-and-error.
13201 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13202 and extract the k1 and k2 coefficients from the resulting matrix.
13203
13204 Note that effectively the same filter is available in the open-source tools Krita and
13205 Digikam from the KDE project.
13206
13207 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13208 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13209 brightness distribution, so you may want to use both filters together in certain
13210 cases, though you will have to take care of ordering, i.e. whether vignetting should
13211 be applied before or after lens correction.
13212
13213 @subsection Options
13214
13215 The filter accepts the following options:
13216
13217 @table @option
13218 @item cx
13219 Relative x-coordinate of the focal point of the image, and thereby the center of the
13220 distortion. This value has a range [0,1] and is expressed as fractions of the image
13221 width. Default is 0.5.
13222 @item cy
13223 Relative y-coordinate of the focal point of the image, and thereby the center of the
13224 distortion. This value has a range [0,1] and is expressed as fractions of the image
13225 height. Default is 0.5.
13226 @item k1
13227 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13228 no correction. Default is 0.
13229 @item k2
13230 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13231 0 means no correction. Default is 0.
13232 @end table
13233
13234 The formula that generates the correction is:
13235
13236 @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)
13237
13238 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13239 distances from the focal point in the source and target images, respectively.
13240
13241 @section lensfun
13242
13243 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13244
13245 The @code{lensfun} filter requires the camera make, camera model, and lens model
13246 to apply the lens correction. The filter will load the lensfun database and
13247 query it to find the corresponding camera and lens entries in the database. As
13248 long as these entries can be found with the given options, the filter can
13249 perform corrections on frames. Note that incomplete strings will result in the
13250 filter choosing the best match with the given options, and the filter will
13251 output the chosen camera and lens models (logged with level "info"). You must
13252 provide the make, camera model, and lens model as they are required.
13253
13254 The filter accepts the following options:
13255
13256 @table @option
13257 @item make
13258 The make of the camera (for example, "Canon"). This option is required.
13259
13260 @item model
13261 The model of the camera (for example, "Canon EOS 100D"). This option is
13262 required.
13263
13264 @item lens_model
13265 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13266 option is required.
13267
13268 @item mode
13269 The type of correction to apply. The following values are valid options:
13270
13271 @table @samp
13272 @item vignetting
13273 Enables fixing lens vignetting.
13274
13275 @item geometry
13276 Enables fixing lens geometry. This is the default.
13277
13278 @item subpixel
13279 Enables fixing chromatic aberrations.
13280
13281 @item vig_geo
13282 Enables fixing lens vignetting and lens geometry.
13283
13284 @item vig_subpixel
13285 Enables fixing lens vignetting and chromatic aberrations.
13286
13287 @item distortion
13288 Enables fixing both lens geometry and chromatic aberrations.
13289
13290 @item all
13291 Enables all possible corrections.
13292
13293 @end table
13294 @item focal_length
13295 The focal length of the image/video (zoom; expected constant for video). For
13296 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13297 range should be chosen when using that lens. Default 18.
13298
13299 @item aperture
13300 The aperture of the image/video (expected constant for video). Note that
13301 aperture is only used for vignetting correction. Default 3.5.
13302
13303 @item focus_distance
13304 The focus distance of the image/video (expected constant for video). Note that
13305 focus distance is only used for vignetting and only slightly affects the
13306 vignetting correction process. If unknown, leave it at the default value (which
13307 is 1000).
13308
13309 @item scale
13310 The scale factor which is applied after transformation. After correction the
13311 video is no longer necessarily rectangular. This parameter controls how much of
13312 the resulting image is visible. The value 0 means that a value will be chosen
13313 automatically such that there is little or no unmapped area in the output
13314 image. 1.0 means that no additional scaling is done. Lower values may result
13315 in more of the corrected image being visible, while higher values may avoid
13316 unmapped areas in the output.
13317
13318 @item target_geometry
13319 The target geometry of the output image/video. The following values are valid
13320 options:
13321
13322 @table @samp
13323 @item rectilinear (default)
13324 @item fisheye
13325 @item panoramic
13326 @item equirectangular
13327 @item fisheye_orthographic
13328 @item fisheye_stereographic
13329 @item fisheye_equisolid
13330 @item fisheye_thoby
13331 @end table
13332 @item reverse
13333 Apply the reverse of image correction (instead of correcting distortion, apply
13334 it).
13335
13336 @item interpolation
13337 The type of interpolation used when correcting distortion. The following values
13338 are valid options:
13339
13340 @table @samp
13341 @item nearest
13342 @item linear (default)
13343 @item lanczos
13344 @end table
13345 @end table
13346
13347 @subsection Examples
13348
13349 @itemize
13350 @item
13351 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13352 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13353 aperture of "8.0".
13354
13355 @example
13356 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
13357 @end example
13358
13359 @item
13360 Apply the same as before, but only for the first 5 seconds of video.
13361
13362 @example
13363 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
13364 @end example
13365
13366 @end itemize
13367
13368 @section libvmaf
13369
13370 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13371 score between two input videos.
13372
13373 The obtained VMAF score is printed through the logging system.
13374
13375 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13376 After installing the library it can be enabled using:
13377 @code{./configure --enable-libvmaf}.
13378 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13379
13380 The filter has following options:
13381
13382 @table @option
13383 @item model_path
13384 Set the model path which is to be used for SVM.
13385 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13386
13387 @item log_path
13388 Set the file path to be used to store logs.
13389
13390 @item log_fmt
13391 Set the format of the log file (csv, json or xml).
13392
13393 @item enable_transform
13394 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13395 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13396 Default value: @code{false}
13397
13398 @item phone_model
13399 Invokes the phone model which will generate VMAF scores higher than in the
13400 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13401 Default value: @code{false}
13402
13403 @item psnr
13404 Enables computing psnr along with vmaf.
13405 Default value: @code{false}
13406
13407 @item ssim
13408 Enables computing ssim along with vmaf.
13409 Default value: @code{false}
13410
13411 @item ms_ssim
13412 Enables computing ms_ssim along with vmaf.
13413 Default value: @code{false}
13414
13415 @item pool
13416 Set the pool method to be used for computing vmaf.
13417 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13418
13419 @item n_threads
13420 Set number of threads to be used when computing vmaf.
13421 Default value: @code{0}, which makes use of all available logical processors.
13422
13423 @item n_subsample
13424 Set interval for frame subsampling used when computing vmaf.
13425 Default value: @code{1}
13426
13427 @item enable_conf_interval
13428 Enables confidence interval.
13429 Default value: @code{false}
13430 @end table
13431
13432 This filter also supports the @ref{framesync} options.
13433
13434 @subsection Examples
13435 @itemize
13436 @item
13437 On the below examples the input file @file{main.mpg} being processed is
13438 compared with the reference file @file{ref.mpg}.
13439
13440 @example
13441 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13442 @end example
13443
13444 @item
13445 Example with options:
13446 @example
13447 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13448 @end example
13449
13450 @item
13451 Example with options and different containers:
13452 @example
13453 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 -
13454 @end example
13455 @end itemize
13456
13457 @section limiter
13458
13459 Limits the pixel components values to the specified range [min, max].
13460
13461 The filter accepts the following options:
13462
13463 @table @option
13464 @item min
13465 Lower bound. Defaults to the lowest allowed value for the input.
13466
13467 @item max
13468 Upper bound. Defaults to the highest allowed value for the input.
13469
13470 @item planes
13471 Specify which planes will be processed. Defaults to all available.
13472 @end table
13473
13474 @section loop
13475
13476 Loop video frames.
13477
13478 The filter accepts the following options:
13479
13480 @table @option
13481 @item loop
13482 Set the number of loops. Setting this value to -1 will result in infinite loops.
13483 Default is 0.
13484
13485 @item size
13486 Set maximal size in number of frames. Default is 0.
13487
13488 @item start
13489 Set first frame of loop. Default is 0.
13490 @end table
13491
13492 @subsection Examples
13493
13494 @itemize
13495 @item
13496 Loop single first frame infinitely:
13497 @example
13498 loop=loop=-1:size=1:start=0
13499 @end example
13500
13501 @item
13502 Loop single first frame 10 times:
13503 @example
13504 loop=loop=10:size=1:start=0
13505 @end example
13506
13507 @item
13508 Loop 10 first frames 5 times:
13509 @example
13510 loop=loop=5:size=10:start=0
13511 @end example
13512 @end itemize
13513
13514 @section lut1d
13515
13516 Apply a 1D LUT to an input video.
13517
13518 The filter accepts the following options:
13519
13520 @table @option
13521 @item file
13522 Set the 1D LUT file name.
13523
13524 Currently supported formats:
13525 @table @samp
13526 @item cube
13527 Iridas
13528 @item csp
13529 cineSpace
13530 @end table
13531
13532 @item interp
13533 Select interpolation mode.
13534
13535 Available values are:
13536
13537 @table @samp
13538 @item nearest
13539 Use values from the nearest defined point.
13540 @item linear
13541 Interpolate values using the linear interpolation.
13542 @item cosine
13543 Interpolate values using the cosine interpolation.
13544 @item cubic
13545 Interpolate values using the cubic interpolation.
13546 @item spline
13547 Interpolate values using the spline interpolation.
13548 @end table
13549 @end table
13550
13551 @anchor{lut3d}
13552 @section lut3d
13553
13554 Apply a 3D LUT to an input video.
13555
13556 The filter accepts the following options:
13557
13558 @table @option
13559 @item file
13560 Set the 3D LUT file name.
13561
13562 Currently supported formats:
13563 @table @samp
13564 @item 3dl
13565 AfterEffects
13566 @item cube
13567 Iridas
13568 @item dat
13569 DaVinci
13570 @item m3d
13571 Pandora
13572 @item csp
13573 cineSpace
13574 @end table
13575 @item interp
13576 Select interpolation mode.
13577
13578 Available values are:
13579
13580 @table @samp
13581 @item nearest
13582 Use values from the nearest defined point.
13583 @item trilinear
13584 Interpolate values using the 8 points defining a cube.
13585 @item tetrahedral
13586 Interpolate values using a tetrahedron.
13587 @end table
13588 @end table
13589
13590 @section lumakey
13591
13592 Turn certain luma values into transparency.
13593
13594 The filter accepts the following options:
13595
13596 @table @option
13597 @item threshold
13598 Set the luma which will be used as base for transparency.
13599 Default value is @code{0}.
13600
13601 @item tolerance
13602 Set the range of luma values to be keyed out.
13603 Default value is @code{0.01}.
13604
13605 @item softness
13606 Set the range of softness. Default value is @code{0}.
13607 Use this to control gradual transition from zero to full transparency.
13608 @end table
13609
13610 @subsection Commands
13611 This filter supports same @ref{commands} as options.
13612 The command accepts the same syntax of the corresponding option.
13613
13614 If the specified expression is not valid, it is kept at its current
13615 value.
13616
13617 @section lut, lutrgb, lutyuv
13618
13619 Compute a look-up table for binding each pixel component input value
13620 to an output value, and apply it to the input video.
13621
13622 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13623 to an RGB input video.
13624
13625 These filters accept the following parameters:
13626 @table @option
13627 @item c0
13628 set first pixel component expression
13629 @item c1
13630 set second pixel component expression
13631 @item c2
13632 set third pixel component expression
13633 @item c3
13634 set fourth pixel component expression, corresponds to the alpha component
13635
13636 @item r
13637 set red component expression
13638 @item g
13639 set green component expression
13640 @item b
13641 set blue component expression
13642 @item a
13643 alpha component expression
13644
13645 @item y
13646 set Y/luminance component expression
13647 @item u
13648 set U/Cb component expression
13649 @item v
13650 set V/Cr component expression
13651 @end table
13652
13653 Each of them specifies the expression to use for computing the lookup table for
13654 the corresponding pixel component values.
13655
13656 The exact component associated to each of the @var{c*} options depends on the
13657 format in input.
13658
13659 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13660 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13661
13662 The expressions can contain the following constants and functions:
13663
13664 @table @option
13665 @item w
13666 @item h
13667 The input width and height.
13668
13669 @item val
13670 The input value for the pixel component.
13671
13672 @item clipval
13673 The input value, clipped to the @var{minval}-@var{maxval} range.
13674
13675 @item maxval
13676 The maximum value for the pixel component.
13677
13678 @item minval
13679 The minimum value for the pixel component.
13680
13681 @item negval
13682 The negated value for the pixel component value, clipped to the
13683 @var{minval}-@var{maxval} range; it corresponds to the expression
13684 "maxval-clipval+minval".
13685
13686 @item clip(val)
13687 The computed value in @var{val}, clipped to the
13688 @var{minval}-@var{maxval} range.
13689
13690 @item gammaval(gamma)
13691 The computed gamma correction value of the pixel component value,
13692 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13693 expression
13694 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13695
13696 @end table
13697
13698 All expressions default to "val".
13699
13700 @subsection Examples
13701
13702 @itemize
13703 @item
13704 Negate input video:
13705 @example
13706 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13707 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13708 @end example
13709
13710 The above is the same as:
13711 @example
13712 lutrgb="r=negval:g=negval:b=negval"
13713 lutyuv="y=negval:u=negval:v=negval"
13714 @end example
13715
13716 @item
13717 Negate luminance:
13718 @example
13719 lutyuv=y=negval
13720 @end example
13721
13722 @item
13723 Remove chroma components, turning the video into a graytone image:
13724 @example
13725 lutyuv="u=128:v=128"
13726 @end example
13727
13728 @item
13729 Apply a luma burning effect:
13730 @example
13731 lutyuv="y=2*val"
13732 @end example
13733
13734 @item
13735 Remove green and blue components:
13736 @example
13737 lutrgb="g=0:b=0"
13738 @end example
13739
13740 @item
13741 Set a constant alpha channel value on input:
13742 @example
13743 format=rgba,lutrgb=a="maxval-minval/2"
13744 @end example
13745
13746 @item
13747 Correct luminance gamma by a factor of 0.5:
13748 @example
13749 lutyuv=y=gammaval(0.5)
13750 @end example
13751
13752 @item
13753 Discard least significant bits of luma:
13754 @example
13755 lutyuv=y='bitand(val, 128+64+32)'
13756 @end example
13757
13758 @item
13759 Technicolor like effect:
13760 @example
13761 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13762 @end example
13763 @end itemize
13764
13765 @section lut2, tlut2
13766
13767 The @code{lut2} filter takes two input streams and outputs one
13768 stream.
13769
13770 The @code{tlut2} (time lut2) filter takes two consecutive frames
13771 from one single stream.
13772
13773 This filter accepts the following parameters:
13774 @table @option
13775 @item c0
13776 set first pixel component expression
13777 @item c1
13778 set second pixel component expression
13779 @item c2
13780 set third pixel component expression
13781 @item c3
13782 set fourth pixel component expression, corresponds to the alpha component
13783
13784 @item d
13785 set output bit depth, only available for @code{lut2} filter. By default is 0,
13786 which means bit depth is automatically picked from first input format.
13787 @end table
13788
13789 The @code{lut2} filter also supports the @ref{framesync} options.
13790
13791 Each of them specifies the expression to use for computing the lookup table for
13792 the corresponding pixel component values.
13793
13794 The exact component associated to each of the @var{c*} options depends on the
13795 format in inputs.
13796
13797 The expressions can contain the following constants:
13798
13799 @table @option
13800 @item w
13801 @item h
13802 The input width and height.
13803
13804 @item x
13805 The first input value for the pixel component.
13806
13807 @item y
13808 The second input value for the pixel component.
13809
13810 @item bdx
13811 The first input video bit depth.
13812
13813 @item bdy
13814 The second input video bit depth.
13815 @end table
13816
13817 All expressions default to "x".
13818
13819 @subsection Examples
13820
13821 @itemize
13822 @item
13823 Highlight differences between two RGB video streams:
13824 @example
13825 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)'
13826 @end example
13827
13828 @item
13829 Highlight differences between two YUV video streams:
13830 @example
13831 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)'
13832 @end example
13833
13834 @item
13835 Show max difference between two video streams:
13836 @example
13837 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)))'
13838 @end example
13839 @end itemize
13840
13841 @section maskedclamp
13842
13843 Clamp the first input stream with the second input and third input stream.
13844
13845 Returns the value of first stream to be between second input
13846 stream - @code{undershoot} and third input stream + @code{overshoot}.
13847
13848 This filter accepts the following options:
13849 @table @option
13850 @item undershoot
13851 Default value is @code{0}.
13852
13853 @item overshoot
13854 Default value is @code{0}.
13855
13856 @item planes
13857 Set which planes will be processed as bitmap, unprocessed planes will be
13858 copied from first stream.
13859 By default value 0xf, all planes will be processed.
13860 @end table
13861
13862 @section maskedmax
13863
13864 Merge the second and third input stream into output stream using absolute differences
13865 between second input stream and first input stream and absolute difference between
13866 third input stream and first input stream. The picked value will be from second input
13867 stream if second absolute difference is greater than first one or from third input stream
13868 otherwise.
13869
13870 This filter accepts the following options:
13871 @table @option
13872 @item planes
13873 Set which planes will be processed as bitmap, unprocessed planes will be
13874 copied from first stream.
13875 By default value 0xf, all planes will be processed.
13876 @end table
13877
13878 @section maskedmerge
13879
13880 Merge the first input stream with the second input stream using per pixel
13881 weights in the third input stream.
13882
13883 A value of 0 in the third stream pixel component means that pixel component
13884 from first stream is returned unchanged, while maximum value (eg. 255 for
13885 8-bit videos) means that pixel component from second stream is returned
13886 unchanged. Intermediate values define the amount of merging between both
13887 input stream's pixel components.
13888
13889 This filter accepts the following options:
13890 @table @option
13891 @item planes
13892 Set which planes will be processed as bitmap, unprocessed planes will be
13893 copied from first stream.
13894 By default value 0xf, all planes will be processed.
13895 @end table
13896
13897 @section maskedmin
13898
13899 Merge the second and third input stream into output stream using absolute differences
13900 between second input stream and first input stream and absolute difference between
13901 third input stream and first input stream. The picked value will be from second input
13902 stream if second absolute difference is less than first one or from third input stream
13903 otherwise.
13904
13905 This filter accepts the following options:
13906 @table @option
13907 @item planes
13908 Set which planes will be processed as bitmap, unprocessed planes will be
13909 copied from first stream.
13910 By default value 0xf, all planes will be processed.
13911 @end table
13912
13913 @section maskedthreshold
13914 Pick pixels comparing absolute difference of two video streams with fixed
13915 threshold.
13916
13917 If absolute difference between pixel component of first and second video
13918 stream is equal or lower than user supplied threshold than pixel component
13919 from first video stream is picked, otherwise pixel component from second
13920 video stream is picked.
13921
13922 This filter accepts the following options:
13923 @table @option
13924 @item threshold
13925 Set threshold used when picking pixels from absolute difference from two input
13926 video streams.
13927
13928 @item planes
13929 Set which planes will be processed as bitmap, unprocessed planes will be
13930 copied from second stream.
13931 By default value 0xf, all planes will be processed.
13932 @end table
13933
13934 @section maskfun
13935 Create mask from input video.
13936
13937 For example it is useful to create motion masks after @code{tblend} filter.
13938
13939 This filter accepts the following options:
13940
13941 @table @option
13942 @item low
13943 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13944
13945 @item high
13946 Set high threshold. Any pixel component higher than this value will be set to max value
13947 allowed for current pixel format.
13948
13949 @item planes
13950 Set planes to filter, by default all available planes are filtered.
13951
13952 @item fill
13953 Fill all frame pixels with this value.
13954
13955 @item sum
13956 Set max average pixel value for frame. If sum of all pixel components is higher that this
13957 average, output frame will be completely filled with value set by @var{fill} option.
13958 Typically useful for scene changes when used in combination with @code{tblend} filter.
13959 @end table
13960
13961 @section mcdeint
13962
13963 Apply motion-compensation deinterlacing.
13964
13965 It needs one field per frame as input and must thus be used together
13966 with yadif=1/3 or equivalent.
13967
13968 This filter accepts the following options:
13969 @table @option
13970 @item mode
13971 Set the deinterlacing mode.
13972
13973 It accepts one of the following values:
13974 @table @samp
13975 @item fast
13976 @item medium
13977 @item slow
13978 use iterative motion estimation
13979 @item extra_slow
13980 like @samp{slow}, but use multiple reference frames.
13981 @end table
13982 Default value is @samp{fast}.
13983
13984 @item parity
13985 Set the picture field parity assumed for the input video. It must be
13986 one of the following values:
13987
13988 @table @samp
13989 @item 0, tff
13990 assume top field first
13991 @item 1, bff
13992 assume bottom field first
13993 @end table
13994
13995 Default value is @samp{bff}.
13996
13997 @item qp
13998 Set per-block quantization parameter (QP) used by the internal
13999 encoder.
14000
14001 Higher values should result in a smoother motion vector field but less
14002 optimal individual vectors. Default value is 1.
14003 @end table
14004
14005 @section median
14006
14007 Pick median pixel from certain rectangle defined by radius.
14008
14009 This filter accepts the following options:
14010
14011 @table @option
14012 @item radius
14013 Set horizontal radius size. Default value is @code{1}.
14014 Allowed range is integer from 1 to 127.
14015
14016 @item planes
14017 Set which planes to process. Default is @code{15}, which is all available planes.
14018
14019 @item radiusV
14020 Set vertical radius size. Default value is @code{0}.
14021 Allowed range is integer from 0 to 127.
14022 If it is 0, value will be picked from horizontal @code{radius} option.
14023
14024 @item percentile
14025 Set median percentile. Default value is @code{0.5}.
14026 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14027 minimum values, and @code{1} maximum values.
14028 @end table
14029
14030 @subsection Commands
14031 This filter supports same @ref{commands} as options.
14032 The command accepts the same syntax of the corresponding option.
14033
14034 If the specified expression is not valid, it is kept at its current
14035 value.
14036
14037 @section mergeplanes
14038
14039 Merge color channel components from several video streams.
14040
14041 The filter accepts up to 4 input streams, and merge selected input
14042 planes to the output video.
14043
14044 This filter accepts the following options:
14045 @table @option
14046 @item mapping
14047 Set input to output plane mapping. Default is @code{0}.
14048
14049 The mappings is specified as a bitmap. It should be specified as a
14050 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14051 mapping for the first plane of the output stream. 'A' sets the number of
14052 the input stream to use (from 0 to 3), and 'a' the plane number of the
14053 corresponding input to use (from 0 to 3). The rest of the mappings is
14054 similar, 'Bb' describes the mapping for the output stream second
14055 plane, 'Cc' describes the mapping for the output stream third plane and
14056 'Dd' describes the mapping for the output stream fourth plane.
14057
14058 @item format
14059 Set output pixel format. Default is @code{yuva444p}.
14060 @end table
14061
14062 @subsection Examples
14063
14064 @itemize
14065 @item
14066 Merge three gray video streams of same width and height into single video stream:
14067 @example
14068 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14069 @end example
14070
14071 @item
14072 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14073 @example
14074 [a0][a1]mergeplanes=0x00010210:yuva444p
14075 @end example
14076
14077 @item
14078 Swap Y and A plane in yuva444p stream:
14079 @example
14080 format=yuva444p,mergeplanes=0x03010200:yuva444p
14081 @end example
14082
14083 @item
14084 Swap U and V plane in yuv420p stream:
14085 @example
14086 format=yuv420p,mergeplanes=0x000201:yuv420p
14087 @end example
14088
14089 @item
14090 Cast a rgb24 clip to yuv444p:
14091 @example
14092 format=rgb24,mergeplanes=0x000102:yuv444p
14093 @end example
14094 @end itemize
14095
14096 @section mestimate
14097
14098 Estimate and export motion vectors using block matching algorithms.
14099 Motion vectors are stored in frame side data to be used by other filters.
14100
14101 This filter accepts the following options:
14102 @table @option
14103 @item method
14104 Specify the motion estimation method. Accepts one of the following values:
14105
14106 @table @samp
14107 @item esa
14108 Exhaustive search algorithm.
14109 @item tss
14110 Three step search algorithm.
14111 @item tdls
14112 Two dimensional logarithmic search algorithm.
14113 @item ntss
14114 New three step search algorithm.
14115 @item fss
14116 Four step search algorithm.
14117 @item ds
14118 Diamond search algorithm.
14119 @item hexbs
14120 Hexagon-based search algorithm.
14121 @item epzs
14122 Enhanced predictive zonal search algorithm.
14123 @item umh
14124 Uneven multi-hexagon search algorithm.
14125 @end table
14126 Default value is @samp{esa}.
14127
14128 @item mb_size
14129 Macroblock size. Default @code{16}.
14130
14131 @item search_param
14132 Search parameter. Default @code{7}.
14133 @end table
14134
14135 @section midequalizer
14136
14137 Apply Midway Image Equalization effect using two video streams.
14138
14139 Midway Image Equalization adjusts a pair of images to have the same
14140 histogram, while maintaining their dynamics as much as possible. It's
14141 useful for e.g. matching exposures from a pair of stereo cameras.
14142
14143 This filter has two inputs and one output, which must be of same pixel format, but
14144 may be of different sizes. The output of filter is first input adjusted with
14145 midway histogram of both inputs.
14146
14147 This filter accepts the following option:
14148
14149 @table @option
14150 @item planes
14151 Set which planes to process. Default is @code{15}, which is all available planes.
14152 @end table
14153
14154 @section minterpolate
14155
14156 Convert the video to specified frame rate using motion interpolation.
14157
14158 This filter accepts the following options:
14159 @table @option
14160 @item fps
14161 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}.
14162
14163 @item mi_mode
14164 Motion interpolation mode. Following values are accepted:
14165 @table @samp
14166 @item dup
14167 Duplicate previous or next frame for interpolating new ones.
14168 @item blend
14169 Blend source frames. Interpolated frame is mean of previous and next frames.
14170 @item mci
14171 Motion compensated interpolation. Following options are effective when this mode is selected:
14172
14173 @table @samp
14174 @item mc_mode
14175 Motion compensation mode. Following values are accepted:
14176 @table @samp
14177 @item obmc
14178 Overlapped block motion compensation.
14179 @item aobmc
14180 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14181 @end table
14182 Default mode is @samp{obmc}.
14183
14184 @item me_mode
14185 Motion estimation mode. Following values are accepted:
14186 @table @samp
14187 @item bidir
14188 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14189 @item bilat
14190 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14191 @end table
14192 Default mode is @samp{bilat}.
14193
14194 @item me
14195 The algorithm to be used for motion estimation. Following values are accepted:
14196 @table @samp
14197 @item esa
14198 Exhaustive search algorithm.
14199 @item tss
14200 Three step search algorithm.
14201 @item tdls
14202 Two dimensional logarithmic search algorithm.
14203 @item ntss
14204 New three step search algorithm.
14205 @item fss
14206 Four step search algorithm.
14207 @item ds
14208 Diamond search algorithm.
14209 @item hexbs
14210 Hexagon-based search algorithm.
14211 @item epzs
14212 Enhanced predictive zonal search algorithm.
14213 @item umh
14214 Uneven multi-hexagon search algorithm.
14215 @end table
14216 Default algorithm is @samp{epzs}.
14217
14218 @item mb_size
14219 Macroblock size. Default @code{16}.
14220
14221 @item search_param
14222 Motion estimation search parameter. Default @code{32}.
14223
14224 @item vsbmc
14225 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).
14226 @end table
14227 @end table
14228
14229 @item scd
14230 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:
14231 @table @samp
14232 @item none
14233 Disable scene change detection.
14234 @item fdiff
14235 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14236 @end table
14237 Default method is @samp{fdiff}.
14238
14239 @item scd_threshold
14240 Scene change detection threshold. Default is @code{10.}.
14241 @end table
14242
14243 @section mix
14244
14245 Mix several video input streams into one video stream.
14246
14247 A description of the accepted options follows.
14248
14249 @table @option
14250 @item nb_inputs
14251 The number of inputs. If unspecified, it defaults to 2.
14252
14253 @item weights
14254 Specify weight of each input video stream as sequence.
14255 Each weight is separated by space. If number of weights
14256 is smaller than number of @var{frames} last specified
14257 weight will be used for all remaining unset weights.
14258
14259 @item scale
14260 Specify scale, if it is set it will be multiplied with sum
14261 of each weight multiplied with pixel values to give final destination
14262 pixel value. By default @var{scale} is auto scaled to sum of weights.
14263
14264 @item duration
14265 Specify how end of stream is determined.
14266 @table @samp
14267 @item longest
14268 The duration of the longest input. (default)
14269
14270 @item shortest
14271 The duration of the shortest input.
14272
14273 @item first
14274 The duration of the first input.
14275 @end table
14276 @end table
14277
14278 @section mpdecimate
14279
14280 Drop frames that do not differ greatly from the previous frame in
14281 order to reduce frame rate.
14282
14283 The main use of this filter is for very-low-bitrate encoding
14284 (e.g. streaming over dialup modem), but it could in theory be used for
14285 fixing movies that were inverse-telecined incorrectly.
14286
14287 A description of the accepted options follows.
14288
14289 @table @option
14290 @item max
14291 Set the maximum number of consecutive frames which can be dropped (if
14292 positive), or the minimum interval between dropped frames (if
14293 negative). If the value is 0, the frame is dropped disregarding the
14294 number of previous sequentially dropped frames.
14295
14296 Default value is 0.
14297
14298 @item hi
14299 @item lo
14300 @item frac
14301 Set the dropping threshold values.
14302
14303 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14304 represent actual pixel value differences, so a threshold of 64
14305 corresponds to 1 unit of difference for each pixel, or the same spread
14306 out differently over the block.
14307
14308 A frame is a candidate for dropping if no 8x8 blocks differ by more
14309 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14310 meaning the whole image) differ by more than a threshold of @option{lo}.
14311
14312 Default value for @option{hi} is 64*12, default value for @option{lo} is
14313 64*5, and default value for @option{frac} is 0.33.
14314 @end table
14315
14316
14317 @section negate
14318
14319 Negate (invert) the input video.
14320
14321 It accepts the following option:
14322
14323 @table @option
14324
14325 @item negate_alpha
14326 With value 1, it negates the alpha component, if present. Default value is 0.
14327 @end table
14328
14329 @anchor{nlmeans}
14330 @section nlmeans
14331
14332 Denoise frames using Non-Local Means algorithm.
14333
14334 Each pixel is adjusted by looking for other pixels with similar contexts. This
14335 context similarity is defined by comparing their surrounding patches of size
14336 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14337 around the pixel.
14338
14339 Note that the research area defines centers for patches, which means some
14340 patches will be made of pixels outside that research area.
14341
14342 The filter accepts the following options.
14343
14344 @table @option
14345 @item s
14346 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14347
14348 @item p
14349 Set patch size. Default is 7. Must be odd number in range [0, 99].
14350
14351 @item pc
14352 Same as @option{p} but for chroma planes.
14353
14354 The default value is @var{0} and means automatic.
14355
14356 @item r
14357 Set research size. Default is 15. Must be odd number in range [0, 99].
14358
14359 @item rc
14360 Same as @option{r} but for chroma planes.
14361
14362 The default value is @var{0} and means automatic.
14363 @end table
14364
14365 @section nnedi
14366
14367 Deinterlace video using neural network edge directed interpolation.
14368
14369 This filter accepts the following options:
14370
14371 @table @option
14372 @item weights
14373 Mandatory option, without binary file filter can not work.
14374 Currently file can be found here:
14375 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14376
14377 @item deint
14378 Set which frames to deinterlace, by default it is @code{all}.
14379 Can be @code{all} or @code{interlaced}.
14380
14381 @item field
14382 Set mode of operation.
14383
14384 Can be one of the following:
14385
14386 @table @samp
14387 @item af
14388 Use frame flags, both fields.
14389 @item a
14390 Use frame flags, single field.
14391 @item t
14392 Use top field only.
14393 @item b
14394 Use bottom field only.
14395 @item tf
14396 Use both fields, top first.
14397 @item bf
14398 Use both fields, bottom first.
14399 @end table
14400
14401 @item planes
14402 Set which planes to process, by default filter process all frames.
14403
14404 @item nsize
14405 Set size of local neighborhood around each pixel, used by the predictor neural
14406 network.
14407
14408 Can be one of the following:
14409
14410 @table @samp
14411 @item s8x6
14412 @item s16x6
14413 @item s32x6
14414 @item s48x6
14415 @item s8x4
14416 @item s16x4
14417 @item s32x4
14418 @end table
14419
14420 @item nns
14421 Set the number of neurons in predictor neural network.
14422 Can be one of the following:
14423
14424 @table @samp
14425 @item n16
14426 @item n32
14427 @item n64
14428 @item n128
14429 @item n256
14430 @end table
14431
14432 @item qual
14433 Controls the number of different neural network predictions that are blended
14434 together to compute the final output value. Can be @code{fast}, default or
14435 @code{slow}.
14436
14437 @item etype
14438 Set which set of weights to use in the predictor.
14439 Can be one of the following:
14440
14441 @table @samp
14442 @item a
14443 weights trained to minimize absolute error
14444 @item s
14445 weights trained to minimize squared error
14446 @end table
14447
14448 @item pscrn
14449 Controls whether or not the prescreener neural network is used to decide
14450 which pixels should be processed by the predictor neural network and which
14451 can be handled by simple cubic interpolation.
14452 The prescreener is trained to know whether cubic interpolation will be
14453 sufficient for a pixel or whether it should be predicted by the predictor nn.
14454 The computational complexity of the prescreener nn is much less than that of
14455 the predictor nn. Since most pixels can be handled by cubic interpolation,
14456 using the prescreener generally results in much faster processing.
14457 The prescreener is pretty accurate, so the difference between using it and not
14458 using it is almost always unnoticeable.
14459
14460 Can be one of the following:
14461
14462 @table @samp
14463 @item none
14464 @item original
14465 @item new
14466 @end table
14467
14468 Default is @code{new}.
14469
14470 @item fapprox
14471 Set various debugging flags.
14472 @end table
14473
14474 @section noformat
14475
14476 Force libavfilter not to use any of the specified pixel formats for the
14477 input to the next filter.
14478
14479 It accepts the following parameters:
14480 @table @option
14481
14482 @item pix_fmts
14483 A '|'-separated list of pixel format names, such as
14484 pix_fmts=yuv420p|monow|rgb24".
14485
14486 @end table
14487
14488 @subsection Examples
14489
14490 @itemize
14491 @item
14492 Force libavfilter to use a format different from @var{yuv420p} for the
14493 input to the vflip filter:
14494 @example
14495 noformat=pix_fmts=yuv420p,vflip
14496 @end example
14497
14498 @item
14499 Convert the input video to any of the formats not contained in the list:
14500 @example
14501 noformat=yuv420p|yuv444p|yuv410p
14502 @end example
14503 @end itemize
14504
14505 @section noise
14506
14507 Add noise on video input frame.
14508
14509 The filter accepts the following options:
14510
14511 @table @option
14512 @item all_seed
14513 @item c0_seed
14514 @item c1_seed
14515 @item c2_seed
14516 @item c3_seed
14517 Set noise seed for specific pixel component or all pixel components in case
14518 of @var{all_seed}. Default value is @code{123457}.
14519
14520 @item all_strength, alls
14521 @item c0_strength, c0s
14522 @item c1_strength, c1s
14523 @item c2_strength, c2s
14524 @item c3_strength, c3s
14525 Set noise strength for specific pixel component or all pixel components in case
14526 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14527
14528 @item all_flags, allf
14529 @item c0_flags, c0f
14530 @item c1_flags, c1f
14531 @item c2_flags, c2f
14532 @item c3_flags, c3f
14533 Set pixel component flags or set flags for all components if @var{all_flags}.
14534 Available values for component flags are:
14535 @table @samp
14536 @item a
14537 averaged temporal noise (smoother)
14538 @item p
14539 mix random noise with a (semi)regular pattern
14540 @item t
14541 temporal noise (noise pattern changes between frames)
14542 @item u
14543 uniform noise (gaussian otherwise)
14544 @end table
14545 @end table
14546
14547 @subsection Examples
14548
14549 Add temporal and uniform noise to input video:
14550 @example
14551 noise=alls=20:allf=t+u
14552 @end example
14553
14554 @section normalize
14555
14556 Normalize RGB video (aka histogram stretching, contrast stretching).
14557 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14558
14559 For each channel of each frame, the filter computes the input range and maps
14560 it linearly to the user-specified output range. The output range defaults
14561 to the full dynamic range from pure black to pure white.
14562
14563 Temporal smoothing can be used on the input range to reduce flickering (rapid
14564 changes in brightness) caused when small dark or bright objects enter or leave
14565 the scene. This is similar to the auto-exposure (automatic gain control) on a
14566 video camera, and, like a video camera, it may cause a period of over- or
14567 under-exposure of the video.
14568
14569 The R,G,B channels can be normalized independently, which may cause some
14570 color shifting, or linked together as a single channel, which prevents
14571 color shifting. Linked normalization preserves hue. Independent normalization
14572 does not, so it can be used to remove some color casts. Independent and linked
14573 normalization can be combined in any ratio.
14574
14575 The normalize filter accepts the following options:
14576
14577 @table @option
14578 @item blackpt
14579 @item whitept
14580 Colors which define the output range. The minimum input value is mapped to
14581 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14582 The defaults are black and white respectively. Specifying white for
14583 @var{blackpt} and black for @var{whitept} will give color-inverted,
14584 normalized video. Shades of grey can be used to reduce the dynamic range
14585 (contrast). Specifying saturated colors here can create some interesting
14586 effects.
14587
14588 @item smoothing
14589 The number of previous frames to use for temporal smoothing. The input range
14590 of each channel is smoothed using a rolling average over the current frame
14591 and the @var{smoothing} previous frames. The default is 0 (no temporal
14592 smoothing).
14593
14594 @item independence
14595 Controls the ratio of independent (color shifting) channel normalization to
14596 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14597 independent. Defaults to 1.0 (fully independent).
14598
14599 @item strength
14600 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14601 expensive no-op. Defaults to 1.0 (full strength).
14602
14603 @end table
14604
14605 @subsection Commands
14606 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14607 The command accepts the same syntax of the corresponding option.
14608
14609 If the specified expression is not valid, it is kept at its current
14610 value.
14611
14612 @subsection Examples
14613
14614 Stretch video contrast to use the full dynamic range, with no temporal
14615 smoothing; may flicker depending on the source content:
14616 @example
14617 normalize=blackpt=black:whitept=white:smoothing=0
14618 @end example
14619
14620 As above, but with 50 frames of temporal smoothing; flicker should be
14621 reduced, depending on the source content:
14622 @example
14623 normalize=blackpt=black:whitept=white:smoothing=50
14624 @end example
14625
14626 As above, but with hue-preserving linked channel normalization:
14627 @example
14628 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14629 @end example
14630
14631 As above, but with half strength:
14632 @example
14633 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14634 @end example
14635
14636 Map the darkest input color to red, the brightest input color to cyan:
14637 @example
14638 normalize=blackpt=red:whitept=cyan
14639 @end example
14640
14641 @section null
14642
14643 Pass the video source unchanged to the output.
14644
14645 @section ocr
14646 Optical Character Recognition
14647
14648 This filter uses Tesseract for optical character recognition. To enable
14649 compilation of this filter, you need to configure FFmpeg with
14650 @code{--enable-libtesseract}.
14651
14652 It accepts the following options:
14653
14654 @table @option
14655 @item datapath
14656 Set datapath to tesseract data. Default is to use whatever was
14657 set at installation.
14658
14659 @item language
14660 Set language, default is "eng".
14661
14662 @item whitelist
14663 Set character whitelist.
14664
14665 @item blacklist
14666 Set character blacklist.
14667 @end table
14668
14669 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14670 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14671
14672 @section ocv
14673
14674 Apply a video transform using libopencv.
14675
14676 To enable this filter, install the libopencv library and headers and
14677 configure FFmpeg with @code{--enable-libopencv}.
14678
14679 It accepts the following parameters:
14680
14681 @table @option
14682
14683 @item filter_name
14684 The name of the libopencv filter to apply.
14685
14686 @item filter_params
14687 The parameters to pass to the libopencv filter. If not specified, the default
14688 values are assumed.
14689
14690 @end table
14691
14692 Refer to the official libopencv documentation for more precise
14693 information:
14694 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14695
14696 Several libopencv filters are supported; see the following subsections.
14697
14698 @anchor{dilate}
14699 @subsection dilate
14700
14701 Dilate an image by using a specific structuring element.
14702 It corresponds to the libopencv function @code{cvDilate}.
14703
14704 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14705
14706 @var{struct_el} represents a structuring element, and has the syntax:
14707 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14708
14709 @var{cols} and @var{rows} represent the number of columns and rows of
14710 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14711 point, and @var{shape} the shape for the structuring element. @var{shape}
14712 must be "rect", "cross", "ellipse", or "custom".
14713
14714 If the value for @var{shape} is "custom", it must be followed by a
14715 string of the form "=@var{filename}". The file with name
14716 @var{filename} is assumed to represent a binary image, with each
14717 printable character corresponding to a bright pixel. When a custom
14718 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14719 or columns and rows of the read file are assumed instead.
14720
14721 The default value for @var{struct_el} is "3x3+0x0/rect".
14722
14723 @var{nb_iterations} specifies the number of times the transform is
14724 applied to the image, and defaults to 1.
14725
14726 Some examples:
14727 @example
14728 # Use the default values
14729 ocv=dilate
14730
14731 # Dilate using a structuring element with a 5x5 cross, iterating two times
14732 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14733
14734 # Read the shape from the file diamond.shape, iterating two times.
14735 # The file diamond.shape may contain a pattern of characters like this
14736 #   *
14737 #  ***
14738 # *****
14739 #  ***
14740 #   *
14741 # The specified columns and rows are ignored
14742 # but the anchor point coordinates are not
14743 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14744 @end example
14745
14746 @subsection erode
14747
14748 Erode an image by using a specific structuring element.
14749 It corresponds to the libopencv function @code{cvErode}.
14750
14751 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14752 with the same syntax and semantics as the @ref{dilate} filter.
14753
14754 @subsection smooth
14755
14756 Smooth the input video.
14757
14758 The filter takes the following parameters:
14759 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14760
14761 @var{type} is the type of smooth filter to apply, and must be one of
14762 the following values: "blur", "blur_no_scale", "median", "gaussian",
14763 or "bilateral". The default value is "gaussian".
14764
14765 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14766 depends on the smooth type. @var{param1} and
14767 @var{param2} accept integer positive values or 0. @var{param3} and
14768 @var{param4} accept floating point values.
14769
14770 The default value for @var{param1} is 3. The default value for the
14771 other parameters is 0.
14772
14773 These parameters correspond to the parameters assigned to the
14774 libopencv function @code{cvSmooth}.
14775
14776 @section oscilloscope
14777
14778 2D Video Oscilloscope.
14779
14780 Useful to measure spatial impulse, step responses, chroma delays, etc.
14781
14782 It accepts the following parameters:
14783
14784 @table @option
14785 @item x
14786 Set scope center x position.
14787
14788 @item y
14789 Set scope center y position.
14790
14791 @item s
14792 Set scope size, relative to frame diagonal.
14793
14794 @item t
14795 Set scope tilt/rotation.
14796
14797 @item o
14798 Set trace opacity.
14799
14800 @item tx
14801 Set trace center x position.
14802
14803 @item ty
14804 Set trace center y position.
14805
14806 @item tw
14807 Set trace width, relative to width of frame.
14808
14809 @item th
14810 Set trace height, relative to height of frame.
14811
14812 @item c
14813 Set which components to trace. By default it traces first three components.
14814
14815 @item g
14816 Draw trace grid. By default is enabled.
14817
14818 @item st
14819 Draw some statistics. By default is enabled.
14820
14821 @item sc
14822 Draw scope. By default is enabled.
14823 @end table
14824
14825 @subsection Commands
14826 This filter supports same @ref{commands} as options.
14827 The command accepts the same syntax of the corresponding option.
14828
14829 If the specified expression is not valid, it is kept at its current
14830 value.
14831
14832 @subsection Examples
14833
14834 @itemize
14835 @item
14836 Inspect full first row of video frame.
14837 @example
14838 oscilloscope=x=0.5:y=0:s=1
14839 @end example
14840
14841 @item
14842 Inspect full last row of video frame.
14843 @example
14844 oscilloscope=x=0.5:y=1:s=1
14845 @end example
14846
14847 @item
14848 Inspect full 5th line of video frame of height 1080.
14849 @example
14850 oscilloscope=x=0.5:y=5/1080:s=1
14851 @end example
14852
14853 @item
14854 Inspect full last column of video frame.
14855 @example
14856 oscilloscope=x=1:y=0.5:s=1:t=1
14857 @end example
14858
14859 @end itemize
14860
14861 @anchor{overlay}
14862 @section overlay
14863
14864 Overlay one video on top of another.
14865
14866 It takes two inputs and has one output. The first input is the "main"
14867 video on which the second input is overlaid.
14868
14869 It accepts the following parameters:
14870
14871 A description of the accepted options follows.
14872
14873 @table @option
14874 @item x
14875 @item y
14876 Set the expression for the x and y coordinates of the overlaid video
14877 on the main video. Default value is "0" for both expressions. In case
14878 the expression is invalid, it is set to a huge value (meaning that the
14879 overlay will not be displayed within the output visible area).
14880
14881 @item eof_action
14882 See @ref{framesync}.
14883
14884 @item eval
14885 Set when the expressions for @option{x}, and @option{y} are evaluated.
14886
14887 It accepts the following values:
14888 @table @samp
14889 @item init
14890 only evaluate expressions once during the filter initialization or
14891 when a command is processed
14892
14893 @item frame
14894 evaluate expressions for each incoming frame
14895 @end table
14896
14897 Default value is @samp{frame}.
14898
14899 @item shortest
14900 See @ref{framesync}.
14901
14902 @item format
14903 Set the format for the output video.
14904
14905 It accepts the following values:
14906 @table @samp
14907 @item yuv420
14908 force YUV420 output
14909
14910 @item yuv420p10
14911 force YUV420p10 output
14912
14913 @item yuv422
14914 force YUV422 output
14915
14916 @item yuv422p10
14917 force YUV422p10 output
14918
14919 @item yuv444
14920 force YUV444 output
14921
14922 @item rgb
14923 force packed RGB output
14924
14925 @item gbrp
14926 force planar RGB output
14927
14928 @item auto
14929 automatically pick format
14930 @end table
14931
14932 Default value is @samp{yuv420}.
14933
14934 @item repeatlast
14935 See @ref{framesync}.
14936
14937 @item alpha
14938 Set format of alpha of the overlaid video, it can be @var{straight} or
14939 @var{premultiplied}. Default is @var{straight}.
14940 @end table
14941
14942 The @option{x}, and @option{y} expressions can contain the following
14943 parameters.
14944
14945 @table @option
14946 @item main_w, W
14947 @item main_h, H
14948 The main input width and height.
14949
14950 @item overlay_w, w
14951 @item overlay_h, h
14952 The overlay input width and height.
14953
14954 @item x
14955 @item y
14956 The computed values for @var{x} and @var{y}. They are evaluated for
14957 each new frame.
14958
14959 @item hsub
14960 @item vsub
14961 horizontal and vertical chroma subsample values of the output
14962 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14963 @var{vsub} is 1.
14964
14965 @item n
14966 the number of input frame, starting from 0
14967
14968 @item pos
14969 the position in the file of the input frame, NAN if unknown
14970
14971 @item t
14972 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14973
14974 @end table
14975
14976 This filter also supports the @ref{framesync} options.
14977
14978 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14979 when evaluation is done @emph{per frame}, and will evaluate to NAN
14980 when @option{eval} is set to @samp{init}.
14981
14982 Be aware that frames are taken from each input video in timestamp
14983 order, hence, if their initial timestamps differ, it is a good idea
14984 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14985 have them begin in the same zero timestamp, as the example for
14986 the @var{movie} filter does.
14987
14988 You can chain together more overlays but you should test the
14989 efficiency of such approach.
14990
14991 @subsection Commands
14992
14993 This filter supports the following commands:
14994 @table @option
14995 @item x
14996 @item y
14997 Modify the x and y of the overlay input.
14998 The command accepts the same syntax of the corresponding option.
14999
15000 If the specified expression is not valid, it is kept at its current
15001 value.
15002 @end table
15003
15004 @subsection Examples
15005
15006 @itemize
15007 @item
15008 Draw the overlay at 10 pixels from the bottom right corner of the main
15009 video:
15010 @example
15011 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15012 @end example
15013
15014 Using named options the example above becomes:
15015 @example
15016 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15017 @end example
15018
15019 @item
15020 Insert a transparent PNG logo in the bottom left corner of the input,
15021 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15022 @example
15023 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15024 @end example
15025
15026 @item
15027 Insert 2 different transparent PNG logos (second logo on bottom
15028 right corner) using the @command{ffmpeg} tool:
15029 @example
15030 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
15031 @end example
15032
15033 @item
15034 Add a transparent color layer on top of the main video; @code{WxH}
15035 must specify the size of the main input to the overlay filter:
15036 @example
15037 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15038 @end example
15039
15040 @item
15041 Play an original video and a filtered version (here with the deshake
15042 filter) side by side using the @command{ffplay} tool:
15043 @example
15044 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15045 @end example
15046
15047 The above command is the same as:
15048 @example
15049 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15050 @end example
15051
15052 @item
15053 Make a sliding overlay appearing from the left to the right top part of the
15054 screen starting since time 2:
15055 @example
15056 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15057 @end example
15058
15059 @item
15060 Compose output by putting two input videos side to side:
15061 @example
15062 ffmpeg -i left.avi -i right.avi -filter_complex "
15063 nullsrc=size=200x100 [background];
15064 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15065 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15066 [background][left]       overlay=shortest=1       [background+left];
15067 [background+left][right] overlay=shortest=1:x=100 [left+right]
15068 "
15069 @end example
15070
15071 @item
15072 Mask 10-20 seconds of a video by applying the delogo filter to a section
15073 @example
15074 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15075 -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]'
15076 masked.avi
15077 @end example
15078
15079 @item
15080 Chain several overlays in cascade:
15081 @example
15082 nullsrc=s=200x200 [bg];
15083 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15084 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15085 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15086 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15087 [in3] null,       [mid2] overlay=100:100 [out0]
15088 @end example
15089
15090 @end itemize
15091
15092 @anchor{overlay_cuda}
15093 @section overlay_cuda
15094
15095 Overlay one video on top of another.
15096
15097 This is the CUDA variant of the @ref{overlay} filter.
15098 It only accepts CUDA frames. The underlying input pixel formats have to match.
15099
15100 It takes two inputs and has one output. The first input is the "main"
15101 video on which the second input is overlaid.
15102
15103 It accepts the following parameters:
15104
15105 @table @option
15106 @item x
15107 @item y
15108 Set the x and y coordinates of the overlaid video on the main video.
15109 Default value is "0" for both expressions.
15110
15111 @item eof_action
15112 See @ref{framesync}.
15113
15114 @item shortest
15115 See @ref{framesync}.
15116
15117 @item repeatlast
15118 See @ref{framesync}.
15119
15120 @end table
15121
15122 This filter also supports the @ref{framesync} options.
15123
15124 @section owdenoise
15125
15126 Apply Overcomplete Wavelet denoiser.
15127
15128 The filter accepts the following options:
15129
15130 @table @option
15131 @item depth
15132 Set depth.
15133
15134 Larger depth values will denoise lower frequency components more, but
15135 slow down filtering.
15136
15137 Must be an int in the range 8-16, default is @code{8}.
15138
15139 @item luma_strength, ls
15140 Set luma strength.
15141
15142 Must be a double value in the range 0-1000, default is @code{1.0}.
15143
15144 @item chroma_strength, cs
15145 Set chroma strength.
15146
15147 Must be a double value in the range 0-1000, default is @code{1.0}.
15148 @end table
15149
15150 @anchor{pad}
15151 @section pad
15152
15153 Add paddings to the input image, and place the original input at the
15154 provided @var{x}, @var{y} coordinates.
15155
15156 It accepts the following parameters:
15157
15158 @table @option
15159 @item width, w
15160 @item height, h
15161 Specify an expression for the size of the output image with the
15162 paddings added. If the value for @var{width} or @var{height} is 0, the
15163 corresponding input size is used for the output.
15164
15165 The @var{width} expression can reference the value set by the
15166 @var{height} expression, and vice versa.
15167
15168 The default value of @var{width} and @var{height} is 0.
15169
15170 @item x
15171 @item y
15172 Specify the offsets to place the input image at within the padded area,
15173 with respect to the top/left border of the output image.
15174
15175 The @var{x} expression can reference the value set by the @var{y}
15176 expression, and vice versa.
15177
15178 The default value of @var{x} and @var{y} is 0.
15179
15180 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15181 so the input image is centered on the padded area.
15182
15183 @item color
15184 Specify the color of the padded area. For the syntax of this option,
15185 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15186 manual,ffmpeg-utils}.
15187
15188 The default value of @var{color} is "black".
15189
15190 @item eval
15191 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15192
15193 It accepts the following values:
15194
15195 @table @samp
15196 @item init
15197 Only evaluate expressions once during the filter initialization or when
15198 a command is processed.
15199
15200 @item frame
15201 Evaluate expressions for each incoming frame.
15202
15203 @end table
15204
15205 Default value is @samp{init}.
15206
15207 @item aspect
15208 Pad to aspect instead to a resolution.
15209
15210 @end table
15211
15212 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15213 options are expressions containing the following constants:
15214
15215 @table @option
15216 @item in_w
15217 @item in_h
15218 The input video width and height.
15219
15220 @item iw
15221 @item ih
15222 These are the same as @var{in_w} and @var{in_h}.
15223
15224 @item out_w
15225 @item out_h
15226 The output width and height (the size of the padded area), as
15227 specified by the @var{width} and @var{height} expressions.
15228
15229 @item ow
15230 @item oh
15231 These are the same as @var{out_w} and @var{out_h}.
15232
15233 @item x
15234 @item y
15235 The x and y offsets as specified by the @var{x} and @var{y}
15236 expressions, or NAN if not yet specified.
15237
15238 @item a
15239 same as @var{iw} / @var{ih}
15240
15241 @item sar
15242 input sample aspect ratio
15243
15244 @item dar
15245 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15246
15247 @item hsub
15248 @item vsub
15249 The horizontal and vertical chroma subsample values. For example for the
15250 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15251 @end table
15252
15253 @subsection Examples
15254
15255 @itemize
15256 @item
15257 Add paddings with the color "violet" to the input video. The output video
15258 size is 640x480, and the top-left corner of the input video is placed at
15259 column 0, row 40
15260 @example
15261 pad=640:480:0:40:violet
15262 @end example
15263
15264 The example above is equivalent to the following command:
15265 @example
15266 pad=width=640:height=480:x=0:y=40:color=violet
15267 @end example
15268
15269 @item
15270 Pad the input to get an output with dimensions increased by 3/2,
15271 and put the input video at the center of the padded area:
15272 @example
15273 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15274 @end example
15275
15276 @item
15277 Pad the input to get a squared output with size equal to the maximum
15278 value between the input width and height, and put the input video at
15279 the center of the padded area:
15280 @example
15281 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15282 @end example
15283
15284 @item
15285 Pad the input to get a final w/h ratio of 16:9:
15286 @example
15287 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15288 @end example
15289
15290 @item
15291 In case of anamorphic video, in order to set the output display aspect
15292 correctly, it is necessary to use @var{sar} in the expression,
15293 according to the relation:
15294 @example
15295 (ih * X / ih) * sar = output_dar
15296 X = output_dar / sar
15297 @end example
15298
15299 Thus the previous example needs to be modified to:
15300 @example
15301 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15302 @end example
15303
15304 @item
15305 Double the output size and put the input video in the bottom-right
15306 corner of the output padded area:
15307 @example
15308 pad="2*iw:2*ih:ow-iw:oh-ih"
15309 @end example
15310 @end itemize
15311
15312 @anchor{palettegen}
15313 @section palettegen
15314
15315 Generate one palette for a whole video stream.
15316
15317 It accepts the following options:
15318
15319 @table @option
15320 @item max_colors
15321 Set the maximum number of colors to quantize in the palette.
15322 Note: the palette will still contain 256 colors; the unused palette entries
15323 will be black.
15324
15325 @item reserve_transparent
15326 Create a palette of 255 colors maximum and reserve the last one for
15327 transparency. Reserving the transparency color is useful for GIF optimization.
15328 If not set, the maximum of colors in the palette will be 256. You probably want
15329 to disable this option for a standalone image.
15330 Set by default.
15331
15332 @item transparency_color
15333 Set the color that will be used as background for transparency.
15334
15335 @item stats_mode
15336 Set statistics mode.
15337
15338 It accepts the following values:
15339 @table @samp
15340 @item full
15341 Compute full frame histograms.
15342 @item diff
15343 Compute histograms only for the part that differs from previous frame. This
15344 might be relevant to give more importance to the moving part of your input if
15345 the background is static.
15346 @item single
15347 Compute new histogram for each frame.
15348 @end table
15349
15350 Default value is @var{full}.
15351 @end table
15352
15353 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15354 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15355 color quantization of the palette. This information is also visible at
15356 @var{info} logging level.
15357
15358 @subsection Examples
15359
15360 @itemize
15361 @item
15362 Generate a representative palette of a given video using @command{ffmpeg}:
15363 @example
15364 ffmpeg -i input.mkv -vf palettegen palette.png
15365 @end example
15366 @end itemize
15367
15368 @section paletteuse
15369
15370 Use a palette to downsample an input video stream.
15371
15372 The filter takes two inputs: one video stream and a palette. The palette must
15373 be a 256 pixels image.
15374
15375 It accepts the following options:
15376
15377 @table @option
15378 @item dither
15379 Select dithering mode. Available algorithms are:
15380 @table @samp
15381 @item bayer
15382 Ordered 8x8 bayer dithering (deterministic)
15383 @item heckbert
15384 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15385 Note: this dithering is sometimes considered "wrong" and is included as a
15386 reference.
15387 @item floyd_steinberg
15388 Floyd and Steingberg dithering (error diffusion)
15389 @item sierra2
15390 Frankie Sierra dithering v2 (error diffusion)
15391 @item sierra2_4a
15392 Frankie Sierra dithering v2 "Lite" (error diffusion)
15393 @end table
15394
15395 Default is @var{sierra2_4a}.
15396
15397 @item bayer_scale
15398 When @var{bayer} dithering is selected, this option defines the scale of the
15399 pattern (how much the crosshatch pattern is visible). A low value means more
15400 visible pattern for less banding, and higher value means less visible pattern
15401 at the cost of more banding.
15402
15403 The option must be an integer value in the range [0,5]. Default is @var{2}.
15404
15405 @item diff_mode
15406 If set, define the zone to process
15407
15408 @table @samp
15409 @item rectangle
15410 Only the changing rectangle will be reprocessed. This is similar to GIF
15411 cropping/offsetting compression mechanism. This option can be useful for speed
15412 if only a part of the image is changing, and has use cases such as limiting the
15413 scope of the error diffusal @option{dither} to the rectangle that bounds the
15414 moving scene (it leads to more deterministic output if the scene doesn't change
15415 much, and as a result less moving noise and better GIF compression).
15416 @end table
15417
15418 Default is @var{none}.
15419
15420 @item new
15421 Take new palette for each output frame.
15422
15423 @item alpha_threshold
15424 Sets the alpha threshold for transparency. Alpha values above this threshold
15425 will be treated as completely opaque, and values below this threshold will be
15426 treated as completely transparent.
15427
15428 The option must be an integer value in the range [0,255]. Default is @var{128}.
15429 @end table
15430
15431 @subsection Examples
15432
15433 @itemize
15434 @item
15435 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15436 using @command{ffmpeg}:
15437 @example
15438 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15439 @end example
15440 @end itemize
15441
15442 @section perspective
15443
15444 Correct perspective of video not recorded perpendicular to the screen.
15445
15446 A description of the accepted parameters follows.
15447
15448 @table @option
15449 @item x0
15450 @item y0
15451 @item x1
15452 @item y1
15453 @item x2
15454 @item y2
15455 @item x3
15456 @item y3
15457 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15458 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15459 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15460 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15461 then the corners of the source will be sent to the specified coordinates.
15462
15463 The expressions can use the following variables:
15464
15465 @table @option
15466 @item W
15467 @item H
15468 the width and height of video frame.
15469 @item in
15470 Input frame count.
15471 @item on
15472 Output frame count.
15473 @end table
15474
15475 @item interpolation
15476 Set interpolation for perspective correction.
15477
15478 It accepts the following values:
15479 @table @samp
15480 @item linear
15481 @item cubic
15482 @end table
15483
15484 Default value is @samp{linear}.
15485
15486 @item sense
15487 Set interpretation of coordinate options.
15488
15489 It accepts the following values:
15490 @table @samp
15491 @item 0, source
15492
15493 Send point in the source specified by the given coordinates to
15494 the corners of the destination.
15495
15496 @item 1, destination
15497
15498 Send the corners of the source to the point in the destination specified
15499 by the given coordinates.
15500
15501 Default value is @samp{source}.
15502 @end table
15503
15504 @item eval
15505 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15506
15507 It accepts the following values:
15508 @table @samp
15509 @item init
15510 only evaluate expressions once during the filter initialization or
15511 when a command is processed
15512
15513 @item frame
15514 evaluate expressions for each incoming frame
15515 @end table
15516
15517 Default value is @samp{init}.
15518 @end table
15519
15520 @section phase
15521
15522 Delay interlaced video by one field time so that the field order changes.
15523
15524 The intended use is to fix PAL movies that have been captured with the
15525 opposite field order to the film-to-video transfer.
15526
15527 A description of the accepted parameters follows.
15528
15529 @table @option
15530 @item mode
15531 Set phase mode.
15532
15533 It accepts the following values:
15534 @table @samp
15535 @item t
15536 Capture field order top-first, transfer bottom-first.
15537 Filter will delay the bottom field.
15538
15539 @item b
15540 Capture field order bottom-first, transfer top-first.
15541 Filter will delay the top field.
15542
15543 @item p
15544 Capture and transfer with the same field order. This mode only exists
15545 for the documentation of the other options to refer to, but if you
15546 actually select it, the filter will faithfully do nothing.
15547
15548 @item a
15549 Capture field order determined automatically by field flags, transfer
15550 opposite.
15551 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15552 basis using field flags. If no field information is available,
15553 then this works just like @samp{u}.
15554
15555 @item u
15556 Capture unknown or varying, transfer opposite.
15557 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15558 analyzing the images and selecting the alternative that produces best
15559 match between the fields.
15560
15561 @item T
15562 Capture top-first, transfer unknown or varying.
15563 Filter selects among @samp{t} and @samp{p} using image analysis.
15564
15565 @item B
15566 Capture bottom-first, transfer unknown or varying.
15567 Filter selects among @samp{b} and @samp{p} using image analysis.
15568
15569 @item A
15570 Capture determined by field flags, transfer unknown or varying.
15571 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15572 image analysis. If no field information is available, then this works just
15573 like @samp{U}. This is the default mode.
15574
15575 @item U
15576 Both capture and transfer unknown or varying.
15577 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15578 @end table
15579 @end table
15580
15581 @section photosensitivity
15582 Reduce various flashes in video, so to help users with epilepsy.
15583
15584 It accepts the following options:
15585 @table @option
15586 @item frames, f
15587 Set how many frames to use when filtering. Default is 30.
15588
15589 @item threshold, t
15590 Set detection threshold factor. Default is 1.
15591 Lower is stricter.
15592
15593 @item skip
15594 Set how many pixels to skip when sampling frames. Default is 1.
15595 Allowed range is from 1 to 1024.
15596
15597 @item bypass
15598 Leave frames unchanged. Default is disabled.
15599 @end table
15600
15601 @section pixdesctest
15602
15603 Pixel format descriptor test filter, mainly useful for internal
15604 testing. The output video should be equal to the input video.
15605
15606 For example:
15607 @example
15608 format=monow, pixdesctest
15609 @end example
15610
15611 can be used to test the monowhite pixel format descriptor definition.
15612
15613 @section pixscope
15614
15615 Display sample values of color channels. Mainly useful for checking color
15616 and levels. Minimum supported resolution is 640x480.
15617
15618 The filters accept the following options:
15619
15620 @table @option
15621 @item x
15622 Set scope X position, relative offset on X axis.
15623
15624 @item y
15625 Set scope Y position, relative offset on Y axis.
15626
15627 @item w
15628 Set scope width.
15629
15630 @item h
15631 Set scope height.
15632
15633 @item o
15634 Set window opacity. This window also holds statistics about pixel area.
15635
15636 @item wx
15637 Set window X position, relative offset on X axis.
15638
15639 @item wy
15640 Set window Y position, relative offset on Y axis.
15641 @end table
15642
15643 @section pp
15644
15645 Enable the specified chain of postprocessing subfilters using libpostproc. This
15646 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15647 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15648 Each subfilter and some options have a short and a long name that can be used
15649 interchangeably, i.e. dr/dering are the same.
15650
15651 The filters accept the following options:
15652
15653 @table @option
15654 @item subfilters
15655 Set postprocessing subfilters string.
15656 @end table
15657
15658 All subfilters share common options to determine their scope:
15659
15660 @table @option
15661 @item a/autoq
15662 Honor the quality commands for this subfilter.
15663
15664 @item c/chrom
15665 Do chrominance filtering, too (default).
15666
15667 @item y/nochrom
15668 Do luminance filtering only (no chrominance).
15669
15670 @item n/noluma
15671 Do chrominance filtering only (no luminance).
15672 @end table
15673
15674 These options can be appended after the subfilter name, separated by a '|'.
15675
15676 Available subfilters are:
15677
15678 @table @option
15679 @item hb/hdeblock[|difference[|flatness]]
15680 Horizontal deblocking filter
15681 @table @option
15682 @item difference
15683 Difference factor where higher values mean more deblocking (default: @code{32}).
15684 @item flatness
15685 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15686 @end table
15687
15688 @item vb/vdeblock[|difference[|flatness]]
15689 Vertical deblocking filter
15690 @table @option
15691 @item difference
15692 Difference factor where higher values mean more deblocking (default: @code{32}).
15693 @item flatness
15694 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15695 @end table
15696
15697 @item ha/hadeblock[|difference[|flatness]]
15698 Accurate horizontal deblocking filter
15699 @table @option
15700 @item difference
15701 Difference factor where higher values mean more deblocking (default: @code{32}).
15702 @item flatness
15703 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15704 @end table
15705
15706 @item va/vadeblock[|difference[|flatness]]
15707 Accurate vertical deblocking filter
15708 @table @option
15709 @item difference
15710 Difference factor where higher values mean more deblocking (default: @code{32}).
15711 @item flatness
15712 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15713 @end table
15714 @end table
15715
15716 The horizontal and vertical deblocking filters share the difference and
15717 flatness values so you cannot set different horizontal and vertical
15718 thresholds.
15719
15720 @table @option
15721 @item h1/x1hdeblock
15722 Experimental horizontal deblocking filter
15723
15724 @item v1/x1vdeblock
15725 Experimental vertical deblocking filter
15726
15727 @item dr/dering
15728 Deringing filter
15729
15730 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15731 @table @option
15732 @item threshold1
15733 larger -> stronger filtering
15734 @item threshold2
15735 larger -> stronger filtering
15736 @item threshold3
15737 larger -> stronger filtering
15738 @end table
15739
15740 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15741 @table @option
15742 @item f/fullyrange
15743 Stretch luminance to @code{0-255}.
15744 @end table
15745
15746 @item lb/linblenddeint
15747 Linear blend deinterlacing filter that deinterlaces the given block by
15748 filtering all lines with a @code{(1 2 1)} filter.
15749
15750 @item li/linipoldeint
15751 Linear interpolating deinterlacing filter that deinterlaces the given block by
15752 linearly interpolating every second line.
15753
15754 @item ci/cubicipoldeint
15755 Cubic interpolating deinterlacing filter deinterlaces the given block by
15756 cubically interpolating every second line.
15757
15758 @item md/mediandeint
15759 Median deinterlacing filter that deinterlaces the given block by applying a
15760 median filter to every second line.
15761
15762 @item fd/ffmpegdeint
15763 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15764 second line with a @code{(-1 4 2 4 -1)} filter.
15765
15766 @item l5/lowpass5
15767 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15768 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15769
15770 @item fq/forceQuant[|quantizer]
15771 Overrides the quantizer table from the input with the constant quantizer you
15772 specify.
15773 @table @option
15774 @item quantizer
15775 Quantizer to use
15776 @end table
15777
15778 @item de/default
15779 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15780
15781 @item fa/fast
15782 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15783
15784 @item ac
15785 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15786 @end table
15787
15788 @subsection Examples
15789
15790 @itemize
15791 @item
15792 Apply horizontal and vertical deblocking, deringing and automatic
15793 brightness/contrast:
15794 @example
15795 pp=hb/vb/dr/al
15796 @end example
15797
15798 @item
15799 Apply default filters without brightness/contrast correction:
15800 @example
15801 pp=de/-al
15802 @end example
15803
15804 @item
15805 Apply default filters and temporal denoiser:
15806 @example
15807 pp=default/tmpnoise|1|2|3
15808 @end example
15809
15810 @item
15811 Apply deblocking on luminance only, and switch vertical deblocking on or off
15812 automatically depending on available CPU time:
15813 @example
15814 pp=hb|y/vb|a
15815 @end example
15816 @end itemize
15817
15818 @section pp7
15819 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15820 similar to spp = 6 with 7 point DCT, where only the center sample is
15821 used after IDCT.
15822
15823 The filter accepts the following options:
15824
15825 @table @option
15826 @item qp
15827 Force a constant quantization parameter. It accepts an integer in range
15828 0 to 63. If not set, the filter will use the QP from the video stream
15829 (if available).
15830
15831 @item mode
15832 Set thresholding mode. Available modes are:
15833
15834 @table @samp
15835 @item hard
15836 Set hard thresholding.
15837 @item soft
15838 Set soft thresholding (better de-ringing effect, but likely blurrier).
15839 @item medium
15840 Set medium thresholding (good results, default).
15841 @end table
15842 @end table
15843
15844 @section premultiply
15845 Apply alpha premultiply effect to input video stream using first plane
15846 of second stream as alpha.
15847
15848 Both streams must have same dimensions and same pixel format.
15849
15850 The filter accepts the following option:
15851
15852 @table @option
15853 @item planes
15854 Set which planes will be processed, unprocessed planes will be copied.
15855 By default value 0xf, all planes will be processed.
15856
15857 @item inplace
15858 Do not require 2nd input for processing, instead use alpha plane from input stream.
15859 @end table
15860
15861 @section prewitt
15862 Apply prewitt operator to input video stream.
15863
15864 The filter accepts the following option:
15865
15866 @table @option
15867 @item planes
15868 Set which planes will be processed, unprocessed planes will be copied.
15869 By default value 0xf, all planes will be processed.
15870
15871 @item scale
15872 Set value which will be multiplied with filtered result.
15873
15874 @item delta
15875 Set value which will be added to filtered result.
15876 @end table
15877
15878 @section pseudocolor
15879
15880 Alter frame colors in video with pseudocolors.
15881
15882 This filter accepts the following options:
15883
15884 @table @option
15885 @item c0
15886 set pixel first component expression
15887
15888 @item c1
15889 set pixel second component expression
15890
15891 @item c2
15892 set pixel third component expression
15893
15894 @item c3
15895 set pixel fourth component expression, corresponds to the alpha component
15896
15897 @item i
15898 set component to use as base for altering colors
15899 @end table
15900
15901 Each of them specifies the expression to use for computing the lookup table for
15902 the corresponding pixel component values.
15903
15904 The expressions can contain the following constants and functions:
15905
15906 @table @option
15907 @item w
15908 @item h
15909 The input width and height.
15910
15911 @item val
15912 The input value for the pixel component.
15913
15914 @item ymin, umin, vmin, amin
15915 The minimum allowed component value.
15916
15917 @item ymax, umax, vmax, amax
15918 The maximum allowed component value.
15919 @end table
15920
15921 All expressions default to "val".
15922
15923 @subsection Examples
15924
15925 @itemize
15926 @item
15927 Change too high luma values to gradient:
15928 @example
15929 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'"
15930 @end example
15931 @end itemize
15932
15933 @section psnr
15934
15935 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15936 Ratio) between two input videos.
15937
15938 This filter takes in input two input videos, the first input is
15939 considered the "main" source and is passed unchanged to the
15940 output. The second input is used as a "reference" video for computing
15941 the PSNR.
15942
15943 Both video inputs must have the same resolution and pixel format for
15944 this filter to work correctly. Also it assumes that both inputs
15945 have the same number of frames, which are compared one by one.
15946
15947 The obtained average PSNR is printed through the logging system.
15948
15949 The filter stores the accumulated MSE (mean squared error) of each
15950 frame, and at the end of the processing it is averaged across all frames
15951 equally, and the following formula is applied to obtain the PSNR:
15952
15953 @example
15954 PSNR = 10*log10(MAX^2/MSE)
15955 @end example
15956
15957 Where MAX is the average of the maximum values of each component of the
15958 image.
15959
15960 The description of the accepted parameters follows.
15961
15962 @table @option
15963 @item stats_file, f
15964 If specified the filter will use the named file to save the PSNR of
15965 each individual frame. When filename equals "-" the data is sent to
15966 standard output.
15967
15968 @item stats_version
15969 Specifies which version of the stats file format to use. Details of
15970 each format are written below.
15971 Default value is 1.
15972
15973 @item stats_add_max
15974 Determines whether the max value is output to the stats log.
15975 Default value is 0.
15976 Requires stats_version >= 2. If this is set and stats_version < 2,
15977 the filter will return an error.
15978 @end table
15979
15980 This filter also supports the @ref{framesync} options.
15981
15982 The file printed if @var{stats_file} is selected, contains a sequence of
15983 key/value pairs of the form @var{key}:@var{value} for each compared
15984 couple of frames.
15985
15986 If a @var{stats_version} greater than 1 is specified, a header line precedes
15987 the list of per-frame-pair stats, with key value pairs following the frame
15988 format with the following parameters:
15989
15990 @table @option
15991 @item psnr_log_version
15992 The version of the log file format. Will match @var{stats_version}.
15993
15994 @item fields
15995 A comma separated list of the per-frame-pair parameters included in
15996 the log.
15997 @end table
15998
15999 A description of each shown per-frame-pair parameter follows:
16000
16001 @table @option
16002 @item n
16003 sequential number of the input frame, starting from 1
16004
16005 @item mse_avg
16006 Mean Square Error pixel-by-pixel average difference of the compared
16007 frames, averaged over all the image components.
16008
16009 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16010 Mean Square Error pixel-by-pixel average difference of the compared
16011 frames for the component specified by the suffix.
16012
16013 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16014 Peak Signal to Noise ratio of the compared frames for the component
16015 specified by the suffix.
16016
16017 @item max_avg, max_y, max_u, max_v
16018 Maximum allowed value for each channel, and average over all
16019 channels.
16020 @end table
16021
16022 @subsection Examples
16023 @itemize
16024 @item
16025 For example:
16026 @example
16027 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16028 [main][ref] psnr="stats_file=stats.log" [out]
16029 @end example
16030
16031 On this example the input file being processed is compared with the
16032 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16033 is stored in @file{stats.log}.
16034
16035 @item
16036 Another example with different containers:
16037 @example
16038 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 -
16039 @end example
16040 @end itemize
16041
16042 @anchor{pullup}
16043 @section pullup
16044
16045 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16046 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16047 content.
16048
16049 The pullup filter is designed to take advantage of future context in making
16050 its decisions. This filter is stateless in the sense that it does not lock
16051 onto a pattern to follow, but it instead looks forward to the following
16052 fields in order to identify matches and rebuild progressive frames.
16053
16054 To produce content with an even framerate, insert the fps filter after
16055 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16056 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16057
16058 The filter accepts the following options:
16059
16060 @table @option
16061 @item jl
16062 @item jr
16063 @item jt
16064 @item jb
16065 These options set the amount of "junk" to ignore at the left, right, top, and
16066 bottom of the image, respectively. Left and right are in units of 8 pixels,
16067 while top and bottom are in units of 2 lines.
16068 The default is 8 pixels on each side.
16069
16070 @item sb
16071 Set the strict breaks. Setting this option to 1 will reduce the chances of
16072 filter generating an occasional mismatched frame, but it may also cause an
16073 excessive number of frames to be dropped during high motion sequences.
16074 Conversely, setting it to -1 will make filter match fields more easily.
16075 This may help processing of video where there is slight blurring between
16076 the fields, but may also cause there to be interlaced frames in the output.
16077 Default value is @code{0}.
16078
16079 @item mp
16080 Set the metric plane to use. It accepts the following values:
16081 @table @samp
16082 @item l
16083 Use luma plane.
16084
16085 @item u
16086 Use chroma blue plane.
16087
16088 @item v
16089 Use chroma red plane.
16090 @end table
16091
16092 This option may be set to use chroma plane instead of the default luma plane
16093 for doing filter's computations. This may improve accuracy on very clean
16094 source material, but more likely will decrease accuracy, especially if there
16095 is chroma noise (rainbow effect) or any grayscale video.
16096 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16097 load and make pullup usable in realtime on slow machines.
16098 @end table
16099
16100 For best results (without duplicated frames in the output file) it is
16101 necessary to change the output frame rate. For example, to inverse
16102 telecine NTSC input:
16103 @example
16104 ffmpeg -i input -vf pullup -r 24000/1001 ...
16105 @end example
16106
16107 @section qp
16108
16109 Change video quantization parameters (QP).
16110
16111 The filter accepts the following option:
16112
16113 @table @option
16114 @item qp
16115 Set expression for quantization parameter.
16116 @end table
16117
16118 The expression is evaluated through the eval API and can contain, among others,
16119 the following constants:
16120
16121 @table @var
16122 @item known
16123 1 if index is not 129, 0 otherwise.
16124
16125 @item qp
16126 Sequential index starting from -129 to 128.
16127 @end table
16128
16129 @subsection Examples
16130
16131 @itemize
16132 @item
16133 Some equation like:
16134 @example
16135 qp=2+2*sin(PI*qp)
16136 @end example
16137 @end itemize
16138
16139 @section random
16140
16141 Flush video frames from internal cache of frames into a random order.
16142 No frame is discarded.
16143 Inspired by @ref{frei0r} nervous filter.
16144
16145 @table @option
16146 @item frames
16147 Set size in number of frames of internal cache, in range from @code{2} to
16148 @code{512}. Default is @code{30}.
16149
16150 @item seed
16151 Set seed for random number generator, must be an integer included between
16152 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16153 less than @code{0}, the filter will try to use a good random seed on a
16154 best effort basis.
16155 @end table
16156
16157 @section readeia608
16158
16159 Read closed captioning (EIA-608) information from the top lines of a video frame.
16160
16161 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16162 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16163 with EIA-608 data (starting from 0). A description of each metadata value follows:
16164
16165 @table @option
16166 @item lavfi.readeia608.X.cc
16167 The two bytes stored as EIA-608 data (printed in hexadecimal).
16168
16169 @item lavfi.readeia608.X.line
16170 The number of the line on which the EIA-608 data was identified and read.
16171 @end table
16172
16173 This filter accepts the following options:
16174
16175 @table @option
16176 @item scan_min
16177 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16178
16179 @item scan_max
16180 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16181
16182 @item spw
16183 Set the ratio of width reserved for sync code detection.
16184 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16185
16186 @item chp
16187 Enable checking the parity bit. In the event of a parity error, the filter will output
16188 @code{0x00} for that character. Default is false.
16189
16190 @item lp
16191 Lowpass lines prior to further processing. Default is enabled.
16192 @end table
16193
16194 @subsection Commands
16195
16196 This filter supports the all above options as @ref{commands}.
16197
16198 @subsection Examples
16199
16200 @itemize
16201 @item
16202 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16203 @example
16204 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
16205 @end example
16206 @end itemize
16207
16208 @section readvitc
16209
16210 Read vertical interval timecode (VITC) information from the top lines of a
16211 video frame.
16212
16213 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16214 timecode value, if a valid timecode has been detected. Further metadata key
16215 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16216 timecode data has been found or not.
16217
16218 This filter accepts the following options:
16219
16220 @table @option
16221 @item scan_max
16222 Set the maximum number of lines to scan for VITC data. If the value is set to
16223 @code{-1} the full video frame is scanned. Default is @code{45}.
16224
16225 @item thr_b
16226 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16227 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16228
16229 @item thr_w
16230 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16231 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16232 @end table
16233
16234 @subsection Examples
16235
16236 @itemize
16237 @item
16238 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16239 draw @code{--:--:--:--} as a placeholder:
16240 @example
16241 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16242 @end example
16243 @end itemize
16244
16245 @section remap
16246
16247 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16248
16249 Destination pixel at position (X, Y) will be picked from source (x, y) position
16250 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16251 value for pixel will be used for destination pixel.
16252
16253 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16254 will have Xmap/Ymap video stream dimensions.
16255 Xmap and Ymap input video streams are 16bit depth, single channel.
16256
16257 @table @option
16258 @item format
16259 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16260 Default is @code{color}.
16261
16262 @item fill
16263 Specify the color of the unmapped pixels. For the syntax of this option,
16264 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16265 manual,ffmpeg-utils}. Default color is @code{black}.
16266 @end table
16267
16268 @section removegrain
16269
16270 The removegrain filter is a spatial denoiser for progressive video.
16271
16272 @table @option
16273 @item m0
16274 Set mode for the first plane.
16275
16276 @item m1
16277 Set mode for the second plane.
16278
16279 @item m2
16280 Set mode for the third plane.
16281
16282 @item m3
16283 Set mode for the fourth plane.
16284 @end table
16285
16286 Range of mode is from 0 to 24. Description of each mode follows:
16287
16288 @table @var
16289 @item 0
16290 Leave input plane unchanged. Default.
16291
16292 @item 1
16293 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16294
16295 @item 2
16296 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16297
16298 @item 3
16299 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16300
16301 @item 4
16302 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16303 This is equivalent to a median filter.
16304
16305 @item 5
16306 Line-sensitive clipping giving the minimal change.
16307
16308 @item 6
16309 Line-sensitive clipping, intermediate.
16310
16311 @item 7
16312 Line-sensitive clipping, intermediate.
16313
16314 @item 8
16315 Line-sensitive clipping, intermediate.
16316
16317 @item 9
16318 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16319
16320 @item 10
16321 Replaces the target pixel with the closest neighbour.
16322
16323 @item 11
16324 [1 2 1] horizontal and vertical kernel blur.
16325
16326 @item 12
16327 Same as mode 11.
16328
16329 @item 13
16330 Bob mode, interpolates top field from the line where the neighbours
16331 pixels are the closest.
16332
16333 @item 14
16334 Bob mode, interpolates bottom field from the line where the neighbours
16335 pixels are the closest.
16336
16337 @item 15
16338 Bob mode, interpolates top field. Same as 13 but with a more complicated
16339 interpolation formula.
16340
16341 @item 16
16342 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16343 interpolation formula.
16344
16345 @item 17
16346 Clips the pixel with the minimum and maximum of respectively the maximum and
16347 minimum of each pair of opposite neighbour pixels.
16348
16349 @item 18
16350 Line-sensitive clipping using opposite neighbours whose greatest distance from
16351 the current pixel is minimal.
16352
16353 @item 19
16354 Replaces the pixel with the average of its 8 neighbours.
16355
16356 @item 20
16357 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16358
16359 @item 21
16360 Clips pixels using the averages of opposite neighbour.
16361
16362 @item 22
16363 Same as mode 21 but simpler and faster.
16364
16365 @item 23
16366 Small edge and halo removal, but reputed useless.
16367
16368 @item 24
16369 Similar as 23.
16370 @end table
16371
16372 @section removelogo
16373
16374 Suppress a TV station logo, using an image file to determine which
16375 pixels comprise the logo. It works by filling in the pixels that
16376 comprise the logo with neighboring pixels.
16377
16378 The filter accepts the following options:
16379
16380 @table @option
16381 @item filename, f
16382 Set the filter bitmap file, which can be any image format supported by
16383 libavformat. The width and height of the image file must match those of the
16384 video stream being processed.
16385 @end table
16386
16387 Pixels in the provided bitmap image with a value of zero are not
16388 considered part of the logo, non-zero pixels are considered part of
16389 the logo. If you use white (255) for the logo and black (0) for the
16390 rest, you will be safe. For making the filter bitmap, it is
16391 recommended to take a screen capture of a black frame with the logo
16392 visible, and then using a threshold filter followed by the erode
16393 filter once or twice.
16394
16395 If needed, little splotches can be fixed manually. Remember that if
16396 logo pixels are not covered, the filter quality will be much
16397 reduced. Marking too many pixels as part of the logo does not hurt as
16398 much, but it will increase the amount of blurring needed to cover over
16399 the image and will destroy more information than necessary, and extra
16400 pixels will slow things down on a large logo.
16401
16402 @section repeatfields
16403
16404 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16405 fields based on its value.
16406
16407 @section reverse
16408
16409 Reverse a video clip.
16410
16411 Warning: This filter requires memory to buffer the entire clip, so trimming
16412 is suggested.
16413
16414 @subsection Examples
16415
16416 @itemize
16417 @item
16418 Take the first 5 seconds of a clip, and reverse it.
16419 @example
16420 trim=end=5,reverse
16421 @end example
16422 @end itemize
16423
16424 @section rgbashift
16425 Shift R/G/B/A pixels horizontally and/or vertically.
16426
16427 The filter accepts the following options:
16428 @table @option
16429 @item rh
16430 Set amount to shift red horizontally.
16431 @item rv
16432 Set amount to shift red vertically.
16433 @item gh
16434 Set amount to shift green horizontally.
16435 @item gv
16436 Set amount to shift green vertically.
16437 @item bh
16438 Set amount to shift blue horizontally.
16439 @item bv
16440 Set amount to shift blue vertically.
16441 @item ah
16442 Set amount to shift alpha horizontally.
16443 @item av
16444 Set amount to shift alpha vertically.
16445 @item edge
16446 Set edge mode, can be @var{smear}, default, or @var{warp}.
16447 @end table
16448
16449 @subsection Commands
16450
16451 This filter supports the all above options as @ref{commands}.
16452
16453 @section roberts
16454 Apply roberts cross operator to input video stream.
16455
16456 The filter accepts the following option:
16457
16458 @table @option
16459 @item planes
16460 Set which planes will be processed, unprocessed planes will be copied.
16461 By default value 0xf, all planes will be processed.
16462
16463 @item scale
16464 Set value which will be multiplied with filtered result.
16465
16466 @item delta
16467 Set value which will be added to filtered result.
16468 @end table
16469
16470 @section rotate
16471
16472 Rotate video by an arbitrary angle expressed in radians.
16473
16474 The filter accepts the following options:
16475
16476 A description of the optional parameters follows.
16477 @table @option
16478 @item angle, a
16479 Set an expression for the angle by which to rotate the input video
16480 clockwise, expressed as a number of radians. A negative value will
16481 result in a counter-clockwise rotation. By default it is set to "0".
16482
16483 This expression is evaluated for each frame.
16484
16485 @item out_w, ow
16486 Set the output width expression, default value is "iw".
16487 This expression is evaluated just once during configuration.
16488
16489 @item out_h, oh
16490 Set the output height expression, default value is "ih".
16491 This expression is evaluated just once during configuration.
16492
16493 @item bilinear
16494 Enable bilinear interpolation if set to 1, a value of 0 disables
16495 it. Default value is 1.
16496
16497 @item fillcolor, c
16498 Set the color used to fill the output area not covered by the rotated
16499 image. For the general syntax of this option, check the
16500 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16501 If the special value "none" is selected then no
16502 background is printed (useful for example if the background is never shown).
16503
16504 Default value is "black".
16505 @end table
16506
16507 The expressions for the angle and the output size can contain the
16508 following constants and functions:
16509
16510 @table @option
16511 @item n
16512 sequential number of the input frame, starting from 0. It is always NAN
16513 before the first frame is filtered.
16514
16515 @item t
16516 time in seconds of the input frame, it is set to 0 when the filter is
16517 configured. It is always NAN before the first frame is filtered.
16518
16519 @item hsub
16520 @item vsub
16521 horizontal and vertical chroma subsample values. For example for the
16522 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16523
16524 @item in_w, iw
16525 @item in_h, ih
16526 the input video width and height
16527
16528 @item out_w, ow
16529 @item out_h, oh
16530 the output width and height, that is the size of the padded area as
16531 specified by the @var{width} and @var{height} expressions
16532
16533 @item rotw(a)
16534 @item roth(a)
16535 the minimal width/height required for completely containing the input
16536 video rotated by @var{a} radians.
16537
16538 These are only available when computing the @option{out_w} and
16539 @option{out_h} expressions.
16540 @end table
16541
16542 @subsection Examples
16543
16544 @itemize
16545 @item
16546 Rotate the input by PI/6 radians clockwise:
16547 @example
16548 rotate=PI/6
16549 @end example
16550
16551 @item
16552 Rotate the input by PI/6 radians counter-clockwise:
16553 @example
16554 rotate=-PI/6
16555 @end example
16556
16557 @item
16558 Rotate the input by 45 degrees clockwise:
16559 @example
16560 rotate=45*PI/180
16561 @end example
16562
16563 @item
16564 Apply a constant rotation with period T, starting from an angle of PI/3:
16565 @example
16566 rotate=PI/3+2*PI*t/T
16567 @end example
16568
16569 @item
16570 Make the input video rotation oscillating with a period of T
16571 seconds and an amplitude of A radians:
16572 @example
16573 rotate=A*sin(2*PI/T*t)
16574 @end example
16575
16576 @item
16577 Rotate the video, output size is chosen so that the whole rotating
16578 input video is always completely contained in the output:
16579 @example
16580 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16581 @end example
16582
16583 @item
16584 Rotate the video, reduce the output size so that no background is ever
16585 shown:
16586 @example
16587 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16588 @end example
16589 @end itemize
16590
16591 @subsection Commands
16592
16593 The filter supports the following commands:
16594
16595 @table @option
16596 @item a, angle
16597 Set the angle expression.
16598 The command accepts the same syntax of the corresponding option.
16599
16600 If the specified expression is not valid, it is kept at its current
16601 value.
16602 @end table
16603
16604 @section sab
16605
16606 Apply Shape Adaptive Blur.
16607
16608 The filter accepts the following options:
16609
16610 @table @option
16611 @item luma_radius, lr
16612 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16613 value is 1.0. A greater value will result in a more blurred image, and
16614 in slower processing.
16615
16616 @item luma_pre_filter_radius, lpfr
16617 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16618 value is 1.0.
16619
16620 @item luma_strength, ls
16621 Set luma maximum difference between pixels to still be considered, must
16622 be a value in the 0.1-100.0 range, default value is 1.0.
16623
16624 @item chroma_radius, cr
16625 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16626 greater value will result in a more blurred image, and in slower
16627 processing.
16628
16629 @item chroma_pre_filter_radius, cpfr
16630 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16631
16632 @item chroma_strength, cs
16633 Set chroma maximum difference between pixels to still be considered,
16634 must be a value in the -0.9-100.0 range.
16635 @end table
16636
16637 Each chroma option value, if not explicitly specified, is set to the
16638 corresponding luma option value.
16639
16640 @anchor{scale}
16641 @section scale
16642
16643 Scale (resize) the input video, using the libswscale library.
16644
16645 The scale filter forces the output display aspect ratio to be the same
16646 of the input, by changing the output sample aspect ratio.
16647
16648 If the input image format is different from the format requested by
16649 the next filter, the scale filter will convert the input to the
16650 requested format.
16651
16652 @subsection Options
16653 The filter accepts the following options, or any of the options
16654 supported by the libswscale scaler.
16655
16656 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16657 the complete list of scaler options.
16658
16659 @table @option
16660 @item width, w
16661 @item height, h
16662 Set the output video dimension expression. Default value is the input
16663 dimension.
16664
16665 If the @var{width} or @var{w} value is 0, the input width is used for
16666 the output. If the @var{height} or @var{h} value is 0, the input height
16667 is used for the output.
16668
16669 If one and only one of the values is -n with n >= 1, the scale filter
16670 will use a value that maintains the aspect ratio of the input image,
16671 calculated from the other specified dimension. After that it will,
16672 however, make sure that the calculated dimension is divisible by n and
16673 adjust the value if necessary.
16674
16675 If both values are -n with n >= 1, the behavior will be identical to
16676 both values being set to 0 as previously detailed.
16677
16678 See below for the list of accepted constants for use in the dimension
16679 expression.
16680
16681 @item eval
16682 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16683
16684 @table @samp
16685 @item init
16686 Only evaluate expressions once during the filter initialization or when a command is processed.
16687
16688 @item frame
16689 Evaluate expressions for each incoming frame.
16690
16691 @end table
16692
16693 Default value is @samp{init}.
16694
16695
16696 @item interl
16697 Set the interlacing mode. It accepts the following values:
16698
16699 @table @samp
16700 @item 1
16701 Force interlaced aware scaling.
16702
16703 @item 0
16704 Do not apply interlaced scaling.
16705
16706 @item -1
16707 Select interlaced aware scaling depending on whether the source frames
16708 are flagged as interlaced or not.
16709 @end table
16710
16711 Default value is @samp{0}.
16712
16713 @item flags
16714 Set libswscale scaling flags. See
16715 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16716 complete list of values. If not explicitly specified the filter applies
16717 the default flags.
16718
16719
16720 @item param0, param1
16721 Set libswscale input parameters for scaling algorithms that need them. See
16722 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16723 complete documentation. If not explicitly specified the filter applies
16724 empty parameters.
16725
16726
16727
16728 @item size, s
16729 Set the video size. For the syntax of this option, check the
16730 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16731
16732 @item in_color_matrix
16733 @item out_color_matrix
16734 Set in/output YCbCr color space type.
16735
16736 This allows the autodetected value to be overridden as well as allows forcing
16737 a specific value used for the output and encoder.
16738
16739 If not specified, the color space type depends on the pixel format.
16740
16741 Possible values:
16742
16743 @table @samp
16744 @item auto
16745 Choose automatically.
16746
16747 @item bt709
16748 Format conforming to International Telecommunication Union (ITU)
16749 Recommendation BT.709.
16750
16751 @item fcc
16752 Set color space conforming to the United States Federal Communications
16753 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16754
16755 @item bt601
16756 @item bt470
16757 @item smpte170m
16758 Set color space conforming to:
16759
16760 @itemize
16761 @item
16762 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16763
16764 @item
16765 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16766
16767 @item
16768 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16769
16770 @end itemize
16771
16772 @item smpte240m
16773 Set color space conforming to SMPTE ST 240:1999.
16774
16775 @item bt2020
16776 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16777 @end table
16778
16779 @item in_range
16780 @item out_range
16781 Set in/output YCbCr sample range.
16782
16783 This allows the autodetected value to be overridden as well as allows forcing
16784 a specific value used for the output and encoder. If not specified, the
16785 range depends on the pixel format. Possible values:
16786
16787 @table @samp
16788 @item auto/unknown
16789 Choose automatically.
16790
16791 @item jpeg/full/pc
16792 Set full range (0-255 in case of 8-bit luma).
16793
16794 @item mpeg/limited/tv
16795 Set "MPEG" range (16-235 in case of 8-bit luma).
16796 @end table
16797
16798 @item force_original_aspect_ratio
16799 Enable decreasing or increasing output video width or height if necessary to
16800 keep the original aspect ratio. Possible values:
16801
16802 @table @samp
16803 @item disable
16804 Scale the video as specified and disable this feature.
16805
16806 @item decrease
16807 The output video dimensions will automatically be decreased if needed.
16808
16809 @item increase
16810 The output video dimensions will automatically be increased if needed.
16811
16812 @end table
16813
16814 One useful instance of this option is that when you know a specific device's
16815 maximum allowed resolution, you can use this to limit the output video to
16816 that, while retaining the aspect ratio. For example, device A allows
16817 1280x720 playback, and your video is 1920x800. Using this option (set it to
16818 decrease) and specifying 1280x720 to the command line makes the output
16819 1280x533.
16820
16821 Please note that this is a different thing than specifying -1 for @option{w}
16822 or @option{h}, you still need to specify the output resolution for this option
16823 to work.
16824
16825 @item force_divisible_by
16826 Ensures that both the output dimensions, width and height, are divisible by the
16827 given integer when used together with @option{force_original_aspect_ratio}. This
16828 works similar to using @code{-n} in the @option{w} and @option{h} options.
16829
16830 This option respects the value set for @option{force_original_aspect_ratio},
16831 increasing or decreasing the resolution accordingly. The video's aspect ratio
16832 may be slightly modified.
16833
16834 This option can be handy if you need to have a video fit within or exceed
16835 a defined resolution using @option{force_original_aspect_ratio} but also have
16836 encoder restrictions on width or height divisibility.
16837
16838 @end table
16839
16840 The values of the @option{w} and @option{h} options are expressions
16841 containing the following constants:
16842
16843 @table @var
16844 @item in_w
16845 @item in_h
16846 The input width and height
16847
16848 @item iw
16849 @item ih
16850 These are the same as @var{in_w} and @var{in_h}.
16851
16852 @item out_w
16853 @item out_h
16854 The output (scaled) width and height
16855
16856 @item ow
16857 @item oh
16858 These are the same as @var{out_w} and @var{out_h}
16859
16860 @item a
16861 The same as @var{iw} / @var{ih}
16862
16863 @item sar
16864 input sample aspect ratio
16865
16866 @item dar
16867 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16868
16869 @item hsub
16870 @item vsub
16871 horizontal and vertical input chroma subsample values. For example for the
16872 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16873
16874 @item ohsub
16875 @item ovsub
16876 horizontal and vertical output chroma subsample values. For example for the
16877 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16878
16879 @item n
16880 The (sequential) number of the input frame, starting from 0.
16881 Only available with @code{eval=frame}.
16882
16883 @item t
16884 The presentation timestamp of the input frame, expressed as a number of
16885 seconds. Only available with @code{eval=frame}.
16886
16887 @item pos
16888 The position (byte offset) of the frame in the input stream, or NaN if
16889 this information is unavailable and/or meaningless (for example in case of synthetic video).
16890 Only available with @code{eval=frame}.
16891 @end table
16892
16893 @subsection Examples
16894
16895 @itemize
16896 @item
16897 Scale the input video to a size of 200x100
16898 @example
16899 scale=w=200:h=100
16900 @end example
16901
16902 This is equivalent to:
16903 @example
16904 scale=200:100
16905 @end example
16906
16907 or:
16908 @example
16909 scale=200x100
16910 @end example
16911
16912 @item
16913 Specify a size abbreviation for the output size:
16914 @example
16915 scale=qcif
16916 @end example
16917
16918 which can also be written as:
16919 @example
16920 scale=size=qcif
16921 @end example
16922
16923 @item
16924 Scale the input to 2x:
16925 @example
16926 scale=w=2*iw:h=2*ih
16927 @end example
16928
16929 @item
16930 The above is the same as:
16931 @example
16932 scale=2*in_w:2*in_h
16933 @end example
16934
16935 @item
16936 Scale the input to 2x with forced interlaced scaling:
16937 @example
16938 scale=2*iw:2*ih:interl=1
16939 @end example
16940
16941 @item
16942 Scale the input to half size:
16943 @example
16944 scale=w=iw/2:h=ih/2
16945 @end example
16946
16947 @item
16948 Increase the width, and set the height to the same size:
16949 @example
16950 scale=3/2*iw:ow
16951 @end example
16952
16953 @item
16954 Seek Greek harmony:
16955 @example
16956 scale=iw:1/PHI*iw
16957 scale=ih*PHI:ih
16958 @end example
16959
16960 @item
16961 Increase the height, and set the width to 3/2 of the height:
16962 @example
16963 scale=w=3/2*oh:h=3/5*ih
16964 @end example
16965
16966 @item
16967 Increase the size, making the size a multiple of the chroma
16968 subsample values:
16969 @example
16970 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16971 @end example
16972
16973 @item
16974 Increase the width to a maximum of 500 pixels,
16975 keeping the same aspect ratio as the input:
16976 @example
16977 scale=w='min(500\, iw*3/2):h=-1'
16978 @end example
16979
16980 @item
16981 Make pixels square by combining scale and setsar:
16982 @example
16983 scale='trunc(ih*dar):ih',setsar=1/1
16984 @end example
16985
16986 @item
16987 Make pixels square by combining scale and setsar,
16988 making sure the resulting resolution is even (required by some codecs):
16989 @example
16990 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16991 @end example
16992 @end itemize
16993
16994 @subsection Commands
16995
16996 This filter supports the following commands:
16997 @table @option
16998 @item width, w
16999 @item height, h
17000 Set the output video dimension expression.
17001 The command accepts the same syntax of the corresponding option.
17002
17003 If the specified expression is not valid, it is kept at its current
17004 value.
17005 @end table
17006
17007 @section scale_npp
17008
17009 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17010 format conversion on CUDA video frames. Setting the output width and height
17011 works in the same way as for the @var{scale} filter.
17012
17013 The following additional options are accepted:
17014 @table @option
17015 @item format
17016 The pixel format of the output CUDA frames. If set to the string "same" (the
17017 default), the input format will be kept. Note that automatic format negotiation
17018 and conversion is not yet supported for hardware frames
17019
17020 @item interp_algo
17021 The interpolation algorithm used for resizing. One of the following:
17022 @table @option
17023 @item nn
17024 Nearest neighbour.
17025
17026 @item linear
17027 @item cubic
17028 @item cubic2p_bspline
17029 2-parameter cubic (B=1, C=0)
17030
17031 @item cubic2p_catmullrom
17032 2-parameter cubic (B=0, C=1/2)
17033
17034 @item cubic2p_b05c03
17035 2-parameter cubic (B=1/2, C=3/10)
17036
17037 @item super
17038 Supersampling
17039
17040 @item lanczos
17041 @end table
17042
17043 @item force_original_aspect_ratio
17044 Enable decreasing or increasing output video width or height if necessary to
17045 keep the original aspect ratio. Possible values:
17046
17047 @table @samp
17048 @item disable
17049 Scale the video as specified and disable this feature.
17050
17051 @item decrease
17052 The output video dimensions will automatically be decreased if needed.
17053
17054 @item increase
17055 The output video dimensions will automatically be increased if needed.
17056
17057 @end table
17058
17059 One useful instance of this option is that when you know a specific device's
17060 maximum allowed resolution, you can use this to limit the output video to
17061 that, while retaining the aspect ratio. For example, device A allows
17062 1280x720 playback, and your video is 1920x800. Using this option (set it to
17063 decrease) and specifying 1280x720 to the command line makes the output
17064 1280x533.
17065
17066 Please note that this is a different thing than specifying -1 for @option{w}
17067 or @option{h}, you still need to specify the output resolution for this option
17068 to work.
17069
17070 @item force_divisible_by
17071 Ensures that both the output dimensions, width and height, are divisible by the
17072 given integer when used together with @option{force_original_aspect_ratio}. This
17073 works similar to using @code{-n} in the @option{w} and @option{h} options.
17074
17075 This option respects the value set for @option{force_original_aspect_ratio},
17076 increasing or decreasing the resolution accordingly. The video's aspect ratio
17077 may be slightly modified.
17078
17079 This option can be handy if you need to have a video fit within or exceed
17080 a defined resolution using @option{force_original_aspect_ratio} but also have
17081 encoder restrictions on width or height divisibility.
17082
17083 @end table
17084
17085 @section scale2ref
17086
17087 Scale (resize) the input video, based on a reference video.
17088
17089 See the scale filter for available options, scale2ref supports the same but
17090 uses the reference video instead of the main input as basis. scale2ref also
17091 supports the following additional constants for the @option{w} and
17092 @option{h} options:
17093
17094 @table @var
17095 @item main_w
17096 @item main_h
17097 The main input video's width and height
17098
17099 @item main_a
17100 The same as @var{main_w} / @var{main_h}
17101
17102 @item main_sar
17103 The main input video's sample aspect ratio
17104
17105 @item main_dar, mdar
17106 The main input video's display aspect ratio. Calculated from
17107 @code{(main_w / main_h) * main_sar}.
17108
17109 @item main_hsub
17110 @item main_vsub
17111 The main input video's horizontal and vertical chroma subsample values.
17112 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17113 is 1.
17114
17115 @item main_n
17116 The (sequential) number of the main input frame, starting from 0.
17117 Only available with @code{eval=frame}.
17118
17119 @item main_t
17120 The presentation timestamp of the main input frame, expressed as a number of
17121 seconds. Only available with @code{eval=frame}.
17122
17123 @item main_pos
17124 The position (byte offset) of the frame in the main input stream, or NaN if
17125 this information is unavailable and/or meaningless (for example in case of synthetic video).
17126 Only available with @code{eval=frame}.
17127 @end table
17128
17129 @subsection Examples
17130
17131 @itemize
17132 @item
17133 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17134 @example
17135 'scale2ref[b][a];[a][b]overlay'
17136 @end example
17137
17138 @item
17139 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17140 @example
17141 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17142 @end example
17143 @end itemize
17144
17145 @subsection Commands
17146
17147 This filter supports the following commands:
17148 @table @option
17149 @item width, w
17150 @item height, h
17151 Set the output video dimension expression.
17152 The command accepts the same syntax of the corresponding option.
17153
17154 If the specified expression is not valid, it is kept at its current
17155 value.
17156 @end table
17157
17158 @section scroll
17159 Scroll input video horizontally and/or vertically by constant speed.
17160
17161 The filter accepts the following options:
17162 @table @option
17163 @item horizontal, h
17164 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17165 Negative values changes scrolling direction.
17166
17167 @item vertical, v
17168 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17169 Negative values changes scrolling direction.
17170
17171 @item hpos
17172 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17173
17174 @item vpos
17175 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17176 @end table
17177
17178 @subsection Commands
17179
17180 This filter supports the following @ref{commands}:
17181 @table @option
17182 @item horizontal, h
17183 Set the horizontal scrolling speed.
17184 @item vertical, v
17185 Set the vertical scrolling speed.
17186 @end table
17187
17188 @anchor{scdet}
17189 @section scdet
17190
17191 Detect video scene change.
17192
17193 This filter sets frame metadata with mafd between frame, the scene score, and
17194 forward the frame to the next filter, so they can use these metadata to detect
17195 scene change or others.
17196
17197 In addition, this filter logs a message and sets frame metadata when it detects
17198 a scene change by @option{threshold}.
17199
17200 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17201
17202 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17203 to detect scene change.
17204
17205 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17206 detect scene change with @option{threshold}.
17207
17208 The filter accepts the following options:
17209
17210 @table @option
17211 @item threshold, t
17212 Set the scene change detection threshold as a percentage of maximum change. Good
17213 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17214 @code{[0., 100.]}.
17215
17216 Default value is @code{10.}.
17217
17218 @item sc_pass, s
17219 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17220 You can enable it if you want to get snapshot of scene change frames only.
17221 @end table
17222
17223 @anchor{selectivecolor}
17224 @section selectivecolor
17225
17226 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17227 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17228 by the "purity" of the color (that is, how saturated it already is).
17229
17230 This filter is similar to the Adobe Photoshop Selective Color tool.
17231
17232 The filter accepts the following options:
17233
17234 @table @option
17235 @item correction_method
17236 Select color correction method.
17237
17238 Available values are:
17239 @table @samp
17240 @item absolute
17241 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17242 component value).
17243 @item relative
17244 Specified adjustments are relative to the original component value.
17245 @end table
17246 Default is @code{absolute}.
17247 @item reds
17248 Adjustments for red pixels (pixels where the red component is the maximum)
17249 @item yellows
17250 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17251 @item greens
17252 Adjustments for green pixels (pixels where the green component is the maximum)
17253 @item cyans
17254 Adjustments for cyan pixels (pixels where the red component is the minimum)
17255 @item blues
17256 Adjustments for blue pixels (pixels where the blue component is the maximum)
17257 @item magentas
17258 Adjustments for magenta pixels (pixels where the green component is the minimum)
17259 @item whites
17260 Adjustments for white pixels (pixels where all components are greater than 128)
17261 @item neutrals
17262 Adjustments for all pixels except pure black and pure white
17263 @item blacks
17264 Adjustments for black pixels (pixels where all components are lesser than 128)
17265 @item psfile
17266 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17267 @end table
17268
17269 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17270 4 space separated floating point adjustment values in the [-1,1] range,
17271 respectively to adjust the amount of cyan, magenta, yellow and black for the
17272 pixels of its range.
17273
17274 @subsection Examples
17275
17276 @itemize
17277 @item
17278 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17279 increase magenta by 27% in blue areas:
17280 @example
17281 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17282 @end example
17283
17284 @item
17285 Use a Photoshop selective color preset:
17286 @example
17287 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17288 @end example
17289 @end itemize
17290
17291 @anchor{separatefields}
17292 @section separatefields
17293
17294 The @code{separatefields} takes a frame-based video input and splits
17295 each frame into its components fields, producing a new half height clip
17296 with twice the frame rate and twice the frame count.
17297
17298 This filter use field-dominance information in frame to decide which
17299 of each pair of fields to place first in the output.
17300 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17301
17302 @section setdar, setsar
17303
17304 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17305 output video.
17306
17307 This is done by changing the specified Sample (aka Pixel) Aspect
17308 Ratio, according to the following equation:
17309 @example
17310 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17311 @end example
17312
17313 Keep in mind that the @code{setdar} filter does not modify the pixel
17314 dimensions of the video frame. Also, the display aspect ratio set by
17315 this filter may be changed by later filters in the filterchain,
17316 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17317 applied.
17318
17319 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17320 the filter output video.
17321
17322 Note that as a consequence of the application of this filter, the
17323 output display aspect ratio will change according to the equation
17324 above.
17325
17326 Keep in mind that the sample aspect ratio set by the @code{setsar}
17327 filter may be changed by later filters in the filterchain, e.g. if
17328 another "setsar" or a "setdar" filter is applied.
17329
17330 It accepts the following parameters:
17331
17332 @table @option
17333 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17334 Set the aspect ratio used by the filter.
17335
17336 The parameter can be a floating point number string, an expression, or
17337 a string of the form @var{num}:@var{den}, where @var{num} and
17338 @var{den} are the numerator and denominator of the aspect ratio. If
17339 the parameter is not specified, it is assumed the value "0".
17340 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17341 should be escaped.
17342
17343 @item max
17344 Set the maximum integer value to use for expressing numerator and
17345 denominator when reducing the expressed aspect ratio to a rational.
17346 Default value is @code{100}.
17347
17348 @end table
17349
17350 The parameter @var{sar} is an expression containing
17351 the following constants:
17352
17353 @table @option
17354 @item E, PI, PHI
17355 These are approximated values for the mathematical constants e
17356 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17357
17358 @item w, h
17359 The input width and height.
17360
17361 @item a
17362 These are the same as @var{w} / @var{h}.
17363
17364 @item sar
17365 The input sample aspect ratio.
17366
17367 @item dar
17368 The input display aspect ratio. It is the same as
17369 (@var{w} / @var{h}) * @var{sar}.
17370
17371 @item hsub, vsub
17372 Horizontal and vertical chroma subsample values. For example, for the
17373 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17374 @end table
17375
17376 @subsection Examples
17377
17378 @itemize
17379
17380 @item
17381 To change the display aspect ratio to 16:9, specify one of the following:
17382 @example
17383 setdar=dar=1.77777
17384 setdar=dar=16/9
17385 @end example
17386
17387 @item
17388 To change the sample aspect ratio to 10:11, specify:
17389 @example
17390 setsar=sar=10/11
17391 @end example
17392
17393 @item
17394 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17395 1000 in the aspect ratio reduction, use the command:
17396 @example
17397 setdar=ratio=16/9:max=1000
17398 @end example
17399
17400 @end itemize
17401
17402 @anchor{setfield}
17403 @section setfield
17404
17405 Force field for the output video frame.
17406
17407 The @code{setfield} filter marks the interlace type field for the
17408 output frames. It does not change the input frame, but only sets the
17409 corresponding property, which affects how the frame is treated by
17410 following filters (e.g. @code{fieldorder} or @code{yadif}).
17411
17412 The filter accepts the following options:
17413
17414 @table @option
17415
17416 @item mode
17417 Available values are:
17418
17419 @table @samp
17420 @item auto
17421 Keep the same field property.
17422
17423 @item bff
17424 Mark the frame as bottom-field-first.
17425
17426 @item tff
17427 Mark the frame as top-field-first.
17428
17429 @item prog
17430 Mark the frame as progressive.
17431 @end table
17432 @end table
17433
17434 @anchor{setparams}
17435 @section setparams
17436
17437 Force frame parameter for the output video frame.
17438
17439 The @code{setparams} filter marks interlace and color range for the
17440 output frames. It does not change the input frame, but only sets the
17441 corresponding property, which affects how the frame is treated by
17442 filters/encoders.
17443
17444 @table @option
17445 @item field_mode
17446 Available values are:
17447
17448 @table @samp
17449 @item auto
17450 Keep the same field property (default).
17451
17452 @item bff
17453 Mark the frame as bottom-field-first.
17454
17455 @item tff
17456 Mark the frame as top-field-first.
17457
17458 @item prog
17459 Mark the frame as progressive.
17460 @end table
17461
17462 @item range
17463 Available values are:
17464
17465 @table @samp
17466 @item auto
17467 Keep the same color range property (default).
17468
17469 @item unspecified, unknown
17470 Mark the frame as unspecified color range.
17471
17472 @item limited, tv, mpeg
17473 Mark the frame as limited range.
17474
17475 @item full, pc, jpeg
17476 Mark the frame as full range.
17477 @end table
17478
17479 @item color_primaries
17480 Set the color primaries.
17481 Available values are:
17482
17483 @table @samp
17484 @item auto
17485 Keep the same color primaries property (default).
17486
17487 @item bt709
17488 @item unknown
17489 @item bt470m
17490 @item bt470bg
17491 @item smpte170m
17492 @item smpte240m
17493 @item film
17494 @item bt2020
17495 @item smpte428
17496 @item smpte431
17497 @item smpte432
17498 @item jedec-p22
17499 @end table
17500
17501 @item color_trc
17502 Set the color transfer.
17503 Available values are:
17504
17505 @table @samp
17506 @item auto
17507 Keep the same color trc property (default).
17508
17509 @item bt709
17510 @item unknown
17511 @item bt470m
17512 @item bt470bg
17513 @item smpte170m
17514 @item smpte240m
17515 @item linear
17516 @item log100
17517 @item log316
17518 @item iec61966-2-4
17519 @item bt1361e
17520 @item iec61966-2-1
17521 @item bt2020-10
17522 @item bt2020-12
17523 @item smpte2084
17524 @item smpte428
17525 @item arib-std-b67
17526 @end table
17527
17528 @item colorspace
17529 Set the colorspace.
17530 Available values are:
17531
17532 @table @samp
17533 @item auto
17534 Keep the same colorspace property (default).
17535
17536 @item gbr
17537 @item bt709
17538 @item unknown
17539 @item fcc
17540 @item bt470bg
17541 @item smpte170m
17542 @item smpte240m
17543 @item ycgco
17544 @item bt2020nc
17545 @item bt2020c
17546 @item smpte2085
17547 @item chroma-derived-nc
17548 @item chroma-derived-c
17549 @item ictcp
17550 @end table
17551 @end table
17552
17553 @section showinfo
17554
17555 Show a line containing various information for each input video frame.
17556 The input video is not modified.
17557
17558 This filter supports the following options:
17559
17560 @table @option
17561 @item checksum
17562 Calculate checksums of each plane. By default enabled.
17563 @end table
17564
17565 The shown line contains a sequence of key/value pairs of the form
17566 @var{key}:@var{value}.
17567
17568 The following values are shown in the output:
17569
17570 @table @option
17571 @item n
17572 The (sequential) number of the input frame, starting from 0.
17573
17574 @item pts
17575 The Presentation TimeStamp of the input frame, expressed as a number of
17576 time base units. The time base unit depends on the filter input pad.
17577
17578 @item pts_time
17579 The Presentation TimeStamp of the input frame, expressed as a number of
17580 seconds.
17581
17582 @item pos
17583 The position of the frame in the input stream, or -1 if this information is
17584 unavailable and/or meaningless (for example in case of synthetic video).
17585
17586 @item fmt
17587 The pixel format name.
17588
17589 @item sar
17590 The sample aspect ratio of the input frame, expressed in the form
17591 @var{num}/@var{den}.
17592
17593 @item s
17594 The size of the input frame. For the syntax of this option, check the
17595 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17596
17597 @item i
17598 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17599 for bottom field first).
17600
17601 @item iskey
17602 This is 1 if the frame is a key frame, 0 otherwise.
17603
17604 @item type
17605 The picture type of the input frame ("I" for an I-frame, "P" for a
17606 P-frame, "B" for a B-frame, or "?" for an unknown type).
17607 Also refer to the documentation of the @code{AVPictureType} enum and of
17608 the @code{av_get_picture_type_char} function defined in
17609 @file{libavutil/avutil.h}.
17610
17611 @item checksum
17612 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17613
17614 @item plane_checksum
17615 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17616 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17617
17618 @item mean
17619 The mean value of pixels in each plane of the input frame, expressed in the form
17620 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17621
17622 @item stdev
17623 The standard deviation of pixel values in each plane of the input frame, expressed
17624 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17625
17626 @end table
17627
17628 @section showpalette
17629
17630 Displays the 256 colors palette of each frame. This filter is only relevant for
17631 @var{pal8} pixel format frames.
17632
17633 It accepts the following option:
17634
17635 @table @option
17636 @item s
17637 Set the size of the box used to represent one palette color entry. Default is
17638 @code{30} (for a @code{30x30} pixel box).
17639 @end table
17640
17641 @section shuffleframes
17642
17643 Reorder and/or duplicate and/or drop video frames.
17644
17645 It accepts the following parameters:
17646
17647 @table @option
17648 @item mapping
17649 Set the destination indexes of input frames.
17650 This is space or '|' separated list of indexes that maps input frames to output
17651 frames. Number of indexes also sets maximal value that each index may have.
17652 '-1' index have special meaning and that is to drop frame.
17653 @end table
17654
17655 The first frame has the index 0. The default is to keep the input unchanged.
17656
17657 @subsection Examples
17658
17659 @itemize
17660 @item
17661 Swap second and third frame of every three frames of the input:
17662 @example
17663 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17664 @end example
17665
17666 @item
17667 Swap 10th and 1st frame of every ten frames of the input:
17668 @example
17669 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17670 @end example
17671 @end itemize
17672
17673 @section shuffleplanes
17674
17675 Reorder and/or duplicate video planes.
17676
17677 It accepts the following parameters:
17678
17679 @table @option
17680
17681 @item map0
17682 The index of the input plane to be used as the first output plane.
17683
17684 @item map1
17685 The index of the input plane to be used as the second output plane.
17686
17687 @item map2
17688 The index of the input plane to be used as the third output plane.
17689
17690 @item map3
17691 The index of the input plane to be used as the fourth output plane.
17692
17693 @end table
17694
17695 The first plane has the index 0. The default is to keep the input unchanged.
17696
17697 @subsection Examples
17698
17699 @itemize
17700 @item
17701 Swap the second and third planes of the input:
17702 @example
17703 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17704 @end example
17705 @end itemize
17706
17707 @anchor{signalstats}
17708 @section signalstats
17709 Evaluate various visual metrics that assist in determining issues associated
17710 with the digitization of analog video media.
17711
17712 By default the filter will log these metadata values:
17713
17714 @table @option
17715 @item YMIN
17716 Display the minimal Y value contained within the input frame. Expressed in
17717 range of [0-255].
17718
17719 @item YLOW
17720 Display the Y value at the 10% percentile within the input frame. Expressed in
17721 range of [0-255].
17722
17723 @item YAVG
17724 Display the average Y value within the input frame. Expressed in range of
17725 [0-255].
17726
17727 @item YHIGH
17728 Display the Y value at the 90% percentile within the input frame. Expressed in
17729 range of [0-255].
17730
17731 @item YMAX
17732 Display the maximum Y value contained within the input frame. Expressed in
17733 range of [0-255].
17734
17735 @item UMIN
17736 Display the minimal U value contained within the input frame. Expressed in
17737 range of [0-255].
17738
17739 @item ULOW
17740 Display the U value at the 10% percentile within the input frame. Expressed in
17741 range of [0-255].
17742
17743 @item UAVG
17744 Display the average U value within the input frame. Expressed in range of
17745 [0-255].
17746
17747 @item UHIGH
17748 Display the U value at the 90% percentile within the input frame. Expressed in
17749 range of [0-255].
17750
17751 @item UMAX
17752 Display the maximum U value contained within the input frame. Expressed in
17753 range of [0-255].
17754
17755 @item VMIN
17756 Display the minimal V value contained within the input frame. Expressed in
17757 range of [0-255].
17758
17759 @item VLOW
17760 Display the V value at the 10% percentile within the input frame. Expressed in
17761 range of [0-255].
17762
17763 @item VAVG
17764 Display the average V value within the input frame. Expressed in range of
17765 [0-255].
17766
17767 @item VHIGH
17768 Display the V value at the 90% percentile within the input frame. Expressed in
17769 range of [0-255].
17770
17771 @item VMAX
17772 Display the maximum V value contained within the input frame. Expressed in
17773 range of [0-255].
17774
17775 @item SATMIN
17776 Display the minimal saturation value contained within the input frame.
17777 Expressed in range of [0-~181.02].
17778
17779 @item SATLOW
17780 Display the saturation value at the 10% percentile within the input frame.
17781 Expressed in range of [0-~181.02].
17782
17783 @item SATAVG
17784 Display the average saturation value within the input frame. Expressed in range
17785 of [0-~181.02].
17786
17787 @item SATHIGH
17788 Display the saturation value at the 90% percentile within the input frame.
17789 Expressed in range of [0-~181.02].
17790
17791 @item SATMAX
17792 Display the maximum saturation value contained within the input frame.
17793 Expressed in range of [0-~181.02].
17794
17795 @item HUEMED
17796 Display the median value for hue within the input frame. Expressed in range of
17797 [0-360].
17798
17799 @item HUEAVG
17800 Display the average value for hue within the input frame. Expressed in range of
17801 [0-360].
17802
17803 @item YDIF
17804 Display the average of sample value difference between all values of the Y
17805 plane in the current frame and corresponding values of the previous input frame.
17806 Expressed in range of [0-255].
17807
17808 @item UDIF
17809 Display the average of sample value difference between all values of the U
17810 plane in the current frame and corresponding values of the previous input frame.
17811 Expressed in range of [0-255].
17812
17813 @item VDIF
17814 Display the average of sample value difference between all values of the V
17815 plane in the current frame and corresponding values of the previous input frame.
17816 Expressed in range of [0-255].
17817
17818 @item YBITDEPTH
17819 Display bit depth of Y plane in current frame.
17820 Expressed in range of [0-16].
17821
17822 @item UBITDEPTH
17823 Display bit depth of U plane in current frame.
17824 Expressed in range of [0-16].
17825
17826 @item VBITDEPTH
17827 Display bit depth of V plane in current frame.
17828 Expressed in range of [0-16].
17829 @end table
17830
17831 The filter accepts the following options:
17832
17833 @table @option
17834 @item stat
17835 @item out
17836
17837 @option{stat} specify an additional form of image analysis.
17838 @option{out} output video with the specified type of pixel highlighted.
17839
17840 Both options accept the following values:
17841
17842 @table @samp
17843 @item tout
17844 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17845 unlike the neighboring pixels of the same field. Examples of temporal outliers
17846 include the results of video dropouts, head clogs, or tape tracking issues.
17847
17848 @item vrep
17849 Identify @var{vertical line repetition}. Vertical line repetition includes
17850 similar rows of pixels within a frame. In born-digital video vertical line
17851 repetition is common, but this pattern is uncommon in video digitized from an
17852 analog source. When it occurs in video that results from the digitization of an
17853 analog source it can indicate concealment from a dropout compensator.
17854
17855 @item brng
17856 Identify pixels that fall outside of legal broadcast range.
17857 @end table
17858
17859 @item color, c
17860 Set the highlight color for the @option{out} option. The default color is
17861 yellow.
17862 @end table
17863
17864 @subsection Examples
17865
17866 @itemize
17867 @item
17868 Output data of various video metrics:
17869 @example
17870 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17871 @end example
17872
17873 @item
17874 Output specific data about the minimum and maximum values of the Y plane per frame:
17875 @example
17876 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17877 @end example
17878
17879 @item
17880 Playback video while highlighting pixels that are outside of broadcast range in red.
17881 @example
17882 ffplay example.mov -vf signalstats="out=brng:color=red"
17883 @end example
17884
17885 @item
17886 Playback video with signalstats metadata drawn over the frame.
17887 @example
17888 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17889 @end example
17890
17891 The contents of signalstat_drawtext.txt used in the command are:
17892 @example
17893 time %@{pts:hms@}
17894 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17895 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17896 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17897 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17898
17899 @end example
17900 @end itemize
17901
17902 @anchor{signature}
17903 @section signature
17904
17905 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17906 input. In this case the matching between the inputs can be calculated additionally.
17907 The filter always passes through the first input. The signature of each stream can
17908 be written into a file.
17909
17910 It accepts the following options:
17911
17912 @table @option
17913 @item detectmode
17914 Enable or disable the matching process.
17915
17916 Available values are:
17917
17918 @table @samp
17919 @item off
17920 Disable the calculation of a matching (default).
17921 @item full
17922 Calculate the matching for the whole video and output whether the whole video
17923 matches or only parts.
17924 @item fast
17925 Calculate only until a matching is found or the video ends. Should be faster in
17926 some cases.
17927 @end table
17928
17929 @item nb_inputs
17930 Set the number of inputs. The option value must be a non negative integer.
17931 Default value is 1.
17932
17933 @item filename
17934 Set the path to which the output is written. If there is more than one input,
17935 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17936 integer), that will be replaced with the input number. If no filename is
17937 specified, no output will be written. This is the default.
17938
17939 @item format
17940 Choose the output format.
17941
17942 Available values are:
17943
17944 @table @samp
17945 @item binary
17946 Use the specified binary representation (default).
17947 @item xml
17948 Use the specified xml representation.
17949 @end table
17950
17951 @item th_d
17952 Set threshold to detect one word as similar. The option value must be an integer
17953 greater than zero. The default value is 9000.
17954
17955 @item th_dc
17956 Set threshold to detect all words as similar. The option value must be an integer
17957 greater than zero. The default value is 60000.
17958
17959 @item th_xh
17960 Set threshold to detect frames as similar. The option value must be an integer
17961 greater than zero. The default value is 116.
17962
17963 @item th_di
17964 Set the minimum length of a sequence in frames to recognize it as matching
17965 sequence. The option value must be a non negative integer value.
17966 The default value is 0.
17967
17968 @item th_it
17969 Set the minimum relation, that matching frames to all frames must have.
17970 The option value must be a double value between 0 and 1. The default value is 0.5.
17971 @end table
17972
17973 @subsection Examples
17974
17975 @itemize
17976 @item
17977 To calculate the signature of an input video and store it in signature.bin:
17978 @example
17979 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17980 @end example
17981
17982 @item
17983 To detect whether two videos match and store the signatures in XML format in
17984 signature0.xml and signature1.xml:
17985 @example
17986 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 -
17987 @end example
17988
17989 @end itemize
17990
17991 @anchor{smartblur}
17992 @section smartblur
17993
17994 Blur the input video without impacting the outlines.
17995
17996 It accepts the following options:
17997
17998 @table @option
17999 @item luma_radius, lr
18000 Set the luma radius. The option value must be a float number in
18001 the range [0.1,5.0] that specifies the variance of the gaussian filter
18002 used to blur the image (slower if larger). Default value is 1.0.
18003
18004 @item luma_strength, ls
18005 Set the luma strength. The option value must be a float number
18006 in the range [-1.0,1.0] that configures the blurring. A value included
18007 in [0.0,1.0] will blur the image whereas a value included in
18008 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18009
18010 @item luma_threshold, lt
18011 Set the luma threshold used as a coefficient to determine
18012 whether a pixel should be blurred or not. The option value must be an
18013 integer in the range [-30,30]. A value of 0 will filter all the image,
18014 a value included in [0,30] will filter flat areas and a value included
18015 in [-30,0] will filter edges. Default value is 0.
18016
18017 @item chroma_radius, cr
18018 Set the chroma radius. The option value must be a float number in
18019 the range [0.1,5.0] that specifies the variance of the gaussian filter
18020 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18021
18022 @item chroma_strength, cs
18023 Set the chroma strength. The option value must be a float number
18024 in the range [-1.0,1.0] that configures the blurring. A value included
18025 in [0.0,1.0] will blur the image whereas a value included in
18026 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18027
18028 @item chroma_threshold, ct
18029 Set the chroma threshold used as a coefficient to determine
18030 whether a pixel should be blurred or not. The option value must be an
18031 integer in the range [-30,30]. A value of 0 will filter all the image,
18032 a value included in [0,30] will filter flat areas and a value included
18033 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18034 @end table
18035
18036 If a chroma option is not explicitly set, the corresponding luma value
18037 is set.
18038
18039 @section sobel
18040 Apply sobel operator to input video stream.
18041
18042 The filter accepts the following option:
18043
18044 @table @option
18045 @item planes
18046 Set which planes will be processed, unprocessed planes will be copied.
18047 By default value 0xf, all planes will be processed.
18048
18049 @item scale
18050 Set value which will be multiplied with filtered result.
18051
18052 @item delta
18053 Set value which will be added to filtered result.
18054 @end table
18055
18056 @anchor{spp}
18057 @section spp
18058
18059 Apply a simple postprocessing filter that compresses and decompresses the image
18060 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18061 and average the results.
18062
18063 The filter accepts the following options:
18064
18065 @table @option
18066 @item quality
18067 Set quality. This option defines the number of levels for averaging. It accepts
18068 an integer in the range 0-6. If set to @code{0}, the filter will have no
18069 effect. A value of @code{6} means the higher quality. For each increment of
18070 that value the speed drops by a factor of approximately 2.  Default value is
18071 @code{3}.
18072
18073 @item qp
18074 Force a constant quantization parameter. If not set, the filter will use the QP
18075 from the video stream (if available).
18076
18077 @item mode
18078 Set thresholding mode. Available modes are:
18079
18080 @table @samp
18081 @item hard
18082 Set hard thresholding (default).
18083 @item soft
18084 Set soft thresholding (better de-ringing effect, but likely blurrier).
18085 @end table
18086
18087 @item use_bframe_qp
18088 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18089 option may cause flicker since the B-Frames have often larger QP. Default is
18090 @code{0} (not enabled).
18091 @end table
18092
18093 @subsection Commands
18094
18095 This filter supports the following commands:
18096 @table @option
18097 @item quality, level
18098 Set quality level. The value @code{max} can be used to set the maximum level,
18099 currently @code{6}.
18100 @end table
18101
18102 @anchor{sr}
18103 @section sr
18104
18105 Scale the input by applying one of the super-resolution methods based on
18106 convolutional neural networks. Supported models:
18107
18108 @itemize
18109 @item
18110 Super-Resolution Convolutional Neural Network model (SRCNN).
18111 See @url{https://arxiv.org/abs/1501.00092}.
18112
18113 @item
18114 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18115 See @url{https://arxiv.org/abs/1609.05158}.
18116 @end itemize
18117
18118 Training scripts as well as scripts for model file (.pb) saving can be found at
18119 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18120 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18121
18122 Native model files (.model) can be generated from TensorFlow model
18123 files (.pb) by using tools/python/convert.py
18124
18125 The filter accepts the following options:
18126
18127 @table @option
18128 @item dnn_backend
18129 Specify which DNN backend to use for model loading and execution. This option accepts
18130 the following values:
18131
18132 @table @samp
18133 @item native
18134 Native implementation of DNN loading and execution.
18135
18136 @item tensorflow
18137 TensorFlow backend. To enable this backend you
18138 need to install the TensorFlow for C library (see
18139 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18140 @code{--enable-libtensorflow}
18141 @end table
18142
18143 Default value is @samp{native}.
18144
18145 @item model
18146 Set path to model file specifying network architecture and its parameters.
18147 Note that different backends use different file formats. TensorFlow backend
18148 can load files for both formats, while native backend can load files for only
18149 its format.
18150
18151 @item scale_factor
18152 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18153 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18154 input upscaled using bicubic upscaling with proper scale factor.
18155 @end table
18156
18157 This feature can also be finished with @ref{dnn_processing} filter.
18158
18159 @section ssim
18160
18161 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18162
18163 This filter takes in input two input videos, the first input is
18164 considered the "main" source and is passed unchanged to the
18165 output. The second input is used as a "reference" video for computing
18166 the SSIM.
18167
18168 Both video inputs must have the same resolution and pixel format for
18169 this filter to work correctly. Also it assumes that both inputs
18170 have the same number of frames, which are compared one by one.
18171
18172 The filter stores the calculated SSIM of each frame.
18173
18174 The description of the accepted parameters follows.
18175
18176 @table @option
18177 @item stats_file, f
18178 If specified the filter will use the named file to save the SSIM of
18179 each individual frame. When filename equals "-" the data is sent to
18180 standard output.
18181 @end table
18182
18183 The file printed if @var{stats_file} is selected, contains a sequence of
18184 key/value pairs of the form @var{key}:@var{value} for each compared
18185 couple of frames.
18186
18187 A description of each shown parameter follows:
18188
18189 @table @option
18190 @item n
18191 sequential number of the input frame, starting from 1
18192
18193 @item Y, U, V, R, G, B
18194 SSIM of the compared frames for the component specified by the suffix.
18195
18196 @item All
18197 SSIM of the compared frames for the whole frame.
18198
18199 @item dB
18200 Same as above but in dB representation.
18201 @end table
18202
18203 This filter also supports the @ref{framesync} options.
18204
18205 @subsection Examples
18206 @itemize
18207 @item
18208 For example:
18209 @example
18210 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18211 [main][ref] ssim="stats_file=stats.log" [out]
18212 @end example
18213
18214 On this example the input file being processed is compared with the
18215 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18216 is stored in @file{stats.log}.
18217
18218 @item
18219 Another example with both psnr and ssim at same time:
18220 @example
18221 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18222 @end example
18223
18224 @item
18225 Another example with different containers:
18226 @example
18227 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 -
18228 @end example
18229 @end itemize
18230
18231 @section stereo3d
18232
18233 Convert between different stereoscopic image formats.
18234
18235 The filters accept the following options:
18236
18237 @table @option
18238 @item in
18239 Set stereoscopic image format of input.
18240
18241 Available values for input image formats are:
18242 @table @samp
18243 @item sbsl
18244 side by side parallel (left eye left, right eye right)
18245
18246 @item sbsr
18247 side by side crosseye (right eye left, left eye right)
18248
18249 @item sbs2l
18250 side by side parallel with half width resolution
18251 (left eye left, right eye right)
18252
18253 @item sbs2r
18254 side by side crosseye with half width resolution
18255 (right eye left, left eye right)
18256
18257 @item abl
18258 @item tbl
18259 above-below (left eye above, right eye below)
18260
18261 @item abr
18262 @item tbr
18263 above-below (right eye above, left eye below)
18264
18265 @item ab2l
18266 @item tb2l
18267 above-below with half height resolution
18268 (left eye above, right eye below)
18269
18270 @item ab2r
18271 @item tb2r
18272 above-below with half height resolution
18273 (right eye above, left eye below)
18274
18275 @item al
18276 alternating frames (left eye first, right eye second)
18277
18278 @item ar
18279 alternating frames (right eye first, left eye second)
18280
18281 @item irl
18282 interleaved rows (left eye has top row, right eye starts on next row)
18283
18284 @item irr
18285 interleaved rows (right eye has top row, left eye starts on next row)
18286
18287 @item icl
18288 interleaved columns, left eye first
18289
18290 @item icr
18291 interleaved columns, right eye first
18292
18293 Default value is @samp{sbsl}.
18294 @end table
18295
18296 @item out
18297 Set stereoscopic image format of output.
18298
18299 @table @samp
18300 @item sbsl
18301 side by side parallel (left eye left, right eye right)
18302
18303 @item sbsr
18304 side by side crosseye (right eye left, left eye right)
18305
18306 @item sbs2l
18307 side by side parallel with half width resolution
18308 (left eye left, right eye right)
18309
18310 @item sbs2r
18311 side by side crosseye with half width resolution
18312 (right eye left, left eye right)
18313
18314 @item abl
18315 @item tbl
18316 above-below (left eye above, right eye below)
18317
18318 @item abr
18319 @item tbr
18320 above-below (right eye above, left eye below)
18321
18322 @item ab2l
18323 @item tb2l
18324 above-below with half height resolution
18325 (left eye above, right eye below)
18326
18327 @item ab2r
18328 @item tb2r
18329 above-below with half height resolution
18330 (right eye above, left eye below)
18331
18332 @item al
18333 alternating frames (left eye first, right eye second)
18334
18335 @item ar
18336 alternating frames (right eye first, left eye second)
18337
18338 @item irl
18339 interleaved rows (left eye has top row, right eye starts on next row)
18340
18341 @item irr
18342 interleaved rows (right eye has top row, left eye starts on next row)
18343
18344 @item arbg
18345 anaglyph red/blue gray
18346 (red filter on left eye, blue filter on right eye)
18347
18348 @item argg
18349 anaglyph red/green gray
18350 (red filter on left eye, green filter on right eye)
18351
18352 @item arcg
18353 anaglyph red/cyan gray
18354 (red filter on left eye, cyan filter on right eye)
18355
18356 @item arch
18357 anaglyph red/cyan half colored
18358 (red filter on left eye, cyan filter on right eye)
18359
18360 @item arcc
18361 anaglyph red/cyan color
18362 (red filter on left eye, cyan filter on right eye)
18363
18364 @item arcd
18365 anaglyph red/cyan color optimized with the least squares projection of dubois
18366 (red filter on left eye, cyan filter on right eye)
18367
18368 @item agmg
18369 anaglyph green/magenta gray
18370 (green filter on left eye, magenta filter on right eye)
18371
18372 @item agmh
18373 anaglyph green/magenta half colored
18374 (green filter on left eye, magenta filter on right eye)
18375
18376 @item agmc
18377 anaglyph green/magenta colored
18378 (green filter on left eye, magenta filter on right eye)
18379
18380 @item agmd
18381 anaglyph green/magenta color optimized with the least squares projection of dubois
18382 (green filter on left eye, magenta filter on right eye)
18383
18384 @item aybg
18385 anaglyph yellow/blue gray
18386 (yellow filter on left eye, blue filter on right eye)
18387
18388 @item aybh
18389 anaglyph yellow/blue half colored
18390 (yellow filter on left eye, blue filter on right eye)
18391
18392 @item aybc
18393 anaglyph yellow/blue colored
18394 (yellow filter on left eye, blue filter on right eye)
18395
18396 @item aybd
18397 anaglyph yellow/blue color optimized with the least squares projection of dubois
18398 (yellow filter on left eye, blue filter on right eye)
18399
18400 @item ml
18401 mono output (left eye only)
18402
18403 @item mr
18404 mono output (right eye only)
18405
18406 @item chl
18407 checkerboard, left eye first
18408
18409 @item chr
18410 checkerboard, right eye first
18411
18412 @item icl
18413 interleaved columns, left eye first
18414
18415 @item icr
18416 interleaved columns, right eye first
18417
18418 @item hdmi
18419 HDMI frame pack
18420 @end table
18421
18422 Default value is @samp{arcd}.
18423 @end table
18424
18425 @subsection Examples
18426
18427 @itemize
18428 @item
18429 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18430 @example
18431 stereo3d=sbsl:aybd
18432 @end example
18433
18434 @item
18435 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18436 @example
18437 stereo3d=abl:sbsr
18438 @end example
18439 @end itemize
18440
18441 @section streamselect, astreamselect
18442 Select video or audio streams.
18443
18444 The filter accepts the following options:
18445
18446 @table @option
18447 @item inputs
18448 Set number of inputs. Default is 2.
18449
18450 @item map
18451 Set input indexes to remap to outputs.
18452 @end table
18453
18454 @subsection Commands
18455
18456 The @code{streamselect} and @code{astreamselect} filter supports the following
18457 commands:
18458
18459 @table @option
18460 @item map
18461 Set input indexes to remap to outputs.
18462 @end table
18463
18464 @subsection Examples
18465
18466 @itemize
18467 @item
18468 Select first 5 seconds 1st stream and rest of time 2nd stream:
18469 @example
18470 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18471 @end example
18472
18473 @item
18474 Same as above, but for audio:
18475 @example
18476 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18477 @end example
18478 @end itemize
18479
18480 @anchor{subtitles}
18481 @section subtitles
18482
18483 Draw subtitles on top of input video using the libass library.
18484
18485 To enable compilation of this filter you need to configure FFmpeg with
18486 @code{--enable-libass}. This filter also requires a build with libavcodec and
18487 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18488 Alpha) subtitles format.
18489
18490 The filter accepts the following options:
18491
18492 @table @option
18493 @item filename, f
18494 Set the filename of the subtitle file to read. It must be specified.
18495
18496 @item original_size
18497 Specify the size of the original video, the video for which the ASS file
18498 was composed. For the syntax of this option, check the
18499 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18500 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18501 correctly scale the fonts if the aspect ratio has been changed.
18502
18503 @item fontsdir
18504 Set a directory path containing fonts that can be used by the filter.
18505 These fonts will be used in addition to whatever the font provider uses.
18506
18507 @item alpha
18508 Process alpha channel, by default alpha channel is untouched.
18509
18510 @item charenc
18511 Set subtitles input character encoding. @code{subtitles} filter only. Only
18512 useful if not UTF-8.
18513
18514 @item stream_index, si
18515 Set subtitles stream index. @code{subtitles} filter only.
18516
18517 @item force_style
18518 Override default style or script info parameters of the subtitles. It accepts a
18519 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18520 @end table
18521
18522 If the first key is not specified, it is assumed that the first value
18523 specifies the @option{filename}.
18524
18525 For example, to render the file @file{sub.srt} on top of the input
18526 video, use the command:
18527 @example
18528 subtitles=sub.srt
18529 @end example
18530
18531 which is equivalent to:
18532 @example
18533 subtitles=filename=sub.srt
18534 @end example
18535
18536 To render the default subtitles stream from file @file{video.mkv}, use:
18537 @example
18538 subtitles=video.mkv
18539 @end example
18540
18541 To render the second subtitles stream from that file, use:
18542 @example
18543 subtitles=video.mkv:si=1
18544 @end example
18545
18546 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18547 @code{DejaVu Serif}, use:
18548 @example
18549 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18550 @end example
18551
18552 @section super2xsai
18553
18554 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18555 Interpolate) pixel art scaling algorithm.
18556
18557 Useful for enlarging pixel art images without reducing sharpness.
18558
18559 @section swaprect
18560
18561 Swap two rectangular objects in video.
18562
18563 This filter accepts the following options:
18564
18565 @table @option
18566 @item w
18567 Set object width.
18568
18569 @item h
18570 Set object height.
18571
18572 @item x1
18573 Set 1st rect x coordinate.
18574
18575 @item y1
18576 Set 1st rect y coordinate.
18577
18578 @item x2
18579 Set 2nd rect x coordinate.
18580
18581 @item y2
18582 Set 2nd rect y coordinate.
18583
18584 All expressions are evaluated once for each frame.
18585 @end table
18586
18587 The all options are expressions containing the following constants:
18588
18589 @table @option
18590 @item w
18591 @item h
18592 The input width and height.
18593
18594 @item a
18595 same as @var{w} / @var{h}
18596
18597 @item sar
18598 input sample aspect ratio
18599
18600 @item dar
18601 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18602
18603 @item n
18604 The number of the input frame, starting from 0.
18605
18606 @item t
18607 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18608
18609 @item pos
18610 the position in the file of the input frame, NAN if unknown
18611 @end table
18612
18613 @section swapuv
18614 Swap U & V plane.
18615
18616 @section tblend
18617 Blend successive video frames.
18618
18619 See @ref{blend}
18620
18621 @section telecine
18622
18623 Apply telecine process to the video.
18624
18625 This filter accepts the following options:
18626
18627 @table @option
18628 @item first_field
18629 @table @samp
18630 @item top, t
18631 top field first
18632 @item bottom, b
18633 bottom field first
18634 The default value is @code{top}.
18635 @end table
18636
18637 @item pattern
18638 A string of numbers representing the pulldown pattern you wish to apply.
18639 The default value is @code{23}.
18640 @end table
18641
18642 @example
18643 Some typical patterns:
18644
18645 NTSC output (30i):
18646 27.5p: 32222
18647 24p: 23 (classic)
18648 24p: 2332 (preferred)
18649 20p: 33
18650 18p: 334
18651 16p: 3444
18652
18653 PAL output (25i):
18654 27.5p: 12222
18655 24p: 222222222223 ("Euro pulldown")
18656 16.67p: 33
18657 16p: 33333334
18658 @end example
18659
18660 @section thistogram
18661
18662 Compute and draw a color distribution histogram for the input video across time.
18663
18664 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18665 at certain time, this filter shows also past histograms of number of frames defined
18666 by @code{width} option.
18667
18668 The computed histogram is a representation of the color component
18669 distribution in an image.
18670
18671 The filter accepts the following options:
18672
18673 @table @option
18674 @item width, w
18675 Set width of single color component output. Default value is @code{0}.
18676 Value of @code{0} means width will be picked from input video.
18677 This also set number of passed histograms to keep.
18678 Allowed range is [0, 8192].
18679
18680 @item display_mode, d
18681 Set display mode.
18682 It accepts the following values:
18683 @table @samp
18684 @item stack
18685 Per color component graphs are placed below each other.
18686
18687 @item parade
18688 Per color component graphs are placed side by side.
18689
18690 @item overlay
18691 Presents information identical to that in the @code{parade}, except
18692 that the graphs representing color components are superimposed directly
18693 over one another.
18694 @end table
18695 Default is @code{stack}.
18696
18697 @item levels_mode, m
18698 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18699 Default is @code{linear}.
18700
18701 @item components, c
18702 Set what color components to display.
18703 Default is @code{7}.
18704
18705 @item bgopacity, b
18706 Set background opacity. Default is @code{0.9}.
18707
18708 @item envelope, e
18709 Show envelope. Default is disabled.
18710
18711 @item ecolor, ec
18712 Set envelope color. Default is @code{gold}.
18713
18714 @item slide
18715 Set slide mode.
18716
18717 Available values for slide is:
18718 @table @samp
18719 @item frame
18720 Draw new frame when right border is reached.
18721
18722 @item replace
18723 Replace old columns with new ones.
18724
18725 @item scroll
18726 Scroll from right to left.
18727
18728 @item rscroll
18729 Scroll from left to right.
18730
18731 @item picture
18732 Draw single picture.
18733 @end table
18734
18735 Default is @code{replace}.
18736 @end table
18737
18738 @section threshold
18739
18740 Apply threshold effect to video stream.
18741
18742 This filter needs four video streams to perform thresholding.
18743 First stream is stream we are filtering.
18744 Second stream is holding threshold values, third stream is holding min values,
18745 and last, fourth stream is holding max values.
18746
18747 The filter accepts the following option:
18748
18749 @table @option
18750 @item planes
18751 Set which planes will be processed, unprocessed planes will be copied.
18752 By default value 0xf, all planes will be processed.
18753 @end table
18754
18755 For example if first stream pixel's component value is less then threshold value
18756 of pixel component from 2nd threshold stream, third stream value will picked,
18757 otherwise fourth stream pixel component value will be picked.
18758
18759 Using color source filter one can perform various types of thresholding:
18760
18761 @subsection Examples
18762
18763 @itemize
18764 @item
18765 Binary threshold, using gray color as threshold:
18766 @example
18767 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18768 @end example
18769
18770 @item
18771 Inverted binary threshold, using gray color as threshold:
18772 @example
18773 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18774 @end example
18775
18776 @item
18777 Truncate binary threshold, using gray color as threshold:
18778 @example
18779 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18780 @end example
18781
18782 @item
18783 Threshold to zero, using gray color as threshold:
18784 @example
18785 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18786 @end example
18787
18788 @item
18789 Inverted threshold to zero, using gray color as threshold:
18790 @example
18791 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18792 @end example
18793 @end itemize
18794
18795 @section thumbnail
18796 Select the most representative frame in a given sequence of consecutive frames.
18797
18798 The filter accepts the following options:
18799
18800 @table @option
18801 @item n
18802 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18803 will pick one of them, and then handle the next batch of @var{n} frames until
18804 the end. Default is @code{100}.
18805 @end table
18806
18807 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18808 value will result in a higher memory usage, so a high value is not recommended.
18809
18810 @subsection Examples
18811
18812 @itemize
18813 @item
18814 Extract one picture each 50 frames:
18815 @example
18816 thumbnail=50
18817 @end example
18818
18819 @item
18820 Complete example of a thumbnail creation with @command{ffmpeg}:
18821 @example
18822 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18823 @end example
18824 @end itemize
18825
18826 @anchor{tile}
18827 @section tile
18828
18829 Tile several successive frames together.
18830
18831 The @ref{untile} filter can do the reverse.
18832
18833 The filter accepts the following options:
18834
18835 @table @option
18836
18837 @item layout
18838 Set the grid size (i.e. the number of lines and columns). For the syntax of
18839 this option, check the
18840 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18841
18842 @item nb_frames
18843 Set the maximum number of frames to render in the given area. It must be less
18844 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18845 the area will be used.
18846
18847 @item margin
18848 Set the outer border margin in pixels.
18849
18850 @item padding
18851 Set the inner border thickness (i.e. the number of pixels between frames). For
18852 more advanced padding options (such as having different values for the edges),
18853 refer to the pad video filter.
18854
18855 @item color
18856 Specify the color of the unused area. For the syntax of this option, check the
18857 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18858 The default value of @var{color} is "black".
18859
18860 @item overlap
18861 Set the number of frames to overlap when tiling several successive frames together.
18862 The value must be between @code{0} and @var{nb_frames - 1}.
18863
18864 @item init_padding
18865 Set the number of frames to initially be empty before displaying first output frame.
18866 This controls how soon will one get first output frame.
18867 The value must be between @code{0} and @var{nb_frames - 1}.
18868 @end table
18869
18870 @subsection Examples
18871
18872 @itemize
18873 @item
18874 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18875 @example
18876 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18877 @end example
18878 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18879 duplicating each output frame to accommodate the originally detected frame
18880 rate.
18881
18882 @item
18883 Display @code{5} pictures in an area of @code{3x2} frames,
18884 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18885 mixed flat and named options:
18886 @example
18887 tile=3x2:nb_frames=5:padding=7:margin=2
18888 @end example
18889 @end itemize
18890
18891 @section tinterlace
18892
18893 Perform various types of temporal field interlacing.
18894
18895 Frames are counted starting from 1, so the first input frame is
18896 considered odd.
18897
18898 The filter accepts the following options:
18899
18900 @table @option
18901
18902 @item mode
18903 Specify the mode of the interlacing. This option can also be specified
18904 as a value alone. See below for a list of values for this option.
18905
18906 Available values are:
18907
18908 @table @samp
18909 @item merge, 0
18910 Move odd frames into the upper field, even into the lower field,
18911 generating a double height frame at half frame rate.
18912 @example
18913  ------> time
18914 Input:
18915 Frame 1         Frame 2         Frame 3         Frame 4
18916
18917 11111           22222           33333           44444
18918 11111           22222           33333           44444
18919 11111           22222           33333           44444
18920 11111           22222           33333           44444
18921
18922 Output:
18923 11111                           33333
18924 22222                           44444
18925 11111                           33333
18926 22222                           44444
18927 11111                           33333
18928 22222                           44444
18929 11111                           33333
18930 22222                           44444
18931 @end example
18932
18933 @item drop_even, 1
18934 Only output odd frames, even frames are dropped, generating a frame with
18935 unchanged height at half frame rate.
18936
18937 @example
18938  ------> time
18939 Input:
18940 Frame 1         Frame 2         Frame 3         Frame 4
18941
18942 11111           22222           33333           44444
18943 11111           22222           33333           44444
18944 11111           22222           33333           44444
18945 11111           22222           33333           44444
18946
18947 Output:
18948 11111                           33333
18949 11111                           33333
18950 11111                           33333
18951 11111                           33333
18952 @end example
18953
18954 @item drop_odd, 2
18955 Only output even frames, odd frames are dropped, generating a frame with
18956 unchanged height at half frame rate.
18957
18958 @example
18959  ------> time
18960 Input:
18961 Frame 1         Frame 2         Frame 3         Frame 4
18962
18963 11111           22222           33333           44444
18964 11111           22222           33333           44444
18965 11111           22222           33333           44444
18966 11111           22222           33333           44444
18967
18968 Output:
18969                 22222                           44444
18970                 22222                           44444
18971                 22222                           44444
18972                 22222                           44444
18973 @end example
18974
18975 @item pad, 3
18976 Expand each frame to full height, but pad alternate lines with black,
18977 generating a frame with double height at the same input frame rate.
18978
18979 @example
18980  ------> time
18981 Input:
18982 Frame 1         Frame 2         Frame 3         Frame 4
18983
18984 11111           22222           33333           44444
18985 11111           22222           33333           44444
18986 11111           22222           33333           44444
18987 11111           22222           33333           44444
18988
18989 Output:
18990 11111           .....           33333           .....
18991 .....           22222           .....           44444
18992 11111           .....           33333           .....
18993 .....           22222           .....           44444
18994 11111           .....           33333           .....
18995 .....           22222           .....           44444
18996 11111           .....           33333           .....
18997 .....           22222           .....           44444
18998 @end example
18999
19000
19001 @item interleave_top, 4
19002 Interleave the upper field from odd frames with the lower field from
19003 even frames, generating a frame with unchanged height at half frame rate.
19004
19005 @example
19006  ------> time
19007 Input:
19008 Frame 1         Frame 2         Frame 3         Frame 4
19009
19010 11111<-         22222           33333<-         44444
19011 11111           22222<-         33333           44444<-
19012 11111<-         22222           33333<-         44444
19013 11111           22222<-         33333           44444<-
19014
19015 Output:
19016 11111                           33333
19017 22222                           44444
19018 11111                           33333
19019 22222                           44444
19020 @end example
19021
19022
19023 @item interleave_bottom, 5
19024 Interleave the lower field from odd frames with the upper field from
19025 even frames, generating a frame with unchanged height at half frame rate.
19026
19027 @example
19028  ------> time
19029 Input:
19030 Frame 1         Frame 2         Frame 3         Frame 4
19031
19032 11111           22222<-         33333           44444<-
19033 11111<-         22222           33333<-         44444
19034 11111           22222<-         33333           44444<-
19035 11111<-         22222           33333<-         44444
19036
19037 Output:
19038 22222                           44444
19039 11111                           33333
19040 22222                           44444
19041 11111                           33333
19042 @end example
19043
19044
19045 @item interlacex2, 6
19046 Double frame rate with unchanged height. Frames are inserted each
19047 containing the second temporal field from the previous input frame and
19048 the first temporal field from the next input frame. This mode relies on
19049 the top_field_first flag. Useful for interlaced video displays with no
19050 field synchronisation.
19051
19052 @example
19053  ------> time
19054 Input:
19055 Frame 1         Frame 2         Frame 3         Frame 4
19056
19057 11111           22222           33333           44444
19058  11111           22222           33333           44444
19059 11111           22222           33333           44444
19060  11111           22222           33333           44444
19061
19062 Output:
19063 11111   22222   22222   33333   33333   44444   44444
19064  11111   11111   22222   22222   33333   33333   44444
19065 11111   22222   22222   33333   33333   44444   44444
19066  11111   11111   22222   22222   33333   33333   44444
19067 @end example
19068
19069
19070 @item mergex2, 7
19071 Move odd frames into the upper field, even into the lower field,
19072 generating a double height frame at same frame rate.
19073
19074 @example
19075  ------> time
19076 Input:
19077 Frame 1         Frame 2         Frame 3         Frame 4
19078
19079 11111           22222           33333           44444
19080 11111           22222           33333           44444
19081 11111           22222           33333           44444
19082 11111           22222           33333           44444
19083
19084 Output:
19085 11111           33333           33333           55555
19086 22222           22222           44444           44444
19087 11111           33333           33333           55555
19088 22222           22222           44444           44444
19089 11111           33333           33333           55555
19090 22222           22222           44444           44444
19091 11111           33333           33333           55555
19092 22222           22222           44444           44444
19093 @end example
19094
19095 @end table
19096
19097 Numeric values are deprecated but are accepted for backward
19098 compatibility reasons.
19099
19100 Default mode is @code{merge}.
19101
19102 @item flags
19103 Specify flags influencing the filter process.
19104
19105 Available value for @var{flags} is:
19106
19107 @table @option
19108 @item low_pass_filter, vlpf
19109 Enable linear vertical low-pass filtering in the filter.
19110 Vertical low-pass filtering is required when creating an interlaced
19111 destination from a progressive source which contains high-frequency
19112 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19113 patterning.
19114
19115 @item complex_filter, cvlpf
19116 Enable complex vertical low-pass filtering.
19117 This will slightly less reduce interlace 'twitter' and Moire
19118 patterning but better retain detail and subjective sharpness impression.
19119
19120 @item bypass_il
19121 Bypass already interlaced frames, only adjust the frame rate.
19122 @end table
19123
19124 Vertical low-pass filtering and bypassing already interlaced frames can only be
19125 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19126
19127 @end table
19128
19129 @section tmedian
19130 Pick median pixels from several successive input video frames.
19131
19132 The filter accepts the following options:
19133
19134 @table @option
19135 @item radius
19136 Set radius of median filter.
19137 Default is 1. Allowed range is from 1 to 127.
19138
19139 @item planes
19140 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19141
19142 @item percentile
19143 Set median percentile. Default value is @code{0.5}.
19144 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19145 minimum values, and @code{1} maximum values.
19146 @end table
19147
19148 @section tmix
19149
19150 Mix successive video frames.
19151
19152 A description of the accepted options follows.
19153
19154 @table @option
19155 @item frames
19156 The number of successive frames to mix. If unspecified, it defaults to 3.
19157
19158 @item weights
19159 Specify weight of each input video frame.
19160 Each weight is separated by space. If number of weights is smaller than
19161 number of @var{frames} last specified weight will be used for all remaining
19162 unset weights.
19163
19164 @item scale
19165 Specify scale, if it is set it will be multiplied with sum
19166 of each weight multiplied with pixel values to give final destination
19167 pixel value. By default @var{scale} is auto scaled to sum of weights.
19168 @end table
19169
19170 @subsection Examples
19171
19172 @itemize
19173 @item
19174 Average 7 successive frames:
19175 @example
19176 tmix=frames=7:weights="1 1 1 1 1 1 1"
19177 @end example
19178
19179 @item
19180 Apply simple temporal convolution:
19181 @example
19182 tmix=frames=3:weights="-1 3 -1"
19183 @end example
19184
19185 @item
19186 Similar as above but only showing temporal differences:
19187 @example
19188 tmix=frames=3:weights="-1 2 -1":scale=1
19189 @end example
19190 @end itemize
19191
19192 @anchor{tonemap}
19193 @section tonemap
19194 Tone map colors from different dynamic ranges.
19195
19196 This filter expects data in single precision floating point, as it needs to
19197 operate on (and can output) out-of-range values. Another filter, such as
19198 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19199
19200 The tonemapping algorithms implemented only work on linear light, so input
19201 data should be linearized beforehand (and possibly correctly tagged).
19202
19203 @example
19204 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19205 @end example
19206
19207 @subsection Options
19208 The filter accepts the following options.
19209
19210 @table @option
19211 @item tonemap
19212 Set the tone map algorithm to use.
19213
19214 Possible values are:
19215 @table @var
19216 @item none
19217 Do not apply any tone map, only desaturate overbright pixels.
19218
19219 @item clip
19220 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19221 in-range values, while distorting out-of-range values.
19222
19223 @item linear
19224 Stretch the entire reference gamut to a linear multiple of the display.
19225
19226 @item gamma
19227 Fit a logarithmic transfer between the tone curves.
19228
19229 @item reinhard
19230 Preserve overall image brightness with a simple curve, using nonlinear
19231 contrast, which results in flattening details and degrading color accuracy.
19232
19233 @item hable
19234 Preserve both dark and bright details better than @var{reinhard}, at the cost
19235 of slightly darkening everything. Use it when detail preservation is more
19236 important than color and brightness accuracy.
19237
19238 @item mobius
19239 Smoothly map out-of-range values, while retaining contrast and colors for
19240 in-range material as much as possible. Use it when color accuracy is more
19241 important than detail preservation.
19242 @end table
19243
19244 Default is none.
19245
19246 @item param
19247 Tune the tone mapping algorithm.
19248
19249 This affects the following algorithms:
19250 @table @var
19251 @item none
19252 Ignored.
19253
19254 @item linear
19255 Specifies the scale factor to use while stretching.
19256 Default to 1.0.
19257
19258 @item gamma
19259 Specifies the exponent of the function.
19260 Default to 1.8.
19261
19262 @item clip
19263 Specify an extra linear coefficient to multiply into the signal before clipping.
19264 Default to 1.0.
19265
19266 @item reinhard
19267 Specify the local contrast coefficient at the display peak.
19268 Default to 0.5, which means that in-gamut values will be about half as bright
19269 as when clipping.
19270
19271 @item hable
19272 Ignored.
19273
19274 @item mobius
19275 Specify the transition point from linear to mobius transform. Every value
19276 below this point is guaranteed to be mapped 1:1. The higher the value, the
19277 more accurate the result will be, at the cost of losing bright details.
19278 Default to 0.3, which due to the steep initial slope still preserves in-range
19279 colors fairly accurately.
19280 @end table
19281
19282 @item desat
19283 Apply desaturation for highlights that exceed this level of brightness. The
19284 higher the parameter, the more color information will be preserved. This
19285 setting helps prevent unnaturally blown-out colors for super-highlights, by
19286 (smoothly) turning into white instead. This makes images feel more natural,
19287 at the cost of reducing information about out-of-range colors.
19288
19289 The default of 2.0 is somewhat conservative and will mostly just apply to
19290 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19291
19292 This option works only if the input frame has a supported color tag.
19293
19294 @item peak
19295 Override signal/nominal/reference peak with this value. Useful when the
19296 embedded peak information in display metadata is not reliable or when tone
19297 mapping from a lower range to a higher range.
19298 @end table
19299
19300 @section tpad
19301
19302 Temporarily pad video frames.
19303
19304 The filter accepts the following options:
19305
19306 @table @option
19307 @item start
19308 Specify number of delay frames before input video stream. Default is 0.
19309
19310 @item stop
19311 Specify number of padding frames after input video stream.
19312 Set to -1 to pad indefinitely. Default is 0.
19313
19314 @item start_mode
19315 Set kind of frames added to beginning of stream.
19316 Can be either @var{add} or @var{clone}.
19317 With @var{add} frames of solid-color are added.
19318 With @var{clone} frames are clones of first frame.
19319 Default is @var{add}.
19320
19321 @item stop_mode
19322 Set kind of frames added to end of stream.
19323 Can be either @var{add} or @var{clone}.
19324 With @var{add} frames of solid-color are added.
19325 With @var{clone} frames are clones of last frame.
19326 Default is @var{add}.
19327
19328 @item start_duration, stop_duration
19329 Specify the duration of the start/stop delay. See
19330 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19331 for the accepted syntax.
19332 These options override @var{start} and @var{stop}. Default is 0.
19333
19334 @item color
19335 Specify the color of the padded area. For the syntax of this option,
19336 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19337 manual,ffmpeg-utils}.
19338
19339 The default value of @var{color} is "black".
19340 @end table
19341
19342 @anchor{transpose}
19343 @section transpose
19344
19345 Transpose rows with columns in the input video and optionally flip it.
19346
19347 It accepts the following parameters:
19348
19349 @table @option
19350
19351 @item dir
19352 Specify the transposition direction.
19353
19354 Can assume the following values:
19355 @table @samp
19356 @item 0, 4, cclock_flip
19357 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19358 @example
19359 L.R     L.l
19360 . . ->  . .
19361 l.r     R.r
19362 @end example
19363
19364 @item 1, 5, clock
19365 Rotate by 90 degrees clockwise, that is:
19366 @example
19367 L.R     l.L
19368 . . ->  . .
19369 l.r     r.R
19370 @end example
19371
19372 @item 2, 6, cclock
19373 Rotate by 90 degrees counterclockwise, that is:
19374 @example
19375 L.R     R.r
19376 . . ->  . .
19377 l.r     L.l
19378 @end example
19379
19380 @item 3, 7, clock_flip
19381 Rotate by 90 degrees clockwise and vertically flip, that is:
19382 @example
19383 L.R     r.R
19384 . . ->  . .
19385 l.r     l.L
19386 @end example
19387 @end table
19388
19389 For values between 4-7, the transposition is only done if the input
19390 video geometry is portrait and not landscape. These values are
19391 deprecated, the @code{passthrough} option should be used instead.
19392
19393 Numerical values are deprecated, and should be dropped in favor of
19394 symbolic constants.
19395
19396 @item passthrough
19397 Do not apply the transposition if the input geometry matches the one
19398 specified by the specified value. It accepts the following values:
19399 @table @samp
19400 @item none
19401 Always apply transposition.
19402 @item portrait
19403 Preserve portrait geometry (when @var{height} >= @var{width}).
19404 @item landscape
19405 Preserve landscape geometry (when @var{width} >= @var{height}).
19406 @end table
19407
19408 Default value is @code{none}.
19409 @end table
19410
19411 For example to rotate by 90 degrees clockwise and preserve portrait
19412 layout:
19413 @example
19414 transpose=dir=1:passthrough=portrait
19415 @end example
19416
19417 The command above can also be specified as:
19418 @example
19419 transpose=1:portrait
19420 @end example
19421
19422 @section transpose_npp
19423
19424 Transpose rows with columns in the input video and optionally flip it.
19425 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19426
19427 It accepts the following parameters:
19428
19429 @table @option
19430
19431 @item dir
19432 Specify the transposition direction.
19433
19434 Can assume the following values:
19435 @table @samp
19436 @item cclock_flip
19437 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19438
19439 @item clock
19440 Rotate by 90 degrees clockwise.
19441
19442 @item cclock
19443 Rotate by 90 degrees counterclockwise.
19444
19445 @item clock_flip
19446 Rotate by 90 degrees clockwise and vertically flip.
19447 @end table
19448
19449 @item passthrough
19450 Do not apply the transposition if the input geometry matches the one
19451 specified by the specified value. It accepts the following values:
19452 @table @samp
19453 @item none
19454 Always apply transposition. (default)
19455 @item portrait
19456 Preserve portrait geometry (when @var{height} >= @var{width}).
19457 @item landscape
19458 Preserve landscape geometry (when @var{width} >= @var{height}).
19459 @end table
19460
19461 @end table
19462
19463 @section trim
19464 Trim the input so that the output contains one continuous subpart of the input.
19465
19466 It accepts the following parameters:
19467 @table @option
19468 @item start
19469 Specify the time of the start of the kept section, i.e. the frame with the
19470 timestamp @var{start} will be the first frame in the output.
19471
19472 @item end
19473 Specify the time of the first frame that will be dropped, i.e. the frame
19474 immediately preceding the one with the timestamp @var{end} will be the last
19475 frame in the output.
19476
19477 @item start_pts
19478 This is the same as @var{start}, except this option sets the start timestamp
19479 in timebase units instead of seconds.
19480
19481 @item end_pts
19482 This is the same as @var{end}, except this option sets the end timestamp
19483 in timebase units instead of seconds.
19484
19485 @item duration
19486 The maximum duration of the output in seconds.
19487
19488 @item start_frame
19489 The number of the first frame that should be passed to the output.
19490
19491 @item end_frame
19492 The number of the first frame that should be dropped.
19493 @end table
19494
19495 @option{start}, @option{end}, and @option{duration} are expressed as time
19496 duration specifications; see
19497 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19498 for the accepted syntax.
19499
19500 Note that the first two sets of the start/end options and the @option{duration}
19501 option look at the frame timestamp, while the _frame variants simply count the
19502 frames that pass through the filter. Also note that this filter does not modify
19503 the timestamps. If you wish for the output timestamps to start at zero, insert a
19504 setpts filter after the trim filter.
19505
19506 If multiple start or end options are set, this filter tries to be greedy and
19507 keep all the frames that match at least one of the specified constraints. To keep
19508 only the part that matches all the constraints at once, chain multiple trim
19509 filters.
19510
19511 The defaults are such that all the input is kept. So it is possible to set e.g.
19512 just the end values to keep everything before the specified time.
19513
19514 Examples:
19515 @itemize
19516 @item
19517 Drop everything except the second minute of input:
19518 @example
19519 ffmpeg -i INPUT -vf trim=60:120
19520 @end example
19521
19522 @item
19523 Keep only the first second:
19524 @example
19525 ffmpeg -i INPUT -vf trim=duration=1
19526 @end example
19527
19528 @end itemize
19529
19530 @section unpremultiply
19531 Apply alpha unpremultiply effect to input video stream using first plane
19532 of second stream as alpha.
19533
19534 Both streams must have same dimensions and same pixel format.
19535
19536 The filter accepts the following option:
19537
19538 @table @option
19539 @item planes
19540 Set which planes will be processed, unprocessed planes will be copied.
19541 By default value 0xf, all planes will be processed.
19542
19543 If the format has 1 or 2 components, then luma is bit 0.
19544 If the format has 3 or 4 components:
19545 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19546 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19547 If present, the alpha channel is always the last bit.
19548
19549 @item inplace
19550 Do not require 2nd input for processing, instead use alpha plane from input stream.
19551 @end table
19552
19553 @anchor{unsharp}
19554 @section unsharp
19555
19556 Sharpen or blur the input video.
19557
19558 It accepts the following parameters:
19559
19560 @table @option
19561 @item luma_msize_x, lx
19562 Set the luma matrix horizontal size. It must be an odd integer between
19563 3 and 23. The default value is 5.
19564
19565 @item luma_msize_y, ly
19566 Set the luma matrix vertical size. It must be an odd integer between 3
19567 and 23. The default value is 5.
19568
19569 @item luma_amount, la
19570 Set the luma effect strength. It must be a floating point number, reasonable
19571 values lay between -1.5 and 1.5.
19572
19573 Negative values will blur the input video, while positive values will
19574 sharpen it, a value of zero will disable the effect.
19575
19576 Default value is 1.0.
19577
19578 @item chroma_msize_x, cx
19579 Set the chroma matrix horizontal size. It must be an odd integer
19580 between 3 and 23. The default value is 5.
19581
19582 @item chroma_msize_y, cy
19583 Set the chroma matrix vertical size. It must be an odd integer
19584 between 3 and 23. The default value is 5.
19585
19586 @item chroma_amount, ca
19587 Set the chroma effect strength. It must be a floating point number, reasonable
19588 values lay between -1.5 and 1.5.
19589
19590 Negative values will blur the input video, while positive values will
19591 sharpen it, a value of zero will disable the effect.
19592
19593 Default value is 0.0.
19594
19595 @end table
19596
19597 All parameters are optional and default to the equivalent of the
19598 string '5:5:1.0:5:5:0.0'.
19599
19600 @subsection Examples
19601
19602 @itemize
19603 @item
19604 Apply strong luma sharpen effect:
19605 @example
19606 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19607 @end example
19608
19609 @item
19610 Apply a strong blur of both luma and chroma parameters:
19611 @example
19612 unsharp=7:7:-2:7:7:-2
19613 @end example
19614 @end itemize
19615
19616 @anchor{untile}
19617 @section untile
19618
19619 Decompose a video made of tiled images into the individual images.
19620
19621 The frame rate of the output video is the frame rate of the input video
19622 multiplied by the number of tiles.
19623
19624 This filter does the reverse of @ref{tile}.
19625
19626 The filter accepts the following options:
19627
19628 @table @option
19629
19630 @item layout
19631 Set the grid size (i.e. the number of lines and columns). For the syntax of
19632 this option, check the
19633 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19634 @end table
19635
19636 @subsection Examples
19637
19638 @itemize
19639 @item
19640 Produce a 1-second video from a still image file made of 25 frames stacked
19641 vertically, like an analogic film reel:
19642 @example
19643 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19644 @end example
19645 @end itemize
19646
19647 @section uspp
19648
19649 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19650 the image at several (or - in the case of @option{quality} level @code{8} - all)
19651 shifts and average the results.
19652
19653 The way this differs from the behavior of spp is that uspp actually encodes &
19654 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19655 DCT similar to MJPEG.
19656
19657 The filter accepts the following options:
19658
19659 @table @option
19660 @item quality
19661 Set quality. This option defines the number of levels for averaging. It accepts
19662 an integer in the range 0-8. If set to @code{0}, the filter will have no
19663 effect. A value of @code{8} means the higher quality. For each increment of
19664 that value the speed drops by a factor of approximately 2.  Default value is
19665 @code{3}.
19666
19667 @item qp
19668 Force a constant quantization parameter. If not set, the filter will use the QP
19669 from the video stream (if available).
19670 @end table
19671
19672 @section v360
19673
19674 Convert 360 videos between various formats.
19675
19676 The filter accepts the following options:
19677
19678 @table @option
19679
19680 @item input
19681 @item output
19682 Set format of the input/output video.
19683
19684 Available formats:
19685
19686 @table @samp
19687
19688 @item e
19689 @item equirect
19690 Equirectangular projection.
19691
19692 @item c3x2
19693 @item c6x1
19694 @item c1x6
19695 Cubemap with 3x2/6x1/1x6 layout.
19696
19697 Format specific options:
19698
19699 @table @option
19700 @item in_pad
19701 @item out_pad
19702 Set padding proportion for the input/output cubemap. Values in decimals.
19703
19704 Example values:
19705 @table @samp
19706 @item 0
19707 No padding.
19708 @item 0.01
19709 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)
19710 @end table
19711
19712 Default value is @b{@samp{0}}.
19713 Maximum value is @b{@samp{0.1}}.
19714
19715 @item fin_pad
19716 @item fout_pad
19717 Set fixed padding for the input/output cubemap. Values in pixels.
19718
19719 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19720
19721 @item in_forder
19722 @item out_forder
19723 Set order of faces for the input/output cubemap. Choose one direction for each position.
19724
19725 Designation of directions:
19726 @table @samp
19727 @item r
19728 right
19729 @item l
19730 left
19731 @item u
19732 up
19733 @item d
19734 down
19735 @item f
19736 forward
19737 @item b
19738 back
19739 @end table
19740
19741 Default value is @b{@samp{rludfb}}.
19742
19743 @item in_frot
19744 @item out_frot
19745 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
19746
19747 Designation of angles:
19748 @table @samp
19749 @item 0
19750 0 degrees clockwise
19751 @item 1
19752 90 degrees clockwise
19753 @item 2
19754 180 degrees clockwise
19755 @item 3
19756 270 degrees clockwise
19757 @end table
19758
19759 Default value is @b{@samp{000000}}.
19760 @end table
19761
19762 @item eac
19763 Equi-Angular Cubemap.
19764
19765 @item flat
19766 @item gnomonic
19767 @item rectilinear
19768 Regular video.
19769
19770 Format specific options:
19771 @table @option
19772 @item h_fov
19773 @item v_fov
19774 @item d_fov
19775 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19776
19777 If diagonal field of view is set it overrides horizontal and vertical field of view.
19778
19779 @item ih_fov
19780 @item iv_fov
19781 @item id_fov
19782 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19783
19784 If diagonal field of view is set it overrides horizontal and vertical field of view.
19785 @end table
19786
19787 @item dfisheye
19788 Dual fisheye.
19789
19790 Format specific options:
19791 @table @option
19792 @item h_fov
19793 @item v_fov
19794 @item d_fov
19795 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19796
19797 If diagonal field of view is set it overrides horizontal and vertical field of view.
19798
19799 @item ih_fov
19800 @item iv_fov
19801 @item id_fov
19802 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19803
19804 If diagonal field of view is set it overrides horizontal and vertical field of view.
19805 @end table
19806
19807 @item barrel
19808 @item fb
19809 @item barrelsplit
19810 Facebook's 360 formats.
19811
19812 @item sg
19813 Stereographic format.
19814
19815 Format specific options:
19816 @table @option
19817 @item h_fov
19818 @item v_fov
19819 @item d_fov
19820 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19821
19822 If diagonal field of view is set it overrides horizontal and vertical field of view.
19823
19824 @item ih_fov
19825 @item iv_fov
19826 @item id_fov
19827 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19828
19829 If diagonal field of view is set it overrides horizontal and vertical field of view.
19830 @end table
19831
19832 @item mercator
19833 Mercator format.
19834
19835 @item ball
19836 Ball format, gives significant distortion toward the back.
19837
19838 @item hammer
19839 Hammer-Aitoff map projection format.
19840
19841 @item sinusoidal
19842 Sinusoidal map projection format.
19843
19844 @item fisheye
19845 Fisheye projection.
19846
19847 Format specific options:
19848 @table @option
19849 @item h_fov
19850 @item v_fov
19851 @item d_fov
19852 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19853
19854 If diagonal field of view is set it overrides horizontal and vertical field of view.
19855
19856 @item ih_fov
19857 @item iv_fov
19858 @item id_fov
19859 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19860
19861 If diagonal field of view is set it overrides horizontal and vertical field of view.
19862 @end table
19863
19864 @item pannini
19865 Pannini projection.
19866
19867 Format specific options:
19868 @table @option
19869 @item h_fov
19870 Set output pannini parameter.
19871
19872 @item ih_fov
19873 Set input pannini parameter.
19874 @end table
19875
19876 @item cylindrical
19877 Cylindrical projection.
19878
19879 Format specific options:
19880 @table @option
19881 @item h_fov
19882 @item v_fov
19883 @item d_fov
19884 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19885
19886 If diagonal field of view is set it overrides horizontal and vertical field of view.
19887
19888 @item ih_fov
19889 @item iv_fov
19890 @item id_fov
19891 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19892
19893 If diagonal field of view is set it overrides horizontal and vertical field of view.
19894 @end table
19895
19896 @item perspective
19897 Perspective projection. @i{(output only)}
19898
19899 Format specific options:
19900 @table @option
19901 @item v_fov
19902 Set perspective parameter.
19903 @end table
19904
19905 @item tetrahedron
19906 Tetrahedron projection.
19907
19908 @item tsp
19909 Truncated square pyramid projection.
19910
19911 @item he
19912 @item hequirect
19913 Half equirectangular projection.
19914
19915 @item equisolid
19916 Equisolid format.
19917
19918 Format specific options:
19919 @table @option
19920 @item h_fov
19921 @item v_fov
19922 @item d_fov
19923 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19924
19925 If diagonal field of view is set it overrides horizontal and vertical field of view.
19926
19927 @item ih_fov
19928 @item iv_fov
19929 @item id_fov
19930 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19931
19932 If diagonal field of view is set it overrides horizontal and vertical field of view.
19933 @end table
19934
19935 @item og
19936 Orthographic format.
19937
19938 Format specific options:
19939 @table @option
19940 @item h_fov
19941 @item v_fov
19942 @item d_fov
19943 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19944
19945 If diagonal field of view is set it overrides horizontal and vertical field of view.
19946
19947 @item ih_fov
19948 @item iv_fov
19949 @item id_fov
19950 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19951
19952 If diagonal field of view is set it overrides horizontal and vertical field of view.
19953 @end table
19954
19955 @item octahedron
19956 Octahedron projection.
19957 @end table
19958
19959 @item interp
19960 Set interpolation method.@*
19961 @i{Note: more complex interpolation methods require much more memory to run.}
19962
19963 Available methods:
19964
19965 @table @samp
19966 @item near
19967 @item nearest
19968 Nearest neighbour.
19969 @item line
19970 @item linear
19971 Bilinear interpolation.
19972 @item lagrange9
19973 Lagrange9 interpolation.
19974 @item cube
19975 @item cubic
19976 Bicubic interpolation.
19977 @item lanc
19978 @item lanczos
19979 Lanczos interpolation.
19980 @item sp16
19981 @item spline16
19982 Spline16 interpolation.
19983 @item gauss
19984 @item gaussian
19985 Gaussian interpolation.
19986 @item mitchell
19987 Mitchell interpolation.
19988 @end table
19989
19990 Default value is @b{@samp{line}}.
19991
19992 @item w
19993 @item h
19994 Set the output video resolution.
19995
19996 Default resolution depends on formats.
19997
19998 @item in_stereo
19999 @item out_stereo
20000 Set the input/output stereo format.
20001
20002 @table @samp
20003 @item 2d
20004 2D mono
20005 @item sbs
20006 Side by side
20007 @item tb
20008 Top bottom
20009 @end table
20010
20011 Default value is @b{@samp{2d}} for input and output format.
20012
20013 @item yaw
20014 @item pitch
20015 @item roll
20016 Set rotation for the output video. Values in degrees.
20017
20018 @item rorder
20019 Set rotation order for the output video. Choose one item for each position.
20020
20021 @table @samp
20022 @item y, Y
20023 yaw
20024 @item p, P
20025 pitch
20026 @item r, R
20027 roll
20028 @end table
20029
20030 Default value is @b{@samp{ypr}}.
20031
20032 @item h_flip
20033 @item v_flip
20034 @item d_flip
20035 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20036
20037 @item ih_flip
20038 @item iv_flip
20039 Set if input video is flipped horizontally/vertically. Boolean values.
20040
20041 @item in_trans
20042 Set if input video is transposed. Boolean value, by default disabled.
20043
20044 @item out_trans
20045 Set if output video needs to be transposed. Boolean value, by default disabled.
20046
20047 @item alpha_mask
20048 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20049 @end table
20050
20051 @subsection Examples
20052
20053 @itemize
20054 @item
20055 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20056 @example
20057 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20058 @end example
20059 @item
20060 Extract back view of Equi-Angular Cubemap:
20061 @example
20062 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20063 @end example
20064 @item
20065 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20066 @example
20067 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20068 @end example
20069 @end itemize
20070
20071 @subsection Commands
20072
20073 This filter supports subset of above options as @ref{commands}.
20074
20075 @section vaguedenoiser
20076
20077 Apply a wavelet based denoiser.
20078
20079 It transforms each frame from the video input into the wavelet domain,
20080 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20081 the obtained coefficients. It does an inverse wavelet transform after.
20082 Due to wavelet properties, it should give a nice smoothed result, and
20083 reduced noise, without blurring picture features.
20084
20085 This filter accepts the following options:
20086
20087 @table @option
20088 @item threshold
20089 The filtering strength. The higher, the more filtered the video will be.
20090 Hard thresholding can use a higher threshold than soft thresholding
20091 before the video looks overfiltered. Default value is 2.
20092
20093 @item method
20094 The filtering method the filter will use.
20095
20096 It accepts the following values:
20097 @table @samp
20098 @item hard
20099 All values under the threshold will be zeroed.
20100
20101 @item soft
20102 All values under the threshold will be zeroed. All values above will be
20103 reduced by the threshold.
20104
20105 @item garrote
20106 Scales or nullifies coefficients - intermediary between (more) soft and
20107 (less) hard thresholding.
20108 @end table
20109
20110 Default is garrote.
20111
20112 @item nsteps
20113 Number of times, the wavelet will decompose the picture. Picture can't
20114 be decomposed beyond a particular point (typically, 8 for a 640x480
20115 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20116
20117 @item percent
20118 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20119
20120 @item planes
20121 A list of the planes to process. By default all planes are processed.
20122
20123 @item type
20124 The threshold type the filter will use.
20125
20126 It accepts the following values:
20127 @table @samp
20128 @item universal
20129 Threshold used is same for all decompositions.
20130
20131 @item bayes
20132 Threshold used depends also on each decomposition coefficients.
20133 @end table
20134
20135 Default is universal.
20136 @end table
20137
20138 @section vectorscope
20139
20140 Display 2 color component values in the two dimensional graph (which is called
20141 a vectorscope).
20142
20143 This filter accepts the following options:
20144
20145 @table @option
20146 @item mode, m
20147 Set vectorscope mode.
20148
20149 It accepts the following values:
20150 @table @samp
20151 @item gray
20152 @item tint
20153 Gray values are displayed on graph, higher brightness means more pixels have
20154 same component color value on location in graph. This is the default mode.
20155
20156 @item color
20157 Gray values are displayed on graph. Surrounding pixels values which are not
20158 present in video frame are drawn in gradient of 2 color components which are
20159 set by option @code{x} and @code{y}. The 3rd color component is static.
20160
20161 @item color2
20162 Actual color components values present in video frame are displayed on graph.
20163
20164 @item color3
20165 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20166 on graph increases value of another color component, which is luminance by
20167 default values of @code{x} and @code{y}.
20168
20169 @item color4
20170 Actual colors present in video frame are displayed on graph. If two different
20171 colors map to same position on graph then color with higher value of component
20172 not present in graph is picked.
20173
20174 @item color5
20175 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20176 component picked from radial gradient.
20177 @end table
20178
20179 @item x
20180 Set which color component will be represented on X-axis. Default is @code{1}.
20181
20182 @item y
20183 Set which color component will be represented on Y-axis. Default is @code{2}.
20184
20185 @item intensity, i
20186 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20187 of color component which represents frequency of (X, Y) location in graph.
20188
20189 @item envelope, e
20190 @table @samp
20191 @item none
20192 No envelope, this is default.
20193
20194 @item instant
20195 Instant envelope, even darkest single pixel will be clearly highlighted.
20196
20197 @item peak
20198 Hold maximum and minimum values presented in graph over time. This way you
20199 can still spot out of range values without constantly looking at vectorscope.
20200
20201 @item peak+instant
20202 Peak and instant envelope combined together.
20203 @end table
20204
20205 @item graticule, g
20206 Set what kind of graticule to draw.
20207 @table @samp
20208 @item none
20209 @item green
20210 @item color
20211 @item invert
20212 @end table
20213
20214 @item opacity, o
20215 Set graticule opacity.
20216
20217 @item flags, f
20218 Set graticule flags.
20219
20220 @table @samp
20221 @item white
20222 Draw graticule for white point.
20223
20224 @item black
20225 Draw graticule for black point.
20226
20227 @item name
20228 Draw color points short names.
20229 @end table
20230
20231 @item bgopacity, b
20232 Set background opacity.
20233
20234 @item lthreshold, l
20235 Set low threshold for color component not represented on X or Y axis.
20236 Values lower than this value will be ignored. Default is 0.
20237 Note this value is multiplied with actual max possible value one pixel component
20238 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20239 is 0.1 * 255 = 25.
20240
20241 @item hthreshold, h
20242 Set high threshold for color component not represented on X or Y axis.
20243 Values higher than this value will be ignored. Default is 1.
20244 Note this value is multiplied with actual max possible value one pixel component
20245 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20246 is 0.9 * 255 = 230.
20247
20248 @item colorspace, c
20249 Set what kind of colorspace to use when drawing graticule.
20250 @table @samp
20251 @item auto
20252 @item 601
20253 @item 709
20254 @end table
20255 Default is auto.
20256
20257 @item tint0, t0
20258 @item tint1, t1
20259 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20260 This means no tint, and output will remain gray.
20261 @end table
20262
20263 @anchor{vidstabdetect}
20264 @section vidstabdetect
20265
20266 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20267 @ref{vidstabtransform} for pass 2.
20268
20269 This filter generates a file with relative translation and rotation
20270 transform information about subsequent frames, which is then used by
20271 the @ref{vidstabtransform} filter.
20272
20273 To enable compilation of this filter you need to configure FFmpeg with
20274 @code{--enable-libvidstab}.
20275
20276 This filter accepts the following options:
20277
20278 @table @option
20279 @item result
20280 Set the path to the file used to write the transforms information.
20281 Default value is @file{transforms.trf}.
20282
20283 @item shakiness
20284 Set how shaky the video is and how quick the camera is. It accepts an
20285 integer in the range 1-10, a value of 1 means little shakiness, a
20286 value of 10 means strong shakiness. Default value is 5.
20287
20288 @item accuracy
20289 Set the accuracy of the detection process. It must be a value in the
20290 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20291 accuracy. Default value is 15.
20292
20293 @item stepsize
20294 Set stepsize of the search process. The region around minimum is
20295 scanned with 1 pixel resolution. Default value is 6.
20296
20297 @item mincontrast
20298 Set minimum contrast. Below this value a local measurement field is
20299 discarded. Must be a floating point value in the range 0-1. Default
20300 value is 0.3.
20301
20302 @item tripod
20303 Set reference frame number for tripod mode.
20304
20305 If enabled, the motion of the frames is compared to a reference frame
20306 in the filtered stream, identified by the specified number. The idea
20307 is to compensate all movements in a more-or-less static scene and keep
20308 the camera view absolutely still.
20309
20310 If set to 0, it is disabled. The frames are counted starting from 1.
20311
20312 @item show
20313 Show fields and transforms in the resulting frames. It accepts an
20314 integer in the range 0-2. Default value is 0, which disables any
20315 visualization.
20316 @end table
20317
20318 @subsection Examples
20319
20320 @itemize
20321 @item
20322 Use default values:
20323 @example
20324 vidstabdetect
20325 @end example
20326
20327 @item
20328 Analyze strongly shaky movie and put the results in file
20329 @file{mytransforms.trf}:
20330 @example
20331 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20332 @end example
20333
20334 @item
20335 Visualize the result of internal transformations in the resulting
20336 video:
20337 @example
20338 vidstabdetect=show=1
20339 @end example
20340
20341 @item
20342 Analyze a video with medium shakiness using @command{ffmpeg}:
20343 @example
20344 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20345 @end example
20346 @end itemize
20347
20348 @anchor{vidstabtransform}
20349 @section vidstabtransform
20350
20351 Video stabilization/deshaking: pass 2 of 2,
20352 see @ref{vidstabdetect} for pass 1.
20353
20354 Read a file with transform information for each frame and
20355 apply/compensate them. Together with the @ref{vidstabdetect}
20356 filter this can be used to deshake videos. See also
20357 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20358 the @ref{unsharp} filter, see below.
20359
20360 To enable compilation of this filter you need to configure FFmpeg with
20361 @code{--enable-libvidstab}.
20362
20363 @subsection Options
20364
20365 @table @option
20366 @item input
20367 Set path to the file used to read the transforms. Default value is
20368 @file{transforms.trf}.
20369
20370 @item smoothing
20371 Set the number of frames (value*2 + 1) used for lowpass filtering the
20372 camera movements. Default value is 10.
20373
20374 For example a number of 10 means that 21 frames are used (10 in the
20375 past and 10 in the future) to smoothen the motion in the video. A
20376 larger value leads to a smoother video, but limits the acceleration of
20377 the camera (pan/tilt movements). 0 is a special case where a static
20378 camera is simulated.
20379
20380 @item optalgo
20381 Set the camera path optimization algorithm.
20382
20383 Accepted values are:
20384 @table @samp
20385 @item gauss
20386 gaussian kernel low-pass filter on camera motion (default)
20387 @item avg
20388 averaging on transformations
20389 @end table
20390
20391 @item maxshift
20392 Set maximal number of pixels to translate frames. Default value is -1,
20393 meaning no limit.
20394
20395 @item maxangle
20396 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20397 value is -1, meaning no limit.
20398
20399 @item crop
20400 Specify how to deal with borders that may be visible due to movement
20401 compensation.
20402
20403 Available values are:
20404 @table @samp
20405 @item keep
20406 keep image information from previous frame (default)
20407 @item black
20408 fill the border black
20409 @end table
20410
20411 @item invert
20412 Invert transforms if set to 1. Default value is 0.
20413
20414 @item relative
20415 Consider transforms as relative to previous frame if set to 1,
20416 absolute if set to 0. Default value is 0.
20417
20418 @item zoom
20419 Set percentage to zoom. A positive value will result in a zoom-in
20420 effect, a negative value in a zoom-out effect. Default value is 0 (no
20421 zoom).
20422
20423 @item optzoom
20424 Set optimal zooming to avoid borders.
20425
20426 Accepted values are:
20427 @table @samp
20428 @item 0
20429 disabled
20430 @item 1
20431 optimal static zoom value is determined (only very strong movements
20432 will lead to visible borders) (default)
20433 @item 2
20434 optimal adaptive zoom value is determined (no borders will be
20435 visible), see @option{zoomspeed}
20436 @end table
20437
20438 Note that the value given at zoom is added to the one calculated here.
20439
20440 @item zoomspeed
20441 Set percent to zoom maximally each frame (enabled when
20442 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20443 0.25.
20444
20445 @item interpol
20446 Specify type of interpolation.
20447
20448 Available values are:
20449 @table @samp
20450 @item no
20451 no interpolation
20452 @item linear
20453 linear only horizontal
20454 @item bilinear
20455 linear in both directions (default)
20456 @item bicubic
20457 cubic in both directions (slow)
20458 @end table
20459
20460 @item tripod
20461 Enable virtual tripod mode if set to 1, which is equivalent to
20462 @code{relative=0:smoothing=0}. Default value is 0.
20463
20464 Use also @code{tripod} option of @ref{vidstabdetect}.
20465
20466 @item debug
20467 Increase log verbosity if set to 1. Also the detected global motions
20468 are written to the temporary file @file{global_motions.trf}. Default
20469 value is 0.
20470 @end table
20471
20472 @subsection Examples
20473
20474 @itemize
20475 @item
20476 Use @command{ffmpeg} for a typical stabilization with default values:
20477 @example
20478 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20479 @end example
20480
20481 Note the use of the @ref{unsharp} filter which is always recommended.
20482
20483 @item
20484 Zoom in a bit more and load transform data from a given file:
20485 @example
20486 vidstabtransform=zoom=5:input="mytransforms.trf"
20487 @end example
20488
20489 @item
20490 Smoothen the video even more:
20491 @example
20492 vidstabtransform=smoothing=30
20493 @end example
20494 @end itemize
20495
20496 @section vflip
20497
20498 Flip the input video vertically.
20499
20500 For example, to vertically flip a video with @command{ffmpeg}:
20501 @example
20502 ffmpeg -i in.avi -vf "vflip" out.avi
20503 @end example
20504
20505 @section vfrdet
20506
20507 Detect variable frame rate video.
20508
20509 This filter tries to detect if the input is variable or constant frame rate.
20510
20511 At end it will output number of frames detected as having variable delta pts,
20512 and ones with constant delta pts.
20513 If there was frames with variable delta, than it will also show min, max and
20514 average delta encountered.
20515
20516 @section vibrance
20517
20518 Boost or alter saturation.
20519
20520 The filter accepts the following options:
20521 @table @option
20522 @item intensity
20523 Set strength of boost if positive value or strength of alter if negative value.
20524 Default is 0. Allowed range is from -2 to 2.
20525
20526 @item rbal
20527 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20528
20529 @item gbal
20530 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20531
20532 @item bbal
20533 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20534
20535 @item rlum
20536 Set the red luma coefficient.
20537
20538 @item glum
20539 Set the green luma coefficient.
20540
20541 @item blum
20542 Set the blue luma coefficient.
20543
20544 @item alternate
20545 If @code{intensity} is negative and this is set to 1, colors will change,
20546 otherwise colors will be less saturated, more towards gray.
20547 @end table
20548
20549 @subsection Commands
20550
20551 This filter supports the all above options as @ref{commands}.
20552
20553 @anchor{vignette}
20554 @section vignette
20555
20556 Make or reverse a natural vignetting effect.
20557
20558 The filter accepts the following options:
20559
20560 @table @option
20561 @item angle, a
20562 Set lens angle expression as a number of radians.
20563
20564 The value is clipped in the @code{[0,PI/2]} range.
20565
20566 Default value: @code{"PI/5"}
20567
20568 @item x0
20569 @item y0
20570 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20571 by default.
20572
20573 @item mode
20574 Set forward/backward mode.
20575
20576 Available modes are:
20577 @table @samp
20578 @item forward
20579 The larger the distance from the central point, the darker the image becomes.
20580
20581 @item backward
20582 The larger the distance from the central point, the brighter the image becomes.
20583 This can be used to reverse a vignette effect, though there is no automatic
20584 detection to extract the lens @option{angle} and other settings (yet). It can
20585 also be used to create a burning effect.
20586 @end table
20587
20588 Default value is @samp{forward}.
20589
20590 @item eval
20591 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20592
20593 It accepts the following values:
20594 @table @samp
20595 @item init
20596 Evaluate expressions only once during the filter initialization.
20597
20598 @item frame
20599 Evaluate expressions for each incoming frame. This is way slower than the
20600 @samp{init} mode since it requires all the scalers to be re-computed, but it
20601 allows advanced dynamic expressions.
20602 @end table
20603
20604 Default value is @samp{init}.
20605
20606 @item dither
20607 Set dithering to reduce the circular banding effects. Default is @code{1}
20608 (enabled).
20609
20610 @item aspect
20611 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20612 Setting this value to the SAR of the input will make a rectangular vignetting
20613 following the dimensions of the video.
20614
20615 Default is @code{1/1}.
20616 @end table
20617
20618 @subsection Expressions
20619
20620 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20621 following parameters.
20622
20623 @table @option
20624 @item w
20625 @item h
20626 input width and height
20627
20628 @item n
20629 the number of input frame, starting from 0
20630
20631 @item pts
20632 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20633 @var{TB} units, NAN if undefined
20634
20635 @item r
20636 frame rate of the input video, NAN if the input frame rate is unknown
20637
20638 @item t
20639 the PTS (Presentation TimeStamp) of the filtered video frame,
20640 expressed in seconds, NAN if undefined
20641
20642 @item tb
20643 time base of the input video
20644 @end table
20645
20646
20647 @subsection Examples
20648
20649 @itemize
20650 @item
20651 Apply simple strong vignetting effect:
20652 @example
20653 vignette=PI/4
20654 @end example
20655
20656 @item
20657 Make a flickering vignetting:
20658 @example
20659 vignette='PI/4+random(1)*PI/50':eval=frame
20660 @end example
20661
20662 @end itemize
20663
20664 @section vmafmotion
20665
20666 Obtain the average VMAF motion score of a video.
20667 It is one of the component metrics of VMAF.
20668
20669 The obtained average motion score is printed through the logging system.
20670
20671 The filter accepts the following options:
20672
20673 @table @option
20674 @item stats_file
20675 If specified, the filter will use the named file to save the motion score of
20676 each frame with respect to the previous frame.
20677 When filename equals "-" the data is sent to standard output.
20678 @end table
20679
20680 Example:
20681 @example
20682 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20683 @end example
20684
20685 @section vstack
20686 Stack input videos vertically.
20687
20688 All streams must be of same pixel format and of same width.
20689
20690 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20691 to create same output.
20692
20693 The filter accepts the following options:
20694
20695 @table @option
20696 @item inputs
20697 Set number of input streams. Default is 2.
20698
20699 @item shortest
20700 If set to 1, force the output to terminate when the shortest input
20701 terminates. Default value is 0.
20702 @end table
20703
20704 @section w3fdif
20705
20706 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20707 Deinterlacing Filter").
20708
20709 Based on the process described by Martin Weston for BBC R&D, and
20710 implemented based on the de-interlace algorithm written by Jim
20711 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20712 uses filter coefficients calculated by BBC R&D.
20713
20714 This filter uses field-dominance information in frame to decide which
20715 of each pair of fields to place first in the output.
20716 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20717
20718 There are two sets of filter coefficients, so called "simple"
20719 and "complex". Which set of filter coefficients is used can
20720 be set by passing an optional parameter:
20721
20722 @table @option
20723 @item filter
20724 Set the interlacing filter coefficients. Accepts one of the following values:
20725
20726 @table @samp
20727 @item simple
20728 Simple filter coefficient set.
20729 @item complex
20730 More-complex filter coefficient set.
20731 @end table
20732 Default value is @samp{complex}.
20733
20734 @item deint
20735 Specify which frames to deinterlace. Accepts one of the following values:
20736
20737 @table @samp
20738 @item all
20739 Deinterlace all frames,
20740 @item interlaced
20741 Only deinterlace frames marked as interlaced.
20742 @end table
20743
20744 Default value is @samp{all}.
20745 @end table
20746
20747 @section waveform
20748 Video waveform monitor.
20749
20750 The waveform monitor plots color component intensity. By default luminance
20751 only. Each column of the waveform corresponds to a column of pixels in the
20752 source video.
20753
20754 It accepts the following options:
20755
20756 @table @option
20757 @item mode, m
20758 Can be either @code{row}, or @code{column}. Default is @code{column}.
20759 In row mode, the graph on the left side represents color component value 0 and
20760 the right side represents value = 255. In column mode, the top side represents
20761 color component value = 0 and bottom side represents value = 255.
20762
20763 @item intensity, i
20764 Set intensity. Smaller values are useful to find out how many values of the same
20765 luminance are distributed across input rows/columns.
20766 Default value is @code{0.04}. Allowed range is [0, 1].
20767
20768 @item mirror, r
20769 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
20770 In mirrored mode, higher values will be represented on the left
20771 side for @code{row} mode and at the top for @code{column} mode. Default is
20772 @code{1} (mirrored).
20773
20774 @item display, d
20775 Set display mode.
20776 It accepts the following values:
20777 @table @samp
20778 @item overlay
20779 Presents information identical to that in the @code{parade}, except
20780 that the graphs representing color components are superimposed directly
20781 over one another.
20782
20783 This display mode makes it easier to spot relative differences or similarities
20784 in overlapping areas of the color components that are supposed to be identical,
20785 such as neutral whites, grays, or blacks.
20786
20787 @item stack
20788 Display separate graph for the color components side by side in
20789 @code{row} mode or one below the other in @code{column} mode.
20790
20791 @item parade
20792 Display separate graph for the color components side by side in
20793 @code{column} mode or one below the other in @code{row} mode.
20794
20795 Using this display mode makes it easy to spot color casts in the highlights
20796 and shadows of an image, by comparing the contours of the top and the bottom
20797 graphs of each waveform. Since whites, grays, and blacks are characterized
20798 by exactly equal amounts of red, green, and blue, neutral areas of the picture
20799 should display three waveforms of roughly equal width/height. If not, the
20800 correction is easy to perform by making level adjustments the three waveforms.
20801 @end table
20802 Default is @code{stack}.
20803
20804 @item components, c
20805 Set which color components to display. Default is 1, which means only luminance
20806 or red color component if input is in RGB colorspace. If is set for example to
20807 7 it will display all 3 (if) available color components.
20808
20809 @item envelope, e
20810 @table @samp
20811 @item none
20812 No envelope, this is default.
20813
20814 @item instant
20815 Instant envelope, minimum and maximum values presented in graph will be easily
20816 visible even with small @code{step} value.
20817
20818 @item peak
20819 Hold minimum and maximum values presented in graph across time. This way you
20820 can still spot out of range values without constantly looking at waveforms.
20821
20822 @item peak+instant
20823 Peak and instant envelope combined together.
20824 @end table
20825
20826 @item filter, f
20827 @table @samp
20828 @item lowpass
20829 No filtering, this is default.
20830
20831 @item flat
20832 Luma and chroma combined together.
20833
20834 @item aflat
20835 Similar as above, but shows difference between blue and red chroma.
20836
20837 @item xflat
20838 Similar as above, but use different colors.
20839
20840 @item yflat
20841 Similar as above, but again with different colors.
20842
20843 @item chroma
20844 Displays only chroma.
20845
20846 @item color
20847 Displays actual color value on waveform.
20848
20849 @item acolor
20850 Similar as above, but with luma showing frequency of chroma values.
20851 @end table
20852
20853 @item graticule, g
20854 Set which graticule to display.
20855
20856 @table @samp
20857 @item none
20858 Do not display graticule.
20859
20860 @item green
20861 Display green graticule showing legal broadcast ranges.
20862
20863 @item orange
20864 Display orange graticule showing legal broadcast ranges.
20865
20866 @item invert
20867 Display invert graticule showing legal broadcast ranges.
20868 @end table
20869
20870 @item opacity, o
20871 Set graticule opacity.
20872
20873 @item flags, fl
20874 Set graticule flags.
20875
20876 @table @samp
20877 @item numbers
20878 Draw numbers above lines. By default enabled.
20879
20880 @item dots
20881 Draw dots instead of lines.
20882 @end table
20883
20884 @item scale, s
20885 Set scale used for displaying graticule.
20886
20887 @table @samp
20888 @item digital
20889 @item millivolts
20890 @item ire
20891 @end table
20892 Default is digital.
20893
20894 @item bgopacity, b
20895 Set background opacity.
20896
20897 @item tint0, t0
20898 @item tint1, t1
20899 Set tint for output.
20900 Only used with lowpass filter and when display is not overlay and input
20901 pixel formats are not RGB.
20902 @end table
20903
20904 @section weave, doubleweave
20905
20906 The @code{weave} takes a field-based video input and join
20907 each two sequential fields into single frame, producing a new double
20908 height clip with half the frame rate and half the frame count.
20909
20910 The @code{doubleweave} works same as @code{weave} but without
20911 halving frame rate and frame count.
20912
20913 It accepts the following option:
20914
20915 @table @option
20916 @item first_field
20917 Set first field. Available values are:
20918
20919 @table @samp
20920 @item top, t
20921 Set the frame as top-field-first.
20922
20923 @item bottom, b
20924 Set the frame as bottom-field-first.
20925 @end table
20926 @end table
20927
20928 @subsection Examples
20929
20930 @itemize
20931 @item
20932 Interlace video using @ref{select} and @ref{separatefields} filter:
20933 @example
20934 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20935 @end example
20936 @end itemize
20937
20938 @section xbr
20939 Apply the xBR high-quality magnification filter which is designed for pixel
20940 art. It follows a set of edge-detection rules, see
20941 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20942
20943 It accepts the following option:
20944
20945 @table @option
20946 @item n
20947 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20948 @code{3xBR} and @code{4} for @code{4xBR}.
20949 Default is @code{3}.
20950 @end table
20951
20952 @section xfade
20953
20954 Apply cross fade from one input video stream to another input video stream.
20955 The cross fade is applied for specified duration.
20956
20957 The filter accepts the following options:
20958
20959 @table @option
20960 @item transition
20961 Set one of available transition effects:
20962
20963 @table @samp
20964 @item custom
20965 @item fade
20966 @item wipeleft
20967 @item wiperight
20968 @item wipeup
20969 @item wipedown
20970 @item slideleft
20971 @item slideright
20972 @item slideup
20973 @item slidedown
20974 @item circlecrop
20975 @item rectcrop
20976 @item distance
20977 @item fadeblack
20978 @item fadewhite
20979 @item radial
20980 @item smoothleft
20981 @item smoothright
20982 @item smoothup
20983 @item smoothdown
20984 @item circleopen
20985 @item circleclose
20986 @item vertopen
20987 @item vertclose
20988 @item horzopen
20989 @item horzclose
20990 @item dissolve
20991 @item pixelize
20992 @item diagtl
20993 @item diagtr
20994 @item diagbl
20995 @item diagbr
20996 @item hlslice
20997 @item hrslice
20998 @item vuslice
20999 @item vdslice
21000 @item hblur
21001 @item fadegrays
21002 @item wipetl
21003 @item wipetr
21004 @item wipebl
21005 @item wipebr
21006 @item squeezeh
21007 @item squeezev
21008 @end table
21009 Default transition effect is fade.
21010
21011 @item duration
21012 Set cross fade duration in seconds.
21013 Default duration is 1 second.
21014
21015 @item offset
21016 Set cross fade start relative to first input stream in seconds.
21017 Default offset is 0.
21018
21019 @item expr
21020 Set expression for custom transition effect.
21021
21022 The expressions can use the following variables and functions:
21023
21024 @table @option
21025 @item X
21026 @item Y
21027 The coordinates of the current sample.
21028
21029 @item W
21030 @item H
21031 The width and height of the image.
21032
21033 @item P
21034 Progress of transition effect.
21035
21036 @item PLANE
21037 Currently processed plane.
21038
21039 @item A
21040 Return value of first input at current location and plane.
21041
21042 @item B
21043 Return value of second input at current location and plane.
21044
21045 @item a0(x, y)
21046 @item a1(x, y)
21047 @item a2(x, y)
21048 @item a3(x, y)
21049 Return the value of the pixel at location (@var{x},@var{y}) of the
21050 first/second/third/fourth component of first input.
21051
21052 @item b0(x, y)
21053 @item b1(x, y)
21054 @item b2(x, y)
21055 @item b3(x, y)
21056 Return the value of the pixel at location (@var{x},@var{y}) of the
21057 first/second/third/fourth component of second input.
21058 @end table
21059 @end table
21060
21061 @subsection Examples
21062
21063 @itemize
21064 @item
21065 Cross fade from one input video to another input video, with fade transition and duration of transition
21066 of 2 seconds starting at offset of 5 seconds:
21067 @example
21068 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21069 @end example
21070 @end itemize
21071
21072 @section xmedian
21073 Pick median pixels from several input videos.
21074
21075 The filter accepts the following options:
21076
21077 @table @option
21078 @item inputs
21079 Set number of inputs.
21080 Default is 3. Allowed range is from 3 to 255.
21081 If number of inputs is even number, than result will be mean value between two median values.
21082
21083 @item planes
21084 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21085
21086 @item percentile
21087 Set median percentile. Default value is @code{0.5}.
21088 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21089 minimum values, and @code{1} maximum values.
21090 @end table
21091
21092 @section xstack
21093 Stack video inputs into custom layout.
21094
21095 All streams must be of same pixel format.
21096
21097 The filter accepts the following options:
21098
21099 @table @option
21100 @item inputs
21101 Set number of input streams. Default is 2.
21102
21103 @item layout
21104 Specify layout of inputs.
21105 This option requires the desired layout configuration to be explicitly set by the user.
21106 This sets position of each video input in output. Each input
21107 is separated by '|'.
21108 The first number represents the column, and the second number represents the row.
21109 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21110 where X is video input from which to take width or height.
21111 Multiple values can be used when separated by '+'. In such
21112 case values are summed together.
21113
21114 Note that if inputs are of different sizes gaps may appear, as not all of
21115 the output video frame will be filled. Similarly, videos can overlap each
21116 other if their position doesn't leave enough space for the full frame of
21117 adjoining videos.
21118
21119 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21120 a layout must be set by the user.
21121
21122 @item shortest
21123 If set to 1, force the output to terminate when the shortest input
21124 terminates. Default value is 0.
21125
21126 @item fill
21127 If set to valid color, all unused pixels will be filled with that color.
21128 By default fill is set to none, so it is disabled.
21129 @end table
21130
21131 @subsection Examples
21132
21133 @itemize
21134 @item
21135 Display 4 inputs into 2x2 grid.
21136
21137 Layout:
21138 @example
21139 input1(0, 0)  | input3(w0, 0)
21140 input2(0, h0) | input4(w0, h0)
21141 @end example
21142
21143 @example
21144 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21145 @end example
21146
21147 Note that if inputs are of different sizes, gaps or overlaps may occur.
21148
21149 @item
21150 Display 4 inputs into 1x4 grid.
21151
21152 Layout:
21153 @example
21154 input1(0, 0)
21155 input2(0, h0)
21156 input3(0, h0+h1)
21157 input4(0, h0+h1+h2)
21158 @end example
21159
21160 @example
21161 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21162 @end example
21163
21164 Note that if inputs are of different widths, unused space will appear.
21165
21166 @item
21167 Display 9 inputs into 3x3 grid.
21168
21169 Layout:
21170 @example
21171 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21172 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21173 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21174 @end example
21175
21176 @example
21177 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
21178 @end example
21179
21180 Note that if inputs are of different sizes, gaps or overlaps may occur.
21181
21182 @item
21183 Display 16 inputs into 4x4 grid.
21184
21185 Layout:
21186 @example
21187 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21188 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21189 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21190 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21191 @end example
21192
21193 @example
21194 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|
21195 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
21196 @end example
21197
21198 Note that if inputs are of different sizes, gaps or overlaps may occur.
21199
21200 @end itemize
21201
21202 @anchor{yadif}
21203 @section yadif
21204
21205 Deinterlace the input video ("yadif" means "yet another deinterlacing
21206 filter").
21207
21208 It accepts the following parameters:
21209
21210
21211 @table @option
21212
21213 @item mode
21214 The interlacing mode to adopt. It accepts one of the following values:
21215
21216 @table @option
21217 @item 0, send_frame
21218 Output one frame for each frame.
21219 @item 1, send_field
21220 Output one frame for each field.
21221 @item 2, send_frame_nospatial
21222 Like @code{send_frame}, but it skips the spatial interlacing check.
21223 @item 3, send_field_nospatial
21224 Like @code{send_field}, but it skips the spatial interlacing check.
21225 @end table
21226
21227 The default value is @code{send_frame}.
21228
21229 @item parity
21230 The picture field parity assumed for the input interlaced video. It accepts one
21231 of the following values:
21232
21233 @table @option
21234 @item 0, tff
21235 Assume the top field is first.
21236 @item 1, bff
21237 Assume the bottom field is first.
21238 @item -1, auto
21239 Enable automatic detection of field parity.
21240 @end table
21241
21242 The default value is @code{auto}.
21243 If the interlacing is unknown or the decoder does not export this information,
21244 top field first will be assumed.
21245
21246 @item deint
21247 Specify which frames to deinterlace. Accepts one of the following
21248 values:
21249
21250 @table @option
21251 @item 0, all
21252 Deinterlace all frames.
21253 @item 1, interlaced
21254 Only deinterlace frames marked as interlaced.
21255 @end table
21256
21257 The default value is @code{all}.
21258 @end table
21259
21260 @section yadif_cuda
21261
21262 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21263 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21264 and/or nvenc.
21265
21266 It accepts the following parameters:
21267
21268
21269 @table @option
21270
21271 @item mode
21272 The interlacing mode to adopt. It accepts one of the following values:
21273
21274 @table @option
21275 @item 0, send_frame
21276 Output one frame for each frame.
21277 @item 1, send_field
21278 Output one frame for each field.
21279 @item 2, send_frame_nospatial
21280 Like @code{send_frame}, but it skips the spatial interlacing check.
21281 @item 3, send_field_nospatial
21282 Like @code{send_field}, but it skips the spatial interlacing check.
21283 @end table
21284
21285 The default value is @code{send_frame}.
21286
21287 @item parity
21288 The picture field parity assumed for the input interlaced video. It accepts one
21289 of the following values:
21290
21291 @table @option
21292 @item 0, tff
21293 Assume the top field is first.
21294 @item 1, bff
21295 Assume the bottom field is first.
21296 @item -1, auto
21297 Enable automatic detection of field parity.
21298 @end table
21299
21300 The default value is @code{auto}.
21301 If the interlacing is unknown or the decoder does not export this information,
21302 top field first will be assumed.
21303
21304 @item deint
21305 Specify which frames to deinterlace. Accepts one of the following
21306 values:
21307
21308 @table @option
21309 @item 0, all
21310 Deinterlace all frames.
21311 @item 1, interlaced
21312 Only deinterlace frames marked as interlaced.
21313 @end table
21314
21315 The default value is @code{all}.
21316 @end table
21317
21318 @section yaepblur
21319
21320 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21321 The algorithm is described in
21322 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21323
21324 It accepts the following parameters:
21325
21326 @table @option
21327 @item radius, r
21328 Set the window radius. Default value is 3.
21329
21330 @item planes, p
21331 Set which planes to filter. Default is only the first plane.
21332
21333 @item sigma, s
21334 Set blur strength. Default value is 128.
21335 @end table
21336
21337 @subsection Commands
21338 This filter supports same @ref{commands} as options.
21339
21340 @section zoompan
21341
21342 Apply Zoom & Pan effect.
21343
21344 This filter accepts the following options:
21345
21346 @table @option
21347 @item zoom, z
21348 Set the zoom expression. Range is 1-10. Default is 1.
21349
21350 @item x
21351 @item y
21352 Set the x and y expression. Default is 0.
21353
21354 @item d
21355 Set the duration expression in number of frames.
21356 This sets for how many number of frames effect will last for
21357 single input image.
21358
21359 @item s
21360 Set the output image size, default is 'hd720'.
21361
21362 @item fps
21363 Set the output frame rate, default is '25'.
21364 @end table
21365
21366 Each expression can contain the following constants:
21367
21368 @table @option
21369 @item in_w, iw
21370 Input width.
21371
21372 @item in_h, ih
21373 Input height.
21374
21375 @item out_w, ow
21376 Output width.
21377
21378 @item out_h, oh
21379 Output height.
21380
21381 @item in
21382 Input frame count.
21383
21384 @item on
21385 Output frame count.
21386
21387 @item in_time, it
21388 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21389
21390 @item out_time, time, ot
21391 The output timestamp expressed in seconds.
21392
21393 @item x
21394 @item y
21395 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21396 for current input frame.
21397
21398 @item px
21399 @item py
21400 'x' and 'y' of last output frame of previous input frame or 0 when there was
21401 not yet such frame (first input frame).
21402
21403 @item zoom
21404 Last calculated zoom from 'z' expression for current input frame.
21405
21406 @item pzoom
21407 Last calculated zoom of last output frame of previous input frame.
21408
21409 @item duration
21410 Number of output frames for current input frame. Calculated from 'd' expression
21411 for each input frame.
21412
21413 @item pduration
21414 number of output frames created for previous input frame
21415
21416 @item a
21417 Rational number: input width / input height
21418
21419 @item sar
21420 sample aspect ratio
21421
21422 @item dar
21423 display aspect ratio
21424
21425 @end table
21426
21427 @subsection Examples
21428
21429 @itemize
21430 @item
21431 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21432 @example
21433 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
21434 @end example
21435
21436 @item
21437 Zoom in up to 1.5x and pan always at center of picture:
21438 @example
21439 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21440 @end example
21441
21442 @item
21443 Same as above but without pausing:
21444 @example
21445 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21446 @end example
21447
21448 @item
21449 Zoom in 2x into center of picture only for the first second of the input video:
21450 @example
21451 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21452 @end example
21453
21454 @end itemize
21455
21456 @anchor{zscale}
21457 @section zscale
21458 Scale (resize) the input video, using the z.lib library:
21459 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21460 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21461
21462 The zscale filter forces the output display aspect ratio to be the same
21463 as the input, by changing the output sample aspect ratio.
21464
21465 If the input image format is different from the format requested by
21466 the next filter, the zscale filter will convert the input to the
21467 requested format.
21468
21469 @subsection Options
21470 The filter accepts the following options.
21471
21472 @table @option
21473 @item width, w
21474 @item height, h
21475 Set the output video dimension expression. Default value is the input
21476 dimension.
21477
21478 If the @var{width} or @var{w} value is 0, the input width is used for
21479 the output. If the @var{height} or @var{h} value is 0, the input height
21480 is used for the output.
21481
21482 If one and only one of the values is -n with n >= 1, the zscale filter
21483 will use a value that maintains the aspect ratio of the input image,
21484 calculated from the other specified dimension. After that it will,
21485 however, make sure that the calculated dimension is divisible by n and
21486 adjust the value if necessary.
21487
21488 If both values are -n with n >= 1, the behavior will be identical to
21489 both values being set to 0 as previously detailed.
21490
21491 See below for the list of accepted constants for use in the dimension
21492 expression.
21493
21494 @item size, s
21495 Set the video size. For the syntax of this option, check the
21496 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21497
21498 @item dither, d
21499 Set the dither type.
21500
21501 Possible values are:
21502 @table @var
21503 @item none
21504 @item ordered
21505 @item random
21506 @item error_diffusion
21507 @end table
21508
21509 Default is none.
21510
21511 @item filter, f
21512 Set the resize filter type.
21513
21514 Possible values are:
21515 @table @var
21516 @item point
21517 @item bilinear
21518 @item bicubic
21519 @item spline16
21520 @item spline36
21521 @item lanczos
21522 @end table
21523
21524 Default is bilinear.
21525
21526 @item range, r
21527 Set the color range.
21528
21529 Possible values are:
21530 @table @var
21531 @item input
21532 @item limited
21533 @item full
21534 @end table
21535
21536 Default is same as input.
21537
21538 @item primaries, p
21539 Set the color primaries.
21540
21541 Possible values are:
21542 @table @var
21543 @item input
21544 @item 709
21545 @item unspecified
21546 @item 170m
21547 @item 240m
21548 @item 2020
21549 @end table
21550
21551 Default is same as input.
21552
21553 @item transfer, t
21554 Set the transfer characteristics.
21555
21556 Possible values are:
21557 @table @var
21558 @item input
21559 @item 709
21560 @item unspecified
21561 @item 601
21562 @item linear
21563 @item 2020_10
21564 @item 2020_12
21565 @item smpte2084
21566 @item iec61966-2-1
21567 @item arib-std-b67
21568 @end table
21569
21570 Default is same as input.
21571
21572 @item matrix, m
21573 Set the colorspace matrix.
21574
21575 Possible value are:
21576 @table @var
21577 @item input
21578 @item 709
21579 @item unspecified
21580 @item 470bg
21581 @item 170m
21582 @item 2020_ncl
21583 @item 2020_cl
21584 @end table
21585
21586 Default is same as input.
21587
21588 @item rangein, rin
21589 Set the input color range.
21590
21591 Possible values are:
21592 @table @var
21593 @item input
21594 @item limited
21595 @item full
21596 @end table
21597
21598 Default is same as input.
21599
21600 @item primariesin, pin
21601 Set the input color primaries.
21602
21603 Possible values are:
21604 @table @var
21605 @item input
21606 @item 709
21607 @item unspecified
21608 @item 170m
21609 @item 240m
21610 @item 2020
21611 @end table
21612
21613 Default is same as input.
21614
21615 @item transferin, tin
21616 Set the input transfer characteristics.
21617
21618 Possible values are:
21619 @table @var
21620 @item input
21621 @item 709
21622 @item unspecified
21623 @item 601
21624 @item linear
21625 @item 2020_10
21626 @item 2020_12
21627 @end table
21628
21629 Default is same as input.
21630
21631 @item matrixin, min
21632 Set the input colorspace matrix.
21633
21634 Possible value are:
21635 @table @var
21636 @item input
21637 @item 709
21638 @item unspecified
21639 @item 470bg
21640 @item 170m
21641 @item 2020_ncl
21642 @item 2020_cl
21643 @end table
21644
21645 @item chromal, c
21646 Set the output chroma location.
21647
21648 Possible values are:
21649 @table @var
21650 @item input
21651 @item left
21652 @item center
21653 @item topleft
21654 @item top
21655 @item bottomleft
21656 @item bottom
21657 @end table
21658
21659 @item chromalin, cin
21660 Set the input chroma location.
21661
21662 Possible values are:
21663 @table @var
21664 @item input
21665 @item left
21666 @item center
21667 @item topleft
21668 @item top
21669 @item bottomleft
21670 @item bottom
21671 @end table
21672
21673 @item npl
21674 Set the nominal peak luminance.
21675 @end table
21676
21677 The values of the @option{w} and @option{h} options are expressions
21678 containing the following constants:
21679
21680 @table @var
21681 @item in_w
21682 @item in_h
21683 The input width and height
21684
21685 @item iw
21686 @item ih
21687 These are the same as @var{in_w} and @var{in_h}.
21688
21689 @item out_w
21690 @item out_h
21691 The output (scaled) width and height
21692
21693 @item ow
21694 @item oh
21695 These are the same as @var{out_w} and @var{out_h}
21696
21697 @item a
21698 The same as @var{iw} / @var{ih}
21699
21700 @item sar
21701 input sample aspect ratio
21702
21703 @item dar
21704 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
21705
21706 @item hsub
21707 @item vsub
21708 horizontal and vertical input chroma subsample values. For example for the
21709 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21710
21711 @item ohsub
21712 @item ovsub
21713 horizontal and vertical output chroma subsample values. For example for the
21714 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21715 @end table
21716
21717 @subsection Commands
21718
21719 This filter supports the following commands:
21720 @table @option
21721 @item width, w
21722 @item height, h
21723 Set the output video dimension expression.
21724 The command accepts the same syntax of the corresponding option.
21725
21726 If the specified expression is not valid, it is kept at its current
21727 value.
21728 @end table
21729
21730 @c man end VIDEO FILTERS
21731
21732 @chapter OpenCL Video Filters
21733 @c man begin OPENCL VIDEO FILTERS
21734
21735 Below is a description of the currently available OpenCL video filters.
21736
21737 To enable compilation of these filters you need to configure FFmpeg with
21738 @code{--enable-opencl}.
21739
21740 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
21741 @table @option
21742
21743 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
21744 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
21745 given device parameters.
21746
21747 @item -filter_hw_device @var{name}
21748 Pass the hardware device called @var{name} to all filters in any filter graph.
21749
21750 @end table
21751
21752 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
21753
21754 @itemize
21755 @item
21756 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
21757 @example
21758 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
21759 @end example
21760 @end itemize
21761
21762 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.
21763
21764 @section avgblur_opencl
21765
21766 Apply average blur filter.
21767
21768 The filter accepts the following options:
21769
21770 @table @option
21771 @item sizeX
21772 Set horizontal radius size.
21773 Range is @code{[1, 1024]} and default value is @code{1}.
21774
21775 @item planes
21776 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21777
21778 @item sizeY
21779 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
21780 @end table
21781
21782 @subsection Example
21783
21784 @itemize
21785 @item
21786 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.
21787 @example
21788 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
21789 @end example
21790 @end itemize
21791
21792 @section boxblur_opencl
21793
21794 Apply a boxblur algorithm to the input video.
21795
21796 It accepts the following parameters:
21797
21798 @table @option
21799
21800 @item luma_radius, lr
21801 @item luma_power, lp
21802 @item chroma_radius, cr
21803 @item chroma_power, cp
21804 @item alpha_radius, ar
21805 @item alpha_power, ap
21806
21807 @end table
21808
21809 A description of the accepted options follows.
21810
21811 @table @option
21812 @item luma_radius, lr
21813 @item chroma_radius, cr
21814 @item alpha_radius, ar
21815 Set an expression for the box radius in pixels used for blurring the
21816 corresponding input plane.
21817
21818 The radius value must be a non-negative number, and must not be
21819 greater than the value of the expression @code{min(w,h)/2} for the
21820 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
21821 planes.
21822
21823 Default value for @option{luma_radius} is "2". If not specified,
21824 @option{chroma_radius} and @option{alpha_radius} default to the
21825 corresponding value set for @option{luma_radius}.
21826
21827 The expressions can contain the following constants:
21828 @table @option
21829 @item w
21830 @item h
21831 The input width and height in pixels.
21832
21833 @item cw
21834 @item ch
21835 The input chroma image width and height in pixels.
21836
21837 @item hsub
21838 @item vsub
21839 The horizontal and vertical chroma subsample values. For example, for the
21840 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21841 @end table
21842
21843 @item luma_power, lp
21844 @item chroma_power, cp
21845 @item alpha_power, ap
21846 Specify how many times the boxblur filter is applied to the
21847 corresponding plane.
21848
21849 Default value for @option{luma_power} is 2. If not specified,
21850 @option{chroma_power} and @option{alpha_power} default to the
21851 corresponding value set for @option{luma_power}.
21852
21853 A value of 0 will disable the effect.
21854 @end table
21855
21856 @subsection Examples
21857
21858 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.
21859
21860 @itemize
21861 @item
21862 Apply a boxblur filter with the luma, chroma, and alpha radius
21863 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.
21864 @example
21865 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21866 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21867 @end example
21868
21869 @item
21870 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.
21871
21872 For the luma plane, a 2x2 box radius will be run once.
21873
21874 For the chroma plane, a 4x4 box radius will be run 5 times.
21875
21876 For the alpha plane, a 3x3 box radius will be run 7 times.
21877 @example
21878 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21879 @end example
21880 @end itemize
21881
21882 @section colorkey_opencl
21883 RGB colorspace color keying.
21884
21885 The filter accepts the following options:
21886
21887 @table @option
21888 @item color
21889 The color which will be replaced with transparency.
21890
21891 @item similarity
21892 Similarity percentage with the key color.
21893
21894 0.01 matches only the exact key color, while 1.0 matches everything.
21895
21896 @item blend
21897 Blend percentage.
21898
21899 0.0 makes pixels either fully transparent, or not transparent at all.
21900
21901 Higher values result in semi-transparent pixels, with a higher transparency
21902 the more similar the pixels color is to the key color.
21903 @end table
21904
21905 @subsection Examples
21906
21907 @itemize
21908 @item
21909 Make every semi-green pixel in the input transparent with some slight blending:
21910 @example
21911 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21912 @end example
21913 @end itemize
21914
21915 @section convolution_opencl
21916
21917 Apply convolution of 3x3, 5x5, 7x7 matrix.
21918
21919 The filter accepts the following options:
21920
21921 @table @option
21922 @item 0m
21923 @item 1m
21924 @item 2m
21925 @item 3m
21926 Set matrix for each plane.
21927 Matrix is sequence of 9, 25 or 49 signed numbers.
21928 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21929
21930 @item 0rdiv
21931 @item 1rdiv
21932 @item 2rdiv
21933 @item 3rdiv
21934 Set multiplier for calculated value for each plane.
21935 If unset or 0, it will be sum of all matrix elements.
21936 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21937
21938 @item 0bias
21939 @item 1bias
21940 @item 2bias
21941 @item 3bias
21942 Set bias for each plane. This value is added to the result of the multiplication.
21943 Useful for making the overall image brighter or darker.
21944 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21945
21946 @end table
21947
21948 @subsection Examples
21949
21950 @itemize
21951 @item
21952 Apply sharpen:
21953 @example
21954 -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
21955 @end example
21956
21957 @item
21958 Apply blur:
21959 @example
21960 -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
21961 @end example
21962
21963 @item
21964 Apply edge enhance:
21965 @example
21966 -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
21967 @end example
21968
21969 @item
21970 Apply edge detect:
21971 @example
21972 -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
21973 @end example
21974
21975 @item
21976 Apply laplacian edge detector which includes diagonals:
21977 @example
21978 -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
21979 @end example
21980
21981 @item
21982 Apply emboss:
21983 @example
21984 -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
21985 @end example
21986 @end itemize
21987
21988 @section erosion_opencl
21989
21990 Apply erosion effect to the video.
21991
21992 This filter replaces the pixel by the local(3x3) minimum.
21993
21994 It accepts the following options:
21995
21996 @table @option
21997 @item threshold0
21998 @item threshold1
21999 @item threshold2
22000 @item threshold3
22001 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22002 If @code{0}, plane will remain unchanged.
22003
22004 @item coordinates
22005 Flag which specifies the pixel to refer to.
22006 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22007
22008 Flags to local 3x3 coordinates region centered on @code{x}:
22009
22010     1 2 3
22011
22012     4 x 5
22013
22014     6 7 8
22015 @end table
22016
22017 @subsection Example
22018
22019 @itemize
22020 @item
22021 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.
22022 @example
22023 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22024 @end example
22025 @end itemize
22026
22027 @section deshake_opencl
22028 Feature-point based video stabilization filter.
22029
22030 The filter accepts the following options:
22031
22032 @table @option
22033 @item tripod
22034 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22035
22036 @item debug
22037 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22038
22039 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22040
22041 Viewing point matches in the output video is only supported for RGB input.
22042
22043 Defaults to @code{0}.
22044
22045 @item adaptive_crop
22046 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22047
22048 Defaults to @code{1}.
22049
22050 @item refine_features
22051 Whether or not feature points should be refined at a sub-pixel level.
22052
22053 This can be turned off for a slight performance gain at the cost of precision.
22054
22055 Defaults to @code{1}.
22056
22057 @item smooth_strength
22058 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22059
22060 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22061
22062 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22063
22064 Defaults to @code{0.0}.
22065
22066 @item smooth_window_multiplier
22067 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22068
22069 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22070
22071 Acceptable values range from @code{0.1} to @code{10.0}.
22072
22073 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22074 potentially improving smoothness, but also increase latency and memory usage.
22075
22076 Defaults to @code{2.0}.
22077
22078 @end table
22079
22080 @subsection Examples
22081
22082 @itemize
22083 @item
22084 Stabilize a video with a fixed, medium smoothing strength:
22085 @example
22086 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22087 @end example
22088
22089 @item
22090 Stabilize a video with debugging (both in console and in rendered video):
22091 @example
22092 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22093 @end example
22094 @end itemize
22095
22096 @section dilation_opencl
22097
22098 Apply dilation effect to the video.
22099
22100 This filter replaces the pixel by the local(3x3) maximum.
22101
22102 It accepts the following options:
22103
22104 @table @option
22105 @item threshold0
22106 @item threshold1
22107 @item threshold2
22108 @item threshold3
22109 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22110 If @code{0}, plane will remain unchanged.
22111
22112 @item coordinates
22113 Flag which specifies the pixel to refer to.
22114 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22115
22116 Flags to local 3x3 coordinates region centered on @code{x}:
22117
22118     1 2 3
22119
22120     4 x 5
22121
22122     6 7 8
22123 @end table
22124
22125 @subsection Example
22126
22127 @itemize
22128 @item
22129 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.
22130 @example
22131 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22132 @end example
22133 @end itemize
22134
22135 @section nlmeans_opencl
22136
22137 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22138
22139 @section overlay_opencl
22140
22141 Overlay one video on top of another.
22142
22143 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22144 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22145
22146 The filter accepts the following options:
22147
22148 @table @option
22149
22150 @item x
22151 Set the x coordinate of the overlaid video on the main video.
22152 Default value is @code{0}.
22153
22154 @item y
22155 Set the y coordinate of the overlaid video on the main video.
22156 Default value is @code{0}.
22157
22158 @end table
22159
22160 @subsection Examples
22161
22162 @itemize
22163 @item
22164 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22165 @example
22166 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22167 @end example
22168 @item
22169 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22170 @example
22171 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22172 @end example
22173
22174 @end itemize
22175
22176 @section pad_opencl
22177
22178 Add paddings to the input image, and place the original input at the
22179 provided @var{x}, @var{y} coordinates.
22180
22181 It accepts the following options:
22182
22183 @table @option
22184 @item width, w
22185 @item height, h
22186 Specify an expression for the size of the output image with the
22187 paddings added. If the value for @var{width} or @var{height} is 0, the
22188 corresponding input size is used for the output.
22189
22190 The @var{width} expression can reference the value set by the
22191 @var{height} expression, and vice versa.
22192
22193 The default value of @var{width} and @var{height} is 0.
22194
22195 @item x
22196 @item y
22197 Specify the offsets to place the input image at within the padded area,
22198 with respect to the top/left border of the output image.
22199
22200 The @var{x} expression can reference the value set by the @var{y}
22201 expression, and vice versa.
22202
22203 The default value of @var{x} and @var{y} is 0.
22204
22205 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22206 so the input image is centered on the padded area.
22207
22208 @item color
22209 Specify the color of the padded area. For the syntax of this option,
22210 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22211 manual,ffmpeg-utils}.
22212
22213 @item aspect
22214 Pad to an aspect instead to a resolution.
22215 @end table
22216
22217 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22218 options are expressions containing the following constants:
22219
22220 @table @option
22221 @item in_w
22222 @item in_h
22223 The input video width and height.
22224
22225 @item iw
22226 @item ih
22227 These are the same as @var{in_w} and @var{in_h}.
22228
22229 @item out_w
22230 @item out_h
22231 The output width and height (the size of the padded area), as
22232 specified by the @var{width} and @var{height} expressions.
22233
22234 @item ow
22235 @item oh
22236 These are the same as @var{out_w} and @var{out_h}.
22237
22238 @item x
22239 @item y
22240 The x and y offsets as specified by the @var{x} and @var{y}
22241 expressions, or NAN if not yet specified.
22242
22243 @item a
22244 same as @var{iw} / @var{ih}
22245
22246 @item sar
22247 input sample aspect ratio
22248
22249 @item dar
22250 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22251 @end table
22252
22253 @section prewitt_opencl
22254
22255 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22256
22257 The filter accepts the following option:
22258
22259 @table @option
22260 @item planes
22261 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22262
22263 @item scale
22264 Set value which will be multiplied with filtered result.
22265 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22266
22267 @item delta
22268 Set value which will be added to filtered result.
22269 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22270 @end table
22271
22272 @subsection Example
22273
22274 @itemize
22275 @item
22276 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22277 @example
22278 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22279 @end example
22280 @end itemize
22281
22282 @anchor{program_opencl}
22283 @section program_opencl
22284
22285 Filter video using an OpenCL program.
22286
22287 @table @option
22288
22289 @item source
22290 OpenCL program source file.
22291
22292 @item kernel
22293 Kernel name in program.
22294
22295 @item inputs
22296 Number of inputs to the filter.  Defaults to 1.
22297
22298 @item size, s
22299 Size of output frames.  Defaults to the same as the first input.
22300
22301 @end table
22302
22303 The @code{program_opencl} filter also supports the @ref{framesync} options.
22304
22305 The program source file must contain a kernel function with the given name,
22306 which will be run once for each plane of the output.  Each run on a plane
22307 gets enqueued as a separate 2D global NDRange with one work-item for each
22308 pixel to be generated.  The global ID offset for each work-item is therefore
22309 the coordinates of a pixel in the destination image.
22310
22311 The kernel function needs to take the following arguments:
22312 @itemize
22313 @item
22314 Destination image, @var{__write_only image2d_t}.
22315
22316 This image will become the output; the kernel should write all of it.
22317 @item
22318 Frame index, @var{unsigned int}.
22319
22320 This is a counter starting from zero and increasing by one for each frame.
22321 @item
22322 Source images, @var{__read_only image2d_t}.
22323
22324 These are the most recent images on each input.  The kernel may read from
22325 them to generate the output, but they can't be written to.
22326 @end itemize
22327
22328 Example programs:
22329
22330 @itemize
22331 @item
22332 Copy the input to the output (output must be the same size as the input).
22333 @verbatim
22334 __kernel void copy(__write_only image2d_t destination,
22335                    unsigned int index,
22336                    __read_only  image2d_t source)
22337 {
22338     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22339
22340     int2 location = (int2)(get_global_id(0), get_global_id(1));
22341
22342     float4 value = read_imagef(source, sampler, location);
22343
22344     write_imagef(destination, location, value);
22345 }
22346 @end verbatim
22347
22348 @item
22349 Apply a simple transformation, rotating the input by an amount increasing
22350 with the index counter.  Pixel values are linearly interpolated by the
22351 sampler, and the output need not have the same dimensions as the input.
22352 @verbatim
22353 __kernel void rotate_image(__write_only image2d_t dst,
22354                            unsigned int index,
22355                            __read_only  image2d_t src)
22356 {
22357     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22358                                CLK_FILTER_LINEAR);
22359
22360     float angle = (float)index / 100.0f;
22361
22362     float2 dst_dim = convert_float2(get_image_dim(dst));
22363     float2 src_dim = convert_float2(get_image_dim(src));
22364
22365     float2 dst_cen = dst_dim / 2.0f;
22366     float2 src_cen = src_dim / 2.0f;
22367
22368     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22369
22370     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22371     float2 src_pos = {
22372         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22373         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22374     };
22375     src_pos = src_pos * src_dim / dst_dim;
22376
22377     float2 src_loc = src_pos + src_cen;
22378
22379     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22380         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22381         write_imagef(dst, dst_loc, 0.5f);
22382     else
22383         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22384 }
22385 @end verbatim
22386
22387 @item
22388 Blend two inputs together, with the amount of each input used varying
22389 with the index counter.
22390 @verbatim
22391 __kernel void blend_images(__write_only image2d_t dst,
22392                            unsigned int index,
22393                            __read_only  image2d_t src1,
22394                            __read_only  image2d_t src2)
22395 {
22396     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22397                                CLK_FILTER_LINEAR);
22398
22399     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22400
22401     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22402     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22403     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22404
22405     float4 val1 = read_imagef(src1, sampler, src1_loc);
22406     float4 val2 = read_imagef(src2, sampler, src2_loc);
22407
22408     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22409 }
22410 @end verbatim
22411
22412 @end itemize
22413
22414 @section roberts_opencl
22415 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22416
22417 The filter accepts the following option:
22418
22419 @table @option
22420 @item planes
22421 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22422
22423 @item scale
22424 Set value which will be multiplied with filtered result.
22425 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22426
22427 @item delta
22428 Set value which will be added to filtered result.
22429 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22430 @end table
22431
22432 @subsection Example
22433
22434 @itemize
22435 @item
22436 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22437 @example
22438 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22439 @end example
22440 @end itemize
22441
22442 @section sobel_opencl
22443
22444 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22445
22446 The filter accepts the following option:
22447
22448 @table @option
22449 @item planes
22450 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22451
22452 @item scale
22453 Set value which will be multiplied with filtered result.
22454 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22455
22456 @item delta
22457 Set value which will be added to filtered result.
22458 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22459 @end table
22460
22461 @subsection Example
22462
22463 @itemize
22464 @item
22465 Apply sobel operator with scale set to 2 and delta set to 10
22466 @example
22467 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22468 @end example
22469 @end itemize
22470
22471 @section tonemap_opencl
22472
22473 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22474
22475 It accepts the following parameters:
22476
22477 @table @option
22478 @item tonemap
22479 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22480
22481 @item param
22482 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22483
22484 @item desat
22485 Apply desaturation for highlights that exceed this level of brightness. The
22486 higher the parameter, the more color information will be preserved. This
22487 setting helps prevent unnaturally blown-out colors for super-highlights, by
22488 (smoothly) turning into white instead. This makes images feel more natural,
22489 at the cost of reducing information about out-of-range colors.
22490
22491 The default value is 0.5, and the algorithm here is a little different from
22492 the cpu version tonemap currently. A setting of 0.0 disables this option.
22493
22494 @item threshold
22495 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22496 is used to detect whether the scene has changed or not. If the distance between
22497 the current frame average brightness and the current running average exceeds
22498 a threshold value, we would re-calculate scene average and peak brightness.
22499 The default value is 0.2.
22500
22501 @item format
22502 Specify the output pixel format.
22503
22504 Currently supported formats are:
22505 @table @var
22506 @item p010
22507 @item nv12
22508 @end table
22509
22510 @item range, r
22511 Set the output color range.
22512
22513 Possible values are:
22514 @table @var
22515 @item tv/mpeg
22516 @item pc/jpeg
22517 @end table
22518
22519 Default is same as input.
22520
22521 @item primaries, p
22522 Set the output color primaries.
22523
22524 Possible values are:
22525 @table @var
22526 @item bt709
22527 @item bt2020
22528 @end table
22529
22530 Default is same as input.
22531
22532 @item transfer, t
22533 Set the output transfer characteristics.
22534
22535 Possible values are:
22536 @table @var
22537 @item bt709
22538 @item bt2020
22539 @end table
22540
22541 Default is bt709.
22542
22543 @item matrix, m
22544 Set the output colorspace matrix.
22545
22546 Possible value are:
22547 @table @var
22548 @item bt709
22549 @item bt2020
22550 @end table
22551
22552 Default is same as input.
22553
22554 @end table
22555
22556 @subsection Example
22557
22558 @itemize
22559 @item
22560 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22561 @example
22562 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22563 @end example
22564 @end itemize
22565
22566 @section unsharp_opencl
22567
22568 Sharpen or blur the input video.
22569
22570 It accepts the following parameters:
22571
22572 @table @option
22573 @item luma_msize_x, lx
22574 Set the luma matrix horizontal size.
22575 Range is @code{[1, 23]} and default value is @code{5}.
22576
22577 @item luma_msize_y, ly
22578 Set the luma matrix vertical size.
22579 Range is @code{[1, 23]} and default value is @code{5}.
22580
22581 @item luma_amount, la
22582 Set the luma effect strength.
22583 Range is @code{[-10, 10]} and default value is @code{1.0}.
22584
22585 Negative values will blur the input video, while positive values will
22586 sharpen it, a value of zero will disable the effect.
22587
22588 @item chroma_msize_x, cx
22589 Set the chroma matrix horizontal size.
22590 Range is @code{[1, 23]} and default value is @code{5}.
22591
22592 @item chroma_msize_y, cy
22593 Set the chroma matrix vertical size.
22594 Range is @code{[1, 23]} and default value is @code{5}.
22595
22596 @item chroma_amount, ca
22597 Set the chroma effect strength.
22598 Range is @code{[-10, 10]} and default value is @code{0.0}.
22599
22600 Negative values will blur the input video, while positive values will
22601 sharpen it, a value of zero will disable the effect.
22602
22603 @end table
22604
22605 All parameters are optional and default to the equivalent of the
22606 string '5:5:1.0:5:5:0.0'.
22607
22608 @subsection Examples
22609
22610 @itemize
22611 @item
22612 Apply strong luma sharpen effect:
22613 @example
22614 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22615 @end example
22616
22617 @item
22618 Apply a strong blur of both luma and chroma parameters:
22619 @example
22620 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22621 @end example
22622 @end itemize
22623
22624 @section xfade_opencl
22625
22626 Cross fade two videos with custom transition effect by using OpenCL.
22627
22628 It accepts the following options:
22629
22630 @table @option
22631 @item transition
22632 Set one of possible transition effects.
22633
22634 @table @option
22635 @item custom
22636 Select custom transition effect, the actual transition description
22637 will be picked from source and kernel options.
22638
22639 @item fade
22640 @item wipeleft
22641 @item wiperight
22642 @item wipeup
22643 @item wipedown
22644 @item slideleft
22645 @item slideright
22646 @item slideup
22647 @item slidedown
22648
22649 Default transition is fade.
22650 @end table
22651
22652 @item source
22653 OpenCL program source file for custom transition.
22654
22655 @item kernel
22656 Set name of kernel to use for custom transition from program source file.
22657
22658 @item duration
22659 Set duration of video transition.
22660
22661 @item offset
22662 Set time of start of transition relative to first video.
22663 @end table
22664
22665 The program source file must contain a kernel function with the given name,
22666 which will be run once for each plane of the output.  Each run on a plane
22667 gets enqueued as a separate 2D global NDRange with one work-item for each
22668 pixel to be generated.  The global ID offset for each work-item is therefore
22669 the coordinates of a pixel in the destination image.
22670
22671 The kernel function needs to take the following arguments:
22672 @itemize
22673 @item
22674 Destination image, @var{__write_only image2d_t}.
22675
22676 This image will become the output; the kernel should write all of it.
22677
22678 @item
22679 First Source image, @var{__read_only image2d_t}.
22680 Second Source image, @var{__read_only image2d_t}.
22681
22682 These are the most recent images on each input.  The kernel may read from
22683 them to generate the output, but they can't be written to.
22684
22685 @item
22686 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22687 @end itemize
22688
22689 Example programs:
22690
22691 @itemize
22692 @item
22693 Apply dots curtain transition effect:
22694 @verbatim
22695 __kernel void blend_images(__write_only image2d_t dst,
22696                            __read_only  image2d_t src1,
22697                            __read_only  image2d_t src2,
22698                            float progress)
22699 {
22700     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22701                                CLK_FILTER_LINEAR);
22702     int2  p = (int2)(get_global_id(0), get_global_id(1));
22703     float2 rp = (float2)(get_global_id(0), get_global_id(1));
22704     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
22705     rp = rp / dim;
22706
22707     float2 dots = (float2)(20.0, 20.0);
22708     float2 center = (float2)(0,0);
22709     float2 unused;
22710
22711     float4 val1 = read_imagef(src1, sampler, p);
22712     float4 val2 = read_imagef(src2, sampler, p);
22713     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
22714
22715     write_imagef(dst, p, next ? val1 : val2);
22716 }
22717 @end verbatim
22718
22719 @end itemize
22720
22721 @c man end OPENCL VIDEO FILTERS
22722
22723 @chapter VAAPI Video Filters
22724 @c man begin VAAPI VIDEO FILTERS
22725
22726 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
22727
22728 To enable compilation of these filters you need to configure FFmpeg with
22729 @code{--enable-vaapi}.
22730
22731 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}
22732
22733 @section tonemap_vaapi
22734
22735 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
22736 It maps the dynamic range of HDR10 content to the SDR content.
22737 It currently only accepts HDR10 as input.
22738
22739 It accepts the following parameters:
22740
22741 @table @option
22742 @item format
22743 Specify the output pixel format.
22744
22745 Currently supported formats are:
22746 @table @var
22747 @item p010
22748 @item nv12
22749 @end table
22750
22751 Default is nv12.
22752
22753 @item primaries, p
22754 Set the output color primaries.
22755
22756 Default is same as input.
22757
22758 @item transfer, t
22759 Set the output transfer characteristics.
22760
22761 Default is bt709.
22762
22763 @item matrix, m
22764 Set the output colorspace matrix.
22765
22766 Default is same as input.
22767
22768 @end table
22769
22770 @subsection Example
22771
22772 @itemize
22773 @item
22774 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
22775 @example
22776 tonemap_vaapi=format=p010:t=bt2020-10
22777 @end example
22778 @end itemize
22779
22780 @c man end VAAPI VIDEO FILTERS
22781
22782 @chapter Video Sources
22783 @c man begin VIDEO SOURCES
22784
22785 Below is a description of the currently available video sources.
22786
22787 @section buffer
22788
22789 Buffer video frames, and make them available to the filter chain.
22790
22791 This source is mainly intended for a programmatic use, in particular
22792 through the interface defined in @file{libavfilter/buffersrc.h}.
22793
22794 It accepts the following parameters:
22795
22796 @table @option
22797
22798 @item video_size
22799 Specify the size (width and height) of the buffered video frames. For the
22800 syntax of this option, check the
22801 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22802
22803 @item width
22804 The input video width.
22805
22806 @item height
22807 The input video height.
22808
22809 @item pix_fmt
22810 A string representing the pixel format of the buffered video frames.
22811 It may be a number corresponding to a pixel format, or a pixel format
22812 name.
22813
22814 @item time_base
22815 Specify the timebase assumed by the timestamps of the buffered frames.
22816
22817 @item frame_rate
22818 Specify the frame rate expected for the video stream.
22819
22820 @item pixel_aspect, sar
22821 The sample (pixel) aspect ratio of the input video.
22822
22823 @item sws_param
22824 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
22825 to the filtergraph description to specify swscale flags for automatically
22826 inserted scalers. See @ref{Filtergraph syntax}.
22827
22828 @item hw_frames_ctx
22829 When using a hardware pixel format, this should be a reference to an
22830 AVHWFramesContext describing input frames.
22831 @end table
22832
22833 For example:
22834 @example
22835 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22836 @end example
22837
22838 will instruct the source to accept video frames with size 320x240 and
22839 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22840 square pixels (1:1 sample aspect ratio).
22841 Since the pixel format with name "yuv410p" corresponds to the number 6
22842 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22843 this example corresponds to:
22844 @example
22845 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22846 @end example
22847
22848 Alternatively, the options can be specified as a flat string, but this
22849 syntax is deprecated:
22850
22851 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22852
22853 @section cellauto
22854
22855 Create a pattern generated by an elementary cellular automaton.
22856
22857 The initial state of the cellular automaton can be defined through the
22858 @option{filename} and @option{pattern} options. If such options are
22859 not specified an initial state is created randomly.
22860
22861 At each new frame a new row in the video is filled with the result of
22862 the cellular automaton next generation. The behavior when the whole
22863 frame is filled is defined by the @option{scroll} option.
22864
22865 This source accepts the following options:
22866
22867 @table @option
22868 @item filename, f
22869 Read the initial cellular automaton state, i.e. the starting row, from
22870 the specified file.
22871 In the file, each non-whitespace character is considered an alive
22872 cell, a newline will terminate the row, and further characters in the
22873 file will be ignored.
22874
22875 @item pattern, p
22876 Read the initial cellular automaton state, i.e. the starting row, from
22877 the specified string.
22878
22879 Each non-whitespace character in the string is considered an alive
22880 cell, a newline will terminate the row, and further characters in the
22881 string will be ignored.
22882
22883 @item rate, r
22884 Set the video rate, that is the number of frames generated per second.
22885 Default is 25.
22886
22887 @item random_fill_ratio, ratio
22888 Set the random fill ratio for the initial cellular automaton row. It
22889 is a floating point number value ranging from 0 to 1, defaults to
22890 1/PHI.
22891
22892 This option is ignored when a file or a pattern is specified.
22893
22894 @item random_seed, seed
22895 Set the seed for filling randomly the initial row, must be an integer
22896 included between 0 and UINT32_MAX. If not specified, or if explicitly
22897 set to -1, the filter will try to use a good random seed on a best
22898 effort basis.
22899
22900 @item rule
22901 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22902 Default value is 110.
22903
22904 @item size, s
22905 Set the size of the output video. For the syntax of this option, check the
22906 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22907
22908 If @option{filename} or @option{pattern} is specified, the size is set
22909 by default to the width of the specified initial state row, and the
22910 height is set to @var{width} * PHI.
22911
22912 If @option{size} is set, it must contain the width of the specified
22913 pattern string, and the specified pattern will be centered in the
22914 larger row.
22915
22916 If a filename or a pattern string is not specified, the size value
22917 defaults to "320x518" (used for a randomly generated initial state).
22918
22919 @item scroll
22920 If set to 1, scroll the output upward when all the rows in the output
22921 have been already filled. If set to 0, the new generated row will be
22922 written over the top row just after the bottom row is filled.
22923 Defaults to 1.
22924
22925 @item start_full, full
22926 If set to 1, completely fill the output with generated rows before
22927 outputting the first frame.
22928 This is the default behavior, for disabling set the value to 0.
22929
22930 @item stitch
22931 If set to 1, stitch the left and right row edges together.
22932 This is the default behavior, for disabling set the value to 0.
22933 @end table
22934
22935 @subsection Examples
22936
22937 @itemize
22938 @item
22939 Read the initial state from @file{pattern}, and specify an output of
22940 size 200x400.
22941 @example
22942 cellauto=f=pattern:s=200x400
22943 @end example
22944
22945 @item
22946 Generate a random initial row with a width of 200 cells, with a fill
22947 ratio of 2/3:
22948 @example
22949 cellauto=ratio=2/3:s=200x200
22950 @end example
22951
22952 @item
22953 Create a pattern generated by rule 18 starting by a single alive cell
22954 centered on an initial row with width 100:
22955 @example
22956 cellauto=p=@@:s=100x400:full=0:rule=18
22957 @end example
22958
22959 @item
22960 Specify a more elaborated initial pattern:
22961 @example
22962 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22963 @end example
22964
22965 @end itemize
22966
22967 @anchor{coreimagesrc}
22968 @section coreimagesrc
22969 Video source generated on GPU using Apple's CoreImage API on OSX.
22970
22971 This video source is a specialized version of the @ref{coreimage} video filter.
22972 Use a core image generator at the beginning of the applied filterchain to
22973 generate the content.
22974
22975 The coreimagesrc video source accepts the following options:
22976 @table @option
22977 @item list_generators
22978 List all available generators along with all their respective options as well as
22979 possible minimum and maximum values along with the default values.
22980 @example
22981 list_generators=true
22982 @end example
22983
22984 @item size, s
22985 Specify the size of the sourced video. For the syntax of this option, check the
22986 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22987 The default value is @code{320x240}.
22988
22989 @item rate, r
22990 Specify the frame rate of the sourced video, as the number of frames
22991 generated per second. It has to be a string in the format
22992 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22993 number or a valid video frame rate abbreviation. The default value is
22994 "25".
22995
22996 @item sar
22997 Set the sample aspect ratio of the sourced video.
22998
22999 @item duration, d
23000 Set the duration of the sourced video. See
23001 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23002 for the accepted syntax.
23003
23004 If not specified, or the expressed duration is negative, the video is
23005 supposed to be generated forever.
23006 @end table
23007
23008 Additionally, all options of the @ref{coreimage} video filter are accepted.
23009 A complete filterchain can be used for further processing of the
23010 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23011 and examples for details.
23012
23013 @subsection Examples
23014
23015 @itemize
23016
23017 @item
23018 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23019 given as complete and escaped command-line for Apple's standard bash shell:
23020 @example
23021 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23022 @end example
23023 This example is equivalent to the QRCode example of @ref{coreimage} without the
23024 need for a nullsrc video source.
23025 @end itemize
23026
23027
23028 @section gradients
23029 Generate several gradients.
23030
23031 @table @option
23032 @item size, s
23033 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23034 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23035
23036 @item rate, r
23037 Set frame rate, expressed as number of frames per second. Default
23038 value is "25".
23039
23040 @item c0, c1, c2, c3, c4, c5, c6, c7
23041 Set 8 colors. Default values for colors is to pick random one.
23042
23043 @item x0, y0, y0, y1
23044 Set gradient line source and destination points. If negative or out of range, random ones
23045 are picked.
23046
23047 @item nb_colors, n
23048 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23049
23050 @item seed
23051 Set seed for picking gradient line points.
23052
23053 @item duration, d
23054 Set the duration of the sourced video. See
23055 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23056 for the accepted syntax.
23057
23058 If not specified, or the expressed duration is negative, the video is
23059 supposed to be generated forever.
23060
23061 @item speed
23062 Set speed of gradients rotation.
23063 @end table
23064
23065
23066 @section mandelbrot
23067
23068 Generate a Mandelbrot set fractal, and progressively zoom towards the
23069 point specified with @var{start_x} and @var{start_y}.
23070
23071 This source accepts the following options:
23072
23073 @table @option
23074
23075 @item end_pts
23076 Set the terminal pts value. Default value is 400.
23077
23078 @item end_scale
23079 Set the terminal scale value.
23080 Must be a floating point value. Default value is 0.3.
23081
23082 @item inner
23083 Set the inner coloring mode, that is the algorithm used to draw the
23084 Mandelbrot fractal internal region.
23085
23086 It shall assume one of the following values:
23087 @table @option
23088 @item black
23089 Set black mode.
23090 @item convergence
23091 Show time until convergence.
23092 @item mincol
23093 Set color based on point closest to the origin of the iterations.
23094 @item period
23095 Set period mode.
23096 @end table
23097
23098 Default value is @var{mincol}.
23099
23100 @item bailout
23101 Set the bailout value. Default value is 10.0.
23102
23103 @item maxiter
23104 Set the maximum of iterations performed by the rendering
23105 algorithm. Default value is 7189.
23106
23107 @item outer
23108 Set outer coloring mode.
23109 It shall assume one of following values:
23110 @table @option
23111 @item iteration_count
23112 Set iteration count mode.
23113 @item normalized_iteration_count
23114 set normalized iteration count mode.
23115 @end table
23116 Default value is @var{normalized_iteration_count}.
23117
23118 @item rate, r
23119 Set frame rate, expressed as number of frames per second. Default
23120 value is "25".
23121
23122 @item size, s
23123 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23124 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23125
23126 @item start_scale
23127 Set the initial scale value. Default value is 3.0.
23128
23129 @item start_x
23130 Set the initial x position. Must be a floating point value between
23131 -100 and 100. Default value is -0.743643887037158704752191506114774.
23132
23133 @item start_y
23134 Set the initial y position. Must be a floating point value between
23135 -100 and 100. Default value is -0.131825904205311970493132056385139.
23136 @end table
23137
23138 @section mptestsrc
23139
23140 Generate various test patterns, as generated by the MPlayer test filter.
23141
23142 The size of the generated video is fixed, and is 256x256.
23143 This source is useful in particular for testing encoding features.
23144
23145 This source accepts the following options:
23146
23147 @table @option
23148
23149 @item rate, r
23150 Specify the frame rate of the sourced video, as the number of frames
23151 generated per second. It has to be a string in the format
23152 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23153 number or a valid video frame rate abbreviation. The default value is
23154 "25".
23155
23156 @item duration, d
23157 Set the duration of the sourced video. See
23158 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23159 for the accepted syntax.
23160
23161 If not specified, or the expressed duration is negative, the video is
23162 supposed to be generated forever.
23163
23164 @item test, t
23165
23166 Set the number or the name of the test to perform. Supported tests are:
23167 @table @option
23168 @item dc_luma
23169 @item dc_chroma
23170 @item freq_luma
23171 @item freq_chroma
23172 @item amp_luma
23173 @item amp_chroma
23174 @item cbp
23175 @item mv
23176 @item ring1
23177 @item ring2
23178 @item all
23179
23180 @item max_frames, m
23181 Set the maximum number of frames generated for each test, default value is 30.
23182
23183 @end table
23184
23185 Default value is "all", which will cycle through the list of all tests.
23186 @end table
23187
23188 Some examples:
23189 @example
23190 mptestsrc=t=dc_luma
23191 @end example
23192
23193 will generate a "dc_luma" test pattern.
23194
23195 @section frei0r_src
23196
23197 Provide a frei0r source.
23198
23199 To enable compilation of this filter you need to install the frei0r
23200 header and configure FFmpeg with @code{--enable-frei0r}.
23201
23202 This source accepts the following parameters:
23203
23204 @table @option
23205
23206 @item size
23207 The size of the video to generate. For the syntax of this option, check the
23208 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23209
23210 @item framerate
23211 The framerate of the generated video. It may be a string of the form
23212 @var{num}/@var{den} or a frame rate abbreviation.
23213
23214 @item filter_name
23215 The name to the frei0r source to load. For more information regarding frei0r and
23216 how to set the parameters, read the @ref{frei0r} section in the video filters
23217 documentation.
23218
23219 @item filter_params
23220 A '|'-separated list of parameters to pass to the frei0r source.
23221
23222 @end table
23223
23224 For example, to generate a frei0r partik0l source with size 200x200
23225 and frame rate 10 which is overlaid on the overlay filter main input:
23226 @example
23227 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23228 @end example
23229
23230 @section life
23231
23232 Generate a life pattern.
23233
23234 This source is based on a generalization of John Conway's life game.
23235
23236 The sourced input represents a life grid, each pixel represents a cell
23237 which can be in one of two possible states, alive or dead. Every cell
23238 interacts with its eight neighbours, which are the cells that are
23239 horizontally, vertically, or diagonally adjacent.
23240
23241 At each interaction the grid evolves according to the adopted rule,
23242 which specifies the number of neighbor alive cells which will make a
23243 cell stay alive or born. The @option{rule} option allows one to specify
23244 the rule to adopt.
23245
23246 This source accepts the following options:
23247
23248 @table @option
23249 @item filename, f
23250 Set the file from which to read the initial grid state. In the file,
23251 each non-whitespace character is considered an alive cell, and newline
23252 is used to delimit the end of each row.
23253
23254 If this option is not specified, the initial grid is generated
23255 randomly.
23256
23257 @item rate, r
23258 Set the video rate, that is the number of frames generated per second.
23259 Default is 25.
23260
23261 @item random_fill_ratio, ratio
23262 Set the random fill ratio for the initial random grid. It is a
23263 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23264 It is ignored when a file is specified.
23265
23266 @item random_seed, seed
23267 Set the seed for filling the initial random grid, must be an integer
23268 included between 0 and UINT32_MAX. If not specified, or if explicitly
23269 set to -1, the filter will try to use a good random seed on a best
23270 effort basis.
23271
23272 @item rule
23273 Set the life rule.
23274
23275 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23276 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23277 @var{NS} specifies the number of alive neighbor cells which make a
23278 live cell stay alive, and @var{NB} the number of alive neighbor cells
23279 which make a dead cell to become alive (i.e. to "born").
23280 "s" and "b" can be used in place of "S" and "B", respectively.
23281
23282 Alternatively a rule can be specified by an 18-bits integer. The 9
23283 high order bits are used to encode the next cell state if it is alive
23284 for each number of neighbor alive cells, the low order bits specify
23285 the rule for "borning" new cells. Higher order bits encode for an
23286 higher number of neighbor cells.
23287 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23288 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23289
23290 Default value is "S23/B3", which is the original Conway's game of life
23291 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23292 cells, and will born a new cell if there are three alive cells around
23293 a dead cell.
23294
23295 @item size, s
23296 Set the size of the output video. For the syntax of this option, check the
23297 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23298
23299 If @option{filename} is specified, the size is set by default to the
23300 same size of the input file. If @option{size} is set, it must contain
23301 the size specified in the input file, and the initial grid defined in
23302 that file is centered in the larger resulting area.
23303
23304 If a filename is not specified, the size value defaults to "320x240"
23305 (used for a randomly generated initial grid).
23306
23307 @item stitch
23308 If set to 1, stitch the left and right grid edges together, and the
23309 top and bottom edges also. Defaults to 1.
23310
23311 @item mold
23312 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23313 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23314 value from 0 to 255.
23315
23316 @item life_color
23317 Set the color of living (or new born) cells.
23318
23319 @item death_color
23320 Set the color of dead cells. If @option{mold} is set, this is the first color
23321 used to represent a dead cell.
23322
23323 @item mold_color
23324 Set mold color, for definitely dead and moldy cells.
23325
23326 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23327 ffmpeg-utils manual,ffmpeg-utils}.
23328 @end table
23329
23330 @subsection Examples
23331
23332 @itemize
23333 @item
23334 Read a grid from @file{pattern}, and center it on a grid of size
23335 300x300 pixels:
23336 @example
23337 life=f=pattern:s=300x300
23338 @end example
23339
23340 @item
23341 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23342 @example
23343 life=ratio=2/3:s=200x200
23344 @end example
23345
23346 @item
23347 Specify a custom rule for evolving a randomly generated grid:
23348 @example
23349 life=rule=S14/B34
23350 @end example
23351
23352 @item
23353 Full example with slow death effect (mold) using @command{ffplay}:
23354 @example
23355 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23356 @end example
23357 @end itemize
23358
23359 @anchor{allrgb}
23360 @anchor{allyuv}
23361 @anchor{color}
23362 @anchor{haldclutsrc}
23363 @anchor{nullsrc}
23364 @anchor{pal75bars}
23365 @anchor{pal100bars}
23366 @anchor{rgbtestsrc}
23367 @anchor{smptebars}
23368 @anchor{smptehdbars}
23369 @anchor{testsrc}
23370 @anchor{testsrc2}
23371 @anchor{yuvtestsrc}
23372 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23373
23374 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23375
23376 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23377
23378 The @code{color} source provides an uniformly colored input.
23379
23380 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23381 @ref{haldclut} filter.
23382
23383 The @code{nullsrc} source returns unprocessed video frames. It is
23384 mainly useful to be employed in analysis / debugging tools, or as the
23385 source for filters which ignore the input data.
23386
23387 The @code{pal75bars} source generates a color bars pattern, based on
23388 EBU PAL recommendations with 75% color levels.
23389
23390 The @code{pal100bars} source generates a color bars pattern, based on
23391 EBU PAL recommendations with 100% color levels.
23392
23393 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23394 detecting RGB vs BGR issues. You should see a red, green and blue
23395 stripe from top to bottom.
23396
23397 The @code{smptebars} source generates a color bars pattern, based on
23398 the SMPTE Engineering Guideline EG 1-1990.
23399
23400 The @code{smptehdbars} source generates a color bars pattern, based on
23401 the SMPTE RP 219-2002.
23402
23403 The @code{testsrc} source generates a test video pattern, showing a
23404 color pattern, a scrolling gradient and a timestamp. This is mainly
23405 intended for testing purposes.
23406
23407 The @code{testsrc2} source is similar to testsrc, but supports more
23408 pixel formats instead of just @code{rgb24}. This allows using it as an
23409 input for other tests without requiring a format conversion.
23410
23411 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23412 see a y, cb and cr stripe from top to bottom.
23413
23414 The sources accept the following parameters:
23415
23416 @table @option
23417
23418 @item level
23419 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23420 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23421 pixels to be used as identity matrix for 3D lookup tables. Each component is
23422 coded on a @code{1/(N*N)} scale.
23423
23424 @item color, c
23425 Specify the color of the source, only available in the @code{color}
23426 source. For the syntax of this option, check the
23427 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23428
23429 @item size, s
23430 Specify the size of the sourced video. For the syntax of this option, check the
23431 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23432 The default value is @code{320x240}.
23433
23434 This option is not available with the @code{allrgb}, @code{allyuv}, and
23435 @code{haldclutsrc} filters.
23436
23437 @item rate, r
23438 Specify the frame rate of the sourced video, as the number of frames
23439 generated per second. It has to be a string in the format
23440 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23441 number or a valid video frame rate abbreviation. The default value is
23442 "25".
23443
23444 @item duration, d
23445 Set the duration of the sourced video. See
23446 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23447 for the accepted syntax.
23448
23449 If not specified, or the expressed duration is negative, the video is
23450 supposed to be generated forever.
23451
23452 Since the frame rate is used as time base, all frames including the last one
23453 will have their full duration. If the specified duration is not a multiple
23454 of the frame duration, it will be rounded up.
23455
23456 @item sar
23457 Set the sample aspect ratio of the sourced video.
23458
23459 @item alpha
23460 Specify the alpha (opacity) of the background, only available in the
23461 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23462 255 (fully opaque, the default).
23463
23464 @item decimals, n
23465 Set the number of decimals to show in the timestamp, only available in the
23466 @code{testsrc} source.
23467
23468 The displayed timestamp value will correspond to the original
23469 timestamp value multiplied by the power of 10 of the specified
23470 value. Default value is 0.
23471 @end table
23472
23473 @subsection Examples
23474
23475 @itemize
23476 @item
23477 Generate a video with a duration of 5.3 seconds, with size
23478 176x144 and a frame rate of 10 frames per second:
23479 @example
23480 testsrc=duration=5.3:size=qcif:rate=10
23481 @end example
23482
23483 @item
23484 The following graph description will generate a red source
23485 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23486 frames per second:
23487 @example
23488 color=c=red@@0.2:s=qcif:r=10
23489 @end example
23490
23491 @item
23492 If the input content is to be ignored, @code{nullsrc} can be used. The
23493 following command generates noise in the luminance plane by employing
23494 the @code{geq} filter:
23495 @example
23496 nullsrc=s=256x256, geq=random(1)*255:128:128
23497 @end example
23498 @end itemize
23499
23500 @subsection Commands
23501
23502 The @code{color} source supports the following commands:
23503
23504 @table @option
23505 @item c, color
23506 Set the color of the created image. Accepts the same syntax of the
23507 corresponding @option{color} option.
23508 @end table
23509
23510 @section openclsrc
23511
23512 Generate video using an OpenCL program.
23513
23514 @table @option
23515
23516 @item source
23517 OpenCL program source file.
23518
23519 @item kernel
23520 Kernel name in program.
23521
23522 @item size, s
23523 Size of frames to generate.  This must be set.
23524
23525 @item format
23526 Pixel format to use for the generated frames.  This must be set.
23527
23528 @item rate, r
23529 Number of frames generated every second.  Default value is '25'.
23530
23531 @end table
23532
23533 For details of how the program loading works, see the @ref{program_opencl}
23534 filter.
23535
23536 Example programs:
23537
23538 @itemize
23539 @item
23540 Generate a colour ramp by setting pixel values from the position of the pixel
23541 in the output image.  (Note that this will work with all pixel formats, but
23542 the generated output will not be the same.)
23543 @verbatim
23544 __kernel void ramp(__write_only image2d_t dst,
23545                    unsigned int index)
23546 {
23547     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23548
23549     float4 val;
23550     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23551
23552     write_imagef(dst, loc, val);
23553 }
23554 @end verbatim
23555
23556 @item
23557 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23558 @verbatim
23559 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23560                                 unsigned int index)
23561 {
23562     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23563
23564     float4 value = 0.0f;
23565     int x = loc.x + index;
23566     int y = loc.y + index;
23567     while (x > 0 || y > 0) {
23568         if (x % 3 == 1 && y % 3 == 1) {
23569             value = 1.0f;
23570             break;
23571         }
23572         x /= 3;
23573         y /= 3;
23574     }
23575
23576     write_imagef(dst, loc, value);
23577 }
23578 @end verbatim
23579
23580 @end itemize
23581
23582 @section sierpinski
23583
23584 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23585
23586 This source accepts the following options:
23587
23588 @table @option
23589 @item size, s
23590 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23591 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23592
23593 @item rate, r
23594 Set frame rate, expressed as number of frames per second. Default
23595 value is "25".
23596
23597 @item seed
23598 Set seed which is used for random panning.
23599
23600 @item jump
23601 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23602
23603 @item type
23604 Set fractal type, can be default @code{carpet} or @code{triangle}.
23605 @end table
23606
23607 @c man end VIDEO SOURCES
23608
23609 @chapter Video Sinks
23610 @c man begin VIDEO SINKS
23611
23612 Below is a description of the currently available video sinks.
23613
23614 @section buffersink
23615
23616 Buffer video frames, and make them available to the end of the filter
23617 graph.
23618
23619 This sink is mainly intended for programmatic use, in particular
23620 through the interface defined in @file{libavfilter/buffersink.h}
23621 or the options system.
23622
23623 It accepts a pointer to an AVBufferSinkContext structure, which
23624 defines the incoming buffers' formats, to be passed as the opaque
23625 parameter to @code{avfilter_init_filter} for initialization.
23626
23627 @section nullsink
23628
23629 Null video sink: do absolutely nothing with the input video. It is
23630 mainly useful as a template and for use in analysis / debugging
23631 tools.
23632
23633 @c man end VIDEO SINKS
23634
23635 @chapter Multimedia Filters
23636 @c man begin MULTIMEDIA FILTERS
23637
23638 Below is a description of the currently available multimedia filters.
23639
23640 @section abitscope
23641
23642 Convert input audio to a video output, displaying the audio bit scope.
23643
23644 The filter accepts the following options:
23645
23646 @table @option
23647 @item rate, r
23648 Set frame rate, expressed as number of frames per second. Default
23649 value is "25".
23650
23651 @item size, s
23652 Specify the video size for the output. For the syntax of this option, check the
23653 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23654 Default value is @code{1024x256}.
23655
23656 @item colors
23657 Specify list of colors separated by space or by '|' which will be used to
23658 draw channels. Unrecognized or missing colors will be replaced
23659 by white color.
23660 @end table
23661
23662 @section adrawgraph
23663 Draw a graph using input audio metadata.
23664
23665 See @ref{drawgraph}
23666
23667 @section agraphmonitor
23668
23669 See @ref{graphmonitor}.
23670
23671 @section ahistogram
23672
23673 Convert input audio to a video output, displaying the volume histogram.
23674
23675 The filter accepts the following options:
23676
23677 @table @option
23678 @item dmode
23679 Specify how histogram is calculated.
23680
23681 It accepts the following values:
23682 @table @samp
23683 @item single
23684 Use single histogram for all channels.
23685 @item separate
23686 Use separate histogram for each channel.
23687 @end table
23688 Default is @code{single}.
23689
23690 @item rate, r
23691 Set frame rate, expressed as number of frames per second. Default
23692 value is "25".
23693
23694 @item size, s
23695 Specify the video size for the output. For the syntax of this option, check the
23696 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23697 Default value is @code{hd720}.
23698
23699 @item scale
23700 Set display scale.
23701
23702 It accepts the following values:
23703 @table @samp
23704 @item log
23705 logarithmic
23706 @item sqrt
23707 square root
23708 @item cbrt
23709 cubic root
23710 @item lin
23711 linear
23712 @item rlog
23713 reverse logarithmic
23714 @end table
23715 Default is @code{log}.
23716
23717 @item ascale
23718 Set amplitude scale.
23719
23720 It accepts the following values:
23721 @table @samp
23722 @item log
23723 logarithmic
23724 @item lin
23725 linear
23726 @end table
23727 Default is @code{log}.
23728
23729 @item acount
23730 Set how much frames to accumulate in histogram.
23731 Default is 1. Setting this to -1 accumulates all frames.
23732
23733 @item rheight
23734 Set histogram ratio of window height.
23735
23736 @item slide
23737 Set sonogram sliding.
23738
23739 It accepts the following values:
23740 @table @samp
23741 @item replace
23742 replace old rows with new ones.
23743 @item scroll
23744 scroll from top to bottom.
23745 @end table
23746 Default is @code{replace}.
23747 @end table
23748
23749 @section aphasemeter
23750
23751 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
23752 representing mean phase of current audio frame. A video output can also be produced and is
23753 enabled by default. The audio is passed through as first output.
23754
23755 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
23756 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
23757 and @code{1} means channels are in phase.
23758
23759 The filter accepts the following options, all related to its video output:
23760
23761 @table @option
23762 @item rate, r
23763 Set the output frame rate. Default value is @code{25}.
23764
23765 @item size, s
23766 Set the video size for the output. For the syntax of this option, check the
23767 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23768 Default value is @code{800x400}.
23769
23770 @item rc
23771 @item gc
23772 @item bc
23773 Specify the red, green, blue contrast. Default values are @code{2},
23774 @code{7} and @code{1}.
23775 Allowed range is @code{[0, 255]}.
23776
23777 @item mpc
23778 Set color which will be used for drawing median phase. If color is
23779 @code{none} which is default, no median phase value will be drawn.
23780
23781 @item video
23782 Enable video output. Default is enabled.
23783 @end table
23784
23785 @subsection phasing detection
23786
23787 The filter also detects out of phase and mono sequences in stereo streams.
23788 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
23789
23790 The filter accepts the following options for this detection:
23791
23792 @table @option
23793 @item phasing
23794 Enable mono and out of phase detection. Default is disabled.
23795
23796 @item tolerance, t
23797 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
23798 Allowed range is @code{[0, 1]}.
23799
23800 @item angle, a
23801 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
23802 Allowed range is @code{[90, 180]}.
23803
23804 @item duration, d
23805 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
23806 @end table
23807
23808 @subsection Examples
23809
23810 @itemize
23811 @item
23812 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
23813 @example
23814 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
23815 @end example
23816 @end itemize
23817
23818 @section avectorscope
23819
23820 Convert input audio to a video output, representing the audio vector
23821 scope.
23822
23823 The filter is used to measure the difference between channels of stereo
23824 audio stream. A monaural signal, consisting of identical left and right
23825 signal, results in straight vertical line. Any stereo separation is visible
23826 as a deviation from this line, creating a Lissajous figure.
23827 If the straight (or deviation from it) but horizontal line appears this
23828 indicates that the left and right channels are out of phase.
23829
23830 The filter accepts the following options:
23831
23832 @table @option
23833 @item mode, m
23834 Set the vectorscope mode.
23835
23836 Available values are:
23837 @table @samp
23838 @item lissajous
23839 Lissajous rotated by 45 degrees.
23840
23841 @item lissajous_xy
23842 Same as above but not rotated.
23843
23844 @item polar
23845 Shape resembling half of circle.
23846 @end table
23847
23848 Default value is @samp{lissajous}.
23849
23850 @item size, s
23851 Set the video size for the output. For the syntax of this option, check the
23852 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23853 Default value is @code{400x400}.
23854
23855 @item rate, r
23856 Set the output frame rate. Default value is @code{25}.
23857
23858 @item rc
23859 @item gc
23860 @item bc
23861 @item ac
23862 Specify the red, green, blue and alpha contrast. Default values are @code{40},
23863 @code{160}, @code{80} and @code{255}.
23864 Allowed range is @code{[0, 255]}.
23865
23866 @item rf
23867 @item gf
23868 @item bf
23869 @item af
23870 Specify the red, green, blue and alpha fade. Default values are @code{15},
23871 @code{10}, @code{5} and @code{5}.
23872 Allowed range is @code{[0, 255]}.
23873
23874 @item zoom
23875 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
23876 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
23877
23878 @item draw
23879 Set the vectorscope drawing mode.
23880
23881 Available values are:
23882 @table @samp
23883 @item dot
23884 Draw dot for each sample.
23885
23886 @item line
23887 Draw line between previous and current sample.
23888 @end table
23889
23890 Default value is @samp{dot}.
23891
23892 @item scale
23893 Specify amplitude scale of audio samples.
23894
23895 Available values are:
23896 @table @samp
23897 @item lin
23898 Linear.
23899
23900 @item sqrt
23901 Square root.
23902
23903 @item cbrt
23904 Cubic root.
23905
23906 @item log
23907 Logarithmic.
23908 @end table
23909
23910 @item swap
23911 Swap left channel axis with right channel axis.
23912
23913 @item mirror
23914 Mirror axis.
23915
23916 @table @samp
23917 @item none
23918 No mirror.
23919
23920 @item x
23921 Mirror only x axis.
23922
23923 @item y
23924 Mirror only y axis.
23925
23926 @item xy
23927 Mirror both axis.
23928 @end table
23929
23930 @end table
23931
23932 @subsection Examples
23933
23934 @itemize
23935 @item
23936 Complete example using @command{ffplay}:
23937 @example
23938 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23939              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
23940 @end example
23941 @end itemize
23942
23943 @section bench, abench
23944
23945 Benchmark part of a filtergraph.
23946
23947 The filter accepts the following options:
23948
23949 @table @option
23950 @item action
23951 Start or stop a timer.
23952
23953 Available values are:
23954 @table @samp
23955 @item start
23956 Get the current time, set it as frame metadata (using the key
23957 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
23958
23959 @item stop
23960 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
23961 the input frame metadata to get the time difference. Time difference, average,
23962 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
23963 @code{min}) are then printed. The timestamps are expressed in seconds.
23964 @end table
23965 @end table
23966
23967 @subsection Examples
23968
23969 @itemize
23970 @item
23971 Benchmark @ref{selectivecolor} filter:
23972 @example
23973 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
23974 @end example
23975 @end itemize
23976
23977 @section concat
23978
23979 Concatenate audio and video streams, joining them together one after the
23980 other.
23981
23982 The filter works on segments of synchronized video and audio streams. All
23983 segments must have the same number of streams of each type, and that will
23984 also be the number of streams at output.
23985
23986 The filter accepts the following options:
23987
23988 @table @option
23989
23990 @item n
23991 Set the number of segments. Default is 2.
23992
23993 @item v
23994 Set the number of output video streams, that is also the number of video
23995 streams in each segment. Default is 1.
23996
23997 @item a
23998 Set the number of output audio streams, that is also the number of audio
23999 streams in each segment. Default is 0.
24000
24001 @item unsafe
24002 Activate unsafe mode: do not fail if segments have a different format.
24003
24004 @end table
24005
24006 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24007 @var{a} audio outputs.
24008
24009 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24010 segment, in the same order as the outputs, then the inputs for the second
24011 segment, etc.
24012
24013 Related streams do not always have exactly the same duration, for various
24014 reasons including codec frame size or sloppy authoring. For that reason,
24015 related synchronized streams (e.g. a video and its audio track) should be
24016 concatenated at once. The concat filter will use the duration of the longest
24017 stream in each segment (except the last one), and if necessary pad shorter
24018 audio streams with silence.
24019
24020 For this filter to work correctly, all segments must start at timestamp 0.
24021
24022 All corresponding streams must have the same parameters in all segments; the
24023 filtering system will automatically select a common pixel format for video
24024 streams, and a common sample format, sample rate and channel layout for
24025 audio streams, but other settings, such as resolution, must be converted
24026 explicitly by the user.
24027
24028 Different frame rates are acceptable but will result in variable frame rate
24029 at output; be sure to configure the output file to handle it.
24030
24031 @subsection Examples
24032
24033 @itemize
24034 @item
24035 Concatenate an opening, an episode and an ending, all in bilingual version
24036 (video in stream 0, audio in streams 1 and 2):
24037 @example
24038 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24039   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24040    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24041   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24042 @end example
24043
24044 @item
24045 Concatenate two parts, handling audio and video separately, using the
24046 (a)movie sources, and adjusting the resolution:
24047 @example
24048 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24049 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24050 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24051 @end example
24052 Note that a desync will happen at the stitch if the audio and video streams
24053 do not have exactly the same duration in the first file.
24054
24055 @end itemize
24056
24057 @subsection Commands
24058
24059 This filter supports the following commands:
24060 @table @option
24061 @item next
24062 Close the current segment and step to the next one
24063 @end table
24064
24065 @anchor{ebur128}
24066 @section ebur128
24067
24068 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24069 level. By default, it logs a message at a frequency of 10Hz with the
24070 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24071 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24072
24073 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24074 sample format is double-precision floating point. The input stream will be converted to
24075 this specification, if needed. Users may need to insert aformat and/or aresample filters
24076 after this filter to obtain the original parameters.
24077
24078 The filter also has a video output (see the @var{video} option) with a real
24079 time graph to observe the loudness evolution. The graphic contains the logged
24080 message mentioned above, so it is not printed anymore when this option is set,
24081 unless the verbose logging is set. The main graphing area contains the
24082 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24083 the momentary loudness (400 milliseconds), but can optionally be configured
24084 to instead display short-term loudness (see @var{gauge}).
24085
24086 The green area marks a  +/- 1LU target range around the target loudness
24087 (-23LUFS by default, unless modified through @var{target}).
24088
24089 More information about the Loudness Recommendation EBU R128 on
24090 @url{http://tech.ebu.ch/loudness}.
24091
24092 The filter accepts the following options:
24093
24094 @table @option
24095
24096 @item video
24097 Activate the video output. The audio stream is passed unchanged whether this
24098 option is set or no. The video stream will be the first output stream if
24099 activated. Default is @code{0}.
24100
24101 @item size
24102 Set the video size. This option is for video only. For the syntax of this
24103 option, check the
24104 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24105 Default and minimum resolution is @code{640x480}.
24106
24107 @item meter
24108 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24109 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24110 other integer value between this range is allowed.
24111
24112 @item metadata
24113 Set metadata injection. If set to @code{1}, the audio input will be segmented
24114 into 100ms output frames, each of them containing various loudness information
24115 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24116
24117 Default is @code{0}.
24118
24119 @item framelog
24120 Force the frame logging level.
24121
24122 Available values are:
24123 @table @samp
24124 @item info
24125 information logging level
24126 @item verbose
24127 verbose logging level
24128 @end table
24129
24130 By default, the logging level is set to @var{info}. If the @option{video} or
24131 the @option{metadata} options are set, it switches to @var{verbose}.
24132
24133 @item peak
24134 Set peak mode(s).
24135
24136 Available modes can be cumulated (the option is a @code{flag} type). Possible
24137 values are:
24138 @table @samp
24139 @item none
24140 Disable any peak mode (default).
24141 @item sample
24142 Enable sample-peak mode.
24143
24144 Simple peak mode looking for the higher sample value. It logs a message
24145 for sample-peak (identified by @code{SPK}).
24146 @item true
24147 Enable true-peak mode.
24148
24149 If enabled, the peak lookup is done on an over-sampled version of the input
24150 stream for better peak accuracy. It logs a message for true-peak.
24151 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24152 This mode requires a build with @code{libswresample}.
24153 @end table
24154
24155 @item dualmono
24156 Treat mono input files as "dual mono". If a mono file is intended for playback
24157 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24158 If set to @code{true}, this option will compensate for this effect.
24159 Multi-channel input files are not affected by this option.
24160
24161 @item panlaw
24162 Set a specific pan law to be used for the measurement of dual mono files.
24163 This parameter is optional, and has a default value of -3.01dB.
24164
24165 @item target
24166 Set a specific target level (in LUFS) used as relative zero in the visualization.
24167 This parameter is optional and has a default value of -23LUFS as specified
24168 by EBU R128. However, material published online may prefer a level of -16LUFS
24169 (e.g. for use with podcasts or video platforms).
24170
24171 @item gauge
24172 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24173 @code{shortterm}. By default the momentary value will be used, but in certain
24174 scenarios it may be more useful to observe the short term value instead (e.g.
24175 live mixing).
24176
24177 @item scale
24178 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24179 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24180 video output, not the summary or continuous log output.
24181 @end table
24182
24183 @subsection Examples
24184
24185 @itemize
24186 @item
24187 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24188 @example
24189 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24190 @end example
24191
24192 @item
24193 Run an analysis with @command{ffmpeg}:
24194 @example
24195 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24196 @end example
24197 @end itemize
24198
24199 @section interleave, ainterleave
24200
24201 Temporally interleave frames from several inputs.
24202
24203 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24204
24205 These filters read frames from several inputs and send the oldest
24206 queued frame to the output.
24207
24208 Input streams must have well defined, monotonically increasing frame
24209 timestamp values.
24210
24211 In order to submit one frame to output, these filters need to enqueue
24212 at least one frame for each input, so they cannot work in case one
24213 input is not yet terminated and will not receive incoming frames.
24214
24215 For example consider the case when one input is a @code{select} filter
24216 which always drops input frames. The @code{interleave} filter will keep
24217 reading from that input, but it will never be able to send new frames
24218 to output until the input sends an end-of-stream signal.
24219
24220 Also, depending on inputs synchronization, the filters will drop
24221 frames in case one input receives more frames than the other ones, and
24222 the queue is already filled.
24223
24224 These filters accept the following options:
24225
24226 @table @option
24227 @item nb_inputs, n
24228 Set the number of different inputs, it is 2 by default.
24229
24230 @item duration
24231 How to determine the end-of-stream.
24232
24233 @table @option
24234 @item longest
24235 The duration of the longest input. (default)
24236
24237 @item shortest
24238 The duration of the shortest input.
24239
24240 @item first
24241 The duration of the first input.
24242 @end table
24243
24244 @end table
24245
24246 @subsection Examples
24247
24248 @itemize
24249 @item
24250 Interleave frames belonging to different streams using @command{ffmpeg}:
24251 @example
24252 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24253 @end example
24254
24255 @item
24256 Add flickering blur effect:
24257 @example
24258 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24259 @end example
24260 @end itemize
24261
24262 @section metadata, ametadata
24263
24264 Manipulate frame metadata.
24265
24266 This filter accepts the following options:
24267
24268 @table @option
24269 @item mode
24270 Set mode of operation of the filter.
24271
24272 Can be one of the following:
24273
24274 @table @samp
24275 @item select
24276 If both @code{value} and @code{key} is set, select frames
24277 which have such metadata. If only @code{key} is set, select
24278 every frame that has such key in metadata.
24279
24280 @item add
24281 Add new metadata @code{key} and @code{value}. If key is already available
24282 do nothing.
24283
24284 @item modify
24285 Modify value of already present key.
24286
24287 @item delete
24288 If @code{value} is set, delete only keys that have such value.
24289 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24290 the frame.
24291
24292 @item print
24293 Print key and its value if metadata was found. If @code{key} is not set print all
24294 metadata values available in frame.
24295 @end table
24296
24297 @item key
24298 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24299
24300 @item value
24301 Set metadata value which will be used. This option is mandatory for
24302 @code{modify} and @code{add} mode.
24303
24304 @item function
24305 Which function to use when comparing metadata value and @code{value}.
24306
24307 Can be one of following:
24308
24309 @table @samp
24310 @item same_str
24311 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24312
24313 @item starts_with
24314 Values are interpreted as strings, returns true if metadata value starts with
24315 the @code{value} option string.
24316
24317 @item less
24318 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24319
24320 @item equal
24321 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24322
24323 @item greater
24324 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24325
24326 @item expr
24327 Values are interpreted as floats, returns true if expression from option @code{expr}
24328 evaluates to true.
24329
24330 @item ends_with
24331 Values are interpreted as strings, returns true if metadata value ends with
24332 the @code{value} option string.
24333 @end table
24334
24335 @item expr
24336 Set expression which is used when @code{function} is set to @code{expr}.
24337 The expression is evaluated through the eval API and can contain the following
24338 constants:
24339
24340 @table @option
24341 @item VALUE1
24342 Float representation of @code{value} from metadata key.
24343
24344 @item VALUE2
24345 Float representation of @code{value} as supplied by user in @code{value} option.
24346 @end table
24347
24348 @item file
24349 If specified in @code{print} mode, output is written to the named file. Instead of
24350 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24351 for standard output. If @code{file} option is not set, output is written to the log
24352 with AV_LOG_INFO loglevel.
24353
24354 @item direct
24355 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24356
24357 @end table
24358
24359 @subsection Examples
24360
24361 @itemize
24362 @item
24363 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24364 between 0 and 1.
24365 @example
24366 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24367 @end example
24368 @item
24369 Print silencedetect output to file @file{metadata.txt}.
24370 @example
24371 silencedetect,ametadata=mode=print:file=metadata.txt
24372 @end example
24373 @item
24374 Direct all metadata to a pipe with file descriptor 4.
24375 @example
24376 metadata=mode=print:file='pipe\:4'
24377 @end example
24378 @end itemize
24379
24380 @section perms, aperms
24381
24382 Set read/write permissions for the output frames.
24383
24384 These filters are mainly aimed at developers to test direct path in the
24385 following filter in the filtergraph.
24386
24387 The filters accept the following options:
24388
24389 @table @option
24390 @item mode
24391 Select the permissions mode.
24392
24393 It accepts the following values:
24394 @table @samp
24395 @item none
24396 Do nothing. This is the default.
24397 @item ro
24398 Set all the output frames read-only.
24399 @item rw
24400 Set all the output frames directly writable.
24401 @item toggle
24402 Make the frame read-only if writable, and writable if read-only.
24403 @item random
24404 Set each output frame read-only or writable randomly.
24405 @end table
24406
24407 @item seed
24408 Set the seed for the @var{random} mode, must be an integer included between
24409 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24410 @code{-1}, the filter will try to use a good random seed on a best effort
24411 basis.
24412 @end table
24413
24414 Note: in case of auto-inserted filter between the permission filter and the
24415 following one, the permission might not be received as expected in that
24416 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24417 perms/aperms filter can avoid this problem.
24418
24419 @section realtime, arealtime
24420
24421 Slow down filtering to match real time approximately.
24422
24423 These filters will pause the filtering for a variable amount of time to
24424 match the output rate with the input timestamps.
24425 They are similar to the @option{re} option to @code{ffmpeg}.
24426
24427 They accept the following options:
24428
24429 @table @option
24430 @item limit
24431 Time limit for the pauses. Any pause longer than that will be considered
24432 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24433 @item speed
24434 Speed factor for processing. The value must be a float larger than zero.
24435 Values larger than 1.0 will result in faster than realtime processing,
24436 smaller will slow processing down. The @var{limit} is automatically adapted
24437 accordingly. Default is 1.0.
24438
24439 A processing speed faster than what is possible without these filters cannot
24440 be achieved.
24441 @end table
24442
24443 @anchor{select}
24444 @section select, aselect
24445
24446 Select frames to pass in output.
24447
24448 This filter accepts the following options:
24449
24450 @table @option
24451
24452 @item expr, e
24453 Set expression, which is evaluated for each input frame.
24454
24455 If the expression is evaluated to zero, the frame is discarded.
24456
24457 If the evaluation result is negative or NaN, the frame is sent to the
24458 first output; otherwise it is sent to the output with index
24459 @code{ceil(val)-1}, assuming that the input index starts from 0.
24460
24461 For example a value of @code{1.2} corresponds to the output with index
24462 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24463
24464 @item outputs, n
24465 Set the number of outputs. The output to which to send the selected
24466 frame is based on the result of the evaluation. Default value is 1.
24467 @end table
24468
24469 The expression can contain the following constants:
24470
24471 @table @option
24472 @item n
24473 The (sequential) number of the filtered frame, starting from 0.
24474
24475 @item selected_n
24476 The (sequential) number of the selected frame, starting from 0.
24477
24478 @item prev_selected_n
24479 The sequential number of the last selected frame. It's NAN if undefined.
24480
24481 @item TB
24482 The timebase of the input timestamps.
24483
24484 @item pts
24485 The PTS (Presentation TimeStamp) of the filtered video frame,
24486 expressed in @var{TB} units. It's NAN if undefined.
24487
24488 @item t
24489 The PTS of the filtered video frame,
24490 expressed in seconds. It's NAN if undefined.
24491
24492 @item prev_pts
24493 The PTS of the previously filtered video frame. It's NAN if undefined.
24494
24495 @item prev_selected_pts
24496 The PTS of the last previously filtered video frame. It's NAN if undefined.
24497
24498 @item prev_selected_t
24499 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24500
24501 @item start_pts
24502 The PTS of the first video frame in the video. It's NAN if undefined.
24503
24504 @item start_t
24505 The time of the first video frame in the video. It's NAN if undefined.
24506
24507 @item pict_type @emph{(video only)}
24508 The type of the filtered frame. It can assume one of the following
24509 values:
24510 @table @option
24511 @item I
24512 @item P
24513 @item B
24514 @item S
24515 @item SI
24516 @item SP
24517 @item BI
24518 @end table
24519
24520 @item interlace_type @emph{(video only)}
24521 The frame interlace type. It can assume one of the following values:
24522 @table @option
24523 @item PROGRESSIVE
24524 The frame is progressive (not interlaced).
24525 @item TOPFIRST
24526 The frame is top-field-first.
24527 @item BOTTOMFIRST
24528 The frame is bottom-field-first.
24529 @end table
24530
24531 @item consumed_sample_n @emph{(audio only)}
24532 the number of selected samples before the current frame
24533
24534 @item samples_n @emph{(audio only)}
24535 the number of samples in the current frame
24536
24537 @item sample_rate @emph{(audio only)}
24538 the input sample rate
24539
24540 @item key
24541 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24542
24543 @item pos
24544 the position in the file of the filtered frame, -1 if the information
24545 is not available (e.g. for synthetic video)
24546
24547 @item scene @emph{(video only)}
24548 value between 0 and 1 to indicate a new scene; a low value reflects a low
24549 probability for the current frame to introduce a new scene, while a higher
24550 value means the current frame is more likely to be one (see the example below)
24551
24552 @item concatdec_select
24553 The concat demuxer can select only part of a concat input file by setting an
24554 inpoint and an outpoint, but the output packets may not be entirely contained
24555 in the selected interval. By using this variable, it is possible to skip frames
24556 generated by the concat demuxer which are not exactly contained in the selected
24557 interval.
24558
24559 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24560 and the @var{lavf.concat.duration} packet metadata values which are also
24561 present in the decoded frames.
24562
24563 The @var{concatdec_select} variable is -1 if the frame pts is at least
24564 start_time and either the duration metadata is missing or the frame pts is less
24565 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24566 missing.
24567
24568 That basically means that an input frame is selected if its pts is within the
24569 interval set by the concat demuxer.
24570
24571 @end table
24572
24573 The default value of the select expression is "1".
24574
24575 @subsection Examples
24576
24577 @itemize
24578 @item
24579 Select all frames in input:
24580 @example
24581 select
24582 @end example
24583
24584 The example above is the same as:
24585 @example
24586 select=1
24587 @end example
24588
24589 @item
24590 Skip all frames:
24591 @example
24592 select=0
24593 @end example
24594
24595 @item
24596 Select only I-frames:
24597 @example
24598 select='eq(pict_type\,I)'
24599 @end example
24600
24601 @item
24602 Select one frame every 100:
24603 @example
24604 select='not(mod(n\,100))'
24605 @end example
24606
24607 @item
24608 Select only frames contained in the 10-20 time interval:
24609 @example
24610 select=between(t\,10\,20)
24611 @end example
24612
24613 @item
24614 Select only I-frames contained in the 10-20 time interval:
24615 @example
24616 select=between(t\,10\,20)*eq(pict_type\,I)
24617 @end example
24618
24619 @item
24620 Select frames with a minimum distance of 10 seconds:
24621 @example
24622 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24623 @end example
24624
24625 @item
24626 Use aselect to select only audio frames with samples number > 100:
24627 @example
24628 aselect='gt(samples_n\,100)'
24629 @end example
24630
24631 @item
24632 Create a mosaic of the first scenes:
24633 @example
24634 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24635 @end example
24636
24637 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24638 choice.
24639
24640 @item
24641 Send even and odd frames to separate outputs, and compose them:
24642 @example
24643 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24644 @end example
24645
24646 @item
24647 Select useful frames from an ffconcat file which is using inpoints and
24648 outpoints but where the source files are not intra frame only.
24649 @example
24650 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24651 @end example
24652 @end itemize
24653
24654 @section sendcmd, asendcmd
24655
24656 Send commands to filters in the filtergraph.
24657
24658 These filters read commands to be sent to other filters in the
24659 filtergraph.
24660
24661 @code{sendcmd} must be inserted between two video filters,
24662 @code{asendcmd} must be inserted between two audio filters, but apart
24663 from that they act the same way.
24664
24665 The specification of commands can be provided in the filter arguments
24666 with the @var{commands} option, or in a file specified by the
24667 @var{filename} option.
24668
24669 These filters accept the following options:
24670 @table @option
24671 @item commands, c
24672 Set the commands to be read and sent to the other filters.
24673 @item filename, f
24674 Set the filename of the commands to be read and sent to the other
24675 filters.
24676 @end table
24677
24678 @subsection Commands syntax
24679
24680 A commands description consists of a sequence of interval
24681 specifications, comprising a list of commands to be executed when a
24682 particular event related to that interval occurs. The occurring event
24683 is typically the current frame time entering or leaving a given time
24684 interval.
24685
24686 An interval is specified by the following syntax:
24687 @example
24688 @var{START}[-@var{END}] @var{COMMANDS};
24689 @end example
24690
24691 The time interval is specified by the @var{START} and @var{END} times.
24692 @var{END} is optional and defaults to the maximum time.
24693
24694 The current frame time is considered within the specified interval if
24695 it is included in the interval [@var{START}, @var{END}), that is when
24696 the time is greater or equal to @var{START} and is lesser than
24697 @var{END}.
24698
24699 @var{COMMANDS} consists of a sequence of one or more command
24700 specifications, separated by ",", relating to that interval.  The
24701 syntax of a command specification is given by:
24702 @example
24703 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
24704 @end example
24705
24706 @var{FLAGS} is optional and specifies the type of events relating to
24707 the time interval which enable sending the specified command, and must
24708 be a non-null sequence of identifier flags separated by "+" or "|" and
24709 enclosed between "[" and "]".
24710
24711 The following flags are recognized:
24712 @table @option
24713 @item enter
24714 The command is sent when the current frame timestamp enters the
24715 specified interval. In other words, the command is sent when the
24716 previous frame timestamp was not in the given interval, and the
24717 current is.
24718
24719 @item leave
24720 The command is sent when the current frame timestamp leaves the
24721 specified interval. In other words, the command is sent when the
24722 previous frame timestamp was in the given interval, and the
24723 current is not.
24724
24725 @item expr
24726 The command @var{ARG} is interpreted as expression and result of
24727 expression is passed as @var{ARG}.
24728
24729 The expression is evaluated through the eval API and can contain the following
24730 constants:
24731
24732 @table @option
24733 @item POS
24734 Original position in the file of the frame, or undefined if undefined
24735 for the current frame.
24736
24737 @item PTS
24738 The presentation timestamp in input.
24739
24740 @item N
24741 The count of the input frame for video or audio, starting from 0.
24742
24743 @item T
24744 The time in seconds of the current frame.
24745
24746 @item TS
24747 The start time in seconds of the current command interval.
24748
24749 @item TE
24750 The end time in seconds of the current command interval.
24751
24752 @item TI
24753 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
24754 @end table
24755
24756 @end table
24757
24758 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
24759 assumed.
24760
24761 @var{TARGET} specifies the target of the command, usually the name of
24762 the filter class or a specific filter instance name.
24763
24764 @var{COMMAND} specifies the name of the command for the target filter.
24765
24766 @var{ARG} is optional and specifies the optional list of argument for
24767 the given @var{COMMAND}.
24768
24769 Between one interval specification and another, whitespaces, or
24770 sequences of characters starting with @code{#} until the end of line,
24771 are ignored and can be used to annotate comments.
24772
24773 A simplified BNF description of the commands specification syntax
24774 follows:
24775 @example
24776 @var{COMMAND_FLAG}  ::= "enter" | "leave"
24777 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
24778 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
24779 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
24780 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
24781 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
24782 @end example
24783
24784 @subsection Examples
24785
24786 @itemize
24787 @item
24788 Specify audio tempo change at second 4:
24789 @example
24790 asendcmd=c='4.0 atempo tempo 1.5',atempo
24791 @end example
24792
24793 @item
24794 Target a specific filter instance:
24795 @example
24796 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
24797 @end example
24798
24799 @item
24800 Specify a list of drawtext and hue commands in a file.
24801 @example
24802 # show text in the interval 5-10
24803 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
24804          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
24805
24806 # desaturate the image in the interval 15-20
24807 15.0-20.0 [enter] hue s 0,
24808           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
24809           [leave] hue s 1,
24810           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
24811
24812 # apply an exponential saturation fade-out effect, starting from time 25
24813 25 [enter] hue s exp(25-t)
24814 @end example
24815
24816 A filtergraph allowing to read and process the above command list
24817 stored in a file @file{test.cmd}, can be specified with:
24818 @example
24819 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
24820 @end example
24821 @end itemize
24822
24823 @anchor{setpts}
24824 @section setpts, asetpts
24825
24826 Change the PTS (presentation timestamp) of the input frames.
24827
24828 @code{setpts} works on video frames, @code{asetpts} on audio frames.
24829
24830 This filter accepts the following options:
24831
24832 @table @option
24833
24834 @item expr
24835 The expression which is evaluated for each frame to construct its timestamp.
24836
24837 @end table
24838
24839 The expression is evaluated through the eval API and can contain the following
24840 constants:
24841
24842 @table @option
24843 @item FRAME_RATE, FR
24844 frame rate, only defined for constant frame-rate video
24845
24846 @item PTS
24847 The presentation timestamp in input
24848
24849 @item N
24850 The count of the input frame for video or the number of consumed samples,
24851 not including the current frame for audio, starting from 0.
24852
24853 @item NB_CONSUMED_SAMPLES
24854 The number of consumed samples, not including the current frame (only
24855 audio)
24856
24857 @item NB_SAMPLES, S
24858 The number of samples in the current frame (only audio)
24859
24860 @item SAMPLE_RATE, SR
24861 The audio sample rate.
24862
24863 @item STARTPTS
24864 The PTS of the first frame.
24865
24866 @item STARTT
24867 the time in seconds of the first frame
24868
24869 @item INTERLACED
24870 State whether the current frame is interlaced.
24871
24872 @item T
24873 the time in seconds of the current frame
24874
24875 @item POS
24876 original position in the file of the frame, or undefined if undefined
24877 for the current frame
24878
24879 @item PREV_INPTS
24880 The previous input PTS.
24881
24882 @item PREV_INT
24883 previous input time in seconds
24884
24885 @item PREV_OUTPTS
24886 The previous output PTS.
24887
24888 @item PREV_OUTT
24889 previous output time in seconds
24890
24891 @item RTCTIME
24892 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
24893 instead.
24894
24895 @item RTCSTART
24896 The wallclock (RTC) time at the start of the movie in microseconds.
24897
24898 @item TB
24899 The timebase of the input timestamps.
24900
24901 @end table
24902
24903 @subsection Examples
24904
24905 @itemize
24906 @item
24907 Start counting PTS from zero
24908 @example
24909 setpts=PTS-STARTPTS
24910 @end example
24911
24912 @item
24913 Apply fast motion effect:
24914 @example
24915 setpts=0.5*PTS
24916 @end example
24917
24918 @item
24919 Apply slow motion effect:
24920 @example
24921 setpts=2.0*PTS
24922 @end example
24923
24924 @item
24925 Set fixed rate of 25 frames per second:
24926 @example
24927 setpts=N/(25*TB)
24928 @end example
24929
24930 @item
24931 Set fixed rate 25 fps with some jitter:
24932 @example
24933 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
24934 @end example
24935
24936 @item
24937 Apply an offset of 10 seconds to the input PTS:
24938 @example
24939 setpts=PTS+10/TB
24940 @end example
24941
24942 @item
24943 Generate timestamps from a "live source" and rebase onto the current timebase:
24944 @example
24945 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
24946 @end example
24947
24948 @item
24949 Generate timestamps by counting samples:
24950 @example
24951 asetpts=N/SR/TB
24952 @end example
24953
24954 @end itemize
24955
24956 @section setrange
24957
24958 Force color range for the output video frame.
24959
24960 The @code{setrange} filter marks the color range property for the
24961 output frames. It does not change the input frame, but only sets the
24962 corresponding property, which affects how the frame is treated by
24963 following filters.
24964
24965 The filter accepts the following options:
24966
24967 @table @option
24968
24969 @item range
24970 Available values are:
24971
24972 @table @samp
24973 @item auto
24974 Keep the same color range property.
24975
24976 @item unspecified, unknown
24977 Set the color range as unspecified.
24978
24979 @item limited, tv, mpeg
24980 Set the color range as limited.
24981
24982 @item full, pc, jpeg
24983 Set the color range as full.
24984 @end table
24985 @end table
24986
24987 @section settb, asettb
24988
24989 Set the timebase to use for the output frames timestamps.
24990 It is mainly useful for testing timebase configuration.
24991
24992 It accepts the following parameters:
24993
24994 @table @option
24995
24996 @item expr, tb
24997 The expression which is evaluated into the output timebase.
24998
24999 @end table
25000
25001 The value for @option{tb} is an arithmetic expression representing a
25002 rational. The expression can contain the constants "AVTB" (the default
25003 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25004 audio only). Default value is "intb".
25005
25006 @subsection Examples
25007
25008 @itemize
25009 @item
25010 Set the timebase to 1/25:
25011 @example
25012 settb=expr=1/25
25013 @end example
25014
25015 @item
25016 Set the timebase to 1/10:
25017 @example
25018 settb=expr=0.1
25019 @end example
25020
25021 @item
25022 Set the timebase to 1001/1000:
25023 @example
25024 settb=1+0.001
25025 @end example
25026
25027 @item
25028 Set the timebase to 2*intb:
25029 @example
25030 settb=2*intb
25031 @end example
25032
25033 @item
25034 Set the default timebase value:
25035 @example
25036 settb=AVTB
25037 @end example
25038 @end itemize
25039
25040 @section showcqt
25041 Convert input audio to a video output representing frequency spectrum
25042 logarithmically using Brown-Puckette constant Q transform algorithm with
25043 direct frequency domain coefficient calculation (but the transform itself
25044 is not really constant Q, instead the Q factor is actually variable/clamped),
25045 with musical tone scale, from E0 to D#10.
25046
25047 The filter accepts the following options:
25048
25049 @table @option
25050 @item size, s
25051 Specify the video size for the output. It must be even. For the syntax of this option,
25052 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25053 Default value is @code{1920x1080}.
25054
25055 @item fps, rate, r
25056 Set the output frame rate. Default value is @code{25}.
25057
25058 @item bar_h
25059 Set the bargraph height. It must be even. Default value is @code{-1} which
25060 computes the bargraph height automatically.
25061
25062 @item axis_h
25063 Set the axis height. It must be even. Default value is @code{-1} which computes
25064 the axis height automatically.
25065
25066 @item sono_h
25067 Set the sonogram height. It must be even. Default value is @code{-1} which
25068 computes the sonogram height automatically.
25069
25070 @item fullhd
25071 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25072 instead. Default value is @code{1}.
25073
25074 @item sono_v, volume
25075 Specify the sonogram volume expression. It can contain variables:
25076 @table @option
25077 @item bar_v
25078 the @var{bar_v} evaluated expression
25079 @item frequency, freq, f
25080 the frequency where it is evaluated
25081 @item timeclamp, tc
25082 the value of @var{timeclamp} option
25083 @end table
25084 and functions:
25085 @table @option
25086 @item a_weighting(f)
25087 A-weighting of equal loudness
25088 @item b_weighting(f)
25089 B-weighting of equal loudness
25090 @item c_weighting(f)
25091 C-weighting of equal loudness.
25092 @end table
25093 Default value is @code{16}.
25094
25095 @item bar_v, volume2
25096 Specify the bargraph volume expression. It can contain variables:
25097 @table @option
25098 @item sono_v
25099 the @var{sono_v} evaluated expression
25100 @item frequency, freq, f
25101 the frequency where it is evaluated
25102 @item timeclamp, tc
25103 the value of @var{timeclamp} option
25104 @end table
25105 and functions:
25106 @table @option
25107 @item a_weighting(f)
25108 A-weighting of equal loudness
25109 @item b_weighting(f)
25110 B-weighting of equal loudness
25111 @item c_weighting(f)
25112 C-weighting of equal loudness.
25113 @end table
25114 Default value is @code{sono_v}.
25115
25116 @item sono_g, gamma
25117 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25118 higher gamma makes the spectrum having more range. Default value is @code{3}.
25119 Acceptable range is @code{[1, 7]}.
25120
25121 @item bar_g, gamma2
25122 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25123 @code{[1, 7]}.
25124
25125 @item bar_t
25126 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25127 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25128
25129 @item timeclamp, tc
25130 Specify the transform timeclamp. At low frequency, there is trade-off between
25131 accuracy in time domain and frequency domain. If timeclamp is lower,
25132 event in time domain is represented more accurately (such as fast bass drum),
25133 otherwise event in frequency domain is represented more accurately
25134 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25135
25136 @item attack
25137 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25138 limits future samples by applying asymmetric windowing in time domain, useful
25139 when low latency is required. Accepted range is @code{[0, 1]}.
25140
25141 @item basefreq
25142 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25143 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25144
25145 @item endfreq
25146 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25147 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25148
25149 @item coeffclamp
25150 This option is deprecated and ignored.
25151
25152 @item tlength
25153 Specify the transform length in time domain. Use this option to control accuracy
25154 trade-off between time domain and frequency domain at every frequency sample.
25155 It can contain variables:
25156 @table @option
25157 @item frequency, freq, f
25158 the frequency where it is evaluated
25159 @item timeclamp, tc
25160 the value of @var{timeclamp} option.
25161 @end table
25162 Default value is @code{384*tc/(384+tc*f)}.
25163
25164 @item count
25165 Specify the transform count for every video frame. Default value is @code{6}.
25166 Acceptable range is @code{[1, 30]}.
25167
25168 @item fcount
25169 Specify the transform count for every single pixel. Default value is @code{0},
25170 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25171
25172 @item fontfile
25173 Specify font file for use with freetype to draw the axis. If not specified,
25174 use embedded font. Note that drawing with font file or embedded font is not
25175 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25176 option instead.
25177
25178 @item font
25179 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25180 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25181 escaping.
25182
25183 @item fontcolor
25184 Specify font color expression. This is arithmetic expression that should return
25185 integer value 0xRRGGBB. It can contain variables:
25186 @table @option
25187 @item frequency, freq, f
25188 the frequency where it is evaluated
25189 @item timeclamp, tc
25190 the value of @var{timeclamp} option
25191 @end table
25192 and functions:
25193 @table @option
25194 @item midi(f)
25195 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25196 @item r(x), g(x), b(x)
25197 red, green, and blue value of intensity x.
25198 @end table
25199 Default value is @code{st(0, (midi(f)-59.5)/12);
25200 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25201 r(1-ld(1)) + b(ld(1))}.
25202
25203 @item axisfile
25204 Specify image file to draw the axis. This option override @var{fontfile} and
25205 @var{fontcolor} option.
25206
25207 @item axis, text
25208 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25209 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25210 Default value is @code{1}.
25211
25212 @item csp
25213 Set colorspace. The accepted values are:
25214 @table @samp
25215 @item unspecified
25216 Unspecified (default)
25217
25218 @item bt709
25219 BT.709
25220
25221 @item fcc
25222 FCC
25223
25224 @item bt470bg
25225 BT.470BG or BT.601-6 625
25226
25227 @item smpte170m
25228 SMPTE-170M or BT.601-6 525
25229
25230 @item smpte240m
25231 SMPTE-240M
25232
25233 @item bt2020ncl
25234 BT.2020 with non-constant luminance
25235
25236 @end table
25237
25238 @item cscheme
25239 Set spectrogram color scheme. This is list of floating point values with format
25240 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25241 The default is @code{1|0.5|0|0|0.5|1}.
25242
25243 @end table
25244
25245 @subsection Examples
25246
25247 @itemize
25248 @item
25249 Playing audio while showing the spectrum:
25250 @example
25251 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25252 @end example
25253
25254 @item
25255 Same as above, but with frame rate 30 fps:
25256 @example
25257 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25258 @end example
25259
25260 @item
25261 Playing at 1280x720:
25262 @example
25263 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25264 @end example
25265
25266 @item
25267 Disable sonogram display:
25268 @example
25269 sono_h=0
25270 @end example
25271
25272 @item
25273 A1 and its harmonics: A1, A2, (near)E3, A3:
25274 @example
25275 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),
25276                  asplit[a][out1]; [a] showcqt [out0]'
25277 @end example
25278
25279 @item
25280 Same as above, but with more accuracy in frequency domain:
25281 @example
25282 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),
25283                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25284 @end example
25285
25286 @item
25287 Custom volume:
25288 @example
25289 bar_v=10:sono_v=bar_v*a_weighting(f)
25290 @end example
25291
25292 @item
25293 Custom gamma, now spectrum is linear to the amplitude.
25294 @example
25295 bar_g=2:sono_g=2
25296 @end example
25297
25298 @item
25299 Custom tlength equation:
25300 @example
25301 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)))'
25302 @end example
25303
25304 @item
25305 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25306 @example
25307 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25308 @end example
25309
25310 @item
25311 Custom font using fontconfig:
25312 @example
25313 font='Courier New,Monospace,mono|bold'
25314 @end example
25315
25316 @item
25317 Custom frequency range with custom axis using image file:
25318 @example
25319 axisfile=myaxis.png:basefreq=40:endfreq=10000
25320 @end example
25321 @end itemize
25322
25323 @section showfreqs
25324
25325 Convert input audio to video output representing the audio power spectrum.
25326 Audio amplitude is on Y-axis while frequency is on X-axis.
25327
25328 The filter accepts the following options:
25329
25330 @table @option
25331 @item size, s
25332 Specify size of video. For the syntax of this option, check the
25333 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25334 Default is @code{1024x512}.
25335
25336 @item mode
25337 Set display mode.
25338 This set how each frequency bin will be represented.
25339
25340 It accepts the following values:
25341 @table @samp
25342 @item line
25343 @item bar
25344 @item dot
25345 @end table
25346 Default is @code{bar}.
25347
25348 @item ascale
25349 Set amplitude scale.
25350
25351 It accepts the following values:
25352 @table @samp
25353 @item lin
25354 Linear scale.
25355
25356 @item sqrt
25357 Square root scale.
25358
25359 @item cbrt
25360 Cubic root scale.
25361
25362 @item log
25363 Logarithmic scale.
25364 @end table
25365 Default is @code{log}.
25366
25367 @item fscale
25368 Set frequency scale.
25369
25370 It accepts the following values:
25371 @table @samp
25372 @item lin
25373 Linear scale.
25374
25375 @item log
25376 Logarithmic scale.
25377
25378 @item rlog
25379 Reverse logarithmic scale.
25380 @end table
25381 Default is @code{lin}.
25382
25383 @item win_size
25384 Set window size. Allowed range is from 16 to 65536.
25385
25386 Default is @code{2048}
25387
25388 @item win_func
25389 Set windowing function.
25390
25391 It accepts the following values:
25392 @table @samp
25393 @item rect
25394 @item bartlett
25395 @item hanning
25396 @item hamming
25397 @item blackman
25398 @item welch
25399 @item flattop
25400 @item bharris
25401 @item bnuttall
25402 @item bhann
25403 @item sine
25404 @item nuttall
25405 @item lanczos
25406 @item gauss
25407 @item tukey
25408 @item dolph
25409 @item cauchy
25410 @item parzen
25411 @item poisson
25412 @item bohman
25413 @end table
25414 Default is @code{hanning}.
25415
25416 @item overlap
25417 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25418 which means optimal overlap for selected window function will be picked.
25419
25420 @item averaging
25421 Set time averaging. Setting this to 0 will display current maximal peaks.
25422 Default is @code{1}, which means time averaging is disabled.
25423
25424 @item colors
25425 Specify list of colors separated by space or by '|' which will be used to
25426 draw channel frequencies. Unrecognized or missing colors will be replaced
25427 by white color.
25428
25429 @item cmode
25430 Set channel display mode.
25431
25432 It accepts the following values:
25433 @table @samp
25434 @item combined
25435 @item separate
25436 @end table
25437 Default is @code{combined}.
25438
25439 @item minamp
25440 Set minimum amplitude used in @code{log} amplitude scaler.
25441
25442 @item data
25443 Set data display mode.
25444
25445 It accepts the following values:
25446 @table @samp
25447 @item magnitude
25448 @item phase
25449 @item delay
25450 @end table
25451 Default is @code{magnitude}.
25452 @end table
25453
25454 @section showspatial
25455
25456 Convert stereo input audio to a video output, representing the spatial relationship
25457 between two channels.
25458
25459 The filter accepts the following options:
25460
25461 @table @option
25462 @item size, s
25463 Specify the video size for the output. For the syntax of this option, check the
25464 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25465 Default value is @code{512x512}.
25466
25467 @item win_size
25468 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25469
25470 @item win_func
25471 Set window function.
25472
25473 It accepts the following values:
25474 @table @samp
25475 @item rect
25476 @item bartlett
25477 @item hann
25478 @item hanning
25479 @item hamming
25480 @item blackman
25481 @item welch
25482 @item flattop
25483 @item bharris
25484 @item bnuttall
25485 @item bhann
25486 @item sine
25487 @item nuttall
25488 @item lanczos
25489 @item gauss
25490 @item tukey
25491 @item dolph
25492 @item cauchy
25493 @item parzen
25494 @item poisson
25495 @item bohman
25496 @end table
25497
25498 Default value is @code{hann}.
25499
25500 @item overlap
25501 Set ratio of overlap window. Default value is @code{0.5}.
25502 When value is @code{1} overlap is set to recommended size for specific
25503 window function currently used.
25504 @end table
25505
25506 @anchor{showspectrum}
25507 @section showspectrum
25508
25509 Convert input audio to a video output, representing the audio frequency
25510 spectrum.
25511
25512 The filter accepts the following options:
25513
25514 @table @option
25515 @item size, s
25516 Specify the video size for the output. For the syntax of this option, check the
25517 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25518 Default value is @code{640x512}.
25519
25520 @item slide
25521 Specify how the spectrum should slide along the window.
25522
25523 It accepts the following values:
25524 @table @samp
25525 @item replace
25526 the samples start again on the left when they reach the right
25527 @item scroll
25528 the samples scroll from right to left
25529 @item fullframe
25530 frames are only produced when the samples reach the right
25531 @item rscroll
25532 the samples scroll from left to right
25533 @end table
25534
25535 Default value is @code{replace}.
25536
25537 @item mode
25538 Specify display mode.
25539
25540 It accepts the following values:
25541 @table @samp
25542 @item combined
25543 all channels are displayed in the same row
25544 @item separate
25545 all channels are displayed in separate rows
25546 @end table
25547
25548 Default value is @samp{combined}.
25549
25550 @item color
25551 Specify display color mode.
25552
25553 It accepts the following values:
25554 @table @samp
25555 @item channel
25556 each channel is displayed in a separate color
25557 @item intensity
25558 each channel is displayed using the same color scheme
25559 @item rainbow
25560 each channel is displayed using the rainbow color scheme
25561 @item moreland
25562 each channel is displayed using the moreland color scheme
25563 @item nebulae
25564 each channel is displayed using the nebulae color scheme
25565 @item fire
25566 each channel is displayed using the fire color scheme
25567 @item fiery
25568 each channel is displayed using the fiery color scheme
25569 @item fruit
25570 each channel is displayed using the fruit color scheme
25571 @item cool
25572 each channel is displayed using the cool color scheme
25573 @item magma
25574 each channel is displayed using the magma color scheme
25575 @item green
25576 each channel is displayed using the green color scheme
25577 @item viridis
25578 each channel is displayed using the viridis color scheme
25579 @item plasma
25580 each channel is displayed using the plasma color scheme
25581 @item cividis
25582 each channel is displayed using the cividis color scheme
25583 @item terrain
25584 each channel is displayed using the terrain color scheme
25585 @end table
25586
25587 Default value is @samp{channel}.
25588
25589 @item scale
25590 Specify scale used for calculating intensity color values.
25591
25592 It accepts the following values:
25593 @table @samp
25594 @item lin
25595 linear
25596 @item sqrt
25597 square root, default
25598 @item cbrt
25599 cubic root
25600 @item log
25601 logarithmic
25602 @item 4thrt
25603 4th root
25604 @item 5thrt
25605 5th root
25606 @end table
25607
25608 Default value is @samp{sqrt}.
25609
25610 @item fscale
25611 Specify frequency scale.
25612
25613 It accepts the following values:
25614 @table @samp
25615 @item lin
25616 linear
25617 @item log
25618 logarithmic
25619 @end table
25620
25621 Default value is @samp{lin}.
25622
25623 @item saturation
25624 Set saturation modifier for displayed colors. Negative values provide
25625 alternative color scheme. @code{0} is no saturation at all.
25626 Saturation must be in [-10.0, 10.0] range.
25627 Default value is @code{1}.
25628
25629 @item win_func
25630 Set window function.
25631
25632 It accepts the following values:
25633 @table @samp
25634 @item rect
25635 @item bartlett
25636 @item hann
25637 @item hanning
25638 @item hamming
25639 @item blackman
25640 @item welch
25641 @item flattop
25642 @item bharris
25643 @item bnuttall
25644 @item bhann
25645 @item sine
25646 @item nuttall
25647 @item lanczos
25648 @item gauss
25649 @item tukey
25650 @item dolph
25651 @item cauchy
25652 @item parzen
25653 @item poisson
25654 @item bohman
25655 @end table
25656
25657 Default value is @code{hann}.
25658
25659 @item orientation
25660 Set orientation of time vs frequency axis. Can be @code{vertical} or
25661 @code{horizontal}. Default is @code{vertical}.
25662
25663 @item overlap
25664 Set ratio of overlap window. Default value is @code{0}.
25665 When value is @code{1} overlap is set to recommended size for specific
25666 window function currently used.
25667
25668 @item gain
25669 Set scale gain for calculating intensity color values.
25670 Default value is @code{1}.
25671
25672 @item data
25673 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25674
25675 @item rotation
25676 Set color rotation, must be in [-1.0, 1.0] range.
25677 Default value is @code{0}.
25678
25679 @item start
25680 Set start frequency from which to display spectrogram. Default is @code{0}.
25681
25682 @item stop
25683 Set stop frequency to which to display spectrogram. Default is @code{0}.
25684
25685 @item fps
25686 Set upper frame rate limit. Default is @code{auto}, unlimited.
25687
25688 @item legend
25689 Draw time and frequency axes and legends. Default is disabled.
25690 @end table
25691
25692 The usage is very similar to the showwaves filter; see the examples in that
25693 section.
25694
25695 @subsection Examples
25696
25697 @itemize
25698 @item
25699 Large window with logarithmic color scaling:
25700 @example
25701 showspectrum=s=1280x480:scale=log
25702 @end example
25703
25704 @item
25705 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
25706 @example
25707 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
25708              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
25709 @end example
25710 @end itemize
25711
25712 @section showspectrumpic
25713
25714 Convert input audio to a single video frame, representing the audio frequency
25715 spectrum.
25716
25717 The filter accepts the following options:
25718
25719 @table @option
25720 @item size, s
25721 Specify the video size for the output. For the syntax of this option, check the
25722 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25723 Default value is @code{4096x2048}.
25724
25725 @item mode
25726 Specify display mode.
25727
25728 It accepts the following values:
25729 @table @samp
25730 @item combined
25731 all channels are displayed in the same row
25732 @item separate
25733 all channels are displayed in separate rows
25734 @end table
25735 Default value is @samp{combined}.
25736
25737 @item color
25738 Specify display color mode.
25739
25740 It accepts the following values:
25741 @table @samp
25742 @item channel
25743 each channel is displayed in a separate color
25744 @item intensity
25745 each channel is displayed using the same color scheme
25746 @item rainbow
25747 each channel is displayed using the rainbow color scheme
25748 @item moreland
25749 each channel is displayed using the moreland color scheme
25750 @item nebulae
25751 each channel is displayed using the nebulae color scheme
25752 @item fire
25753 each channel is displayed using the fire color scheme
25754 @item fiery
25755 each channel is displayed using the fiery color scheme
25756 @item fruit
25757 each channel is displayed using the fruit color scheme
25758 @item cool
25759 each channel is displayed using the cool color scheme
25760 @item magma
25761 each channel is displayed using the magma color scheme
25762 @item green
25763 each channel is displayed using the green color scheme
25764 @item viridis
25765 each channel is displayed using the viridis color scheme
25766 @item plasma
25767 each channel is displayed using the plasma color scheme
25768 @item cividis
25769 each channel is displayed using the cividis color scheme
25770 @item terrain
25771 each channel is displayed using the terrain color scheme
25772 @end table
25773 Default value is @samp{intensity}.
25774
25775 @item scale
25776 Specify scale used for calculating intensity color values.
25777
25778 It accepts the following values:
25779 @table @samp
25780 @item lin
25781 linear
25782 @item sqrt
25783 square root, default
25784 @item cbrt
25785 cubic root
25786 @item log
25787 logarithmic
25788 @item 4thrt
25789 4th root
25790 @item 5thrt
25791 5th root
25792 @end table
25793 Default value is @samp{log}.
25794
25795 @item fscale
25796 Specify frequency scale.
25797
25798 It accepts the following values:
25799 @table @samp
25800 @item lin
25801 linear
25802 @item log
25803 logarithmic
25804 @end table
25805
25806 Default value is @samp{lin}.
25807
25808 @item saturation
25809 Set saturation modifier for displayed colors. Negative values provide
25810 alternative color scheme. @code{0} is no saturation at all.
25811 Saturation must be in [-10.0, 10.0] range.
25812 Default value is @code{1}.
25813
25814 @item win_func
25815 Set window function.
25816
25817 It accepts the following values:
25818 @table @samp
25819 @item rect
25820 @item bartlett
25821 @item hann
25822 @item hanning
25823 @item hamming
25824 @item blackman
25825 @item welch
25826 @item flattop
25827 @item bharris
25828 @item bnuttall
25829 @item bhann
25830 @item sine
25831 @item nuttall
25832 @item lanczos
25833 @item gauss
25834 @item tukey
25835 @item dolph
25836 @item cauchy
25837 @item parzen
25838 @item poisson
25839 @item bohman
25840 @end table
25841 Default value is @code{hann}.
25842
25843 @item orientation
25844 Set orientation of time vs frequency axis. Can be @code{vertical} or
25845 @code{horizontal}. Default is @code{vertical}.
25846
25847 @item gain
25848 Set scale gain for calculating intensity color values.
25849 Default value is @code{1}.
25850
25851 @item legend
25852 Draw time and frequency axes and legends. Default is enabled.
25853
25854 @item rotation
25855 Set color rotation, must be in [-1.0, 1.0] range.
25856 Default value is @code{0}.
25857
25858 @item start
25859 Set start frequency from which to display spectrogram. Default is @code{0}.
25860
25861 @item stop
25862 Set stop frequency to which to display spectrogram. Default is @code{0}.
25863 @end table
25864
25865 @subsection Examples
25866
25867 @itemize
25868 @item
25869 Extract an audio spectrogram of a whole audio track
25870 in a 1024x1024 picture using @command{ffmpeg}:
25871 @example
25872 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
25873 @end example
25874 @end itemize
25875
25876 @section showvolume
25877
25878 Convert input audio volume to a video output.
25879
25880 The filter accepts the following options:
25881
25882 @table @option
25883 @item rate, r
25884 Set video rate.
25885
25886 @item b
25887 Set border width, allowed range is [0, 5]. Default is 1.
25888
25889 @item w
25890 Set channel width, allowed range is [80, 8192]. Default is 400.
25891
25892 @item h
25893 Set channel height, allowed range is [1, 900]. Default is 20.
25894
25895 @item f
25896 Set fade, allowed range is [0, 1]. Default is 0.95.
25897
25898 @item c
25899 Set volume color expression.
25900
25901 The expression can use the following variables:
25902
25903 @table @option
25904 @item VOLUME
25905 Current max volume of channel in dB.
25906
25907 @item PEAK
25908 Current peak.
25909
25910 @item CHANNEL
25911 Current channel number, starting from 0.
25912 @end table
25913
25914 @item t
25915 If set, displays channel names. Default is enabled.
25916
25917 @item v
25918 If set, displays volume values. Default is enabled.
25919
25920 @item o
25921 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
25922 default is @code{h}.
25923
25924 @item s
25925 Set step size, allowed range is [0, 5]. Default is 0, which means
25926 step is disabled.
25927
25928 @item p
25929 Set background opacity, allowed range is [0, 1]. Default is 0.
25930
25931 @item m
25932 Set metering mode, can be peak: @code{p} or rms: @code{r},
25933 default is @code{p}.
25934
25935 @item ds
25936 Set display scale, can be linear: @code{lin} or log: @code{log},
25937 default is @code{lin}.
25938
25939 @item dm
25940 In second.
25941 If set to > 0., display a line for the max level
25942 in the previous seconds.
25943 default is disabled: @code{0.}
25944
25945 @item dmc
25946 The color of the max line. Use when @code{dm} option is set to > 0.
25947 default is: @code{orange}
25948 @end table
25949
25950 @section showwaves
25951
25952 Convert input audio to a video output, representing the samples waves.
25953
25954 The filter accepts the following options:
25955
25956 @table @option
25957 @item size, s
25958 Specify the video size for the output. For the syntax of this option, check the
25959 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25960 Default value is @code{600x240}.
25961
25962 @item mode
25963 Set display mode.
25964
25965 Available values are:
25966 @table @samp
25967 @item point
25968 Draw a point for each sample.
25969
25970 @item line
25971 Draw a vertical line for each sample.
25972
25973 @item p2p
25974 Draw a point for each sample and a line between them.
25975
25976 @item cline
25977 Draw a centered vertical line for each sample.
25978 @end table
25979
25980 Default value is @code{point}.
25981
25982 @item n
25983 Set the number of samples which are printed on the same column. A
25984 larger value will decrease the frame rate. Must be a positive
25985 integer. This option can be set only if the value for @var{rate}
25986 is not explicitly specified.
25987
25988 @item rate, r
25989 Set the (approximate) output frame rate. This is done by setting the
25990 option @var{n}. Default value is "25".
25991
25992 @item split_channels
25993 Set if channels should be drawn separately or overlap. Default value is 0.
25994
25995 @item colors
25996 Set colors separated by '|' which are going to be used for drawing of each channel.
25997
25998 @item scale
25999 Set amplitude scale.
26000
26001 Available values are:
26002 @table @samp
26003 @item lin
26004 Linear.
26005
26006 @item log
26007 Logarithmic.
26008
26009 @item sqrt
26010 Square root.
26011
26012 @item cbrt
26013 Cubic root.
26014 @end table
26015
26016 Default is linear.
26017
26018 @item draw
26019 Set the draw mode. This is mostly useful to set for high @var{n}.
26020
26021 Available values are:
26022 @table @samp
26023 @item scale
26024 Scale pixel values for each drawn sample.
26025
26026 @item full
26027 Draw every sample directly.
26028 @end table
26029
26030 Default value is @code{scale}.
26031 @end table
26032
26033 @subsection Examples
26034
26035 @itemize
26036 @item
26037 Output the input file audio and the corresponding video representation
26038 at the same time:
26039 @example
26040 amovie=a.mp3,asplit[out0],showwaves[out1]
26041 @end example
26042
26043 @item
26044 Create a synthetic signal and show it with showwaves, forcing a
26045 frame rate of 30 frames per second:
26046 @example
26047 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26048 @end example
26049 @end itemize
26050
26051 @section showwavespic
26052
26053 Convert input audio to a single video frame, representing the samples waves.
26054
26055 The filter accepts the following options:
26056
26057 @table @option
26058 @item size, s
26059 Specify the video size for the output. For the syntax of this option, check the
26060 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26061 Default value is @code{600x240}.
26062
26063 @item split_channels
26064 Set if channels should be drawn separately or overlap. Default value is 0.
26065
26066 @item colors
26067 Set colors separated by '|' which are going to be used for drawing of each channel.
26068
26069 @item scale
26070 Set amplitude scale.
26071
26072 Available values are:
26073 @table @samp
26074 @item lin
26075 Linear.
26076
26077 @item log
26078 Logarithmic.
26079
26080 @item sqrt
26081 Square root.
26082
26083 @item cbrt
26084 Cubic root.
26085 @end table
26086
26087 Default is linear.
26088
26089 @item draw
26090 Set the draw mode.
26091
26092 Available values are:
26093 @table @samp
26094 @item scale
26095 Scale pixel values for each drawn sample.
26096
26097 @item full
26098 Draw every sample directly.
26099 @end table
26100
26101 Default value is @code{scale}.
26102
26103 @item filter
26104 Set the filter mode.
26105
26106 Available values are:
26107 @table @samp
26108 @item average
26109 Use average samples values for each drawn sample.
26110
26111 @item peak
26112 Use peak samples values for each drawn sample.
26113 @end table
26114
26115 Default value is @code{average}.
26116 @end table
26117
26118 @subsection Examples
26119
26120 @itemize
26121 @item
26122 Extract a channel split representation of the wave form of a whole audio track
26123 in a 1024x800 picture using @command{ffmpeg}:
26124 @example
26125 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26126 @end example
26127 @end itemize
26128
26129 @section sidedata, asidedata
26130
26131 Delete frame side data, or select frames based on it.
26132
26133 This filter accepts the following options:
26134
26135 @table @option
26136 @item mode
26137 Set mode of operation of the filter.
26138
26139 Can be one of the following:
26140
26141 @table @samp
26142 @item select
26143 Select every frame with side data of @code{type}.
26144
26145 @item delete
26146 Delete side data of @code{type}. If @code{type} is not set, delete all side
26147 data in the frame.
26148
26149 @end table
26150
26151 @item type
26152 Set side data type used with all modes. Must be set for @code{select} mode. For
26153 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26154 in @file{libavutil/frame.h}. For example, to choose
26155 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26156
26157 @end table
26158
26159 @section spectrumsynth
26160
26161 Synthesize audio from 2 input video spectrums, first input stream represents
26162 magnitude across time and second represents phase across time.
26163 The filter will transform from frequency domain as displayed in videos back
26164 to time domain as presented in audio output.
26165
26166 This filter is primarily created for reversing processed @ref{showspectrum}
26167 filter outputs, but can synthesize sound from other spectrograms too.
26168 But in such case results are going to be poor if the phase data is not
26169 available, because in such cases phase data need to be recreated, usually
26170 it's just recreated from random noise.
26171 For best results use gray only output (@code{channel} color mode in
26172 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26173 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26174 @code{data} option. Inputs videos should generally use @code{fullframe}
26175 slide mode as that saves resources needed for decoding video.
26176
26177 The filter accepts the following options:
26178
26179 @table @option
26180 @item sample_rate
26181 Specify sample rate of output audio, the sample rate of audio from which
26182 spectrum was generated may differ.
26183
26184 @item channels
26185 Set number of channels represented in input video spectrums.
26186
26187 @item scale
26188 Set scale which was used when generating magnitude input spectrum.
26189 Can be @code{lin} or @code{log}. Default is @code{log}.
26190
26191 @item slide
26192 Set slide which was used when generating inputs spectrums.
26193 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26194 Default is @code{fullframe}.
26195
26196 @item win_func
26197 Set window function used for resynthesis.
26198
26199 @item overlap
26200 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26201 which means optimal overlap for selected window function will be picked.
26202
26203 @item orientation
26204 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26205 Default is @code{vertical}.
26206 @end table
26207
26208 @subsection Examples
26209
26210 @itemize
26211 @item
26212 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26213 then resynthesize videos back to audio with spectrumsynth:
26214 @example
26215 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
26216 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
26217 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26218 @end example
26219 @end itemize
26220
26221 @section split, asplit
26222
26223 Split input into several identical outputs.
26224
26225 @code{asplit} works with audio input, @code{split} with video.
26226
26227 The filter accepts a single parameter which specifies the number of outputs. If
26228 unspecified, it defaults to 2.
26229
26230 @subsection Examples
26231
26232 @itemize
26233 @item
26234 Create two separate outputs from the same input:
26235 @example
26236 [in] split [out0][out1]
26237 @end example
26238
26239 @item
26240 To create 3 or more outputs, you need to specify the number of
26241 outputs, like in:
26242 @example
26243 [in] asplit=3 [out0][out1][out2]
26244 @end example
26245
26246 @item
26247 Create two separate outputs from the same input, one cropped and
26248 one padded:
26249 @example
26250 [in] split [splitout1][splitout2];
26251 [splitout1] crop=100:100:0:0    [cropout];
26252 [splitout2] pad=200:200:100:100 [padout];
26253 @end example
26254
26255 @item
26256 Create 5 copies of the input audio with @command{ffmpeg}:
26257 @example
26258 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26259 @end example
26260 @end itemize
26261
26262 @section zmq, azmq
26263
26264 Receive commands sent through a libzmq client, and forward them to
26265 filters in the filtergraph.
26266
26267 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26268 must be inserted between two video filters, @code{azmq} between two
26269 audio filters. Both are capable to send messages to any filter type.
26270
26271 To enable these filters you need to install the libzmq library and
26272 headers and configure FFmpeg with @code{--enable-libzmq}.
26273
26274 For more information about libzmq see:
26275 @url{http://www.zeromq.org/}
26276
26277 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26278 receives messages sent through a network interface defined by the
26279 @option{bind_address} (or the abbreviation "@option{b}") option.
26280 Default value of this option is @file{tcp://localhost:5555}. You may
26281 want to alter this value to your needs, but do not forget to escape any
26282 ':' signs (see @ref{filtergraph escaping}).
26283
26284 The received message must be in the form:
26285 @example
26286 @var{TARGET} @var{COMMAND} [@var{ARG}]
26287 @end example
26288
26289 @var{TARGET} specifies the target of the command, usually the name of
26290 the filter class or a specific filter instance name. The default
26291 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26292 but you can override this by using the @samp{filter_name@@id} syntax
26293 (see @ref{Filtergraph syntax}).
26294
26295 @var{COMMAND} specifies the name of the command for the target filter.
26296
26297 @var{ARG} is optional and specifies the optional argument list for the
26298 given @var{COMMAND}.
26299
26300 Upon reception, the message is processed and the corresponding command
26301 is injected into the filtergraph. Depending on the result, the filter
26302 will send a reply to the client, adopting the format:
26303 @example
26304 @var{ERROR_CODE} @var{ERROR_REASON}
26305 @var{MESSAGE}
26306 @end example
26307
26308 @var{MESSAGE} is optional.
26309
26310 @subsection Examples
26311
26312 Look at @file{tools/zmqsend} for an example of a zmq client which can
26313 be used to send commands processed by these filters.
26314
26315 Consider the following filtergraph generated by @command{ffplay}.
26316 In this example the last overlay filter has an instance name. All other
26317 filters will have default instance names.
26318
26319 @example
26320 ffplay -dumpgraph 1 -f lavfi "
26321 color=s=100x100:c=red  [l];
26322 color=s=100x100:c=blue [r];
26323 nullsrc=s=200x100, zmq [bg];
26324 [bg][l]   overlay     [bg+l];
26325 [bg+l][r] overlay@@my=x=100 "
26326 @end example
26327
26328 To change the color of the left side of the video, the following
26329 command can be used:
26330 @example
26331 echo Parsed_color_0 c yellow | tools/zmqsend
26332 @end example
26333
26334 To change the right side:
26335 @example
26336 echo Parsed_color_1 c pink | tools/zmqsend
26337 @end example
26338
26339 To change the position of the right side:
26340 @example
26341 echo overlay@@my x 150 | tools/zmqsend
26342 @end example
26343
26344
26345 @c man end MULTIMEDIA FILTERS
26346
26347 @chapter Multimedia Sources
26348 @c man begin MULTIMEDIA SOURCES
26349
26350 Below is a description of the currently available multimedia sources.
26351
26352 @section amovie
26353
26354 This is the same as @ref{movie} source, except it selects an audio
26355 stream by default.
26356
26357 @anchor{movie}
26358 @section movie
26359
26360 Read audio and/or video stream(s) from a movie container.
26361
26362 It accepts the following parameters:
26363
26364 @table @option
26365 @item filename
26366 The name of the resource to read (not necessarily a file; it can also be a
26367 device or a stream accessed through some protocol).
26368
26369 @item format_name, f
26370 Specifies the format assumed for the movie to read, and can be either
26371 the name of a container or an input device. If not specified, the
26372 format is guessed from @var{movie_name} or by probing.
26373
26374 @item seek_point, sp
26375 Specifies the seek point in seconds. The frames will be output
26376 starting from this seek point. The parameter is evaluated with
26377 @code{av_strtod}, so the numerical value may be suffixed by an IS
26378 postfix. The default value is "0".
26379
26380 @item streams, s
26381 Specifies the streams to read. Several streams can be specified,
26382 separated by "+". The source will then have as many outputs, in the
26383 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26384 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26385 respectively the default (best suited) video and audio stream. Default
26386 is "dv", or "da" if the filter is called as "amovie".
26387
26388 @item stream_index, si
26389 Specifies the index of the video stream to read. If the value is -1,
26390 the most suitable video stream will be automatically selected. The default
26391 value is "-1". Deprecated. If the filter is called "amovie", it will select
26392 audio instead of video.
26393
26394 @item loop
26395 Specifies how many times to read the stream in sequence.
26396 If the value is 0, the stream will be looped infinitely.
26397 Default value is "1".
26398
26399 Note that when the movie is looped the source timestamps are not
26400 changed, so it will generate non monotonically increasing timestamps.
26401
26402 @item discontinuity
26403 Specifies the time difference between frames above which the point is
26404 considered a timestamp discontinuity which is removed by adjusting the later
26405 timestamps.
26406 @end table
26407
26408 It allows overlaying a second video on top of the main input of
26409 a filtergraph, as shown in this graph:
26410 @example
26411 input -----------> deltapts0 --> overlay --> output
26412                                     ^
26413                                     |
26414 movie --> scale--> deltapts1 -------+
26415 @end example
26416 @subsection Examples
26417
26418 @itemize
26419 @item
26420 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26421 on top of the input labelled "in":
26422 @example
26423 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26424 [in] setpts=PTS-STARTPTS [main];
26425 [main][over] overlay=16:16 [out]
26426 @end example
26427
26428 @item
26429 Read from a video4linux2 device, and overlay it on top of the input
26430 labelled "in":
26431 @example
26432 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26433 [in] setpts=PTS-STARTPTS [main];
26434 [main][over] overlay=16:16 [out]
26435 @end example
26436
26437 @item
26438 Read the first video stream and the audio stream with id 0x81 from
26439 dvd.vob; the video is connected to the pad named "video" and the audio is
26440 connected to the pad named "audio":
26441 @example
26442 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26443 @end example
26444 @end itemize
26445
26446 @subsection Commands
26447
26448 Both movie and amovie support the following commands:
26449 @table @option
26450 @item seek
26451 Perform seek using "av_seek_frame".
26452 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26453 @itemize
26454 @item
26455 @var{stream_index}: If stream_index is -1, a default
26456 stream is selected, and @var{timestamp} is automatically converted
26457 from AV_TIME_BASE units to the stream specific time_base.
26458 @item
26459 @var{timestamp}: Timestamp in AVStream.time_base units
26460 or, if no stream is specified, in AV_TIME_BASE units.
26461 @item
26462 @var{flags}: Flags which select direction and seeking mode.
26463 @end itemize
26464
26465 @item get_duration
26466 Get movie duration in AV_TIME_BASE units.
26467
26468 @end table
26469
26470 @c man end MULTIMEDIA SOURCES