]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avformat: add binka demuxer
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @subsection Commands
644
645 This filter supports the all above options as @ref{commands}.
646
647 @section acue
648
649 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
650 filter.
651
652 @section adeclick
653 Remove impulsive noise from input audio.
654
655 Samples detected as impulsive noise are replaced by interpolated samples using
656 autoregressive modelling.
657
658 @table @option
659 @item w
660 Set window size, in milliseconds. Allowed range is from @code{10} to
661 @code{100}. Default value is @code{55} milliseconds.
662 This sets size of window which will be processed at once.
663
664 @item o
665 Set window overlap, in percentage of window size. Allowed range is from
666 @code{50} to @code{95}. Default value is @code{75} percent.
667 Setting this to a very high value increases impulsive noise removal but makes
668 whole process much slower.
669
670 @item a
671 Set autoregression order, in percentage of window size. Allowed range is from
672 @code{0} to @code{25}. Default value is @code{2} percent. This option also
673 controls quality of interpolated samples using neighbour good samples.
674
675 @item t
676 Set threshold value. Allowed range is from @code{1} to @code{100}.
677 Default value is @code{2}.
678 This controls the strength of impulsive noise which is going to be removed.
679 The lower value, the more samples will be detected as impulsive noise.
680
681 @item b
682 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
683 @code{10}. Default value is @code{2}.
684 If any two samples detected as noise are spaced less than this value then any
685 sample between those two samples will be also detected as noise.
686
687 @item m
688 Set overlap method.
689
690 It accepts the following values:
691 @table @option
692 @item a
693 Select overlap-add method. Even not interpolated samples are slightly
694 changed with this method.
695
696 @item s
697 Select overlap-save method. Not interpolated samples remain unchanged.
698 @end table
699
700 Default value is @code{a}.
701 @end table
702
703 @section adeclip
704 Remove clipped samples from input audio.
705
706 Samples detected as clipped are replaced by interpolated samples using
707 autoregressive modelling.
708
709 @table @option
710 @item w
711 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
712 Default value is @code{55} milliseconds.
713 This sets size of window which will be processed at once.
714
715 @item o
716 Set window overlap, in percentage of window size. Allowed range is from @code{50}
717 to @code{95}. Default value is @code{75} percent.
718
719 @item a
720 Set autoregression order, in percentage of window size. Allowed range is from
721 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
722 quality of interpolated samples using neighbour good samples.
723
724 @item t
725 Set threshold value. Allowed range is from @code{1} to @code{100}.
726 Default value is @code{10}. Higher values make clip detection less aggressive.
727
728 @item n
729 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
730 Default value is @code{1000}. Higher values make clip detection less aggressive.
731
732 @item m
733 Set overlap method.
734
735 It accepts the following values:
736 @table @option
737 @item a
738 Select overlap-add method. Even not interpolated samples are slightly changed
739 with this method.
740
741 @item s
742 Select overlap-save method. Not interpolated samples remain unchanged.
743 @end table
744
745 Default value is @code{a}.
746 @end table
747
748 @section adelay
749
750 Delay one or more audio channels.
751
752 Samples in delayed channel are filled with silence.
753
754 The filter accepts the following option:
755
756 @table @option
757 @item delays
758 Set list of delays in milliseconds for each channel separated by '|'.
759 Unused delays will be silently ignored. If number of given delays is
760 smaller than number of channels all remaining channels will not be delayed.
761 If you want to delay exact number of samples, append 'S' to number.
762 If you want instead to delay in seconds, append 's' to number.
763
764 @item all
765 Use last set delay for all remaining channels. By default is disabled.
766 This option if enabled changes how option @code{delays} is interpreted.
767 @end table
768
769 @subsection Examples
770
771 @itemize
772 @item
773 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
774 the second channel (and any other channels that may be present) unchanged.
775 @example
776 adelay=1500|0|500
777 @end example
778
779 @item
780 Delay second channel by 500 samples, the third channel by 700 samples and leave
781 the first channel (and any other channels that may be present) unchanged.
782 @example
783 adelay=0|500S|700S
784 @end example
785
786 @item
787 Delay all channels by same number of samples:
788 @example
789 adelay=delays=64S:all=1
790 @end example
791 @end itemize
792
793 @section adenorm
794 Remedy denormals in audio by adding extremely low-level noise.
795
796 This filter shall be placed before any filter that can produce denormals.
797
798 A description of the accepted parameters follows.
799
800 @table @option
801 @item level
802 Set level of added noise in dB. Default is @code{-351}.
803 Allowed range is from -451 to -90.
804
805 @item type
806 Set type of added noise.
807
808 @table @option
809 @item dc
810 Add DC signal.
811 @item ac
812 Add AC signal.
813 @item square
814 Add square signal.
815 @item pulse
816 Add pulse signal.
817 @end table
818
819 Default is @code{dc}.
820 @end table
821
822 @subsection Commands
823
824 This filter supports the all above options as @ref{commands}.
825
826 @section aderivative, aintegral
827
828 Compute derivative/integral of audio stream.
829
830 Applying both filters one after another produces original audio.
831
832 @section aecho
833
834 Apply echoing to the input audio.
835
836 Echoes are reflected sound and can occur naturally amongst mountains
837 (and sometimes large buildings) when talking or shouting; digital echo
838 effects emulate this behaviour and are often used to help fill out the
839 sound of a single instrument or vocal. The time difference between the
840 original signal and the reflection is the @code{delay}, and the
841 loudness of the reflected signal is the @code{decay}.
842 Multiple echoes can have different delays and decays.
843
844 A description of the accepted parameters follows.
845
846 @table @option
847 @item in_gain
848 Set input gain of reflected signal. Default is @code{0.6}.
849
850 @item out_gain
851 Set output gain of reflected signal. Default is @code{0.3}.
852
853 @item delays
854 Set list of time intervals in milliseconds between original signal and reflections
855 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
856 Default is @code{1000}.
857
858 @item decays
859 Set list of loudness of reflected signals separated by '|'.
860 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
861 Default is @code{0.5}.
862 @end table
863
864 @subsection Examples
865
866 @itemize
867 @item
868 Make it sound as if there are twice as many instruments as are actually playing:
869 @example
870 aecho=0.8:0.88:60:0.4
871 @end example
872
873 @item
874 If delay is very short, then it sounds like a (metallic) robot playing music:
875 @example
876 aecho=0.8:0.88:6:0.4
877 @end example
878
879 @item
880 A longer delay will sound like an open air concert in the mountains:
881 @example
882 aecho=0.8:0.9:1000:0.3
883 @end example
884
885 @item
886 Same as above but with one more mountain:
887 @example
888 aecho=0.8:0.9:1000|1800:0.3|0.25
889 @end example
890 @end itemize
891
892 @section aemphasis
893 Audio emphasis filter creates or restores material directly taken from LPs or
894 emphased CDs with different filter curves. E.g. to store music on vinyl the
895 signal has to be altered by a filter first to even out the disadvantages of
896 this recording medium.
897 Once the material is played back the inverse filter has to be applied to
898 restore the distortion of the frequency response.
899
900 The filter accepts the following options:
901
902 @table @option
903 @item level_in
904 Set input gain.
905
906 @item level_out
907 Set output gain.
908
909 @item mode
910 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
911 use @code{production} mode. Default is @code{reproduction} mode.
912
913 @item type
914 Set filter type. Selects medium. Can be one of the following:
915
916 @table @option
917 @item col
918 select Columbia.
919 @item emi
920 select EMI.
921 @item bsi
922 select BSI (78RPM).
923 @item riaa
924 select RIAA.
925 @item cd
926 select Compact Disc (CD).
927 @item 50fm
928 select 50µs (FM).
929 @item 75fm
930 select 75µs (FM).
931 @item 50kf
932 select 50µs (FM-KF).
933 @item 75kf
934 select 75µs (FM-KF).
935 @end table
936 @end table
937
938 @subsection Commands
939
940 This filter supports the all above options as @ref{commands}.
941
942 @section aeval
943
944 Modify an audio signal according to the specified expressions.
945
946 This filter accepts one or more expressions (one for each channel),
947 which are evaluated and used to modify a corresponding audio signal.
948
949 It accepts the following parameters:
950
951 @table @option
952 @item exprs
953 Set the '|'-separated expressions list for each separate channel. If
954 the number of input channels is greater than the number of
955 expressions, the last specified expression is used for the remaining
956 output channels.
957
958 @item channel_layout, c
959 Set output channel layout. If not specified, the channel layout is
960 specified by the number of expressions. If set to @samp{same}, it will
961 use by default the same input channel layout.
962 @end table
963
964 Each expression in @var{exprs} can contain the following constants and functions:
965
966 @table @option
967 @item ch
968 channel number of the current expression
969
970 @item n
971 number of the evaluated sample, starting from 0
972
973 @item s
974 sample rate
975
976 @item t
977 time of the evaluated sample expressed in seconds
978
979 @item nb_in_channels
980 @item nb_out_channels
981 input and output number of channels
982
983 @item val(CH)
984 the value of input channel with number @var{CH}
985 @end table
986
987 Note: this filter is slow. For faster processing you should use a
988 dedicated filter.
989
990 @subsection Examples
991
992 @itemize
993 @item
994 Half volume:
995 @example
996 aeval=val(ch)/2:c=same
997 @end example
998
999 @item
1000 Invert phase of the second channel:
1001 @example
1002 aeval=val(0)|-val(1)
1003 @end example
1004 @end itemize
1005
1006 @anchor{afade}
1007 @section afade
1008
1009 Apply fade-in/out effect to input audio.
1010
1011 A description of the accepted parameters follows.
1012
1013 @table @option
1014 @item type, t
1015 Specify the effect type, can be either @code{in} for fade-in, or
1016 @code{out} for a fade-out effect. Default is @code{in}.
1017
1018 @item start_sample, ss
1019 Specify the number of the start sample for starting to apply the fade
1020 effect. Default is 0.
1021
1022 @item nb_samples, ns
1023 Specify the number of samples for which the fade effect has to last. At
1024 the end of the fade-in effect the output audio will have the same
1025 volume as the input audio, at the end of the fade-out transition
1026 the output audio will be silence. Default is 44100.
1027
1028 @item start_time, st
1029 Specify the start time of the fade effect. Default is 0.
1030 The value must be specified as a time duration; see
1031 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1032 for the accepted syntax.
1033 If set this option is used instead of @var{start_sample}.
1034
1035 @item duration, d
1036 Specify the duration of the fade effect. See
1037 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1038 for the accepted syntax.
1039 At the end of the fade-in effect the output audio will have the same
1040 volume as the input audio, at the end of the fade-out transition
1041 the output audio will be silence.
1042 By default the duration is determined by @var{nb_samples}.
1043 If set this option is used instead of @var{nb_samples}.
1044
1045 @item curve
1046 Set curve for fade transition.
1047
1048 It accepts the following values:
1049 @table @option
1050 @item tri
1051 select triangular, linear slope (default)
1052 @item qsin
1053 select quarter of sine wave
1054 @item hsin
1055 select half of sine wave
1056 @item esin
1057 select exponential sine wave
1058 @item log
1059 select logarithmic
1060 @item ipar
1061 select inverted parabola
1062 @item qua
1063 select quadratic
1064 @item cub
1065 select cubic
1066 @item squ
1067 select square root
1068 @item cbr
1069 select cubic root
1070 @item par
1071 select parabola
1072 @item exp
1073 select exponential
1074 @item iqsin
1075 select inverted quarter of sine wave
1076 @item ihsin
1077 select inverted half of sine wave
1078 @item dese
1079 select double-exponential seat
1080 @item desi
1081 select double-exponential sigmoid
1082 @item losi
1083 select logistic sigmoid
1084 @item sinc
1085 select sine cardinal function
1086 @item isinc
1087 select inverted sine cardinal function
1088 @item nofade
1089 no fade applied
1090 @end table
1091 @end table
1092
1093 @subsection Commands
1094
1095 This filter supports the all above options as @ref{commands}.
1096
1097 @subsection Examples
1098
1099 @itemize
1100 @item
1101 Fade in first 15 seconds of audio:
1102 @example
1103 afade=t=in:ss=0:d=15
1104 @end example
1105
1106 @item
1107 Fade out last 25 seconds of a 900 seconds audio:
1108 @example
1109 afade=t=out:st=875:d=25
1110 @end example
1111 @end itemize
1112
1113 @section afftdn
1114 Denoise audio samples with FFT.
1115
1116 A description of the accepted parameters follows.
1117
1118 @table @option
1119 @item nr
1120 Set the noise reduction in dB, allowed range is 0.01 to 97.
1121 Default value is 12 dB.
1122
1123 @item nf
1124 Set the noise floor in dB, allowed range is -80 to -20.
1125 Default value is -50 dB.
1126
1127 @item nt
1128 Set the noise type.
1129
1130 It accepts the following values:
1131 @table @option
1132 @item w
1133 Select white noise.
1134
1135 @item v
1136 Select vinyl noise.
1137
1138 @item s
1139 Select shellac noise.
1140
1141 @item c
1142 Select custom noise, defined in @code{bn} option.
1143
1144 Default value is white noise.
1145 @end table
1146
1147 @item bn
1148 Set custom band noise for every one of 15 bands.
1149 Bands are separated by ' ' or '|'.
1150
1151 @item rf
1152 Set the residual floor in dB, allowed range is -80 to -20.
1153 Default value is -38 dB.
1154
1155 @item tn
1156 Enable noise tracking. By default is disabled.
1157 With this enabled, noise floor is automatically adjusted.
1158
1159 @item tr
1160 Enable residual tracking. By default is disabled.
1161
1162 @item om
1163 Set the output mode.
1164
1165 It accepts the following values:
1166 @table @option
1167 @item i
1168 Pass input unchanged.
1169
1170 @item o
1171 Pass noise filtered out.
1172
1173 @item n
1174 Pass only noise.
1175
1176 Default value is @var{o}.
1177 @end table
1178 @end table
1179
1180 @subsection Commands
1181
1182 This filter supports the following commands:
1183 @table @option
1184 @item sample_noise, sn
1185 Start or stop measuring noise profile.
1186 Syntax for the command is : "start" or "stop" string.
1187 After measuring noise profile is stopped it will be
1188 automatically applied in filtering.
1189
1190 @item noise_reduction, nr
1191 Change noise reduction. Argument is single float number.
1192 Syntax for the command is : "@var{noise_reduction}"
1193
1194 @item noise_floor, nf
1195 Change noise floor. Argument is single float number.
1196 Syntax for the command is : "@var{noise_floor}"
1197
1198 @item output_mode, om
1199 Change output mode operation.
1200 Syntax for the command is : "i", "o" or "n" string.
1201 @end table
1202
1203 @section afftfilt
1204 Apply arbitrary expressions to samples in frequency domain.
1205
1206 @table @option
1207 @item real
1208 Set frequency domain real expression for each separate channel separated
1209 by '|'. Default is "re".
1210 If the number of input channels is greater than the number of
1211 expressions, the last specified expression is used for the remaining
1212 output channels.
1213
1214 @item imag
1215 Set frequency domain imaginary expression for each separate channel
1216 separated by '|'. Default is "im".
1217
1218 Each expression in @var{real} and @var{imag} can contain the following
1219 constants and functions:
1220
1221 @table @option
1222 @item sr
1223 sample rate
1224
1225 @item b
1226 current frequency bin number
1227
1228 @item nb
1229 number of available bins
1230
1231 @item ch
1232 channel number of the current expression
1233
1234 @item chs
1235 number of channels
1236
1237 @item pts
1238 current frame pts
1239
1240 @item re
1241 current real part of frequency bin of current channel
1242
1243 @item im
1244 current imaginary part of frequency bin of current channel
1245
1246 @item real(b, ch)
1247 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1248
1249 @item imag(b, ch)
1250 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1251 @end table
1252
1253 @item win_size
1254 Set window size. Allowed range is from 16 to 131072.
1255 Default is @code{4096}
1256
1257 @item win_func
1258 Set window function. Default is @code{hann}.
1259
1260 @item overlap
1261 Set window overlap. If set to 1, the recommended overlap for selected
1262 window function will be picked. Default is @code{0.75}.
1263 @end table
1264
1265 @subsection Examples
1266
1267 @itemize
1268 @item
1269 Leave almost only low frequencies in audio:
1270 @example
1271 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1272 @end example
1273
1274 @item
1275 Apply robotize effect:
1276 @example
1277 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1278 @end example
1279
1280 @item
1281 Apply whisper effect:
1282 @example
1283 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"
1284 @end example
1285 @end itemize
1286
1287 @anchor{afir}
1288 @section afir
1289
1290 Apply an arbitrary Finite Impulse Response filter.
1291
1292 This filter is designed for applying long FIR filters,
1293 up to 60 seconds long.
1294
1295 It can be used as component for digital crossover filters,
1296 room equalization, cross talk cancellation, wavefield synthesis,
1297 auralization, ambiophonics, ambisonics and spatialization.
1298
1299 This filter uses the streams higher than first one as FIR coefficients.
1300 If the non-first stream holds a single channel, it will be used
1301 for all input channels in the first stream, otherwise
1302 the number of channels in the non-first stream must be same as
1303 the number of channels in the first stream.
1304
1305 It accepts the following parameters:
1306
1307 @table @option
1308 @item dry
1309 Set dry gain. This sets input gain.
1310
1311 @item wet
1312 Set wet gain. This sets final output gain.
1313
1314 @item length
1315 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1316
1317 @item gtype
1318 Enable applying gain measured from power of IR.
1319
1320 Set which approach to use for auto gain measurement.
1321
1322 @table @option
1323 @item none
1324 Do not apply any gain.
1325
1326 @item peak
1327 select peak gain, very conservative approach. This is default value.
1328
1329 @item dc
1330 select DC gain, limited application.
1331
1332 @item gn
1333 select gain to noise approach, this is most popular one.
1334 @end table
1335
1336 @item irgain
1337 Set gain to be applied to IR coefficients before filtering.
1338 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1339
1340 @item irfmt
1341 Set format of IR stream. Can be @code{mono} or @code{input}.
1342 Default is @code{input}.
1343
1344 @item maxir
1345 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1346 Allowed range is 0.1 to 60 seconds.
1347
1348 @item response
1349 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1350 By default it is disabled.
1351
1352 @item channel
1353 Set for which IR channel to display frequency response. By default is first channel
1354 displayed. This option is used only when @var{response} is enabled.
1355
1356 @item size
1357 Set video stream size. This option is used only when @var{response} is enabled.
1358
1359 @item rate
1360 Set video stream frame rate. This option is used only when @var{response} is enabled.
1361
1362 @item minp
1363 Set minimal partition size used for convolution. Default is @var{8192}.
1364 Allowed range is from @var{1} to @var{32768}.
1365 Lower values decreases latency at cost of higher CPU usage.
1366
1367 @item maxp
1368 Set maximal partition size used for convolution. Default is @var{8192}.
1369 Allowed range is from @var{8} to @var{32768}.
1370 Lower values may increase CPU usage.
1371
1372 @item nbirs
1373 Set number of input impulse responses streams which will be switchable at runtime.
1374 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1375
1376 @item ir
1377 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1378 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1379 This option can be changed at runtime via @ref{commands}.
1380 @end table
1381
1382 @subsection Examples
1383
1384 @itemize
1385 @item
1386 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1387 @example
1388 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1389 @end example
1390 @end itemize
1391
1392 @anchor{aformat}
1393 @section aformat
1394
1395 Set output format constraints for the input audio. The framework will
1396 negotiate the most appropriate format to minimize conversions.
1397
1398 It accepts the following parameters:
1399 @table @option
1400
1401 @item sample_fmts, f
1402 A '|'-separated list of requested sample formats.
1403
1404 @item sample_rates, r
1405 A '|'-separated list of requested sample rates.
1406
1407 @item channel_layouts, cl
1408 A '|'-separated list of requested channel layouts.
1409
1410 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1411 for the required syntax.
1412 @end table
1413
1414 If a parameter is omitted, all values are allowed.
1415
1416 Force the output to either unsigned 8-bit or signed 16-bit stereo
1417 @example
1418 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1419 @end example
1420
1421 @section afreqshift
1422 Apply frequency shift to input audio samples.
1423
1424 The filter accepts the following options:
1425
1426 @table @option
1427 @item shift
1428 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1429 Default value is 0.0.
1430
1431 @item level
1432 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1433 Default value is 1.0.
1434 @end table
1435
1436 @subsection Commands
1437
1438 This filter supports the all above options as @ref{commands}.
1439
1440 @section agate
1441
1442 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1443 processing reduces disturbing noise between useful signals.
1444
1445 Gating is done by detecting the volume below a chosen level @var{threshold}
1446 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1447 floor is set via @var{range}. Because an exact manipulation of the signal
1448 would cause distortion of the waveform the reduction can be levelled over
1449 time. This is done by setting @var{attack} and @var{release}.
1450
1451 @var{attack} determines how long the signal has to fall below the threshold
1452 before any reduction will occur and @var{release} sets the time the signal
1453 has to rise above the threshold to reduce the reduction again.
1454 Shorter signals than the chosen attack time will be left untouched.
1455
1456 @table @option
1457 @item level_in
1458 Set input level before filtering.
1459 Default is 1. Allowed range is from 0.015625 to 64.
1460
1461 @item mode
1462 Set the mode of operation. Can be @code{upward} or @code{downward}.
1463 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1464 will be amplified, expanding dynamic range in upward direction.
1465 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1466
1467 @item range
1468 Set the level of gain reduction when the signal is below the threshold.
1469 Default is 0.06125. Allowed range is from 0 to 1.
1470 Setting this to 0 disables reduction and then filter behaves like expander.
1471
1472 @item threshold
1473 If a signal rises above this level the gain reduction is released.
1474 Default is 0.125. Allowed range is from 0 to 1.
1475
1476 @item ratio
1477 Set a ratio by which the signal is reduced.
1478 Default is 2. Allowed range is from 1 to 9000.
1479
1480 @item attack
1481 Amount of milliseconds the signal has to rise above the threshold before gain
1482 reduction stops.
1483 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1484
1485 @item release
1486 Amount of milliseconds the signal has to fall below the threshold before the
1487 reduction is increased again. Default is 250 milliseconds.
1488 Allowed range is from 0.01 to 9000.
1489
1490 @item makeup
1491 Set amount of amplification of signal after processing.
1492 Default is 1. Allowed range is from 1 to 64.
1493
1494 @item knee
1495 Curve the sharp knee around the threshold to enter gain reduction more softly.
1496 Default is 2.828427125. Allowed range is from 1 to 8.
1497
1498 @item detection
1499 Choose if exact signal should be taken for detection or an RMS like one.
1500 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1501
1502 @item link
1503 Choose if the average level between all channels or the louder channel affects
1504 the reduction.
1505 Default is @code{average}. Can be @code{average} or @code{maximum}.
1506 @end table
1507
1508 @subsection Commands
1509
1510 This filter supports the all above options as @ref{commands}.
1511
1512 @section aiir
1513
1514 Apply an arbitrary Infinite Impulse Response filter.
1515
1516 It accepts the following parameters:
1517
1518 @table @option
1519 @item zeros, z
1520 Set B/numerator/zeros/reflection coefficients.
1521
1522 @item poles, p
1523 Set A/denominator/poles/ladder coefficients.
1524
1525 @item gains, k
1526 Set channels gains.
1527
1528 @item dry_gain
1529 Set input gain.
1530
1531 @item wet_gain
1532 Set output gain.
1533
1534 @item format, f
1535 Set coefficients format.
1536
1537 @table @samp
1538 @item ll
1539 lattice-ladder function
1540 @item sf
1541 analog transfer function
1542 @item tf
1543 digital transfer function
1544 @item zp
1545 Z-plane zeros/poles, cartesian (default)
1546 @item pr
1547 Z-plane zeros/poles, polar radians
1548 @item pd
1549 Z-plane zeros/poles, polar degrees
1550 @item sp
1551 S-plane zeros/poles
1552 @end table
1553
1554 @item process, r
1555 Set type of processing.
1556
1557 @table @samp
1558 @item d
1559 direct processing
1560 @item s
1561 serial processing
1562 @item p
1563 parallel processing
1564 @end table
1565
1566 @item precision, e
1567 Set filtering precision.
1568
1569 @table @samp
1570 @item dbl
1571 double-precision floating-point (default)
1572 @item flt
1573 single-precision floating-point
1574 @item i32
1575 32-bit integers
1576 @item i16
1577 16-bit integers
1578 @end table
1579
1580 @item normalize, n
1581 Normalize filter coefficients, by default is enabled.
1582 Enabling it will normalize magnitude response at DC to 0dB.
1583
1584 @item mix
1585 How much to use filtered signal in output. Default is 1.
1586 Range is between 0 and 1.
1587
1588 @item response
1589 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1590 By default it is disabled.
1591
1592 @item channel
1593 Set for which IR channel to display frequency response. By default is first channel
1594 displayed. This option is used only when @var{response} is enabled.
1595
1596 @item size
1597 Set video stream size. This option is used only when @var{response} is enabled.
1598 @end table
1599
1600 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1601 order.
1602
1603 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1604 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1605 imaginary unit.
1606
1607 Different coefficients and gains can be provided for every channel, in such case
1608 use '|' to separate coefficients or gains. Last provided coefficients will be
1609 used for all remaining channels.
1610
1611 @subsection Examples
1612
1613 @itemize
1614 @item
1615 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1616 @example
1617 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
1618 @end example
1619
1620 @item
1621 Same as above but in @code{zp} format:
1622 @example
1623 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
1624 @end example
1625
1626 @item
1627 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1628 @example
1629 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1630 @end example
1631 @end itemize
1632
1633 @section alimiter
1634
1635 The limiter prevents an input signal from rising over a desired threshold.
1636 This limiter uses lookahead technology to prevent your signal from distorting.
1637 It means that there is a small delay after the signal is processed. Keep in mind
1638 that the delay it produces is the attack time you set.
1639
1640 The filter accepts the following options:
1641
1642 @table @option
1643 @item level_in
1644 Set input gain. Default is 1.
1645
1646 @item level_out
1647 Set output gain. Default is 1.
1648
1649 @item limit
1650 Don't let signals above this level pass the limiter. Default is 1.
1651
1652 @item attack
1653 The limiter will reach its attenuation level in this amount of time in
1654 milliseconds. Default is 5 milliseconds.
1655
1656 @item release
1657 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1658 Default is 50 milliseconds.
1659
1660 @item asc
1661 When gain reduction is always needed ASC takes care of releasing to an
1662 average reduction level rather than reaching a reduction of 0 in the release
1663 time.
1664
1665 @item asc_level
1666 Select how much the release time is affected by ASC, 0 means nearly no changes
1667 in release time while 1 produces higher release times.
1668
1669 @item level
1670 Auto level output signal. Default is enabled.
1671 This normalizes audio back to 0dB if enabled.
1672 @end table
1673
1674 Depending on picked setting it is recommended to upsample input 2x or 4x times
1675 with @ref{aresample} before applying this filter.
1676
1677 @section allpass
1678
1679 Apply a two-pole all-pass filter with central frequency (in Hz)
1680 @var{frequency}, and filter-width @var{width}.
1681 An all-pass filter changes the audio's frequency to phase relationship
1682 without changing its frequency to amplitude relationship.
1683
1684 The filter accepts the following options:
1685
1686 @table @option
1687 @item frequency, f
1688 Set frequency in Hz.
1689
1690 @item width_type, t
1691 Set method to specify band-width of filter.
1692 @table @option
1693 @item h
1694 Hz
1695 @item q
1696 Q-Factor
1697 @item o
1698 octave
1699 @item s
1700 slope
1701 @item k
1702 kHz
1703 @end table
1704
1705 @item width, w
1706 Specify the band-width of a filter in width_type units.
1707
1708 @item mix, m
1709 How much to use filtered signal in output. Default is 1.
1710 Range is between 0 and 1.
1711
1712 @item channels, c
1713 Specify which channels to filter, by default all available are filtered.
1714
1715 @item normalize, n
1716 Normalize biquad coefficients, by default is disabled.
1717 Enabling it will normalize magnitude response at DC to 0dB.
1718
1719 @item order, o
1720 Set the filter order, can be 1 or 2. Default is 2.
1721
1722 @item transform, a
1723 Set transform type of IIR filter.
1724 @table @option
1725 @item di
1726 @item dii
1727 @item tdii
1728 @item latt
1729 @end table
1730
1731 @item precision, r
1732 Set precison of filtering.
1733 @table @option
1734 @item auto
1735 Pick automatic sample format depending on surround filters.
1736 @item s16
1737 Always use signed 16-bit.
1738 @item s32
1739 Always use signed 32-bit.
1740 @item f32
1741 Always use float 32-bit.
1742 @item f64
1743 Always use float 64-bit.
1744 @end table
1745 @end table
1746
1747 @subsection Commands
1748
1749 This filter supports the following commands:
1750 @table @option
1751 @item frequency, f
1752 Change allpass frequency.
1753 Syntax for the command is : "@var{frequency}"
1754
1755 @item width_type, t
1756 Change allpass width_type.
1757 Syntax for the command is : "@var{width_type}"
1758
1759 @item width, w
1760 Change allpass width.
1761 Syntax for the command is : "@var{width}"
1762
1763 @item mix, m
1764 Change allpass mix.
1765 Syntax for the command is : "@var{mix}"
1766 @end table
1767
1768 @section aloop
1769
1770 Loop audio samples.
1771
1772 The filter accepts the following options:
1773
1774 @table @option
1775 @item loop
1776 Set the number of loops. Setting this value to -1 will result in infinite loops.
1777 Default is 0.
1778
1779 @item size
1780 Set maximal number of samples. Default is 0.
1781
1782 @item start
1783 Set first sample of loop. Default is 0.
1784 @end table
1785
1786 @anchor{amerge}
1787 @section amerge
1788
1789 Merge two or more audio streams into a single multi-channel stream.
1790
1791 The filter accepts the following options:
1792
1793 @table @option
1794
1795 @item inputs
1796 Set the number of inputs. Default is 2.
1797
1798 @end table
1799
1800 If the channel layouts of the inputs are disjoint, and therefore compatible,
1801 the channel layout of the output will be set accordingly and the channels
1802 will be reordered as necessary. If the channel layouts of the inputs are not
1803 disjoint, the output will have all the channels of the first input then all
1804 the channels of the second input, in that order, and the channel layout of
1805 the output will be the default value corresponding to the total number of
1806 channels.
1807
1808 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1809 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1810 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1811 first input, b1 is the first channel of the second input).
1812
1813 On the other hand, if both input are in stereo, the output channels will be
1814 in the default order: a1, a2, b1, b2, and the channel layout will be
1815 arbitrarily set to 4.0, which may or may not be the expected value.
1816
1817 All inputs must have the same sample rate, and format.
1818
1819 If inputs do not have the same duration, the output will stop with the
1820 shortest.
1821
1822 @subsection Examples
1823
1824 @itemize
1825 @item
1826 Merge two mono files into a stereo stream:
1827 @example
1828 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1829 @end example
1830
1831 @item
1832 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1833 @example
1834 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
1835 @end example
1836 @end itemize
1837
1838 @section amix
1839
1840 Mixes multiple audio inputs into a single output.
1841
1842 Note that this filter only supports float samples (the @var{amerge}
1843 and @var{pan} audio filters support many formats). If the @var{amix}
1844 input has integer samples then @ref{aresample} will be automatically
1845 inserted to perform the conversion to float samples.
1846
1847 For example
1848 @example
1849 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1850 @end example
1851 will mix 3 input audio streams to a single output with the same duration as the
1852 first input and a dropout transition time of 3 seconds.
1853
1854 It accepts the following parameters:
1855 @table @option
1856
1857 @item inputs
1858 The number of inputs. If unspecified, it defaults to 2.
1859
1860 @item duration
1861 How to determine the end-of-stream.
1862 @table @option
1863
1864 @item longest
1865 The duration of the longest input. (default)
1866
1867 @item shortest
1868 The duration of the shortest input.
1869
1870 @item first
1871 The duration of the first input.
1872
1873 @end table
1874
1875 @item dropout_transition
1876 The transition time, in seconds, for volume renormalization when an input
1877 stream ends. The default value is 2 seconds.
1878
1879 @item weights
1880 Specify weight of each input audio stream as sequence.
1881 Each weight is separated by space. By default all inputs have same weight.
1882 @end table
1883
1884 @subsection Commands
1885
1886 This filter supports the following commands:
1887 @table @option
1888 @item weights
1889 Syntax is same as option with same name.
1890 @end table
1891
1892 @section amultiply
1893
1894 Multiply first audio stream with second audio stream and store result
1895 in output audio stream. Multiplication is done by multiplying each
1896 sample from first stream with sample at same position from second stream.
1897
1898 With this element-wise multiplication one can create amplitude fades and
1899 amplitude modulations.
1900
1901 @section anequalizer
1902
1903 High-order parametric multiband equalizer for each channel.
1904
1905 It accepts the following parameters:
1906 @table @option
1907 @item params
1908
1909 This option string is in format:
1910 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1911 Each equalizer band is separated by '|'.
1912
1913 @table @option
1914 @item chn
1915 Set channel number to which equalization will be applied.
1916 If input doesn't have that channel the entry is ignored.
1917
1918 @item f
1919 Set central frequency for band.
1920 If input doesn't have that frequency the entry is ignored.
1921
1922 @item w
1923 Set band width in Hertz.
1924
1925 @item g
1926 Set band gain in dB.
1927
1928 @item t
1929 Set filter type for band, optional, can be:
1930
1931 @table @samp
1932 @item 0
1933 Butterworth, this is default.
1934
1935 @item 1
1936 Chebyshev type 1.
1937
1938 @item 2
1939 Chebyshev type 2.
1940 @end table
1941 @end table
1942
1943 @item curves
1944 With this option activated frequency response of anequalizer is displayed
1945 in video stream.
1946
1947 @item size
1948 Set video stream size. Only useful if curves option is activated.
1949
1950 @item mgain
1951 Set max gain that will be displayed. Only useful if curves option is activated.
1952 Setting this to a reasonable value makes it possible to display gain which is derived from
1953 neighbour bands which are too close to each other and thus produce higher gain
1954 when both are activated.
1955
1956 @item fscale
1957 Set frequency scale used to draw frequency response in video output.
1958 Can be linear or logarithmic. Default is logarithmic.
1959
1960 @item colors
1961 Set color for each channel curve which is going to be displayed in video stream.
1962 This is list of color names separated by space or by '|'.
1963 Unrecognised or missing colors will be replaced by white color.
1964 @end table
1965
1966 @subsection Examples
1967
1968 @itemize
1969 @item
1970 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1971 for first 2 channels using Chebyshev type 1 filter:
1972 @example
1973 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1974 @end example
1975 @end itemize
1976
1977 @subsection Commands
1978
1979 This filter supports the following commands:
1980 @table @option
1981 @item change
1982 Alter existing filter parameters.
1983 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1984
1985 @var{fN} is existing filter number, starting from 0, if no such filter is available
1986 error is returned.
1987 @var{freq} set new frequency parameter.
1988 @var{width} set new width parameter in Hertz.
1989 @var{gain} set new gain parameter in dB.
1990
1991 Full filter invocation with asendcmd may look like this:
1992 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1993 @end table
1994
1995 @section anlmdn
1996
1997 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1998
1999 Each sample is adjusted by looking for other samples with similar contexts. This
2000 context similarity is defined by comparing their surrounding patches of size
2001 @option{p}. Patches are searched in an area of @option{r} around the sample.
2002
2003 The filter accepts the following options:
2004
2005 @table @option
2006 @item s
2007 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2008
2009 @item p
2010 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2011 Default value is 2 milliseconds.
2012
2013 @item r
2014 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2015 Default value is 6 milliseconds.
2016
2017 @item o
2018 Set the output mode.
2019
2020 It accepts the following values:
2021 @table @option
2022 @item i
2023 Pass input unchanged.
2024
2025 @item o
2026 Pass noise filtered out.
2027
2028 @item n
2029 Pass only noise.
2030
2031 Default value is @var{o}.
2032 @end table
2033
2034 @item m
2035 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2036 @end table
2037
2038 @subsection Commands
2039
2040 This filter supports the all above options as @ref{commands}.
2041
2042 @section anlms
2043 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2044
2045 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2046 relate to producing the least mean square of the error signal (difference between the desired,
2047 2nd input audio stream and the actual signal, the 1st input audio stream).
2048
2049 A description of the accepted options follows.
2050
2051 @table @option
2052 @item order
2053 Set filter order.
2054
2055 @item mu
2056 Set filter mu.
2057
2058 @item eps
2059 Set the filter eps.
2060
2061 @item leakage
2062 Set the filter leakage.
2063
2064 @item out_mode
2065 It accepts the following values:
2066 @table @option
2067 @item i
2068 Pass the 1st input.
2069
2070 @item d
2071 Pass the 2nd input.
2072
2073 @item o
2074 Pass filtered samples.
2075
2076 @item n
2077 Pass difference between desired and filtered samples.
2078
2079 Default value is @var{o}.
2080 @end table
2081 @end table
2082
2083 @subsection Examples
2084
2085 @itemize
2086 @item
2087 One of many usages of this filter is noise reduction, input audio is filtered
2088 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2089 @example
2090 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2091 @end example
2092 @end itemize
2093
2094 @subsection Commands
2095
2096 This filter supports the same commands as options, excluding option @code{order}.
2097
2098 @section anull
2099
2100 Pass the audio source unchanged to the output.
2101
2102 @section apad
2103
2104 Pad the end of an audio stream with silence.
2105
2106 This can be used together with @command{ffmpeg} @option{-shortest} to
2107 extend audio streams to the same length as the video stream.
2108
2109 A description of the accepted options follows.
2110
2111 @table @option
2112 @item packet_size
2113 Set silence packet size. Default value is 4096.
2114
2115 @item pad_len
2116 Set the number of samples of silence to add to the end. After the
2117 value is reached, the stream is terminated. This option is mutually
2118 exclusive with @option{whole_len}.
2119
2120 @item whole_len
2121 Set the minimum total number of samples in the output audio stream. If
2122 the value is longer than the input audio length, silence is added to
2123 the end, until the value is reached. This option is mutually exclusive
2124 with @option{pad_len}.
2125
2126 @item pad_dur
2127 Specify the duration of samples of silence to add. See
2128 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2129 for the accepted syntax. Used only if set to non-zero value.
2130
2131 @item whole_dur
2132 Specify the minimum total duration in the output audio stream. See
2133 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2134 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2135 the input audio length, silence is added to the end, until the value is reached.
2136 This option is mutually exclusive with @option{pad_dur}
2137 @end table
2138
2139 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2140 nor @option{whole_dur} option is set, the filter will add silence to the end of
2141 the input stream indefinitely.
2142
2143 @subsection Examples
2144
2145 @itemize
2146 @item
2147 Add 1024 samples of silence to the end of the input:
2148 @example
2149 apad=pad_len=1024
2150 @end example
2151
2152 @item
2153 Make sure the audio output will contain at least 10000 samples, pad
2154 the input with silence if required:
2155 @example
2156 apad=whole_len=10000
2157 @end example
2158
2159 @item
2160 Use @command{ffmpeg} to pad the audio input with silence, so that the
2161 video stream will always result the shortest and will be converted
2162 until the end in the output file when using the @option{shortest}
2163 option:
2164 @example
2165 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2166 @end example
2167 @end itemize
2168
2169 @section aphaser
2170 Add a phasing effect to the input audio.
2171
2172 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2173 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2174
2175 A description of the accepted parameters follows.
2176
2177 @table @option
2178 @item in_gain
2179 Set input gain. Default is 0.4.
2180
2181 @item out_gain
2182 Set output gain. Default is 0.74
2183
2184 @item delay
2185 Set delay in milliseconds. Default is 3.0.
2186
2187 @item decay
2188 Set decay. Default is 0.4.
2189
2190 @item speed
2191 Set modulation speed in Hz. Default is 0.5.
2192
2193 @item type
2194 Set modulation type. Default is triangular.
2195
2196 It accepts the following values:
2197 @table @samp
2198 @item triangular, t
2199 @item sinusoidal, s
2200 @end table
2201 @end table
2202
2203 @section aphaseshift
2204 Apply phase shift to input audio samples.
2205
2206 The filter accepts the following options:
2207
2208 @table @option
2209 @item shift
2210 Specify phase shift. Allowed range is from -1.0 to 1.0.
2211 Default value is 0.0.
2212
2213 @item level
2214 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2215 Default value is 1.0.
2216 @end table
2217
2218 @subsection Commands
2219
2220 This filter supports the all above options as @ref{commands}.
2221
2222 @section apulsator
2223
2224 Audio pulsator is something between an autopanner and a tremolo.
2225 But it can produce funny stereo effects as well. Pulsator changes the volume
2226 of the left and right channel based on a LFO (low frequency oscillator) with
2227 different waveforms and shifted phases.
2228 This filter have the ability to define an offset between left and right
2229 channel. An offset of 0 means that both LFO shapes match each other.
2230 The left and right channel are altered equally - a conventional tremolo.
2231 An offset of 50% means that the shape of the right channel is exactly shifted
2232 in phase (or moved backwards about half of the frequency) - pulsator acts as
2233 an autopanner. At 1 both curves match again. Every setting in between moves the
2234 phase shift gapless between all stages and produces some "bypassing" sounds with
2235 sine and triangle waveforms. The more you set the offset near 1 (starting from
2236 the 0.5) the faster the signal passes from the left to the right speaker.
2237
2238 The filter accepts the following options:
2239
2240 @table @option
2241 @item level_in
2242 Set input gain. By default it is 1. Range is [0.015625 - 64].
2243
2244 @item level_out
2245 Set output gain. By default it is 1. Range is [0.015625 - 64].
2246
2247 @item mode
2248 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2249 sawup or sawdown. Default is sine.
2250
2251 @item amount
2252 Set modulation. Define how much of original signal is affected by the LFO.
2253
2254 @item offset_l
2255 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2256
2257 @item offset_r
2258 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2259
2260 @item width
2261 Set pulse width. Default is 1. Allowed range is [0 - 2].
2262
2263 @item timing
2264 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2265
2266 @item bpm
2267 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2268 is set to bpm.
2269
2270 @item ms
2271 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2272 is set to ms.
2273
2274 @item hz
2275 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2276 if timing is set to hz.
2277 @end table
2278
2279 @anchor{aresample}
2280 @section aresample
2281
2282 Resample the input audio to the specified parameters, using the
2283 libswresample library. If none are specified then the filter will
2284 automatically convert between its input and output.
2285
2286 This filter is also able to stretch/squeeze the audio data to make it match
2287 the timestamps or to inject silence / cut out audio to make it match the
2288 timestamps, do a combination of both or do neither.
2289
2290 The filter accepts the syntax
2291 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2292 expresses a sample rate and @var{resampler_options} is a list of
2293 @var{key}=@var{value} pairs, separated by ":". See the
2294 @ref{Resampler Options,,"Resampler Options" section in the
2295 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2296 for the complete list of supported options.
2297
2298 @subsection Examples
2299
2300 @itemize
2301 @item
2302 Resample the input audio to 44100Hz:
2303 @example
2304 aresample=44100
2305 @end example
2306
2307 @item
2308 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2309 samples per second compensation:
2310 @example
2311 aresample=async=1000
2312 @end example
2313 @end itemize
2314
2315 @section areverse
2316
2317 Reverse an audio clip.
2318
2319 Warning: This filter requires memory to buffer the entire clip, so trimming
2320 is suggested.
2321
2322 @subsection Examples
2323
2324 @itemize
2325 @item
2326 Take the first 5 seconds of a clip, and reverse it.
2327 @example
2328 atrim=end=5,areverse
2329 @end example
2330 @end itemize
2331
2332 @section arnndn
2333
2334 Reduce noise from speech using Recurrent Neural Networks.
2335
2336 This filter accepts the following options:
2337
2338 @table @option
2339 @item model, m
2340 Set train model file to load. This option is always required.
2341
2342 @item mix
2343 Set how much to mix filtered samples into final output.
2344 Allowed range is from -1 to 1. Default value is 1.
2345 Negative values are special, they set how much to keep filtered noise
2346 in the final filter output. Set this option to -1 to hear actual
2347 noise removed from input signal.
2348 @end table
2349
2350 @section asetnsamples
2351
2352 Set the number of samples per each output audio frame.
2353
2354 The last output packet may contain a different number of samples, as
2355 the filter will flush all the remaining samples when the input audio
2356 signals its end.
2357
2358 The filter accepts the following options:
2359
2360 @table @option
2361
2362 @item nb_out_samples, n
2363 Set the number of frames per each output audio frame. The number is
2364 intended as the number of samples @emph{per each channel}.
2365 Default value is 1024.
2366
2367 @item pad, p
2368 If set to 1, the filter will pad the last audio frame with zeroes, so
2369 that the last frame will contain the same number of samples as the
2370 previous ones. Default value is 1.
2371 @end table
2372
2373 For example, to set the number of per-frame samples to 1234 and
2374 disable padding for the last frame, use:
2375 @example
2376 asetnsamples=n=1234:p=0
2377 @end example
2378
2379 @section asetrate
2380
2381 Set the sample rate without altering the PCM data.
2382 This will result in a change of speed and pitch.
2383
2384 The filter accepts the following options:
2385
2386 @table @option
2387 @item sample_rate, r
2388 Set the output sample rate. Default is 44100 Hz.
2389 @end table
2390
2391 @section ashowinfo
2392
2393 Show a line containing various information for each input audio frame.
2394 The input audio is not modified.
2395
2396 The shown line contains a sequence of key/value pairs of the form
2397 @var{key}:@var{value}.
2398
2399 The following values are shown in the output:
2400
2401 @table @option
2402 @item n
2403 The (sequential) number of the input frame, starting from 0.
2404
2405 @item pts
2406 The presentation timestamp of the input frame, in time base units; the time base
2407 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2408
2409 @item pts_time
2410 The presentation timestamp of the input frame in seconds.
2411
2412 @item pos
2413 position of the frame in the input stream, -1 if this information in
2414 unavailable and/or meaningless (for example in case of synthetic audio)
2415
2416 @item fmt
2417 The sample format.
2418
2419 @item chlayout
2420 The channel layout.
2421
2422 @item rate
2423 The sample rate for the audio frame.
2424
2425 @item nb_samples
2426 The number of samples (per channel) in the frame.
2427
2428 @item checksum
2429 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2430 audio, the data is treated as if all the planes were concatenated.
2431
2432 @item plane_checksums
2433 A list of Adler-32 checksums for each data plane.
2434 @end table
2435
2436 @section asoftclip
2437 Apply audio soft clipping.
2438
2439 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2440 along a smooth curve, rather than the abrupt shape of hard-clipping.
2441
2442 This filter accepts the following options:
2443
2444 @table @option
2445 @item type
2446 Set type of soft-clipping.
2447
2448 It accepts the following values:
2449 @table @option
2450 @item hard
2451 @item tanh
2452 @item atan
2453 @item cubic
2454 @item exp
2455 @item alg
2456 @item quintic
2457 @item sin
2458 @item erf
2459 @end table
2460
2461 @item threshold
2462 Set threshold from where to start clipping. Default value is 0dB or 1.
2463
2464 @item output
2465 Set gain applied to output. Default value is 0dB or 1.
2466
2467 @item param
2468 Set additional parameter which controls sigmoid function.
2469
2470 @item oversample
2471 Set oversampling factor.
2472 @end table
2473
2474 @subsection Commands
2475
2476 This filter supports the all above options as @ref{commands}.
2477
2478 @section asr
2479 Automatic Speech Recognition
2480
2481 This filter uses PocketSphinx for speech recognition. To enable
2482 compilation of this filter, you need to configure FFmpeg with
2483 @code{--enable-pocketsphinx}.
2484
2485 It accepts the following options:
2486
2487 @table @option
2488 @item rate
2489 Set sampling rate of input audio. Defaults is @code{16000}.
2490 This need to match speech models, otherwise one will get poor results.
2491
2492 @item hmm
2493 Set dictionary containing acoustic model files.
2494
2495 @item dict
2496 Set pronunciation dictionary.
2497
2498 @item lm
2499 Set language model file.
2500
2501 @item lmctl
2502 Set language model set.
2503
2504 @item lmname
2505 Set which language model to use.
2506
2507 @item logfn
2508 Set output for log messages.
2509 @end table
2510
2511 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2512
2513 @anchor{astats}
2514 @section astats
2515
2516 Display time domain statistical information about the audio channels.
2517 Statistics are calculated and displayed for each audio channel and,
2518 where applicable, an overall figure is also given.
2519
2520 It accepts the following option:
2521 @table @option
2522 @item length
2523 Short window length in seconds, used for peak and trough RMS measurement.
2524 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2525
2526 @item metadata
2527
2528 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2529 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2530 disabled.
2531
2532 Available keys for each channel are:
2533 DC_offset
2534 Min_level
2535 Max_level
2536 Min_difference
2537 Max_difference
2538 Mean_difference
2539 RMS_difference
2540 Peak_level
2541 RMS_peak
2542 RMS_trough
2543 Crest_factor
2544 Flat_factor
2545 Peak_count
2546 Noise_floor
2547 Noise_floor_count
2548 Bit_depth
2549 Dynamic_range
2550 Zero_crossings
2551 Zero_crossings_rate
2552 Number_of_NaNs
2553 Number_of_Infs
2554 Number_of_denormals
2555
2556 and for Overall:
2557 DC_offset
2558 Min_level
2559 Max_level
2560 Min_difference
2561 Max_difference
2562 Mean_difference
2563 RMS_difference
2564 Peak_level
2565 RMS_level
2566 RMS_peak
2567 RMS_trough
2568 Flat_factor
2569 Peak_count
2570 Noise_floor
2571 Noise_floor_count
2572 Bit_depth
2573 Number_of_samples
2574 Number_of_NaNs
2575 Number_of_Infs
2576 Number_of_denormals
2577
2578 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2579 this @code{lavfi.astats.Overall.Peak_count}.
2580
2581 For description what each key means read below.
2582
2583 @item reset
2584 Set number of frame after which stats are going to be recalculated.
2585 Default is disabled.
2586
2587 @item measure_perchannel
2588 Select the entries which need to be measured per channel. The metadata keys can
2589 be used as flags, default is @option{all} which measures everything.
2590 @option{none} disables all per channel measurement.
2591
2592 @item measure_overall
2593 Select the entries which need to be measured overall. The metadata keys can
2594 be used as flags, default is @option{all} which measures everything.
2595 @option{none} disables all overall measurement.
2596
2597 @end table
2598
2599 A description of each shown parameter follows:
2600
2601 @table @option
2602 @item DC offset
2603 Mean amplitude displacement from zero.
2604
2605 @item Min level
2606 Minimal sample level.
2607
2608 @item Max level
2609 Maximal sample level.
2610
2611 @item Min difference
2612 Minimal difference between two consecutive samples.
2613
2614 @item Max difference
2615 Maximal difference between two consecutive samples.
2616
2617 @item Mean difference
2618 Mean difference between two consecutive samples.
2619 The average of each difference between two consecutive samples.
2620
2621 @item RMS difference
2622 Root Mean Square difference between two consecutive samples.
2623
2624 @item Peak level dB
2625 @item RMS level dB
2626 Standard peak and RMS level measured in dBFS.
2627
2628 @item RMS peak dB
2629 @item RMS trough dB
2630 Peak and trough values for RMS level measured over a short window.
2631
2632 @item Crest factor
2633 Standard ratio of peak to RMS level (note: not in dB).
2634
2635 @item Flat factor
2636 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2637 (i.e. either @var{Min level} or @var{Max level}).
2638
2639 @item Peak count
2640 Number of occasions (not the number of samples) that the signal attained either
2641 @var{Min level} or @var{Max level}.
2642
2643 @item Noise floor dB
2644 Minimum local peak measured in dBFS over a short window.
2645
2646 @item Noise floor count
2647 Number of occasions (not the number of samples) that the signal attained
2648 @var{Noise floor}.
2649
2650 @item Bit depth
2651 Overall bit depth of audio. Number of bits used for each sample.
2652
2653 @item Dynamic range
2654 Measured dynamic range of audio in dB.
2655
2656 @item Zero crossings
2657 Number of points where the waveform crosses the zero level axis.
2658
2659 @item Zero crossings rate
2660 Rate of Zero crossings and number of audio samples.
2661 @end table
2662
2663 @section asubboost
2664 Boost subwoofer frequencies.
2665
2666 The filter accepts the following options:
2667
2668 @table @option
2669 @item dry
2670 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2671 Default value is 0.7.
2672
2673 @item wet
2674 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2675 Default value is 0.7.
2676
2677 @item decay
2678 Set delay line decay gain value. Allowed range is from 0 to 1.
2679 Default value is 0.7.
2680
2681 @item feedback
2682 Set delay line feedback gain value. Allowed range is from 0 to 1.
2683 Default value is 0.9.
2684
2685 @item cutoff
2686 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2687 Default value is 100.
2688
2689 @item slope
2690 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2691 Default value is 0.5.
2692
2693 @item delay
2694 Set delay. Allowed range is from 1 to 100.
2695 Default value is 20.
2696 @end table
2697
2698 @subsection Commands
2699
2700 This filter supports the all above options as @ref{commands}.
2701
2702 @section asubcut
2703 Cut subwoofer frequencies.
2704
2705 This filter allows to set custom, steeper
2706 roll off than highpass filter, and thus is able to more attenuate
2707 frequency content in stop-band.
2708
2709 The filter accepts the following options:
2710
2711 @table @option
2712 @item cutoff
2713 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2714 Default value is 20.
2715
2716 @item order
2717 Set filter order. Available values are from 3 to 20.
2718 Default value is 10.
2719
2720 @item level
2721 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2722 @end table
2723
2724 @subsection Commands
2725
2726 This filter supports the all above options as @ref{commands}.
2727
2728 @section asupercut
2729 Cut super frequencies.
2730
2731 The filter accepts the following options:
2732
2733 @table @option
2734 @item cutoff
2735 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2736 Default value is 20000.
2737
2738 @item order
2739 Set filter order. Available values are from 3 to 20.
2740 Default value is 10.
2741
2742 @item level
2743 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2744 @end table
2745
2746 @subsection Commands
2747
2748 This filter supports the all above options as @ref{commands}.
2749
2750 @section asuperpass
2751 Apply high order Butterworth band-pass filter.
2752
2753 The filter accepts the following options:
2754
2755 @table @option
2756 @item centerf
2757 Set center frequency in Hertz. Allowed range is 2 to 999999.
2758 Default value is 1000.
2759
2760 @item order
2761 Set filter order. Available values are from 4 to 20.
2762 Default value is 4.
2763
2764 @item qfactor
2765 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2766
2767 @item level
2768 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2769 @end table
2770
2771 @subsection Commands
2772
2773 This filter supports the all above options as @ref{commands}.
2774
2775 @section asuperstop
2776 Apply high order Butterworth band-stop filter.
2777
2778 The filter accepts the following options:
2779
2780 @table @option
2781 @item centerf
2782 Set center frequency in Hertz. Allowed range is 2 to 999999.
2783 Default value is 1000.
2784
2785 @item order
2786 Set filter order. Available values are from 4 to 20.
2787 Default value is 4.
2788
2789 @item qfactor
2790 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2791
2792 @item level
2793 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2794 @end table
2795
2796 @subsection Commands
2797
2798 This filter supports the all above options as @ref{commands}.
2799
2800 @section atempo
2801
2802 Adjust audio tempo.
2803
2804 The filter accepts exactly one parameter, the audio tempo. If not
2805 specified then the filter will assume nominal 1.0 tempo. Tempo must
2806 be in the [0.5, 100.0] range.
2807
2808 Note that tempo greater than 2 will skip some samples rather than
2809 blend them in.  If for any reason this is a concern it is always
2810 possible to daisy-chain several instances of atempo to achieve the
2811 desired product tempo.
2812
2813 @subsection Examples
2814
2815 @itemize
2816 @item
2817 Slow down audio to 80% tempo:
2818 @example
2819 atempo=0.8
2820 @end example
2821
2822 @item
2823 To speed up audio to 300% tempo:
2824 @example
2825 atempo=3
2826 @end example
2827
2828 @item
2829 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2830 @example
2831 atempo=sqrt(3),atempo=sqrt(3)
2832 @end example
2833 @end itemize
2834
2835 @subsection Commands
2836
2837 This filter supports the following commands:
2838 @table @option
2839 @item tempo
2840 Change filter tempo scale factor.
2841 Syntax for the command is : "@var{tempo}"
2842 @end table
2843
2844 @section atrim
2845
2846 Trim the input so that the output contains one continuous subpart of the input.
2847
2848 It accepts the following parameters:
2849 @table @option
2850 @item start
2851 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2852 sample with the timestamp @var{start} will be the first sample in the output.
2853
2854 @item end
2855 Specify time of the first audio sample that will be dropped, i.e. the
2856 audio sample immediately preceding the one with the timestamp @var{end} will be
2857 the last sample in the output.
2858
2859 @item start_pts
2860 Same as @var{start}, except this option sets the start timestamp in samples
2861 instead of seconds.
2862
2863 @item end_pts
2864 Same as @var{end}, except this option sets the end timestamp in samples instead
2865 of seconds.
2866
2867 @item duration
2868 The maximum duration of the output in seconds.
2869
2870 @item start_sample
2871 The number of the first sample that should be output.
2872
2873 @item end_sample
2874 The number of the first sample that should be dropped.
2875 @end table
2876
2877 @option{start}, @option{end}, and @option{duration} are expressed as time
2878 duration specifications; see
2879 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2880
2881 Note that the first two sets of the start/end options and the @option{duration}
2882 option look at the frame timestamp, while the _sample options simply count the
2883 samples that pass through the filter. So start/end_pts and start/end_sample will
2884 give different results when the timestamps are wrong, inexact or do not start at
2885 zero. Also note that this filter does not modify the timestamps. If you wish
2886 to have the output timestamps start at zero, insert the asetpts filter after the
2887 atrim filter.
2888
2889 If multiple start or end options are set, this filter tries to be greedy and
2890 keep all samples that match at least one of the specified constraints. To keep
2891 only the part that matches all the constraints at once, chain multiple atrim
2892 filters.
2893
2894 The defaults are such that all the input is kept. So it is possible to set e.g.
2895 just the end values to keep everything before the specified time.
2896
2897 Examples:
2898 @itemize
2899 @item
2900 Drop everything except the second minute of input:
2901 @example
2902 ffmpeg -i INPUT -af atrim=60:120
2903 @end example
2904
2905 @item
2906 Keep only the first 1000 samples:
2907 @example
2908 ffmpeg -i INPUT -af atrim=end_sample=1000
2909 @end example
2910
2911 @end itemize
2912
2913 @section axcorrelate
2914 Calculate normalized cross-correlation between two input audio streams.
2915
2916 Resulted samples are always between -1 and 1 inclusive.
2917 If result is 1 it means two input samples are highly correlated in that selected segment.
2918 Result 0 means they are not correlated at all.
2919 If result is -1 it means two input samples are out of phase, which means they cancel each
2920 other.
2921
2922 The filter accepts the following options:
2923
2924 @table @option
2925 @item size
2926 Set size of segment over which cross-correlation is calculated.
2927 Default is 256. Allowed range is from 2 to 131072.
2928
2929 @item algo
2930 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2931 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2932 are always zero and thus need much less calculations to make.
2933 This is generally not true, but is valid for typical audio streams.
2934 @end table
2935
2936 @subsection Examples
2937
2938 @itemize
2939 @item
2940 Calculate correlation between channels in stereo audio stream:
2941 @example
2942 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2943 @end example
2944 @end itemize
2945
2946 @section bandpass
2947
2948 Apply a two-pole Butterworth band-pass filter with central
2949 frequency @var{frequency}, and (3dB-point) band-width width.
2950 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2951 instead of the default: constant 0dB peak gain.
2952 The filter roll off at 6dB per octave (20dB per decade).
2953
2954 The filter accepts the following options:
2955
2956 @table @option
2957 @item frequency, f
2958 Set the filter's central frequency. Default is @code{3000}.
2959
2960 @item csg
2961 Constant skirt gain if set to 1. Defaults to 0.
2962
2963 @item width_type, t
2964 Set method to specify band-width of filter.
2965 @table @option
2966 @item h
2967 Hz
2968 @item q
2969 Q-Factor
2970 @item o
2971 octave
2972 @item s
2973 slope
2974 @item k
2975 kHz
2976 @end table
2977
2978 @item width, w
2979 Specify the band-width of a filter in width_type units.
2980
2981 @item mix, m
2982 How much to use filtered signal in output. Default is 1.
2983 Range is between 0 and 1.
2984
2985 @item channels, c
2986 Specify which channels to filter, by default all available are filtered.
2987
2988 @item normalize, n
2989 Normalize biquad coefficients, by default is disabled.
2990 Enabling it will normalize magnitude response at DC to 0dB.
2991
2992 @item transform, a
2993 Set transform type of IIR filter.
2994 @table @option
2995 @item di
2996 @item dii
2997 @item tdii
2998 @item latt
2999 @end table
3000
3001 @item precision, r
3002 Set precison of filtering.
3003 @table @option
3004 @item auto
3005 Pick automatic sample format depending on surround filters.
3006 @item s16
3007 Always use signed 16-bit.
3008 @item s32
3009 Always use signed 32-bit.
3010 @item f32
3011 Always use float 32-bit.
3012 @item f64
3013 Always use float 64-bit.
3014 @end table
3015 @end table
3016
3017 @subsection Commands
3018
3019 This filter supports the following commands:
3020 @table @option
3021 @item frequency, f
3022 Change bandpass frequency.
3023 Syntax for the command is : "@var{frequency}"
3024
3025 @item width_type, t
3026 Change bandpass width_type.
3027 Syntax for the command is : "@var{width_type}"
3028
3029 @item width, w
3030 Change bandpass width.
3031 Syntax for the command is : "@var{width}"
3032
3033 @item mix, m
3034 Change bandpass mix.
3035 Syntax for the command is : "@var{mix}"
3036 @end table
3037
3038 @section bandreject
3039
3040 Apply a two-pole Butterworth band-reject filter with central
3041 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3042 The filter roll off at 6dB per octave (20dB per decade).
3043
3044 The filter accepts the following options:
3045
3046 @table @option
3047 @item frequency, f
3048 Set the filter's central frequency. Default is @code{3000}.
3049
3050 @item width_type, t
3051 Set method to specify band-width of filter.
3052 @table @option
3053 @item h
3054 Hz
3055 @item q
3056 Q-Factor
3057 @item o
3058 octave
3059 @item s
3060 slope
3061 @item k
3062 kHz
3063 @end table
3064
3065 @item width, w
3066 Specify the band-width of a filter in width_type units.
3067
3068 @item mix, m
3069 How much to use filtered signal in output. Default is 1.
3070 Range is between 0 and 1.
3071
3072 @item channels, c
3073 Specify which channels to filter, by default all available are filtered.
3074
3075 @item normalize, n
3076 Normalize biquad coefficients, by default is disabled.
3077 Enabling it will normalize magnitude response at DC to 0dB.
3078
3079 @item transform, a
3080 Set transform type of IIR filter.
3081 @table @option
3082 @item di
3083 @item dii
3084 @item tdii
3085 @item latt
3086 @end table
3087
3088 @item precision, r
3089 Set precison of filtering.
3090 @table @option
3091 @item auto
3092 Pick automatic sample format depending on surround filters.
3093 @item s16
3094 Always use signed 16-bit.
3095 @item s32
3096 Always use signed 32-bit.
3097 @item f32
3098 Always use float 32-bit.
3099 @item f64
3100 Always use float 64-bit.
3101 @end table
3102 @end table
3103
3104 @subsection Commands
3105
3106 This filter supports the following commands:
3107 @table @option
3108 @item frequency, f
3109 Change bandreject frequency.
3110 Syntax for the command is : "@var{frequency}"
3111
3112 @item width_type, t
3113 Change bandreject width_type.
3114 Syntax for the command is : "@var{width_type}"
3115
3116 @item width, w
3117 Change bandreject width.
3118 Syntax for the command is : "@var{width}"
3119
3120 @item mix, m
3121 Change bandreject mix.
3122 Syntax for the command is : "@var{mix}"
3123 @end table
3124
3125 @section bass, lowshelf
3126
3127 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3128 shelving filter with a response similar to that of a standard
3129 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3130
3131 The filter accepts the following options:
3132
3133 @table @option
3134 @item gain, g
3135 Give the gain at 0 Hz. Its useful range is about -20
3136 (for a large cut) to +20 (for a large boost).
3137 Beware of clipping when using a positive gain.
3138
3139 @item frequency, f
3140 Set the filter's central frequency and so can be used
3141 to extend or reduce the frequency range to be boosted or cut.
3142 The default value is @code{100} Hz.
3143
3144 @item width_type, t
3145 Set method to specify band-width of filter.
3146 @table @option
3147 @item h
3148 Hz
3149 @item q
3150 Q-Factor
3151 @item o
3152 octave
3153 @item s
3154 slope
3155 @item k
3156 kHz
3157 @end table
3158
3159 @item width, w
3160 Determine how steep is the filter's shelf transition.
3161
3162 @item poles, p
3163 Set number of poles. Default is 2.
3164
3165 @item mix, m
3166 How much to use filtered signal in output. Default is 1.
3167 Range is between 0 and 1.
3168
3169 @item channels, c
3170 Specify which channels to filter, by default all available are filtered.
3171
3172 @item normalize, n
3173 Normalize biquad coefficients, by default is disabled.
3174 Enabling it will normalize magnitude response at DC to 0dB.
3175
3176 @item transform, a
3177 Set transform type of IIR filter.
3178 @table @option
3179 @item di
3180 @item dii
3181 @item tdii
3182 @item latt
3183 @end table
3184
3185 @item precision, r
3186 Set precison of filtering.
3187 @table @option
3188 @item auto
3189 Pick automatic sample format depending on surround filters.
3190 @item s16
3191 Always use signed 16-bit.
3192 @item s32
3193 Always use signed 32-bit.
3194 @item f32
3195 Always use float 32-bit.
3196 @item f64
3197 Always use float 64-bit.
3198 @end table
3199 @end table
3200
3201 @subsection Commands
3202
3203 This filter supports the following commands:
3204 @table @option
3205 @item frequency, f
3206 Change bass frequency.
3207 Syntax for the command is : "@var{frequency}"
3208
3209 @item width_type, t
3210 Change bass width_type.
3211 Syntax for the command is : "@var{width_type}"
3212
3213 @item width, w
3214 Change bass width.
3215 Syntax for the command is : "@var{width}"
3216
3217 @item gain, g
3218 Change bass gain.
3219 Syntax for the command is : "@var{gain}"
3220
3221 @item mix, m
3222 Change bass mix.
3223 Syntax for the command is : "@var{mix}"
3224 @end table
3225
3226 @section biquad
3227
3228 Apply a biquad IIR filter with the given coefficients.
3229 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3230 are the numerator and denominator coefficients respectively.
3231 and @var{channels}, @var{c} specify which channels to filter, by default all
3232 available are filtered.
3233
3234 @subsection Commands
3235
3236 This filter supports the following commands:
3237 @table @option
3238 @item a0
3239 @item a1
3240 @item a2
3241 @item b0
3242 @item b1
3243 @item b2
3244 Change biquad parameter.
3245 Syntax for the command is : "@var{value}"
3246
3247 @item mix, m
3248 How much to use filtered signal in output. Default is 1.
3249 Range is between 0 and 1.
3250
3251 @item channels, c
3252 Specify which channels to filter, by default all available are filtered.
3253
3254 @item normalize, n
3255 Normalize biquad coefficients, by default is disabled.
3256 Enabling it will normalize magnitude response at DC to 0dB.
3257
3258 @item transform, a
3259 Set transform type of IIR filter.
3260 @table @option
3261 @item di
3262 @item dii
3263 @item tdii
3264 @item latt
3265 @end table
3266
3267 @item precision, r
3268 Set precison of filtering.
3269 @table @option
3270 @item auto
3271 Pick automatic sample format depending on surround filters.
3272 @item s16
3273 Always use signed 16-bit.
3274 @item s32
3275 Always use signed 32-bit.
3276 @item f32
3277 Always use float 32-bit.
3278 @item f64
3279 Always use float 64-bit.
3280 @end table
3281 @end table
3282
3283 @section bs2b
3284 Bauer stereo to binaural transformation, which improves headphone listening of
3285 stereo audio records.
3286
3287 To enable compilation of this filter you need to configure FFmpeg with
3288 @code{--enable-libbs2b}.
3289
3290 It accepts the following parameters:
3291 @table @option
3292
3293 @item profile
3294 Pre-defined crossfeed level.
3295 @table @option
3296
3297 @item default
3298 Default level (fcut=700, feed=50).
3299
3300 @item cmoy
3301 Chu Moy circuit (fcut=700, feed=60).
3302
3303 @item jmeier
3304 Jan Meier circuit (fcut=650, feed=95).
3305
3306 @end table
3307
3308 @item fcut
3309 Cut frequency (in Hz).
3310
3311 @item feed
3312 Feed level (in Hz).
3313
3314 @end table
3315
3316 @section channelmap
3317
3318 Remap input channels to new locations.
3319
3320 It accepts the following parameters:
3321 @table @option
3322 @item map
3323 Map channels from input to output. The argument is a '|'-separated list of
3324 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3325 @var{in_channel} form. @var{in_channel} can be either the name of the input
3326 channel (e.g. FL for front left) or its index in the input channel layout.
3327 @var{out_channel} is the name of the output channel or its index in the output
3328 channel layout. If @var{out_channel} is not given then it is implicitly an
3329 index, starting with zero and increasing by one for each mapping.
3330
3331 @item channel_layout
3332 The channel layout of the output stream.
3333 @end table
3334
3335 If no mapping is present, the filter will implicitly map input channels to
3336 output channels, preserving indices.
3337
3338 @subsection Examples
3339
3340 @itemize
3341 @item
3342 For example, assuming a 5.1+downmix input MOV file,
3343 @example
3344 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3345 @end example
3346 will create an output WAV file tagged as stereo from the downmix channels of
3347 the input.
3348
3349 @item
3350 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3351 @example
3352 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3353 @end example
3354 @end itemize
3355
3356 @section channelsplit
3357
3358 Split each channel from an input audio stream into a separate output stream.
3359
3360 It accepts the following parameters:
3361 @table @option
3362 @item channel_layout
3363 The channel layout of the input stream. The default is "stereo".
3364 @item channels
3365 A channel layout describing the channels to be extracted as separate output streams
3366 or "all" to extract each input channel as a separate stream. The default is "all".
3367
3368 Choosing channels not present in channel layout in the input will result in an error.
3369 @end table
3370
3371 @subsection Examples
3372
3373 @itemize
3374 @item
3375 For example, assuming a stereo input MP3 file,
3376 @example
3377 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3378 @end example
3379 will create an output Matroska file with two audio streams, one containing only
3380 the left channel and the other the right channel.
3381
3382 @item
3383 Split a 5.1 WAV file into per-channel files:
3384 @example
3385 ffmpeg -i in.wav -filter_complex
3386 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3387 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3388 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3389 side_right.wav
3390 @end example
3391
3392 @item
3393 Extract only LFE from a 5.1 WAV file:
3394 @example
3395 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3396 -map '[LFE]' lfe.wav
3397 @end example
3398 @end itemize
3399
3400 @section chorus
3401 Add a chorus effect to the audio.
3402
3403 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3404
3405 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3406 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3407 The modulation depth defines the range the modulated delay is played before or after
3408 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3409 sound tuned around the original one, like in a chorus where some vocals are slightly
3410 off key.
3411
3412 It accepts the following parameters:
3413 @table @option
3414 @item in_gain
3415 Set input gain. Default is 0.4.
3416
3417 @item out_gain
3418 Set output gain. Default is 0.4.
3419
3420 @item delays
3421 Set delays. A typical delay is around 40ms to 60ms.
3422
3423 @item decays
3424 Set decays.
3425
3426 @item speeds
3427 Set speeds.
3428
3429 @item depths
3430 Set depths.
3431 @end table
3432
3433 @subsection Examples
3434
3435 @itemize
3436 @item
3437 A single delay:
3438 @example
3439 chorus=0.7:0.9:55:0.4:0.25:2
3440 @end example
3441
3442 @item
3443 Two delays:
3444 @example
3445 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3446 @end example
3447
3448 @item
3449 Fuller sounding chorus with three delays:
3450 @example
3451 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
3452 @end example
3453 @end itemize
3454
3455 @section compand
3456 Compress or expand the audio's dynamic range.
3457
3458 It accepts the following parameters:
3459
3460 @table @option
3461
3462 @item attacks
3463 @item decays
3464 A list of times in seconds for each channel over which the instantaneous level
3465 of the input signal is averaged to determine its volume. @var{attacks} refers to
3466 increase of volume and @var{decays} refers to decrease of volume. For most
3467 situations, the attack time (response to the audio getting louder) should be
3468 shorter than the decay time, because the human ear is more sensitive to sudden
3469 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3470 a typical value for decay is 0.8 seconds.
3471 If specified number of attacks & decays is lower than number of channels, the last
3472 set attack/decay will be used for all remaining channels.
3473
3474 @item points
3475 A list of points for the transfer function, specified in dB relative to the
3476 maximum possible signal amplitude. Each key points list must be defined using
3477 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3478 @code{x0/y0 x1/y1 x2/y2 ....}
3479
3480 The input values must be in strictly increasing order but the transfer function
3481 does not have to be monotonically rising. The point @code{0/0} is assumed but
3482 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3483 function are @code{-70/-70|-60/-20|1/0}.
3484
3485 @item soft-knee
3486 Set the curve radius in dB for all joints. It defaults to 0.01.
3487
3488 @item gain
3489 Set the additional gain in dB to be applied at all points on the transfer
3490 function. This allows for easy adjustment of the overall gain.
3491 It defaults to 0.
3492
3493 @item volume
3494 Set an initial volume, in dB, to be assumed for each channel when filtering
3495 starts. This permits the user to supply a nominal level initially, so that, for
3496 example, a very large gain is not applied to initial signal levels before the
3497 companding has begun to operate. A typical value for audio which is initially
3498 quiet is -90 dB. It defaults to 0.
3499
3500 @item delay
3501 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3502 delayed before being fed to the volume adjuster. Specifying a delay
3503 approximately equal to the attack/decay times allows the filter to effectively
3504 operate in predictive rather than reactive mode. It defaults to 0.
3505
3506 @end table
3507
3508 @subsection Examples
3509
3510 @itemize
3511 @item
3512 Make music with both quiet and loud passages suitable for listening to in a
3513 noisy environment:
3514 @example
3515 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3516 @end example
3517
3518 Another example for audio with whisper and explosion parts:
3519 @example
3520 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3521 @end example
3522
3523 @item
3524 A noise gate for when the noise is at a lower level than the signal:
3525 @example
3526 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3527 @end example
3528
3529 @item
3530 Here is another noise gate, this time for when the noise is at a higher level
3531 than the signal (making it, in some ways, similar to squelch):
3532 @example
3533 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3534 @end example
3535
3536 @item
3537 2:1 compression starting at -6dB:
3538 @example
3539 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3540 @end example
3541
3542 @item
3543 2:1 compression starting at -9dB:
3544 @example
3545 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3546 @end example
3547
3548 @item
3549 2:1 compression starting at -12dB:
3550 @example
3551 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3552 @end example
3553
3554 @item
3555 2:1 compression starting at -18dB:
3556 @example
3557 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3558 @end example
3559
3560 @item
3561 3:1 compression starting at -15dB:
3562 @example
3563 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3564 @end example
3565
3566 @item
3567 Compressor/Gate:
3568 @example
3569 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3570 @end example
3571
3572 @item
3573 Expander:
3574 @example
3575 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
3576 @end example
3577
3578 @item
3579 Hard limiter at -6dB:
3580 @example
3581 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3582 @end example
3583
3584 @item
3585 Hard limiter at -12dB:
3586 @example
3587 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3588 @end example
3589
3590 @item
3591 Hard noise gate at -35 dB:
3592 @example
3593 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3594 @end example
3595
3596 @item
3597 Soft limiter:
3598 @example
3599 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3600 @end example
3601 @end itemize
3602
3603 @section compensationdelay
3604
3605 Compensation Delay Line is a metric based delay to compensate differing
3606 positions of microphones or speakers.
3607
3608 For example, you have recorded guitar with two microphones placed in
3609 different locations. Because the front of sound wave has fixed speed in
3610 normal conditions, the phasing of microphones can vary and depends on
3611 their location and interposition. The best sound mix can be achieved when
3612 these microphones are in phase (synchronized). Note that a distance of
3613 ~30 cm between microphones makes one microphone capture the signal in
3614 antiphase to the other microphone. That makes the final mix sound moody.
3615 This filter helps to solve phasing problems by adding different delays
3616 to each microphone track and make them synchronized.
3617
3618 The best result can be reached when you take one track as base and
3619 synchronize other tracks one by one with it.
3620 Remember that synchronization/delay tolerance depends on sample rate, too.
3621 Higher sample rates will give more tolerance.
3622
3623 The filter accepts the following parameters:
3624
3625 @table @option
3626 @item mm
3627 Set millimeters distance. This is compensation distance for fine tuning.
3628 Default is 0.
3629
3630 @item cm
3631 Set cm distance. This is compensation distance for tightening distance setup.
3632 Default is 0.
3633
3634 @item m
3635 Set meters distance. This is compensation distance for hard distance setup.
3636 Default is 0.
3637
3638 @item dry
3639 Set dry amount. Amount of unprocessed (dry) signal.
3640 Default is 0.
3641
3642 @item wet
3643 Set wet amount. Amount of processed (wet) signal.
3644 Default is 1.
3645
3646 @item temp
3647 Set temperature in degrees Celsius. This is the temperature of the environment.
3648 Default is 20.
3649 @end table
3650
3651 @section crossfeed
3652 Apply headphone crossfeed filter.
3653
3654 Crossfeed is the process of blending the left and right channels of stereo
3655 audio recording.
3656 It is mainly used to reduce extreme stereo separation of low frequencies.
3657
3658 The intent is to produce more speaker like sound to the listener.
3659
3660 The filter accepts the following options:
3661
3662 @table @option
3663 @item strength
3664 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3665 This sets gain of low shelf filter for side part of stereo image.
3666 Default is -6dB. Max allowed is -30db when strength is set to 1.
3667
3668 @item range
3669 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3670 This sets cut off frequency of low shelf filter. Default is cut off near
3671 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3672
3673 @item slope
3674 Set curve slope of low shelf filter. Default is 0.5.
3675 Allowed range is from 0.01 to 1.
3676
3677 @item level_in
3678 Set input gain. Default is 0.9.
3679
3680 @item level_out
3681 Set output gain. Default is 1.
3682 @end table
3683
3684 @subsection Commands
3685
3686 This filter supports the all above options as @ref{commands}.
3687
3688 @section crystalizer
3689 Simple algorithm for audio noise sharpening.
3690
3691 This filter linearly increases differences betweeen each audio sample.
3692
3693 The filter accepts the following options:
3694
3695 @table @option
3696 @item i
3697 Sets the intensity of effect (default: 2.0). Must be in range between -10.0 to 0
3698 (unchanged sound) to 10.0 (maximum effect).
3699 To inverse filtering use negative value.
3700
3701 @item c
3702 Enable clipping. By default is enabled.
3703 @end table
3704
3705 @subsection Commands
3706
3707 This filter supports the all above options as @ref{commands}.
3708
3709 @section dcshift
3710 Apply a DC shift to the audio.
3711
3712 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3713 in the recording chain) from the audio. The effect of a DC offset is reduced
3714 headroom and hence volume. The @ref{astats} filter can be used to determine if
3715 a signal has a DC offset.
3716
3717 @table @option
3718 @item shift
3719 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3720 the audio.
3721
3722 @item limitergain
3723 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3724 used to prevent clipping.
3725 @end table
3726
3727 @section deesser
3728
3729 Apply de-essing to the audio samples.
3730
3731 @table @option
3732 @item i
3733 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3734 Default is 0.
3735
3736 @item m
3737 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3738 Default is 0.5.
3739
3740 @item f
3741 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3742 Default is 0.5.
3743
3744 @item s
3745 Set the output mode.
3746
3747 It accepts the following values:
3748 @table @option
3749 @item i
3750 Pass input unchanged.
3751
3752 @item o
3753 Pass ess filtered out.
3754
3755 @item e
3756 Pass only ess.
3757
3758 Default value is @var{o}.
3759 @end table
3760
3761 @end table
3762
3763 @section drmeter
3764 Measure audio dynamic range.
3765
3766 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3767 is found in transition material. And anything less that 8 have very poor dynamics
3768 and is very compressed.
3769
3770 The filter accepts the following options:
3771
3772 @table @option
3773 @item length
3774 Set window length in seconds used to split audio into segments of equal length.
3775 Default is 3 seconds.
3776 @end table
3777
3778 @section dynaudnorm
3779 Dynamic Audio Normalizer.
3780
3781 This filter applies a certain amount of gain to the input audio in order
3782 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3783 contrast to more "simple" normalization algorithms, the Dynamic Audio
3784 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3785 This allows for applying extra gain to the "quiet" sections of the audio
3786 while avoiding distortions or clipping the "loud" sections. In other words:
3787 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3788 sections, in the sense that the volume of each section is brought to the
3789 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3790 this goal *without* applying "dynamic range compressing". It will retain 100%
3791 of the dynamic range *within* each section of the audio file.
3792
3793 @table @option
3794 @item framelen, f
3795 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3796 Default is 500 milliseconds.
3797 The Dynamic Audio Normalizer processes the input audio in small chunks,
3798 referred to as frames. This is required, because a peak magnitude has no
3799 meaning for just a single sample value. Instead, we need to determine the
3800 peak magnitude for a contiguous sequence of sample values. While a "standard"
3801 normalizer would simply use the peak magnitude of the complete file, the
3802 Dynamic Audio Normalizer determines the peak magnitude individually for each
3803 frame. The length of a frame is specified in milliseconds. By default, the
3804 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3805 been found to give good results with most files.
3806 Note that the exact frame length, in number of samples, will be determined
3807 automatically, based on the sampling rate of the individual input audio file.
3808
3809 @item gausssize, g
3810 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3811 number. Default is 31.
3812 Probably the most important parameter of the Dynamic Audio Normalizer is the
3813 @code{window size} of the Gaussian smoothing filter. The filter's window size
3814 is specified in frames, centered around the current frame. For the sake of
3815 simplicity, this must be an odd number. Consequently, the default value of 31
3816 takes into account the current frame, as well as the 15 preceding frames and
3817 the 15 subsequent frames. Using a larger window results in a stronger
3818 smoothing effect and thus in less gain variation, i.e. slower gain
3819 adaptation. Conversely, using a smaller window results in a weaker smoothing
3820 effect and thus in more gain variation, i.e. faster gain adaptation.
3821 In other words, the more you increase this value, the more the Dynamic Audio
3822 Normalizer will behave like a "traditional" normalization filter. On the
3823 contrary, the more you decrease this value, the more the Dynamic Audio
3824 Normalizer will behave like a dynamic range compressor.
3825
3826 @item peak, p
3827 Set the target peak value. This specifies the highest permissible magnitude
3828 level for the normalized audio input. This filter will try to approach the
3829 target peak magnitude as closely as possible, but at the same time it also
3830 makes sure that the normalized signal will never exceed the peak magnitude.
3831 A frame's maximum local gain factor is imposed directly by the target peak
3832 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3833 It is not recommended to go above this value.
3834
3835 @item maxgain, m
3836 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3837 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3838 factor for each input frame, i.e. the maximum gain factor that does not
3839 result in clipping or distortion. The maximum gain factor is determined by
3840 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3841 additionally bounds the frame's maximum gain factor by a predetermined
3842 (global) maximum gain factor. This is done in order to avoid excessive gain
3843 factors in "silent" or almost silent frames. By default, the maximum gain
3844 factor is 10.0, For most inputs the default value should be sufficient and
3845 it usually is not recommended to increase this value. Though, for input
3846 with an extremely low overall volume level, it may be necessary to allow even
3847 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3848 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3849 Instead, a "sigmoid" threshold function will be applied. This way, the
3850 gain factors will smoothly approach the threshold value, but never exceed that
3851 value.
3852
3853 @item targetrms, r
3854 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3855 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3856 This means that the maximum local gain factor for each frame is defined
3857 (only) by the frame's highest magnitude sample. This way, the samples can
3858 be amplified as much as possible without exceeding the maximum signal
3859 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3860 Normalizer can also take into account the frame's root mean square,
3861 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3862 determine the power of a time-varying signal. It is therefore considered
3863 that the RMS is a better approximation of the "perceived loudness" than
3864 just looking at the signal's peak magnitude. Consequently, by adjusting all
3865 frames to a constant RMS value, a uniform "perceived loudness" can be
3866 established. If a target RMS value has been specified, a frame's local gain
3867 factor is defined as the factor that would result in exactly that RMS value.
3868 Note, however, that the maximum local gain factor is still restricted by the
3869 frame's highest magnitude sample, in order to prevent clipping.
3870
3871 @item coupling, n
3872 Enable channels coupling. By default is enabled.
3873 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3874 amount. This means the same gain factor will be applied to all channels, i.e.
3875 the maximum possible gain factor is determined by the "loudest" channel.
3876 However, in some recordings, it may happen that the volume of the different
3877 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3878 In this case, this option can be used to disable the channel coupling. This way,
3879 the gain factor will be determined independently for each channel, depending
3880 only on the individual channel's highest magnitude sample. This allows for
3881 harmonizing the volume of the different channels.
3882
3883 @item correctdc, c
3884 Enable DC bias correction. By default is disabled.
3885 An audio signal (in the time domain) is a sequence of sample values.
3886 In the Dynamic Audio Normalizer these sample values are represented in the
3887 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3888 audio signal, or "waveform", should be centered around the zero point.
3889 That means if we calculate the mean value of all samples in a file, or in a
3890 single frame, then the result should be 0.0 or at least very close to that
3891 value. If, however, there is a significant deviation of the mean value from
3892 0.0, in either positive or negative direction, this is referred to as a
3893 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3894 Audio Normalizer provides optional DC bias correction.
3895 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3896 the mean value, or "DC correction" offset, of each input frame and subtract
3897 that value from all of the frame's sample values which ensures those samples
3898 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3899 boundaries, the DC correction offset values will be interpolated smoothly
3900 between neighbouring frames.
3901
3902 @item altboundary, b
3903 Enable alternative boundary mode. By default is disabled.
3904 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3905 around each frame. This includes the preceding frames as well as the
3906 subsequent frames. However, for the "boundary" frames, located at the very
3907 beginning and at the very end of the audio file, not all neighbouring
3908 frames are available. In particular, for the first few frames in the audio
3909 file, the preceding frames are not known. And, similarly, for the last few
3910 frames in the audio file, the subsequent frames are not known. Thus, the
3911 question arises which gain factors should be assumed for the missing frames
3912 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3913 to deal with this situation. The default boundary mode assumes a gain factor
3914 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3915 "fade out" at the beginning and at the end of the input, respectively.
3916
3917 @item compress, s
3918 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3919 By default, the Dynamic Audio Normalizer does not apply "traditional"
3920 compression. This means that signal peaks will not be pruned and thus the
3921 full dynamic range will be retained within each local neighbourhood. However,
3922 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3923 normalization algorithm with a more "traditional" compression.
3924 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3925 (thresholding) function. If (and only if) the compression feature is enabled,
3926 all input frames will be processed by a soft knee thresholding function prior
3927 to the actual normalization process. Put simply, the thresholding function is
3928 going to prune all samples whose magnitude exceeds a certain threshold value.
3929 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3930 value. Instead, the threshold value will be adjusted for each individual
3931 frame.
3932 In general, smaller parameters result in stronger compression, and vice versa.
3933 Values below 3.0 are not recommended, because audible distortion may appear.
3934
3935 @item threshold, t
3936 Set the target threshold value. This specifies the lowest permissible
3937 magnitude level for the audio input which will be normalized.
3938 If input frame volume is above this value frame will be normalized.
3939 Otherwise frame may not be normalized at all. The default value is set
3940 to 0, which means all input frames will be normalized.
3941 This option is mostly useful if digital noise is not wanted to be amplified.
3942 @end table
3943
3944 @subsection Commands
3945
3946 This filter supports the all above options as @ref{commands}.
3947
3948 @section earwax
3949
3950 Make audio easier to listen to on headphones.
3951
3952 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3953 so that when listened to on headphones the stereo image is moved from
3954 inside your head (standard for headphones) to outside and in front of
3955 the listener (standard for speakers).
3956
3957 Ported from SoX.
3958
3959 @section equalizer
3960
3961 Apply a two-pole peaking equalisation (EQ) filter. With this
3962 filter, the signal-level at and around a selected frequency can
3963 be increased or decreased, whilst (unlike bandpass and bandreject
3964 filters) that at all other frequencies is unchanged.
3965
3966 In order to produce complex equalisation curves, this filter can
3967 be given several times, each with a different central frequency.
3968
3969 The filter accepts the following options:
3970
3971 @table @option
3972 @item frequency, f
3973 Set the filter's central frequency in Hz.
3974
3975 @item width_type, t
3976 Set method to specify band-width of filter.
3977 @table @option
3978 @item h
3979 Hz
3980 @item q
3981 Q-Factor
3982 @item o
3983 octave
3984 @item s
3985 slope
3986 @item k
3987 kHz
3988 @end table
3989
3990 @item width, w
3991 Specify the band-width of a filter in width_type units.
3992
3993 @item gain, g
3994 Set the required gain or attenuation in dB.
3995 Beware of clipping when using a positive gain.
3996
3997 @item mix, m
3998 How much to use filtered signal in output. Default is 1.
3999 Range is between 0 and 1.
4000
4001 @item channels, c
4002 Specify which channels to filter, by default all available are filtered.
4003
4004 @item normalize, n
4005 Normalize biquad coefficients, by default is disabled.
4006 Enabling it will normalize magnitude response at DC to 0dB.
4007
4008 @item transform, a
4009 Set transform type of IIR filter.
4010 @table @option
4011 @item di
4012 @item dii
4013 @item tdii
4014 @item latt
4015 @end table
4016
4017 @item precision, r
4018 Set precison of filtering.
4019 @table @option
4020 @item auto
4021 Pick automatic sample format depending on surround filters.
4022 @item s16
4023 Always use signed 16-bit.
4024 @item s32
4025 Always use signed 32-bit.
4026 @item f32
4027 Always use float 32-bit.
4028 @item f64
4029 Always use float 64-bit.
4030 @end table
4031 @end table
4032
4033 @subsection Examples
4034 @itemize
4035 @item
4036 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4037 @example
4038 equalizer=f=1000:t=h:width=200:g=-10
4039 @end example
4040
4041 @item
4042 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4043 @example
4044 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4045 @end example
4046 @end itemize
4047
4048 @subsection Commands
4049
4050 This filter supports the following commands:
4051 @table @option
4052 @item frequency, f
4053 Change equalizer frequency.
4054 Syntax for the command is : "@var{frequency}"
4055
4056 @item width_type, t
4057 Change equalizer width_type.
4058 Syntax for the command is : "@var{width_type}"
4059
4060 @item width, w
4061 Change equalizer width.
4062 Syntax for the command is : "@var{width}"
4063
4064 @item gain, g
4065 Change equalizer gain.
4066 Syntax for the command is : "@var{gain}"
4067
4068 @item mix, m
4069 Change equalizer mix.
4070 Syntax for the command is : "@var{mix}"
4071 @end table
4072
4073 @section extrastereo
4074
4075 Linearly increases the difference between left and right channels which
4076 adds some sort of "live" effect to playback.
4077
4078 The filter accepts the following options:
4079
4080 @table @option
4081 @item m
4082 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4083 (average of both channels), with 1.0 sound will be unchanged, with
4084 -1.0 left and right channels will be swapped.
4085
4086 @item c
4087 Enable clipping. By default is enabled.
4088 @end table
4089
4090 @subsection Commands
4091
4092 This filter supports the all above options as @ref{commands}.
4093
4094 @section firequalizer
4095 Apply FIR Equalization using arbitrary frequency response.
4096
4097 The filter accepts the following option:
4098
4099 @table @option
4100 @item gain
4101 Set gain curve equation (in dB). The expression can contain variables:
4102 @table @option
4103 @item f
4104 the evaluated frequency
4105 @item sr
4106 sample rate
4107 @item ch
4108 channel number, set to 0 when multichannels evaluation is disabled
4109 @item chid
4110 channel id, see libavutil/channel_layout.h, set to the first channel id when
4111 multichannels evaluation is disabled
4112 @item chs
4113 number of channels
4114 @item chlayout
4115 channel_layout, see libavutil/channel_layout.h
4116
4117 @end table
4118 and functions:
4119 @table @option
4120 @item gain_interpolate(f)
4121 interpolate gain on frequency f based on gain_entry
4122 @item cubic_interpolate(f)
4123 same as gain_interpolate, but smoother
4124 @end table
4125 This option is also available as command. Default is @code{gain_interpolate(f)}.
4126
4127 @item gain_entry
4128 Set gain entry for gain_interpolate function. The expression can
4129 contain functions:
4130 @table @option
4131 @item entry(f, g)
4132 store gain entry at frequency f with value g
4133 @end table
4134 This option is also available as command.
4135
4136 @item delay
4137 Set filter delay in seconds. Higher value means more accurate.
4138 Default is @code{0.01}.
4139
4140 @item accuracy
4141 Set filter accuracy in Hz. Lower value means more accurate.
4142 Default is @code{5}.
4143
4144 @item wfunc
4145 Set window function. Acceptable values are:
4146 @table @option
4147 @item rectangular
4148 rectangular window, useful when gain curve is already smooth
4149 @item hann
4150 hann window (default)
4151 @item hamming
4152 hamming window
4153 @item blackman
4154 blackman window
4155 @item nuttall3
4156 3-terms continuous 1st derivative nuttall window
4157 @item mnuttall3
4158 minimum 3-terms discontinuous nuttall window
4159 @item nuttall
4160 4-terms continuous 1st derivative nuttall window
4161 @item bnuttall
4162 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4163 @item bharris
4164 blackman-harris window
4165 @item tukey
4166 tukey window
4167 @end table
4168
4169 @item fixed
4170 If enabled, use fixed number of audio samples. This improves speed when
4171 filtering with large delay. Default is disabled.
4172
4173 @item multi
4174 Enable multichannels evaluation on gain. Default is disabled.
4175
4176 @item zero_phase
4177 Enable zero phase mode by subtracting timestamp to compensate delay.
4178 Default is disabled.
4179
4180 @item scale
4181 Set scale used by gain. Acceptable values are:
4182 @table @option
4183 @item linlin
4184 linear frequency, linear gain
4185 @item linlog
4186 linear frequency, logarithmic (in dB) gain (default)
4187 @item loglin
4188 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4189 @item loglog
4190 logarithmic frequency, logarithmic gain
4191 @end table
4192
4193 @item dumpfile
4194 Set file for dumping, suitable for gnuplot.
4195
4196 @item dumpscale
4197 Set scale for dumpfile. Acceptable values are same with scale option.
4198 Default is linlog.
4199
4200 @item fft2
4201 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4202 Default is disabled.
4203
4204 @item min_phase
4205 Enable minimum phase impulse response. Default is disabled.
4206 @end table
4207
4208 @subsection Examples
4209 @itemize
4210 @item
4211 lowpass at 1000 Hz:
4212 @example
4213 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4214 @end example
4215 @item
4216 lowpass at 1000 Hz with gain_entry:
4217 @example
4218 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4219 @end example
4220 @item
4221 custom equalization:
4222 @example
4223 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4224 @end example
4225 @item
4226 higher delay with zero phase to compensate delay:
4227 @example
4228 firequalizer=delay=0.1:fixed=on:zero_phase=on
4229 @end example
4230 @item
4231 lowpass on left channel, highpass on right channel:
4232 @example
4233 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4234 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4235 @end example
4236 @end itemize
4237
4238 @section flanger
4239 Apply a flanging effect to the audio.
4240
4241 The filter accepts the following options:
4242
4243 @table @option
4244 @item delay
4245 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4246
4247 @item depth
4248 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4249
4250 @item regen
4251 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4252 Default value is 0.
4253
4254 @item width
4255 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4256 Default value is 71.
4257
4258 @item speed
4259 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4260
4261 @item shape
4262 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4263 Default value is @var{sinusoidal}.
4264
4265 @item phase
4266 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4267 Default value is 25.
4268
4269 @item interp
4270 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4271 Default is @var{linear}.
4272 @end table
4273
4274 @section haas
4275 Apply Haas effect to audio.
4276
4277 Note that this makes most sense to apply on mono signals.
4278 With this filter applied to mono signals it give some directionality and
4279 stretches its stereo image.
4280
4281 The filter accepts the following options:
4282
4283 @table @option
4284 @item level_in
4285 Set input level. By default is @var{1}, or 0dB
4286
4287 @item level_out
4288 Set output level. By default is @var{1}, or 0dB.
4289
4290 @item side_gain
4291 Set gain applied to side part of signal. By default is @var{1}.
4292
4293 @item middle_source
4294 Set kind of middle source. Can be one of the following:
4295
4296 @table @samp
4297 @item left
4298 Pick left channel.
4299
4300 @item right
4301 Pick right channel.
4302
4303 @item mid
4304 Pick middle part signal of stereo image.
4305
4306 @item side
4307 Pick side part signal of stereo image.
4308 @end table
4309
4310 @item middle_phase
4311 Change middle phase. By default is disabled.
4312
4313 @item left_delay
4314 Set left channel delay. By default is @var{2.05} milliseconds.
4315
4316 @item left_balance
4317 Set left channel balance. By default is @var{-1}.
4318
4319 @item left_gain
4320 Set left channel gain. By default is @var{1}.
4321
4322 @item left_phase
4323 Change left phase. By default is disabled.
4324
4325 @item right_delay
4326 Set right channel delay. By defaults is @var{2.12} milliseconds.
4327
4328 @item right_balance
4329 Set right channel balance. By default is @var{1}.
4330
4331 @item right_gain
4332 Set right channel gain. By default is @var{1}.
4333
4334 @item right_phase
4335 Change right phase. By default is enabled.
4336 @end table
4337
4338 @section hdcd
4339
4340 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4341 embedded HDCD codes is expanded into a 20-bit PCM stream.
4342
4343 The filter supports the Peak Extend and Low-level Gain Adjustment features
4344 of HDCD, and detects the Transient Filter flag.
4345
4346 @example
4347 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4348 @end example
4349
4350 When using the filter with wav, note the default encoding for wav is 16-bit,
4351 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4352 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4353 @example
4354 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4355 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4356 @end example
4357
4358 The filter accepts the following options:
4359
4360 @table @option
4361 @item disable_autoconvert
4362 Disable any automatic format conversion or resampling in the filter graph.
4363
4364 @item process_stereo
4365 Process the stereo channels together. If target_gain does not match between
4366 channels, consider it invalid and use the last valid target_gain.
4367
4368 @item cdt_ms
4369 Set the code detect timer period in ms.
4370
4371 @item force_pe
4372 Always extend peaks above -3dBFS even if PE isn't signaled.
4373
4374 @item analyze_mode
4375 Replace audio with a solid tone and adjust the amplitude to signal some
4376 specific aspect of the decoding process. The output file can be loaded in
4377 an audio editor alongside the original to aid analysis.
4378
4379 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4380
4381 Modes are:
4382 @table @samp
4383 @item 0, off
4384 Disabled
4385 @item 1, lle
4386 Gain adjustment level at each sample
4387 @item 2, pe
4388 Samples where peak extend occurs
4389 @item 3, cdt
4390 Samples where the code detect timer is active
4391 @item 4, tgm
4392 Samples where the target gain does not match between channels
4393 @end table
4394 @end table
4395
4396 @section headphone
4397
4398 Apply head-related transfer functions (HRTFs) to create virtual
4399 loudspeakers around the user for binaural listening via headphones.
4400 The HRIRs are provided via additional streams, for each channel
4401 one stereo input stream is needed.
4402
4403 The filter accepts the following options:
4404
4405 @table @option
4406 @item map
4407 Set mapping of input streams for convolution.
4408 The argument is a '|'-separated list of channel names in order as they
4409 are given as additional stream inputs for filter.
4410 This also specify number of input streams. Number of input streams
4411 must be not less than number of channels in first stream plus one.
4412
4413 @item gain
4414 Set gain applied to audio. Value is in dB. Default is 0.
4415
4416 @item type
4417 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4418 processing audio in time domain which is slow.
4419 @var{freq} is processing audio in frequency domain which is fast.
4420 Default is @var{freq}.
4421
4422 @item lfe
4423 Set custom gain for LFE channels. Value is in dB. Default is 0.
4424
4425 @item size
4426 Set size of frame in number of samples which will be processed at once.
4427 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4428
4429 @item hrir
4430 Set format of hrir stream.
4431 Default value is @var{stereo}. Alternative value is @var{multich}.
4432 If value is set to @var{stereo}, number of additional streams should
4433 be greater or equal to number of input channels in first input stream.
4434 Also each additional stream should have stereo number of channels.
4435 If value is set to @var{multich}, number of additional streams should
4436 be exactly one. Also number of input channels of additional stream
4437 should be equal or greater than twice number of channels of first input
4438 stream.
4439 @end table
4440
4441 @subsection Examples
4442
4443 @itemize
4444 @item
4445 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4446 each amovie filter use stereo file with IR coefficients as input.
4447 The files give coefficients for each position of virtual loudspeaker:
4448 @example
4449 ffmpeg -i input.wav
4450 -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"
4451 output.wav
4452 @end example
4453
4454 @item
4455 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4456 but now in @var{multich} @var{hrir} format.
4457 @example
4458 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"
4459 output.wav
4460 @end example
4461 @end itemize
4462
4463 @section highpass
4464
4465 Apply a high-pass filter with 3dB point frequency.
4466 The filter can be either single-pole, or double-pole (the default).
4467 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4468
4469 The filter accepts the following options:
4470
4471 @table @option
4472 @item frequency, f
4473 Set frequency in Hz. Default is 3000.
4474
4475 @item poles, p
4476 Set number of poles. Default is 2.
4477
4478 @item width_type, t
4479 Set method to specify band-width of filter.
4480 @table @option
4481 @item h
4482 Hz
4483 @item q
4484 Q-Factor
4485 @item o
4486 octave
4487 @item s
4488 slope
4489 @item k
4490 kHz
4491 @end table
4492
4493 @item width, w
4494 Specify the band-width of a filter in width_type units.
4495 Applies only to double-pole filter.
4496 The default is 0.707q and gives a Butterworth response.
4497
4498 @item mix, m
4499 How much to use filtered signal in output. Default is 1.
4500 Range is between 0 and 1.
4501
4502 @item channels, c
4503 Specify which channels to filter, by default all available are filtered.
4504
4505 @item normalize, n
4506 Normalize biquad coefficients, by default is disabled.
4507 Enabling it will normalize magnitude response at DC to 0dB.
4508
4509 @item transform, a
4510 Set transform type of IIR filter.
4511 @table @option
4512 @item di
4513 @item dii
4514 @item tdii
4515 @item latt
4516 @end table
4517
4518 @item precision, r
4519 Set precison of filtering.
4520 @table @option
4521 @item auto
4522 Pick automatic sample format depending on surround filters.
4523 @item s16
4524 Always use signed 16-bit.
4525 @item s32
4526 Always use signed 32-bit.
4527 @item f32
4528 Always use float 32-bit.
4529 @item f64
4530 Always use float 64-bit.
4531 @end table
4532 @end table
4533
4534 @subsection Commands
4535
4536 This filter supports the following commands:
4537 @table @option
4538 @item frequency, f
4539 Change highpass frequency.
4540 Syntax for the command is : "@var{frequency}"
4541
4542 @item width_type, t
4543 Change highpass width_type.
4544 Syntax for the command is : "@var{width_type}"
4545
4546 @item width, w
4547 Change highpass width.
4548 Syntax for the command is : "@var{width}"
4549
4550 @item mix, m
4551 Change highpass mix.
4552 Syntax for the command is : "@var{mix}"
4553 @end table
4554
4555 @section join
4556
4557 Join multiple input streams into one multi-channel stream.
4558
4559 It accepts the following parameters:
4560 @table @option
4561
4562 @item inputs
4563 The number of input streams. It defaults to 2.
4564
4565 @item channel_layout
4566 The desired output channel layout. It defaults to stereo.
4567
4568 @item map
4569 Map channels from inputs to output. The argument is a '|'-separated list of
4570 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4571 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4572 can be either the name of the input channel (e.g. FL for front left) or its
4573 index in the specified input stream. @var{out_channel} is the name of the output
4574 channel.
4575 @end table
4576
4577 The filter will attempt to guess the mappings when they are not specified
4578 explicitly. It does so by first trying to find an unused matching input channel
4579 and if that fails it picks the first unused input channel.
4580
4581 Join 3 inputs (with properly set channel layouts):
4582 @example
4583 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4584 @end example
4585
4586 Build a 5.1 output from 6 single-channel streams:
4587 @example
4588 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4589 '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'
4590 out
4591 @end example
4592
4593 @section ladspa
4594
4595 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4596
4597 To enable compilation of this filter you need to configure FFmpeg with
4598 @code{--enable-ladspa}.
4599
4600 @table @option
4601 @item file, f
4602 Specifies the name of LADSPA plugin library to load. If the environment
4603 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4604 each one of the directories specified by the colon separated list in
4605 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4606 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4607 @file{/usr/lib/ladspa/}.
4608
4609 @item plugin, p
4610 Specifies the plugin within the library. Some libraries contain only
4611 one plugin, but others contain many of them. If this is not set filter
4612 will list all available plugins within the specified library.
4613
4614 @item controls, c
4615 Set the '|' separated list of controls which are zero or more floating point
4616 values that determine the behavior of the loaded plugin (for example delay,
4617 threshold or gain).
4618 Controls need to be defined using the following syntax:
4619 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4620 @var{valuei} is the value set on the @var{i}-th control.
4621 Alternatively they can be also defined using the following syntax:
4622 @var{value0}|@var{value1}|@var{value2}|..., where
4623 @var{valuei} is the value set on the @var{i}-th control.
4624 If @option{controls} is set to @code{help}, all available controls and
4625 their valid ranges are printed.
4626
4627 @item sample_rate, s
4628 Specify the sample rate, default to 44100. Only used if plugin have
4629 zero inputs.
4630
4631 @item nb_samples, n
4632 Set the number of samples per channel per each output frame, default
4633 is 1024. Only used if plugin have zero inputs.
4634
4635 @item duration, d
4636 Set the minimum duration of the sourced audio. See
4637 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4638 for the accepted syntax.
4639 Note that the resulting duration may be greater than the specified duration,
4640 as the generated audio is always cut at the end of a complete frame.
4641 If not specified, or the expressed duration is negative, the audio is
4642 supposed to be generated forever.
4643 Only used if plugin have zero inputs.
4644
4645 @item latency, l
4646 Enable latency compensation, by default is disabled.
4647 Only used if plugin have inputs.
4648 @end table
4649
4650 @subsection Examples
4651
4652 @itemize
4653 @item
4654 List all available plugins within amp (LADSPA example plugin) library:
4655 @example
4656 ladspa=file=amp
4657 @end example
4658
4659 @item
4660 List all available controls and their valid ranges for @code{vcf_notch}
4661 plugin from @code{VCF} library:
4662 @example
4663 ladspa=f=vcf:p=vcf_notch:c=help
4664 @end example
4665
4666 @item
4667 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4668 plugin library:
4669 @example
4670 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4671 @end example
4672
4673 @item
4674 Add reverberation to the audio using TAP-plugins
4675 (Tom's Audio Processing plugins):
4676 @example
4677 ladspa=file=tap_reverb:tap_reverb
4678 @end example
4679
4680 @item
4681 Generate white noise, with 0.2 amplitude:
4682 @example
4683 ladspa=file=cmt:noise_source_white:c=c0=.2
4684 @end example
4685
4686 @item
4687 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4688 @code{C* Audio Plugin Suite} (CAPS) library:
4689 @example
4690 ladspa=file=caps:Click:c=c1=20'
4691 @end example
4692
4693 @item
4694 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4695 @example
4696 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4697 @end example
4698
4699 @item
4700 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4701 @code{SWH Plugins} collection:
4702 @example
4703 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4704 @end example
4705
4706 @item
4707 Attenuate low frequencies using Multiband EQ from Steve Harris
4708 @code{SWH Plugins} collection:
4709 @example
4710 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4711 @end example
4712
4713 @item
4714 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4715 (CAPS) library:
4716 @example
4717 ladspa=caps:Narrower
4718 @end example
4719
4720 @item
4721 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4722 @example
4723 ladspa=caps:White:.2
4724 @end example
4725
4726 @item
4727 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4728 @example
4729 ladspa=caps:Fractal:c=c1=1
4730 @end example
4731
4732 @item
4733 Dynamic volume normalization using @code{VLevel} plugin:
4734 @example
4735 ladspa=vlevel-ladspa:vlevel_mono
4736 @end example
4737 @end itemize
4738
4739 @subsection Commands
4740
4741 This filter supports the following commands:
4742 @table @option
4743 @item cN
4744 Modify the @var{N}-th control value.
4745
4746 If the specified value is not valid, it is ignored and prior one is kept.
4747 @end table
4748
4749 @section loudnorm
4750
4751 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4752 Support for both single pass (livestreams, files) and double pass (files) modes.
4753 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4754 detect true peaks, the audio stream will be upsampled to 192 kHz.
4755 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4756
4757 The filter accepts the following options:
4758
4759 @table @option
4760 @item I, i
4761 Set integrated loudness target.
4762 Range is -70.0 - -5.0. Default value is -24.0.
4763
4764 @item LRA, lra
4765 Set loudness range target.
4766 Range is 1.0 - 20.0. Default value is 7.0.
4767
4768 @item TP, tp
4769 Set maximum true peak.
4770 Range is -9.0 - +0.0. Default value is -2.0.
4771
4772 @item measured_I, measured_i
4773 Measured IL of input file.
4774 Range is -99.0 - +0.0.
4775
4776 @item measured_LRA, measured_lra
4777 Measured LRA of input file.
4778 Range is  0.0 - 99.0.
4779
4780 @item measured_TP, measured_tp
4781 Measured true peak of input file.
4782 Range is  -99.0 - +99.0.
4783
4784 @item measured_thresh
4785 Measured threshold of input file.
4786 Range is -99.0 - +0.0.
4787
4788 @item offset
4789 Set offset gain. Gain is applied before the true-peak limiter.
4790 Range is  -99.0 - +99.0. Default is +0.0.
4791
4792 @item linear
4793 Normalize by linearly scaling the source audio.
4794 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4795 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4796 be lower than source LRA and the change in integrated loudness shouldn't
4797 result in a true peak which exceeds the target TP. If any of these
4798 conditions aren't met, normalization mode will revert to @var{dynamic}.
4799 Options are @code{true} or @code{false}. Default is @code{true}.
4800
4801 @item dual_mono
4802 Treat mono input files as "dual-mono". If a mono file is intended for playback
4803 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4804 If set to @code{true}, this option will compensate for this effect.
4805 Multi-channel input files are not affected by this option.
4806 Options are true or false. Default is false.
4807
4808 @item print_format
4809 Set print format for stats. Options are summary, json, or none.
4810 Default value is none.
4811 @end table
4812
4813 @section lowpass
4814
4815 Apply a low-pass filter with 3dB point frequency.
4816 The filter can be either single-pole or double-pole (the default).
4817 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4818
4819 The filter accepts the following options:
4820
4821 @table @option
4822 @item frequency, f
4823 Set frequency in Hz. Default is 500.
4824
4825 @item poles, p
4826 Set number of poles. Default is 2.
4827
4828 @item width_type, t
4829 Set method to specify band-width of filter.
4830 @table @option
4831 @item h
4832 Hz
4833 @item q
4834 Q-Factor
4835 @item o
4836 octave
4837 @item s
4838 slope
4839 @item k
4840 kHz
4841 @end table
4842
4843 @item width, w
4844 Specify the band-width of a filter in width_type units.
4845 Applies only to double-pole filter.
4846 The default is 0.707q and gives a Butterworth response.
4847
4848 @item mix, m
4849 How much to use filtered signal in output. Default is 1.
4850 Range is between 0 and 1.
4851
4852 @item channels, c
4853 Specify which channels to filter, by default all available are filtered.
4854
4855 @item normalize, n
4856 Normalize biquad coefficients, by default is disabled.
4857 Enabling it will normalize magnitude response at DC to 0dB.
4858
4859 @item transform, a
4860 Set transform type of IIR filter.
4861 @table @option
4862 @item di
4863 @item dii
4864 @item tdii
4865 @item latt
4866 @end table
4867
4868 @item precision, r
4869 Set precison of filtering.
4870 @table @option
4871 @item auto
4872 Pick automatic sample format depending on surround filters.
4873 @item s16
4874 Always use signed 16-bit.
4875 @item s32
4876 Always use signed 32-bit.
4877 @item f32
4878 Always use float 32-bit.
4879 @item f64
4880 Always use float 64-bit.
4881 @end table
4882 @end table
4883
4884 @subsection Examples
4885 @itemize
4886 @item
4887 Lowpass only LFE channel, it LFE is not present it does nothing:
4888 @example
4889 lowpass=c=LFE
4890 @end example
4891 @end itemize
4892
4893 @subsection Commands
4894
4895 This filter supports the following commands:
4896 @table @option
4897 @item frequency, f
4898 Change lowpass frequency.
4899 Syntax for the command is : "@var{frequency}"
4900
4901 @item width_type, t
4902 Change lowpass width_type.
4903 Syntax for the command is : "@var{width_type}"
4904
4905 @item width, w
4906 Change lowpass width.
4907 Syntax for the command is : "@var{width}"
4908
4909 @item mix, m
4910 Change lowpass mix.
4911 Syntax for the command is : "@var{mix}"
4912 @end table
4913
4914 @section lv2
4915
4916 Load a LV2 (LADSPA Version 2) plugin.
4917
4918 To enable compilation of this filter you need to configure FFmpeg with
4919 @code{--enable-lv2}.
4920
4921 @table @option
4922 @item plugin, p
4923 Specifies the plugin URI. You may need to escape ':'.
4924
4925 @item controls, c
4926 Set the '|' separated list of controls which are zero or more floating point
4927 values that determine the behavior of the loaded plugin (for example delay,
4928 threshold or gain).
4929 If @option{controls} is set to @code{help}, all available controls and
4930 their valid ranges are printed.
4931
4932 @item sample_rate, s
4933 Specify the sample rate, default to 44100. Only used if plugin have
4934 zero inputs.
4935
4936 @item nb_samples, n
4937 Set the number of samples per channel per each output frame, default
4938 is 1024. Only used if plugin have zero inputs.
4939
4940 @item duration, d
4941 Set the minimum duration of the sourced audio. See
4942 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4943 for the accepted syntax.
4944 Note that the resulting duration may be greater than the specified duration,
4945 as the generated audio is always cut at the end of a complete frame.
4946 If not specified, or the expressed duration is negative, the audio is
4947 supposed to be generated forever.
4948 Only used if plugin have zero inputs.
4949 @end table
4950
4951 @subsection Examples
4952
4953 @itemize
4954 @item
4955 Apply bass enhancer plugin from Calf:
4956 @example
4957 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4958 @end example
4959
4960 @item
4961 Apply vinyl plugin from Calf:
4962 @example
4963 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4964 @end example
4965
4966 @item
4967 Apply bit crusher plugin from ArtyFX:
4968 @example
4969 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4970 @end example
4971 @end itemize
4972
4973 @section mcompand
4974 Multiband Compress or expand the audio's dynamic range.
4975
4976 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4977 This is akin to the crossover of a loudspeaker, and results in flat frequency
4978 response when absent compander action.
4979
4980 It accepts the following parameters:
4981
4982 @table @option
4983 @item args
4984 This option syntax is:
4985 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4986 For explanation of each item refer to compand filter documentation.
4987 @end table
4988
4989 @anchor{pan}
4990 @section pan
4991
4992 Mix channels with specific gain levels. The filter accepts the output
4993 channel layout followed by a set of channels definitions.
4994
4995 This filter is also designed to efficiently remap the channels of an audio
4996 stream.
4997
4998 The filter accepts parameters of the form:
4999 "@var{l}|@var{outdef}|@var{outdef}|..."
5000
5001 @table @option
5002 @item l
5003 output channel layout or number of channels
5004
5005 @item outdef
5006 output channel specification, of the form:
5007 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5008
5009 @item out_name
5010 output channel to define, either a channel name (FL, FR, etc.) or a channel
5011 number (c0, c1, etc.)
5012
5013 @item gain
5014 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5015
5016 @item in_name
5017 input channel to use, see out_name for details; it is not possible to mix
5018 named and numbered input channels
5019 @end table
5020
5021 If the `=' in a channel specification is replaced by `<', then the gains for
5022 that specification will be renormalized so that the total is 1, thus
5023 avoiding clipping noise.
5024
5025 @subsection Mixing examples
5026
5027 For example, if you want to down-mix from stereo to mono, but with a bigger
5028 factor for the left channel:
5029 @example
5030 pan=1c|c0=0.9*c0+0.1*c1
5031 @end example
5032
5033 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5034 7-channels surround:
5035 @example
5036 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5037 @end example
5038
5039 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5040 that should be preferred (see "-ac" option) unless you have very specific
5041 needs.
5042
5043 @subsection Remapping examples
5044
5045 The channel remapping will be effective if, and only if:
5046
5047 @itemize
5048 @item gain coefficients are zeroes or ones,
5049 @item only one input per channel output,
5050 @end itemize
5051
5052 If all these conditions are satisfied, the filter will notify the user ("Pure
5053 channel mapping detected"), and use an optimized and lossless method to do the
5054 remapping.
5055
5056 For example, if you have a 5.1 source and want a stereo audio stream by
5057 dropping the extra channels:
5058 @example
5059 pan="stereo| c0=FL | c1=FR"
5060 @end example
5061
5062 Given the same source, you can also switch front left and front right channels
5063 and keep the input channel layout:
5064 @example
5065 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5066 @end example
5067
5068 If the input is a stereo audio stream, you can mute the front left channel (and
5069 still keep the stereo channel layout) with:
5070 @example
5071 pan="stereo|c1=c1"
5072 @end example
5073
5074 Still with a stereo audio stream input, you can copy the right channel in both
5075 front left and right:
5076 @example
5077 pan="stereo| c0=FR | c1=FR"
5078 @end example
5079
5080 @section replaygain
5081
5082 ReplayGain scanner filter. This filter takes an audio stream as an input and
5083 outputs it unchanged.
5084 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5085
5086 @section resample
5087
5088 Convert the audio sample format, sample rate and channel layout. It is
5089 not meant to be used directly.
5090
5091 @section rubberband
5092 Apply time-stretching and pitch-shifting with librubberband.
5093
5094 To enable compilation of this filter, you need to configure FFmpeg with
5095 @code{--enable-librubberband}.
5096
5097 The filter accepts the following options:
5098
5099 @table @option
5100 @item tempo
5101 Set tempo scale factor.
5102
5103 @item pitch
5104 Set pitch scale factor.
5105
5106 @item transients
5107 Set transients detector.
5108 Possible values are:
5109 @table @var
5110 @item crisp
5111 @item mixed
5112 @item smooth
5113 @end table
5114
5115 @item detector
5116 Set detector.
5117 Possible values are:
5118 @table @var
5119 @item compound
5120 @item percussive
5121 @item soft
5122 @end table
5123
5124 @item phase
5125 Set phase.
5126 Possible values are:
5127 @table @var
5128 @item laminar
5129 @item independent
5130 @end table
5131
5132 @item window
5133 Set processing window size.
5134 Possible values are:
5135 @table @var
5136 @item standard
5137 @item short
5138 @item long
5139 @end table
5140
5141 @item smoothing
5142 Set smoothing.
5143 Possible values are:
5144 @table @var
5145 @item off
5146 @item on
5147 @end table
5148
5149 @item formant
5150 Enable formant preservation when shift pitching.
5151 Possible values are:
5152 @table @var
5153 @item shifted
5154 @item preserved
5155 @end table
5156
5157 @item pitchq
5158 Set pitch quality.
5159 Possible values are:
5160 @table @var
5161 @item quality
5162 @item speed
5163 @item consistency
5164 @end table
5165
5166 @item channels
5167 Set channels.
5168 Possible values are:
5169 @table @var
5170 @item apart
5171 @item together
5172 @end table
5173 @end table
5174
5175 @subsection Commands
5176
5177 This filter supports the following commands:
5178 @table @option
5179 @item tempo
5180 Change filter tempo scale factor.
5181 Syntax for the command is : "@var{tempo}"
5182
5183 @item pitch
5184 Change filter pitch scale factor.
5185 Syntax for the command is : "@var{pitch}"
5186 @end table
5187
5188 @section sidechaincompress
5189
5190 This filter acts like normal compressor but has the ability to compress
5191 detected signal using second input signal.
5192 It needs two input streams and returns one output stream.
5193 First input stream will be processed depending on second stream signal.
5194 The filtered signal then can be filtered with other filters in later stages of
5195 processing. See @ref{pan} and @ref{amerge} filter.
5196
5197 The filter accepts the following options:
5198
5199 @table @option
5200 @item level_in
5201 Set input gain. Default is 1. Range is between 0.015625 and 64.
5202
5203 @item mode
5204 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5205 Default is @code{downward}.
5206
5207 @item threshold
5208 If a signal of second stream raises above this level it will affect the gain
5209 reduction of first stream.
5210 By default is 0.125. Range is between 0.00097563 and 1.
5211
5212 @item ratio
5213 Set a ratio about which the signal is reduced. 1:2 means that if the level
5214 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5215 Default is 2. Range is between 1 and 20.
5216
5217 @item attack
5218 Amount of milliseconds the signal has to rise above the threshold before gain
5219 reduction starts. Default is 20. Range is between 0.01 and 2000.
5220
5221 @item release
5222 Amount of milliseconds the signal has to fall below the threshold before
5223 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5224
5225 @item makeup
5226 Set the amount by how much signal will be amplified after processing.
5227 Default is 1. Range is from 1 to 64.
5228
5229 @item knee
5230 Curve the sharp knee around the threshold to enter gain reduction more softly.
5231 Default is 2.82843. Range is between 1 and 8.
5232
5233 @item link
5234 Choose if the @code{average} level between all channels of side-chain stream
5235 or the louder(@code{maximum}) channel of side-chain stream affects the
5236 reduction. Default is @code{average}.
5237
5238 @item detection
5239 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5240 of @code{rms}. Default is @code{rms} which is mainly smoother.
5241
5242 @item level_sc
5243 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5244
5245 @item mix
5246 How much to use compressed signal in output. Default is 1.
5247 Range is between 0 and 1.
5248 @end table
5249
5250 @subsection Commands
5251
5252 This filter supports the all above options as @ref{commands}.
5253
5254 @subsection Examples
5255
5256 @itemize
5257 @item
5258 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5259 depending on the signal of 2nd input and later compressed signal to be
5260 merged with 2nd input:
5261 @example
5262 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5263 @end example
5264 @end itemize
5265
5266 @section sidechaingate
5267
5268 A sidechain gate acts like a normal (wideband) gate but has the ability to
5269 filter the detected signal before sending it to the gain reduction stage.
5270 Normally a gate uses the full range signal to detect a level above the
5271 threshold.
5272 For example: If you cut all lower frequencies from your sidechain signal
5273 the gate will decrease the volume of your track only if not enough highs
5274 appear. With this technique you are able to reduce the resonation of a
5275 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5276 guitar.
5277 It needs two input streams and returns one output stream.
5278 First input stream will be processed depending on second stream signal.
5279
5280 The filter accepts the following options:
5281
5282 @table @option
5283 @item level_in
5284 Set input level before filtering.
5285 Default is 1. Allowed range is from 0.015625 to 64.
5286
5287 @item mode
5288 Set the mode of operation. Can be @code{upward} or @code{downward}.
5289 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5290 will be amplified, expanding dynamic range in upward direction.
5291 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5292
5293 @item range
5294 Set the level of gain reduction when the signal is below the threshold.
5295 Default is 0.06125. Allowed range is from 0 to 1.
5296 Setting this to 0 disables reduction and then filter behaves like expander.
5297
5298 @item threshold
5299 If a signal rises above this level the gain reduction is released.
5300 Default is 0.125. Allowed range is from 0 to 1.
5301
5302 @item ratio
5303 Set a ratio about which the signal is reduced.
5304 Default is 2. Allowed range is from 1 to 9000.
5305
5306 @item attack
5307 Amount of milliseconds the signal has to rise above the threshold before gain
5308 reduction stops.
5309 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5310
5311 @item release
5312 Amount of milliseconds the signal has to fall below the threshold before the
5313 reduction is increased again. Default is 250 milliseconds.
5314 Allowed range is from 0.01 to 9000.
5315
5316 @item makeup
5317 Set amount of amplification of signal after processing.
5318 Default is 1. Allowed range is from 1 to 64.
5319
5320 @item knee
5321 Curve the sharp knee around the threshold to enter gain reduction more softly.
5322 Default is 2.828427125. Allowed range is from 1 to 8.
5323
5324 @item detection
5325 Choose if exact signal should be taken for detection or an RMS like one.
5326 Default is rms. Can be peak or rms.
5327
5328 @item link
5329 Choose if the average level between all channels or the louder channel affects
5330 the reduction.
5331 Default is average. Can be average or maximum.
5332
5333 @item level_sc
5334 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5335 @end table
5336
5337 @subsection Commands
5338
5339 This filter supports the all above options as @ref{commands}.
5340
5341 @section silencedetect
5342
5343 Detect silence in an audio stream.
5344
5345 This filter logs a message when it detects that the input audio volume is less
5346 or equal to a noise tolerance value for a duration greater or equal to the
5347 minimum detected noise duration.
5348
5349 The printed times and duration are expressed in seconds. The
5350 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5351 is set on the first frame whose timestamp equals or exceeds the detection
5352 duration and it contains the timestamp of the first frame of the silence.
5353
5354 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5355 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5356 keys are set on the first frame after the silence. If @option{mono} is
5357 enabled, and each channel is evaluated separately, the @code{.X}
5358 suffixed keys are used, and @code{X} corresponds to the channel number.
5359
5360 The filter accepts the following options:
5361
5362 @table @option
5363 @item noise, n
5364 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5365 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5366
5367 @item duration, d
5368 Set silence duration until notification (default is 2 seconds). See
5369 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5370 for the accepted syntax.
5371
5372 @item mono, m
5373 Process each channel separately, instead of combined. By default is disabled.
5374 @end table
5375
5376 @subsection Examples
5377
5378 @itemize
5379 @item
5380 Detect 5 seconds of silence with -50dB noise tolerance:
5381 @example
5382 silencedetect=n=-50dB:d=5
5383 @end example
5384
5385 @item
5386 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5387 tolerance in @file{silence.mp3}:
5388 @example
5389 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5390 @end example
5391 @end itemize
5392
5393 @section silenceremove
5394
5395 Remove silence from the beginning, middle or end of the audio.
5396
5397 The filter accepts the following options:
5398
5399 @table @option
5400 @item start_periods
5401 This value is used to indicate if audio should be trimmed at beginning of
5402 the audio. A value of zero indicates no silence should be trimmed from the
5403 beginning. When specifying a non-zero value, it trims audio up until it
5404 finds non-silence. Normally, when trimming silence from beginning of audio
5405 the @var{start_periods} will be @code{1} but it can be increased to higher
5406 values to trim all audio up to specific count of non-silence periods.
5407 Default value is @code{0}.
5408
5409 @item start_duration
5410 Specify the amount of time that non-silence must be detected before it stops
5411 trimming audio. By increasing the duration, bursts of noises can be treated
5412 as silence and trimmed off. Default value is @code{0}.
5413
5414 @item start_threshold
5415 This indicates what sample value should be treated as silence. For digital
5416 audio, a value of @code{0} may be fine but for audio recorded from analog,
5417 you may wish to increase the value to account for background noise.
5418 Can be specified in dB (in case "dB" is appended to the specified value)
5419 or amplitude ratio. Default value is @code{0}.
5420
5421 @item start_silence
5422 Specify max duration of silence at beginning that will be kept after
5423 trimming. Default is 0, which is equal to trimming all samples detected
5424 as silence.
5425
5426 @item start_mode
5427 Specify mode of detection of silence end in start of multi-channel audio.
5428 Can be @var{any} or @var{all}. Default is @var{any}.
5429 With @var{any}, any sample that is detected as non-silence will cause
5430 stopped trimming of silence.
5431 With @var{all}, only if all channels are detected as non-silence will cause
5432 stopped trimming of silence.
5433
5434 @item stop_periods
5435 Set the count for trimming silence from the end of audio.
5436 To remove silence from the middle of a file, specify a @var{stop_periods}
5437 that is negative. This value is then treated as a positive value and is
5438 used to indicate the effect should restart processing as specified by
5439 @var{start_periods}, making it suitable for removing periods of silence
5440 in the middle of the audio.
5441 Default value is @code{0}.
5442
5443 @item stop_duration
5444 Specify a duration of silence that must exist before audio is not copied any
5445 more. By specifying a higher duration, silence that is wanted can be left in
5446 the audio.
5447 Default value is @code{0}.
5448
5449 @item stop_threshold
5450 This is the same as @option{start_threshold} but for trimming silence from
5451 the end of audio.
5452 Can be specified in dB (in case "dB" is appended to the specified value)
5453 or amplitude ratio. Default value is @code{0}.
5454
5455 @item stop_silence
5456 Specify max duration of silence at end that will be kept after
5457 trimming. Default is 0, which is equal to trimming all samples detected
5458 as silence.
5459
5460 @item stop_mode
5461 Specify mode of detection of silence start in end of multi-channel audio.
5462 Can be @var{any} or @var{all}. Default is @var{any}.
5463 With @var{any}, any sample that is detected as non-silence will cause
5464 stopped trimming of silence.
5465 With @var{all}, only if all channels are detected as non-silence will cause
5466 stopped trimming of silence.
5467
5468 @item detection
5469 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5470 and works better with digital silence which is exactly 0.
5471 Default value is @code{rms}.
5472
5473 @item window
5474 Set duration in number of seconds used to calculate size of window in number
5475 of samples for detecting silence.
5476 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5477 @end table
5478
5479 @subsection Examples
5480
5481 @itemize
5482 @item
5483 The following example shows how this filter can be used to start a recording
5484 that does not contain the delay at the start which usually occurs between
5485 pressing the record button and the start of the performance:
5486 @example
5487 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5488 @end example
5489
5490 @item
5491 Trim all silence encountered from beginning to end where there is more than 1
5492 second of silence in audio:
5493 @example
5494 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5495 @end example
5496
5497 @item
5498 Trim all digital silence samples, using peak detection, from beginning to end
5499 where there is more than 0 samples of digital silence in audio and digital
5500 silence is detected in all channels at same positions in stream:
5501 @example
5502 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5503 @end example
5504 @end itemize
5505
5506 @section sofalizer
5507
5508 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5509 loudspeakers around the user for binaural listening via headphones (audio
5510 formats up to 9 channels supported).
5511 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5512 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5513 Austrian Academy of Sciences.
5514
5515 To enable compilation of this filter you need to configure FFmpeg with
5516 @code{--enable-libmysofa}.
5517
5518 The filter accepts the following options:
5519
5520 @table @option
5521 @item sofa
5522 Set the SOFA file used for rendering.
5523
5524 @item gain
5525 Set gain applied to audio. Value is in dB. Default is 0.
5526
5527 @item rotation
5528 Set rotation of virtual loudspeakers in deg. Default is 0.
5529
5530 @item elevation
5531 Set elevation of virtual speakers in deg. Default is 0.
5532
5533 @item radius
5534 Set distance in meters between loudspeakers and the listener with near-field
5535 HRTFs. Default is 1.
5536
5537 @item type
5538 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5539 processing audio in time domain which is slow.
5540 @var{freq} is processing audio in frequency domain which is fast.
5541 Default is @var{freq}.
5542
5543 @item speakers
5544 Set custom positions of virtual loudspeakers. Syntax for this option is:
5545 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5546 Each virtual loudspeaker is described with short channel name following with
5547 azimuth and elevation in degrees.
5548 Each virtual loudspeaker description is separated by '|'.
5549 For example to override front left and front right channel positions use:
5550 'speakers=FL 45 15|FR 345 15'.
5551 Descriptions with unrecognised channel names are ignored.
5552
5553 @item lfegain
5554 Set custom gain for LFE channels. Value is in dB. Default is 0.
5555
5556 @item framesize
5557 Set custom frame size in number of samples. Default is 1024.
5558 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5559 is set to @var{freq}.
5560
5561 @item normalize
5562 Should all IRs be normalized upon importing SOFA file.
5563 By default is enabled.
5564
5565 @item interpolate
5566 Should nearest IRs be interpolated with neighbor IRs if exact position
5567 does not match. By default is disabled.
5568
5569 @item minphase
5570 Minphase all IRs upon loading of SOFA file. By default is disabled.
5571
5572 @item anglestep
5573 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5574
5575 @item radstep
5576 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5577 @end table
5578
5579 @subsection Examples
5580
5581 @itemize
5582 @item
5583 Using ClubFritz6 sofa file:
5584 @example
5585 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5586 @end example
5587
5588 @item
5589 Using ClubFritz12 sofa file and bigger radius with small rotation:
5590 @example
5591 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5592 @end example
5593
5594 @item
5595 Similar as above but with custom speaker positions for front left, front right, back left and back right
5596 and also with custom gain:
5597 @example
5598 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5599 @end example
5600 @end itemize
5601
5602 @section speechnorm
5603 Speech Normalizer.
5604
5605 This filter expands or compresses each half-cycle of audio samples
5606 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5607 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5608
5609 The filter accepts the following options:
5610
5611 @table @option
5612 @item peak, p
5613 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5614 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5615
5616 @item expansion, e
5617 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5618 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5619 would be such that local peak value reaches target peak value but never to surpass it and that
5620 ratio between new and previous peak value does not surpass this option value.
5621
5622 @item compression, c
5623 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5624 This option controls maximum local half-cycle of samples compression. This option is used
5625 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5626 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5627 that peak's half-cycle will be compressed by current compression factor.
5628
5629 @item threshold, t
5630 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5631 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5632 Any half-cycle samples with their local peak value below or same as this option value will be
5633 compressed by current compression factor, otherwise, if greater than threshold value they will be
5634 expanded with expansion factor so that it could reach peak target value but never surpass it.
5635
5636 @item raise, r
5637 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5638 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5639 each new half-cycle until it reaches @option{expansion} value.
5640 Setting this options too high may lead to distortions.
5641
5642 @item fall, f
5643 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5644 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5645 each new half-cycle until it reaches @option{compression} value.
5646
5647 @item channels, h
5648 Specify which channels to filter, by default all available channels are filtered.
5649
5650 @item invert, i
5651 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5652 option. When enabled any half-cycle of samples with their local peak value below or same as
5653 @option{threshold} option will be expanded otherwise it will be compressed.
5654
5655 @item link, l
5656 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5657 When disabled each filtered channel gain calculation is independent, otherwise when this option
5658 is enabled the minimum of all possible gains for each filtered channel is used.
5659 @end table
5660
5661 @subsection Commands
5662
5663 This filter supports the all above options as @ref{commands}.
5664
5665 @section stereotools
5666
5667 This filter has some handy utilities to manage stereo signals, for converting
5668 M/S stereo recordings to L/R signal while having control over the parameters
5669 or spreading the stereo image of master track.
5670
5671 The filter accepts the following options:
5672
5673 @table @option
5674 @item level_in
5675 Set input level before filtering for both channels. Defaults is 1.
5676 Allowed range is from 0.015625 to 64.
5677
5678 @item level_out
5679 Set output level after filtering for both channels. Defaults is 1.
5680 Allowed range is from 0.015625 to 64.
5681
5682 @item balance_in
5683 Set input balance between both channels. Default is 0.
5684 Allowed range is from -1 to 1.
5685
5686 @item balance_out
5687 Set output balance between both channels. Default is 0.
5688 Allowed range is from -1 to 1.
5689
5690 @item softclip
5691 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5692 clipping. Disabled by default.
5693
5694 @item mutel
5695 Mute the left channel. Disabled by default.
5696
5697 @item muter
5698 Mute the right channel. Disabled by default.
5699
5700 @item phasel
5701 Change the phase of the left channel. Disabled by default.
5702
5703 @item phaser
5704 Change the phase of the right channel. Disabled by default.
5705
5706 @item mode
5707 Set stereo mode. Available values are:
5708
5709 @table @samp
5710 @item lr>lr
5711 Left/Right to Left/Right, this is default.
5712
5713 @item lr>ms
5714 Left/Right to Mid/Side.
5715
5716 @item ms>lr
5717 Mid/Side to Left/Right.
5718
5719 @item lr>ll
5720 Left/Right to Left/Left.
5721
5722 @item lr>rr
5723 Left/Right to Right/Right.
5724
5725 @item lr>l+r
5726 Left/Right to Left + Right.
5727
5728 @item lr>rl
5729 Left/Right to Right/Left.
5730
5731 @item ms>ll
5732 Mid/Side to Left/Left.
5733
5734 @item ms>rr
5735 Mid/Side to Right/Right.
5736
5737 @item ms>rl
5738 Mid/Side to Right/Left.
5739
5740 @item lr>l-r
5741 Left/Right to Left - Right.
5742 @end table
5743
5744 @item slev
5745 Set level of side signal. Default is 1.
5746 Allowed range is from 0.015625 to 64.
5747
5748 @item sbal
5749 Set balance of side signal. Default is 0.
5750 Allowed range is from -1 to 1.
5751
5752 @item mlev
5753 Set level of the middle signal. Default is 1.
5754 Allowed range is from 0.015625 to 64.
5755
5756 @item mpan
5757 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5758
5759 @item base
5760 Set stereo base between mono and inversed channels. Default is 0.
5761 Allowed range is from -1 to 1.
5762
5763 @item delay
5764 Set delay in milliseconds how much to delay left from right channel and
5765 vice versa. Default is 0. Allowed range is from -20 to 20.
5766
5767 @item sclevel
5768 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5769
5770 @item phase
5771 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5772
5773 @item bmode_in, bmode_out
5774 Set balance mode for balance_in/balance_out option.
5775
5776 Can be one of the following:
5777
5778 @table @samp
5779 @item balance
5780 Classic balance mode. Attenuate one channel at time.
5781 Gain is raised up to 1.
5782
5783 @item amplitude
5784 Similar as classic mode above but gain is raised up to 2.
5785
5786 @item power
5787 Equal power distribution, from -6dB to +6dB range.
5788 @end table
5789 @end table
5790
5791 @subsection Commands
5792
5793 This filter supports the all above options as @ref{commands}.
5794
5795 @subsection Examples
5796
5797 @itemize
5798 @item
5799 Apply karaoke like effect:
5800 @example
5801 stereotools=mlev=0.015625
5802 @end example
5803
5804 @item
5805 Convert M/S signal to L/R:
5806 @example
5807 "stereotools=mode=ms>lr"
5808 @end example
5809 @end itemize
5810
5811 @section stereowiden
5812
5813 This filter enhance the stereo effect by suppressing signal common to both
5814 channels and by delaying the signal of left into right and vice versa,
5815 thereby widening the stereo effect.
5816
5817 The filter accepts the following options:
5818
5819 @table @option
5820 @item delay
5821 Time in milliseconds of the delay of left signal into right and vice versa.
5822 Default is 20 milliseconds.
5823
5824 @item feedback
5825 Amount of gain in delayed signal into right and vice versa. Gives a delay
5826 effect of left signal in right output and vice versa which gives widening
5827 effect. Default is 0.3.
5828
5829 @item crossfeed
5830 Cross feed of left into right with inverted phase. This helps in suppressing
5831 the mono. If the value is 1 it will cancel all the signal common to both
5832 channels. Default is 0.3.
5833
5834 @item drymix
5835 Set level of input signal of original channel. Default is 0.8.
5836 @end table
5837
5838 @subsection Commands
5839
5840 This filter supports the all above options except @code{delay} as @ref{commands}.
5841
5842 @section superequalizer
5843 Apply 18 band equalizer.
5844
5845 The filter accepts the following options:
5846 @table @option
5847 @item 1b
5848 Set 65Hz band gain.
5849 @item 2b
5850 Set 92Hz band gain.
5851 @item 3b
5852 Set 131Hz band gain.
5853 @item 4b
5854 Set 185Hz band gain.
5855 @item 5b
5856 Set 262Hz band gain.
5857 @item 6b
5858 Set 370Hz band gain.
5859 @item 7b
5860 Set 523Hz band gain.
5861 @item 8b
5862 Set 740Hz band gain.
5863 @item 9b
5864 Set 1047Hz band gain.
5865 @item 10b
5866 Set 1480Hz band gain.
5867 @item 11b
5868 Set 2093Hz band gain.
5869 @item 12b
5870 Set 2960Hz band gain.
5871 @item 13b
5872 Set 4186Hz band gain.
5873 @item 14b
5874 Set 5920Hz band gain.
5875 @item 15b
5876 Set 8372Hz band gain.
5877 @item 16b
5878 Set 11840Hz band gain.
5879 @item 17b
5880 Set 16744Hz band gain.
5881 @item 18b
5882 Set 20000Hz band gain.
5883 @end table
5884
5885 @section surround
5886 Apply audio surround upmix filter.
5887
5888 This filter allows to produce multichannel output from audio stream.
5889
5890 The filter accepts the following options:
5891
5892 @table @option
5893 @item chl_out
5894 Set output channel layout. By default, this is @var{5.1}.
5895
5896 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5897 for the required syntax.
5898
5899 @item chl_in
5900 Set input channel layout. By default, this is @var{stereo}.
5901
5902 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5903 for the required syntax.
5904
5905 @item level_in
5906 Set input volume level. By default, this is @var{1}.
5907
5908 @item level_out
5909 Set output volume level. By default, this is @var{1}.
5910
5911 @item lfe
5912 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5913
5914 @item lfe_low
5915 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5916
5917 @item lfe_high
5918 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5919
5920 @item lfe_mode
5921 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5922 In @var{add} mode, LFE channel is created from input audio and added to output.
5923 In @var{sub} mode, LFE channel is created from input audio and added to output but
5924 also all non-LFE output channels are subtracted with output LFE channel.
5925
5926 @item angle
5927 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5928 Default is @var{90}.
5929
5930 @item fc_in
5931 Set front center input volume. By default, this is @var{1}.
5932
5933 @item fc_out
5934 Set front center output volume. By default, this is @var{1}.
5935
5936 @item fl_in
5937 Set front left input volume. By default, this is @var{1}.
5938
5939 @item fl_out
5940 Set front left output volume. By default, this is @var{1}.
5941
5942 @item fr_in
5943 Set front right input volume. By default, this is @var{1}.
5944
5945 @item fr_out
5946 Set front right output volume. By default, this is @var{1}.
5947
5948 @item sl_in
5949 Set side left input volume. By default, this is @var{1}.
5950
5951 @item sl_out
5952 Set side left output volume. By default, this is @var{1}.
5953
5954 @item sr_in
5955 Set side right input volume. By default, this is @var{1}.
5956
5957 @item sr_out
5958 Set side right output volume. By default, this is @var{1}.
5959
5960 @item bl_in
5961 Set back left input volume. By default, this is @var{1}.
5962
5963 @item bl_out
5964 Set back left output volume. By default, this is @var{1}.
5965
5966 @item br_in
5967 Set back right input volume. By default, this is @var{1}.
5968
5969 @item br_out
5970 Set back right output volume. By default, this is @var{1}.
5971
5972 @item bc_in
5973 Set back center input volume. By default, this is @var{1}.
5974
5975 @item bc_out
5976 Set back center output volume. By default, this is @var{1}.
5977
5978 @item lfe_in
5979 Set LFE input volume. By default, this is @var{1}.
5980
5981 @item lfe_out
5982 Set LFE output volume. By default, this is @var{1}.
5983
5984 @item allx
5985 Set spread usage of stereo image across X axis for all channels.
5986
5987 @item ally
5988 Set spread usage of stereo image across Y axis for all channels.
5989
5990 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5991 Set spread usage of stereo image across X axis for each channel.
5992
5993 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5994 Set spread usage of stereo image across Y axis for each channel.
5995
5996 @item win_size
5997 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5998
5999 @item win_func
6000 Set window function.
6001
6002 It accepts the following values:
6003 @table @samp
6004 @item rect
6005 @item bartlett
6006 @item hann, hanning
6007 @item hamming
6008 @item blackman
6009 @item welch
6010 @item flattop
6011 @item bharris
6012 @item bnuttall
6013 @item bhann
6014 @item sine
6015 @item nuttall
6016 @item lanczos
6017 @item gauss
6018 @item tukey
6019 @item dolph
6020 @item cauchy
6021 @item parzen
6022 @item poisson
6023 @item bohman
6024 @end table
6025 Default is @code{hann}.
6026
6027 @item overlap
6028 Set window overlap. If set to 1, the recommended overlap for selected
6029 window function will be picked. Default is @code{0.5}.
6030 @end table
6031
6032 @section treble, highshelf
6033
6034 Boost or cut treble (upper) frequencies of the audio using a two-pole
6035 shelving filter with a response similar to that of a standard
6036 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6037
6038 The filter accepts the following options:
6039
6040 @table @option
6041 @item gain, g
6042 Give the gain at whichever is the lower of ~22 kHz and the
6043 Nyquist frequency. Its useful range is about -20 (for a large cut)
6044 to +20 (for a large boost). Beware of clipping when using a positive gain.
6045
6046 @item frequency, f
6047 Set the filter's central frequency and so can be used
6048 to extend or reduce the frequency range to be boosted or cut.
6049 The default value is @code{3000} Hz.
6050
6051 @item width_type, t
6052 Set method to specify band-width of filter.
6053 @table @option
6054 @item h
6055 Hz
6056 @item q
6057 Q-Factor
6058 @item o
6059 octave
6060 @item s
6061 slope
6062 @item k
6063 kHz
6064 @end table
6065
6066 @item width, w
6067 Determine how steep is the filter's shelf transition.
6068
6069 @item poles, p
6070 Set number of poles. Default is 2.
6071
6072 @item mix, m
6073 How much to use filtered signal in output. Default is 1.
6074 Range is between 0 and 1.
6075
6076 @item channels, c
6077 Specify which channels to filter, by default all available are filtered.
6078
6079 @item normalize, n
6080 Normalize biquad coefficients, by default is disabled.
6081 Enabling it will normalize magnitude response at DC to 0dB.
6082
6083 @item transform, a
6084 Set transform type of IIR filter.
6085 @table @option
6086 @item di
6087 @item dii
6088 @item tdii
6089 @item latt
6090 @end table
6091
6092 @item precision, r
6093 Set precison of filtering.
6094 @table @option
6095 @item auto
6096 Pick automatic sample format depending on surround filters.
6097 @item s16
6098 Always use signed 16-bit.
6099 @item s32
6100 Always use signed 32-bit.
6101 @item f32
6102 Always use float 32-bit.
6103 @item f64
6104 Always use float 64-bit.
6105 @end table
6106 @end table
6107
6108 @subsection Commands
6109
6110 This filter supports the following commands:
6111 @table @option
6112 @item frequency, f
6113 Change treble frequency.
6114 Syntax for the command is : "@var{frequency}"
6115
6116 @item width_type, t
6117 Change treble width_type.
6118 Syntax for the command is : "@var{width_type}"
6119
6120 @item width, w
6121 Change treble width.
6122 Syntax for the command is : "@var{width}"
6123
6124 @item gain, g
6125 Change treble gain.
6126 Syntax for the command is : "@var{gain}"
6127
6128 @item mix, m
6129 Change treble mix.
6130 Syntax for the command is : "@var{mix}"
6131 @end table
6132
6133 @section tremolo
6134
6135 Sinusoidal amplitude modulation.
6136
6137 The filter accepts the following options:
6138
6139 @table @option
6140 @item f
6141 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6142 (20 Hz or lower) will result in a tremolo effect.
6143 This filter may also be used as a ring modulator by specifying
6144 a modulation frequency higher than 20 Hz.
6145 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6146
6147 @item d
6148 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6149 Default value is 0.5.
6150 @end table
6151
6152 @section vibrato
6153
6154 Sinusoidal phase modulation.
6155
6156 The filter accepts the following options:
6157
6158 @table @option
6159 @item f
6160 Modulation frequency in Hertz.
6161 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6162
6163 @item d
6164 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6165 Default value is 0.5.
6166 @end table
6167
6168 @section volume
6169
6170 Adjust the input audio volume.
6171
6172 It accepts the following parameters:
6173 @table @option
6174
6175 @item volume
6176 Set audio volume expression.
6177
6178 Output values are clipped to the maximum value.
6179
6180 The output audio volume is given by the relation:
6181 @example
6182 @var{output_volume} = @var{volume} * @var{input_volume}
6183 @end example
6184
6185 The default value for @var{volume} is "1.0".
6186
6187 @item precision
6188 This parameter represents the mathematical precision.
6189
6190 It determines which input sample formats will be allowed, which affects the
6191 precision of the volume scaling.
6192
6193 @table @option
6194 @item fixed
6195 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6196 @item float
6197 32-bit floating-point; this limits input sample format to FLT. (default)
6198 @item double
6199 64-bit floating-point; this limits input sample format to DBL.
6200 @end table
6201
6202 @item replaygain
6203 Choose the behaviour on encountering ReplayGain side data in input frames.
6204
6205 @table @option
6206 @item drop
6207 Remove ReplayGain side data, ignoring its contents (the default).
6208
6209 @item ignore
6210 Ignore ReplayGain side data, but leave it in the frame.
6211
6212 @item track
6213 Prefer the track gain, if present.
6214
6215 @item album
6216 Prefer the album gain, if present.
6217 @end table
6218
6219 @item replaygain_preamp
6220 Pre-amplification gain in dB to apply to the selected replaygain gain.
6221
6222 Default value for @var{replaygain_preamp} is 0.0.
6223
6224 @item replaygain_noclip
6225 Prevent clipping by limiting the gain applied.
6226
6227 Default value for @var{replaygain_noclip} is 1.
6228
6229 @item eval
6230 Set when the volume expression is evaluated.
6231
6232 It accepts the following values:
6233 @table @samp
6234 @item once
6235 only evaluate expression once during the filter initialization, or
6236 when the @samp{volume} command is sent
6237
6238 @item frame
6239 evaluate expression for each incoming frame
6240 @end table
6241
6242 Default value is @samp{once}.
6243 @end table
6244
6245 The volume expression can contain the following parameters.
6246
6247 @table @option
6248 @item n
6249 frame number (starting at zero)
6250 @item nb_channels
6251 number of channels
6252 @item nb_consumed_samples
6253 number of samples consumed by the filter
6254 @item nb_samples
6255 number of samples in the current frame
6256 @item pos
6257 original frame position in the file
6258 @item pts
6259 frame PTS
6260 @item sample_rate
6261 sample rate
6262 @item startpts
6263 PTS at start of stream
6264 @item startt
6265 time at start of stream
6266 @item t
6267 frame time
6268 @item tb
6269 timestamp timebase
6270 @item volume
6271 last set volume value
6272 @end table
6273
6274 Note that when @option{eval} is set to @samp{once} only the
6275 @var{sample_rate} and @var{tb} variables are available, all other
6276 variables will evaluate to NAN.
6277
6278 @subsection Commands
6279
6280 This filter supports the following commands:
6281 @table @option
6282 @item volume
6283 Modify the volume expression.
6284 The command accepts the same syntax of the corresponding option.
6285
6286 If the specified expression is not valid, it is kept at its current
6287 value.
6288 @end table
6289
6290 @subsection Examples
6291
6292 @itemize
6293 @item
6294 Halve the input audio volume:
6295 @example
6296 volume=volume=0.5
6297 volume=volume=1/2
6298 volume=volume=-6.0206dB
6299 @end example
6300
6301 In all the above example the named key for @option{volume} can be
6302 omitted, for example like in:
6303 @example
6304 volume=0.5
6305 @end example
6306
6307 @item
6308 Increase input audio power by 6 decibels using fixed-point precision:
6309 @example
6310 volume=volume=6dB:precision=fixed
6311 @end example
6312
6313 @item
6314 Fade volume after time 10 with an annihilation period of 5 seconds:
6315 @example
6316 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6317 @end example
6318 @end itemize
6319
6320 @section volumedetect
6321
6322 Detect the volume of the input video.
6323
6324 The filter has no parameters. The input is not modified. Statistics about
6325 the volume will be printed in the log when the input stream end is reached.
6326
6327 In particular it will show the mean volume (root mean square), maximum
6328 volume (on a per-sample basis), and the beginning of a histogram of the
6329 registered volume values (from the maximum value to a cumulated 1/1000 of
6330 the samples).
6331
6332 All volumes are in decibels relative to the maximum PCM value.
6333
6334 @subsection Examples
6335
6336 Here is an excerpt of the output:
6337 @example
6338 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6339 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6340 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6341 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6342 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6343 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6344 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6345 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6346 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6347 @end example
6348
6349 It means that:
6350 @itemize
6351 @item
6352 The mean square energy is approximately -27 dB, or 10^-2.7.
6353 @item
6354 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6355 @item
6356 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6357 @end itemize
6358
6359 In other words, raising the volume by +4 dB does not cause any clipping,
6360 raising it by +5 dB causes clipping for 6 samples, etc.
6361
6362 @c man end AUDIO FILTERS
6363
6364 @chapter Audio Sources
6365 @c man begin AUDIO SOURCES
6366
6367 Below is a description of the currently available audio sources.
6368
6369 @section abuffer
6370
6371 Buffer audio frames, and make them available to the filter chain.
6372
6373 This source is mainly intended for a programmatic use, in particular
6374 through the interface defined in @file{libavfilter/buffersrc.h}.
6375
6376 It accepts the following parameters:
6377 @table @option
6378
6379 @item time_base
6380 The timebase which will be used for timestamps of submitted frames. It must be
6381 either a floating-point number or in @var{numerator}/@var{denominator} form.
6382
6383 @item sample_rate
6384 The sample rate of the incoming audio buffers.
6385
6386 @item sample_fmt
6387 The sample format of the incoming audio buffers.
6388 Either a sample format name or its corresponding integer representation from
6389 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6390
6391 @item channel_layout
6392 The channel layout of the incoming audio buffers.
6393 Either a channel layout name from channel_layout_map in
6394 @file{libavutil/channel_layout.c} or its corresponding integer representation
6395 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6396
6397 @item channels
6398 The number of channels of the incoming audio buffers.
6399 If both @var{channels} and @var{channel_layout} are specified, then they
6400 must be consistent.
6401
6402 @end table
6403
6404 @subsection Examples
6405
6406 @example
6407 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6408 @end example
6409
6410 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6411 Since the sample format with name "s16p" corresponds to the number
6412 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6413 equivalent to:
6414 @example
6415 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6416 @end example
6417
6418 @section aevalsrc
6419
6420 Generate an audio signal specified by an expression.
6421
6422 This source accepts in input one or more expressions (one for each
6423 channel), which are evaluated and used to generate a corresponding
6424 audio signal.
6425
6426 This source accepts the following options:
6427
6428 @table @option
6429 @item exprs
6430 Set the '|'-separated expressions list for each separate channel. In case the
6431 @option{channel_layout} option is not specified, the selected channel layout
6432 depends on the number of provided expressions. Otherwise the last
6433 specified expression is applied to the remaining output channels.
6434
6435 @item channel_layout, c
6436 Set the channel layout. The number of channels in the specified layout
6437 must be equal to the number of specified expressions.
6438
6439 @item duration, d
6440 Set the minimum duration of the sourced audio. See
6441 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6442 for the accepted syntax.
6443 Note that the resulting duration may be greater than the specified
6444 duration, as the generated audio is always cut at the end of a
6445 complete frame.
6446
6447 If not specified, or the expressed duration is negative, the audio is
6448 supposed to be generated forever.
6449
6450 @item nb_samples, n
6451 Set the number of samples per channel per each output frame,
6452 default to 1024.
6453
6454 @item sample_rate, s
6455 Specify the sample rate, default to 44100.
6456 @end table
6457
6458 Each expression in @var{exprs} can contain the following constants:
6459
6460 @table @option
6461 @item n
6462 number of the evaluated sample, starting from 0
6463
6464 @item t
6465 time of the evaluated sample expressed in seconds, starting from 0
6466
6467 @item s
6468 sample rate
6469
6470 @end table
6471
6472 @subsection Examples
6473
6474 @itemize
6475 @item
6476 Generate silence:
6477 @example
6478 aevalsrc=0
6479 @end example
6480
6481 @item
6482 Generate a sin signal with frequency of 440 Hz, set sample rate to
6483 8000 Hz:
6484 @example
6485 aevalsrc="sin(440*2*PI*t):s=8000"
6486 @end example
6487
6488 @item
6489 Generate a two channels signal, specify the channel layout (Front
6490 Center + Back Center) explicitly:
6491 @example
6492 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6493 @end example
6494
6495 @item
6496 Generate white noise:
6497 @example
6498 aevalsrc="-2+random(0)"
6499 @end example
6500
6501 @item
6502 Generate an amplitude modulated signal:
6503 @example
6504 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6505 @end example
6506
6507 @item
6508 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6509 @example
6510 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6511 @end example
6512
6513 @end itemize
6514
6515 @section afirsrc
6516
6517 Generate a FIR coefficients using frequency sampling method.
6518
6519 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6520
6521 The filter accepts the following options:
6522
6523 @table @option
6524 @item taps, t
6525 Set number of filter coefficents in output audio stream.
6526 Default value is 1025.
6527
6528 @item frequency, f
6529 Set frequency points from where magnitude and phase are set.
6530 This must be in non decreasing order, and first element must be 0, while last element
6531 must be 1. Elements are separated by white spaces.
6532
6533 @item magnitude, m
6534 Set magnitude value for every frequency point set by @option{frequency}.
6535 Number of values must be same as number of frequency points.
6536 Values are separated by white spaces.
6537
6538 @item phase, p
6539 Set phase value for every frequency point set by @option{frequency}.
6540 Number of values must be same as number of frequency points.
6541 Values are separated by white spaces.
6542
6543 @item sample_rate, r
6544 Set sample rate, default is 44100.
6545
6546 @item nb_samples, n
6547 Set number of samples per each frame. Default is 1024.
6548
6549 @item win_func, w
6550 Set window function. Default is blackman.
6551 @end table
6552
6553 @section anullsrc
6554
6555 The null audio source, return unprocessed audio frames. It is mainly useful
6556 as a template and to be employed in analysis / debugging tools, or as
6557 the source for filters which ignore the input data (for example the sox
6558 synth filter).
6559
6560 This source accepts the following options:
6561
6562 @table @option
6563
6564 @item channel_layout, cl
6565
6566 Specifies the channel layout, and can be either an integer or a string
6567 representing a channel layout. The default value of @var{channel_layout}
6568 is "stereo".
6569
6570 Check the channel_layout_map definition in
6571 @file{libavutil/channel_layout.c} for the mapping between strings and
6572 channel layout values.
6573
6574 @item sample_rate, r
6575 Specifies the sample rate, and defaults to 44100.
6576
6577 @item nb_samples, n
6578 Set the number of samples per requested frames.
6579
6580 @item duration, d
6581 Set the duration of the sourced audio. See
6582 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6583 for the accepted syntax.
6584
6585 If not specified, or the expressed duration is negative, the audio is
6586 supposed to be generated forever.
6587 @end table
6588
6589 @subsection Examples
6590
6591 @itemize
6592 @item
6593 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6594 @example
6595 anullsrc=r=48000:cl=4
6596 @end example
6597
6598 @item
6599 Do the same operation with a more obvious syntax:
6600 @example
6601 anullsrc=r=48000:cl=mono
6602 @end example
6603 @end itemize
6604
6605 All the parameters need to be explicitly defined.
6606
6607 @section flite
6608
6609 Synthesize a voice utterance using the libflite library.
6610
6611 To enable compilation of this filter you need to configure FFmpeg with
6612 @code{--enable-libflite}.
6613
6614 Note that versions of the flite library prior to 2.0 are not thread-safe.
6615
6616 The filter accepts the following options:
6617
6618 @table @option
6619
6620 @item list_voices
6621 If set to 1, list the names of the available voices and exit
6622 immediately. Default value is 0.
6623
6624 @item nb_samples, n
6625 Set the maximum number of samples per frame. Default value is 512.
6626
6627 @item textfile
6628 Set the filename containing the text to speak.
6629
6630 @item text
6631 Set the text to speak.
6632
6633 @item voice, v
6634 Set the voice to use for the speech synthesis. Default value is
6635 @code{kal}. See also the @var{list_voices} option.
6636 @end table
6637
6638 @subsection Examples
6639
6640 @itemize
6641 @item
6642 Read from file @file{speech.txt}, and synthesize the text using the
6643 standard flite voice:
6644 @example
6645 flite=textfile=speech.txt
6646 @end example
6647
6648 @item
6649 Read the specified text selecting the @code{slt} voice:
6650 @example
6651 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6652 @end example
6653
6654 @item
6655 Input text to ffmpeg:
6656 @example
6657 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6658 @end example
6659
6660 @item
6661 Make @file{ffplay} speak the specified text, using @code{flite} and
6662 the @code{lavfi} device:
6663 @example
6664 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6665 @end example
6666 @end itemize
6667
6668 For more information about libflite, check:
6669 @url{http://www.festvox.org/flite/}
6670
6671 @section anoisesrc
6672
6673 Generate a noise audio signal.
6674
6675 The filter accepts the following options:
6676
6677 @table @option
6678 @item sample_rate, r
6679 Specify the sample rate. Default value is 48000 Hz.
6680
6681 @item amplitude, a
6682 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6683 is 1.0.
6684
6685 @item duration, d
6686 Specify the duration of the generated audio stream. Not specifying this option
6687 results in noise with an infinite length.
6688
6689 @item color, colour, c
6690 Specify the color of noise. Available noise colors are white, pink, brown,
6691 blue, violet and velvet. Default color is white.
6692
6693 @item seed, s
6694 Specify a value used to seed the PRNG.
6695
6696 @item nb_samples, n
6697 Set the number of samples per each output frame, default is 1024.
6698 @end table
6699
6700 @subsection Examples
6701
6702 @itemize
6703
6704 @item
6705 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6706 @example
6707 anoisesrc=d=60:c=pink:r=44100:a=0.5
6708 @end example
6709 @end itemize
6710
6711 @section hilbert
6712
6713 Generate odd-tap Hilbert transform FIR coefficients.
6714
6715 The resulting stream can be used with @ref{afir} filter for phase-shifting
6716 the signal by 90 degrees.
6717
6718 This is used in many matrix coding schemes and for analytic signal generation.
6719 The process is often written as a multiplication by i (or j), the imaginary unit.
6720
6721 The filter accepts the following options:
6722
6723 @table @option
6724
6725 @item sample_rate, s
6726 Set sample rate, default is 44100.
6727
6728 @item taps, t
6729 Set length of FIR filter, default is 22051.
6730
6731 @item nb_samples, n
6732 Set number of samples per each frame.
6733
6734 @item win_func, w
6735 Set window function to be used when generating FIR coefficients.
6736 @end table
6737
6738 @section sinc
6739
6740 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6741
6742 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6743
6744 The filter accepts the following options:
6745
6746 @table @option
6747 @item sample_rate, r
6748 Set sample rate, default is 44100.
6749
6750 @item nb_samples, n
6751 Set number of samples per each frame. Default is 1024.
6752
6753 @item hp
6754 Set high-pass frequency. Default is 0.
6755
6756 @item lp
6757 Set low-pass frequency. Default is 0.
6758 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6759 is higher than 0 then filter will create band-pass filter coefficients,
6760 otherwise band-reject filter coefficients.
6761
6762 @item phase
6763 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6764
6765 @item beta
6766 Set Kaiser window beta.
6767
6768 @item att
6769 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6770
6771 @item round
6772 Enable rounding, by default is disabled.
6773
6774 @item hptaps
6775 Set number of taps for high-pass filter.
6776
6777 @item lptaps
6778 Set number of taps for low-pass filter.
6779 @end table
6780
6781 @section sine
6782
6783 Generate an audio signal made of a sine wave with amplitude 1/8.
6784
6785 The audio signal is bit-exact.
6786
6787 The filter accepts the following options:
6788
6789 @table @option
6790
6791 @item frequency, f
6792 Set the carrier frequency. Default is 440 Hz.
6793
6794 @item beep_factor, b
6795 Enable a periodic beep every second with frequency @var{beep_factor} times
6796 the carrier frequency. Default is 0, meaning the beep is disabled.
6797
6798 @item sample_rate, r
6799 Specify the sample rate, default is 44100.
6800
6801 @item duration, d
6802 Specify the duration of the generated audio stream.
6803
6804 @item samples_per_frame
6805 Set the number of samples per output frame.
6806
6807 The expression can contain the following constants:
6808
6809 @table @option
6810 @item n
6811 The (sequential) number of the output audio frame, starting from 0.
6812
6813 @item pts
6814 The PTS (Presentation TimeStamp) of the output audio frame,
6815 expressed in @var{TB} units.
6816
6817 @item t
6818 The PTS of the output audio frame, expressed in seconds.
6819
6820 @item TB
6821 The timebase of the output audio frames.
6822 @end table
6823
6824 Default is @code{1024}.
6825 @end table
6826
6827 @subsection Examples
6828
6829 @itemize
6830
6831 @item
6832 Generate a simple 440 Hz sine wave:
6833 @example
6834 sine
6835 @end example
6836
6837 @item
6838 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6839 @example
6840 sine=220:4:d=5
6841 sine=f=220:b=4:d=5
6842 sine=frequency=220:beep_factor=4:duration=5
6843 @end example
6844
6845 @item
6846 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6847 pattern:
6848 @example
6849 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6850 @end example
6851 @end itemize
6852
6853 @c man end AUDIO SOURCES
6854
6855 @chapter Audio Sinks
6856 @c man begin AUDIO SINKS
6857
6858 Below is a description of the currently available audio sinks.
6859
6860 @section abuffersink
6861
6862 Buffer audio frames, and make them available to the end of filter chain.
6863
6864 This sink is mainly intended for programmatic use, in particular
6865 through the interface defined in @file{libavfilter/buffersink.h}
6866 or the options system.
6867
6868 It accepts a pointer to an AVABufferSinkContext structure, which
6869 defines the incoming buffers' formats, to be passed as the opaque
6870 parameter to @code{avfilter_init_filter} for initialization.
6871 @section anullsink
6872
6873 Null audio sink; do absolutely nothing with the input audio. It is
6874 mainly useful as a template and for use in analysis / debugging
6875 tools.
6876
6877 @c man end AUDIO SINKS
6878
6879 @chapter Video Filters
6880 @c man begin VIDEO FILTERS
6881
6882 When you configure your FFmpeg build, you can disable any of the
6883 existing filters using @code{--disable-filters}.
6884 The configure output will show the video filters included in your
6885 build.
6886
6887 Below is a description of the currently available video filters.
6888
6889 @section addroi
6890
6891 Mark a region of interest in a video frame.
6892
6893 The frame data is passed through unchanged, but metadata is attached
6894 to the frame indicating regions of interest which can affect the
6895 behaviour of later encoding.  Multiple regions can be marked by
6896 applying the filter multiple times.
6897
6898 @table @option
6899 @item x
6900 Region distance in pixels from the left edge of the frame.
6901 @item y
6902 Region distance in pixels from the top edge of the frame.
6903 @item w
6904 Region width in pixels.
6905 @item h
6906 Region height in pixels.
6907
6908 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6909 and may contain the following variables:
6910 @table @option
6911 @item iw
6912 Width of the input frame.
6913 @item ih
6914 Height of the input frame.
6915 @end table
6916
6917 @item qoffset
6918 Quantisation offset to apply within the region.
6919
6920 This must be a real value in the range -1 to +1.  A value of zero
6921 indicates no quality change.  A negative value asks for better quality
6922 (less quantisation), while a positive value asks for worse quality
6923 (greater quantisation).
6924
6925 The range is calibrated so that the extreme values indicate the
6926 largest possible offset - if the rest of the frame is encoded with the
6927 worst possible quality, an offset of -1 indicates that this region
6928 should be encoded with the best possible quality anyway.  Intermediate
6929 values are then interpolated in some codec-dependent way.
6930
6931 For example, in 10-bit H.264 the quantisation parameter varies between
6932 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6933 this region should be encoded with a QP around one-tenth of the full
6934 range better than the rest of the frame.  So, if most of the frame
6935 were to be encoded with a QP of around 30, this region would get a QP
6936 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6937 An extreme value of -1 would indicate that this region should be
6938 encoded with the best possible quality regardless of the treatment of
6939 the rest of the frame - that is, should be encoded at a QP of -12.
6940 @item clear
6941 If set to true, remove any existing regions of interest marked on the
6942 frame before adding the new one.
6943 @end table
6944
6945 @subsection Examples
6946
6947 @itemize
6948 @item
6949 Mark the centre quarter of the frame as interesting.
6950 @example
6951 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6952 @end example
6953 @item
6954 Mark the 100-pixel-wide region on the left edge of the frame as very
6955 uninteresting (to be encoded at much lower quality than the rest of
6956 the frame).
6957 @example
6958 addroi=0:0:100:ih:+1/5
6959 @end example
6960 @end itemize
6961
6962 @section alphaextract
6963
6964 Extract the alpha component from the input as a grayscale video. This
6965 is especially useful with the @var{alphamerge} filter.
6966
6967 @section alphamerge
6968
6969 Add or replace the alpha component of the primary input with the
6970 grayscale value of a second input. This is intended for use with
6971 @var{alphaextract} to allow the transmission or storage of frame
6972 sequences that have alpha in a format that doesn't support an alpha
6973 channel.
6974
6975 For example, to reconstruct full frames from a normal YUV-encoded video
6976 and a separate video created with @var{alphaextract}, you might use:
6977 @example
6978 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6979 @end example
6980
6981 @section amplify
6982
6983 Amplify differences between current pixel and pixels of adjacent frames in
6984 same pixel location.
6985
6986 This filter accepts the following options:
6987
6988 @table @option
6989 @item radius
6990 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6991 For example radius of 3 will instruct filter to calculate average of 7 frames.
6992
6993 @item factor
6994 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6995
6996 @item threshold
6997 Set threshold for difference amplification. Any difference greater or equal to
6998 this value will not alter source pixel. Default is 10.
6999 Allowed range is from 0 to 65535.
7000
7001 @item tolerance
7002 Set tolerance for difference amplification. Any difference lower to
7003 this value will not alter source pixel. Default is 0.
7004 Allowed range is from 0 to 65535.
7005
7006 @item low
7007 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7008 This option controls maximum possible value that will decrease source pixel value.
7009
7010 @item high
7011 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7012 This option controls maximum possible value that will increase source pixel value.
7013
7014 @item planes
7015 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7016 @end table
7017
7018 @subsection Commands
7019
7020 This filter supports the following @ref{commands} that corresponds to option of same name:
7021 @table @option
7022 @item factor
7023 @item threshold
7024 @item tolerance
7025 @item low
7026 @item high
7027 @item planes
7028 @end table
7029
7030 @section ass
7031
7032 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7033 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7034 Substation Alpha) subtitles files.
7035
7036 This filter accepts the following option in addition to the common options from
7037 the @ref{subtitles} filter:
7038
7039 @table @option
7040 @item shaping
7041 Set the shaping engine
7042
7043 Available values are:
7044 @table @samp
7045 @item auto
7046 The default libass shaping engine, which is the best available.
7047 @item simple
7048 Fast, font-agnostic shaper that can do only substitutions
7049 @item complex
7050 Slower shaper using OpenType for substitutions and positioning
7051 @end table
7052
7053 The default is @code{auto}.
7054 @end table
7055
7056 @section atadenoise
7057 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7058
7059 The filter accepts the following options:
7060
7061 @table @option
7062 @item 0a
7063 Set threshold A for 1st plane. Default is 0.02.
7064 Valid range is 0 to 0.3.
7065
7066 @item 0b
7067 Set threshold B for 1st plane. Default is 0.04.
7068 Valid range is 0 to 5.
7069
7070 @item 1a
7071 Set threshold A for 2nd plane. Default is 0.02.
7072 Valid range is 0 to 0.3.
7073
7074 @item 1b
7075 Set threshold B for 2nd plane. Default is 0.04.
7076 Valid range is 0 to 5.
7077
7078 @item 2a
7079 Set threshold A for 3rd plane. Default is 0.02.
7080 Valid range is 0 to 0.3.
7081
7082 @item 2b
7083 Set threshold B for 3rd plane. Default is 0.04.
7084 Valid range is 0 to 5.
7085
7086 Threshold A is designed to react on abrupt changes in the input signal and
7087 threshold B is designed to react on continuous changes in the input signal.
7088
7089 @item s
7090 Set number of frames filter will use for averaging. Default is 9. Must be odd
7091 number in range [5, 129].
7092
7093 @item p
7094 Set what planes of frame filter will use for averaging. Default is all.
7095
7096 @item a
7097 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7098 Alternatively can be set to @code{s} serial.
7099
7100 Parallel can be faster then serial, while other way around is never true.
7101 Parallel will abort early on first change being greater then thresholds, while serial
7102 will continue processing other side of frames if they are equal or below thresholds.
7103
7104 @item 0s
7105 @item 1s
7106 @item 2s
7107 Set sigma for 1st plane, 2nd plane or 3rd plane. Default is 32767.
7108 Valid range is from 0 to 32767.
7109 This options controls weight for each pixel in radius defined by size.
7110 Default value means every pixel have same weight.
7111 Setting this option to 0 effectively disables filtering.
7112 @end table
7113
7114 @subsection Commands
7115 This filter supports same @ref{commands} as options except option @code{s}.
7116 The command accepts the same syntax of the corresponding option.
7117
7118 @section avgblur
7119
7120 Apply average blur filter.
7121
7122 The filter accepts the following options:
7123
7124 @table @option
7125 @item sizeX
7126 Set horizontal radius size.
7127
7128 @item planes
7129 Set which planes to filter. By default all planes are filtered.
7130
7131 @item sizeY
7132 Set vertical radius size, if zero it will be same as @code{sizeX}.
7133 Default is @code{0}.
7134 @end table
7135
7136 @subsection Commands
7137 This filter supports same commands as options.
7138 The command accepts the same syntax of the corresponding option.
7139
7140 If the specified expression is not valid, it is kept at its current
7141 value.
7142
7143 @section bbox
7144
7145 Compute the bounding box for the non-black pixels in the input frame
7146 luminance plane.
7147
7148 This filter computes the bounding box containing all the pixels with a
7149 luminance value greater than the minimum allowed value.
7150 The parameters describing the bounding box are printed on the filter
7151 log.
7152
7153 The filter accepts the following option:
7154
7155 @table @option
7156 @item min_val
7157 Set the minimal luminance value. Default is @code{16}.
7158 @end table
7159
7160 @subsection Commands
7161
7162 This filter supports the all above options as @ref{commands}.
7163
7164 @section bilateral
7165 Apply bilateral filter, spatial smoothing while preserving edges.
7166
7167 The filter accepts the following options:
7168 @table @option
7169 @item sigmaS
7170 Set sigma of gaussian function to calculate spatial weight.
7171 Allowed range is 0 to 512. Default is 0.1.
7172
7173 @item sigmaR
7174 Set sigma of gaussian function to calculate range weight.
7175 Allowed range is 0 to 1. Default is 0.1.
7176
7177 @item planes
7178 Set planes to filter. Default is first only.
7179 @end table
7180
7181 @subsection Commands
7182
7183 This filter supports the all above options as @ref{commands}.
7184
7185 @section bitplanenoise
7186
7187 Show and measure bit plane noise.
7188
7189 The filter accepts the following options:
7190
7191 @table @option
7192 @item bitplane
7193 Set which plane to analyze. Default is @code{1}.
7194
7195 @item filter
7196 Filter out noisy pixels from @code{bitplane} set above.
7197 Default is disabled.
7198 @end table
7199
7200 @section blackdetect
7201
7202 Detect video intervals that are (almost) completely black. Can be
7203 useful to detect chapter transitions, commercials, or invalid
7204 recordings.
7205
7206 The filter outputs its detection analysis to both the log as well as
7207 frame metadata. If a black segment of at least the specified minimum
7208 duration is found, a line with the start and end timestamps as well
7209 as duration is printed to the log with level @code{info}. In addition,
7210 a log line with level @code{debug} is printed per frame showing the
7211 black amount detected for that frame.
7212
7213 The filter also attaches metadata to the first frame of a black
7214 segment with key @code{lavfi.black_start} and to the first frame
7215 after the black segment ends with key @code{lavfi.black_end}. The
7216 value is the frame's timestamp. This metadata is added regardless
7217 of the minimum duration specified.
7218
7219 The filter accepts the following options:
7220
7221 @table @option
7222 @item black_min_duration, d
7223 Set the minimum detected black duration expressed in seconds. It must
7224 be a non-negative floating point number.
7225
7226 Default value is 2.0.
7227
7228 @item picture_black_ratio_th, pic_th
7229 Set the threshold for considering a picture "black".
7230 Express the minimum value for the ratio:
7231 @example
7232 @var{nb_black_pixels} / @var{nb_pixels}
7233 @end example
7234
7235 for which a picture is considered black.
7236 Default value is 0.98.
7237
7238 @item pixel_black_th, pix_th
7239 Set the threshold for considering a pixel "black".
7240
7241 The threshold expresses the maximum pixel luminance value for which a
7242 pixel is considered "black". The provided value is scaled according to
7243 the following equation:
7244 @example
7245 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7246 @end example
7247
7248 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7249 the input video format, the range is [0-255] for YUV full-range
7250 formats and [16-235] for YUV non full-range formats.
7251
7252 Default value is 0.10.
7253 @end table
7254
7255 The following example sets the maximum pixel threshold to the minimum
7256 value, and detects only black intervals of 2 or more seconds:
7257 @example
7258 blackdetect=d=2:pix_th=0.00
7259 @end example
7260
7261 @section blackframe
7262
7263 Detect frames that are (almost) completely black. Can be useful to
7264 detect chapter transitions or commercials. Output lines consist of
7265 the frame number of the detected frame, the percentage of blackness,
7266 the position in the file if known or -1 and the timestamp in seconds.
7267
7268 In order to display the output lines, you need to set the loglevel at
7269 least to the AV_LOG_INFO value.
7270
7271 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7272 The value represents the percentage of pixels in the picture that
7273 are below the threshold value.
7274
7275 It accepts the following parameters:
7276
7277 @table @option
7278
7279 @item amount
7280 The percentage of the pixels that have to be below the threshold; it defaults to
7281 @code{98}.
7282
7283 @item threshold, thresh
7284 The threshold below which a pixel value is considered black; it defaults to
7285 @code{32}.
7286
7287 @end table
7288
7289 @anchor{blend}
7290 @section blend
7291
7292 Blend two video frames into each other.
7293
7294 The @code{blend} filter takes two input streams and outputs one
7295 stream, the first input is the "top" layer and second input is
7296 "bottom" layer.  By default, the output terminates when the longest input terminates.
7297
7298 The @code{tblend} (time blend) filter takes two consecutive frames
7299 from one single stream, and outputs the result obtained by blending
7300 the new frame on top of the old frame.
7301
7302 A description of the accepted options follows.
7303
7304 @table @option
7305 @item c0_mode
7306 @item c1_mode
7307 @item c2_mode
7308 @item c3_mode
7309 @item all_mode
7310 Set blend mode for specific pixel component or all pixel components in case
7311 of @var{all_mode}. Default value is @code{normal}.
7312
7313 Available values for component modes are:
7314 @table @samp
7315 @item addition
7316 @item grainmerge
7317 @item and
7318 @item average
7319 @item burn
7320 @item darken
7321 @item difference
7322 @item grainextract
7323 @item divide
7324 @item dodge
7325 @item freeze
7326 @item exclusion
7327 @item extremity
7328 @item glow
7329 @item hardlight
7330 @item hardmix
7331 @item heat
7332 @item lighten
7333 @item linearlight
7334 @item multiply
7335 @item multiply128
7336 @item negation
7337 @item normal
7338 @item or
7339 @item overlay
7340 @item phoenix
7341 @item pinlight
7342 @item reflect
7343 @item screen
7344 @item softlight
7345 @item subtract
7346 @item vividlight
7347 @item xor
7348 @end table
7349
7350 @item c0_opacity
7351 @item c1_opacity
7352 @item c2_opacity
7353 @item c3_opacity
7354 @item all_opacity
7355 Set blend opacity for specific pixel component or all pixel components in case
7356 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7357
7358 @item c0_expr
7359 @item c1_expr
7360 @item c2_expr
7361 @item c3_expr
7362 @item all_expr
7363 Set blend expression for specific pixel component or all pixel components in case
7364 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7365
7366 The expressions can use the following variables:
7367
7368 @table @option
7369 @item N
7370 The sequential number of the filtered frame, starting from @code{0}.
7371
7372 @item X
7373 @item Y
7374 the coordinates of the current sample
7375
7376 @item W
7377 @item H
7378 the width and height of currently filtered plane
7379
7380 @item SW
7381 @item SH
7382 Width and height scale for the plane being filtered. It is the
7383 ratio between the dimensions of the current plane to the luma plane,
7384 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7385 the luma plane and @code{0.5,0.5} for the chroma planes.
7386
7387 @item T
7388 Time of the current frame, expressed in seconds.
7389
7390 @item TOP, A
7391 Value of pixel component at current location for first video frame (top layer).
7392
7393 @item BOTTOM, B
7394 Value of pixel component at current location for second video frame (bottom layer).
7395 @end table
7396 @end table
7397
7398 The @code{blend} filter also supports the @ref{framesync} options.
7399
7400 @subsection Examples
7401
7402 @itemize
7403 @item
7404 Apply transition from bottom layer to top layer in first 10 seconds:
7405 @example
7406 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7407 @end example
7408
7409 @item
7410 Apply linear horizontal transition from top layer to bottom layer:
7411 @example
7412 blend=all_expr='A*(X/W)+B*(1-X/W)'
7413 @end example
7414
7415 @item
7416 Apply 1x1 checkerboard effect:
7417 @example
7418 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7419 @end example
7420
7421 @item
7422 Apply uncover left effect:
7423 @example
7424 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7425 @end example
7426
7427 @item
7428 Apply uncover down effect:
7429 @example
7430 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7431 @end example
7432
7433 @item
7434 Apply uncover up-left effect:
7435 @example
7436 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7437 @end example
7438
7439 @item
7440 Split diagonally video and shows top and bottom layer on each side:
7441 @example
7442 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7443 @end example
7444
7445 @item
7446 Display differences between the current and the previous frame:
7447 @example
7448 tblend=all_mode=grainextract
7449 @end example
7450 @end itemize
7451
7452 @section bm3d
7453
7454 Denoise frames using Block-Matching 3D algorithm.
7455
7456 The filter accepts the following options.
7457
7458 @table @option
7459 @item sigma
7460 Set denoising strength. Default value is 1.
7461 Allowed range is from 0 to 999.9.
7462 The denoising algorithm is very sensitive to sigma, so adjust it
7463 according to the source.
7464
7465 @item block
7466 Set local patch size. This sets dimensions in 2D.
7467
7468 @item bstep
7469 Set sliding step for processing blocks. Default value is 4.
7470 Allowed range is from 1 to 64.
7471 Smaller values allows processing more reference blocks and is slower.
7472
7473 @item group
7474 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7475 When set to 1, no block matching is done. Larger values allows more blocks
7476 in single group.
7477 Allowed range is from 1 to 256.
7478
7479 @item range
7480 Set radius for search block matching. Default is 9.
7481 Allowed range is from 1 to INT32_MAX.
7482
7483 @item mstep
7484 Set step between two search locations for block matching. Default is 1.
7485 Allowed range is from 1 to 64. Smaller is slower.
7486
7487 @item thmse
7488 Set threshold of mean square error for block matching. Valid range is 0 to
7489 INT32_MAX.
7490
7491 @item hdthr
7492 Set thresholding parameter for hard thresholding in 3D transformed domain.
7493 Larger values results in stronger hard-thresholding filtering in frequency
7494 domain.
7495
7496 @item estim
7497 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7498 Default is @code{basic}.
7499
7500 @item ref
7501 If enabled, filter will use 2nd stream for block matching.
7502 Default is disabled for @code{basic} value of @var{estim} option,
7503 and always enabled if value of @var{estim} is @code{final}.
7504
7505 @item planes
7506 Set planes to filter. Default is all available except alpha.
7507 @end table
7508
7509 @subsection Examples
7510
7511 @itemize
7512 @item
7513 Basic filtering with bm3d:
7514 @example
7515 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7516 @end example
7517
7518 @item
7519 Same as above, but filtering only luma:
7520 @example
7521 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7522 @end example
7523
7524 @item
7525 Same as above, but with both estimation modes:
7526 @example
7527 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
7528 @end example
7529
7530 @item
7531 Same as above, but prefilter with @ref{nlmeans} filter instead:
7532 @example
7533 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
7534 @end example
7535 @end itemize
7536
7537 @section boxblur
7538
7539 Apply a boxblur algorithm to the input video.
7540
7541 It accepts the following parameters:
7542
7543 @table @option
7544
7545 @item luma_radius, lr
7546 @item luma_power, lp
7547 @item chroma_radius, cr
7548 @item chroma_power, cp
7549 @item alpha_radius, ar
7550 @item alpha_power, ap
7551
7552 @end table
7553
7554 A description of the accepted options follows.
7555
7556 @table @option
7557 @item luma_radius, lr
7558 @item chroma_radius, cr
7559 @item alpha_radius, ar
7560 Set an expression for the box radius in pixels used for blurring the
7561 corresponding input plane.
7562
7563 The radius value must be a non-negative number, and must not be
7564 greater than the value of the expression @code{min(w,h)/2} for the
7565 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7566 planes.
7567
7568 Default value for @option{luma_radius} is "2". If not specified,
7569 @option{chroma_radius} and @option{alpha_radius} default to the
7570 corresponding value set for @option{luma_radius}.
7571
7572 The expressions can contain the following constants:
7573 @table @option
7574 @item w
7575 @item h
7576 The input width and height in pixels.
7577
7578 @item cw
7579 @item ch
7580 The input chroma image width and height in pixels.
7581
7582 @item hsub
7583 @item vsub
7584 The horizontal and vertical chroma subsample values. For example, for the
7585 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7586 @end table
7587
7588 @item luma_power, lp
7589 @item chroma_power, cp
7590 @item alpha_power, ap
7591 Specify how many times the boxblur filter is applied to the
7592 corresponding plane.
7593
7594 Default value for @option{luma_power} is 2. If not specified,
7595 @option{chroma_power} and @option{alpha_power} default to the
7596 corresponding value set for @option{luma_power}.
7597
7598 A value of 0 will disable the effect.
7599 @end table
7600
7601 @subsection Examples
7602
7603 @itemize
7604 @item
7605 Apply a boxblur filter with the luma, chroma, and alpha radii
7606 set to 2:
7607 @example
7608 boxblur=luma_radius=2:luma_power=1
7609 boxblur=2:1
7610 @end example
7611
7612 @item
7613 Set the luma radius to 2, and alpha and chroma radius to 0:
7614 @example
7615 boxblur=2:1:cr=0:ar=0
7616 @end example
7617
7618 @item
7619 Set the luma and chroma radii to a fraction of the video dimension:
7620 @example
7621 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7622 @end example
7623 @end itemize
7624
7625 @section bwdif
7626
7627 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7628 Deinterlacing Filter").
7629
7630 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7631 interpolation algorithms.
7632 It accepts the following parameters:
7633
7634 @table @option
7635 @item mode
7636 The interlacing mode to adopt. It accepts one of the following values:
7637
7638 @table @option
7639 @item 0, send_frame
7640 Output one frame for each frame.
7641 @item 1, send_field
7642 Output one frame for each field.
7643 @end table
7644
7645 The default value is @code{send_field}.
7646
7647 @item parity
7648 The picture field parity assumed for the input interlaced video. It accepts one
7649 of the following values:
7650
7651 @table @option
7652 @item 0, tff
7653 Assume the top field is first.
7654 @item 1, bff
7655 Assume the bottom field is first.
7656 @item -1, auto
7657 Enable automatic detection of field parity.
7658 @end table
7659
7660 The default value is @code{auto}.
7661 If the interlacing is unknown or the decoder does not export this information,
7662 top field first will be assumed.
7663
7664 @item deint
7665 Specify which frames to deinterlace. Accepts one of the following
7666 values:
7667
7668 @table @option
7669 @item 0, all
7670 Deinterlace all frames.
7671 @item 1, interlaced
7672 Only deinterlace frames marked as interlaced.
7673 @end table
7674
7675 The default value is @code{all}.
7676 @end table
7677
7678 @section cas
7679
7680 Apply Contrast Adaptive Sharpen filter to video stream.
7681
7682 The filter accepts the following options:
7683
7684 @table @option
7685 @item strength
7686 Set the sharpening strength. Default value is 0.
7687
7688 @item planes
7689 Set planes to filter. Default value is to filter all
7690 planes except alpha plane.
7691 @end table
7692
7693 @subsection Commands
7694 This filter supports same @ref{commands} as options.
7695
7696 @section chromahold
7697 Remove all color information for all colors except for certain one.
7698
7699 The filter accepts the following options:
7700
7701 @table @option
7702 @item color
7703 The color which will not be replaced with neutral chroma.
7704
7705 @item similarity
7706 Similarity percentage with the above color.
7707 0.01 matches only the exact key color, while 1.0 matches everything.
7708
7709 @item blend
7710 Blend percentage.
7711 0.0 makes pixels either fully gray, or not gray at all.
7712 Higher values result in more preserved color.
7713
7714 @item yuv
7715 Signals that the color passed is already in YUV instead of RGB.
7716
7717 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7718 This can be used to pass exact YUV values as hexadecimal numbers.
7719 @end table
7720
7721 @subsection Commands
7722 This filter supports same @ref{commands} as options.
7723 The command accepts the same syntax of the corresponding option.
7724
7725 If the specified expression is not valid, it is kept at its current
7726 value.
7727
7728 @section chromakey
7729 YUV colorspace color/chroma keying.
7730
7731 The filter accepts the following options:
7732
7733 @table @option
7734 @item color
7735 The color which will be replaced with transparency.
7736
7737 @item similarity
7738 Similarity percentage with the key color.
7739
7740 0.01 matches only the exact key color, while 1.0 matches everything.
7741
7742 @item blend
7743 Blend percentage.
7744
7745 0.0 makes pixels either fully transparent, or not transparent at all.
7746
7747 Higher values result in semi-transparent pixels, with a higher transparency
7748 the more similar the pixels color is to the key color.
7749
7750 @item yuv
7751 Signals that the color passed is already in YUV instead of RGB.
7752
7753 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7754 This can be used to pass exact YUV values as hexadecimal numbers.
7755 @end table
7756
7757 @subsection Commands
7758 This filter supports same @ref{commands} as options.
7759 The command accepts the same syntax of the corresponding option.
7760
7761 If the specified expression is not valid, it is kept at its current
7762 value.
7763
7764 @subsection Examples
7765
7766 @itemize
7767 @item
7768 Make every green pixel in the input image transparent:
7769 @example
7770 ffmpeg -i input.png -vf chromakey=green out.png
7771 @end example
7772
7773 @item
7774 Overlay a greenscreen-video on top of a static black background.
7775 @example
7776 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
7777 @end example
7778 @end itemize
7779
7780 @section chromanr
7781 Reduce chrominance noise.
7782
7783 The filter accepts the following options:
7784
7785 @table @option
7786 @item thres
7787 Set threshold for averaging chrominance values.
7788 Sum of absolute difference of Y, U and V pixel components of current
7789 pixel and neighbour pixels lower than this threshold will be used in
7790 averaging. Luma component is left unchanged and is copied to output.
7791 Default value is 30. Allowed range is from 1 to 200.
7792
7793 @item sizew
7794 Set horizontal radius of rectangle used for averaging.
7795 Allowed range is from 1 to 100. Default value is 5.
7796
7797 @item sizeh
7798 Set vertical radius of rectangle used for averaging.
7799 Allowed range is from 1 to 100. Default value is 5.
7800
7801 @item stepw
7802 Set horizontal step when averaging. Default value is 1.
7803 Allowed range is from 1 to 50.
7804 Mostly useful to speed-up filtering.
7805
7806 @item steph
7807 Set vertical step when averaging. Default value is 1.
7808 Allowed range is from 1 to 50.
7809 Mostly useful to speed-up filtering.
7810
7811 @item threy
7812 Set Y threshold for averaging chrominance values.
7813 Set finer control for max allowed difference between Y components
7814 of current pixel and neigbour pixels.
7815 Default value is 200. Allowed range is from 1 to 200.
7816
7817 @item threu
7818 Set U threshold for averaging chrominance values.
7819 Set finer control for max allowed difference between U components
7820 of current pixel and neigbour pixels.
7821 Default value is 200. Allowed range is from 1 to 200.
7822
7823 @item threv
7824 Set V threshold for averaging chrominance values.
7825 Set finer control for max allowed difference between V components
7826 of current pixel and neigbour pixels.
7827 Default value is 200. Allowed range is from 1 to 200.
7828 @end table
7829
7830 @subsection Commands
7831 This filter supports same @ref{commands} as options.
7832 The command accepts the same syntax of the corresponding option.
7833
7834 @section chromashift
7835 Shift chroma pixels horizontally and/or vertically.
7836
7837 The filter accepts the following options:
7838 @table @option
7839 @item cbh
7840 Set amount to shift chroma-blue horizontally.
7841 @item cbv
7842 Set amount to shift chroma-blue vertically.
7843 @item crh
7844 Set amount to shift chroma-red horizontally.
7845 @item crv
7846 Set amount to shift chroma-red vertically.
7847 @item edge
7848 Set edge mode, can be @var{smear}, default, or @var{warp}.
7849 @end table
7850
7851 @subsection Commands
7852
7853 This filter supports the all above options as @ref{commands}.
7854
7855 @section ciescope
7856
7857 Display CIE color diagram with pixels overlaid onto it.
7858
7859 The filter accepts the following options:
7860
7861 @table @option
7862 @item system
7863 Set color system.
7864
7865 @table @samp
7866 @item ntsc, 470m
7867 @item ebu, 470bg
7868 @item smpte
7869 @item 240m
7870 @item apple
7871 @item widergb
7872 @item cie1931
7873 @item rec709, hdtv
7874 @item uhdtv, rec2020
7875 @item dcip3
7876 @end table
7877
7878 @item cie
7879 Set CIE system.
7880
7881 @table @samp
7882 @item xyy
7883 @item ucs
7884 @item luv
7885 @end table
7886
7887 @item gamuts
7888 Set what gamuts to draw.
7889
7890 See @code{system} option for available values.
7891
7892 @item size, s
7893 Set ciescope size, by default set to 512.
7894
7895 @item intensity, i
7896 Set intensity used to map input pixel values to CIE diagram.
7897
7898 @item contrast
7899 Set contrast used to draw tongue colors that are out of active color system gamut.
7900
7901 @item corrgamma
7902 Correct gamma displayed on scope, by default enabled.
7903
7904 @item showwhite
7905 Show white point on CIE diagram, by default disabled.
7906
7907 @item gamma
7908 Set input gamma. Used only with XYZ input color space.
7909 @end table
7910
7911 @section codecview
7912
7913 Visualize information exported by some codecs.
7914
7915 Some codecs can export information through frames using side-data or other
7916 means. For example, some MPEG based codecs export motion vectors through the
7917 @var{export_mvs} flag in the codec @option{flags2} option.
7918
7919 The filter accepts the following option:
7920
7921 @table @option
7922 @item mv
7923 Set motion vectors to visualize.
7924
7925 Available flags for @var{mv} are:
7926
7927 @table @samp
7928 @item pf
7929 forward predicted MVs of P-frames
7930 @item bf
7931 forward predicted MVs of B-frames
7932 @item bb
7933 backward predicted MVs of B-frames
7934 @end table
7935
7936 @item qp
7937 Display quantization parameters using the chroma planes.
7938
7939 @item mv_type, mvt
7940 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7941
7942 Available flags for @var{mv_type} are:
7943
7944 @table @samp
7945 @item fp
7946 forward predicted MVs
7947 @item bp
7948 backward predicted MVs
7949 @end table
7950
7951 @item frame_type, ft
7952 Set frame type to visualize motion vectors of.
7953
7954 Available flags for @var{frame_type} are:
7955
7956 @table @samp
7957 @item if
7958 intra-coded frames (I-frames)
7959 @item pf
7960 predicted frames (P-frames)
7961 @item bf
7962 bi-directionally predicted frames (B-frames)
7963 @end table
7964 @end table
7965
7966 @subsection Examples
7967
7968 @itemize
7969 @item
7970 Visualize forward predicted MVs of all frames using @command{ffplay}:
7971 @example
7972 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7973 @end example
7974
7975 @item
7976 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7977 @example
7978 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7979 @end example
7980 @end itemize
7981
7982 @section colorbalance
7983 Modify intensity of primary colors (red, green and blue) of input frames.
7984
7985 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7986 regions for the red-cyan, green-magenta or blue-yellow balance.
7987
7988 A positive adjustment value shifts the balance towards the primary color, a negative
7989 value towards the complementary color.
7990
7991 The filter accepts the following options:
7992
7993 @table @option
7994 @item rs
7995 @item gs
7996 @item bs
7997 Adjust red, green and blue shadows (darkest pixels).
7998
7999 @item rm
8000 @item gm
8001 @item bm
8002 Adjust red, green and blue midtones (medium pixels).
8003
8004 @item rh
8005 @item gh
8006 @item bh
8007 Adjust red, green and blue highlights (brightest pixels).
8008
8009 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8010
8011 @item pl
8012 Preserve lightness when changing color balance. Default is disabled.
8013 @end table
8014
8015 @subsection Examples
8016
8017 @itemize
8018 @item
8019 Add red color cast to shadows:
8020 @example
8021 colorbalance=rs=.3
8022 @end example
8023 @end itemize
8024
8025 @subsection Commands
8026
8027 This filter supports the all above options as @ref{commands}.
8028
8029 @section colorcontrast
8030
8031 Adjust color contrast between RGB components.
8032
8033 The filter accepts the following options:
8034
8035 @table @option
8036 @item rc
8037 Set the red-cyan contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8038
8039 @item gm
8040 Set the green-magenta contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8041
8042 @item by
8043 Set the blue-yellow contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8044
8045 @item rcw
8046 @item gmw
8047 @item byw
8048 Set the weight of each @code{rc}, @code{gm}, @code{by} option value. Default value is 0.0.
8049 Allowed range is from 0.0 to 1.0. If all weights are 0.0 filtering is disabled.
8050
8051 @item pl
8052 Set the amount of preserving lightness. Default value is 0.0. Allowed range is from 0.0 to 1.0.
8053 @end table
8054
8055 @subsection Commands
8056
8057 This filter supports the all above options as @ref{commands}.
8058
8059 @section colorcorrect
8060
8061 Adjust color white balance selectively for blacks and whites.
8062 This filter operates in YUV colorspace.
8063
8064 The filter accepts the following options:
8065
8066 @table @option
8067 @item rl
8068 Set the red shadow spot. Allowed range is from -1.0 to 1.0.
8069 Default value is 0.
8070
8071 @item bl
8072 Set the blue shadow spot. Allowed range is from -1.0 to 1.0.
8073 Default value is 0.
8074
8075 @item rh
8076 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8077 Default value is 0.
8078
8079 @item bh
8080 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8081 Default value is 0.
8082
8083 @item saturation
8084 Set the amount of saturation. Allowed range is from -3.0 to 3.0.
8085 Default value is 1.
8086 @end table
8087
8088 @subsection Commands
8089
8090 This filter supports the all above options as @ref{commands}.
8091
8092 @section colorchannelmixer
8093
8094 Adjust video input frames by re-mixing color channels.
8095
8096 This filter modifies a color channel by adding the values associated to
8097 the other channels of the same pixels. For example if the value to
8098 modify is red, the output value will be:
8099 @example
8100 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8101 @end example
8102
8103 The filter accepts the following options:
8104
8105 @table @option
8106 @item rr
8107 @item rg
8108 @item rb
8109 @item ra
8110 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8111 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8112
8113 @item gr
8114 @item gg
8115 @item gb
8116 @item ga
8117 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8118 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8119
8120 @item br
8121 @item bg
8122 @item bb
8123 @item ba
8124 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8125 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8126
8127 @item ar
8128 @item ag
8129 @item ab
8130 @item aa
8131 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8132 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8133
8134 Allowed ranges for options are @code{[-2.0, 2.0]}.
8135
8136 @item pl
8137 Preserve lightness when changing colors. Allowed range is from @code{[0.0, 1.0]}.
8138 Default is @code{0.0}, thus disabled.
8139 @end table
8140
8141 @subsection Examples
8142
8143 @itemize
8144 @item
8145 Convert source to grayscale:
8146 @example
8147 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8148 @end example
8149 @item
8150 Simulate sepia tones:
8151 @example
8152 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8153 @end example
8154 @end itemize
8155
8156 @subsection Commands
8157
8158 This filter supports the all above options as @ref{commands}.
8159
8160 @section colorkey
8161 RGB colorspace color keying.
8162
8163 The filter accepts the following options:
8164
8165 @table @option
8166 @item color
8167 The color which will be replaced with transparency.
8168
8169 @item similarity
8170 Similarity percentage with the key color.
8171
8172 0.01 matches only the exact key color, while 1.0 matches everything.
8173
8174 @item blend
8175 Blend percentage.
8176
8177 0.0 makes pixels either fully transparent, or not transparent at all.
8178
8179 Higher values result in semi-transparent pixels, with a higher transparency
8180 the more similar the pixels color is to the key color.
8181 @end table
8182
8183 @subsection Examples
8184
8185 @itemize
8186 @item
8187 Make every green pixel in the input image transparent:
8188 @example
8189 ffmpeg -i input.png -vf colorkey=green out.png
8190 @end example
8191
8192 @item
8193 Overlay a greenscreen-video on top of a static background image.
8194 @example
8195 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
8196 @end example
8197 @end itemize
8198
8199 @subsection Commands
8200 This filter supports same @ref{commands} as options.
8201 The command accepts the same syntax of the corresponding option.
8202
8203 If the specified expression is not valid, it is kept at its current
8204 value.
8205
8206 @section colorhold
8207 Remove all color information for all RGB colors except for certain one.
8208
8209 The filter accepts the following options:
8210
8211 @table @option
8212 @item color
8213 The color which will not be replaced with neutral gray.
8214
8215 @item similarity
8216 Similarity percentage with the above color.
8217 0.01 matches only the exact key color, while 1.0 matches everything.
8218
8219 @item blend
8220 Blend percentage. 0.0 makes pixels fully gray.
8221 Higher values result in more preserved color.
8222 @end table
8223
8224 @subsection Commands
8225 This filter supports same @ref{commands} as options.
8226 The command accepts the same syntax of the corresponding option.
8227
8228 If the specified expression is not valid, it is kept at its current
8229 value.
8230
8231 @section colorlevels
8232
8233 Adjust video input frames using levels.
8234
8235 The filter accepts the following options:
8236
8237 @table @option
8238 @item rimin
8239 @item gimin
8240 @item bimin
8241 @item aimin
8242 Adjust red, green, blue and alpha input black point.
8243 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8244
8245 @item rimax
8246 @item gimax
8247 @item bimax
8248 @item aimax
8249 Adjust red, green, blue and alpha input white point.
8250 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8251
8252 Input levels are used to lighten highlights (bright tones), darken shadows
8253 (dark tones), change the balance of bright and dark tones.
8254
8255 @item romin
8256 @item gomin
8257 @item bomin
8258 @item aomin
8259 Adjust red, green, blue and alpha output black point.
8260 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8261
8262 @item romax
8263 @item gomax
8264 @item bomax
8265 @item aomax
8266 Adjust red, green, blue and alpha output white point.
8267 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8268
8269 Output levels allows manual selection of a constrained output level range.
8270 @end table
8271
8272 @subsection Examples
8273
8274 @itemize
8275 @item
8276 Make video output darker:
8277 @example
8278 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8279 @end example
8280
8281 @item
8282 Increase contrast:
8283 @example
8284 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8285 @end example
8286
8287 @item
8288 Make video output lighter:
8289 @example
8290 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8291 @end example
8292
8293 @item
8294 Increase brightness:
8295 @example
8296 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8297 @end example
8298 @end itemize
8299
8300 @subsection Commands
8301
8302 This filter supports the all above options as @ref{commands}.
8303
8304 @section colormatrix
8305
8306 Convert color matrix.
8307
8308 The filter accepts the following options:
8309
8310 @table @option
8311 @item src
8312 @item dst
8313 Specify the source and destination color matrix. Both values must be
8314 specified.
8315
8316 The accepted values are:
8317 @table @samp
8318 @item bt709
8319 BT.709
8320
8321 @item fcc
8322 FCC
8323
8324 @item bt601
8325 BT.601
8326
8327 @item bt470
8328 BT.470
8329
8330 @item bt470bg
8331 BT.470BG
8332
8333 @item smpte170m
8334 SMPTE-170M
8335
8336 @item smpte240m
8337 SMPTE-240M
8338
8339 @item bt2020
8340 BT.2020
8341 @end table
8342 @end table
8343
8344 For example to convert from BT.601 to SMPTE-240M, use the command:
8345 @example
8346 colormatrix=bt601:smpte240m
8347 @end example
8348
8349 @section colorspace
8350
8351 Convert colorspace, transfer characteristics or color primaries.
8352 Input video needs to have an even size.
8353
8354 The filter accepts the following options:
8355
8356 @table @option
8357 @anchor{all}
8358 @item all
8359 Specify all color properties at once.
8360
8361 The accepted values are:
8362 @table @samp
8363 @item bt470m
8364 BT.470M
8365
8366 @item bt470bg
8367 BT.470BG
8368
8369 @item bt601-6-525
8370 BT.601-6 525
8371
8372 @item bt601-6-625
8373 BT.601-6 625
8374
8375 @item bt709
8376 BT.709
8377
8378 @item smpte170m
8379 SMPTE-170M
8380
8381 @item smpte240m
8382 SMPTE-240M
8383
8384 @item bt2020
8385 BT.2020
8386
8387 @end table
8388
8389 @anchor{space}
8390 @item space
8391 Specify output colorspace.
8392
8393 The accepted values are:
8394 @table @samp
8395 @item bt709
8396 BT.709
8397
8398 @item fcc
8399 FCC
8400
8401 @item bt470bg
8402 BT.470BG or BT.601-6 625
8403
8404 @item smpte170m
8405 SMPTE-170M or BT.601-6 525
8406
8407 @item smpte240m
8408 SMPTE-240M
8409
8410 @item ycgco
8411 YCgCo
8412
8413 @item bt2020ncl
8414 BT.2020 with non-constant luminance
8415
8416 @end table
8417
8418 @anchor{trc}
8419 @item trc
8420 Specify output transfer characteristics.
8421
8422 The accepted values are:
8423 @table @samp
8424 @item bt709
8425 BT.709
8426
8427 @item bt470m
8428 BT.470M
8429
8430 @item bt470bg
8431 BT.470BG
8432
8433 @item gamma22
8434 Constant gamma of 2.2
8435
8436 @item gamma28
8437 Constant gamma of 2.8
8438
8439 @item smpte170m
8440 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8441
8442 @item smpte240m
8443 SMPTE-240M
8444
8445 @item srgb
8446 SRGB
8447
8448 @item iec61966-2-1
8449 iec61966-2-1
8450
8451 @item iec61966-2-4
8452 iec61966-2-4
8453
8454 @item xvycc
8455 xvycc
8456
8457 @item bt2020-10
8458 BT.2020 for 10-bits content
8459
8460 @item bt2020-12
8461 BT.2020 for 12-bits content
8462
8463 @end table
8464
8465 @anchor{primaries}
8466 @item primaries
8467 Specify output color primaries.
8468
8469 The accepted values are:
8470 @table @samp
8471 @item bt709
8472 BT.709
8473
8474 @item bt470m
8475 BT.470M
8476
8477 @item bt470bg
8478 BT.470BG or BT.601-6 625
8479
8480 @item smpte170m
8481 SMPTE-170M or BT.601-6 525
8482
8483 @item smpte240m
8484 SMPTE-240M
8485
8486 @item film
8487 film
8488
8489 @item smpte431
8490 SMPTE-431
8491
8492 @item smpte432
8493 SMPTE-432
8494
8495 @item bt2020
8496 BT.2020
8497
8498 @item jedec-p22
8499 JEDEC P22 phosphors
8500
8501 @end table
8502
8503 @anchor{range}
8504 @item range
8505 Specify output color range.
8506
8507 The accepted values are:
8508 @table @samp
8509 @item tv
8510 TV (restricted) range
8511
8512 @item mpeg
8513 MPEG (restricted) range
8514
8515 @item pc
8516 PC (full) range
8517
8518 @item jpeg
8519 JPEG (full) range
8520
8521 @end table
8522
8523 @item format
8524 Specify output color format.
8525
8526 The accepted values are:
8527 @table @samp
8528 @item yuv420p
8529 YUV 4:2:0 planar 8-bits
8530
8531 @item yuv420p10
8532 YUV 4:2:0 planar 10-bits
8533
8534 @item yuv420p12
8535 YUV 4:2:0 planar 12-bits
8536
8537 @item yuv422p
8538 YUV 4:2:2 planar 8-bits
8539
8540 @item yuv422p10
8541 YUV 4:2:2 planar 10-bits
8542
8543 @item yuv422p12
8544 YUV 4:2:2 planar 12-bits
8545
8546 @item yuv444p
8547 YUV 4:4:4 planar 8-bits
8548
8549 @item yuv444p10
8550 YUV 4:4:4 planar 10-bits
8551
8552 @item yuv444p12
8553 YUV 4:4:4 planar 12-bits
8554
8555 @end table
8556
8557 @item fast
8558 Do a fast conversion, which skips gamma/primary correction. This will take
8559 significantly less CPU, but will be mathematically incorrect. To get output
8560 compatible with that produced by the colormatrix filter, use fast=1.
8561
8562 @item dither
8563 Specify dithering mode.
8564
8565 The accepted values are:
8566 @table @samp
8567 @item none
8568 No dithering
8569
8570 @item fsb
8571 Floyd-Steinberg dithering
8572 @end table
8573
8574 @item wpadapt
8575 Whitepoint adaptation mode.
8576
8577 The accepted values are:
8578 @table @samp
8579 @item bradford
8580 Bradford whitepoint adaptation
8581
8582 @item vonkries
8583 von Kries whitepoint adaptation
8584
8585 @item identity
8586 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8587 @end table
8588
8589 @item iall
8590 Override all input properties at once. Same accepted values as @ref{all}.
8591
8592 @item ispace
8593 Override input colorspace. Same accepted values as @ref{space}.
8594
8595 @item iprimaries
8596 Override input color primaries. Same accepted values as @ref{primaries}.
8597
8598 @item itrc
8599 Override input transfer characteristics. Same accepted values as @ref{trc}.
8600
8601 @item irange
8602 Override input color range. Same accepted values as @ref{range}.
8603
8604 @end table
8605
8606 The filter converts the transfer characteristics, color space and color
8607 primaries to the specified user values. The output value, if not specified,
8608 is set to a default value based on the "all" property. If that property is
8609 also not specified, the filter will log an error. The output color range and
8610 format default to the same value as the input color range and format. The
8611 input transfer characteristics, color space, color primaries and color range
8612 should be set on the input data. If any of these are missing, the filter will
8613 log an error and no conversion will take place.
8614
8615 For example to convert the input to SMPTE-240M, use the command:
8616 @example
8617 colorspace=smpte240m
8618 @end example
8619
8620 @section colortemperature
8621 Adjust color temperature in video to simulate variations in ambient color temperature.
8622
8623 The filter accepts the following options:
8624
8625 @table @option
8626 @item temperature
8627 Set the temperature in Kelvin. Allowed range is from 1000 to 40000.
8628 Default value is 6500 K.
8629
8630 @item mix
8631 Set mixing with filtered output. Allowed range is from 0 to 1.
8632 Default value is 1.
8633
8634 @item pl
8635 Set the amount of preserving lightness. Allowed range is from 0 to 1.
8636 Default value is 0.
8637 @end table
8638
8639 @subsection Commands
8640 This filter supports same @ref{commands} as options.
8641
8642 @section convolution
8643
8644 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8645
8646 The filter accepts the following options:
8647
8648 @table @option
8649 @item 0m
8650 @item 1m
8651 @item 2m
8652 @item 3m
8653 Set matrix for each plane.
8654 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8655 and from 1 to 49 odd number of signed integers in @var{row} mode.
8656
8657 @item 0rdiv
8658 @item 1rdiv
8659 @item 2rdiv
8660 @item 3rdiv
8661 Set multiplier for calculated value for each plane.
8662 If unset or 0, it will be sum of all matrix elements.
8663
8664 @item 0bias
8665 @item 1bias
8666 @item 2bias
8667 @item 3bias
8668 Set bias for each plane. This value is added to the result of the multiplication.
8669 Useful for making the overall image brighter or darker. Default is 0.0.
8670
8671 @item 0mode
8672 @item 1mode
8673 @item 2mode
8674 @item 3mode
8675 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8676 Default is @var{square}.
8677 @end table
8678
8679 @subsection Commands
8680
8681 This filter supports the all above options as @ref{commands}.
8682
8683 @subsection Examples
8684
8685 @itemize
8686 @item
8687 Apply sharpen:
8688 @example
8689 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"
8690 @end example
8691
8692 @item
8693 Apply blur:
8694 @example
8695 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"
8696 @end example
8697
8698 @item
8699 Apply edge enhance:
8700 @example
8701 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"
8702 @end example
8703
8704 @item
8705 Apply edge detect:
8706 @example
8707 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"
8708 @end example
8709
8710 @item
8711 Apply laplacian edge detector which includes diagonals:
8712 @example
8713 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"
8714 @end example
8715
8716 @item
8717 Apply emboss:
8718 @example
8719 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"
8720 @end example
8721 @end itemize
8722
8723 @section convolve
8724
8725 Apply 2D convolution of video stream in frequency domain using second stream
8726 as impulse.
8727
8728 The filter accepts the following options:
8729
8730 @table @option
8731 @item planes
8732 Set which planes to process.
8733
8734 @item impulse
8735 Set which impulse video frames will be processed, can be @var{first}
8736 or @var{all}. Default is @var{all}.
8737 @end table
8738
8739 The @code{convolve} filter also supports the @ref{framesync} options.
8740
8741 @section copy
8742
8743 Copy the input video source unchanged to the output. This is mainly useful for
8744 testing purposes.
8745
8746 @anchor{coreimage}
8747 @section coreimage
8748 Video filtering on GPU using Apple's CoreImage API on OSX.
8749
8750 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8751 processed by video hardware. However, software-based OpenGL implementations
8752 exist which means there is no guarantee for hardware processing. It depends on
8753 the respective OSX.
8754
8755 There are many filters and image generators provided by Apple that come with a
8756 large variety of options. The filter has to be referenced by its name along
8757 with its options.
8758
8759 The coreimage filter accepts the following options:
8760 @table @option
8761 @item list_filters
8762 List all available filters and generators along with all their respective
8763 options as well as possible minimum and maximum values along with the default
8764 values.
8765 @example
8766 list_filters=true
8767 @end example
8768
8769 @item filter
8770 Specify all filters by their respective name and options.
8771 Use @var{list_filters} to determine all valid filter names and options.
8772 Numerical options are specified by a float value and are automatically clamped
8773 to their respective value range.  Vector and color options have to be specified
8774 by a list of space separated float values. Character escaping has to be done.
8775 A special option name @code{default} is available to use default options for a
8776 filter.
8777
8778 It is required to specify either @code{default} or at least one of the filter options.
8779 All omitted options are used with their default values.
8780 The syntax of the filter string is as follows:
8781 @example
8782 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8783 @end example
8784
8785 @item output_rect
8786 Specify a rectangle where the output of the filter chain is copied into the
8787 input image. It is given by a list of space separated float values:
8788 @example
8789 output_rect=x\ y\ width\ height
8790 @end example
8791 If not given, the output rectangle equals the dimensions of the input image.
8792 The output rectangle is automatically cropped at the borders of the input
8793 image. Negative values are valid for each component.
8794 @example
8795 output_rect=25\ 25\ 100\ 100
8796 @end example
8797 @end table
8798
8799 Several filters can be chained for successive processing without GPU-HOST
8800 transfers allowing for fast processing of complex filter chains.
8801 Currently, only filters with zero (generators) or exactly one (filters) input
8802 image and one output image are supported. Also, transition filters are not yet
8803 usable as intended.
8804
8805 Some filters generate output images with additional padding depending on the
8806 respective filter kernel. The padding is automatically removed to ensure the
8807 filter output has the same size as the input image.
8808
8809 For image generators, the size of the output image is determined by the
8810 previous output image of the filter chain or the input image of the whole
8811 filterchain, respectively. The generators do not use the pixel information of
8812 this image to generate their output. However, the generated output is
8813 blended onto this image, resulting in partial or complete coverage of the
8814 output image.
8815
8816 The @ref{coreimagesrc} video source can be used for generating input images
8817 which are directly fed into the filter chain. By using it, providing input
8818 images by another video source or an input video is not required.
8819
8820 @subsection Examples
8821
8822 @itemize
8823
8824 @item
8825 List all filters available:
8826 @example
8827 coreimage=list_filters=true
8828 @end example
8829
8830 @item
8831 Use the CIBoxBlur filter with default options to blur an image:
8832 @example
8833 coreimage=filter=CIBoxBlur@@default
8834 @end example
8835
8836 @item
8837 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8838 its center at 100x100 and a radius of 50 pixels:
8839 @example
8840 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8841 @end example
8842
8843 @item
8844 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8845 given as complete and escaped command-line for Apple's standard bash shell:
8846 @example
8847 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8848 @end example
8849 @end itemize
8850
8851 @section cover_rect
8852
8853 Cover a rectangular object
8854
8855 It accepts the following options:
8856
8857 @table @option
8858 @item cover
8859 Filepath of the optional cover image, needs to be in yuv420.
8860
8861 @item mode
8862 Set covering mode.
8863
8864 It accepts the following values:
8865 @table @samp
8866 @item cover
8867 cover it by the supplied image
8868 @item blur
8869 cover it by interpolating the surrounding pixels
8870 @end table
8871
8872 Default value is @var{blur}.
8873 @end table
8874
8875 @subsection Examples
8876
8877 @itemize
8878 @item
8879 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8880 @example
8881 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8882 @end example
8883 @end itemize
8884
8885 @section crop
8886
8887 Crop the input video to given dimensions.
8888
8889 It accepts the following parameters:
8890
8891 @table @option
8892 @item w, out_w
8893 The width of the output video. It defaults to @code{iw}.
8894 This expression is evaluated only once during the filter
8895 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8896
8897 @item h, out_h
8898 The height of the output video. It defaults to @code{ih}.
8899 This expression is evaluated only once during the filter
8900 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8901
8902 @item x
8903 The horizontal position, in the input video, of the left edge of the output
8904 video. It defaults to @code{(in_w-out_w)/2}.
8905 This expression is evaluated per-frame.
8906
8907 @item y
8908 The vertical position, in the input video, of the top edge of the output video.
8909 It defaults to @code{(in_h-out_h)/2}.
8910 This expression is evaluated per-frame.
8911
8912 @item keep_aspect
8913 If set to 1 will force the output display aspect ratio
8914 to be the same of the input, by changing the output sample aspect
8915 ratio. It defaults to 0.
8916
8917 @item exact
8918 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8919 width/height/x/y as specified and will not be rounded to nearest smaller value.
8920 It defaults to 0.
8921 @end table
8922
8923 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8924 expressions containing the following constants:
8925
8926 @table @option
8927 @item x
8928 @item y
8929 The computed values for @var{x} and @var{y}. They are evaluated for
8930 each new frame.
8931
8932 @item in_w
8933 @item in_h
8934 The input width and height.
8935
8936 @item iw
8937 @item ih
8938 These are the same as @var{in_w} and @var{in_h}.
8939
8940 @item out_w
8941 @item out_h
8942 The output (cropped) width and height.
8943
8944 @item ow
8945 @item oh
8946 These are the same as @var{out_w} and @var{out_h}.
8947
8948 @item a
8949 same as @var{iw} / @var{ih}
8950
8951 @item sar
8952 input sample aspect ratio
8953
8954 @item dar
8955 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8956
8957 @item hsub
8958 @item vsub
8959 horizontal and vertical chroma subsample values. For example for the
8960 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8961
8962 @item n
8963 The number of the input frame, starting from 0.
8964
8965 @item pos
8966 the position in the file of the input frame, NAN if unknown
8967
8968 @item t
8969 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8970
8971 @end table
8972
8973 The expression for @var{out_w} may depend on the value of @var{out_h},
8974 and the expression for @var{out_h} may depend on @var{out_w}, but they
8975 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8976 evaluated after @var{out_w} and @var{out_h}.
8977
8978 The @var{x} and @var{y} parameters specify the expressions for the
8979 position of the top-left corner of the output (non-cropped) area. They
8980 are evaluated for each frame. If the evaluated value is not valid, it
8981 is approximated to the nearest valid value.
8982
8983 The expression for @var{x} may depend on @var{y}, and the expression
8984 for @var{y} may depend on @var{x}.
8985
8986 @subsection Examples
8987
8988 @itemize
8989 @item
8990 Crop area with size 100x100 at position (12,34).
8991 @example
8992 crop=100:100:12:34
8993 @end example
8994
8995 Using named options, the example above becomes:
8996 @example
8997 crop=w=100:h=100:x=12:y=34
8998 @end example
8999
9000 @item
9001 Crop the central input area with size 100x100:
9002 @example
9003 crop=100:100
9004 @end example
9005
9006 @item
9007 Crop the central input area with size 2/3 of the input video:
9008 @example
9009 crop=2/3*in_w:2/3*in_h
9010 @end example
9011
9012 @item
9013 Crop the input video central square:
9014 @example
9015 crop=out_w=in_h
9016 crop=in_h
9017 @end example
9018
9019 @item
9020 Delimit the rectangle with the top-left corner placed at position
9021 100:100 and the right-bottom corner corresponding to the right-bottom
9022 corner of the input image.
9023 @example
9024 crop=in_w-100:in_h-100:100:100
9025 @end example
9026
9027 @item
9028 Crop 10 pixels from the left and right borders, and 20 pixels from
9029 the top and bottom borders
9030 @example
9031 crop=in_w-2*10:in_h-2*20
9032 @end example
9033
9034 @item
9035 Keep only the bottom right quarter of the input image:
9036 @example
9037 crop=in_w/2:in_h/2:in_w/2:in_h/2
9038 @end example
9039
9040 @item
9041 Crop height for getting Greek harmony:
9042 @example
9043 crop=in_w:1/PHI*in_w
9044 @end example
9045
9046 @item
9047 Apply trembling effect:
9048 @example
9049 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)
9050 @end example
9051
9052 @item
9053 Apply erratic camera effect depending on timestamp:
9054 @example
9055 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)"
9056 @end example
9057
9058 @item
9059 Set x depending on the value of y:
9060 @example
9061 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
9062 @end example
9063 @end itemize
9064
9065 @subsection Commands
9066
9067 This filter supports the following commands:
9068 @table @option
9069 @item w, out_w
9070 @item h, out_h
9071 @item x
9072 @item y
9073 Set width/height of the output video and the horizontal/vertical position
9074 in the input video.
9075 The command accepts the same syntax of the corresponding option.
9076
9077 If the specified expression is not valid, it is kept at its current
9078 value.
9079 @end table
9080
9081 @section cropdetect
9082
9083 Auto-detect the crop size.
9084
9085 It calculates the necessary cropping parameters and prints the
9086 recommended parameters via the logging system. The detected dimensions
9087 correspond to the non-black area of the input video.
9088
9089 It accepts the following parameters:
9090
9091 @table @option
9092
9093 @item limit
9094 Set higher black value threshold, which can be optionally specified
9095 from nothing (0) to everything (255 for 8-bit based formats). An intensity
9096 value greater to the set value is considered non-black. It defaults to 24.
9097 You can also specify a value between 0.0 and 1.0 which will be scaled depending
9098 on the bitdepth of the pixel format.
9099
9100 @item round
9101 The value which the width/height should be divisible by. It defaults to
9102 16. The offset is automatically adjusted to center the video. Use 2 to
9103 get only even dimensions (needed for 4:2:2 video). 16 is best when
9104 encoding to most video codecs.
9105
9106 @item skip
9107 Set the number of initial frames for which evaluation is skipped.
9108 Default is 2. Range is 0 to INT_MAX.
9109
9110 @item reset_count, reset
9111 Set the counter that determines after how many frames cropdetect will
9112 reset the previously detected largest video area and start over to
9113 detect the current optimal crop area. Default value is 0.
9114
9115 This can be useful when channel logos distort the video area. 0
9116 indicates 'never reset', and returns the largest area encountered during
9117 playback.
9118 @end table
9119
9120 @anchor{cue}
9121 @section cue
9122
9123 Delay video filtering until a given wallclock timestamp. The filter first
9124 passes on @option{preroll} amount of frames, then it buffers at most
9125 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9126 it forwards the buffered frames and also any subsequent frames coming in its
9127 input.
9128
9129 The filter can be used synchronize the output of multiple ffmpeg processes for
9130 realtime output devices like decklink. By putting the delay in the filtering
9131 chain and pre-buffering frames the process can pass on data to output almost
9132 immediately after the target wallclock timestamp is reached.
9133
9134 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9135 some use cases.
9136
9137 @table @option
9138
9139 @item cue
9140 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9141
9142 @item preroll
9143 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9144
9145 @item buffer
9146 The maximum duration of content to buffer before waiting for the cue expressed
9147 in seconds. Default is 0.
9148
9149 @end table
9150
9151 @anchor{curves}
9152 @section curves
9153
9154 Apply color adjustments using curves.
9155
9156 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9157 component (red, green and blue) has its values defined by @var{N} key points
9158 tied from each other using a smooth curve. The x-axis represents the pixel
9159 values from the input frame, and the y-axis the new pixel values to be set for
9160 the output frame.
9161
9162 By default, a component curve is defined by the two points @var{(0;0)} and
9163 @var{(1;1)}. This creates a straight line where each original pixel value is
9164 "adjusted" to its own value, which means no change to the image.
9165
9166 The filter allows you to redefine these two points and add some more. A new
9167 curve (using a natural cubic spline interpolation) will be define to pass
9168 smoothly through all these new coordinates. The new defined points needs to be
9169 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9170 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9171 the vector spaces, the values will be clipped accordingly.
9172
9173 The filter accepts the following options:
9174
9175 @table @option
9176 @item preset
9177 Select one of the available color presets. This option can be used in addition
9178 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9179 options takes priority on the preset values.
9180 Available presets are:
9181 @table @samp
9182 @item none
9183 @item color_negative
9184 @item cross_process
9185 @item darker
9186 @item increase_contrast
9187 @item lighter
9188 @item linear_contrast
9189 @item medium_contrast
9190 @item negative
9191 @item strong_contrast
9192 @item vintage
9193 @end table
9194 Default is @code{none}.
9195 @item master, m
9196 Set the master key points. These points will define a second pass mapping. It
9197 is sometimes called a "luminance" or "value" mapping. It can be used with
9198 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9199 post-processing LUT.
9200 @item red, r
9201 Set the key points for the red component.
9202 @item green, g
9203 Set the key points for the green component.
9204 @item blue, b
9205 Set the key points for the blue component.
9206 @item all
9207 Set the key points for all components (not including master).
9208 Can be used in addition to the other key points component
9209 options. In this case, the unset component(s) will fallback on this
9210 @option{all} setting.
9211 @item psfile
9212 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9213 @item plot
9214 Save Gnuplot script of the curves in specified file.
9215 @end table
9216
9217 To avoid some filtergraph syntax conflicts, each key points list need to be
9218 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9219
9220 @subsection Examples
9221
9222 @itemize
9223 @item
9224 Increase slightly the middle level of blue:
9225 @example
9226 curves=blue='0/0 0.5/0.58 1/1'
9227 @end example
9228
9229 @item
9230 Vintage effect:
9231 @example
9232 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'
9233 @end example
9234 Here we obtain the following coordinates for each components:
9235 @table @var
9236 @item red
9237 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9238 @item green
9239 @code{(0;0) (0.50;0.48) (1;1)}
9240 @item blue
9241 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9242 @end table
9243
9244 @item
9245 The previous example can also be achieved with the associated built-in preset:
9246 @example
9247 curves=preset=vintage
9248 @end example
9249
9250 @item
9251 Or simply:
9252 @example
9253 curves=vintage
9254 @end example
9255
9256 @item
9257 Use a Photoshop preset and redefine the points of the green component:
9258 @example
9259 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9260 @end example
9261
9262 @item
9263 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9264 and @command{gnuplot}:
9265 @example
9266 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9267 gnuplot -p /tmp/curves.plt
9268 @end example
9269 @end itemize
9270
9271 @section datascope
9272
9273 Video data analysis filter.
9274
9275 This filter shows hexadecimal pixel values of part of video.
9276
9277 The filter accepts the following options:
9278
9279 @table @option
9280 @item size, s
9281 Set output video size.
9282
9283 @item x
9284 Set x offset from where to pick pixels.
9285
9286 @item y
9287 Set y offset from where to pick pixels.
9288
9289 @item mode
9290 Set scope mode, can be one of the following:
9291 @table @samp
9292 @item mono
9293 Draw hexadecimal pixel values with white color on black background.
9294
9295 @item color
9296 Draw hexadecimal pixel values with input video pixel color on black
9297 background.
9298
9299 @item color2
9300 Draw hexadecimal pixel values on color background picked from input video,
9301 the text color is picked in such way so its always visible.
9302 @end table
9303
9304 @item axis
9305 Draw rows and columns numbers on left and top of video.
9306
9307 @item opacity
9308 Set background opacity.
9309
9310 @item format
9311 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9312
9313 @item components
9314 Set pixel components to display. By default all pixel components are displayed.
9315 @end table
9316
9317 @section dblur
9318 Apply Directional blur filter.
9319
9320 The filter accepts the following options:
9321
9322 @table @option
9323 @item angle
9324 Set angle of directional blur. Default is @code{45}.
9325
9326 @item radius
9327 Set radius of directional blur. Default is @code{5}.
9328
9329 @item planes
9330 Set which planes to filter. By default all planes are filtered.
9331 @end table
9332
9333 @subsection Commands
9334 This filter supports same @ref{commands} as options.
9335 The command accepts the same syntax of the corresponding option.
9336
9337 If the specified expression is not valid, it is kept at its current
9338 value.
9339
9340 @section dctdnoiz
9341
9342 Denoise frames using 2D DCT (frequency domain filtering).
9343
9344 This filter is not designed for real time.
9345
9346 The filter accepts the following options:
9347
9348 @table @option
9349 @item sigma, s
9350 Set the noise sigma constant.
9351
9352 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9353 coefficient (absolute value) below this threshold with be dropped.
9354
9355 If you need a more advanced filtering, see @option{expr}.
9356
9357 Default is @code{0}.
9358
9359 @item overlap
9360 Set number overlapping pixels for each block. Since the filter can be slow, you
9361 may want to reduce this value, at the cost of a less effective filter and the
9362 risk of various artefacts.
9363
9364 If the overlapping value doesn't permit processing the whole input width or
9365 height, a warning will be displayed and according borders won't be denoised.
9366
9367 Default value is @var{blocksize}-1, which is the best possible setting.
9368
9369 @item expr, e
9370 Set the coefficient factor expression.
9371
9372 For each coefficient of a DCT block, this expression will be evaluated as a
9373 multiplier value for the coefficient.
9374
9375 If this is option is set, the @option{sigma} option will be ignored.
9376
9377 The absolute value of the coefficient can be accessed through the @var{c}
9378 variable.
9379
9380 @item n
9381 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9382 @var{blocksize}, which is the width and height of the processed blocks.
9383
9384 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9385 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9386 on the speed processing. Also, a larger block size does not necessarily means a
9387 better de-noising.
9388 @end table
9389
9390 @subsection Examples
9391
9392 Apply a denoise with a @option{sigma} of @code{4.5}:
9393 @example
9394 dctdnoiz=4.5
9395 @end example
9396
9397 The same operation can be achieved using the expression system:
9398 @example
9399 dctdnoiz=e='gte(c, 4.5*3)'
9400 @end example
9401
9402 Violent denoise using a block size of @code{16x16}:
9403 @example
9404 dctdnoiz=15:n=4
9405 @end example
9406
9407 @section deband
9408
9409 Remove banding artifacts from input video.
9410 It works by replacing banded pixels with average value of referenced pixels.
9411
9412 The filter accepts the following options:
9413
9414 @table @option
9415 @item 1thr
9416 @item 2thr
9417 @item 3thr
9418 @item 4thr
9419 Set banding detection threshold for each plane. Default is 0.02.
9420 Valid range is 0.00003 to 0.5.
9421 If difference between current pixel and reference pixel is less than threshold,
9422 it will be considered as banded.
9423
9424 @item range, r
9425 Banding detection range in pixels. Default is 16. If positive, random number
9426 in range 0 to set value will be used. If negative, exact absolute value
9427 will be used.
9428 The range defines square of four pixels around current pixel.
9429
9430 @item direction, d
9431 Set direction in radians from which four pixel will be compared. If positive,
9432 random direction from 0 to set direction will be picked. If negative, exact of
9433 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9434 will pick only pixels on same row and -PI/2 will pick only pixels on same
9435 column.
9436
9437 @item blur, b
9438 If enabled, current pixel is compared with average value of all four
9439 surrounding pixels. The default is enabled. If disabled current pixel is
9440 compared with all four surrounding pixels. The pixel is considered banded
9441 if only all four differences with surrounding pixels are less than threshold.
9442
9443 @item coupling, c
9444 If enabled, current pixel is changed if and only if all pixel components are banded,
9445 e.g. banding detection threshold is triggered for all color components.
9446 The default is disabled.
9447 @end table
9448
9449 @section deblock
9450
9451 Remove blocking artifacts from input video.
9452
9453 The filter accepts the following options:
9454
9455 @table @option
9456 @item filter
9457 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9458 This controls what kind of deblocking is applied.
9459
9460 @item block
9461 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9462
9463 @item alpha
9464 @item beta
9465 @item gamma
9466 @item delta
9467 Set blocking detection thresholds. Allowed range is 0 to 1.
9468 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9469 Using higher threshold gives more deblocking strength.
9470 Setting @var{alpha} controls threshold detection at exact edge of block.
9471 Remaining options controls threshold detection near the edge. Each one for
9472 below/above or left/right. Setting any of those to @var{0} disables
9473 deblocking.
9474
9475 @item planes
9476 Set planes to filter. Default is to filter all available planes.
9477 @end table
9478
9479 @subsection Examples
9480
9481 @itemize
9482 @item
9483 Deblock using weak filter and block size of 4 pixels.
9484 @example
9485 deblock=filter=weak:block=4
9486 @end example
9487
9488 @item
9489 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9490 deblocking more edges.
9491 @example
9492 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9493 @end example
9494
9495 @item
9496 Similar as above, but filter only first plane.
9497 @example
9498 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9499 @end example
9500
9501 @item
9502 Similar as above, but filter only second and third plane.
9503 @example
9504 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9505 @end example
9506 @end itemize
9507
9508 @anchor{decimate}
9509 @section decimate
9510
9511 Drop duplicated frames at regular intervals.
9512
9513 The filter accepts the following options:
9514
9515 @table @option
9516 @item cycle
9517 Set the number of frames from which one will be dropped. Setting this to
9518 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9519 Default is @code{5}.
9520
9521 @item dupthresh
9522 Set the threshold for duplicate detection. If the difference metric for a frame
9523 is less than or equal to this value, then it is declared as duplicate. Default
9524 is @code{1.1}
9525
9526 @item scthresh
9527 Set scene change threshold. Default is @code{15}.
9528
9529 @item blockx
9530 @item blocky
9531 Set the size of the x and y-axis blocks used during metric calculations.
9532 Larger blocks give better noise suppression, but also give worse detection of
9533 small movements. Must be a power of two. Default is @code{32}.
9534
9535 @item ppsrc
9536 Mark main input as a pre-processed input and activate clean source input
9537 stream. This allows the input to be pre-processed with various filters to help
9538 the metrics calculation while keeping the frame selection lossless. When set to
9539 @code{1}, the first stream is for the pre-processed input, and the second
9540 stream is the clean source from where the kept frames are chosen. Default is
9541 @code{0}.
9542
9543 @item chroma
9544 Set whether or not chroma is considered in the metric calculations. Default is
9545 @code{1}.
9546 @end table
9547
9548 @section deconvolve
9549
9550 Apply 2D deconvolution of video stream in frequency domain using second stream
9551 as impulse.
9552
9553 The filter accepts the following options:
9554
9555 @table @option
9556 @item planes
9557 Set which planes to process.
9558
9559 @item impulse
9560 Set which impulse video frames will be processed, can be @var{first}
9561 or @var{all}. Default is @var{all}.
9562
9563 @item noise
9564 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9565 and height are not same and not power of 2 or if stream prior to convolving
9566 had noise.
9567 @end table
9568
9569 The @code{deconvolve} filter also supports the @ref{framesync} options.
9570
9571 @section dedot
9572
9573 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9574
9575 It accepts the following options:
9576
9577 @table @option
9578 @item m
9579 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9580 @var{rainbows} for cross-color reduction.
9581
9582 @item lt
9583 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9584
9585 @item tl
9586 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9587
9588 @item tc
9589 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9590
9591 @item ct
9592 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9593 @end table
9594
9595 @section deflate
9596
9597 Apply deflate effect to the video.
9598
9599 This filter replaces the pixel by the local(3x3) average by taking into account
9600 only values lower than the pixel.
9601
9602 It accepts the following options:
9603
9604 @table @option
9605 @item threshold0
9606 @item threshold1
9607 @item threshold2
9608 @item threshold3
9609 Limit the maximum change for each plane, default is 65535.
9610 If 0, plane will remain unchanged.
9611 @end table
9612
9613 @subsection Commands
9614
9615 This filter supports the all above options as @ref{commands}.
9616
9617 @section deflicker
9618
9619 Remove temporal frame luminance variations.
9620
9621 It accepts the following options:
9622
9623 @table @option
9624 @item size, s
9625 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9626
9627 @item mode, m
9628 Set averaging mode to smooth temporal luminance variations.
9629
9630 Available values are:
9631 @table @samp
9632 @item am
9633 Arithmetic mean
9634
9635 @item gm
9636 Geometric mean
9637
9638 @item hm
9639 Harmonic mean
9640
9641 @item qm
9642 Quadratic mean
9643
9644 @item cm
9645 Cubic mean
9646
9647 @item pm
9648 Power mean
9649
9650 @item median
9651 Median
9652 @end table
9653
9654 @item bypass
9655 Do not actually modify frame. Useful when one only wants metadata.
9656 @end table
9657
9658 @section dejudder
9659
9660 Remove judder produced by partially interlaced telecined content.
9661
9662 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9663 source was partially telecined content then the output of @code{pullup,dejudder}
9664 will have a variable frame rate. May change the recorded frame rate of the
9665 container. Aside from that change, this filter will not affect constant frame
9666 rate video.
9667
9668 The option available in this filter is:
9669 @table @option
9670
9671 @item cycle
9672 Specify the length of the window over which the judder repeats.
9673
9674 Accepts any integer greater than 1. Useful values are:
9675 @table @samp
9676
9677 @item 4
9678 If the original was telecined from 24 to 30 fps (Film to NTSC).
9679
9680 @item 5
9681 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9682
9683 @item 20
9684 If a mixture of the two.
9685 @end table
9686
9687 The default is @samp{4}.
9688 @end table
9689
9690 @section delogo
9691
9692 Suppress a TV station logo by a simple interpolation of the surrounding
9693 pixels. Just set a rectangle covering the logo and watch it disappear
9694 (and sometimes something even uglier appear - your mileage may vary).
9695
9696 It accepts the following parameters:
9697 @table @option
9698
9699 @item x
9700 @item y
9701 Specify the top left corner coordinates of the logo. They must be
9702 specified.
9703
9704 @item w
9705 @item h
9706 Specify the width and height of the logo to clear. They must be
9707 specified.
9708
9709 @item band, t
9710 Specify the thickness of the fuzzy edge of the rectangle (added to
9711 @var{w} and @var{h}). The default value is 1. This option is
9712 deprecated, setting higher values should no longer be necessary and
9713 is not recommended.
9714
9715 @item show
9716 When set to 1, a green rectangle is drawn on the screen to simplify
9717 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9718 The default value is 0.
9719
9720 The rectangle is drawn on the outermost pixels which will be (partly)
9721 replaced with interpolated values. The values of the next pixels
9722 immediately outside this rectangle in each direction will be used to
9723 compute the interpolated pixel values inside the rectangle.
9724
9725 @end table
9726
9727 @subsection Examples
9728
9729 @itemize
9730 @item
9731 Set a rectangle covering the area with top left corner coordinates 0,0
9732 and size 100x77, and a band of size 10:
9733 @example
9734 delogo=x=0:y=0:w=100:h=77:band=10
9735 @end example
9736
9737 @end itemize
9738
9739 @anchor{derain}
9740 @section derain
9741
9742 Remove the rain in the input image/video by applying the derain methods based on
9743 convolutional neural networks. Supported models:
9744
9745 @itemize
9746 @item
9747 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9748 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9749 @end itemize
9750
9751 Training as well as model generation scripts are provided in
9752 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9753
9754 Native model files (.model) can be generated from TensorFlow model
9755 files (.pb) by using tools/python/convert.py
9756
9757 The filter accepts the following options:
9758
9759 @table @option
9760 @item filter_type
9761 Specify which filter to use. This option accepts the following values:
9762
9763 @table @samp
9764 @item derain
9765 Derain filter. To conduct derain filter, you need to use a derain model.
9766
9767 @item dehaze
9768 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9769 @end table
9770 Default value is @samp{derain}.
9771
9772 @item dnn_backend
9773 Specify which DNN backend to use for model loading and execution. This option accepts
9774 the following values:
9775
9776 @table @samp
9777 @item native
9778 Native implementation of DNN loading and execution.
9779
9780 @item tensorflow
9781 TensorFlow backend. To enable this backend you
9782 need to install the TensorFlow for C library (see
9783 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9784 @code{--enable-libtensorflow}
9785 @end table
9786 Default value is @samp{native}.
9787
9788 @item model
9789 Set path to model file specifying network architecture and its parameters.
9790 Note that different backends use different file formats. TensorFlow and native
9791 backend can load files for only its format.
9792 @end table
9793
9794 It can also be finished with @ref{dnn_processing} filter.
9795
9796 @section deshake
9797
9798 Attempt to fix small changes in horizontal and/or vertical shift. This
9799 filter helps remove camera shake from hand-holding a camera, bumping a
9800 tripod, moving on a vehicle, etc.
9801
9802 The filter accepts the following options:
9803
9804 @table @option
9805
9806 @item x
9807 @item y
9808 @item w
9809 @item h
9810 Specify a rectangular area where to limit the search for motion
9811 vectors.
9812 If desired the search for motion vectors can be limited to a
9813 rectangular area of the frame defined by its top left corner, width
9814 and height. These parameters have the same meaning as the drawbox
9815 filter which can be used to visualise the position of the bounding
9816 box.
9817
9818 This is useful when simultaneous movement of subjects within the frame
9819 might be confused for camera motion by the motion vector search.
9820
9821 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9822 then the full frame is used. This allows later options to be set
9823 without specifying the bounding box for the motion vector search.
9824
9825 Default - search the whole frame.
9826
9827 @item rx
9828 @item ry
9829 Specify the maximum extent of movement in x and y directions in the
9830 range 0-64 pixels. Default 16.
9831
9832 @item edge
9833 Specify how to generate pixels to fill blanks at the edge of the
9834 frame. Available values are:
9835 @table @samp
9836 @item blank, 0
9837 Fill zeroes at blank locations
9838 @item original, 1
9839 Original image at blank locations
9840 @item clamp, 2
9841 Extruded edge value at blank locations
9842 @item mirror, 3
9843 Mirrored edge at blank locations
9844 @end table
9845 Default value is @samp{mirror}.
9846
9847 @item blocksize
9848 Specify the blocksize to use for motion search. Range 4-128 pixels,
9849 default 8.
9850
9851 @item contrast
9852 Specify the contrast threshold for blocks. Only blocks with more than
9853 the specified contrast (difference between darkest and lightest
9854 pixels) will be considered. Range 1-255, default 125.
9855
9856 @item search
9857 Specify the search strategy. Available values are:
9858 @table @samp
9859 @item exhaustive, 0
9860 Set exhaustive search
9861 @item less, 1
9862 Set less exhaustive search.
9863 @end table
9864 Default value is @samp{exhaustive}.
9865
9866 @item filename
9867 If set then a detailed log of the motion search is written to the
9868 specified file.
9869
9870 @end table
9871
9872 @section despill
9873
9874 Remove unwanted contamination of foreground colors, caused by reflected color of
9875 greenscreen or bluescreen.
9876
9877 This filter accepts the following options:
9878
9879 @table @option
9880 @item type
9881 Set what type of despill to use.
9882
9883 @item mix
9884 Set how spillmap will be generated.
9885
9886 @item expand
9887 Set how much to get rid of still remaining spill.
9888
9889 @item red
9890 Controls amount of red in spill area.
9891
9892 @item green
9893 Controls amount of green in spill area.
9894 Should be -1 for greenscreen.
9895
9896 @item blue
9897 Controls amount of blue in spill area.
9898 Should be -1 for bluescreen.
9899
9900 @item brightness
9901 Controls brightness of spill area, preserving colors.
9902
9903 @item alpha
9904 Modify alpha from generated spillmap.
9905 @end table
9906
9907 @subsection Commands
9908
9909 This filter supports the all above options as @ref{commands}.
9910
9911 @section detelecine
9912
9913 Apply an exact inverse of the telecine operation. It requires a predefined
9914 pattern specified using the pattern option which must be the same as that passed
9915 to the telecine filter.
9916
9917 This filter accepts the following options:
9918
9919 @table @option
9920 @item first_field
9921 @table @samp
9922 @item top, t
9923 top field first
9924 @item bottom, b
9925 bottom field first
9926 The default value is @code{top}.
9927 @end table
9928
9929 @item pattern
9930 A string of numbers representing the pulldown pattern you wish to apply.
9931 The default value is @code{23}.
9932
9933 @item start_frame
9934 A number representing position of the first frame with respect to the telecine
9935 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9936 @end table
9937
9938 @section dilation
9939
9940 Apply dilation effect to the video.
9941
9942 This filter replaces the pixel by the local(3x3) maximum.
9943
9944 It accepts the following options:
9945
9946 @table @option
9947 @item threshold0
9948 @item threshold1
9949 @item threshold2
9950 @item threshold3
9951 Limit the maximum change for each plane, default is 65535.
9952 If 0, plane will remain unchanged.
9953
9954 @item coordinates
9955 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9956 pixels are used.
9957
9958 Flags to local 3x3 coordinates maps like this:
9959
9960     1 2 3
9961     4   5
9962     6 7 8
9963 @end table
9964
9965 @subsection Commands
9966
9967 This filter supports the all above options as @ref{commands}.
9968
9969 @section displace
9970
9971 Displace pixels as indicated by second and third input stream.
9972
9973 It takes three input streams and outputs one stream, the first input is the
9974 source, and second and third input are displacement maps.
9975
9976 The second input specifies how much to displace pixels along the
9977 x-axis, while the third input specifies how much to displace pixels
9978 along the y-axis.
9979 If one of displacement map streams terminates, last frame from that
9980 displacement map will be used.
9981
9982 Note that once generated, displacements maps can be reused over and over again.
9983
9984 A description of the accepted options follows.
9985
9986 @table @option
9987 @item edge
9988 Set displace behavior for pixels that are out of range.
9989
9990 Available values are:
9991 @table @samp
9992 @item blank
9993 Missing pixels are replaced by black pixels.
9994
9995 @item smear
9996 Adjacent pixels will spread out to replace missing pixels.
9997
9998 @item wrap
9999 Out of range pixels are wrapped so they point to pixels of other side.
10000
10001 @item mirror
10002 Out of range pixels will be replaced with mirrored pixels.
10003 @end table
10004 Default is @samp{smear}.
10005
10006 @end table
10007
10008 @subsection Examples
10009
10010 @itemize
10011 @item
10012 Add ripple effect to rgb input of video size hd720:
10013 @example
10014 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
10015 @end example
10016
10017 @item
10018 Add wave effect to rgb input of video size hd720:
10019 @example
10020 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
10021 @end example
10022 @end itemize
10023
10024 @anchor{dnn_processing}
10025 @section dnn_processing
10026
10027 Do image processing with deep neural networks. It works together with another filter
10028 which converts the pixel format of the Frame to what the dnn network requires.
10029
10030 The filter accepts the following options:
10031
10032 @table @option
10033 @item dnn_backend
10034 Specify which DNN backend to use for model loading and execution. This option accepts
10035 the following values:
10036
10037 @table @samp
10038 @item native
10039 Native implementation of DNN loading and execution.
10040
10041 @item tensorflow
10042 TensorFlow backend. To enable this backend you
10043 need to install the TensorFlow for C library (see
10044 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
10045 @code{--enable-libtensorflow}
10046
10047 @item openvino
10048 OpenVINO backend. To enable this backend you
10049 need to build and install the OpenVINO for C library (see
10050 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
10051 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
10052 be needed if the header files and libraries are not installed into system path)
10053
10054 @end table
10055
10056 Default value is @samp{native}.
10057
10058 @item model
10059 Set path to model file specifying network architecture and its parameters.
10060 Note that different backends use different file formats. TensorFlow, OpenVINO and native
10061 backend can load files for only its format.
10062
10063 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
10064
10065 @item input
10066 Set the input name of the dnn network.
10067
10068 @item output
10069 Set the output name of the dnn network.
10070
10071 @item async
10072 use DNN async execution if set (default: set),
10073 roll back to sync execution if the backend does not support async.
10074
10075 @end table
10076
10077 @subsection Examples
10078
10079 @itemize
10080 @item
10081 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
10082 @example
10083 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
10084 @end example
10085
10086 @item
10087 Halve the pixel value of the frame with format gray32f:
10088 @example
10089 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
10090 @end example
10091
10092 @item
10093 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
10094 @example
10095 ./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
10096 @end example
10097
10098 @item
10099 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
10100 @example
10101 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
10102 @end example
10103
10104 @end itemize
10105
10106 @section drawbox
10107
10108 Draw a colored box on the input image.
10109
10110 It accepts the following parameters:
10111
10112 @table @option
10113 @item x
10114 @item y
10115 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10116
10117 @item width, w
10118 @item height, h
10119 The expressions which specify the width and height of the box; if 0 they are interpreted as
10120 the input width and height. It defaults to 0.
10121
10122 @item color, c
10123 Specify the color of the box to write. For the general syntax of this option,
10124 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10125 value @code{invert} is used, the box edge color is the same as the
10126 video with inverted luma.
10127
10128 @item thickness, t
10129 The expression which sets the thickness of the box edge.
10130 A value of @code{fill} will create a filled box. Default value is @code{3}.
10131
10132 See below for the list of accepted constants.
10133
10134 @item replace
10135 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10136 will overwrite the video's color and alpha pixels.
10137 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10138 @end table
10139
10140 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10141 following constants:
10142
10143 @table @option
10144 @item dar
10145 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10146
10147 @item hsub
10148 @item vsub
10149 horizontal and vertical chroma subsample values. For example for the
10150 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10151
10152 @item in_h, ih
10153 @item in_w, iw
10154 The input width and height.
10155
10156 @item sar
10157 The input sample aspect ratio.
10158
10159 @item x
10160 @item y
10161 The x and y offset coordinates where the box is drawn.
10162
10163 @item w
10164 @item h
10165 The width and height of the drawn box.
10166
10167 @item t
10168 The thickness of the drawn box.
10169
10170 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10171 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10172
10173 @end table
10174
10175 @subsection Examples
10176
10177 @itemize
10178 @item
10179 Draw a black box around the edge of the input image:
10180 @example
10181 drawbox
10182 @end example
10183
10184 @item
10185 Draw a box with color red and an opacity of 50%:
10186 @example
10187 drawbox=10:20:200:60:red@@0.5
10188 @end example
10189
10190 The previous example can be specified as:
10191 @example
10192 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10193 @end example
10194
10195 @item
10196 Fill the box with pink color:
10197 @example
10198 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10199 @end example
10200
10201 @item
10202 Draw a 2-pixel red 2.40:1 mask:
10203 @example
10204 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
10205 @end example
10206 @end itemize
10207
10208 @subsection Commands
10209 This filter supports same commands as options.
10210 The command accepts the same syntax of the corresponding option.
10211
10212 If the specified expression is not valid, it is kept at its current
10213 value.
10214
10215 @anchor{drawgraph}
10216 @section drawgraph
10217 Draw a graph using input video metadata.
10218
10219 It accepts the following parameters:
10220
10221 @table @option
10222 @item m1
10223 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10224
10225 @item fg1
10226 Set 1st foreground color expression.
10227
10228 @item m2
10229 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10230
10231 @item fg2
10232 Set 2nd foreground color expression.
10233
10234 @item m3
10235 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10236
10237 @item fg3
10238 Set 3rd foreground color expression.
10239
10240 @item m4
10241 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10242
10243 @item fg4
10244 Set 4th foreground color expression.
10245
10246 @item min
10247 Set minimal value of metadata value.
10248
10249 @item max
10250 Set maximal value of metadata value.
10251
10252 @item bg
10253 Set graph background color. Default is white.
10254
10255 @item mode
10256 Set graph mode.
10257
10258 Available values for mode is:
10259 @table @samp
10260 @item bar
10261 @item dot
10262 @item line
10263 @end table
10264
10265 Default is @code{line}.
10266
10267 @item slide
10268 Set slide mode.
10269
10270 Available values for slide is:
10271 @table @samp
10272 @item frame
10273 Draw new frame when right border is reached.
10274
10275 @item replace
10276 Replace old columns with new ones.
10277
10278 @item scroll
10279 Scroll from right to left.
10280
10281 @item rscroll
10282 Scroll from left to right.
10283
10284 @item picture
10285 Draw single picture.
10286 @end table
10287
10288 Default is @code{frame}.
10289
10290 @item size
10291 Set size of graph video. For the syntax of this option, check the
10292 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10293 The default value is @code{900x256}.
10294
10295 @item rate, r
10296 Set the output frame rate. Default value is @code{25}.
10297
10298 The foreground color expressions can use the following variables:
10299 @table @option
10300 @item MIN
10301 Minimal value of metadata value.
10302
10303 @item MAX
10304 Maximal value of metadata value.
10305
10306 @item VAL
10307 Current metadata key value.
10308 @end table
10309
10310 The color is defined as 0xAABBGGRR.
10311 @end table
10312
10313 Example using metadata from @ref{signalstats} filter:
10314 @example
10315 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10316 @end example
10317
10318 Example using metadata from @ref{ebur128} filter:
10319 @example
10320 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10321 @end example
10322
10323 @section drawgrid
10324
10325 Draw a grid on the input image.
10326
10327 It accepts the following parameters:
10328
10329 @table @option
10330 @item x
10331 @item y
10332 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10333
10334 @item width, w
10335 @item height, h
10336 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10337 input width and height, respectively, minus @code{thickness}, so image gets
10338 framed. Default to 0.
10339
10340 @item color, c
10341 Specify the color of the grid. For the general syntax of this option,
10342 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10343 value @code{invert} is used, the grid color is the same as the
10344 video with inverted luma.
10345
10346 @item thickness, t
10347 The expression which sets the thickness of the grid line. Default value is @code{1}.
10348
10349 See below for the list of accepted constants.
10350
10351 @item replace
10352 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10353 will overwrite the video's color and alpha pixels.
10354 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10355 @end table
10356
10357 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10358 following constants:
10359
10360 @table @option
10361 @item dar
10362 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10363
10364 @item hsub
10365 @item vsub
10366 horizontal and vertical chroma subsample values. For example for the
10367 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10368
10369 @item in_h, ih
10370 @item in_w, iw
10371 The input grid cell width and height.
10372
10373 @item sar
10374 The input sample aspect ratio.
10375
10376 @item x
10377 @item y
10378 The x and y coordinates of some point of grid intersection (meant to configure offset).
10379
10380 @item w
10381 @item h
10382 The width and height of the drawn cell.
10383
10384 @item t
10385 The thickness of the drawn cell.
10386
10387 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10388 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10389
10390 @end table
10391
10392 @subsection Examples
10393
10394 @itemize
10395 @item
10396 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10397 @example
10398 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10399 @end example
10400
10401 @item
10402 Draw a white 3x3 grid with an opacity of 50%:
10403 @example
10404 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10405 @end example
10406 @end itemize
10407
10408 @subsection Commands
10409 This filter supports same commands as options.
10410 The command accepts the same syntax of the corresponding option.
10411
10412 If the specified expression is not valid, it is kept at its current
10413 value.
10414
10415 @anchor{drawtext}
10416 @section drawtext
10417
10418 Draw a text string or text from a specified file on top of a video, using the
10419 libfreetype library.
10420
10421 To enable compilation of this filter, you need to configure FFmpeg with
10422 @code{--enable-libfreetype}.
10423 To enable default font fallback and the @var{font} option you need to
10424 configure FFmpeg with @code{--enable-libfontconfig}.
10425 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10426 @code{--enable-libfribidi}.
10427
10428 @subsection Syntax
10429
10430 It accepts the following parameters:
10431
10432 @table @option
10433
10434 @item box
10435 Used to draw a box around text using the background color.
10436 The value must be either 1 (enable) or 0 (disable).
10437 The default value of @var{box} is 0.
10438
10439 @item boxborderw
10440 Set the width of the border to be drawn around the box using @var{boxcolor}.
10441 The default value of @var{boxborderw} is 0.
10442
10443 @item boxcolor
10444 The color to be used for drawing box around text. For the syntax of this
10445 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10446
10447 The default value of @var{boxcolor} is "white".
10448
10449 @item line_spacing
10450 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10451 The default value of @var{line_spacing} is 0.
10452
10453 @item borderw
10454 Set the width of the border to be drawn around the text using @var{bordercolor}.
10455 The default value of @var{borderw} is 0.
10456
10457 @item bordercolor
10458 Set the color to be used for drawing border around text. For the syntax of this
10459 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10460
10461 The default value of @var{bordercolor} is "black".
10462
10463 @item expansion
10464 Select how the @var{text} is expanded. Can be either @code{none},
10465 @code{strftime} (deprecated) or
10466 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10467 below for details.
10468
10469 @item basetime
10470 Set a start time for the count. Value is in microseconds. Only applied
10471 in the deprecated strftime expansion mode. To emulate in normal expansion
10472 mode use the @code{pts} function, supplying the start time (in seconds)
10473 as the second argument.
10474
10475 @item fix_bounds
10476 If true, check and fix text coords to avoid clipping.
10477
10478 @item fontcolor
10479 The color to be used for drawing fonts. For the syntax of this option, check
10480 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10481
10482 The default value of @var{fontcolor} is "black".
10483
10484 @item fontcolor_expr
10485 String which is expanded the same way as @var{text} to obtain dynamic
10486 @var{fontcolor} value. By default this option has empty value and is not
10487 processed. When this option is set, it overrides @var{fontcolor} option.
10488
10489 @item font
10490 The font family to be used for drawing text. By default Sans.
10491
10492 @item fontfile
10493 The font file to be used for drawing text. The path must be included.
10494 This parameter is mandatory if the fontconfig support is disabled.
10495
10496 @item alpha
10497 Draw the text applying alpha blending. The value can
10498 be a number between 0.0 and 1.0.
10499 The expression accepts the same variables @var{x, y} as well.
10500 The default value is 1.
10501 Please see @var{fontcolor_expr}.
10502
10503 @item fontsize
10504 The font size to be used for drawing text.
10505 The default value of @var{fontsize} is 16.
10506
10507 @item text_shaping
10508 If set to 1, attempt to shape the text (for example, reverse the order of
10509 right-to-left text and join Arabic characters) before drawing it.
10510 Otherwise, just draw the text exactly as given.
10511 By default 1 (if supported).
10512
10513 @item ft_load_flags
10514 The flags to be used for loading the fonts.
10515
10516 The flags map the corresponding flags supported by libfreetype, and are
10517 a combination of the following values:
10518 @table @var
10519 @item default
10520 @item no_scale
10521 @item no_hinting
10522 @item render
10523 @item no_bitmap
10524 @item vertical_layout
10525 @item force_autohint
10526 @item crop_bitmap
10527 @item pedantic
10528 @item ignore_global_advance_width
10529 @item no_recurse
10530 @item ignore_transform
10531 @item monochrome
10532 @item linear_design
10533 @item no_autohint
10534 @end table
10535
10536 Default value is "default".
10537
10538 For more information consult the documentation for the FT_LOAD_*
10539 libfreetype flags.
10540
10541 @item shadowcolor
10542 The color to be used for drawing a shadow behind the drawn text. For the
10543 syntax of this option, check the @ref{color syntax,,"Color" section in the
10544 ffmpeg-utils manual,ffmpeg-utils}.
10545
10546 The default value of @var{shadowcolor} is "black".
10547
10548 @item shadowx
10549 @item shadowy
10550 The x and y offsets for the text shadow position with respect to the
10551 position of the text. They can be either positive or negative
10552 values. The default value for both is "0".
10553
10554 @item start_number
10555 The starting frame number for the n/frame_num variable. The default value
10556 is "0".
10557
10558 @item tabsize
10559 The size in number of spaces to use for rendering the tab.
10560 Default value is 4.
10561
10562 @item timecode
10563 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10564 format. It can be used with or without text parameter. @var{timecode_rate}
10565 option must be specified.
10566
10567 @item timecode_rate, rate, r
10568 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10569 integer. Minimum value is "1".
10570 Drop-frame timecode is supported for frame rates 30 & 60.
10571
10572 @item tc24hmax
10573 If set to 1, the output of the timecode option will wrap around at 24 hours.
10574 Default is 0 (disabled).
10575
10576 @item text
10577 The text string to be drawn. The text must be a sequence of UTF-8
10578 encoded characters.
10579 This parameter is mandatory if no file is specified with the parameter
10580 @var{textfile}.
10581
10582 @item textfile
10583 A text file containing text to be drawn. The text must be a sequence
10584 of UTF-8 encoded characters.
10585
10586 This parameter is mandatory if no text string is specified with the
10587 parameter @var{text}.
10588
10589 If both @var{text} and @var{textfile} are specified, an error is thrown.
10590
10591 @item reload
10592 If set to 1, the @var{textfile} will be reloaded before each frame.
10593 Be sure to update it atomically, or it may be read partially, or even fail.
10594
10595 @item x
10596 @item y
10597 The expressions which specify the offsets where text will be drawn
10598 within the video frame. They are relative to the top/left border of the
10599 output image.
10600
10601 The default value of @var{x} and @var{y} is "0".
10602
10603 See below for the list of accepted constants and functions.
10604 @end table
10605
10606 The parameters for @var{x} and @var{y} are expressions containing the
10607 following constants and functions:
10608
10609 @table @option
10610 @item dar
10611 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10612
10613 @item hsub
10614 @item vsub
10615 horizontal and vertical chroma subsample values. For example for the
10616 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10617
10618 @item line_h, lh
10619 the height of each text line
10620
10621 @item main_h, h, H
10622 the input height
10623
10624 @item main_w, w, W
10625 the input width
10626
10627 @item max_glyph_a, ascent
10628 the maximum distance from the baseline to the highest/upper grid
10629 coordinate used to place a glyph outline point, for all the rendered
10630 glyphs.
10631 It is a positive value, due to the grid's orientation with the Y axis
10632 upwards.
10633
10634 @item max_glyph_d, descent
10635 the maximum distance from the baseline to the lowest grid coordinate
10636 used to place a glyph outline point, for all the rendered glyphs.
10637 This is a negative value, due to the grid's orientation, with the Y axis
10638 upwards.
10639
10640 @item max_glyph_h
10641 maximum glyph height, that is the maximum height for all the glyphs
10642 contained in the rendered text, it is equivalent to @var{ascent} -
10643 @var{descent}.
10644
10645 @item max_glyph_w
10646 maximum glyph width, that is the maximum width for all the glyphs
10647 contained in the rendered text
10648
10649 @item n
10650 the number of input frame, starting from 0
10651
10652 @item rand(min, max)
10653 return a random number included between @var{min} and @var{max}
10654
10655 @item sar
10656 The input sample aspect ratio.
10657
10658 @item t
10659 timestamp expressed in seconds, NAN if the input timestamp is unknown
10660
10661 @item text_h, th
10662 the height of the rendered text
10663
10664 @item text_w, tw
10665 the width of the rendered text
10666
10667 @item x
10668 @item y
10669 the x and y offset coordinates where the text is drawn.
10670
10671 These parameters allow the @var{x} and @var{y} expressions to refer
10672 to each other, so you can for example specify @code{y=x/dar}.
10673
10674 @item pict_type
10675 A one character description of the current frame's picture type.
10676
10677 @item pkt_pos
10678 The current packet's position in the input file or stream
10679 (in bytes, from the start of the input). A value of -1 indicates
10680 this info is not available.
10681
10682 @item pkt_duration
10683 The current packet's duration, in seconds.
10684
10685 @item pkt_size
10686 The current packet's size (in bytes).
10687 @end table
10688
10689 @anchor{drawtext_expansion}
10690 @subsection Text expansion
10691
10692 If @option{expansion} is set to @code{strftime},
10693 the filter recognizes strftime() sequences in the provided text and
10694 expands them accordingly. Check the documentation of strftime(). This
10695 feature is deprecated.
10696
10697 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10698
10699 If @option{expansion} is set to @code{normal} (which is the default),
10700 the following expansion mechanism is used.
10701
10702 The backslash character @samp{\}, followed by any character, always expands to
10703 the second character.
10704
10705 Sequences of the form @code{%@{...@}} are expanded. The text between the
10706 braces is a function name, possibly followed by arguments separated by ':'.
10707 If the arguments contain special characters or delimiters (':' or '@}'),
10708 they should be escaped.
10709
10710 Note that they probably must also be escaped as the value for the
10711 @option{text} option in the filter argument string and as the filter
10712 argument in the filtergraph description, and possibly also for the shell,
10713 that makes up to four levels of escaping; using a text file avoids these
10714 problems.
10715
10716 The following functions are available:
10717
10718 @table @command
10719
10720 @item expr, e
10721 The expression evaluation result.
10722
10723 It must take one argument specifying the expression to be evaluated,
10724 which accepts the same constants and functions as the @var{x} and
10725 @var{y} values. Note that not all constants should be used, for
10726 example the text size is not known when evaluating the expression, so
10727 the constants @var{text_w} and @var{text_h} will have an undefined
10728 value.
10729
10730 @item expr_int_format, eif
10731 Evaluate the expression's value and output as formatted integer.
10732
10733 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10734 The second argument specifies the output format. Allowed values are @samp{x},
10735 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10736 @code{printf} function.
10737 The third parameter is optional and sets the number of positions taken by the output.
10738 It can be used to add padding with zeros from the left.
10739
10740 @item gmtime
10741 The time at which the filter is running, expressed in UTC.
10742 It can accept an argument: a strftime() format string.
10743
10744 @item localtime
10745 The time at which the filter is running, expressed in the local time zone.
10746 It can accept an argument: a strftime() format string.
10747
10748 @item metadata
10749 Frame metadata. Takes one or two arguments.
10750
10751 The first argument is mandatory and specifies the metadata key.
10752
10753 The second argument is optional and specifies a default value, used when the
10754 metadata key is not found or empty.
10755
10756 Available metadata can be identified by inspecting entries
10757 starting with TAG included within each frame section
10758 printed by running @code{ffprobe -show_frames}.
10759
10760 String metadata generated in filters leading to
10761 the drawtext filter are also available.
10762
10763 @item n, frame_num
10764 The frame number, starting from 0.
10765
10766 @item pict_type
10767 A one character description of the current picture type.
10768
10769 @item pts
10770 The timestamp of the current frame.
10771 It can take up to three arguments.
10772
10773 The first argument is the format of the timestamp; it defaults to @code{flt}
10774 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10775 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10776 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10777 @code{localtime} stands for the timestamp of the frame formatted as
10778 local time zone time.
10779
10780 The second argument is an offset added to the timestamp.
10781
10782 If the format is set to @code{hms}, a third argument @code{24HH} may be
10783 supplied to present the hour part of the formatted timestamp in 24h format
10784 (00-23).
10785
10786 If the format is set to @code{localtime} or @code{gmtime},
10787 a third argument may be supplied: a strftime() format string.
10788 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10789 @end table
10790
10791 @subsection Commands
10792
10793 This filter supports altering parameters via commands:
10794 @table @option
10795 @item reinit
10796 Alter existing filter parameters.
10797
10798 Syntax for the argument is the same as for filter invocation, e.g.
10799
10800 @example
10801 fontsize=56:fontcolor=green:text='Hello World'
10802 @end example
10803
10804 Full filter invocation with sendcmd would look like this:
10805
10806 @example
10807 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10808 @end example
10809 @end table
10810
10811 If the entire argument can't be parsed or applied as valid values then the filter will
10812 continue with its existing parameters.
10813
10814 @subsection Examples
10815
10816 @itemize
10817 @item
10818 Draw "Test Text" with font FreeSerif, using the default values for the
10819 optional parameters.
10820
10821 @example
10822 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10823 @end example
10824
10825 @item
10826 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10827 and y=50 (counting from the top-left corner of the screen), text is
10828 yellow with a red box around it. Both the text and the box have an
10829 opacity of 20%.
10830
10831 @example
10832 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10833           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10834 @end example
10835
10836 Note that the double quotes are not necessary if spaces are not used
10837 within the parameter list.
10838
10839 @item
10840 Show the text at the center of the video frame:
10841 @example
10842 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10843 @end example
10844
10845 @item
10846 Show the text at a random position, switching to a new position every 30 seconds:
10847 @example
10848 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)"
10849 @end example
10850
10851 @item
10852 Show a text line sliding from right to left in the last row of the video
10853 frame. The file @file{LONG_LINE} is assumed to contain a single line
10854 with no newlines.
10855 @example
10856 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10857 @end example
10858
10859 @item
10860 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10861 @example
10862 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10863 @end example
10864
10865 @item
10866 Draw a single green letter "g", at the center of the input video.
10867 The glyph baseline is placed at half screen height.
10868 @example
10869 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10870 @end example
10871
10872 @item
10873 Show text for 1 second every 3 seconds:
10874 @example
10875 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10876 @end example
10877
10878 @item
10879 Use fontconfig to set the font. Note that the colons need to be escaped.
10880 @example
10881 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10882 @end example
10883
10884 @item
10885 Draw "Test Text" with font size dependent on height of the video.
10886 @example
10887 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10888 @end example
10889
10890 @item
10891 Print the date of a real-time encoding (see strftime(3)):
10892 @example
10893 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10894 @end example
10895
10896 @item
10897 Show text fading in and out (appearing/disappearing):
10898 @example
10899 #!/bin/sh
10900 DS=1.0 # display start
10901 DE=10.0 # display end
10902 FID=1.5 # fade in duration
10903 FOD=5 # fade out duration
10904 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 @}"
10905 @end example
10906
10907 @item
10908 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10909 and the @option{fontsize} value are included in the @option{y} offset.
10910 @example
10911 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10912 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10913 @end example
10914
10915 @item
10916 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10917 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10918 must have option @option{-export_path_metadata 1} for the special metadata fields
10919 to be available for filters.
10920 @example
10921 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10922 @end example
10923
10924 @end itemize
10925
10926 For more information about libfreetype, check:
10927 @url{http://www.freetype.org/}.
10928
10929 For more information about fontconfig, check:
10930 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10931
10932 For more information about libfribidi, check:
10933 @url{http://fribidi.org/}.
10934
10935 @section edgedetect
10936
10937 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10938
10939 The filter accepts the following options:
10940
10941 @table @option
10942 @item low
10943 @item high
10944 Set low and high threshold values used by the Canny thresholding
10945 algorithm.
10946
10947 The high threshold selects the "strong" edge pixels, which are then
10948 connected through 8-connectivity with the "weak" edge pixels selected
10949 by the low threshold.
10950
10951 @var{low} and @var{high} threshold values must be chosen in the range
10952 [0,1], and @var{low} should be lesser or equal to @var{high}.
10953
10954 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10955 is @code{50/255}.
10956
10957 @item mode
10958 Define the drawing mode.
10959
10960 @table @samp
10961 @item wires
10962 Draw white/gray wires on black background.
10963
10964 @item colormix
10965 Mix the colors to create a paint/cartoon effect.
10966
10967 @item canny
10968 Apply Canny edge detector on all selected planes.
10969 @end table
10970 Default value is @var{wires}.
10971
10972 @item planes
10973 Select planes for filtering. By default all available planes are filtered.
10974 @end table
10975
10976 @subsection Examples
10977
10978 @itemize
10979 @item
10980 Standard edge detection with custom values for the hysteresis thresholding:
10981 @example
10982 edgedetect=low=0.1:high=0.4
10983 @end example
10984
10985 @item
10986 Painting effect without thresholding:
10987 @example
10988 edgedetect=mode=colormix:high=0
10989 @end example
10990 @end itemize
10991
10992 @section elbg
10993
10994 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10995
10996 For each input image, the filter will compute the optimal mapping from
10997 the input to the output given the codebook length, that is the number
10998 of distinct output colors.
10999
11000 This filter accepts the following options.
11001
11002 @table @option
11003 @item codebook_length, l
11004 Set codebook length. The value must be a positive integer, and
11005 represents the number of distinct output colors. Default value is 256.
11006
11007 @item nb_steps, n
11008 Set the maximum number of iterations to apply for computing the optimal
11009 mapping. The higher the value the better the result and the higher the
11010 computation time. Default value is 1.
11011
11012 @item seed, s
11013 Set a random seed, must be an integer included between 0 and
11014 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
11015 will try to use a good random seed on a best effort basis.
11016
11017 @item pal8
11018 Set pal8 output pixel format. This option does not work with codebook
11019 length greater than 256.
11020 @end table
11021
11022 @section entropy
11023
11024 Measure graylevel entropy in histogram of color channels of video frames.
11025
11026 It accepts the following parameters:
11027
11028 @table @option
11029 @item mode
11030 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
11031
11032 @var{diff} mode measures entropy of histogram delta values, absolute differences
11033 between neighbour histogram values.
11034 @end table
11035
11036 @section epx
11037 Apply the EPX magnification filter which is designed for pixel art.
11038
11039 It accepts the following option:
11040
11041 @table @option
11042 @item n
11043 Set the scaling dimension: @code{2} for @code{2xEPX}, @code{3} for
11044 @code{3xEPX}.
11045 Default is @code{3}.
11046 @end table
11047
11048 @section eq
11049 Set brightness, contrast, saturation and approximate gamma adjustment.
11050
11051 The filter accepts the following options:
11052
11053 @table @option
11054 @item contrast
11055 Set the contrast expression. The value must be a float value in range
11056 @code{-1000.0} to @code{1000.0}. The default value is "1".
11057
11058 @item brightness
11059 Set the brightness expression. The value must be a float value in
11060 range @code{-1.0} to @code{1.0}. The default value is "0".
11061
11062 @item saturation
11063 Set the saturation expression. The value must be a float in
11064 range @code{0.0} to @code{3.0}. The default value is "1".
11065
11066 @item gamma
11067 Set the gamma expression. The value must be a float in range
11068 @code{0.1} to @code{10.0}.  The default value is "1".
11069
11070 @item gamma_r
11071 Set the gamma expression for red. The value must be a float in
11072 range @code{0.1} to @code{10.0}. The default value is "1".
11073
11074 @item gamma_g
11075 Set the gamma expression for green. The value must be a float in range
11076 @code{0.1} to @code{10.0}. The default value is "1".
11077
11078 @item gamma_b
11079 Set the gamma expression for blue. The value must be a float in range
11080 @code{0.1} to @code{10.0}. The default value is "1".
11081
11082 @item gamma_weight
11083 Set the gamma weight expression. It can be used to reduce the effect
11084 of a high gamma value on bright image areas, e.g. keep them from
11085 getting overamplified and just plain white. The value must be a float
11086 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
11087 gamma correction all the way down while @code{1.0} leaves it at its
11088 full strength. Default is "1".
11089
11090 @item eval
11091 Set when the expressions for brightness, contrast, saturation and
11092 gamma expressions are evaluated.
11093
11094 It accepts the following values:
11095 @table @samp
11096 @item init
11097 only evaluate expressions once during the filter initialization or
11098 when a command is processed
11099
11100 @item frame
11101 evaluate expressions for each incoming frame
11102 @end table
11103
11104 Default value is @samp{init}.
11105 @end table
11106
11107 The expressions accept the following parameters:
11108 @table @option
11109 @item n
11110 frame count of the input frame starting from 0
11111
11112 @item pos
11113 byte position of the corresponding packet in the input file, NAN if
11114 unspecified
11115
11116 @item r
11117 frame rate of the input video, NAN if the input frame rate is unknown
11118
11119 @item t
11120 timestamp expressed in seconds, NAN if the input timestamp is unknown
11121 @end table
11122
11123 @subsection Commands
11124 The filter supports the following commands:
11125
11126 @table @option
11127 @item contrast
11128 Set the contrast expression.
11129
11130 @item brightness
11131 Set the brightness expression.
11132
11133 @item saturation
11134 Set the saturation expression.
11135
11136 @item gamma
11137 Set the gamma expression.
11138
11139 @item gamma_r
11140 Set the gamma_r expression.
11141
11142 @item gamma_g
11143 Set gamma_g expression.
11144
11145 @item gamma_b
11146 Set gamma_b expression.
11147
11148 @item gamma_weight
11149 Set gamma_weight expression.
11150
11151 The command accepts the same syntax of the corresponding option.
11152
11153 If the specified expression is not valid, it is kept at its current
11154 value.
11155
11156 @end table
11157
11158 @section erosion
11159
11160 Apply erosion effect to the video.
11161
11162 This filter replaces the pixel by the local(3x3) minimum.
11163
11164 It accepts the following options:
11165
11166 @table @option
11167 @item threshold0
11168 @item threshold1
11169 @item threshold2
11170 @item threshold3
11171 Limit the maximum change for each plane, default is 65535.
11172 If 0, plane will remain unchanged.
11173
11174 @item coordinates
11175 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11176 pixels are used.
11177
11178 Flags to local 3x3 coordinates maps like this:
11179
11180     1 2 3
11181     4   5
11182     6 7 8
11183 @end table
11184
11185 @subsection Commands
11186
11187 This filter supports the all above options as @ref{commands}.
11188
11189 @section estdif
11190
11191 Deinterlace the input video ("estdif" stands for "Edge Slope
11192 Tracing Deinterlacing Filter").
11193
11194 Spatial only filter that uses edge slope tracing algorithm
11195 to interpolate missing lines.
11196 It accepts the following parameters:
11197
11198 @table @option
11199 @item mode
11200 The interlacing mode to adopt. It accepts one of the following values:
11201
11202 @table @option
11203 @item frame
11204 Output one frame for each frame.
11205 @item field
11206 Output one frame for each field.
11207 @end table
11208
11209 The default value is @code{field}.
11210
11211 @item parity
11212 The picture field parity assumed for the input interlaced video. It accepts one
11213 of the following values:
11214
11215 @table @option
11216 @item tff
11217 Assume the top field is first.
11218 @item bff
11219 Assume the bottom field is first.
11220 @item auto
11221 Enable automatic detection of field parity.
11222 @end table
11223
11224 The default value is @code{auto}.
11225 If the interlacing is unknown or the decoder does not export this information,
11226 top field first will be assumed.
11227
11228 @item deint
11229 Specify which frames to deinterlace. Accepts one of the following
11230 values:
11231
11232 @table @option
11233 @item all
11234 Deinterlace all frames.
11235 @item interlaced
11236 Only deinterlace frames marked as interlaced.
11237 @end table
11238
11239 The default value is @code{all}.
11240
11241 @item rslope
11242 Specify the search radius for edge slope tracing. Default value is 1.
11243 Allowed range is from 1 to 15.
11244
11245 @item redge
11246 Specify the search radius for best edge matching. Default value is 2.
11247 Allowed range is from 0 to 15.
11248
11249 @item interp
11250 Specify the interpolation used. Default is 4-point interpolation. It accepts one
11251 of the following values:
11252
11253 @table @option
11254 @item 2p
11255 Two-point interpolation.
11256 @item 4p
11257 Four-point interpolation.
11258 @item 6p
11259 Six-point interpolation.
11260 @end table
11261 @end table
11262
11263 @subsection Commands
11264 This filter supports same @ref{commands} as options.
11265
11266 @section extractplanes
11267
11268 Extract color channel components from input video stream into
11269 separate grayscale video streams.
11270
11271 The filter accepts the following option:
11272
11273 @table @option
11274 @item planes
11275 Set plane(s) to extract.
11276
11277 Available values for planes are:
11278 @table @samp
11279 @item y
11280 @item u
11281 @item v
11282 @item a
11283 @item r
11284 @item g
11285 @item b
11286 @end table
11287
11288 Choosing planes not available in the input will result in an error.
11289 That means you cannot select @code{r}, @code{g}, @code{b} planes
11290 with @code{y}, @code{u}, @code{v} planes at same time.
11291 @end table
11292
11293 @subsection Examples
11294
11295 @itemize
11296 @item
11297 Extract luma, u and v color channel component from input video frame
11298 into 3 grayscale outputs:
11299 @example
11300 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
11301 @end example
11302 @end itemize
11303
11304 @section fade
11305
11306 Apply a fade-in/out effect to the input video.
11307
11308 It accepts the following parameters:
11309
11310 @table @option
11311 @item type, t
11312 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11313 effect.
11314 Default is @code{in}.
11315
11316 @item start_frame, s
11317 Specify the number of the frame to start applying the fade
11318 effect at. Default is 0.
11319
11320 @item nb_frames, n
11321 The number of frames that the fade effect lasts. At the end of the
11322 fade-in effect, the output video will have the same intensity as the input video.
11323 At the end of the fade-out transition, the output video will be filled with the
11324 selected @option{color}.
11325 Default is 25.
11326
11327 @item alpha
11328 If set to 1, fade only alpha channel, if one exists on the input.
11329 Default value is 0.
11330
11331 @item start_time, st
11332 Specify the timestamp (in seconds) of the frame to start to apply the fade
11333 effect. If both start_frame and start_time are specified, the fade will start at
11334 whichever comes last.  Default is 0.
11335
11336 @item duration, d
11337 The number of seconds for which the fade effect has to last. At the end of the
11338 fade-in effect the output video will have the same intensity as the input video,
11339 at the end of the fade-out transition the output video will be filled with the
11340 selected @option{color}.
11341 If both duration and nb_frames are specified, duration is used. Default is 0
11342 (nb_frames is used by default).
11343
11344 @item color, c
11345 Specify the color of the fade. Default is "black".
11346 @end table
11347
11348 @subsection Examples
11349
11350 @itemize
11351 @item
11352 Fade in the first 30 frames of video:
11353 @example
11354 fade=in:0:30
11355 @end example
11356
11357 The command above is equivalent to:
11358 @example
11359 fade=t=in:s=0:n=30
11360 @end example
11361
11362 @item
11363 Fade out the last 45 frames of a 200-frame video:
11364 @example
11365 fade=out:155:45
11366 fade=type=out:start_frame=155:nb_frames=45
11367 @end example
11368
11369 @item
11370 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11371 @example
11372 fade=in:0:25, fade=out:975:25
11373 @end example
11374
11375 @item
11376 Make the first 5 frames yellow, then fade in from frame 5-24:
11377 @example
11378 fade=in:5:20:color=yellow
11379 @end example
11380
11381 @item
11382 Fade in alpha over first 25 frames of video:
11383 @example
11384 fade=in:0:25:alpha=1
11385 @end example
11386
11387 @item
11388 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11389 @example
11390 fade=t=in:st=5.5:d=0.5
11391 @end example
11392
11393 @end itemize
11394
11395 @section fftdnoiz
11396 Denoise frames using 3D FFT (frequency domain filtering).
11397
11398 The filter accepts the following options:
11399
11400 @table @option
11401 @item sigma
11402 Set the noise sigma constant. This sets denoising strength.
11403 Default value is 1. Allowed range is from 0 to 30.
11404 Using very high sigma with low overlap may give blocking artifacts.
11405
11406 @item amount
11407 Set amount of denoising. By default all detected noise is reduced.
11408 Default value is 1. Allowed range is from 0 to 1.
11409
11410 @item block
11411 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11412 Actual size of block in pixels is 2 to power of @var{block}, so by default
11413 block size in pixels is 2^4 which is 16.
11414
11415 @item overlap
11416 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11417
11418 @item prev
11419 Set number of previous frames to use for denoising. By default is set to 0.
11420
11421 @item next
11422 Set number of next frames to to use for denoising. By default is set to 0.
11423
11424 @item planes
11425 Set planes which will be filtered, by default are all available filtered
11426 except alpha.
11427 @end table
11428
11429 @section fftfilt
11430 Apply arbitrary expressions to samples in frequency domain
11431
11432 @table @option
11433 @item dc_Y
11434 Adjust the dc value (gain) of the luma plane of the image. The filter
11435 accepts an integer value in range @code{0} to @code{1000}. The default
11436 value is set to @code{0}.
11437
11438 @item dc_U
11439 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11440 filter accepts an integer value in range @code{0} to @code{1000}. The
11441 default value is set to @code{0}.
11442
11443 @item dc_V
11444 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11445 filter accepts an integer value in range @code{0} to @code{1000}. The
11446 default value is set to @code{0}.
11447
11448 @item weight_Y
11449 Set the frequency domain weight expression for the luma plane.
11450
11451 @item weight_U
11452 Set the frequency domain weight expression for the 1st chroma plane.
11453
11454 @item weight_V
11455 Set the frequency domain weight expression for the 2nd chroma plane.
11456
11457 @item eval
11458 Set when the expressions are evaluated.
11459
11460 It accepts the following values:
11461 @table @samp
11462 @item init
11463 Only evaluate expressions once during the filter initialization.
11464
11465 @item frame
11466 Evaluate expressions for each incoming frame.
11467 @end table
11468
11469 Default value is @samp{init}.
11470
11471 The filter accepts the following variables:
11472 @item X
11473 @item Y
11474 The coordinates of the current sample.
11475
11476 @item W
11477 @item H
11478 The width and height of the image.
11479
11480 @item N
11481 The number of input frame, starting from 0.
11482 @end table
11483
11484 @subsection Examples
11485
11486 @itemize
11487 @item
11488 High-pass:
11489 @example
11490 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11491 @end example
11492
11493 @item
11494 Low-pass:
11495 @example
11496 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11497 @end example
11498
11499 @item
11500 Sharpen:
11501 @example
11502 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11503 @end example
11504
11505 @item
11506 Blur:
11507 @example
11508 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11509 @end example
11510
11511 @end itemize
11512
11513 @section field
11514
11515 Extract a single field from an interlaced image using stride
11516 arithmetic to avoid wasting CPU time. The output frames are marked as
11517 non-interlaced.
11518
11519 The filter accepts the following options:
11520
11521 @table @option
11522 @item type
11523 Specify whether to extract the top (if the value is @code{0} or
11524 @code{top}) or the bottom field (if the value is @code{1} or
11525 @code{bottom}).
11526 @end table
11527
11528 @section fieldhint
11529
11530 Create new frames by copying the top and bottom fields from surrounding frames
11531 supplied as numbers by the hint file.
11532
11533 @table @option
11534 @item hint
11535 Set file containing hints: absolute/relative frame numbers.
11536
11537 There must be one line for each frame in a clip. Each line must contain two
11538 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11539 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11540 is current frame number for @code{absolute} mode or out of [-1, 1] range
11541 for @code{relative} mode. First number tells from which frame to pick up top
11542 field and second number tells from which frame to pick up bottom field.
11543
11544 If optionally followed by @code{+} output frame will be marked as interlaced,
11545 else if followed by @code{-} output frame will be marked as progressive, else
11546 it will be marked same as input frame.
11547 If optionally followed by @code{t} output frame will use only top field, or in
11548 case of @code{b} it will use only bottom field.
11549 If line starts with @code{#} or @code{;} that line is skipped.
11550
11551 @item mode
11552 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11553 @end table
11554
11555 Example of first several lines of @code{hint} file for @code{relative} mode:
11556 @example
11557 0,0 - # first frame
11558 1,0 - # second frame, use third's frame top field and second's frame bottom field
11559 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11560 1,0 -
11561 0,0 -
11562 0,0 -
11563 1,0 -
11564 1,0 -
11565 1,0 -
11566 0,0 -
11567 0,0 -
11568 1,0 -
11569 1,0 -
11570 1,0 -
11571 0,0 -
11572 @end example
11573
11574 @section fieldmatch
11575
11576 Field matching filter for inverse telecine. It is meant to reconstruct the
11577 progressive frames from a telecined stream. The filter does not drop duplicated
11578 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11579 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11580
11581 The separation of the field matching and the decimation is notably motivated by
11582 the possibility of inserting a de-interlacing filter fallback between the two.
11583 If the source has mixed telecined and real interlaced content,
11584 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11585 But these remaining combed frames will be marked as interlaced, and thus can be
11586 de-interlaced by a later filter such as @ref{yadif} before decimation.
11587
11588 In addition to the various configuration options, @code{fieldmatch} can take an
11589 optional second stream, activated through the @option{ppsrc} option. If
11590 enabled, the frames reconstruction will be based on the fields and frames from
11591 this second stream. This allows the first input to be pre-processed in order to
11592 help the various algorithms of the filter, while keeping the output lossless
11593 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11594 or brightness/contrast adjustments can help.
11595
11596 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11597 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11598 which @code{fieldmatch} is based on. While the semantic and usage are very
11599 close, some behaviour and options names can differ.
11600
11601 The @ref{decimate} filter currently only works for constant frame rate input.
11602 If your input has mixed telecined (30fps) and progressive content with a lower
11603 framerate like 24fps use the following filterchain to produce the necessary cfr
11604 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11605
11606 The filter accepts the following options:
11607
11608 @table @option
11609 @item order
11610 Specify the assumed field order of the input stream. Available values are:
11611
11612 @table @samp
11613 @item auto
11614 Auto detect parity (use FFmpeg's internal parity value).
11615 @item bff
11616 Assume bottom field first.
11617 @item tff
11618 Assume top field first.
11619 @end table
11620
11621 Note that it is sometimes recommended not to trust the parity announced by the
11622 stream.
11623
11624 Default value is @var{auto}.
11625
11626 @item mode
11627 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11628 sense that it won't risk creating jerkiness due to duplicate frames when
11629 possible, but if there are bad edits or blended fields it will end up
11630 outputting combed frames when a good match might actually exist. On the other
11631 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11632 but will almost always find a good frame if there is one. The other values are
11633 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11634 jerkiness and creating duplicate frames versus finding good matches in sections
11635 with bad edits, orphaned fields, blended fields, etc.
11636
11637 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11638
11639 Available values are:
11640
11641 @table @samp
11642 @item pc
11643 2-way matching (p/c)
11644 @item pc_n
11645 2-way matching, and trying 3rd match if still combed (p/c + n)
11646 @item pc_u
11647 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11648 @item pc_n_ub
11649 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11650 still combed (p/c + n + u/b)
11651 @item pcn
11652 3-way matching (p/c/n)
11653 @item pcn_ub
11654 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11655 detected as combed (p/c/n + u/b)
11656 @end table
11657
11658 The parenthesis at the end indicate the matches that would be used for that
11659 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11660 @var{top}).
11661
11662 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11663 the slowest.
11664
11665 Default value is @var{pc_n}.
11666
11667 @item ppsrc
11668 Mark the main input stream as a pre-processed input, and enable the secondary
11669 input stream as the clean source to pick the fields from. See the filter
11670 introduction for more details. It is similar to the @option{clip2} feature from
11671 VFM/TFM.
11672
11673 Default value is @code{0} (disabled).
11674
11675 @item field
11676 Set the field to match from. It is recommended to set this to the same value as
11677 @option{order} unless you experience matching failures with that setting. In
11678 certain circumstances changing the field that is used to match from can have a
11679 large impact on matching performance. Available values are:
11680
11681 @table @samp
11682 @item auto
11683 Automatic (same value as @option{order}).
11684 @item bottom
11685 Match from the bottom field.
11686 @item top
11687 Match from the top field.
11688 @end table
11689
11690 Default value is @var{auto}.
11691
11692 @item mchroma
11693 Set whether or not chroma is included during the match comparisons. In most
11694 cases it is recommended to leave this enabled. You should set this to @code{0}
11695 only if your clip has bad chroma problems such as heavy rainbowing or other
11696 artifacts. Setting this to @code{0} could also be used to speed things up at
11697 the cost of some accuracy.
11698
11699 Default value is @code{1}.
11700
11701 @item y0
11702 @item y1
11703 These define an exclusion band which excludes the lines between @option{y0} and
11704 @option{y1} from being included in the field matching decision. An exclusion
11705 band can be used to ignore subtitles, a logo, or other things that may
11706 interfere with the matching. @option{y0} sets the starting scan line and
11707 @option{y1} sets the ending line; all lines in between @option{y0} and
11708 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11709 @option{y0} and @option{y1} to the same value will disable the feature.
11710 @option{y0} and @option{y1} defaults to @code{0}.
11711
11712 @item scthresh
11713 Set the scene change detection threshold as a percentage of maximum change on
11714 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11715 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11716 @option{scthresh} is @code{[0.0, 100.0]}.
11717
11718 Default value is @code{12.0}.
11719
11720 @item combmatch
11721 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11722 account the combed scores of matches when deciding what match to use as the
11723 final match. Available values are:
11724
11725 @table @samp
11726 @item none
11727 No final matching based on combed scores.
11728 @item sc
11729 Combed scores are only used when a scene change is detected.
11730 @item full
11731 Use combed scores all the time.
11732 @end table
11733
11734 Default is @var{sc}.
11735
11736 @item combdbg
11737 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11738 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11739 Available values are:
11740
11741 @table @samp
11742 @item none
11743 No forced calculation.
11744 @item pcn
11745 Force p/c/n calculations.
11746 @item pcnub
11747 Force p/c/n/u/b calculations.
11748 @end table
11749
11750 Default value is @var{none}.
11751
11752 @item cthresh
11753 This is the area combing threshold used for combed frame detection. This
11754 essentially controls how "strong" or "visible" combing must be to be detected.
11755 Larger values mean combing must be more visible and smaller values mean combing
11756 can be less visible or strong and still be detected. Valid settings are from
11757 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11758 be detected as combed). This is basically a pixel difference value. A good
11759 range is @code{[8, 12]}.
11760
11761 Default value is @code{9}.
11762
11763 @item chroma
11764 Sets whether or not chroma is considered in the combed frame decision.  Only
11765 disable this if your source has chroma problems (rainbowing, etc.) that are
11766 causing problems for the combed frame detection with chroma enabled. Actually,
11767 using @option{chroma}=@var{0} is usually more reliable, except for the case
11768 where there is chroma only combing in the source.
11769
11770 Default value is @code{0}.
11771
11772 @item blockx
11773 @item blocky
11774 Respectively set the x-axis and y-axis size of the window used during combed
11775 frame detection. This has to do with the size of the area in which
11776 @option{combpel} pixels are required to be detected as combed for a frame to be
11777 declared combed. See the @option{combpel} parameter description for more info.
11778 Possible values are any number that is a power of 2 starting at 4 and going up
11779 to 512.
11780
11781 Default value is @code{16}.
11782
11783 @item combpel
11784 The number of combed pixels inside any of the @option{blocky} by
11785 @option{blockx} size blocks on the frame for the frame to be detected as
11786 combed. While @option{cthresh} controls how "visible" the combing must be, this
11787 setting controls "how much" combing there must be in any localized area (a
11788 window defined by the @option{blockx} and @option{blocky} settings) on the
11789 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11790 which point no frames will ever be detected as combed). This setting is known
11791 as @option{MI} in TFM/VFM vocabulary.
11792
11793 Default value is @code{80}.
11794 @end table
11795
11796 @anchor{p/c/n/u/b meaning}
11797 @subsection p/c/n/u/b meaning
11798
11799 @subsubsection p/c/n
11800
11801 We assume the following telecined stream:
11802
11803 @example
11804 Top fields:     1 2 2 3 4
11805 Bottom fields:  1 2 3 4 4
11806 @end example
11807
11808 The numbers correspond to the progressive frame the fields relate to. Here, the
11809 first two frames are progressive, the 3rd and 4th are combed, and so on.
11810
11811 When @code{fieldmatch} is configured to run a matching from bottom
11812 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11813
11814 @example
11815 Input stream:
11816                 T     1 2 2 3 4
11817                 B     1 2 3 4 4   <-- matching reference
11818
11819 Matches:              c c n n c
11820
11821 Output stream:
11822                 T     1 2 3 4 4
11823                 B     1 2 3 4 4
11824 @end example
11825
11826 As a result of the field matching, we can see that some frames get duplicated.
11827 To perform a complete inverse telecine, you need to rely on a decimation filter
11828 after this operation. See for instance the @ref{decimate} filter.
11829
11830 The same operation now matching from top fields (@option{field}=@var{top})
11831 looks like this:
11832
11833 @example
11834 Input stream:
11835                 T     1 2 2 3 4   <-- matching reference
11836                 B     1 2 3 4 4
11837
11838 Matches:              c c p p c
11839
11840 Output stream:
11841                 T     1 2 2 3 4
11842                 B     1 2 2 3 4
11843 @end example
11844
11845 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11846 basically, they refer to the frame and field of the opposite parity:
11847
11848 @itemize
11849 @item @var{p} matches the field of the opposite parity in the previous frame
11850 @item @var{c} matches the field of the opposite parity in the current frame
11851 @item @var{n} matches the field of the opposite parity in the next frame
11852 @end itemize
11853
11854 @subsubsection u/b
11855
11856 The @var{u} and @var{b} matching are a bit special in the sense that they match
11857 from the opposite parity flag. In the following examples, we assume that we are
11858 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11859 'x' is placed above and below each matched fields.
11860
11861 With bottom matching (@option{field}=@var{bottom}):
11862 @example
11863 Match:           c         p           n          b          u
11864
11865                  x       x               x        x          x
11866   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11867   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11868                  x         x           x        x              x
11869
11870 Output frames:
11871                  2          1          2          2          2
11872                  2          2          2          1          3
11873 @end example
11874
11875 With top matching (@option{field}=@var{top}):
11876 @example
11877 Match:           c         p           n          b          u
11878
11879                  x         x           x        x              x
11880   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11881   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11882                  x       x               x        x          x
11883
11884 Output frames:
11885                  2          2          2          1          2
11886                  2          1          3          2          2
11887 @end example
11888
11889 @subsection Examples
11890
11891 Simple IVTC of a top field first telecined stream:
11892 @example
11893 fieldmatch=order=tff:combmatch=none, decimate
11894 @end example
11895
11896 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11897 @example
11898 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11899 @end example
11900
11901 @section fieldorder
11902
11903 Transform the field order of the input video.
11904
11905 It accepts the following parameters:
11906
11907 @table @option
11908
11909 @item order
11910 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11911 for bottom field first.
11912 @end table
11913
11914 The default value is @samp{tff}.
11915
11916 The transformation is done by shifting the picture content up or down
11917 by one line, and filling the remaining line with appropriate picture content.
11918 This method is consistent with most broadcast field order converters.
11919
11920 If the input video is not flagged as being interlaced, or it is already
11921 flagged as being of the required output field order, then this filter does
11922 not alter the incoming video.
11923
11924 It is very useful when converting to or from PAL DV material,
11925 which is bottom field first.
11926
11927 For example:
11928 @example
11929 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11930 @end example
11931
11932 @section fifo, afifo
11933
11934 Buffer input images and send them when they are requested.
11935
11936 It is mainly useful when auto-inserted by the libavfilter
11937 framework.
11938
11939 It does not take parameters.
11940
11941 @section fillborders
11942
11943 Fill borders of the input video, without changing video stream dimensions.
11944 Sometimes video can have garbage at the four edges and you may not want to
11945 crop video input to keep size multiple of some number.
11946
11947 This filter accepts the following options:
11948
11949 @table @option
11950 @item left
11951 Number of pixels to fill from left border.
11952
11953 @item right
11954 Number of pixels to fill from right border.
11955
11956 @item top
11957 Number of pixels to fill from top border.
11958
11959 @item bottom
11960 Number of pixels to fill from bottom border.
11961
11962 @item mode
11963 Set fill mode.
11964
11965 It accepts the following values:
11966 @table @samp
11967 @item smear
11968 fill pixels using outermost pixels
11969
11970 @item mirror
11971 fill pixels using mirroring (half sample symmetric)
11972
11973 @item fixed
11974 fill pixels with constant value
11975
11976 @item reflect
11977 fill pixels using reflecting (whole sample symmetric)
11978
11979 @item wrap
11980 fill pixels using wrapping
11981
11982 @item fade
11983 fade pixels to constant value
11984 @end table
11985
11986 Default is @var{smear}.
11987
11988 @item color
11989 Set color for pixels in fixed or fade mode. Default is @var{black}.
11990 @end table
11991
11992 @subsection Commands
11993 This filter supports same @ref{commands} as options.
11994 The command accepts the same syntax of the corresponding option.
11995
11996 If the specified expression is not valid, it is kept at its current
11997 value.
11998
11999 @section find_rect
12000
12001 Find a rectangular object
12002
12003 It accepts the following options:
12004
12005 @table @option
12006 @item object
12007 Filepath of the object image, needs to be in gray8.
12008
12009 @item threshold
12010 Detection threshold, default is 0.5.
12011
12012 @item mipmaps
12013 Number of mipmaps, default is 3.
12014
12015 @item xmin, ymin, xmax, ymax
12016 Specifies the rectangle in which to search.
12017 @end table
12018
12019 @subsection Examples
12020
12021 @itemize
12022 @item
12023 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
12024 @example
12025 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
12026 @end example
12027 @end itemize
12028
12029 @section floodfill
12030
12031 Flood area with values of same pixel components with another values.
12032
12033 It accepts the following options:
12034 @table @option
12035 @item x
12036 Set pixel x coordinate.
12037
12038 @item y
12039 Set pixel y coordinate.
12040
12041 @item s0
12042 Set source #0 component value.
12043
12044 @item s1
12045 Set source #1 component value.
12046
12047 @item s2
12048 Set source #2 component value.
12049
12050 @item s3
12051 Set source #3 component value.
12052
12053 @item d0
12054 Set destination #0 component value.
12055
12056 @item d1
12057 Set destination #1 component value.
12058
12059 @item d2
12060 Set destination #2 component value.
12061
12062 @item d3
12063 Set destination #3 component value.
12064 @end table
12065
12066 @anchor{format}
12067 @section format
12068
12069 Convert the input video to one of the specified pixel formats.
12070 Libavfilter will try to pick one that is suitable as input to
12071 the next filter.
12072
12073 It accepts the following parameters:
12074 @table @option
12075
12076 @item pix_fmts
12077 A '|'-separated list of pixel format names, such as
12078 "pix_fmts=yuv420p|monow|rgb24".
12079
12080 @end table
12081
12082 @subsection Examples
12083
12084 @itemize
12085 @item
12086 Convert the input video to the @var{yuv420p} format
12087 @example
12088 format=pix_fmts=yuv420p
12089 @end example
12090
12091 Convert the input video to any of the formats in the list
12092 @example
12093 format=pix_fmts=yuv420p|yuv444p|yuv410p
12094 @end example
12095 @end itemize
12096
12097 @anchor{fps}
12098 @section fps
12099
12100 Convert the video to specified constant frame rate by duplicating or dropping
12101 frames as necessary.
12102
12103 It accepts the following parameters:
12104 @table @option
12105
12106 @item fps
12107 The desired output frame rate. The default is @code{25}.
12108
12109 @item start_time
12110 Assume the first PTS should be the given value, in seconds. This allows for
12111 padding/trimming at the start of stream. By default, no assumption is made
12112 about the first frame's expected PTS, so no padding or trimming is done.
12113 For example, this could be set to 0 to pad the beginning with duplicates of
12114 the first frame if a video stream starts after the audio stream or to trim any
12115 frames with a negative PTS.
12116
12117 @item round
12118 Timestamp (PTS) rounding method.
12119
12120 Possible values are:
12121 @table @option
12122 @item zero
12123 round towards 0
12124 @item inf
12125 round away from 0
12126 @item down
12127 round towards -infinity
12128 @item up
12129 round towards +infinity
12130 @item near
12131 round to nearest
12132 @end table
12133 The default is @code{near}.
12134
12135 @item eof_action
12136 Action performed when reading the last frame.
12137
12138 Possible values are:
12139 @table @option
12140 @item round
12141 Use same timestamp rounding method as used for other frames.
12142 @item pass
12143 Pass through last frame if input duration has not been reached yet.
12144 @end table
12145 The default is @code{round}.
12146
12147 @end table
12148
12149 Alternatively, the options can be specified as a flat string:
12150 @var{fps}[:@var{start_time}[:@var{round}]].
12151
12152 See also the @ref{setpts} filter.
12153
12154 @subsection Examples
12155
12156 @itemize
12157 @item
12158 A typical usage in order to set the fps to 25:
12159 @example
12160 fps=fps=25
12161 @end example
12162
12163 @item
12164 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12165 @example
12166 fps=fps=film:round=near
12167 @end example
12168 @end itemize
12169
12170 @section framepack
12171
12172 Pack two different video streams into a stereoscopic video, setting proper
12173 metadata on supported codecs. The two views should have the same size and
12174 framerate and processing will stop when the shorter video ends. Please note
12175 that you may conveniently adjust view properties with the @ref{scale} and
12176 @ref{fps} filters.
12177
12178 It accepts the following parameters:
12179 @table @option
12180
12181 @item format
12182 The desired packing format. Supported values are:
12183
12184 @table @option
12185
12186 @item sbs
12187 The views are next to each other (default).
12188
12189 @item tab
12190 The views are on top of each other.
12191
12192 @item lines
12193 The views are packed by line.
12194
12195 @item columns
12196 The views are packed by column.
12197
12198 @item frameseq
12199 The views are temporally interleaved.
12200
12201 @end table
12202
12203 @end table
12204
12205 Some examples:
12206
12207 @example
12208 # Convert left and right views into a frame-sequential video
12209 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12210
12211 # Convert views into a side-by-side video with the same output resolution as the input
12212 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
12213 @end example
12214
12215 @section framerate
12216
12217 Change the frame rate by interpolating new video output frames from the source
12218 frames.
12219
12220 This filter is not designed to function correctly with interlaced media. If
12221 you wish to change the frame rate of interlaced media then you are required
12222 to deinterlace before this filter and re-interlace after this filter.
12223
12224 A description of the accepted options follows.
12225
12226 @table @option
12227 @item fps
12228 Specify the output frames per second. This option can also be specified
12229 as a value alone. The default is @code{50}.
12230
12231 @item interp_start
12232 Specify the start of a range where the output frame will be created as a
12233 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12234 the default is @code{15}.
12235
12236 @item interp_end
12237 Specify the end of a range where the output frame will be created as a
12238 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12239 the default is @code{240}.
12240
12241 @item scene
12242 Specify the level at which a scene change is detected as a value between
12243 0 and 100 to indicate a new scene; a low value reflects a low
12244 probability for the current frame to introduce a new scene, while a higher
12245 value means the current frame is more likely to be one.
12246 The default is @code{8.2}.
12247
12248 @item flags
12249 Specify flags influencing the filter process.
12250
12251 Available value for @var{flags} is:
12252
12253 @table @option
12254 @item scene_change_detect, scd
12255 Enable scene change detection using the value of the option @var{scene}.
12256 This flag is enabled by default.
12257 @end table
12258 @end table
12259
12260 @section framestep
12261
12262 Select one frame every N-th frame.
12263
12264 This filter accepts the following option:
12265 @table @option
12266 @item step
12267 Select frame after every @code{step} frames.
12268 Allowed values are positive integers higher than 0. Default value is @code{1}.
12269 @end table
12270
12271 @section freezedetect
12272
12273 Detect frozen video.
12274
12275 This filter logs a message and sets frame metadata when it detects that the
12276 input video has no significant change in content during a specified duration.
12277 Video freeze detection calculates the mean average absolute difference of all
12278 the components of video frames and compares it to a noise floor.
12279
12280 The printed times and duration are expressed in seconds. The
12281 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12282 whose timestamp equals or exceeds the detection duration and it contains the
12283 timestamp of the first frame of the freeze. The
12284 @code{lavfi.freezedetect.freeze_duration} and
12285 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12286 after the freeze.
12287
12288 The filter accepts the following options:
12289
12290 @table @option
12291 @item noise, n
12292 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12293 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12294 0.001.
12295
12296 @item duration, d
12297 Set freeze duration until notification (default is 2 seconds).
12298 @end table
12299
12300 @section freezeframes
12301
12302 Freeze video frames.
12303
12304 This filter freezes video frames using frame from 2nd input.
12305
12306 The filter accepts the following options:
12307
12308 @table @option
12309 @item first
12310 Set number of first frame from which to start freeze.
12311
12312 @item last
12313 Set number of last frame from which to end freeze.
12314
12315 @item replace
12316 Set number of frame from 2nd input which will be used instead of replaced frames.
12317 @end table
12318
12319 @anchor{frei0r}
12320 @section frei0r
12321
12322 Apply a frei0r effect to the input video.
12323
12324 To enable the compilation of this filter, you need to install the frei0r
12325 header and configure FFmpeg with @code{--enable-frei0r}.
12326
12327 It accepts the following parameters:
12328
12329 @table @option
12330
12331 @item filter_name
12332 The name of the frei0r effect to load. If the environment variable
12333 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12334 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12335 Otherwise, the standard frei0r paths are searched, in this order:
12336 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12337 @file{/usr/lib/frei0r-1/}.
12338
12339 @item filter_params
12340 A '|'-separated list of parameters to pass to the frei0r effect.
12341
12342 @end table
12343
12344 A frei0r effect parameter can be a boolean (its value is either
12345 "y" or "n"), a double, a color (specified as
12346 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12347 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12348 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12349 a position (specified as @var{X}/@var{Y}, where
12350 @var{X} and @var{Y} are floating point numbers) and/or a string.
12351
12352 The number and types of parameters depend on the loaded effect. If an
12353 effect parameter is not specified, the default value is set.
12354
12355 @subsection Examples
12356
12357 @itemize
12358 @item
12359 Apply the distort0r effect, setting the first two double parameters:
12360 @example
12361 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12362 @end example
12363
12364 @item
12365 Apply the colordistance effect, taking a color as the first parameter:
12366 @example
12367 frei0r=colordistance:0.2/0.3/0.4
12368 frei0r=colordistance:violet
12369 frei0r=colordistance:0x112233
12370 @end example
12371
12372 @item
12373 Apply the perspective effect, specifying the top left and top right image
12374 positions:
12375 @example
12376 frei0r=perspective:0.2/0.2|0.8/0.2
12377 @end example
12378 @end itemize
12379
12380 For more information, see
12381 @url{http://frei0r.dyne.org}
12382
12383 @subsection Commands
12384
12385 This filter supports the @option{filter_params} option as @ref{commands}.
12386
12387 @section fspp
12388
12389 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12390
12391 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12392 processing filter, one of them is performed once per block, not per pixel.
12393 This allows for much higher speed.
12394
12395 The filter accepts the following options:
12396
12397 @table @option
12398 @item quality
12399 Set quality. This option defines the number of levels for averaging. It accepts
12400 an integer in the range 4-5. Default value is @code{4}.
12401
12402 @item qp
12403 Force a constant quantization parameter. It accepts an integer in range 0-63.
12404 If not set, the filter will use the QP from the video stream (if available).
12405
12406 @item strength
12407 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12408 more details but also more artifacts, while higher values make the image smoother
12409 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12410
12411 @item use_bframe_qp
12412 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12413 option may cause flicker since the B-Frames have often larger QP. Default is
12414 @code{0} (not enabled).
12415
12416 @end table
12417
12418 @section gblur
12419
12420 Apply Gaussian blur filter.
12421
12422 The filter accepts the following options:
12423
12424 @table @option
12425 @item sigma
12426 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12427
12428 @item steps
12429 Set number of steps for Gaussian approximation. Default is @code{1}.
12430
12431 @item planes
12432 Set which planes to filter. By default all planes are filtered.
12433
12434 @item sigmaV
12435 Set vertical sigma, if negative it will be same as @code{sigma}.
12436 Default is @code{-1}.
12437 @end table
12438
12439 @subsection Commands
12440 This filter supports same commands as options.
12441 The command accepts the same syntax of the corresponding option.
12442
12443 If the specified expression is not valid, it is kept at its current
12444 value.
12445
12446 @section geq
12447
12448 Apply generic equation to each pixel.
12449
12450 The filter accepts the following options:
12451
12452 @table @option
12453 @item lum_expr, lum
12454 Set the luminance expression.
12455 @item cb_expr, cb
12456 Set the chrominance blue expression.
12457 @item cr_expr, cr
12458 Set the chrominance red expression.
12459 @item alpha_expr, a
12460 Set the alpha expression.
12461 @item red_expr, r
12462 Set the red expression.
12463 @item green_expr, g
12464 Set the green expression.
12465 @item blue_expr, b
12466 Set the blue expression.
12467 @end table
12468
12469 The colorspace is selected according to the specified options. If one
12470 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12471 options is specified, the filter will automatically select a YCbCr
12472 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12473 @option{blue_expr} options is specified, it will select an RGB
12474 colorspace.
12475
12476 If one of the chrominance expression is not defined, it falls back on the other
12477 one. If no alpha expression is specified it will evaluate to opaque value.
12478 If none of chrominance expressions are specified, they will evaluate
12479 to the luminance expression.
12480
12481 The expressions can use the following variables and functions:
12482
12483 @table @option
12484 @item N
12485 The sequential number of the filtered frame, starting from @code{0}.
12486
12487 @item X
12488 @item Y
12489 The coordinates of the current sample.
12490
12491 @item W
12492 @item H
12493 The width and height of the image.
12494
12495 @item SW
12496 @item SH
12497 Width and height scale depending on the currently filtered plane. It is the
12498 ratio between the corresponding luma plane number of pixels and the current
12499 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12500 @code{0.5,0.5} for chroma planes.
12501
12502 @item T
12503 Time of the current frame, expressed in seconds.
12504
12505 @item p(x, y)
12506 Return the value of the pixel at location (@var{x},@var{y}) of the current
12507 plane.
12508
12509 @item lum(x, y)
12510 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12511 plane.
12512
12513 @item cb(x, y)
12514 Return the value of the pixel at location (@var{x},@var{y}) of the
12515 blue-difference chroma plane. Return 0 if there is no such plane.
12516
12517 @item cr(x, y)
12518 Return the value of the pixel at location (@var{x},@var{y}) of the
12519 red-difference chroma plane. Return 0 if there is no such plane.
12520
12521 @item r(x, y)
12522 @item g(x, y)
12523 @item b(x, y)
12524 Return the value of the pixel at location (@var{x},@var{y}) of the
12525 red/green/blue component. Return 0 if there is no such component.
12526
12527 @item alpha(x, y)
12528 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12529 plane. Return 0 if there is no such plane.
12530
12531 @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)
12532 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12533 sums of samples within a rectangle. See the functions without the sum postfix.
12534
12535 @item interpolation
12536 Set one of interpolation methods:
12537 @table @option
12538 @item nearest, n
12539 @item bilinear, b
12540 @end table
12541 Default is bilinear.
12542 @end table
12543
12544 For functions, if @var{x} and @var{y} are outside the area, the value will be
12545 automatically clipped to the closer edge.
12546
12547 Please note that this filter can use multiple threads in which case each slice
12548 will have its own expression state. If you want to use only a single expression
12549 state because your expressions depend on previous state then you should limit
12550 the number of filter threads to 1.
12551
12552 @subsection Examples
12553
12554 @itemize
12555 @item
12556 Flip the image horizontally:
12557 @example
12558 geq=p(W-X\,Y)
12559 @end example
12560
12561 @item
12562 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12563 wavelength of 100 pixels:
12564 @example
12565 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12566 @end example
12567
12568 @item
12569 Generate a fancy enigmatic moving light:
12570 @example
12571 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
12572 @end example
12573
12574 @item
12575 Generate a quick emboss effect:
12576 @example
12577 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12578 @end example
12579
12580 @item
12581 Modify RGB components depending on pixel position:
12582 @example
12583 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12584 @end example
12585
12586 @item
12587 Create a radial gradient that is the same size as the input (also see
12588 the @ref{vignette} filter):
12589 @example
12590 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12591 @end example
12592 @end itemize
12593
12594 @section gradfun
12595
12596 Fix the banding artifacts that are sometimes introduced into nearly flat
12597 regions by truncation to 8-bit color depth.
12598 Interpolate the gradients that should go where the bands are, and
12599 dither them.
12600
12601 It is designed for playback only.  Do not use it prior to
12602 lossy compression, because compression tends to lose the dither and
12603 bring back the bands.
12604
12605 It accepts the following parameters:
12606
12607 @table @option
12608
12609 @item strength
12610 The maximum amount by which the filter will change any one pixel. This is also
12611 the threshold for detecting nearly flat regions. Acceptable values range from
12612 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12613 valid range.
12614
12615 @item radius
12616 The neighborhood to fit the gradient to. A larger radius makes for smoother
12617 gradients, but also prevents the filter from modifying the pixels near detailed
12618 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12619 values will be clipped to the valid range.
12620
12621 @end table
12622
12623 Alternatively, the options can be specified as a flat string:
12624 @var{strength}[:@var{radius}]
12625
12626 @subsection Examples
12627
12628 @itemize
12629 @item
12630 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12631 @example
12632 gradfun=3.5:8
12633 @end example
12634
12635 @item
12636 Specify radius, omitting the strength (which will fall-back to the default
12637 value):
12638 @example
12639 gradfun=radius=8
12640 @end example
12641
12642 @end itemize
12643
12644 @anchor{graphmonitor}
12645 @section graphmonitor
12646 Show various filtergraph stats.
12647
12648 With this filter one can debug complete filtergraph.
12649 Especially issues with links filling with queued frames.
12650
12651 The filter accepts the following options:
12652
12653 @table @option
12654 @item size, s
12655 Set video output size. Default is @var{hd720}.
12656
12657 @item opacity, o
12658 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12659
12660 @item mode, m
12661 Set output mode, can be @var{fulll} or @var{compact}.
12662 In @var{compact} mode only filters with some queued frames have displayed stats.
12663
12664 @item flags, f
12665 Set flags which enable which stats are shown in video.
12666
12667 Available values for flags are:
12668 @table @samp
12669 @item queue
12670 Display number of queued frames in each link.
12671
12672 @item frame_count_in
12673 Display number of frames taken from filter.
12674
12675 @item frame_count_out
12676 Display number of frames given out from filter.
12677
12678 @item pts
12679 Display current filtered frame pts.
12680
12681 @item time
12682 Display current filtered frame time.
12683
12684 @item timebase
12685 Display time base for filter link.
12686
12687 @item format
12688 Display used format for filter link.
12689
12690 @item size
12691 Display video size or number of audio channels in case of audio used by filter link.
12692
12693 @item rate
12694 Display video frame rate or sample rate in case of audio used by filter link.
12695
12696 @item eof
12697 Display link output status.
12698 @end table
12699
12700 @item rate, r
12701 Set upper limit for video rate of output stream, Default value is @var{25}.
12702 This guarantee that output video frame rate will not be higher than this value.
12703 @end table
12704
12705 @section greyedge
12706 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12707 and corrects the scene colors accordingly.
12708
12709 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12710
12711 The filter accepts the following options:
12712
12713 @table @option
12714 @item difford
12715 The order of differentiation to be applied on the scene. Must be chosen in the range
12716 [0,2] and default value is 1.
12717
12718 @item minknorm
12719 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12720 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12721 max value instead of calculating Minkowski distance.
12722
12723 @item sigma
12724 The standard deviation of Gaussian blur to be applied on the scene. Must be
12725 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12726 can't be equal to 0 if @var{difford} is greater than 0.
12727 @end table
12728
12729 @subsection Examples
12730 @itemize
12731
12732 @item
12733 Grey Edge:
12734 @example
12735 greyedge=difford=1:minknorm=5:sigma=2
12736 @end example
12737
12738 @item
12739 Max Edge:
12740 @example
12741 greyedge=difford=1:minknorm=0:sigma=2
12742 @end example
12743
12744 @end itemize
12745
12746 @anchor{haldclut}
12747 @section haldclut
12748
12749 Apply a Hald CLUT to a video stream.
12750
12751 First input is the video stream to process, and second one is the Hald CLUT.
12752 The Hald CLUT input can be a simple picture or a complete video stream.
12753
12754 The filter accepts the following options:
12755
12756 @table @option
12757 @item shortest
12758 Force termination when the shortest input terminates. Default is @code{0}.
12759 @item repeatlast
12760 Continue applying the last CLUT after the end of the stream. A value of
12761 @code{0} disable the filter after the last frame of the CLUT is reached.
12762 Default is @code{1}.
12763 @end table
12764
12765 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12766 filters share the same internals).
12767
12768 This filter also supports the @ref{framesync} options.
12769
12770 More information about the Hald CLUT can be found on Eskil Steenberg's website
12771 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12772
12773 @subsection Workflow examples
12774
12775 @subsubsection Hald CLUT video stream
12776
12777 Generate an identity Hald CLUT stream altered with various effects:
12778 @example
12779 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
12780 @end example
12781
12782 Note: make sure you use a lossless codec.
12783
12784 Then use it with @code{haldclut} to apply it on some random stream:
12785 @example
12786 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12787 @end example
12788
12789 The Hald CLUT will be applied to the 10 first seconds (duration of
12790 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12791 to the remaining frames of the @code{mandelbrot} stream.
12792
12793 @subsubsection Hald CLUT with preview
12794
12795 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12796 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12797 biggest possible square starting at the top left of the picture. The remaining
12798 padding pixels (bottom or right) will be ignored. This area can be used to add
12799 a preview of the Hald CLUT.
12800
12801 Typically, the following generated Hald CLUT will be supported by the
12802 @code{haldclut} filter:
12803
12804 @example
12805 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12806    pad=iw+320 [padded_clut];
12807    smptebars=s=320x256, split [a][b];
12808    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12809    [main][b] overlay=W-320" -frames:v 1 clut.png
12810 @end example
12811
12812 It contains the original and a preview of the effect of the CLUT: SMPTE color
12813 bars are displayed on the right-top, and below the same color bars processed by
12814 the color changes.
12815
12816 Then, the effect of this Hald CLUT can be visualized with:
12817 @example
12818 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12819 @end example
12820
12821 @section hflip
12822
12823 Flip the input video horizontally.
12824
12825 For example, to horizontally flip the input video with @command{ffmpeg}:
12826 @example
12827 ffmpeg -i in.avi -vf "hflip" out.avi
12828 @end example
12829
12830 @section histeq
12831 This filter applies a global color histogram equalization on a
12832 per-frame basis.
12833
12834 It can be used to correct video that has a compressed range of pixel
12835 intensities.  The filter redistributes the pixel intensities to
12836 equalize their distribution across the intensity range. It may be
12837 viewed as an "automatically adjusting contrast filter". This filter is
12838 useful only for correcting degraded or poorly captured source
12839 video.
12840
12841 The filter accepts the following options:
12842
12843 @table @option
12844 @item strength
12845 Determine the amount of equalization to be applied.  As the strength
12846 is reduced, the distribution of pixel intensities more-and-more
12847 approaches that of the input frame. The value must be a float number
12848 in the range [0,1] and defaults to 0.200.
12849
12850 @item intensity
12851 Set the maximum intensity that can generated and scale the output
12852 values appropriately.  The strength should be set as desired and then
12853 the intensity can be limited if needed to avoid washing-out. The value
12854 must be a float number in the range [0,1] and defaults to 0.210.
12855
12856 @item antibanding
12857 Set the antibanding level. If enabled the filter will randomly vary
12858 the luminance of output pixels by a small amount to avoid banding of
12859 the histogram. Possible values are @code{none}, @code{weak} or
12860 @code{strong}. It defaults to @code{none}.
12861 @end table
12862
12863 @anchor{histogram}
12864 @section histogram
12865
12866 Compute and draw a color distribution histogram for the input video.
12867
12868 The computed histogram is a representation of the color component
12869 distribution in an image.
12870
12871 Standard histogram displays the color components distribution in an image.
12872 Displays color graph for each color component. Shows distribution of
12873 the Y, U, V, A or R, G, B components, depending on input format, in the
12874 current frame. Below each graph a color component scale meter is shown.
12875
12876 The filter accepts the following options:
12877
12878 @table @option
12879 @item level_height
12880 Set height of level. Default value is @code{200}.
12881 Allowed range is [50, 2048].
12882
12883 @item scale_height
12884 Set height of color scale. Default value is @code{12}.
12885 Allowed range is [0, 40].
12886
12887 @item display_mode
12888 Set display mode.
12889 It accepts the following values:
12890 @table @samp
12891 @item stack
12892 Per color component graphs are placed below each other.
12893
12894 @item parade
12895 Per color component graphs are placed side by side.
12896
12897 @item overlay
12898 Presents information identical to that in the @code{parade}, except
12899 that the graphs representing color components are superimposed directly
12900 over one another.
12901 @end table
12902 Default is @code{stack}.
12903
12904 @item levels_mode
12905 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12906 Default is @code{linear}.
12907
12908 @item components
12909 Set what color components to display.
12910 Default is @code{7}.
12911
12912 @item fgopacity
12913 Set foreground opacity. Default is @code{0.7}.
12914
12915 @item bgopacity
12916 Set background opacity. Default is @code{0.5}.
12917 @end table
12918
12919 @subsection Examples
12920
12921 @itemize
12922
12923 @item
12924 Calculate and draw histogram:
12925 @example
12926 ffplay -i input -vf histogram
12927 @end example
12928
12929 @end itemize
12930
12931 @anchor{hqdn3d}
12932 @section hqdn3d
12933
12934 This is a high precision/quality 3d denoise filter. It aims to reduce
12935 image noise, producing smooth images and making still images really
12936 still. It should enhance compressibility.
12937
12938 It accepts the following optional parameters:
12939
12940 @table @option
12941 @item luma_spatial
12942 A non-negative floating point number which specifies spatial luma strength.
12943 It defaults to 4.0.
12944
12945 @item chroma_spatial
12946 A non-negative floating point number which specifies spatial chroma strength.
12947 It defaults to 3.0*@var{luma_spatial}/4.0.
12948
12949 @item luma_tmp
12950 A floating point number which specifies luma temporal strength. It defaults to
12951 6.0*@var{luma_spatial}/4.0.
12952
12953 @item chroma_tmp
12954 A floating point number which specifies chroma temporal strength. It defaults to
12955 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12956 @end table
12957
12958 @subsection Commands
12959 This filter supports same @ref{commands} as options.
12960 The command accepts the same syntax of the corresponding option.
12961
12962 If the specified expression is not valid, it is kept at its current
12963 value.
12964
12965 @anchor{hwdownload}
12966 @section hwdownload
12967
12968 Download hardware frames to system memory.
12969
12970 The input must be in hardware frames, and the output a non-hardware format.
12971 Not all formats will be supported on the output - it may be necessary to insert
12972 an additional @option{format} filter immediately following in the graph to get
12973 the output in a supported format.
12974
12975 @section hwmap
12976
12977 Map hardware frames to system memory or to another device.
12978
12979 This filter has several different modes of operation; which one is used depends
12980 on the input and output formats:
12981 @itemize
12982 @item
12983 Hardware frame input, normal frame output
12984
12985 Map the input frames to system memory and pass them to the output.  If the
12986 original hardware frame is later required (for example, after overlaying
12987 something else on part of it), the @option{hwmap} filter can be used again
12988 in the next mode to retrieve it.
12989 @item
12990 Normal frame input, hardware frame output
12991
12992 If the input is actually a software-mapped hardware frame, then unmap it -
12993 that is, return the original hardware frame.
12994
12995 Otherwise, a device must be provided.  Create new hardware surfaces on that
12996 device for the output, then map them back to the software format at the input
12997 and give those frames to the preceding filter.  This will then act like the
12998 @option{hwupload} filter, but may be able to avoid an additional copy when
12999 the input is already in a compatible format.
13000 @item
13001 Hardware frame input and output
13002
13003 A device must be supplied for the output, either directly or with the
13004 @option{derive_device} option.  The input and output devices must be of
13005 different types and compatible - the exact meaning of this is
13006 system-dependent, but typically it means that they must refer to the same
13007 underlying hardware context (for example, refer to the same graphics card).
13008
13009 If the input frames were originally created on the output device, then unmap
13010 to retrieve the original frames.
13011
13012 Otherwise, map the frames to the output device - create new hardware frames
13013 on the output corresponding to the frames on the input.
13014 @end itemize
13015
13016 The following additional parameters are accepted:
13017
13018 @table @option
13019 @item mode
13020 Set the frame mapping mode.  Some combination of:
13021 @table @var
13022 @item read
13023 The mapped frame should be readable.
13024 @item write
13025 The mapped frame should be writeable.
13026 @item overwrite
13027 The mapping will always overwrite the entire frame.
13028
13029 This may improve performance in some cases, as the original contents of the
13030 frame need not be loaded.
13031 @item direct
13032 The mapping must not involve any copying.
13033
13034 Indirect mappings to copies of frames are created in some cases where either
13035 direct mapping is not possible or it would have unexpected properties.
13036 Setting this flag ensures that the mapping is direct and will fail if that is
13037 not possible.
13038 @end table
13039 Defaults to @var{read+write} if not specified.
13040
13041 @item derive_device @var{type}
13042 Rather than using the device supplied at initialisation, instead derive a new
13043 device of type @var{type} from the device the input frames exist on.
13044
13045 @item reverse
13046 In a hardware to hardware mapping, map in reverse - create frames in the sink
13047 and map them back to the source.  This may be necessary in some cases where
13048 a mapping in one direction is required but only the opposite direction is
13049 supported by the devices being used.
13050
13051 This option is dangerous - it may break the preceding filter in undefined
13052 ways if there are any additional constraints on that filter's output.
13053 Do not use it without fully understanding the implications of its use.
13054 @end table
13055
13056 @anchor{hwupload}
13057 @section hwupload
13058
13059 Upload system memory frames to hardware surfaces.
13060
13061 The device to upload to must be supplied when the filter is initialised.  If
13062 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
13063 option or with the @option{derive_device} option.  The input and output devices
13064 must be of different types and compatible - the exact meaning of this is
13065 system-dependent, but typically it means that they must refer to the same
13066 underlying hardware context (for example, refer to the same graphics card).
13067
13068 The following additional parameters are accepted:
13069
13070 @table @option
13071 @item derive_device @var{type}
13072 Rather than using the device supplied at initialisation, instead derive a new
13073 device of type @var{type} from the device the input frames exist on.
13074 @end table
13075
13076 @anchor{hwupload_cuda}
13077 @section hwupload_cuda
13078
13079 Upload system memory frames to a CUDA device.
13080
13081 It accepts the following optional parameters:
13082
13083 @table @option
13084 @item device
13085 The number of the CUDA device to use
13086 @end table
13087
13088 @section hqx
13089
13090 Apply a high-quality magnification filter designed for pixel art. This filter
13091 was originally created by Maxim Stepin.
13092
13093 It accepts the following option:
13094
13095 @table @option
13096 @item n
13097 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
13098 @code{hq3x} and @code{4} for @code{hq4x}.
13099 Default is @code{3}.
13100 @end table
13101
13102 @section hstack
13103 Stack input videos horizontally.
13104
13105 All streams must be of same pixel format and of same height.
13106
13107 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13108 to create same output.
13109
13110 The filter accepts the following option:
13111
13112 @table @option
13113 @item inputs
13114 Set number of input streams. Default is 2.
13115
13116 @item shortest
13117 If set to 1, force the output to terminate when the shortest input
13118 terminates. Default value is 0.
13119 @end table
13120
13121 @section hue
13122
13123 Modify the hue and/or the saturation of the input.
13124
13125 It accepts the following parameters:
13126
13127 @table @option
13128 @item h
13129 Specify the hue angle as a number of degrees. It accepts an expression,
13130 and defaults to "0".
13131
13132 @item s
13133 Specify the saturation in the [-10,10] range. It accepts an expression and
13134 defaults to "1".
13135
13136 @item H
13137 Specify the hue angle as a number of radians. It accepts an
13138 expression, and defaults to "0".
13139
13140 @item b
13141 Specify the brightness in the [-10,10] range. It accepts an expression and
13142 defaults to "0".
13143 @end table
13144
13145 @option{h} and @option{H} are mutually exclusive, and can't be
13146 specified at the same time.
13147
13148 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13149 expressions containing the following constants:
13150
13151 @table @option
13152 @item n
13153 frame count of the input frame starting from 0
13154
13155 @item pts
13156 presentation timestamp of the input frame expressed in time base units
13157
13158 @item r
13159 frame rate of the input video, NAN if the input frame rate is unknown
13160
13161 @item t
13162 timestamp expressed in seconds, NAN if the input timestamp is unknown
13163
13164 @item tb
13165 time base of the input video
13166 @end table
13167
13168 @subsection Examples
13169
13170 @itemize
13171 @item
13172 Set the hue to 90 degrees and the saturation to 1.0:
13173 @example
13174 hue=h=90:s=1
13175 @end example
13176
13177 @item
13178 Same command but expressing the hue in radians:
13179 @example
13180 hue=H=PI/2:s=1
13181 @end example
13182
13183 @item
13184 Rotate hue and make the saturation swing between 0
13185 and 2 over a period of 1 second:
13186 @example
13187 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13188 @end example
13189
13190 @item
13191 Apply a 3 seconds saturation fade-in effect starting at 0:
13192 @example
13193 hue="s=min(t/3\,1)"
13194 @end example
13195
13196 The general fade-in expression can be written as:
13197 @example
13198 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13199 @end example
13200
13201 @item
13202 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13203 @example
13204 hue="s=max(0\, min(1\, (8-t)/3))"
13205 @end example
13206
13207 The general fade-out expression can be written as:
13208 @example
13209 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13210 @end example
13211
13212 @end itemize
13213
13214 @subsection Commands
13215
13216 This filter supports the following commands:
13217 @table @option
13218 @item b
13219 @item s
13220 @item h
13221 @item H
13222 Modify the hue and/or the saturation and/or brightness of the input video.
13223 The command accepts the same syntax of the corresponding option.
13224
13225 If the specified expression is not valid, it is kept at its current
13226 value.
13227 @end table
13228
13229 @section hysteresis
13230
13231 Grow first stream into second stream by connecting components.
13232 This makes it possible to build more robust edge masks.
13233
13234 This filter accepts the following options:
13235
13236 @table @option
13237 @item planes
13238 Set which planes will be processed as bitmap, unprocessed planes will be
13239 copied from first stream.
13240 By default value 0xf, all planes will be processed.
13241
13242 @item threshold
13243 Set threshold which is used in filtering. If pixel component value is higher than
13244 this value filter algorithm for connecting components is activated.
13245 By default value is 0.
13246 @end table
13247
13248 The @code{hysteresis} filter also supports the @ref{framesync} options.
13249
13250 @section idet
13251
13252 Detect video interlacing type.
13253
13254 This filter tries to detect if the input frames are interlaced, progressive,
13255 top or bottom field first. It will also try to detect fields that are
13256 repeated between adjacent frames (a sign of telecine).
13257
13258 Single frame detection considers only immediately adjacent frames when classifying each frame.
13259 Multiple frame detection incorporates the classification history of previous frames.
13260
13261 The filter will log these metadata values:
13262
13263 @table @option
13264 @item single.current_frame
13265 Detected type of current frame using single-frame detection. One of:
13266 ``tff'' (top field first), ``bff'' (bottom field first),
13267 ``progressive'', or ``undetermined''
13268
13269 @item single.tff
13270 Cumulative number of frames detected as top field first using single-frame detection.
13271
13272 @item multiple.tff
13273 Cumulative number of frames detected as top field first using multiple-frame detection.
13274
13275 @item single.bff
13276 Cumulative number of frames detected as bottom field first using single-frame detection.
13277
13278 @item multiple.current_frame
13279 Detected type of current frame using multiple-frame detection. One of:
13280 ``tff'' (top field first), ``bff'' (bottom field first),
13281 ``progressive'', or ``undetermined''
13282
13283 @item multiple.bff
13284 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13285
13286 @item single.progressive
13287 Cumulative number of frames detected as progressive using single-frame detection.
13288
13289 @item multiple.progressive
13290 Cumulative number of frames detected as progressive using multiple-frame detection.
13291
13292 @item single.undetermined
13293 Cumulative number of frames that could not be classified using single-frame detection.
13294
13295 @item multiple.undetermined
13296 Cumulative number of frames that could not be classified using multiple-frame detection.
13297
13298 @item repeated.current_frame
13299 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13300
13301 @item repeated.neither
13302 Cumulative number of frames with no repeated field.
13303
13304 @item repeated.top
13305 Cumulative number of frames with the top field repeated from the previous frame's top field.
13306
13307 @item repeated.bottom
13308 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13309 @end table
13310
13311 The filter accepts the following options:
13312
13313 @table @option
13314 @item intl_thres
13315 Set interlacing threshold.
13316 @item prog_thres
13317 Set progressive threshold.
13318 @item rep_thres
13319 Threshold for repeated field detection.
13320 @item half_life
13321 Number of frames after which a given frame's contribution to the
13322 statistics is halved (i.e., it contributes only 0.5 to its
13323 classification). The default of 0 means that all frames seen are given
13324 full weight of 1.0 forever.
13325 @item analyze_interlaced_flag
13326 When this is not 0 then idet will use the specified number of frames to determine
13327 if the interlaced flag is accurate, it will not count undetermined frames.
13328 If the flag is found to be accurate it will be used without any further
13329 computations, if it is found to be inaccurate it will be cleared without any
13330 further computations. This allows inserting the idet filter as a low computational
13331 method to clean up the interlaced flag
13332 @end table
13333
13334 @section il
13335
13336 Deinterleave or interleave fields.
13337
13338 This filter allows one to process interlaced images fields without
13339 deinterlacing them. Deinterleaving splits the input frame into 2
13340 fields (so called half pictures). Odd lines are moved to the top
13341 half of the output image, even lines to the bottom half.
13342 You can process (filter) them independently and then re-interleave them.
13343
13344 The filter accepts the following options:
13345
13346 @table @option
13347 @item luma_mode, l
13348 @item chroma_mode, c
13349 @item alpha_mode, a
13350 Available values for @var{luma_mode}, @var{chroma_mode} and
13351 @var{alpha_mode} are:
13352
13353 @table @samp
13354 @item none
13355 Do nothing.
13356
13357 @item deinterleave, d
13358 Deinterleave fields, placing one above the other.
13359
13360 @item interleave, i
13361 Interleave fields. Reverse the effect of deinterleaving.
13362 @end table
13363 Default value is @code{none}.
13364
13365 @item luma_swap, ls
13366 @item chroma_swap, cs
13367 @item alpha_swap, as
13368 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13369 @end table
13370
13371 @subsection Commands
13372
13373 This filter supports the all above options as @ref{commands}.
13374
13375 @section inflate
13376
13377 Apply inflate effect to the video.
13378
13379 This filter replaces the pixel by the local(3x3) average by taking into account
13380 only values higher than the pixel.
13381
13382 It accepts the following options:
13383
13384 @table @option
13385 @item threshold0
13386 @item threshold1
13387 @item threshold2
13388 @item threshold3
13389 Limit the maximum change for each plane, default is 65535.
13390 If 0, plane will remain unchanged.
13391 @end table
13392
13393 @subsection Commands
13394
13395 This filter supports the all above options as @ref{commands}.
13396
13397 @section interlace
13398
13399 Simple interlacing filter from progressive contents. This interleaves upper (or
13400 lower) lines from odd frames with lower (or upper) lines from even frames,
13401 halving the frame rate and preserving image height.
13402
13403 @example
13404    Original        Original             New Frame
13405    Frame 'j'      Frame 'j+1'             (tff)
13406   ==========      ===========       ==================
13407     Line 0  -------------------->    Frame 'j' Line 0
13408     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13409     Line 2 --------------------->    Frame 'j' Line 2
13410     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13411      ...             ...                   ...
13412 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13413 @end example
13414
13415 It accepts the following optional parameters:
13416
13417 @table @option
13418 @item scan
13419 This determines whether the interlaced frame is taken from the even
13420 (tff - default) or odd (bff) lines of the progressive frame.
13421
13422 @item lowpass
13423 Vertical lowpass filter to avoid twitter interlacing and
13424 reduce moire patterns.
13425
13426 @table @samp
13427 @item 0, off
13428 Disable vertical lowpass filter
13429
13430 @item 1, linear
13431 Enable linear filter (default)
13432
13433 @item 2, complex
13434 Enable complex filter. This will slightly less reduce twitter and moire
13435 but better retain detail and subjective sharpness impression.
13436
13437 @end table
13438 @end table
13439
13440 @section kerndeint
13441
13442 Deinterlace input video by applying Donald Graft's adaptive kernel
13443 deinterling. Work on interlaced parts of a video to produce
13444 progressive frames.
13445
13446 The description of the accepted parameters follows.
13447
13448 @table @option
13449 @item thresh
13450 Set the threshold which affects the filter's tolerance when
13451 determining if a pixel line must be processed. It must be an integer
13452 in the range [0,255] and defaults to 10. A value of 0 will result in
13453 applying the process on every pixels.
13454
13455 @item map
13456 Paint pixels exceeding the threshold value to white if set to 1.
13457 Default is 0.
13458
13459 @item order
13460 Set the fields order. Swap fields if set to 1, leave fields alone if
13461 0. Default is 0.
13462
13463 @item sharp
13464 Enable additional sharpening if set to 1. Default is 0.
13465
13466 @item twoway
13467 Enable twoway sharpening if set to 1. Default is 0.
13468 @end table
13469
13470 @subsection Examples
13471
13472 @itemize
13473 @item
13474 Apply default values:
13475 @example
13476 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13477 @end example
13478
13479 @item
13480 Enable additional sharpening:
13481 @example
13482 kerndeint=sharp=1
13483 @end example
13484
13485 @item
13486 Paint processed pixels in white:
13487 @example
13488 kerndeint=map=1
13489 @end example
13490 @end itemize
13491
13492 @section kirsch
13493 Apply kirsch operator to input video stream.
13494
13495 The filter accepts the following option:
13496
13497 @table @option
13498 @item planes
13499 Set which planes will be processed, unprocessed planes will be copied.
13500 By default value 0xf, all planes will be processed.
13501
13502 @item scale
13503 Set value which will be multiplied with filtered result.
13504
13505 @item delta
13506 Set value which will be added to filtered result.
13507 @end table
13508
13509 @subsection Commands
13510
13511 This filter supports the all above options as @ref{commands}.
13512
13513 @section lagfun
13514
13515 Slowly update darker pixels.
13516
13517 This filter makes short flashes of light appear longer.
13518 This filter accepts the following options:
13519
13520 @table @option
13521 @item decay
13522 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13523
13524 @item planes
13525 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13526 @end table
13527
13528 @subsection Commands
13529
13530 This filter supports the all above options as @ref{commands}.
13531
13532 @section lenscorrection
13533
13534 Correct radial lens distortion
13535
13536 This filter can be used to correct for radial distortion as can result from the use
13537 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13538 one can use tools available for example as part of opencv or simply trial-and-error.
13539 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13540 and extract the k1 and k2 coefficients from the resulting matrix.
13541
13542 Note that effectively the same filter is available in the open-source tools Krita and
13543 Digikam from the KDE project.
13544
13545 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13546 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13547 brightness distribution, so you may want to use both filters together in certain
13548 cases, though you will have to take care of ordering, i.e. whether vignetting should
13549 be applied before or after lens correction.
13550
13551 @subsection Options
13552
13553 The filter accepts the following options:
13554
13555 @table @option
13556 @item cx
13557 Relative x-coordinate of the focal point of the image, and thereby the center of the
13558 distortion. This value has a range [0,1] and is expressed as fractions of the image
13559 width. Default is 0.5.
13560 @item cy
13561 Relative y-coordinate of the focal point of the image, and thereby the center of the
13562 distortion. This value has a range [0,1] and is expressed as fractions of the image
13563 height. Default is 0.5.
13564 @item k1
13565 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13566 no correction. Default is 0.
13567 @item k2
13568 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13569 0 means no correction. Default is 0.
13570 @item i
13571 Set interpolation type. Can be @code{nearest} or @code{bilinear}.
13572 Default is @code{nearest}.
13573 @item fc
13574 Specify the color of the unmapped pixels. For the syntax of this option,
13575 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13576 manual,ffmpeg-utils}. Default color is @code{black@@0}.
13577 @end table
13578
13579 The formula that generates the correction is:
13580
13581 @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)
13582
13583 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13584 distances from the focal point in the source and target images, respectively.
13585
13586 @subsection Commands
13587
13588 This filter supports the all above options as @ref{commands}.
13589
13590 @section lensfun
13591
13592 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13593
13594 The @code{lensfun} filter requires the camera make, camera model, and lens model
13595 to apply the lens correction. The filter will load the lensfun database and
13596 query it to find the corresponding camera and lens entries in the database. As
13597 long as these entries can be found with the given options, the filter can
13598 perform corrections on frames. Note that incomplete strings will result in the
13599 filter choosing the best match with the given options, and the filter will
13600 output the chosen camera and lens models (logged with level "info"). You must
13601 provide the make, camera model, and lens model as they are required.
13602
13603 The filter accepts the following options:
13604
13605 @table @option
13606 @item make
13607 The make of the camera (for example, "Canon"). This option is required.
13608
13609 @item model
13610 The model of the camera (for example, "Canon EOS 100D"). This option is
13611 required.
13612
13613 @item lens_model
13614 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13615 option is required.
13616
13617 @item mode
13618 The type of correction to apply. The following values are valid options:
13619
13620 @table @samp
13621 @item vignetting
13622 Enables fixing lens vignetting.
13623
13624 @item geometry
13625 Enables fixing lens geometry. This is the default.
13626
13627 @item subpixel
13628 Enables fixing chromatic aberrations.
13629
13630 @item vig_geo
13631 Enables fixing lens vignetting and lens geometry.
13632
13633 @item vig_subpixel
13634 Enables fixing lens vignetting and chromatic aberrations.
13635
13636 @item distortion
13637 Enables fixing both lens geometry and chromatic aberrations.
13638
13639 @item all
13640 Enables all possible corrections.
13641
13642 @end table
13643 @item focal_length
13644 The focal length of the image/video (zoom; expected constant for video). For
13645 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13646 range should be chosen when using that lens. Default 18.
13647
13648 @item aperture
13649 The aperture of the image/video (expected constant for video). Note that
13650 aperture is only used for vignetting correction. Default 3.5.
13651
13652 @item focus_distance
13653 The focus distance of the image/video (expected constant for video). Note that
13654 focus distance is only used for vignetting and only slightly affects the
13655 vignetting correction process. If unknown, leave it at the default value (which
13656 is 1000).
13657
13658 @item scale
13659 The scale factor which is applied after transformation. After correction the
13660 video is no longer necessarily rectangular. This parameter controls how much of
13661 the resulting image is visible. The value 0 means that a value will be chosen
13662 automatically such that there is little or no unmapped area in the output
13663 image. 1.0 means that no additional scaling is done. Lower values may result
13664 in more of the corrected image being visible, while higher values may avoid
13665 unmapped areas in the output.
13666
13667 @item target_geometry
13668 The target geometry of the output image/video. The following values are valid
13669 options:
13670
13671 @table @samp
13672 @item rectilinear (default)
13673 @item fisheye
13674 @item panoramic
13675 @item equirectangular
13676 @item fisheye_orthographic
13677 @item fisheye_stereographic
13678 @item fisheye_equisolid
13679 @item fisheye_thoby
13680 @end table
13681 @item reverse
13682 Apply the reverse of image correction (instead of correcting distortion, apply
13683 it).
13684
13685 @item interpolation
13686 The type of interpolation used when correcting distortion. The following values
13687 are valid options:
13688
13689 @table @samp
13690 @item nearest
13691 @item linear (default)
13692 @item lanczos
13693 @end table
13694 @end table
13695
13696 @subsection Examples
13697
13698 @itemize
13699 @item
13700 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13701 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13702 aperture of "8.0".
13703
13704 @example
13705 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
13706 @end example
13707
13708 @item
13709 Apply the same as before, but only for the first 5 seconds of video.
13710
13711 @example
13712 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
13713 @end example
13714
13715 @end itemize
13716
13717 @section libvmaf
13718
13719 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13720 score between two input videos.
13721
13722 The obtained VMAF score is printed through the logging system.
13723
13724 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13725 After installing the library it can be enabled using:
13726 @code{./configure --enable-libvmaf}.
13727 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13728
13729 The filter has following options:
13730
13731 @table @option
13732 @item model_path
13733 Set the model path which is to be used for SVM.
13734 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13735
13736 @item log_path
13737 Set the file path to be used to store logs.
13738
13739 @item log_fmt
13740 Set the format of the log file (csv, json or xml).
13741
13742 @item enable_transform
13743 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13744 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13745 Default value: @code{false}
13746
13747 @item phone_model
13748 Invokes the phone model which will generate VMAF scores higher than in the
13749 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13750 Default value: @code{false}
13751
13752 @item psnr
13753 Enables computing psnr along with vmaf.
13754 Default value: @code{false}
13755
13756 @item ssim
13757 Enables computing ssim along with vmaf.
13758 Default value: @code{false}
13759
13760 @item ms_ssim
13761 Enables computing ms_ssim along with vmaf.
13762 Default value: @code{false}
13763
13764 @item pool
13765 Set the pool method to be used for computing vmaf.
13766 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13767
13768 @item n_threads
13769 Set number of threads to be used when computing vmaf.
13770 Default value: @code{0}, which makes use of all available logical processors.
13771
13772 @item n_subsample
13773 Set interval for frame subsampling used when computing vmaf.
13774 Default value: @code{1}
13775
13776 @item enable_conf_interval
13777 Enables confidence interval.
13778 Default value: @code{false}
13779 @end table
13780
13781 This filter also supports the @ref{framesync} options.
13782
13783 @subsection Examples
13784 @itemize
13785 @item
13786 On the below examples the input file @file{main.mpg} being processed is
13787 compared with the reference file @file{ref.mpg}.
13788
13789 @example
13790 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13791 @end example
13792
13793 @item
13794 Example with options:
13795 @example
13796 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13797 @end example
13798
13799 @item
13800 Example with options and different containers:
13801 @example
13802 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 -
13803 @end example
13804 @end itemize
13805
13806 @section limiter
13807
13808 Limits the pixel components values to the specified range [min, max].
13809
13810 The filter accepts the following options:
13811
13812 @table @option
13813 @item min
13814 Lower bound. Defaults to the lowest allowed value for the input.
13815
13816 @item max
13817 Upper bound. Defaults to the highest allowed value for the input.
13818
13819 @item planes
13820 Specify which planes will be processed. Defaults to all available.
13821 @end table
13822
13823 @subsection Commands
13824
13825 This filter supports the all above options as @ref{commands}.
13826
13827 @section loop
13828
13829 Loop video frames.
13830
13831 The filter accepts the following options:
13832
13833 @table @option
13834 @item loop
13835 Set the number of loops. Setting this value to -1 will result in infinite loops.
13836 Default is 0.
13837
13838 @item size
13839 Set maximal size in number of frames. Default is 0.
13840
13841 @item start
13842 Set first frame of loop. Default is 0.
13843 @end table
13844
13845 @subsection Examples
13846
13847 @itemize
13848 @item
13849 Loop single first frame infinitely:
13850 @example
13851 loop=loop=-1:size=1:start=0
13852 @end example
13853
13854 @item
13855 Loop single first frame 10 times:
13856 @example
13857 loop=loop=10:size=1:start=0
13858 @end example
13859
13860 @item
13861 Loop 10 first frames 5 times:
13862 @example
13863 loop=loop=5:size=10:start=0
13864 @end example
13865 @end itemize
13866
13867 @section lut1d
13868
13869 Apply a 1D LUT to an input video.
13870
13871 The filter accepts the following options:
13872
13873 @table @option
13874 @item file
13875 Set the 1D LUT file name.
13876
13877 Currently supported formats:
13878 @table @samp
13879 @item cube
13880 Iridas
13881 @item csp
13882 cineSpace
13883 @end table
13884
13885 @item interp
13886 Select interpolation mode.
13887
13888 Available values are:
13889
13890 @table @samp
13891 @item nearest
13892 Use values from the nearest defined point.
13893 @item linear
13894 Interpolate values using the linear interpolation.
13895 @item cosine
13896 Interpolate values using the cosine interpolation.
13897 @item cubic
13898 Interpolate values using the cubic interpolation.
13899 @item spline
13900 Interpolate values using the spline interpolation.
13901 @end table
13902 @end table
13903
13904 @anchor{lut3d}
13905 @section lut3d
13906
13907 Apply a 3D LUT to an input video.
13908
13909 The filter accepts the following options:
13910
13911 @table @option
13912 @item file
13913 Set the 3D LUT file name.
13914
13915 Currently supported formats:
13916 @table @samp
13917 @item 3dl
13918 AfterEffects
13919 @item cube
13920 Iridas
13921 @item dat
13922 DaVinci
13923 @item m3d
13924 Pandora
13925 @item csp
13926 cineSpace
13927 @end table
13928 @item interp
13929 Select interpolation mode.
13930
13931 Available values are:
13932
13933 @table @samp
13934 @item nearest
13935 Use values from the nearest defined point.
13936 @item trilinear
13937 Interpolate values using the 8 points defining a cube.
13938 @item tetrahedral
13939 Interpolate values using a tetrahedron.
13940 @item pyramid
13941 Interpolate values using a pyramid.
13942 @item prism
13943 Interpolate values using a prism.
13944 @end table
13945 @end table
13946
13947 @section lumakey
13948
13949 Turn certain luma values into transparency.
13950
13951 The filter accepts the following options:
13952
13953 @table @option
13954 @item threshold
13955 Set the luma which will be used as base for transparency.
13956 Default value is @code{0}.
13957
13958 @item tolerance
13959 Set the range of luma values to be keyed out.
13960 Default value is @code{0.01}.
13961
13962 @item softness
13963 Set the range of softness. Default value is @code{0}.
13964 Use this to control gradual transition from zero to full transparency.
13965 @end table
13966
13967 @subsection Commands
13968 This filter supports same @ref{commands} as options.
13969 The command accepts the same syntax of the corresponding option.
13970
13971 If the specified expression is not valid, it is kept at its current
13972 value.
13973
13974 @section lut, lutrgb, lutyuv
13975
13976 Compute a look-up table for binding each pixel component input value
13977 to an output value, and apply it to the input video.
13978
13979 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13980 to an RGB input video.
13981
13982 These filters accept the following parameters:
13983 @table @option
13984 @item c0
13985 set first pixel component expression
13986 @item c1
13987 set second pixel component expression
13988 @item c2
13989 set third pixel component expression
13990 @item c3
13991 set fourth pixel component expression, corresponds to the alpha component
13992
13993 @item r
13994 set red component expression
13995 @item g
13996 set green component expression
13997 @item b
13998 set blue component expression
13999 @item a
14000 alpha component expression
14001
14002 @item y
14003 set Y/luminance component expression
14004 @item u
14005 set U/Cb component expression
14006 @item v
14007 set V/Cr component expression
14008 @end table
14009
14010 Each of them specifies the expression to use for computing the lookup table for
14011 the corresponding pixel component values.
14012
14013 The exact component associated to each of the @var{c*} options depends on the
14014 format in input.
14015
14016 The @var{lut} filter requires either YUV or RGB pixel formats in input,
14017 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
14018
14019 The expressions can contain the following constants and functions:
14020
14021 @table @option
14022 @item w
14023 @item h
14024 The input width and height.
14025
14026 @item val
14027 The input value for the pixel component.
14028
14029 @item clipval
14030 The input value, clipped to the @var{minval}-@var{maxval} range.
14031
14032 @item maxval
14033 The maximum value for the pixel component.
14034
14035 @item minval
14036 The minimum value for the pixel component.
14037
14038 @item negval
14039 The negated value for the pixel component value, clipped to the
14040 @var{minval}-@var{maxval} range; it corresponds to the expression
14041 "maxval-clipval+minval".
14042
14043 @item clip(val)
14044 The computed value in @var{val}, clipped to the
14045 @var{minval}-@var{maxval} range.
14046
14047 @item gammaval(gamma)
14048 The computed gamma correction value of the pixel component value,
14049 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
14050 expression
14051 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
14052
14053 @end table
14054
14055 All expressions default to "val".
14056
14057 @subsection Examples
14058
14059 @itemize
14060 @item
14061 Negate input video:
14062 @example
14063 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
14064 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
14065 @end example
14066
14067 The above is the same as:
14068 @example
14069 lutrgb="r=negval:g=negval:b=negval"
14070 lutyuv="y=negval:u=negval:v=negval"
14071 @end example
14072
14073 @item
14074 Negate luminance:
14075 @example
14076 lutyuv=y=negval
14077 @end example
14078
14079 @item
14080 Remove chroma components, turning the video into a graytone image:
14081 @example
14082 lutyuv="u=128:v=128"
14083 @end example
14084
14085 @item
14086 Apply a luma burning effect:
14087 @example
14088 lutyuv="y=2*val"
14089 @end example
14090
14091 @item
14092 Remove green and blue components:
14093 @example
14094 lutrgb="g=0:b=0"
14095 @end example
14096
14097 @item
14098 Set a constant alpha channel value on input:
14099 @example
14100 format=rgba,lutrgb=a="maxval-minval/2"
14101 @end example
14102
14103 @item
14104 Correct luminance gamma by a factor of 0.5:
14105 @example
14106 lutyuv=y=gammaval(0.5)
14107 @end example
14108
14109 @item
14110 Discard least significant bits of luma:
14111 @example
14112 lutyuv=y='bitand(val, 128+64+32)'
14113 @end example
14114
14115 @item
14116 Technicolor like effect:
14117 @example
14118 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
14119 @end example
14120 @end itemize
14121
14122 @section lut2, tlut2
14123
14124 The @code{lut2} filter takes two input streams and outputs one
14125 stream.
14126
14127 The @code{tlut2} (time lut2) filter takes two consecutive frames
14128 from one single stream.
14129
14130 This filter accepts the following parameters:
14131 @table @option
14132 @item c0
14133 set first pixel component expression
14134 @item c1
14135 set second pixel component expression
14136 @item c2
14137 set third pixel component expression
14138 @item c3
14139 set fourth pixel component expression, corresponds to the alpha component
14140
14141 @item d
14142 set output bit depth, only available for @code{lut2} filter. By default is 0,
14143 which means bit depth is automatically picked from first input format.
14144 @end table
14145
14146 The @code{lut2} filter also supports the @ref{framesync} options.
14147
14148 Each of them specifies the expression to use for computing the lookup table for
14149 the corresponding pixel component values.
14150
14151 The exact component associated to each of the @var{c*} options depends on the
14152 format in inputs.
14153
14154 The expressions can contain the following constants:
14155
14156 @table @option
14157 @item w
14158 @item h
14159 The input width and height.
14160
14161 @item x
14162 The first input value for the pixel component.
14163
14164 @item y
14165 The second input value for the pixel component.
14166
14167 @item bdx
14168 The first input video bit depth.
14169
14170 @item bdy
14171 The second input video bit depth.
14172 @end table
14173
14174 All expressions default to "x".
14175
14176 @subsection Examples
14177
14178 @itemize
14179 @item
14180 Highlight differences between two RGB video streams:
14181 @example
14182 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)'
14183 @end example
14184
14185 @item
14186 Highlight differences between two YUV video streams:
14187 @example
14188 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)'
14189 @end example
14190
14191 @item
14192 Show max difference between two video streams:
14193 @example
14194 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)))'
14195 @end example
14196 @end itemize
14197
14198 @section maskedclamp
14199
14200 Clamp the first input stream with the second input and third input stream.
14201
14202 Returns the value of first stream to be between second input
14203 stream - @code{undershoot} and third input stream + @code{overshoot}.
14204
14205 This filter accepts the following options:
14206 @table @option
14207 @item undershoot
14208 Default value is @code{0}.
14209
14210 @item overshoot
14211 Default value is @code{0}.
14212
14213 @item planes
14214 Set which planes will be processed as bitmap, unprocessed planes will be
14215 copied from first stream.
14216 By default value 0xf, all planes will be processed.
14217 @end table
14218
14219 @subsection Commands
14220
14221 This filter supports the all above options as @ref{commands}.
14222
14223 @section maskedmax
14224
14225 Merge the second and third input stream into output stream using absolute differences
14226 between second input stream and first input stream and absolute difference between
14227 third input stream and first input stream. The picked value will be from second input
14228 stream if second absolute difference is greater than first one or from third input stream
14229 otherwise.
14230
14231 This filter accepts the following options:
14232 @table @option
14233 @item planes
14234 Set which planes will be processed as bitmap, unprocessed planes will be
14235 copied from first stream.
14236 By default value 0xf, all planes will be processed.
14237 @end table
14238
14239 @subsection Commands
14240
14241 This filter supports the all above options as @ref{commands}.
14242
14243 @section maskedmerge
14244
14245 Merge the first input stream with the second input stream using per pixel
14246 weights in the third input stream.
14247
14248 A value of 0 in the third stream pixel component means that pixel component
14249 from first stream is returned unchanged, while maximum value (eg. 255 for
14250 8-bit videos) means that pixel component from second stream is returned
14251 unchanged. Intermediate values define the amount of merging between both
14252 input stream's pixel components.
14253
14254 This filter accepts the following options:
14255 @table @option
14256 @item planes
14257 Set which planes will be processed as bitmap, unprocessed planes will be
14258 copied from first stream.
14259 By default value 0xf, all planes will be processed.
14260 @end table
14261
14262 @subsection Commands
14263
14264 This filter supports the all above options as @ref{commands}.
14265
14266 @section maskedmin
14267
14268 Merge the second and third input stream into output stream using absolute differences
14269 between second input stream and first input stream and absolute difference between
14270 third input stream and first input stream. The picked value will be from second input
14271 stream if second absolute difference is less than first one or from third input stream
14272 otherwise.
14273
14274 This filter accepts the following options:
14275 @table @option
14276 @item planes
14277 Set which planes will be processed as bitmap, unprocessed planes will be
14278 copied from first stream.
14279 By default value 0xf, all planes will be processed.
14280 @end table
14281
14282 @subsection Commands
14283
14284 This filter supports the all above options as @ref{commands}.
14285
14286 @section maskedthreshold
14287 Pick pixels comparing absolute difference of two video streams with fixed
14288 threshold.
14289
14290 If absolute difference between pixel component of first and second video
14291 stream is equal or lower than user supplied threshold than pixel component
14292 from first video stream is picked, otherwise pixel component from second
14293 video stream is picked.
14294
14295 This filter accepts the following options:
14296 @table @option
14297 @item threshold
14298 Set threshold used when picking pixels from absolute difference from two input
14299 video streams.
14300
14301 @item planes
14302 Set which planes will be processed as bitmap, unprocessed planes will be
14303 copied from second stream.
14304 By default value 0xf, all planes will be processed.
14305 @end table
14306
14307 @subsection Commands
14308
14309 This filter supports the all above options as @ref{commands}.
14310
14311 @section maskfun
14312 Create mask from input video.
14313
14314 For example it is useful to create motion masks after @code{tblend} filter.
14315
14316 This filter accepts the following options:
14317
14318 @table @option
14319 @item low
14320 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14321
14322 @item high
14323 Set high threshold. Any pixel component higher than this value will be set to max value
14324 allowed for current pixel format.
14325
14326 @item planes
14327 Set planes to filter, by default all available planes are filtered.
14328
14329 @item fill
14330 Fill all frame pixels with this value.
14331
14332 @item sum
14333 Set max average pixel value for frame. If sum of all pixel components is higher that this
14334 average, output frame will be completely filled with value set by @var{fill} option.
14335 Typically useful for scene changes when used in combination with @code{tblend} filter.
14336 @end table
14337
14338 @section mcdeint
14339
14340 Apply motion-compensation deinterlacing.
14341
14342 It needs one field per frame as input and must thus be used together
14343 with yadif=1/3 or equivalent.
14344
14345 This filter accepts the following options:
14346 @table @option
14347 @item mode
14348 Set the deinterlacing mode.
14349
14350 It accepts one of the following values:
14351 @table @samp
14352 @item fast
14353 @item medium
14354 @item slow
14355 use iterative motion estimation
14356 @item extra_slow
14357 like @samp{slow}, but use multiple reference frames.
14358 @end table
14359 Default value is @samp{fast}.
14360
14361 @item parity
14362 Set the picture field parity assumed for the input video. It must be
14363 one of the following values:
14364
14365 @table @samp
14366 @item 0, tff
14367 assume top field first
14368 @item 1, bff
14369 assume bottom field first
14370 @end table
14371
14372 Default value is @samp{bff}.
14373
14374 @item qp
14375 Set per-block quantization parameter (QP) used by the internal
14376 encoder.
14377
14378 Higher values should result in a smoother motion vector field but less
14379 optimal individual vectors. Default value is 1.
14380 @end table
14381
14382 @section median
14383
14384 Pick median pixel from certain rectangle defined by radius.
14385
14386 This filter accepts the following options:
14387
14388 @table @option
14389 @item radius
14390 Set horizontal radius size. Default value is @code{1}.
14391 Allowed range is integer from 1 to 127.
14392
14393 @item planes
14394 Set which planes to process. Default is @code{15}, which is all available planes.
14395
14396 @item radiusV
14397 Set vertical radius size. Default value is @code{0}.
14398 Allowed range is integer from 0 to 127.
14399 If it is 0, value will be picked from horizontal @code{radius} option.
14400
14401 @item percentile
14402 Set median percentile. Default value is @code{0.5}.
14403 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14404 minimum values, and @code{1} maximum values.
14405 @end table
14406
14407 @subsection Commands
14408 This filter supports same @ref{commands} as options.
14409 The command accepts the same syntax of the corresponding option.
14410
14411 If the specified expression is not valid, it is kept at its current
14412 value.
14413
14414 @section mergeplanes
14415
14416 Merge color channel components from several video streams.
14417
14418 The filter accepts up to 4 input streams, and merge selected input
14419 planes to the output video.
14420
14421 This filter accepts the following options:
14422 @table @option
14423 @item mapping
14424 Set input to output plane mapping. Default is @code{0}.
14425
14426 The mappings is specified as a bitmap. It should be specified as a
14427 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14428 mapping for the first plane of the output stream. 'A' sets the number of
14429 the input stream to use (from 0 to 3), and 'a' the plane number of the
14430 corresponding input to use (from 0 to 3). The rest of the mappings is
14431 similar, 'Bb' describes the mapping for the output stream second
14432 plane, 'Cc' describes the mapping for the output stream third plane and
14433 'Dd' describes the mapping for the output stream fourth plane.
14434
14435 @item format
14436 Set output pixel format. Default is @code{yuva444p}.
14437 @end table
14438
14439 @subsection Examples
14440
14441 @itemize
14442 @item
14443 Merge three gray video streams of same width and height into single video stream:
14444 @example
14445 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14446 @end example
14447
14448 @item
14449 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14450 @example
14451 [a0][a1]mergeplanes=0x00010210:yuva444p
14452 @end example
14453
14454 @item
14455 Swap Y and A plane in yuva444p stream:
14456 @example
14457 format=yuva444p,mergeplanes=0x03010200:yuva444p
14458 @end example
14459
14460 @item
14461 Swap U and V plane in yuv420p stream:
14462 @example
14463 format=yuv420p,mergeplanes=0x000201:yuv420p
14464 @end example
14465
14466 @item
14467 Cast a rgb24 clip to yuv444p:
14468 @example
14469 format=rgb24,mergeplanes=0x000102:yuv444p
14470 @end example
14471 @end itemize
14472
14473 @section mestimate
14474
14475 Estimate and export motion vectors using block matching algorithms.
14476 Motion vectors are stored in frame side data to be used by other filters.
14477
14478 This filter accepts the following options:
14479 @table @option
14480 @item method
14481 Specify the motion estimation method. Accepts one of the following values:
14482
14483 @table @samp
14484 @item esa
14485 Exhaustive search algorithm.
14486 @item tss
14487 Three step search algorithm.
14488 @item tdls
14489 Two dimensional logarithmic search algorithm.
14490 @item ntss
14491 New three step search algorithm.
14492 @item fss
14493 Four step search algorithm.
14494 @item ds
14495 Diamond search algorithm.
14496 @item hexbs
14497 Hexagon-based search algorithm.
14498 @item epzs
14499 Enhanced predictive zonal search algorithm.
14500 @item umh
14501 Uneven multi-hexagon search algorithm.
14502 @end table
14503 Default value is @samp{esa}.
14504
14505 @item mb_size
14506 Macroblock size. Default @code{16}.
14507
14508 @item search_param
14509 Search parameter. Default @code{7}.
14510 @end table
14511
14512 @section midequalizer
14513
14514 Apply Midway Image Equalization effect using two video streams.
14515
14516 Midway Image Equalization adjusts a pair of images to have the same
14517 histogram, while maintaining their dynamics as much as possible. It's
14518 useful for e.g. matching exposures from a pair of stereo cameras.
14519
14520 This filter has two inputs and one output, which must be of same pixel format, but
14521 may be of different sizes. The output of filter is first input adjusted with
14522 midway histogram of both inputs.
14523
14524 This filter accepts the following option:
14525
14526 @table @option
14527 @item planes
14528 Set which planes to process. Default is @code{15}, which is all available planes.
14529 @end table
14530
14531 @section minterpolate
14532
14533 Convert the video to specified frame rate using motion interpolation.
14534
14535 This filter accepts the following options:
14536 @table @option
14537 @item fps
14538 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}.
14539
14540 @item mi_mode
14541 Motion interpolation mode. Following values are accepted:
14542 @table @samp
14543 @item dup
14544 Duplicate previous or next frame for interpolating new ones.
14545 @item blend
14546 Blend source frames. Interpolated frame is mean of previous and next frames.
14547 @item mci
14548 Motion compensated interpolation. Following options are effective when this mode is selected:
14549
14550 @table @samp
14551 @item mc_mode
14552 Motion compensation mode. Following values are accepted:
14553 @table @samp
14554 @item obmc
14555 Overlapped block motion compensation.
14556 @item aobmc
14557 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14558 @end table
14559 Default mode is @samp{obmc}.
14560
14561 @item me_mode
14562 Motion estimation mode. Following values are accepted:
14563 @table @samp
14564 @item bidir
14565 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14566 @item bilat
14567 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14568 @end table
14569 Default mode is @samp{bilat}.
14570
14571 @item me
14572 The algorithm to be used for motion estimation. Following values are accepted:
14573 @table @samp
14574 @item esa
14575 Exhaustive search algorithm.
14576 @item tss
14577 Three step search algorithm.
14578 @item tdls
14579 Two dimensional logarithmic search algorithm.
14580 @item ntss
14581 New three step search algorithm.
14582 @item fss
14583 Four step search algorithm.
14584 @item ds
14585 Diamond search algorithm.
14586 @item hexbs
14587 Hexagon-based search algorithm.
14588 @item epzs
14589 Enhanced predictive zonal search algorithm.
14590 @item umh
14591 Uneven multi-hexagon search algorithm.
14592 @end table
14593 Default algorithm is @samp{epzs}.
14594
14595 @item mb_size
14596 Macroblock size. Default @code{16}.
14597
14598 @item search_param
14599 Motion estimation search parameter. Default @code{32}.
14600
14601 @item vsbmc
14602 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).
14603 @end table
14604 @end table
14605
14606 @item scd
14607 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:
14608 @table @samp
14609 @item none
14610 Disable scene change detection.
14611 @item fdiff
14612 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14613 @end table
14614 Default method is @samp{fdiff}.
14615
14616 @item scd_threshold
14617 Scene change detection threshold. Default is @code{10.}.
14618 @end table
14619
14620 @section mix
14621
14622 Mix several video input streams into one video stream.
14623
14624 A description of the accepted options follows.
14625
14626 @table @option
14627 @item nb_inputs
14628 The number of inputs. If unspecified, it defaults to 2.
14629
14630 @item weights
14631 Specify weight of each input video stream as sequence.
14632 Each weight is separated by space. If number of weights
14633 is smaller than number of @var{frames} last specified
14634 weight will be used for all remaining unset weights.
14635
14636 @item scale
14637 Specify scale, if it is set it will be multiplied with sum
14638 of each weight multiplied with pixel values to give final destination
14639 pixel value. By default @var{scale} is auto scaled to sum of weights.
14640
14641 @item duration
14642 Specify how end of stream is determined.
14643 @table @samp
14644 @item longest
14645 The duration of the longest input. (default)
14646
14647 @item shortest
14648 The duration of the shortest input.
14649
14650 @item first
14651 The duration of the first input.
14652 @end table
14653 @end table
14654
14655 @section mpdecimate
14656
14657 Drop frames that do not differ greatly from the previous frame in
14658 order to reduce frame rate.
14659
14660 The main use of this filter is for very-low-bitrate encoding
14661 (e.g. streaming over dialup modem), but it could in theory be used for
14662 fixing movies that were inverse-telecined incorrectly.
14663
14664 A description of the accepted options follows.
14665
14666 @table @option
14667 @item max
14668 Set the maximum number of consecutive frames which can be dropped (if
14669 positive), or the minimum interval between dropped frames (if
14670 negative). If the value is 0, the frame is dropped disregarding the
14671 number of previous sequentially dropped frames.
14672
14673 Default value is 0.
14674
14675 @item hi
14676 @item lo
14677 @item frac
14678 Set the dropping threshold values.
14679
14680 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14681 represent actual pixel value differences, so a threshold of 64
14682 corresponds to 1 unit of difference for each pixel, or the same spread
14683 out differently over the block.
14684
14685 A frame is a candidate for dropping if no 8x8 blocks differ by more
14686 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14687 meaning the whole image) differ by more than a threshold of @option{lo}.
14688
14689 Default value for @option{hi} is 64*12, default value for @option{lo} is
14690 64*5, and default value for @option{frac} is 0.33.
14691 @end table
14692
14693
14694 @section negate
14695
14696 Negate (invert) the input video.
14697
14698 It accepts the following option:
14699
14700 @table @option
14701
14702 @item negate_alpha
14703 With value 1, it negates the alpha component, if present. Default value is 0.
14704 @end table
14705
14706 @anchor{nlmeans}
14707 @section nlmeans
14708
14709 Denoise frames using Non-Local Means algorithm.
14710
14711 Each pixel is adjusted by looking for other pixels with similar contexts. This
14712 context similarity is defined by comparing their surrounding patches of size
14713 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14714 around the pixel.
14715
14716 Note that the research area defines centers for patches, which means some
14717 patches will be made of pixels outside that research area.
14718
14719 The filter accepts the following options.
14720
14721 @table @option
14722 @item s
14723 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14724
14725 @item p
14726 Set patch size. Default is 7. Must be odd number in range [0, 99].
14727
14728 @item pc
14729 Same as @option{p} but for chroma planes.
14730
14731 The default value is @var{0} and means automatic.
14732
14733 @item r
14734 Set research size. Default is 15. Must be odd number in range [0, 99].
14735
14736 @item rc
14737 Same as @option{r} but for chroma planes.
14738
14739 The default value is @var{0} and means automatic.
14740 @end table
14741
14742 @section nnedi
14743
14744 Deinterlace video using neural network edge directed interpolation.
14745
14746 This filter accepts the following options:
14747
14748 @table @option
14749 @item weights
14750 Mandatory option, without binary file filter can not work.
14751 Currently file can be found here:
14752 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14753
14754 @item deint
14755 Set which frames to deinterlace, by default it is @code{all}.
14756 Can be @code{all} or @code{interlaced}.
14757
14758 @item field
14759 Set mode of operation.
14760
14761 Can be one of the following:
14762
14763 @table @samp
14764 @item af
14765 Use frame flags, both fields.
14766 @item a
14767 Use frame flags, single field.
14768 @item t
14769 Use top field only.
14770 @item b
14771 Use bottom field only.
14772 @item tf
14773 Use both fields, top first.
14774 @item bf
14775 Use both fields, bottom first.
14776 @end table
14777
14778 @item planes
14779 Set which planes to process, by default filter process all frames.
14780
14781 @item nsize
14782 Set size of local neighborhood around each pixel, used by the predictor neural
14783 network.
14784
14785 Can be one of the following:
14786
14787 @table @samp
14788 @item s8x6
14789 @item s16x6
14790 @item s32x6
14791 @item s48x6
14792 @item s8x4
14793 @item s16x4
14794 @item s32x4
14795 @end table
14796
14797 @item nns
14798 Set the number of neurons in predictor neural network.
14799 Can be one of the following:
14800
14801 @table @samp
14802 @item n16
14803 @item n32
14804 @item n64
14805 @item n128
14806 @item n256
14807 @end table
14808
14809 @item qual
14810 Controls the number of different neural network predictions that are blended
14811 together to compute the final output value. Can be @code{fast}, default or
14812 @code{slow}.
14813
14814 @item etype
14815 Set which set of weights to use in the predictor.
14816 Can be one of the following:
14817
14818 @table @samp
14819 @item a, abs
14820 weights trained to minimize absolute error
14821 @item s, mse
14822 weights trained to minimize squared error
14823 @end table
14824
14825 @item pscrn
14826 Controls whether or not the prescreener neural network is used to decide
14827 which pixels should be processed by the predictor neural network and which
14828 can be handled by simple cubic interpolation.
14829 The prescreener is trained to know whether cubic interpolation will be
14830 sufficient for a pixel or whether it should be predicted by the predictor nn.
14831 The computational complexity of the prescreener nn is much less than that of
14832 the predictor nn. Since most pixels can be handled by cubic interpolation,
14833 using the prescreener generally results in much faster processing.
14834 The prescreener is pretty accurate, so the difference between using it and not
14835 using it is almost always unnoticeable.
14836
14837 Can be one of the following:
14838
14839 @table @samp
14840 @item none
14841 @item original
14842 @item new
14843 @item new2
14844 @item new3
14845 @end table
14846
14847 Default is @code{new}.
14848 @end table
14849
14850 @subsection Commands
14851 This filter supports same @ref{commands} as options, excluding @var{weights} option.
14852
14853 @section noformat
14854
14855 Force libavfilter not to use any of the specified pixel formats for the
14856 input to the next filter.
14857
14858 It accepts the following parameters:
14859 @table @option
14860
14861 @item pix_fmts
14862 A '|'-separated list of pixel format names, such as
14863 pix_fmts=yuv420p|monow|rgb24".
14864
14865 @end table
14866
14867 @subsection Examples
14868
14869 @itemize
14870 @item
14871 Force libavfilter to use a format different from @var{yuv420p} for the
14872 input to the vflip filter:
14873 @example
14874 noformat=pix_fmts=yuv420p,vflip
14875 @end example
14876
14877 @item
14878 Convert the input video to any of the formats not contained in the list:
14879 @example
14880 noformat=yuv420p|yuv444p|yuv410p
14881 @end example
14882 @end itemize
14883
14884 @section noise
14885
14886 Add noise on video input frame.
14887
14888 The filter accepts the following options:
14889
14890 @table @option
14891 @item all_seed
14892 @item c0_seed
14893 @item c1_seed
14894 @item c2_seed
14895 @item c3_seed
14896 Set noise seed for specific pixel component or all pixel components in case
14897 of @var{all_seed}. Default value is @code{123457}.
14898
14899 @item all_strength, alls
14900 @item c0_strength, c0s
14901 @item c1_strength, c1s
14902 @item c2_strength, c2s
14903 @item c3_strength, c3s
14904 Set noise strength for specific pixel component or all pixel components in case
14905 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14906
14907 @item all_flags, allf
14908 @item c0_flags, c0f
14909 @item c1_flags, c1f
14910 @item c2_flags, c2f
14911 @item c3_flags, c3f
14912 Set pixel component flags or set flags for all components if @var{all_flags}.
14913 Available values for component flags are:
14914 @table @samp
14915 @item a
14916 averaged temporal noise (smoother)
14917 @item p
14918 mix random noise with a (semi)regular pattern
14919 @item t
14920 temporal noise (noise pattern changes between frames)
14921 @item u
14922 uniform noise (gaussian otherwise)
14923 @end table
14924 @end table
14925
14926 @subsection Examples
14927
14928 Add temporal and uniform noise to input video:
14929 @example
14930 noise=alls=20:allf=t+u
14931 @end example
14932
14933 @section normalize
14934
14935 Normalize RGB video (aka histogram stretching, contrast stretching).
14936 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14937
14938 For each channel of each frame, the filter computes the input range and maps
14939 it linearly to the user-specified output range. The output range defaults
14940 to the full dynamic range from pure black to pure white.
14941
14942 Temporal smoothing can be used on the input range to reduce flickering (rapid
14943 changes in brightness) caused when small dark or bright objects enter or leave
14944 the scene. This is similar to the auto-exposure (automatic gain control) on a
14945 video camera, and, like a video camera, it may cause a period of over- or
14946 under-exposure of the video.
14947
14948 The R,G,B channels can be normalized independently, which may cause some
14949 color shifting, or linked together as a single channel, which prevents
14950 color shifting. Linked normalization preserves hue. Independent normalization
14951 does not, so it can be used to remove some color casts. Independent and linked
14952 normalization can be combined in any ratio.
14953
14954 The normalize filter accepts the following options:
14955
14956 @table @option
14957 @item blackpt
14958 @item whitept
14959 Colors which define the output range. The minimum input value is mapped to
14960 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14961 The defaults are black and white respectively. Specifying white for
14962 @var{blackpt} and black for @var{whitept} will give color-inverted,
14963 normalized video. Shades of grey can be used to reduce the dynamic range
14964 (contrast). Specifying saturated colors here can create some interesting
14965 effects.
14966
14967 @item smoothing
14968 The number of previous frames to use for temporal smoothing. The input range
14969 of each channel is smoothed using a rolling average over the current frame
14970 and the @var{smoothing} previous frames. The default is 0 (no temporal
14971 smoothing).
14972
14973 @item independence
14974 Controls the ratio of independent (color shifting) channel normalization to
14975 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14976 independent. Defaults to 1.0 (fully independent).
14977
14978 @item strength
14979 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14980 expensive no-op. Defaults to 1.0 (full strength).
14981
14982 @end table
14983
14984 @subsection Commands
14985 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14986 The command accepts the same syntax of the corresponding option.
14987
14988 If the specified expression is not valid, it is kept at its current
14989 value.
14990
14991 @subsection Examples
14992
14993 Stretch video contrast to use the full dynamic range, with no temporal
14994 smoothing; may flicker depending on the source content:
14995 @example
14996 normalize=blackpt=black:whitept=white:smoothing=0
14997 @end example
14998
14999 As above, but with 50 frames of temporal smoothing; flicker should be
15000 reduced, depending on the source content:
15001 @example
15002 normalize=blackpt=black:whitept=white:smoothing=50
15003 @end example
15004
15005 As above, but with hue-preserving linked channel normalization:
15006 @example
15007 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
15008 @end example
15009
15010 As above, but with half strength:
15011 @example
15012 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
15013 @end example
15014
15015 Map the darkest input color to red, the brightest input color to cyan:
15016 @example
15017 normalize=blackpt=red:whitept=cyan
15018 @end example
15019
15020 @section null
15021
15022 Pass the video source unchanged to the output.
15023
15024 @section ocr
15025 Optical Character Recognition
15026
15027 This filter uses Tesseract for optical character recognition. To enable
15028 compilation of this filter, you need to configure FFmpeg with
15029 @code{--enable-libtesseract}.
15030
15031 It accepts the following options:
15032
15033 @table @option
15034 @item datapath
15035 Set datapath to tesseract data. Default is to use whatever was
15036 set at installation.
15037
15038 @item language
15039 Set language, default is "eng".
15040
15041 @item whitelist
15042 Set character whitelist.
15043
15044 @item blacklist
15045 Set character blacklist.
15046 @end table
15047
15048 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
15049 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
15050
15051 @section ocv
15052
15053 Apply a video transform using libopencv.
15054
15055 To enable this filter, install the libopencv library and headers and
15056 configure FFmpeg with @code{--enable-libopencv}.
15057
15058 It accepts the following parameters:
15059
15060 @table @option
15061
15062 @item filter_name
15063 The name of the libopencv filter to apply.
15064
15065 @item filter_params
15066 The parameters to pass to the libopencv filter. If not specified, the default
15067 values are assumed.
15068
15069 @end table
15070
15071 Refer to the official libopencv documentation for more precise
15072 information:
15073 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
15074
15075 Several libopencv filters are supported; see the following subsections.
15076
15077 @anchor{dilate}
15078 @subsection dilate
15079
15080 Dilate an image by using a specific structuring element.
15081 It corresponds to the libopencv function @code{cvDilate}.
15082
15083 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
15084
15085 @var{struct_el} represents a structuring element, and has the syntax:
15086 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
15087
15088 @var{cols} and @var{rows} represent the number of columns and rows of
15089 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
15090 point, and @var{shape} the shape for the structuring element. @var{shape}
15091 must be "rect", "cross", "ellipse", or "custom".
15092
15093 If the value for @var{shape} is "custom", it must be followed by a
15094 string of the form "=@var{filename}". The file with name
15095 @var{filename} is assumed to represent a binary image, with each
15096 printable character corresponding to a bright pixel. When a custom
15097 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
15098 or columns and rows of the read file are assumed instead.
15099
15100 The default value for @var{struct_el} is "3x3+0x0/rect".
15101
15102 @var{nb_iterations} specifies the number of times the transform is
15103 applied to the image, and defaults to 1.
15104
15105 Some examples:
15106 @example
15107 # Use the default values
15108 ocv=dilate
15109
15110 # Dilate using a structuring element with a 5x5 cross, iterating two times
15111 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
15112
15113 # Read the shape from the file diamond.shape, iterating two times.
15114 # The file diamond.shape may contain a pattern of characters like this
15115 #   *
15116 #  ***
15117 # *****
15118 #  ***
15119 #   *
15120 # The specified columns and rows are ignored
15121 # but the anchor point coordinates are not
15122 ocv=dilate:0x0+2x2/custom=diamond.shape|2
15123 @end example
15124
15125 @subsection erode
15126
15127 Erode an image by using a specific structuring element.
15128 It corresponds to the libopencv function @code{cvErode}.
15129
15130 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
15131 with the same syntax and semantics as the @ref{dilate} filter.
15132
15133 @subsection smooth
15134
15135 Smooth the input video.
15136
15137 The filter takes the following parameters:
15138 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
15139
15140 @var{type} is the type of smooth filter to apply, and must be one of
15141 the following values: "blur", "blur_no_scale", "median", "gaussian",
15142 or "bilateral". The default value is "gaussian".
15143
15144 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
15145 depends on the smooth type. @var{param1} and
15146 @var{param2} accept integer positive values or 0. @var{param3} and
15147 @var{param4} accept floating point values.
15148
15149 The default value for @var{param1} is 3. The default value for the
15150 other parameters is 0.
15151
15152 These parameters correspond to the parameters assigned to the
15153 libopencv function @code{cvSmooth}.
15154
15155 @section oscilloscope
15156
15157 2D Video Oscilloscope.
15158
15159 Useful to measure spatial impulse, step responses, chroma delays, etc.
15160
15161 It accepts the following parameters:
15162
15163 @table @option
15164 @item x
15165 Set scope center x position.
15166
15167 @item y
15168 Set scope center y position.
15169
15170 @item s
15171 Set scope size, relative to frame diagonal.
15172
15173 @item t
15174 Set scope tilt/rotation.
15175
15176 @item o
15177 Set trace opacity.
15178
15179 @item tx
15180 Set trace center x position.
15181
15182 @item ty
15183 Set trace center y position.
15184
15185 @item tw
15186 Set trace width, relative to width of frame.
15187
15188 @item th
15189 Set trace height, relative to height of frame.
15190
15191 @item c
15192 Set which components to trace. By default it traces first three components.
15193
15194 @item g
15195 Draw trace grid. By default is enabled.
15196
15197 @item st
15198 Draw some statistics. By default is enabled.
15199
15200 @item sc
15201 Draw scope. By default is enabled.
15202 @end table
15203
15204 @subsection Commands
15205 This filter supports same @ref{commands} as options.
15206 The command accepts the same syntax of the corresponding option.
15207
15208 If the specified expression is not valid, it is kept at its current
15209 value.
15210
15211 @subsection Examples
15212
15213 @itemize
15214 @item
15215 Inspect full first row of video frame.
15216 @example
15217 oscilloscope=x=0.5:y=0:s=1
15218 @end example
15219
15220 @item
15221 Inspect full last row of video frame.
15222 @example
15223 oscilloscope=x=0.5:y=1:s=1
15224 @end example
15225
15226 @item
15227 Inspect full 5th line of video frame of height 1080.
15228 @example
15229 oscilloscope=x=0.5:y=5/1080:s=1
15230 @end example
15231
15232 @item
15233 Inspect full last column of video frame.
15234 @example
15235 oscilloscope=x=1:y=0.5:s=1:t=1
15236 @end example
15237
15238 @end itemize
15239
15240 @anchor{overlay}
15241 @section overlay
15242
15243 Overlay one video on top of another.
15244
15245 It takes two inputs and has one output. The first input is the "main"
15246 video on which the second input is overlaid.
15247
15248 It accepts the following parameters:
15249
15250 A description of the accepted options follows.
15251
15252 @table @option
15253 @item x
15254 @item y
15255 Set the expression for the x and y coordinates of the overlaid video
15256 on the main video. Default value is "0" for both expressions. In case
15257 the expression is invalid, it is set to a huge value (meaning that the
15258 overlay will not be displayed within the output visible area).
15259
15260 @item eof_action
15261 See @ref{framesync}.
15262
15263 @item eval
15264 Set when the expressions for @option{x}, and @option{y} are evaluated.
15265
15266 It accepts the following values:
15267 @table @samp
15268 @item init
15269 only evaluate expressions once during the filter initialization or
15270 when a command is processed
15271
15272 @item frame
15273 evaluate expressions for each incoming frame
15274 @end table
15275
15276 Default value is @samp{frame}.
15277
15278 @item shortest
15279 See @ref{framesync}.
15280
15281 @item format
15282 Set the format for the output video.
15283
15284 It accepts the following values:
15285 @table @samp
15286 @item yuv420
15287 force YUV420 output
15288
15289 @item yuv420p10
15290 force YUV420p10 output
15291
15292 @item yuv422
15293 force YUV422 output
15294
15295 @item yuv422p10
15296 force YUV422p10 output
15297
15298 @item yuv444
15299 force YUV444 output
15300
15301 @item rgb
15302 force packed RGB output
15303
15304 @item gbrp
15305 force planar RGB output
15306
15307 @item auto
15308 automatically pick format
15309 @end table
15310
15311 Default value is @samp{yuv420}.
15312
15313 @item repeatlast
15314 See @ref{framesync}.
15315
15316 @item alpha
15317 Set format of alpha of the overlaid video, it can be @var{straight} or
15318 @var{premultiplied}. Default is @var{straight}.
15319 @end table
15320
15321 The @option{x}, and @option{y} expressions can contain the following
15322 parameters.
15323
15324 @table @option
15325 @item main_w, W
15326 @item main_h, H
15327 The main input width and height.
15328
15329 @item overlay_w, w
15330 @item overlay_h, h
15331 The overlay input width and height.
15332
15333 @item x
15334 @item y
15335 The computed values for @var{x} and @var{y}. They are evaluated for
15336 each new frame.
15337
15338 @item hsub
15339 @item vsub
15340 horizontal and vertical chroma subsample values of the output
15341 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15342 @var{vsub} is 1.
15343
15344 @item n
15345 the number of input frame, starting from 0
15346
15347 @item pos
15348 the position in the file of the input frame, NAN if unknown
15349
15350 @item t
15351 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15352
15353 @end table
15354
15355 This filter also supports the @ref{framesync} options.
15356
15357 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15358 when evaluation is done @emph{per frame}, and will evaluate to NAN
15359 when @option{eval} is set to @samp{init}.
15360
15361 Be aware that frames are taken from each input video in timestamp
15362 order, hence, if their initial timestamps differ, it is a good idea
15363 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15364 have them begin in the same zero timestamp, as the example for
15365 the @var{movie} filter does.
15366
15367 You can chain together more overlays but you should test the
15368 efficiency of such approach.
15369
15370 @subsection Commands
15371
15372 This filter supports the following commands:
15373 @table @option
15374 @item x
15375 @item y
15376 Modify the x and y of the overlay input.
15377 The command accepts the same syntax of the corresponding option.
15378
15379 If the specified expression is not valid, it is kept at its current
15380 value.
15381 @end table
15382
15383 @subsection Examples
15384
15385 @itemize
15386 @item
15387 Draw the overlay at 10 pixels from the bottom right corner of the main
15388 video:
15389 @example
15390 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15391 @end example
15392
15393 Using named options the example above becomes:
15394 @example
15395 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15396 @end example
15397
15398 @item
15399 Insert a transparent PNG logo in the bottom left corner of the input,
15400 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15401 @example
15402 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15403 @end example
15404
15405 @item
15406 Insert 2 different transparent PNG logos (second logo on bottom
15407 right corner) using the @command{ffmpeg} tool:
15408 @example
15409 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
15410 @end example
15411
15412 @item
15413 Add a transparent color layer on top of the main video; @code{WxH}
15414 must specify the size of the main input to the overlay filter:
15415 @example
15416 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15417 @end example
15418
15419 @item
15420 Play an original video and a filtered version (here with the deshake
15421 filter) side by side using the @command{ffplay} tool:
15422 @example
15423 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15424 @end example
15425
15426 The above command is the same as:
15427 @example
15428 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15429 @end example
15430
15431 @item
15432 Make a sliding overlay appearing from the left to the right top part of the
15433 screen starting since time 2:
15434 @example
15435 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15436 @end example
15437
15438 @item
15439 Compose output by putting two input videos side to side:
15440 @example
15441 ffmpeg -i left.avi -i right.avi -filter_complex "
15442 nullsrc=size=200x100 [background];
15443 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15444 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15445 [background][left]       overlay=shortest=1       [background+left];
15446 [background+left][right] overlay=shortest=1:x=100 [left+right]
15447 "
15448 @end example
15449
15450 @item
15451 Mask 10-20 seconds of a video by applying the delogo filter to a section
15452 @example
15453 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15454 -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]'
15455 masked.avi
15456 @end example
15457
15458 @item
15459 Chain several overlays in cascade:
15460 @example
15461 nullsrc=s=200x200 [bg];
15462 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15463 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15464 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15465 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15466 [in3] null,       [mid2] overlay=100:100 [out0]
15467 @end example
15468
15469 @end itemize
15470
15471 @anchor{overlay_cuda}
15472 @section overlay_cuda
15473
15474 Overlay one video on top of another.
15475
15476 This is the CUDA variant of the @ref{overlay} filter.
15477 It only accepts CUDA frames. The underlying input pixel formats have to match.
15478
15479 It takes two inputs and has one output. The first input is the "main"
15480 video on which the second input is overlaid.
15481
15482 It accepts the following parameters:
15483
15484 @table @option
15485 @item x
15486 @item y
15487 Set the x and y coordinates of the overlaid video on the main video.
15488 Default value is "0" for both expressions.
15489
15490 @item eof_action
15491 See @ref{framesync}.
15492
15493 @item shortest
15494 See @ref{framesync}.
15495
15496 @item repeatlast
15497 See @ref{framesync}.
15498
15499 @end table
15500
15501 This filter also supports the @ref{framesync} options.
15502
15503 @section owdenoise
15504
15505 Apply Overcomplete Wavelet denoiser.
15506
15507 The filter accepts the following options:
15508
15509 @table @option
15510 @item depth
15511 Set depth.
15512
15513 Larger depth values will denoise lower frequency components more, but
15514 slow down filtering.
15515
15516 Must be an int in the range 8-16, default is @code{8}.
15517
15518 @item luma_strength, ls
15519 Set luma strength.
15520
15521 Must be a double value in the range 0-1000, default is @code{1.0}.
15522
15523 @item chroma_strength, cs
15524 Set chroma strength.
15525
15526 Must be a double value in the range 0-1000, default is @code{1.0}.
15527 @end table
15528
15529 @anchor{pad}
15530 @section pad
15531
15532 Add paddings to the input image, and place the original input at the
15533 provided @var{x}, @var{y} coordinates.
15534
15535 It accepts the following parameters:
15536
15537 @table @option
15538 @item width, w
15539 @item height, h
15540 Specify an expression for the size of the output image with the
15541 paddings added. If the value for @var{width} or @var{height} is 0, the
15542 corresponding input size is used for the output.
15543
15544 The @var{width} expression can reference the value set by the
15545 @var{height} expression, and vice versa.
15546
15547 The default value of @var{width} and @var{height} is 0.
15548
15549 @item x
15550 @item y
15551 Specify the offsets to place the input image at within the padded area,
15552 with respect to the top/left border of the output image.
15553
15554 The @var{x} expression can reference the value set by the @var{y}
15555 expression, and vice versa.
15556
15557 The default value of @var{x} and @var{y} is 0.
15558
15559 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15560 so the input image is centered on the padded area.
15561
15562 @item color
15563 Specify the color of the padded area. For the syntax of this option,
15564 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15565 manual,ffmpeg-utils}.
15566
15567 The default value of @var{color} is "black".
15568
15569 @item eval
15570 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15571
15572 It accepts the following values:
15573
15574 @table @samp
15575 @item init
15576 Only evaluate expressions once during the filter initialization or when
15577 a command is processed.
15578
15579 @item frame
15580 Evaluate expressions for each incoming frame.
15581
15582 @end table
15583
15584 Default value is @samp{init}.
15585
15586 @item aspect
15587 Pad to aspect instead to a resolution.
15588
15589 @end table
15590
15591 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15592 options are expressions containing the following constants:
15593
15594 @table @option
15595 @item in_w
15596 @item in_h
15597 The input video width and height.
15598
15599 @item iw
15600 @item ih
15601 These are the same as @var{in_w} and @var{in_h}.
15602
15603 @item out_w
15604 @item out_h
15605 The output width and height (the size of the padded area), as
15606 specified by the @var{width} and @var{height} expressions.
15607
15608 @item ow
15609 @item oh
15610 These are the same as @var{out_w} and @var{out_h}.
15611
15612 @item x
15613 @item y
15614 The x and y offsets as specified by the @var{x} and @var{y}
15615 expressions, or NAN if not yet specified.
15616
15617 @item a
15618 same as @var{iw} / @var{ih}
15619
15620 @item sar
15621 input sample aspect ratio
15622
15623 @item dar
15624 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15625
15626 @item hsub
15627 @item vsub
15628 The horizontal and vertical chroma subsample values. For example for the
15629 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15630 @end table
15631
15632 @subsection Examples
15633
15634 @itemize
15635 @item
15636 Add paddings with the color "violet" to the input video. The output video
15637 size is 640x480, and the top-left corner of the input video is placed at
15638 column 0, row 40
15639 @example
15640 pad=640:480:0:40:violet
15641 @end example
15642
15643 The example above is equivalent to the following command:
15644 @example
15645 pad=width=640:height=480:x=0:y=40:color=violet
15646 @end example
15647
15648 @item
15649 Pad the input to get an output with dimensions increased by 3/2,
15650 and put the input video at the center of the padded area:
15651 @example
15652 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15653 @end example
15654
15655 @item
15656 Pad the input to get a squared output with size equal to the maximum
15657 value between the input width and height, and put the input video at
15658 the center of the padded area:
15659 @example
15660 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15661 @end example
15662
15663 @item
15664 Pad the input to get a final w/h ratio of 16:9:
15665 @example
15666 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15667 @end example
15668
15669 @item
15670 In case of anamorphic video, in order to set the output display aspect
15671 correctly, it is necessary to use @var{sar} in the expression,
15672 according to the relation:
15673 @example
15674 (ih * X / ih) * sar = output_dar
15675 X = output_dar / sar
15676 @end example
15677
15678 Thus the previous example needs to be modified to:
15679 @example
15680 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15681 @end example
15682
15683 @item
15684 Double the output size and put the input video in the bottom-right
15685 corner of the output padded area:
15686 @example
15687 pad="2*iw:2*ih:ow-iw:oh-ih"
15688 @end example
15689 @end itemize
15690
15691 @anchor{palettegen}
15692 @section palettegen
15693
15694 Generate one palette for a whole video stream.
15695
15696 It accepts the following options:
15697
15698 @table @option
15699 @item max_colors
15700 Set the maximum number of colors to quantize in the palette.
15701 Note: the palette will still contain 256 colors; the unused palette entries
15702 will be black.
15703
15704 @item reserve_transparent
15705 Create a palette of 255 colors maximum and reserve the last one for
15706 transparency. Reserving the transparency color is useful for GIF optimization.
15707 If not set, the maximum of colors in the palette will be 256. You probably want
15708 to disable this option for a standalone image.
15709 Set by default.
15710
15711 @item transparency_color
15712 Set the color that will be used as background for transparency.
15713
15714 @item stats_mode
15715 Set statistics mode.
15716
15717 It accepts the following values:
15718 @table @samp
15719 @item full
15720 Compute full frame histograms.
15721 @item diff
15722 Compute histograms only for the part that differs from previous frame. This
15723 might be relevant to give more importance to the moving part of your input if
15724 the background is static.
15725 @item single
15726 Compute new histogram for each frame.
15727 @end table
15728
15729 Default value is @var{full}.
15730 @end table
15731
15732 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15733 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15734 color quantization of the palette. This information is also visible at
15735 @var{info} logging level.
15736
15737 @subsection Examples
15738
15739 @itemize
15740 @item
15741 Generate a representative palette of a given video using @command{ffmpeg}:
15742 @example
15743 ffmpeg -i input.mkv -vf palettegen palette.png
15744 @end example
15745 @end itemize
15746
15747 @section paletteuse
15748
15749 Use a palette to downsample an input video stream.
15750
15751 The filter takes two inputs: one video stream and a palette. The palette must
15752 be a 256 pixels image.
15753
15754 It accepts the following options:
15755
15756 @table @option
15757 @item dither
15758 Select dithering mode. Available algorithms are:
15759 @table @samp
15760 @item bayer
15761 Ordered 8x8 bayer dithering (deterministic)
15762 @item heckbert
15763 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15764 Note: this dithering is sometimes considered "wrong" and is included as a
15765 reference.
15766 @item floyd_steinberg
15767 Floyd and Steingberg dithering (error diffusion)
15768 @item sierra2
15769 Frankie Sierra dithering v2 (error diffusion)
15770 @item sierra2_4a
15771 Frankie Sierra dithering v2 "Lite" (error diffusion)
15772 @end table
15773
15774 Default is @var{sierra2_4a}.
15775
15776 @item bayer_scale
15777 When @var{bayer} dithering is selected, this option defines the scale of the
15778 pattern (how much the crosshatch pattern is visible). A low value means more
15779 visible pattern for less banding, and higher value means less visible pattern
15780 at the cost of more banding.
15781
15782 The option must be an integer value in the range [0,5]. Default is @var{2}.
15783
15784 @item diff_mode
15785 If set, define the zone to process
15786
15787 @table @samp
15788 @item rectangle
15789 Only the changing rectangle will be reprocessed. This is similar to GIF
15790 cropping/offsetting compression mechanism. This option can be useful for speed
15791 if only a part of the image is changing, and has use cases such as limiting the
15792 scope of the error diffusal @option{dither} to the rectangle that bounds the
15793 moving scene (it leads to more deterministic output if the scene doesn't change
15794 much, and as a result less moving noise and better GIF compression).
15795 @end table
15796
15797 Default is @var{none}.
15798
15799 @item new
15800 Take new palette for each output frame.
15801
15802 @item alpha_threshold
15803 Sets the alpha threshold for transparency. Alpha values above this threshold
15804 will be treated as completely opaque, and values below this threshold will be
15805 treated as completely transparent.
15806
15807 The option must be an integer value in the range [0,255]. Default is @var{128}.
15808 @end table
15809
15810 @subsection Examples
15811
15812 @itemize
15813 @item
15814 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15815 using @command{ffmpeg}:
15816 @example
15817 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15818 @end example
15819 @end itemize
15820
15821 @section perspective
15822
15823 Correct perspective of video not recorded perpendicular to the screen.
15824
15825 A description of the accepted parameters follows.
15826
15827 @table @option
15828 @item x0
15829 @item y0
15830 @item x1
15831 @item y1
15832 @item x2
15833 @item y2
15834 @item x3
15835 @item y3
15836 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15837 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15838 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15839 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15840 then the corners of the source will be sent to the specified coordinates.
15841
15842 The expressions can use the following variables:
15843
15844 @table @option
15845 @item W
15846 @item H
15847 the width and height of video frame.
15848 @item in
15849 Input frame count.
15850 @item on
15851 Output frame count.
15852 @end table
15853
15854 @item interpolation
15855 Set interpolation for perspective correction.
15856
15857 It accepts the following values:
15858 @table @samp
15859 @item linear
15860 @item cubic
15861 @end table
15862
15863 Default value is @samp{linear}.
15864
15865 @item sense
15866 Set interpretation of coordinate options.
15867
15868 It accepts the following values:
15869 @table @samp
15870 @item 0, source
15871
15872 Send point in the source specified by the given coordinates to
15873 the corners of the destination.
15874
15875 @item 1, destination
15876
15877 Send the corners of the source to the point in the destination specified
15878 by the given coordinates.
15879
15880 Default value is @samp{source}.
15881 @end table
15882
15883 @item eval
15884 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15885
15886 It accepts the following values:
15887 @table @samp
15888 @item init
15889 only evaluate expressions once during the filter initialization or
15890 when a command is processed
15891
15892 @item frame
15893 evaluate expressions for each incoming frame
15894 @end table
15895
15896 Default value is @samp{init}.
15897 @end table
15898
15899 @section phase
15900
15901 Delay interlaced video by one field time so that the field order changes.
15902
15903 The intended use is to fix PAL movies that have been captured with the
15904 opposite field order to the film-to-video transfer.
15905
15906 A description of the accepted parameters follows.
15907
15908 @table @option
15909 @item mode
15910 Set phase mode.
15911
15912 It accepts the following values:
15913 @table @samp
15914 @item t
15915 Capture field order top-first, transfer bottom-first.
15916 Filter will delay the bottom field.
15917
15918 @item b
15919 Capture field order bottom-first, transfer top-first.
15920 Filter will delay the top field.
15921
15922 @item p
15923 Capture and transfer with the same field order. This mode only exists
15924 for the documentation of the other options to refer to, but if you
15925 actually select it, the filter will faithfully do nothing.
15926
15927 @item a
15928 Capture field order determined automatically by field flags, transfer
15929 opposite.
15930 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15931 basis using field flags. If no field information is available,
15932 then this works just like @samp{u}.
15933
15934 @item u
15935 Capture unknown or varying, transfer opposite.
15936 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15937 analyzing the images and selecting the alternative that produces best
15938 match between the fields.
15939
15940 @item T
15941 Capture top-first, transfer unknown or varying.
15942 Filter selects among @samp{t} and @samp{p} using image analysis.
15943
15944 @item B
15945 Capture bottom-first, transfer unknown or varying.
15946 Filter selects among @samp{b} and @samp{p} using image analysis.
15947
15948 @item A
15949 Capture determined by field flags, transfer unknown or varying.
15950 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15951 image analysis. If no field information is available, then this works just
15952 like @samp{U}. This is the default mode.
15953
15954 @item U
15955 Both capture and transfer unknown or varying.
15956 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15957 @end table
15958 @end table
15959
15960 @subsection Commands
15961
15962 This filter supports the all above options as @ref{commands}.
15963
15964 @section photosensitivity
15965 Reduce various flashes in video, so to help users with epilepsy.
15966
15967 It accepts the following options:
15968 @table @option
15969 @item frames, f
15970 Set how many frames to use when filtering. Default is 30.
15971
15972 @item threshold, t
15973 Set detection threshold factor. Default is 1.
15974 Lower is stricter.
15975
15976 @item skip
15977 Set how many pixels to skip when sampling frames. Default is 1.
15978 Allowed range is from 1 to 1024.
15979
15980 @item bypass
15981 Leave frames unchanged. Default is disabled.
15982 @end table
15983
15984 @section pixdesctest
15985
15986 Pixel format descriptor test filter, mainly useful for internal
15987 testing. The output video should be equal to the input video.
15988
15989 For example:
15990 @example
15991 format=monow, pixdesctest
15992 @end example
15993
15994 can be used to test the monowhite pixel format descriptor definition.
15995
15996 @section pixscope
15997
15998 Display sample values of color channels. Mainly useful for checking color
15999 and levels. Minimum supported resolution is 640x480.
16000
16001 The filters accept the following options:
16002
16003 @table @option
16004 @item x
16005 Set scope X position, relative offset on X axis.
16006
16007 @item y
16008 Set scope Y position, relative offset on Y axis.
16009
16010 @item w
16011 Set scope width.
16012
16013 @item h
16014 Set scope height.
16015
16016 @item o
16017 Set window opacity. This window also holds statistics about pixel area.
16018
16019 @item wx
16020 Set window X position, relative offset on X axis.
16021
16022 @item wy
16023 Set window Y position, relative offset on Y axis.
16024 @end table
16025
16026 @section pp
16027
16028 Enable the specified chain of postprocessing subfilters using libpostproc. This
16029 library should be automatically selected with a GPL build (@code{--enable-gpl}).
16030 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
16031 Each subfilter and some options have a short and a long name that can be used
16032 interchangeably, i.e. dr/dering are the same.
16033
16034 The filters accept the following options:
16035
16036 @table @option
16037 @item subfilters
16038 Set postprocessing subfilters string.
16039 @end table
16040
16041 All subfilters share common options to determine their scope:
16042
16043 @table @option
16044 @item a/autoq
16045 Honor the quality commands for this subfilter.
16046
16047 @item c/chrom
16048 Do chrominance filtering, too (default).
16049
16050 @item y/nochrom
16051 Do luminance filtering only (no chrominance).
16052
16053 @item n/noluma
16054 Do chrominance filtering only (no luminance).
16055 @end table
16056
16057 These options can be appended after the subfilter name, separated by a '|'.
16058
16059 Available subfilters are:
16060
16061 @table @option
16062 @item hb/hdeblock[|difference[|flatness]]
16063 Horizontal deblocking filter
16064 @table @option
16065 @item difference
16066 Difference factor where higher values mean more deblocking (default: @code{32}).
16067 @item flatness
16068 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16069 @end table
16070
16071 @item vb/vdeblock[|difference[|flatness]]
16072 Vertical deblocking filter
16073 @table @option
16074 @item difference
16075 Difference factor where higher values mean more deblocking (default: @code{32}).
16076 @item flatness
16077 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16078 @end table
16079
16080 @item ha/hadeblock[|difference[|flatness]]
16081 Accurate horizontal deblocking filter
16082 @table @option
16083 @item difference
16084 Difference factor where higher values mean more deblocking (default: @code{32}).
16085 @item flatness
16086 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16087 @end table
16088
16089 @item va/vadeblock[|difference[|flatness]]
16090 Accurate vertical deblocking filter
16091 @table @option
16092 @item difference
16093 Difference factor where higher values mean more deblocking (default: @code{32}).
16094 @item flatness
16095 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16096 @end table
16097 @end table
16098
16099 The horizontal and vertical deblocking filters share the difference and
16100 flatness values so you cannot set different horizontal and vertical
16101 thresholds.
16102
16103 @table @option
16104 @item h1/x1hdeblock
16105 Experimental horizontal deblocking filter
16106
16107 @item v1/x1vdeblock
16108 Experimental vertical deblocking filter
16109
16110 @item dr/dering
16111 Deringing filter
16112
16113 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
16114 @table @option
16115 @item threshold1
16116 larger -> stronger filtering
16117 @item threshold2
16118 larger -> stronger filtering
16119 @item threshold3
16120 larger -> stronger filtering
16121 @end table
16122
16123 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
16124 @table @option
16125 @item f/fullyrange
16126 Stretch luminance to @code{0-255}.
16127 @end table
16128
16129 @item lb/linblenddeint
16130 Linear blend deinterlacing filter that deinterlaces the given block by
16131 filtering all lines with a @code{(1 2 1)} filter.
16132
16133 @item li/linipoldeint
16134 Linear interpolating deinterlacing filter that deinterlaces the given block by
16135 linearly interpolating every second line.
16136
16137 @item ci/cubicipoldeint
16138 Cubic interpolating deinterlacing filter deinterlaces the given block by
16139 cubically interpolating every second line.
16140
16141 @item md/mediandeint
16142 Median deinterlacing filter that deinterlaces the given block by applying a
16143 median filter to every second line.
16144
16145 @item fd/ffmpegdeint
16146 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
16147 second line with a @code{(-1 4 2 4 -1)} filter.
16148
16149 @item l5/lowpass5
16150 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
16151 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
16152
16153 @item fq/forceQuant[|quantizer]
16154 Overrides the quantizer table from the input with the constant quantizer you
16155 specify.
16156 @table @option
16157 @item quantizer
16158 Quantizer to use
16159 @end table
16160
16161 @item de/default
16162 Default pp filter combination (@code{hb|a,vb|a,dr|a})
16163
16164 @item fa/fast
16165 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
16166
16167 @item ac
16168 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
16169 @end table
16170
16171 @subsection Examples
16172
16173 @itemize
16174 @item
16175 Apply horizontal and vertical deblocking, deringing and automatic
16176 brightness/contrast:
16177 @example
16178 pp=hb/vb/dr/al
16179 @end example
16180
16181 @item
16182 Apply default filters without brightness/contrast correction:
16183 @example
16184 pp=de/-al
16185 @end example
16186
16187 @item
16188 Apply default filters and temporal denoiser:
16189 @example
16190 pp=default/tmpnoise|1|2|3
16191 @end example
16192
16193 @item
16194 Apply deblocking on luminance only, and switch vertical deblocking on or off
16195 automatically depending on available CPU time:
16196 @example
16197 pp=hb|y/vb|a
16198 @end example
16199 @end itemize
16200
16201 @section pp7
16202 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16203 similar to spp = 6 with 7 point DCT, where only the center sample is
16204 used after IDCT.
16205
16206 The filter accepts the following options:
16207
16208 @table @option
16209 @item qp
16210 Force a constant quantization parameter. It accepts an integer in range
16211 0 to 63. If not set, the filter will use the QP from the video stream
16212 (if available).
16213
16214 @item mode
16215 Set thresholding mode. Available modes are:
16216
16217 @table @samp
16218 @item hard
16219 Set hard thresholding.
16220 @item soft
16221 Set soft thresholding (better de-ringing effect, but likely blurrier).
16222 @item medium
16223 Set medium thresholding (good results, default).
16224 @end table
16225 @end table
16226
16227 @section premultiply
16228 Apply alpha premultiply effect to input video stream using first plane
16229 of second stream as alpha.
16230
16231 Both streams must have same dimensions and same pixel format.
16232
16233 The filter accepts the following option:
16234
16235 @table @option
16236 @item planes
16237 Set which planes will be processed, unprocessed planes will be copied.
16238 By default value 0xf, all planes will be processed.
16239
16240 @item inplace
16241 Do not require 2nd input for processing, instead use alpha plane from input stream.
16242 @end table
16243
16244 @section prewitt
16245 Apply prewitt operator to input video stream.
16246
16247 The filter accepts the following option:
16248
16249 @table @option
16250 @item planes
16251 Set which planes will be processed, unprocessed planes will be copied.
16252 By default value 0xf, all planes will be processed.
16253
16254 @item scale
16255 Set value which will be multiplied with filtered result.
16256
16257 @item delta
16258 Set value which will be added to filtered result.
16259 @end table
16260
16261 @subsection Commands
16262
16263 This filter supports the all above options as @ref{commands}.
16264
16265 @section pseudocolor
16266
16267 Alter frame colors in video with pseudocolors.
16268
16269 This filter accepts the following options:
16270
16271 @table @option
16272 @item c0
16273 set pixel first component expression
16274
16275 @item c1
16276 set pixel second component expression
16277
16278 @item c2
16279 set pixel third component expression
16280
16281 @item c3
16282 set pixel fourth component expression, corresponds to the alpha component
16283
16284 @item i
16285 set component to use as base for altering colors
16286
16287 @item p
16288 Pick one of built-in LUTs. By default is set to none.
16289
16290 Available LUTs:
16291 @table @samp
16292 @item magma
16293 @item inferno
16294 @item plasma
16295 @item viridis
16296 @item turbo
16297 @item cividis
16298 @item range1
16299 @item range2
16300 @end table
16301
16302 @end table
16303
16304 Each of them specifies the expression to use for computing the lookup table for
16305 the corresponding pixel component values.
16306
16307 The expressions can contain the following constants and functions:
16308
16309 @table @option
16310 @item w
16311 @item h
16312 The input width and height.
16313
16314 @item val
16315 The input value for the pixel component.
16316
16317 @item ymin, umin, vmin, amin
16318 The minimum allowed component value.
16319
16320 @item ymax, umax, vmax, amax
16321 The maximum allowed component value.
16322 @end table
16323
16324 All expressions default to "val".
16325
16326 @subsection Commands
16327
16328 This filter supports the all above options as @ref{commands}.
16329
16330 @subsection Examples
16331
16332 @itemize
16333 @item
16334 Change too high luma values to gradient:
16335 @example
16336 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'"
16337 @end example
16338 @end itemize
16339
16340 @section psnr
16341
16342 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16343 Ratio) between two input videos.
16344
16345 This filter takes in input two input videos, the first input is
16346 considered the "main" source and is passed unchanged to the
16347 output. The second input is used as a "reference" video for computing
16348 the PSNR.
16349
16350 Both video inputs must have the same resolution and pixel format for
16351 this filter to work correctly. Also it assumes that both inputs
16352 have the same number of frames, which are compared one by one.
16353
16354 The obtained average PSNR is printed through the logging system.
16355
16356 The filter stores the accumulated MSE (mean squared error) of each
16357 frame, and at the end of the processing it is averaged across all frames
16358 equally, and the following formula is applied to obtain the PSNR:
16359
16360 @example
16361 PSNR = 10*log10(MAX^2/MSE)
16362 @end example
16363
16364 Where MAX is the average of the maximum values of each component of the
16365 image.
16366
16367 The description of the accepted parameters follows.
16368
16369 @table @option
16370 @item stats_file, f
16371 If specified the filter will use the named file to save the PSNR of
16372 each individual frame. When filename equals "-" the data is sent to
16373 standard output.
16374
16375 @item stats_version
16376 Specifies which version of the stats file format to use. Details of
16377 each format are written below.
16378 Default value is 1.
16379
16380 @item stats_add_max
16381 Determines whether the max value is output to the stats log.
16382 Default value is 0.
16383 Requires stats_version >= 2. If this is set and stats_version < 2,
16384 the filter will return an error.
16385 @end table
16386
16387 This filter also supports the @ref{framesync} options.
16388
16389 The file printed if @var{stats_file} is selected, contains a sequence of
16390 key/value pairs of the form @var{key}:@var{value} for each compared
16391 couple of frames.
16392
16393 If a @var{stats_version} greater than 1 is specified, a header line precedes
16394 the list of per-frame-pair stats, with key value pairs following the frame
16395 format with the following parameters:
16396
16397 @table @option
16398 @item psnr_log_version
16399 The version of the log file format. Will match @var{stats_version}.
16400
16401 @item fields
16402 A comma separated list of the per-frame-pair parameters included in
16403 the log.
16404 @end table
16405
16406 A description of each shown per-frame-pair parameter follows:
16407
16408 @table @option
16409 @item n
16410 sequential number of the input frame, starting from 1
16411
16412 @item mse_avg
16413 Mean Square Error pixel-by-pixel average difference of the compared
16414 frames, averaged over all the image components.
16415
16416 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16417 Mean Square Error pixel-by-pixel average difference of the compared
16418 frames for the component specified by the suffix.
16419
16420 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16421 Peak Signal to Noise ratio of the compared frames for the component
16422 specified by the suffix.
16423
16424 @item max_avg, max_y, max_u, max_v
16425 Maximum allowed value for each channel, and average over all
16426 channels.
16427 @end table
16428
16429 @subsection Examples
16430 @itemize
16431 @item
16432 For example:
16433 @example
16434 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16435 [main][ref] psnr="stats_file=stats.log" [out]
16436 @end example
16437
16438 On this example the input file being processed is compared with the
16439 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16440 is stored in @file{stats.log}.
16441
16442 @item
16443 Another example with different containers:
16444 @example
16445 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 -
16446 @end example
16447 @end itemize
16448
16449 @anchor{pullup}
16450 @section pullup
16451
16452 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16453 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16454 content.
16455
16456 The pullup filter is designed to take advantage of future context in making
16457 its decisions. This filter is stateless in the sense that it does not lock
16458 onto a pattern to follow, but it instead looks forward to the following
16459 fields in order to identify matches and rebuild progressive frames.
16460
16461 To produce content with an even framerate, insert the fps filter after
16462 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16463 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16464
16465 The filter accepts the following options:
16466
16467 @table @option
16468 @item jl
16469 @item jr
16470 @item jt
16471 @item jb
16472 These options set the amount of "junk" to ignore at the left, right, top, and
16473 bottom of the image, respectively. Left and right are in units of 8 pixels,
16474 while top and bottom are in units of 2 lines.
16475 The default is 8 pixels on each side.
16476
16477 @item sb
16478 Set the strict breaks. Setting this option to 1 will reduce the chances of
16479 filter generating an occasional mismatched frame, but it may also cause an
16480 excessive number of frames to be dropped during high motion sequences.
16481 Conversely, setting it to -1 will make filter match fields more easily.
16482 This may help processing of video where there is slight blurring between
16483 the fields, but may also cause there to be interlaced frames in the output.
16484 Default value is @code{0}.
16485
16486 @item mp
16487 Set the metric plane to use. It accepts the following values:
16488 @table @samp
16489 @item l
16490 Use luma plane.
16491
16492 @item u
16493 Use chroma blue plane.
16494
16495 @item v
16496 Use chroma red plane.
16497 @end table
16498
16499 This option may be set to use chroma plane instead of the default luma plane
16500 for doing filter's computations. This may improve accuracy on very clean
16501 source material, but more likely will decrease accuracy, especially if there
16502 is chroma noise (rainbow effect) or any grayscale video.
16503 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16504 load and make pullup usable in realtime on slow machines.
16505 @end table
16506
16507 For best results (without duplicated frames in the output file) it is
16508 necessary to change the output frame rate. For example, to inverse
16509 telecine NTSC input:
16510 @example
16511 ffmpeg -i input -vf pullup -r 24000/1001 ...
16512 @end example
16513
16514 @section qp
16515
16516 Change video quantization parameters (QP).
16517
16518 The filter accepts the following option:
16519
16520 @table @option
16521 @item qp
16522 Set expression for quantization parameter.
16523 @end table
16524
16525 The expression is evaluated through the eval API and can contain, among others,
16526 the following constants:
16527
16528 @table @var
16529 @item known
16530 1 if index is not 129, 0 otherwise.
16531
16532 @item qp
16533 Sequential index starting from -129 to 128.
16534 @end table
16535
16536 @subsection Examples
16537
16538 @itemize
16539 @item
16540 Some equation like:
16541 @example
16542 qp=2+2*sin(PI*qp)
16543 @end example
16544 @end itemize
16545
16546 @section random
16547
16548 Flush video frames from internal cache of frames into a random order.
16549 No frame is discarded.
16550 Inspired by @ref{frei0r} nervous filter.
16551
16552 @table @option
16553 @item frames
16554 Set size in number of frames of internal cache, in range from @code{2} to
16555 @code{512}. Default is @code{30}.
16556
16557 @item seed
16558 Set seed for random number generator, must be an integer included between
16559 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16560 less than @code{0}, the filter will try to use a good random seed on a
16561 best effort basis.
16562 @end table
16563
16564 @section readeia608
16565
16566 Read closed captioning (EIA-608) information from the top lines of a video frame.
16567
16568 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16569 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16570 with EIA-608 data (starting from 0). A description of each metadata value follows:
16571
16572 @table @option
16573 @item lavfi.readeia608.X.cc
16574 The two bytes stored as EIA-608 data (printed in hexadecimal).
16575
16576 @item lavfi.readeia608.X.line
16577 The number of the line on which the EIA-608 data was identified and read.
16578 @end table
16579
16580 This filter accepts the following options:
16581
16582 @table @option
16583 @item scan_min
16584 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16585
16586 @item scan_max
16587 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16588
16589 @item spw
16590 Set the ratio of width reserved for sync code detection.
16591 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16592
16593 @item chp
16594 Enable checking the parity bit. In the event of a parity error, the filter will output
16595 @code{0x00} for that character. Default is false.
16596
16597 @item lp
16598 Lowpass lines prior to further processing. Default is enabled.
16599 @end table
16600
16601 @subsection Commands
16602
16603 This filter supports the all above options as @ref{commands}.
16604
16605 @subsection Examples
16606
16607 @itemize
16608 @item
16609 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16610 @example
16611 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
16612 @end example
16613 @end itemize
16614
16615 @section readvitc
16616
16617 Read vertical interval timecode (VITC) information from the top lines of a
16618 video frame.
16619
16620 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16621 timecode value, if a valid timecode has been detected. Further metadata key
16622 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16623 timecode data has been found or not.
16624
16625 This filter accepts the following options:
16626
16627 @table @option
16628 @item scan_max
16629 Set the maximum number of lines to scan for VITC data. If the value is set to
16630 @code{-1} the full video frame is scanned. Default is @code{45}.
16631
16632 @item thr_b
16633 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16634 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16635
16636 @item thr_w
16637 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16638 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16639 @end table
16640
16641 @subsection Examples
16642
16643 @itemize
16644 @item
16645 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16646 draw @code{--:--:--:--} as a placeholder:
16647 @example
16648 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16649 @end example
16650 @end itemize
16651
16652 @section remap
16653
16654 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16655
16656 Destination pixel at position (X, Y) will be picked from source (x, y) position
16657 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16658 value for pixel will be used for destination pixel.
16659
16660 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16661 will have Xmap/Ymap video stream dimensions.
16662 Xmap and Ymap input video streams are 16bit depth, single channel.
16663
16664 @table @option
16665 @item format
16666 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16667 Default is @code{color}.
16668
16669 @item fill
16670 Specify the color of the unmapped pixels. For the syntax of this option,
16671 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16672 manual,ffmpeg-utils}. Default color is @code{black}.
16673 @end table
16674
16675 @section removegrain
16676
16677 The removegrain filter is a spatial denoiser for progressive video.
16678
16679 @table @option
16680 @item m0
16681 Set mode for the first plane.
16682
16683 @item m1
16684 Set mode for the second plane.
16685
16686 @item m2
16687 Set mode for the third plane.
16688
16689 @item m3
16690 Set mode for the fourth plane.
16691 @end table
16692
16693 Range of mode is from 0 to 24. Description of each mode follows:
16694
16695 @table @var
16696 @item 0
16697 Leave input plane unchanged. Default.
16698
16699 @item 1
16700 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16701
16702 @item 2
16703 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16704
16705 @item 3
16706 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16707
16708 @item 4
16709 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16710 This is equivalent to a median filter.
16711
16712 @item 5
16713 Line-sensitive clipping giving the minimal change.
16714
16715 @item 6
16716 Line-sensitive clipping, intermediate.
16717
16718 @item 7
16719 Line-sensitive clipping, intermediate.
16720
16721 @item 8
16722 Line-sensitive clipping, intermediate.
16723
16724 @item 9
16725 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16726
16727 @item 10
16728 Replaces the target pixel with the closest neighbour.
16729
16730 @item 11
16731 [1 2 1] horizontal and vertical kernel blur.
16732
16733 @item 12
16734 Same as mode 11.
16735
16736 @item 13
16737 Bob mode, interpolates top field from the line where the neighbours
16738 pixels are the closest.
16739
16740 @item 14
16741 Bob mode, interpolates bottom field from the line where the neighbours
16742 pixels are the closest.
16743
16744 @item 15
16745 Bob mode, interpolates top field. Same as 13 but with a more complicated
16746 interpolation formula.
16747
16748 @item 16
16749 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16750 interpolation formula.
16751
16752 @item 17
16753 Clips the pixel with the minimum and maximum of respectively the maximum and
16754 minimum of each pair of opposite neighbour pixels.
16755
16756 @item 18
16757 Line-sensitive clipping using opposite neighbours whose greatest distance from
16758 the current pixel is minimal.
16759
16760 @item 19
16761 Replaces the pixel with the average of its 8 neighbours.
16762
16763 @item 20
16764 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16765
16766 @item 21
16767 Clips pixels using the averages of opposite neighbour.
16768
16769 @item 22
16770 Same as mode 21 but simpler and faster.
16771
16772 @item 23
16773 Small edge and halo removal, but reputed useless.
16774
16775 @item 24
16776 Similar as 23.
16777 @end table
16778
16779 @section removelogo
16780
16781 Suppress a TV station logo, using an image file to determine which
16782 pixels comprise the logo. It works by filling in the pixels that
16783 comprise the logo with neighboring pixels.
16784
16785 The filter accepts the following options:
16786
16787 @table @option
16788 @item filename, f
16789 Set the filter bitmap file, which can be any image format supported by
16790 libavformat. The width and height of the image file must match those of the
16791 video stream being processed.
16792 @end table
16793
16794 Pixels in the provided bitmap image with a value of zero are not
16795 considered part of the logo, non-zero pixels are considered part of
16796 the logo. If you use white (255) for the logo and black (0) for the
16797 rest, you will be safe. For making the filter bitmap, it is
16798 recommended to take a screen capture of a black frame with the logo
16799 visible, and then using a threshold filter followed by the erode
16800 filter once or twice.
16801
16802 If needed, little splotches can be fixed manually. Remember that if
16803 logo pixels are not covered, the filter quality will be much
16804 reduced. Marking too many pixels as part of the logo does not hurt as
16805 much, but it will increase the amount of blurring needed to cover over
16806 the image and will destroy more information than necessary, and extra
16807 pixels will slow things down on a large logo.
16808
16809 @section repeatfields
16810
16811 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16812 fields based on its value.
16813
16814 @section reverse
16815
16816 Reverse a video clip.
16817
16818 Warning: This filter requires memory to buffer the entire clip, so trimming
16819 is suggested.
16820
16821 @subsection Examples
16822
16823 @itemize
16824 @item
16825 Take the first 5 seconds of a clip, and reverse it.
16826 @example
16827 trim=end=5,reverse
16828 @end example
16829 @end itemize
16830
16831 @section rgbashift
16832 Shift R/G/B/A pixels horizontally and/or vertically.
16833
16834 The filter accepts the following options:
16835 @table @option
16836 @item rh
16837 Set amount to shift red horizontally.
16838 @item rv
16839 Set amount to shift red vertically.
16840 @item gh
16841 Set amount to shift green horizontally.
16842 @item gv
16843 Set amount to shift green vertically.
16844 @item bh
16845 Set amount to shift blue horizontally.
16846 @item bv
16847 Set amount to shift blue vertically.
16848 @item ah
16849 Set amount to shift alpha horizontally.
16850 @item av
16851 Set amount to shift alpha vertically.
16852 @item edge
16853 Set edge mode, can be @var{smear}, default, or @var{warp}.
16854 @end table
16855
16856 @subsection Commands
16857
16858 This filter supports the all above options as @ref{commands}.
16859
16860 @section roberts
16861 Apply roberts cross operator to input video stream.
16862
16863 The filter accepts the following option:
16864
16865 @table @option
16866 @item planes
16867 Set which planes will be processed, unprocessed planes will be copied.
16868 By default value 0xf, all planes will be processed.
16869
16870 @item scale
16871 Set value which will be multiplied with filtered result.
16872
16873 @item delta
16874 Set value which will be added to filtered result.
16875 @end table
16876
16877 @subsection Commands
16878
16879 This filter supports the all above options as @ref{commands}.
16880
16881 @section rotate
16882
16883 Rotate video by an arbitrary angle expressed in radians.
16884
16885 The filter accepts the following options:
16886
16887 A description of the optional parameters follows.
16888 @table @option
16889 @item angle, a
16890 Set an expression for the angle by which to rotate the input video
16891 clockwise, expressed as a number of radians. A negative value will
16892 result in a counter-clockwise rotation. By default it is set to "0".
16893
16894 This expression is evaluated for each frame.
16895
16896 @item out_w, ow
16897 Set the output width expression, default value is "iw".
16898 This expression is evaluated just once during configuration.
16899
16900 @item out_h, oh
16901 Set the output height expression, default value is "ih".
16902 This expression is evaluated just once during configuration.
16903
16904 @item bilinear
16905 Enable bilinear interpolation if set to 1, a value of 0 disables
16906 it. Default value is 1.
16907
16908 @item fillcolor, c
16909 Set the color used to fill the output area not covered by the rotated
16910 image. For the general syntax of this option, check the
16911 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16912 If the special value "none" is selected then no
16913 background is printed (useful for example if the background is never shown).
16914
16915 Default value is "black".
16916 @end table
16917
16918 The expressions for the angle and the output size can contain the
16919 following constants and functions:
16920
16921 @table @option
16922 @item n
16923 sequential number of the input frame, starting from 0. It is always NAN
16924 before the first frame is filtered.
16925
16926 @item t
16927 time in seconds of the input frame, it is set to 0 when the filter is
16928 configured. It is always NAN before the first frame is filtered.
16929
16930 @item hsub
16931 @item vsub
16932 horizontal and vertical chroma subsample values. For example for the
16933 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16934
16935 @item in_w, iw
16936 @item in_h, ih
16937 the input video width and height
16938
16939 @item out_w, ow
16940 @item out_h, oh
16941 the output width and height, that is the size of the padded area as
16942 specified by the @var{width} and @var{height} expressions
16943
16944 @item rotw(a)
16945 @item roth(a)
16946 the minimal width/height required for completely containing the input
16947 video rotated by @var{a} radians.
16948
16949 These are only available when computing the @option{out_w} and
16950 @option{out_h} expressions.
16951 @end table
16952
16953 @subsection Examples
16954
16955 @itemize
16956 @item
16957 Rotate the input by PI/6 radians clockwise:
16958 @example
16959 rotate=PI/6
16960 @end example
16961
16962 @item
16963 Rotate the input by PI/6 radians counter-clockwise:
16964 @example
16965 rotate=-PI/6
16966 @end example
16967
16968 @item
16969 Rotate the input by 45 degrees clockwise:
16970 @example
16971 rotate=45*PI/180
16972 @end example
16973
16974 @item
16975 Apply a constant rotation with period T, starting from an angle of PI/3:
16976 @example
16977 rotate=PI/3+2*PI*t/T
16978 @end example
16979
16980 @item
16981 Make the input video rotation oscillating with a period of T
16982 seconds and an amplitude of A radians:
16983 @example
16984 rotate=A*sin(2*PI/T*t)
16985 @end example
16986
16987 @item
16988 Rotate the video, output size is chosen so that the whole rotating
16989 input video is always completely contained in the output:
16990 @example
16991 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16992 @end example
16993
16994 @item
16995 Rotate the video, reduce the output size so that no background is ever
16996 shown:
16997 @example
16998 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16999 @end example
17000 @end itemize
17001
17002 @subsection Commands
17003
17004 The filter supports the following commands:
17005
17006 @table @option
17007 @item a, angle
17008 Set the angle expression.
17009 The command accepts the same syntax of the corresponding option.
17010
17011 If the specified expression is not valid, it is kept at its current
17012 value.
17013 @end table
17014
17015 @section sab
17016
17017 Apply Shape Adaptive Blur.
17018
17019 The filter accepts the following options:
17020
17021 @table @option
17022 @item luma_radius, lr
17023 Set luma blur filter strength, must be a value in range 0.1-4.0, default
17024 value is 1.0. A greater value will result in a more blurred image, and
17025 in slower processing.
17026
17027 @item luma_pre_filter_radius, lpfr
17028 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
17029 value is 1.0.
17030
17031 @item luma_strength, ls
17032 Set luma maximum difference between pixels to still be considered, must
17033 be a value in the 0.1-100.0 range, default value is 1.0.
17034
17035 @item chroma_radius, cr
17036 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
17037 greater value will result in a more blurred image, and in slower
17038 processing.
17039
17040 @item chroma_pre_filter_radius, cpfr
17041 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
17042
17043 @item chroma_strength, cs
17044 Set chroma maximum difference between pixels to still be considered,
17045 must be a value in the -0.9-100.0 range.
17046 @end table
17047
17048 Each chroma option value, if not explicitly specified, is set to the
17049 corresponding luma option value.
17050
17051 @anchor{scale}
17052 @section scale
17053
17054 Scale (resize) the input video, using the libswscale library.
17055
17056 The scale filter forces the output display aspect ratio to be the same
17057 of the input, by changing the output sample aspect ratio.
17058
17059 If the input image format is different from the format requested by
17060 the next filter, the scale filter will convert the input to the
17061 requested format.
17062
17063 @subsection Options
17064 The filter accepts the following options, or any of the options
17065 supported by the libswscale scaler.
17066
17067 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
17068 the complete list of scaler options.
17069
17070 @table @option
17071 @item width, w
17072 @item height, h
17073 Set the output video dimension expression. Default value is the input
17074 dimension.
17075
17076 If the @var{width} or @var{w} value is 0, the input width is used for
17077 the output. If the @var{height} or @var{h} value is 0, the input height
17078 is used for the output.
17079
17080 If one and only one of the values is -n with n >= 1, the scale filter
17081 will use a value that maintains the aspect ratio of the input image,
17082 calculated from the other specified dimension. After that it will,
17083 however, make sure that the calculated dimension is divisible by n and
17084 adjust the value if necessary.
17085
17086 If both values are -n with n >= 1, the behavior will be identical to
17087 both values being set to 0 as previously detailed.
17088
17089 See below for the list of accepted constants for use in the dimension
17090 expression.
17091
17092 @item eval
17093 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
17094
17095 @table @samp
17096 @item init
17097 Only evaluate expressions once during the filter initialization or when a command is processed.
17098
17099 @item frame
17100 Evaluate expressions for each incoming frame.
17101
17102 @end table
17103
17104 Default value is @samp{init}.
17105
17106
17107 @item interl
17108 Set the interlacing mode. It accepts the following values:
17109
17110 @table @samp
17111 @item 1
17112 Force interlaced aware scaling.
17113
17114 @item 0
17115 Do not apply interlaced scaling.
17116
17117 @item -1
17118 Select interlaced aware scaling depending on whether the source frames
17119 are flagged as interlaced or not.
17120 @end table
17121
17122 Default value is @samp{0}.
17123
17124 @item flags
17125 Set libswscale scaling flags. See
17126 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17127 complete list of values. If not explicitly specified the filter applies
17128 the default flags.
17129
17130
17131 @item param0, param1
17132 Set libswscale input parameters for scaling algorithms that need them. See
17133 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17134 complete documentation. If not explicitly specified the filter applies
17135 empty parameters.
17136
17137
17138
17139 @item size, s
17140 Set the video size. For the syntax of this option, check the
17141 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17142
17143 @item in_color_matrix
17144 @item out_color_matrix
17145 Set in/output YCbCr color space type.
17146
17147 This allows the autodetected value to be overridden as well as allows forcing
17148 a specific value used for the output and encoder.
17149
17150 If not specified, the color space type depends on the pixel format.
17151
17152 Possible values:
17153
17154 @table @samp
17155 @item auto
17156 Choose automatically.
17157
17158 @item bt709
17159 Format conforming to International Telecommunication Union (ITU)
17160 Recommendation BT.709.
17161
17162 @item fcc
17163 Set color space conforming to the United States Federal Communications
17164 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
17165
17166 @item bt601
17167 @item bt470
17168 @item smpte170m
17169 Set color space conforming to:
17170
17171 @itemize
17172 @item
17173 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
17174
17175 @item
17176 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
17177
17178 @item
17179 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
17180
17181 @end itemize
17182
17183 @item smpte240m
17184 Set color space conforming to SMPTE ST 240:1999.
17185
17186 @item bt2020
17187 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
17188 @end table
17189
17190 @item in_range
17191 @item out_range
17192 Set in/output YCbCr sample range.
17193
17194 This allows the autodetected value to be overridden as well as allows forcing
17195 a specific value used for the output and encoder. If not specified, the
17196 range depends on the pixel format. Possible values:
17197
17198 @table @samp
17199 @item auto/unknown
17200 Choose automatically.
17201
17202 @item jpeg/full/pc
17203 Set full range (0-255 in case of 8-bit luma).
17204
17205 @item mpeg/limited/tv
17206 Set "MPEG" range (16-235 in case of 8-bit luma).
17207 @end table
17208
17209 @item force_original_aspect_ratio
17210 Enable decreasing or increasing output video width or height if necessary to
17211 keep the original aspect ratio. Possible values:
17212
17213 @table @samp
17214 @item disable
17215 Scale the video as specified and disable this feature.
17216
17217 @item decrease
17218 The output video dimensions will automatically be decreased if needed.
17219
17220 @item increase
17221 The output video dimensions will automatically be increased if needed.
17222
17223 @end table
17224
17225 One useful instance of this option is that when you know a specific device's
17226 maximum allowed resolution, you can use this to limit the output video to
17227 that, while retaining the aspect ratio. For example, device A allows
17228 1280x720 playback, and your video is 1920x800. Using this option (set it to
17229 decrease) and specifying 1280x720 to the command line makes the output
17230 1280x533.
17231
17232 Please note that this is a different thing than specifying -1 for @option{w}
17233 or @option{h}, you still need to specify the output resolution for this option
17234 to work.
17235
17236 @item force_divisible_by
17237 Ensures that both the output dimensions, width and height, are divisible by the
17238 given integer when used together with @option{force_original_aspect_ratio}. This
17239 works similar to using @code{-n} in the @option{w} and @option{h} options.
17240
17241 This option respects the value set for @option{force_original_aspect_ratio},
17242 increasing or decreasing the resolution accordingly. The video's aspect ratio
17243 may be slightly modified.
17244
17245 This option can be handy if you need to have a video fit within or exceed
17246 a defined resolution using @option{force_original_aspect_ratio} but also have
17247 encoder restrictions on width or height divisibility.
17248
17249 @end table
17250
17251 The values of the @option{w} and @option{h} options are expressions
17252 containing the following constants:
17253
17254 @table @var
17255 @item in_w
17256 @item in_h
17257 The input width and height
17258
17259 @item iw
17260 @item ih
17261 These are the same as @var{in_w} and @var{in_h}.
17262
17263 @item out_w
17264 @item out_h
17265 The output (scaled) width and height
17266
17267 @item ow
17268 @item oh
17269 These are the same as @var{out_w} and @var{out_h}
17270
17271 @item a
17272 The same as @var{iw} / @var{ih}
17273
17274 @item sar
17275 input sample aspect ratio
17276
17277 @item dar
17278 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17279
17280 @item hsub
17281 @item vsub
17282 horizontal and vertical input chroma subsample values. For example for the
17283 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17284
17285 @item ohsub
17286 @item ovsub
17287 horizontal and vertical output chroma subsample values. For example for the
17288 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17289
17290 @item n
17291 The (sequential) number of the input frame, starting from 0.
17292 Only available with @code{eval=frame}.
17293
17294 @item t
17295 The presentation timestamp of the input frame, expressed as a number of
17296 seconds. Only available with @code{eval=frame}.
17297
17298 @item pos
17299 The position (byte offset) of the frame in the input stream, or NaN if
17300 this information is unavailable and/or meaningless (for example in case of synthetic video).
17301 Only available with @code{eval=frame}.
17302 @end table
17303
17304 @subsection Examples
17305
17306 @itemize
17307 @item
17308 Scale the input video to a size of 200x100
17309 @example
17310 scale=w=200:h=100
17311 @end example
17312
17313 This is equivalent to:
17314 @example
17315 scale=200:100
17316 @end example
17317
17318 or:
17319 @example
17320 scale=200x100
17321 @end example
17322
17323 @item
17324 Specify a size abbreviation for the output size:
17325 @example
17326 scale=qcif
17327 @end example
17328
17329 which can also be written as:
17330 @example
17331 scale=size=qcif
17332 @end example
17333
17334 @item
17335 Scale the input to 2x:
17336 @example
17337 scale=w=2*iw:h=2*ih
17338 @end example
17339
17340 @item
17341 The above is the same as:
17342 @example
17343 scale=2*in_w:2*in_h
17344 @end example
17345
17346 @item
17347 Scale the input to 2x with forced interlaced scaling:
17348 @example
17349 scale=2*iw:2*ih:interl=1
17350 @end example
17351
17352 @item
17353 Scale the input to half size:
17354 @example
17355 scale=w=iw/2:h=ih/2
17356 @end example
17357
17358 @item
17359 Increase the width, and set the height to the same size:
17360 @example
17361 scale=3/2*iw:ow
17362 @end example
17363
17364 @item
17365 Seek Greek harmony:
17366 @example
17367 scale=iw:1/PHI*iw
17368 scale=ih*PHI:ih
17369 @end example
17370
17371 @item
17372 Increase the height, and set the width to 3/2 of the height:
17373 @example
17374 scale=w=3/2*oh:h=3/5*ih
17375 @end example
17376
17377 @item
17378 Increase the size, making the size a multiple of the chroma
17379 subsample values:
17380 @example
17381 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17382 @end example
17383
17384 @item
17385 Increase the width to a maximum of 500 pixels,
17386 keeping the same aspect ratio as the input:
17387 @example
17388 scale=w='min(500\, iw*3/2):h=-1'
17389 @end example
17390
17391 @item
17392 Make pixels square by combining scale and setsar:
17393 @example
17394 scale='trunc(ih*dar):ih',setsar=1/1
17395 @end example
17396
17397 @item
17398 Make pixels square by combining scale and setsar,
17399 making sure the resulting resolution is even (required by some codecs):
17400 @example
17401 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17402 @end example
17403 @end itemize
17404
17405 @subsection Commands
17406
17407 This filter supports the following commands:
17408 @table @option
17409 @item width, w
17410 @item height, h
17411 Set the output video dimension expression.
17412 The command accepts the same syntax of the corresponding option.
17413
17414 If the specified expression is not valid, it is kept at its current
17415 value.
17416 @end table
17417
17418 @section scale_npp
17419
17420 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17421 format conversion on CUDA video frames. Setting the output width and height
17422 works in the same way as for the @var{scale} filter.
17423
17424 The following additional options are accepted:
17425 @table @option
17426 @item format
17427 The pixel format of the output CUDA frames. If set to the string "same" (the
17428 default), the input format will be kept. Note that automatic format negotiation
17429 and conversion is not yet supported for hardware frames
17430
17431 @item interp_algo
17432 The interpolation algorithm used for resizing. One of the following:
17433 @table @option
17434 @item nn
17435 Nearest neighbour.
17436
17437 @item linear
17438 @item cubic
17439 @item cubic2p_bspline
17440 2-parameter cubic (B=1, C=0)
17441
17442 @item cubic2p_catmullrom
17443 2-parameter cubic (B=0, C=1/2)
17444
17445 @item cubic2p_b05c03
17446 2-parameter cubic (B=1/2, C=3/10)
17447
17448 @item super
17449 Supersampling
17450
17451 @item lanczos
17452 @end table
17453
17454 @item force_original_aspect_ratio
17455 Enable decreasing or increasing output video width or height if necessary to
17456 keep the original aspect ratio. Possible values:
17457
17458 @table @samp
17459 @item disable
17460 Scale the video as specified and disable this feature.
17461
17462 @item decrease
17463 The output video dimensions will automatically be decreased if needed.
17464
17465 @item increase
17466 The output video dimensions will automatically be increased if needed.
17467
17468 @end table
17469
17470 One useful instance of this option is that when you know a specific device's
17471 maximum allowed resolution, you can use this to limit the output video to
17472 that, while retaining the aspect ratio. For example, device A allows
17473 1280x720 playback, and your video is 1920x800. Using this option (set it to
17474 decrease) and specifying 1280x720 to the command line makes the output
17475 1280x533.
17476
17477 Please note that this is a different thing than specifying -1 for @option{w}
17478 or @option{h}, you still need to specify the output resolution for this option
17479 to work.
17480
17481 @item force_divisible_by
17482 Ensures that both the output dimensions, width and height, are divisible by the
17483 given integer when used together with @option{force_original_aspect_ratio}. This
17484 works similar to using @code{-n} in the @option{w} and @option{h} options.
17485
17486 This option respects the value set for @option{force_original_aspect_ratio},
17487 increasing or decreasing the resolution accordingly. The video's aspect ratio
17488 may be slightly modified.
17489
17490 This option can be handy if you need to have a video fit within or exceed
17491 a defined resolution using @option{force_original_aspect_ratio} but also have
17492 encoder restrictions on width or height divisibility.
17493
17494 @end table
17495
17496 @section scale2ref
17497
17498 Scale (resize) the input video, based on a reference video.
17499
17500 See the scale filter for available options, scale2ref supports the same but
17501 uses the reference video instead of the main input as basis. scale2ref also
17502 supports the following additional constants for the @option{w} and
17503 @option{h} options:
17504
17505 @table @var
17506 @item main_w
17507 @item main_h
17508 The main input video's width and height
17509
17510 @item main_a
17511 The same as @var{main_w} / @var{main_h}
17512
17513 @item main_sar
17514 The main input video's sample aspect ratio
17515
17516 @item main_dar, mdar
17517 The main input video's display aspect ratio. Calculated from
17518 @code{(main_w / main_h) * main_sar}.
17519
17520 @item main_hsub
17521 @item main_vsub
17522 The main input video's horizontal and vertical chroma subsample values.
17523 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17524 is 1.
17525
17526 @item main_n
17527 The (sequential) number of the main input frame, starting from 0.
17528 Only available with @code{eval=frame}.
17529
17530 @item main_t
17531 The presentation timestamp of the main input frame, expressed as a number of
17532 seconds. Only available with @code{eval=frame}.
17533
17534 @item main_pos
17535 The position (byte offset) of the frame in the main input stream, or NaN if
17536 this information is unavailable and/or meaningless (for example in case of synthetic video).
17537 Only available with @code{eval=frame}.
17538 @end table
17539
17540 @subsection Examples
17541
17542 @itemize
17543 @item
17544 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17545 @example
17546 'scale2ref[b][a];[a][b]overlay'
17547 @end example
17548
17549 @item
17550 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17551 @example
17552 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17553 @end example
17554 @end itemize
17555
17556 @subsection Commands
17557
17558 This filter supports the following commands:
17559 @table @option
17560 @item width, w
17561 @item height, h
17562 Set the output video dimension expression.
17563 The command accepts the same syntax of the corresponding option.
17564
17565 If the specified expression is not valid, it is kept at its current
17566 value.
17567 @end table
17568
17569 @section scroll
17570 Scroll input video horizontally and/or vertically by constant speed.
17571
17572 The filter accepts the following options:
17573 @table @option
17574 @item horizontal, h
17575 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17576 Negative values changes scrolling direction.
17577
17578 @item vertical, v
17579 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17580 Negative values changes scrolling direction.
17581
17582 @item hpos
17583 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17584
17585 @item vpos
17586 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17587 @end table
17588
17589 @subsection Commands
17590
17591 This filter supports the following @ref{commands}:
17592 @table @option
17593 @item horizontal, h
17594 Set the horizontal scrolling speed.
17595 @item vertical, v
17596 Set the vertical scrolling speed.
17597 @end table
17598
17599 @anchor{scdet}
17600 @section scdet
17601
17602 Detect video scene change.
17603
17604 This filter sets frame metadata with mafd between frame, the scene score, and
17605 forward the frame to the next filter, so they can use these metadata to detect
17606 scene change or others.
17607
17608 In addition, this filter logs a message and sets frame metadata when it detects
17609 a scene change by @option{threshold}.
17610
17611 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17612
17613 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17614 to detect scene change.
17615
17616 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17617 detect scene change with @option{threshold}.
17618
17619 The filter accepts the following options:
17620
17621 @table @option
17622 @item threshold, t
17623 Set the scene change detection threshold as a percentage of maximum change. Good
17624 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17625 @code{[0., 100.]}.
17626
17627 Default value is @code{10.}.
17628
17629 @item sc_pass, s
17630 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17631 You can enable it if you want to get snapshot of scene change frames only.
17632 @end table
17633
17634 @anchor{selectivecolor}
17635 @section selectivecolor
17636
17637 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17638 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17639 by the "purity" of the color (that is, how saturated it already is).
17640
17641 This filter is similar to the Adobe Photoshop Selective Color tool.
17642
17643 The filter accepts the following options:
17644
17645 @table @option
17646 @item correction_method
17647 Select color correction method.
17648
17649 Available values are:
17650 @table @samp
17651 @item absolute
17652 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17653 component value).
17654 @item relative
17655 Specified adjustments are relative to the original component value.
17656 @end table
17657 Default is @code{absolute}.
17658 @item reds
17659 Adjustments for red pixels (pixels where the red component is the maximum)
17660 @item yellows
17661 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17662 @item greens
17663 Adjustments for green pixels (pixels where the green component is the maximum)
17664 @item cyans
17665 Adjustments for cyan pixels (pixels where the red component is the minimum)
17666 @item blues
17667 Adjustments for blue pixels (pixels where the blue component is the maximum)
17668 @item magentas
17669 Adjustments for magenta pixels (pixels where the green component is the minimum)
17670 @item whites
17671 Adjustments for white pixels (pixels where all components are greater than 128)
17672 @item neutrals
17673 Adjustments for all pixels except pure black and pure white
17674 @item blacks
17675 Adjustments for black pixels (pixels where all components are lesser than 128)
17676 @item psfile
17677 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17678 @end table
17679
17680 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17681 4 space separated floating point adjustment values in the [-1,1] range,
17682 respectively to adjust the amount of cyan, magenta, yellow and black for the
17683 pixels of its range.
17684
17685 @subsection Examples
17686
17687 @itemize
17688 @item
17689 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17690 increase magenta by 27% in blue areas:
17691 @example
17692 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17693 @end example
17694
17695 @item
17696 Use a Photoshop selective color preset:
17697 @example
17698 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17699 @end example
17700 @end itemize
17701
17702 @anchor{separatefields}
17703 @section separatefields
17704
17705 The @code{separatefields} takes a frame-based video input and splits
17706 each frame into its components fields, producing a new half height clip
17707 with twice the frame rate and twice the frame count.
17708
17709 This filter use field-dominance information in frame to decide which
17710 of each pair of fields to place first in the output.
17711 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17712
17713 @section setdar, setsar
17714
17715 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17716 output video.
17717
17718 This is done by changing the specified Sample (aka Pixel) Aspect
17719 Ratio, according to the following equation:
17720 @example
17721 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17722 @end example
17723
17724 Keep in mind that the @code{setdar} filter does not modify the pixel
17725 dimensions of the video frame. Also, the display aspect ratio set by
17726 this filter may be changed by later filters in the filterchain,
17727 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17728 applied.
17729
17730 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17731 the filter output video.
17732
17733 Note that as a consequence of the application of this filter, the
17734 output display aspect ratio will change according to the equation
17735 above.
17736
17737 Keep in mind that the sample aspect ratio set by the @code{setsar}
17738 filter may be changed by later filters in the filterchain, e.g. if
17739 another "setsar" or a "setdar" filter is applied.
17740
17741 It accepts the following parameters:
17742
17743 @table @option
17744 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17745 Set the aspect ratio used by the filter.
17746
17747 The parameter can be a floating point number string, an expression, or
17748 a string of the form @var{num}:@var{den}, where @var{num} and
17749 @var{den} are the numerator and denominator of the aspect ratio. If
17750 the parameter is not specified, it is assumed the value "0".
17751 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17752 should be escaped.
17753
17754 @item max
17755 Set the maximum integer value to use for expressing numerator and
17756 denominator when reducing the expressed aspect ratio to a rational.
17757 Default value is @code{100}.
17758
17759 @end table
17760
17761 The parameter @var{sar} is an expression containing
17762 the following constants:
17763
17764 @table @option
17765 @item E, PI, PHI
17766 These are approximated values for the mathematical constants e
17767 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17768
17769 @item w, h
17770 The input width and height.
17771
17772 @item a
17773 These are the same as @var{w} / @var{h}.
17774
17775 @item sar
17776 The input sample aspect ratio.
17777
17778 @item dar
17779 The input display aspect ratio. It is the same as
17780 (@var{w} / @var{h}) * @var{sar}.
17781
17782 @item hsub, vsub
17783 Horizontal and vertical chroma subsample values. For example, for the
17784 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17785 @end table
17786
17787 @subsection Examples
17788
17789 @itemize
17790
17791 @item
17792 To change the display aspect ratio to 16:9, specify one of the following:
17793 @example
17794 setdar=dar=1.77777
17795 setdar=dar=16/9
17796 @end example
17797
17798 @item
17799 To change the sample aspect ratio to 10:11, specify:
17800 @example
17801 setsar=sar=10/11
17802 @end example
17803
17804 @item
17805 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17806 1000 in the aspect ratio reduction, use the command:
17807 @example
17808 setdar=ratio=16/9:max=1000
17809 @end example
17810
17811 @end itemize
17812
17813 @anchor{setfield}
17814 @section setfield
17815
17816 Force field for the output video frame.
17817
17818 The @code{setfield} filter marks the interlace type field for the
17819 output frames. It does not change the input frame, but only sets the
17820 corresponding property, which affects how the frame is treated by
17821 following filters (e.g. @code{fieldorder} or @code{yadif}).
17822
17823 The filter accepts the following options:
17824
17825 @table @option
17826
17827 @item mode
17828 Available values are:
17829
17830 @table @samp
17831 @item auto
17832 Keep the same field property.
17833
17834 @item bff
17835 Mark the frame as bottom-field-first.
17836
17837 @item tff
17838 Mark the frame as top-field-first.
17839
17840 @item prog
17841 Mark the frame as progressive.
17842 @end table
17843 @end table
17844
17845 @anchor{setparams}
17846 @section setparams
17847
17848 Force frame parameter for the output video frame.
17849
17850 The @code{setparams} filter marks interlace and color range for the
17851 output frames. It does not change the input frame, but only sets the
17852 corresponding property, which affects how the frame is treated by
17853 filters/encoders.
17854
17855 @table @option
17856 @item field_mode
17857 Available values are:
17858
17859 @table @samp
17860 @item auto
17861 Keep the same field property (default).
17862
17863 @item bff
17864 Mark the frame as bottom-field-first.
17865
17866 @item tff
17867 Mark the frame as top-field-first.
17868
17869 @item prog
17870 Mark the frame as progressive.
17871 @end table
17872
17873 @item range
17874 Available values are:
17875
17876 @table @samp
17877 @item auto
17878 Keep the same color range property (default).
17879
17880 @item unspecified, unknown
17881 Mark the frame as unspecified color range.
17882
17883 @item limited, tv, mpeg
17884 Mark the frame as limited range.
17885
17886 @item full, pc, jpeg
17887 Mark the frame as full range.
17888 @end table
17889
17890 @item color_primaries
17891 Set the color primaries.
17892 Available values are:
17893
17894 @table @samp
17895 @item auto
17896 Keep the same color primaries property (default).
17897
17898 @item bt709
17899 @item unknown
17900 @item bt470m
17901 @item bt470bg
17902 @item smpte170m
17903 @item smpte240m
17904 @item film
17905 @item bt2020
17906 @item smpte428
17907 @item smpte431
17908 @item smpte432
17909 @item jedec-p22
17910 @end table
17911
17912 @item color_trc
17913 Set the color transfer.
17914 Available values are:
17915
17916 @table @samp
17917 @item auto
17918 Keep the same color trc property (default).
17919
17920 @item bt709
17921 @item unknown
17922 @item bt470m
17923 @item bt470bg
17924 @item smpte170m
17925 @item smpte240m
17926 @item linear
17927 @item log100
17928 @item log316
17929 @item iec61966-2-4
17930 @item bt1361e
17931 @item iec61966-2-1
17932 @item bt2020-10
17933 @item bt2020-12
17934 @item smpte2084
17935 @item smpte428
17936 @item arib-std-b67
17937 @end table
17938
17939 @item colorspace
17940 Set the colorspace.
17941 Available values are:
17942
17943 @table @samp
17944 @item auto
17945 Keep the same colorspace property (default).
17946
17947 @item gbr
17948 @item bt709
17949 @item unknown
17950 @item fcc
17951 @item bt470bg
17952 @item smpte170m
17953 @item smpte240m
17954 @item ycgco
17955 @item bt2020nc
17956 @item bt2020c
17957 @item smpte2085
17958 @item chroma-derived-nc
17959 @item chroma-derived-c
17960 @item ictcp
17961 @end table
17962 @end table
17963
17964 @section shear
17965 Apply shear transform to input video.
17966
17967 This filter supports the following options:
17968
17969 @table @option
17970 @item shx
17971 Shear factor in X-direction. Default value is 0.
17972 Allowed range is from -2 to 2.
17973
17974 @item shy
17975 Shear factor in Y-direction. Default value is 0.
17976 Allowed range is from -2 to 2.
17977
17978 @item fillcolor, c
17979 Set the color used to fill the output area not covered by the transformed
17980 video. For the general syntax of this option, check the
17981 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17982 If the special value "none" is selected then no
17983 background is printed (useful for example if the background is never shown).
17984
17985 Default value is "black".
17986
17987 @item interp
17988 Set interpolation type. Can be @code{bilinear} or @code{nearest}. Default is @code{bilinear}.
17989 @end table
17990
17991 @subsection Commands
17992
17993 This filter supports the all above options as @ref{commands}.
17994
17995 @section showinfo
17996
17997 Show a line containing various information for each input video frame.
17998 The input video is not modified.
17999
18000 This filter supports the following options:
18001
18002 @table @option
18003 @item checksum
18004 Calculate checksums of each plane. By default enabled.
18005 @end table
18006
18007 The shown line contains a sequence of key/value pairs of the form
18008 @var{key}:@var{value}.
18009
18010 The following values are shown in the output:
18011
18012 @table @option
18013 @item n
18014 The (sequential) number of the input frame, starting from 0.
18015
18016 @item pts
18017 The Presentation TimeStamp of the input frame, expressed as a number of
18018 time base units. The time base unit depends on the filter input pad.
18019
18020 @item pts_time
18021 The Presentation TimeStamp of the input frame, expressed as a number of
18022 seconds.
18023
18024 @item pos
18025 The position of the frame in the input stream, or -1 if this information is
18026 unavailable and/or meaningless (for example in case of synthetic video).
18027
18028 @item fmt
18029 The pixel format name.
18030
18031 @item sar
18032 The sample aspect ratio of the input frame, expressed in the form
18033 @var{num}/@var{den}.
18034
18035 @item s
18036 The size of the input frame. For the syntax of this option, check the
18037 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18038
18039 @item i
18040 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
18041 for bottom field first).
18042
18043 @item iskey
18044 This is 1 if the frame is a key frame, 0 otherwise.
18045
18046 @item type
18047 The picture type of the input frame ("I" for an I-frame, "P" for a
18048 P-frame, "B" for a B-frame, or "?" for an unknown type).
18049 Also refer to the documentation of the @code{AVPictureType} enum and of
18050 the @code{av_get_picture_type_char} function defined in
18051 @file{libavutil/avutil.h}.
18052
18053 @item checksum
18054 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
18055
18056 @item plane_checksum
18057 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
18058 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
18059
18060 @item mean
18061 The mean value of pixels in each plane of the input frame, expressed in the form
18062 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
18063
18064 @item stdev
18065 The standard deviation of pixel values in each plane of the input frame, expressed
18066 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
18067
18068 @end table
18069
18070 @section showpalette
18071
18072 Displays the 256 colors palette of each frame. This filter is only relevant for
18073 @var{pal8} pixel format frames.
18074
18075 It accepts the following option:
18076
18077 @table @option
18078 @item s
18079 Set the size of the box used to represent one palette color entry. Default is
18080 @code{30} (for a @code{30x30} pixel box).
18081 @end table
18082
18083 @section shuffleframes
18084
18085 Reorder and/or duplicate and/or drop video frames.
18086
18087 It accepts the following parameters:
18088
18089 @table @option
18090 @item mapping
18091 Set the destination indexes of input frames.
18092 This is space or '|' separated list of indexes that maps input frames to output
18093 frames. Number of indexes also sets maximal value that each index may have.
18094 '-1' index have special meaning and that is to drop frame.
18095 @end table
18096
18097 The first frame has the index 0. The default is to keep the input unchanged.
18098
18099 @subsection Examples
18100
18101 @itemize
18102 @item
18103 Swap second and third frame of every three frames of the input:
18104 @example
18105 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
18106 @end example
18107
18108 @item
18109 Swap 10th and 1st frame of every ten frames of the input:
18110 @example
18111 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
18112 @end example
18113 @end itemize
18114
18115 @section shufflepixels
18116
18117 Reorder pixels in video frames.
18118
18119 This filter accepts the following options:
18120
18121 @table @option
18122 @item direction, d
18123 Set shuffle direction. Can be forward or inverse direction.
18124 Default direction is forward.
18125
18126 @item mode, m
18127 Set shuffle mode. Can be horizontal, vertical or block mode.
18128
18129 @item width, w
18130 @item height, h
18131 Set shuffle block_size. In case of horizontal shuffle mode only width
18132 part of size is used, and in case of vertical shuffle mode only height
18133 part of size is used.
18134
18135 @item seed, s
18136 Set random seed used with shuffling pixels. Mainly useful to set to be able
18137 to reverse filtering process to get original input.
18138 For example, to reverse forward shuffle you need to use same parameters
18139 and exact same seed and to set direction to inverse.
18140 @end table
18141
18142 @section shuffleplanes
18143
18144 Reorder and/or duplicate video planes.
18145
18146 It accepts the following parameters:
18147
18148 @table @option
18149
18150 @item map0
18151 The index of the input plane to be used as the first output plane.
18152
18153 @item map1
18154 The index of the input plane to be used as the second output plane.
18155
18156 @item map2
18157 The index of the input plane to be used as the third output plane.
18158
18159 @item map3
18160 The index of the input plane to be used as the fourth output plane.
18161
18162 @end table
18163
18164 The first plane has the index 0. The default is to keep the input unchanged.
18165
18166 @subsection Examples
18167
18168 @itemize
18169 @item
18170 Swap the second and third planes of the input:
18171 @example
18172 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
18173 @end example
18174 @end itemize
18175
18176 @anchor{signalstats}
18177 @section signalstats
18178 Evaluate various visual metrics that assist in determining issues associated
18179 with the digitization of analog video media.
18180
18181 By default the filter will log these metadata values:
18182
18183 @table @option
18184 @item YMIN
18185 Display the minimal Y value contained within the input frame. Expressed in
18186 range of [0-255].
18187
18188 @item YLOW
18189 Display the Y value at the 10% percentile within the input frame. Expressed in
18190 range of [0-255].
18191
18192 @item YAVG
18193 Display the average Y value within the input frame. Expressed in range of
18194 [0-255].
18195
18196 @item YHIGH
18197 Display the Y value at the 90% percentile within the input frame. Expressed in
18198 range of [0-255].
18199
18200 @item YMAX
18201 Display the maximum Y value contained within the input frame. Expressed in
18202 range of [0-255].
18203
18204 @item UMIN
18205 Display the minimal U value contained within the input frame. Expressed in
18206 range of [0-255].
18207
18208 @item ULOW
18209 Display the U value at the 10% percentile within the input frame. Expressed in
18210 range of [0-255].
18211
18212 @item UAVG
18213 Display the average U value within the input frame. Expressed in range of
18214 [0-255].
18215
18216 @item UHIGH
18217 Display the U value at the 90% percentile within the input frame. Expressed in
18218 range of [0-255].
18219
18220 @item UMAX
18221 Display the maximum U value contained within the input frame. Expressed in
18222 range of [0-255].
18223
18224 @item VMIN
18225 Display the minimal V value contained within the input frame. Expressed in
18226 range of [0-255].
18227
18228 @item VLOW
18229 Display the V value at the 10% percentile within the input frame. Expressed in
18230 range of [0-255].
18231
18232 @item VAVG
18233 Display the average V value within the input frame. Expressed in range of
18234 [0-255].
18235
18236 @item VHIGH
18237 Display the V value at the 90% percentile within the input frame. Expressed in
18238 range of [0-255].
18239
18240 @item VMAX
18241 Display the maximum V value contained within the input frame. Expressed in
18242 range of [0-255].
18243
18244 @item SATMIN
18245 Display the minimal saturation value contained within the input frame.
18246 Expressed in range of [0-~181.02].
18247
18248 @item SATLOW
18249 Display the saturation value at the 10% percentile within the input frame.
18250 Expressed in range of [0-~181.02].
18251
18252 @item SATAVG
18253 Display the average saturation value within the input frame. Expressed in range
18254 of [0-~181.02].
18255
18256 @item SATHIGH
18257 Display the saturation value at the 90% percentile within the input frame.
18258 Expressed in range of [0-~181.02].
18259
18260 @item SATMAX
18261 Display the maximum saturation value contained within the input frame.
18262 Expressed in range of [0-~181.02].
18263
18264 @item HUEMED
18265 Display the median value for hue within the input frame. Expressed in range of
18266 [0-360].
18267
18268 @item HUEAVG
18269 Display the average value for hue within the input frame. Expressed in range of
18270 [0-360].
18271
18272 @item YDIF
18273 Display the average of sample value difference between all values of the Y
18274 plane in the current frame and corresponding values of the previous input frame.
18275 Expressed in range of [0-255].
18276
18277 @item UDIF
18278 Display the average of sample value difference between all values of the U
18279 plane in the current frame and corresponding values of the previous input frame.
18280 Expressed in range of [0-255].
18281
18282 @item VDIF
18283 Display the average of sample value difference between all values of the V
18284 plane in the current frame and corresponding values of the previous input frame.
18285 Expressed in range of [0-255].
18286
18287 @item YBITDEPTH
18288 Display bit depth of Y plane in current frame.
18289 Expressed in range of [0-16].
18290
18291 @item UBITDEPTH
18292 Display bit depth of U plane in current frame.
18293 Expressed in range of [0-16].
18294
18295 @item VBITDEPTH
18296 Display bit depth of V plane in current frame.
18297 Expressed in range of [0-16].
18298 @end table
18299
18300 The filter accepts the following options:
18301
18302 @table @option
18303 @item stat
18304 @item out
18305
18306 @option{stat} specify an additional form of image analysis.
18307 @option{out} output video with the specified type of pixel highlighted.
18308
18309 Both options accept the following values:
18310
18311 @table @samp
18312 @item tout
18313 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18314 unlike the neighboring pixels of the same field. Examples of temporal outliers
18315 include the results of video dropouts, head clogs, or tape tracking issues.
18316
18317 @item vrep
18318 Identify @var{vertical line repetition}. Vertical line repetition includes
18319 similar rows of pixels within a frame. In born-digital video vertical line
18320 repetition is common, but this pattern is uncommon in video digitized from an
18321 analog source. When it occurs in video that results from the digitization of an
18322 analog source it can indicate concealment from a dropout compensator.
18323
18324 @item brng
18325 Identify pixels that fall outside of legal broadcast range.
18326 @end table
18327
18328 @item color, c
18329 Set the highlight color for the @option{out} option. The default color is
18330 yellow.
18331 @end table
18332
18333 @subsection Examples
18334
18335 @itemize
18336 @item
18337 Output data of various video metrics:
18338 @example
18339 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18340 @end example
18341
18342 @item
18343 Output specific data about the minimum and maximum values of the Y plane per frame:
18344 @example
18345 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18346 @end example
18347
18348 @item
18349 Playback video while highlighting pixels that are outside of broadcast range in red.
18350 @example
18351 ffplay example.mov -vf signalstats="out=brng:color=red"
18352 @end example
18353
18354 @item
18355 Playback video with signalstats metadata drawn over the frame.
18356 @example
18357 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18358 @end example
18359
18360 The contents of signalstat_drawtext.txt used in the command are:
18361 @example
18362 time %@{pts:hms@}
18363 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18364 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18365 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18366 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18367
18368 @end example
18369 @end itemize
18370
18371 @anchor{signature}
18372 @section signature
18373
18374 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18375 input. In this case the matching between the inputs can be calculated additionally.
18376 The filter always passes through the first input. The signature of each stream can
18377 be written into a file.
18378
18379 It accepts the following options:
18380
18381 @table @option
18382 @item detectmode
18383 Enable or disable the matching process.
18384
18385 Available values are:
18386
18387 @table @samp
18388 @item off
18389 Disable the calculation of a matching (default).
18390 @item full
18391 Calculate the matching for the whole video and output whether the whole video
18392 matches or only parts.
18393 @item fast
18394 Calculate only until a matching is found or the video ends. Should be faster in
18395 some cases.
18396 @end table
18397
18398 @item nb_inputs
18399 Set the number of inputs. The option value must be a non negative integer.
18400 Default value is 1.
18401
18402 @item filename
18403 Set the path to which the output is written. If there is more than one input,
18404 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18405 integer), that will be replaced with the input number. If no filename is
18406 specified, no output will be written. This is the default.
18407
18408 @item format
18409 Choose the output format.
18410
18411 Available values are:
18412
18413 @table @samp
18414 @item binary
18415 Use the specified binary representation (default).
18416 @item xml
18417 Use the specified xml representation.
18418 @end table
18419
18420 @item th_d
18421 Set threshold to detect one word as similar. The option value must be an integer
18422 greater than zero. The default value is 9000.
18423
18424 @item th_dc
18425 Set threshold to detect all words as similar. The option value must be an integer
18426 greater than zero. The default value is 60000.
18427
18428 @item th_xh
18429 Set threshold to detect frames as similar. The option value must be an integer
18430 greater than zero. The default value is 116.
18431
18432 @item th_di
18433 Set the minimum length of a sequence in frames to recognize it as matching
18434 sequence. The option value must be a non negative integer value.
18435 The default value is 0.
18436
18437 @item th_it
18438 Set the minimum relation, that matching frames to all frames must have.
18439 The option value must be a double value between 0 and 1. The default value is 0.5.
18440 @end table
18441
18442 @subsection Examples
18443
18444 @itemize
18445 @item
18446 To calculate the signature of an input video and store it in signature.bin:
18447 @example
18448 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18449 @end example
18450
18451 @item
18452 To detect whether two videos match and store the signatures in XML format in
18453 signature0.xml and signature1.xml:
18454 @example
18455 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 -
18456 @end example
18457
18458 @end itemize
18459
18460 @anchor{smartblur}
18461 @section smartblur
18462
18463 Blur the input video without impacting the outlines.
18464
18465 It accepts the following options:
18466
18467 @table @option
18468 @item luma_radius, lr
18469 Set the luma radius. The option value must be a float number in
18470 the range [0.1,5.0] that specifies the variance of the gaussian filter
18471 used to blur the image (slower if larger). Default value is 1.0.
18472
18473 @item luma_strength, ls
18474 Set the luma strength. The option value must be a float number
18475 in the range [-1.0,1.0] that configures the blurring. A value included
18476 in [0.0,1.0] will blur the image whereas a value included in
18477 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18478
18479 @item luma_threshold, lt
18480 Set the luma threshold used as a coefficient to determine
18481 whether a pixel should be blurred or not. The option value must be an
18482 integer in the range [-30,30]. A value of 0 will filter all the image,
18483 a value included in [0,30] will filter flat areas and a value included
18484 in [-30,0] will filter edges. Default value is 0.
18485
18486 @item chroma_radius, cr
18487 Set the chroma radius. The option value must be a float number in
18488 the range [0.1,5.0] that specifies the variance of the gaussian filter
18489 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18490
18491 @item chroma_strength, cs
18492 Set the chroma strength. The option value must be a float number
18493 in the range [-1.0,1.0] that configures the blurring. A value included
18494 in [0.0,1.0] will blur the image whereas a value included in
18495 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18496
18497 @item chroma_threshold, ct
18498 Set the chroma threshold used as a coefficient to determine
18499 whether a pixel should be blurred or not. The option value must be an
18500 integer in the range [-30,30]. A value of 0 will filter all the image,
18501 a value included in [0,30] will filter flat areas and a value included
18502 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18503 @end table
18504
18505 If a chroma option is not explicitly set, the corresponding luma value
18506 is set.
18507
18508 @section sobel
18509 Apply sobel operator to input video stream.
18510
18511 The filter accepts the following option:
18512
18513 @table @option
18514 @item planes
18515 Set which planes will be processed, unprocessed planes will be copied.
18516 By default value 0xf, all planes will be processed.
18517
18518 @item scale
18519 Set value which will be multiplied with filtered result.
18520
18521 @item delta
18522 Set value which will be added to filtered result.
18523 @end table
18524
18525 @subsection Commands
18526
18527 This filter supports the all above options as @ref{commands}.
18528
18529 @anchor{spp}
18530 @section spp
18531
18532 Apply a simple postprocessing filter that compresses and decompresses the image
18533 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18534 and average the results.
18535
18536 The filter accepts the following options:
18537
18538 @table @option
18539 @item quality
18540 Set quality. This option defines the number of levels for averaging. It accepts
18541 an integer in the range 0-6. If set to @code{0}, the filter will have no
18542 effect. A value of @code{6} means the higher quality. For each increment of
18543 that value the speed drops by a factor of approximately 2.  Default value is
18544 @code{3}.
18545
18546 @item qp
18547 Force a constant quantization parameter. If not set, the filter will use the QP
18548 from the video stream (if available).
18549
18550 @item mode
18551 Set thresholding mode. Available modes are:
18552
18553 @table @samp
18554 @item hard
18555 Set hard thresholding (default).
18556 @item soft
18557 Set soft thresholding (better de-ringing effect, but likely blurrier).
18558 @end table
18559
18560 @item use_bframe_qp
18561 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18562 option may cause flicker since the B-Frames have often larger QP. Default is
18563 @code{0} (not enabled).
18564 @end table
18565
18566 @subsection Commands
18567
18568 This filter supports the following commands:
18569 @table @option
18570 @item quality, level
18571 Set quality level. The value @code{max} can be used to set the maximum level,
18572 currently @code{6}.
18573 @end table
18574
18575 @anchor{sr}
18576 @section sr
18577
18578 Scale the input by applying one of the super-resolution methods based on
18579 convolutional neural networks. Supported models:
18580
18581 @itemize
18582 @item
18583 Super-Resolution Convolutional Neural Network model (SRCNN).
18584 See @url{https://arxiv.org/abs/1501.00092}.
18585
18586 @item
18587 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18588 See @url{https://arxiv.org/abs/1609.05158}.
18589 @end itemize
18590
18591 Training scripts as well as scripts for model file (.pb) saving can be found at
18592 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18593 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18594
18595 Native model files (.model) can be generated from TensorFlow model
18596 files (.pb) by using tools/python/convert.py
18597
18598 The filter accepts the following options:
18599
18600 @table @option
18601 @item dnn_backend
18602 Specify which DNN backend to use for model loading and execution. This option accepts
18603 the following values:
18604
18605 @table @samp
18606 @item native
18607 Native implementation of DNN loading and execution.
18608
18609 @item tensorflow
18610 TensorFlow backend. To enable this backend you
18611 need to install the TensorFlow for C library (see
18612 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18613 @code{--enable-libtensorflow}
18614 @end table
18615
18616 Default value is @samp{native}.
18617
18618 @item model
18619 Set path to model file specifying network architecture and its parameters.
18620 Note that different backends use different file formats. TensorFlow backend
18621 can load files for both formats, while native backend can load files for only
18622 its format.
18623
18624 @item scale_factor
18625 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18626 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18627 input upscaled using bicubic upscaling with proper scale factor.
18628 @end table
18629
18630 This feature can also be finished with @ref{dnn_processing} filter.
18631
18632 @section ssim
18633
18634 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18635
18636 This filter takes in input two input videos, the first input is
18637 considered the "main" source and is passed unchanged to the
18638 output. The second input is used as a "reference" video for computing
18639 the SSIM.
18640
18641 Both video inputs must have the same resolution and pixel format for
18642 this filter to work correctly. Also it assumes that both inputs
18643 have the same number of frames, which are compared one by one.
18644
18645 The filter stores the calculated SSIM of each frame.
18646
18647 The description of the accepted parameters follows.
18648
18649 @table @option
18650 @item stats_file, f
18651 If specified the filter will use the named file to save the SSIM of
18652 each individual frame. When filename equals "-" the data is sent to
18653 standard output.
18654 @end table
18655
18656 The file printed if @var{stats_file} is selected, contains a sequence of
18657 key/value pairs of the form @var{key}:@var{value} for each compared
18658 couple of frames.
18659
18660 A description of each shown parameter follows:
18661
18662 @table @option
18663 @item n
18664 sequential number of the input frame, starting from 1
18665
18666 @item Y, U, V, R, G, B
18667 SSIM of the compared frames for the component specified by the suffix.
18668
18669 @item All
18670 SSIM of the compared frames for the whole frame.
18671
18672 @item dB
18673 Same as above but in dB representation.
18674 @end table
18675
18676 This filter also supports the @ref{framesync} options.
18677
18678 @subsection Examples
18679 @itemize
18680 @item
18681 For example:
18682 @example
18683 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18684 [main][ref] ssim="stats_file=stats.log" [out]
18685 @end example
18686
18687 On this example the input file being processed is compared with the
18688 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18689 is stored in @file{stats.log}.
18690
18691 @item
18692 Another example with both psnr and ssim at same time:
18693 @example
18694 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18695 @end example
18696
18697 @item
18698 Another example with different containers:
18699 @example
18700 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 -
18701 @end example
18702 @end itemize
18703
18704 @section stereo3d
18705
18706 Convert between different stereoscopic image formats.
18707
18708 The filters accept the following options:
18709
18710 @table @option
18711 @item in
18712 Set stereoscopic image format of input.
18713
18714 Available values for input image formats are:
18715 @table @samp
18716 @item sbsl
18717 side by side parallel (left eye left, right eye right)
18718
18719 @item sbsr
18720 side by side crosseye (right eye left, left eye right)
18721
18722 @item sbs2l
18723 side by side parallel with half width resolution
18724 (left eye left, right eye right)
18725
18726 @item sbs2r
18727 side by side crosseye with half width resolution
18728 (right eye left, left eye right)
18729
18730 @item abl
18731 @item tbl
18732 above-below (left eye above, right eye below)
18733
18734 @item abr
18735 @item tbr
18736 above-below (right eye above, left eye below)
18737
18738 @item ab2l
18739 @item tb2l
18740 above-below with half height resolution
18741 (left eye above, right eye below)
18742
18743 @item ab2r
18744 @item tb2r
18745 above-below with half height resolution
18746 (right eye above, left eye below)
18747
18748 @item al
18749 alternating frames (left eye first, right eye second)
18750
18751 @item ar
18752 alternating frames (right eye first, left eye second)
18753
18754 @item irl
18755 interleaved rows (left eye has top row, right eye starts on next row)
18756
18757 @item irr
18758 interleaved rows (right eye has top row, left eye starts on next row)
18759
18760 @item icl
18761 interleaved columns, left eye first
18762
18763 @item icr
18764 interleaved columns, right eye first
18765
18766 Default value is @samp{sbsl}.
18767 @end table
18768
18769 @item out
18770 Set stereoscopic image format of output.
18771
18772 @table @samp
18773 @item sbsl
18774 side by side parallel (left eye left, right eye right)
18775
18776 @item sbsr
18777 side by side crosseye (right eye left, left eye right)
18778
18779 @item sbs2l
18780 side by side parallel with half width resolution
18781 (left eye left, right eye right)
18782
18783 @item sbs2r
18784 side by side crosseye with half width resolution
18785 (right eye left, left eye right)
18786
18787 @item abl
18788 @item tbl
18789 above-below (left eye above, right eye below)
18790
18791 @item abr
18792 @item tbr
18793 above-below (right eye above, left eye below)
18794
18795 @item ab2l
18796 @item tb2l
18797 above-below with half height resolution
18798 (left eye above, right eye below)
18799
18800 @item ab2r
18801 @item tb2r
18802 above-below with half height resolution
18803 (right eye above, left eye below)
18804
18805 @item al
18806 alternating frames (left eye first, right eye second)
18807
18808 @item ar
18809 alternating frames (right eye first, left eye second)
18810
18811 @item irl
18812 interleaved rows (left eye has top row, right eye starts on next row)
18813
18814 @item irr
18815 interleaved rows (right eye has top row, left eye starts on next row)
18816
18817 @item arbg
18818 anaglyph red/blue gray
18819 (red filter on left eye, blue filter on right eye)
18820
18821 @item argg
18822 anaglyph red/green gray
18823 (red filter on left eye, green filter on right eye)
18824
18825 @item arcg
18826 anaglyph red/cyan gray
18827 (red filter on left eye, cyan filter on right eye)
18828
18829 @item arch
18830 anaglyph red/cyan half colored
18831 (red filter on left eye, cyan filter on right eye)
18832
18833 @item arcc
18834 anaglyph red/cyan color
18835 (red filter on left eye, cyan filter on right eye)
18836
18837 @item arcd
18838 anaglyph red/cyan color optimized with the least squares projection of dubois
18839 (red filter on left eye, cyan filter on right eye)
18840
18841 @item agmg
18842 anaglyph green/magenta gray
18843 (green filter on left eye, magenta filter on right eye)
18844
18845 @item agmh
18846 anaglyph green/magenta half colored
18847 (green filter on left eye, magenta filter on right eye)
18848
18849 @item agmc
18850 anaglyph green/magenta colored
18851 (green filter on left eye, magenta filter on right eye)
18852
18853 @item agmd
18854 anaglyph green/magenta color optimized with the least squares projection of dubois
18855 (green filter on left eye, magenta filter on right eye)
18856
18857 @item aybg
18858 anaglyph yellow/blue gray
18859 (yellow filter on left eye, blue filter on right eye)
18860
18861 @item aybh
18862 anaglyph yellow/blue half colored
18863 (yellow filter on left eye, blue filter on right eye)
18864
18865 @item aybc
18866 anaglyph yellow/blue colored
18867 (yellow filter on left eye, blue filter on right eye)
18868
18869 @item aybd
18870 anaglyph yellow/blue color optimized with the least squares projection of dubois
18871 (yellow filter on left eye, blue filter on right eye)
18872
18873 @item ml
18874 mono output (left eye only)
18875
18876 @item mr
18877 mono output (right eye only)
18878
18879 @item chl
18880 checkerboard, left eye first
18881
18882 @item chr
18883 checkerboard, right eye first
18884
18885 @item icl
18886 interleaved columns, left eye first
18887
18888 @item icr
18889 interleaved columns, right eye first
18890
18891 @item hdmi
18892 HDMI frame pack
18893 @end table
18894
18895 Default value is @samp{arcd}.
18896 @end table
18897
18898 @subsection Examples
18899
18900 @itemize
18901 @item
18902 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18903 @example
18904 stereo3d=sbsl:aybd
18905 @end example
18906
18907 @item
18908 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18909 @example
18910 stereo3d=abl:sbsr
18911 @end example
18912 @end itemize
18913
18914 @section streamselect, astreamselect
18915 Select video or audio streams.
18916
18917 The filter accepts the following options:
18918
18919 @table @option
18920 @item inputs
18921 Set number of inputs. Default is 2.
18922
18923 @item map
18924 Set input indexes to remap to outputs.
18925 @end table
18926
18927 @subsection Commands
18928
18929 The @code{streamselect} and @code{astreamselect} filter supports the following
18930 commands:
18931
18932 @table @option
18933 @item map
18934 Set input indexes to remap to outputs.
18935 @end table
18936
18937 @subsection Examples
18938
18939 @itemize
18940 @item
18941 Select first 5 seconds 1st stream and rest of time 2nd stream:
18942 @example
18943 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18944 @end example
18945
18946 @item
18947 Same as above, but for audio:
18948 @example
18949 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18950 @end example
18951 @end itemize
18952
18953 @anchor{subtitles}
18954 @section subtitles
18955
18956 Draw subtitles on top of input video using the libass library.
18957
18958 To enable compilation of this filter you need to configure FFmpeg with
18959 @code{--enable-libass}. This filter also requires a build with libavcodec and
18960 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18961 Alpha) subtitles format.
18962
18963 The filter accepts the following options:
18964
18965 @table @option
18966 @item filename, f
18967 Set the filename of the subtitle file to read. It must be specified.
18968
18969 @item original_size
18970 Specify the size of the original video, the video for which the ASS file
18971 was composed. For the syntax of this option, check the
18972 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18973 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18974 correctly scale the fonts if the aspect ratio has been changed.
18975
18976 @item fontsdir
18977 Set a directory path containing fonts that can be used by the filter.
18978 These fonts will be used in addition to whatever the font provider uses.
18979
18980 @item alpha
18981 Process alpha channel, by default alpha channel is untouched.
18982
18983 @item charenc
18984 Set subtitles input character encoding. @code{subtitles} filter only. Only
18985 useful if not UTF-8.
18986
18987 @item stream_index, si
18988 Set subtitles stream index. @code{subtitles} filter only.
18989
18990 @item force_style
18991 Override default style or script info parameters of the subtitles. It accepts a
18992 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18993 @end table
18994
18995 If the first key is not specified, it is assumed that the first value
18996 specifies the @option{filename}.
18997
18998 For example, to render the file @file{sub.srt} on top of the input
18999 video, use the command:
19000 @example
19001 subtitles=sub.srt
19002 @end example
19003
19004 which is equivalent to:
19005 @example
19006 subtitles=filename=sub.srt
19007 @end example
19008
19009 To render the default subtitles stream from file @file{video.mkv}, use:
19010 @example
19011 subtitles=video.mkv
19012 @end example
19013
19014 To render the second subtitles stream from that file, use:
19015 @example
19016 subtitles=video.mkv:si=1
19017 @end example
19018
19019 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
19020 @code{DejaVu Serif}, use:
19021 @example
19022 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
19023 @end example
19024
19025 @section super2xsai
19026
19027 Scale the input by 2x and smooth using the Super2xSaI (Scale and
19028 Interpolate) pixel art scaling algorithm.
19029
19030 Useful for enlarging pixel art images without reducing sharpness.
19031
19032 @section swaprect
19033
19034 Swap two rectangular objects in video.
19035
19036 This filter accepts the following options:
19037
19038 @table @option
19039 @item w
19040 Set object width.
19041
19042 @item h
19043 Set object height.
19044
19045 @item x1
19046 Set 1st rect x coordinate.
19047
19048 @item y1
19049 Set 1st rect y coordinate.
19050
19051 @item x2
19052 Set 2nd rect x coordinate.
19053
19054 @item y2
19055 Set 2nd rect y coordinate.
19056
19057 All expressions are evaluated once for each frame.
19058 @end table
19059
19060 The all options are expressions containing the following constants:
19061
19062 @table @option
19063 @item w
19064 @item h
19065 The input width and height.
19066
19067 @item a
19068 same as @var{w} / @var{h}
19069
19070 @item sar
19071 input sample aspect ratio
19072
19073 @item dar
19074 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
19075
19076 @item n
19077 The number of the input frame, starting from 0.
19078
19079 @item t
19080 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
19081
19082 @item pos
19083 the position in the file of the input frame, NAN if unknown
19084 @end table
19085
19086 @section swapuv
19087 Swap U & V plane.
19088
19089 @section tblend
19090 Blend successive video frames.
19091
19092 See @ref{blend}
19093
19094 @section telecine
19095
19096 Apply telecine process to the video.
19097
19098 This filter accepts the following options:
19099
19100 @table @option
19101 @item first_field
19102 @table @samp
19103 @item top, t
19104 top field first
19105 @item bottom, b
19106 bottom field first
19107 The default value is @code{top}.
19108 @end table
19109
19110 @item pattern
19111 A string of numbers representing the pulldown pattern you wish to apply.
19112 The default value is @code{23}.
19113 @end table
19114
19115 @example
19116 Some typical patterns:
19117
19118 NTSC output (30i):
19119 27.5p: 32222
19120 24p: 23 (classic)
19121 24p: 2332 (preferred)
19122 20p: 33
19123 18p: 334
19124 16p: 3444
19125
19126 PAL output (25i):
19127 27.5p: 12222
19128 24p: 222222222223 ("Euro pulldown")
19129 16.67p: 33
19130 16p: 33333334
19131 @end example
19132
19133 @section thistogram
19134
19135 Compute and draw a color distribution histogram for the input video across time.
19136
19137 Unlike @ref{histogram} video filter which only shows histogram of single input frame
19138 at certain time, this filter shows also past histograms of number of frames defined
19139 by @code{width} option.
19140
19141 The computed histogram is a representation of the color component
19142 distribution in an image.
19143
19144 The filter accepts the following options:
19145
19146 @table @option
19147 @item width, w
19148 Set width of single color component output. Default value is @code{0}.
19149 Value of @code{0} means width will be picked from input video.
19150 This also set number of passed histograms to keep.
19151 Allowed range is [0, 8192].
19152
19153 @item display_mode, d
19154 Set display mode.
19155 It accepts the following values:
19156 @table @samp
19157 @item stack
19158 Per color component graphs are placed below each other.
19159
19160 @item parade
19161 Per color component graphs are placed side by side.
19162
19163 @item overlay
19164 Presents information identical to that in the @code{parade}, except
19165 that the graphs representing color components are superimposed directly
19166 over one another.
19167 @end table
19168 Default is @code{stack}.
19169
19170 @item levels_mode, m
19171 Set mode. Can be either @code{linear}, or @code{logarithmic}.
19172 Default is @code{linear}.
19173
19174 @item components, c
19175 Set what color components to display.
19176 Default is @code{7}.
19177
19178 @item bgopacity, b
19179 Set background opacity. Default is @code{0.9}.
19180
19181 @item envelope, e
19182 Show envelope. Default is disabled.
19183
19184 @item ecolor, ec
19185 Set envelope color. Default is @code{gold}.
19186
19187 @item slide
19188 Set slide mode.
19189
19190 Available values for slide is:
19191 @table @samp
19192 @item frame
19193 Draw new frame when right border is reached.
19194
19195 @item replace
19196 Replace old columns with new ones.
19197
19198 @item scroll
19199 Scroll from right to left.
19200
19201 @item rscroll
19202 Scroll from left to right.
19203
19204 @item picture
19205 Draw single picture.
19206 @end table
19207
19208 Default is @code{replace}.
19209 @end table
19210
19211 @section threshold
19212
19213 Apply threshold effect to video stream.
19214
19215 This filter needs four video streams to perform thresholding.
19216 First stream is stream we are filtering.
19217 Second stream is holding threshold values, third stream is holding min values,
19218 and last, fourth stream is holding max values.
19219
19220 The filter accepts the following option:
19221
19222 @table @option
19223 @item planes
19224 Set which planes will be processed, unprocessed planes will be copied.
19225 By default value 0xf, all planes will be processed.
19226 @end table
19227
19228 For example if first stream pixel's component value is less then threshold value
19229 of pixel component from 2nd threshold stream, third stream value will picked,
19230 otherwise fourth stream pixel component value will be picked.
19231
19232 Using color source filter one can perform various types of thresholding:
19233
19234 @subsection Examples
19235
19236 @itemize
19237 @item
19238 Binary threshold, using gray color as threshold:
19239 @example
19240 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19241 @end example
19242
19243 @item
19244 Inverted binary threshold, using gray color as threshold:
19245 @example
19246 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19247 @end example
19248
19249 @item
19250 Truncate binary threshold, using gray color as threshold:
19251 @example
19252 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19253 @end example
19254
19255 @item
19256 Threshold to zero, using gray color as threshold:
19257 @example
19258 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19259 @end example
19260
19261 @item
19262 Inverted threshold to zero, using gray color as threshold:
19263 @example
19264 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19265 @end example
19266 @end itemize
19267
19268 @section thumbnail
19269 Select the most representative frame in a given sequence of consecutive frames.
19270
19271 The filter accepts the following options:
19272
19273 @table @option
19274 @item n
19275 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19276 will pick one of them, and then handle the next batch of @var{n} frames until
19277 the end. Default is @code{100}.
19278 @end table
19279
19280 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19281 value will result in a higher memory usage, so a high value is not recommended.
19282
19283 @subsection Examples
19284
19285 @itemize
19286 @item
19287 Extract one picture each 50 frames:
19288 @example
19289 thumbnail=50
19290 @end example
19291
19292 @item
19293 Complete example of a thumbnail creation with @command{ffmpeg}:
19294 @example
19295 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19296 @end example
19297 @end itemize
19298
19299 @anchor{tile}
19300 @section tile
19301
19302 Tile several successive frames together.
19303
19304 The @ref{untile} filter can do the reverse.
19305
19306 The filter accepts the following options:
19307
19308 @table @option
19309
19310 @item layout
19311 Set the grid size (i.e. the number of lines and columns). For the syntax of
19312 this option, check the
19313 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19314
19315 @item nb_frames
19316 Set the maximum number of frames to render in the given area. It must be less
19317 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19318 the area will be used.
19319
19320 @item margin
19321 Set the outer border margin in pixels.
19322
19323 @item padding
19324 Set the inner border thickness (i.e. the number of pixels between frames). For
19325 more advanced padding options (such as having different values for the edges),
19326 refer to the pad video filter.
19327
19328 @item color
19329 Specify the color of the unused area. For the syntax of this option, check the
19330 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19331 The default value of @var{color} is "black".
19332
19333 @item overlap
19334 Set the number of frames to overlap when tiling several successive frames together.
19335 The value must be between @code{0} and @var{nb_frames - 1}.
19336
19337 @item init_padding
19338 Set the number of frames to initially be empty before displaying first output frame.
19339 This controls how soon will one get first output frame.
19340 The value must be between @code{0} and @var{nb_frames - 1}.
19341 @end table
19342
19343 @subsection Examples
19344
19345 @itemize
19346 @item
19347 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19348 @example
19349 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19350 @end example
19351 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19352 duplicating each output frame to accommodate the originally detected frame
19353 rate.
19354
19355 @item
19356 Display @code{5} pictures in an area of @code{3x2} frames,
19357 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19358 mixed flat and named options:
19359 @example
19360 tile=3x2:nb_frames=5:padding=7:margin=2
19361 @end example
19362 @end itemize
19363
19364 @section tinterlace
19365
19366 Perform various types of temporal field interlacing.
19367
19368 Frames are counted starting from 1, so the first input frame is
19369 considered odd.
19370
19371 The filter accepts the following options:
19372
19373 @table @option
19374
19375 @item mode
19376 Specify the mode of the interlacing. This option can also be specified
19377 as a value alone. See below for a list of values for this option.
19378
19379 Available values are:
19380
19381 @table @samp
19382 @item merge, 0
19383 Move odd frames into the upper field, even into the lower field,
19384 generating a double height frame at half frame rate.
19385 @example
19386  ------> time
19387 Input:
19388 Frame 1         Frame 2         Frame 3         Frame 4
19389
19390 11111           22222           33333           44444
19391 11111           22222           33333           44444
19392 11111           22222           33333           44444
19393 11111           22222           33333           44444
19394
19395 Output:
19396 11111                           33333
19397 22222                           44444
19398 11111                           33333
19399 22222                           44444
19400 11111                           33333
19401 22222                           44444
19402 11111                           33333
19403 22222                           44444
19404 @end example
19405
19406 @item drop_even, 1
19407 Only output odd frames, even frames are dropped, generating a frame with
19408 unchanged height at half frame rate.
19409
19410 @example
19411  ------> time
19412 Input:
19413 Frame 1         Frame 2         Frame 3         Frame 4
19414
19415 11111           22222           33333           44444
19416 11111           22222           33333           44444
19417 11111           22222           33333           44444
19418 11111           22222           33333           44444
19419
19420 Output:
19421 11111                           33333
19422 11111                           33333
19423 11111                           33333
19424 11111                           33333
19425 @end example
19426
19427 @item drop_odd, 2
19428 Only output even frames, odd frames are dropped, generating a frame with
19429 unchanged height at half frame rate.
19430
19431 @example
19432  ------> time
19433 Input:
19434 Frame 1         Frame 2         Frame 3         Frame 4
19435
19436 11111           22222           33333           44444
19437 11111           22222           33333           44444
19438 11111           22222           33333           44444
19439 11111           22222           33333           44444
19440
19441 Output:
19442                 22222                           44444
19443                 22222                           44444
19444                 22222                           44444
19445                 22222                           44444
19446 @end example
19447
19448 @item pad, 3
19449 Expand each frame to full height, but pad alternate lines with black,
19450 generating a frame with double height at the same input frame rate.
19451
19452 @example
19453  ------> time
19454 Input:
19455 Frame 1         Frame 2         Frame 3         Frame 4
19456
19457 11111           22222           33333           44444
19458 11111           22222           33333           44444
19459 11111           22222           33333           44444
19460 11111           22222           33333           44444
19461
19462 Output:
19463 11111           .....           33333           .....
19464 .....           22222           .....           44444
19465 11111           .....           33333           .....
19466 .....           22222           .....           44444
19467 11111           .....           33333           .....
19468 .....           22222           .....           44444
19469 11111           .....           33333           .....
19470 .....           22222           .....           44444
19471 @end example
19472
19473
19474 @item interleave_top, 4
19475 Interleave the upper field from odd frames with the lower field from
19476 even frames, generating a frame with unchanged height at half frame rate.
19477
19478 @example
19479  ------> time
19480 Input:
19481 Frame 1         Frame 2         Frame 3         Frame 4
19482
19483 11111<-         22222           33333<-         44444
19484 11111           22222<-         33333           44444<-
19485 11111<-         22222           33333<-         44444
19486 11111           22222<-         33333           44444<-
19487
19488 Output:
19489 11111                           33333
19490 22222                           44444
19491 11111                           33333
19492 22222                           44444
19493 @end example
19494
19495
19496 @item interleave_bottom, 5
19497 Interleave the lower field from odd frames with the upper field from
19498 even frames, generating a frame with unchanged height at half frame rate.
19499
19500 @example
19501  ------> time
19502 Input:
19503 Frame 1         Frame 2         Frame 3         Frame 4
19504
19505 11111           22222<-         33333           44444<-
19506 11111<-         22222           33333<-         44444
19507 11111           22222<-         33333           44444<-
19508 11111<-         22222           33333<-         44444
19509
19510 Output:
19511 22222                           44444
19512 11111                           33333
19513 22222                           44444
19514 11111                           33333
19515 @end example
19516
19517
19518 @item interlacex2, 6
19519 Double frame rate with unchanged height. Frames are inserted each
19520 containing the second temporal field from the previous input frame and
19521 the first temporal field from the next input frame. This mode relies on
19522 the top_field_first flag. Useful for interlaced video displays with no
19523 field synchronisation.
19524
19525 @example
19526  ------> time
19527 Input:
19528 Frame 1         Frame 2         Frame 3         Frame 4
19529
19530 11111           22222           33333           44444
19531  11111           22222           33333           44444
19532 11111           22222           33333           44444
19533  11111           22222           33333           44444
19534
19535 Output:
19536 11111   22222   22222   33333   33333   44444   44444
19537  11111   11111   22222   22222   33333   33333   44444
19538 11111   22222   22222   33333   33333   44444   44444
19539  11111   11111   22222   22222   33333   33333   44444
19540 @end example
19541
19542
19543 @item mergex2, 7
19544 Move odd frames into the upper field, even into the lower field,
19545 generating a double height frame at same frame rate.
19546
19547 @example
19548  ------> time
19549 Input:
19550 Frame 1         Frame 2         Frame 3         Frame 4
19551
19552 11111           22222           33333           44444
19553 11111           22222           33333           44444
19554 11111           22222           33333           44444
19555 11111           22222           33333           44444
19556
19557 Output:
19558 11111           33333           33333           55555
19559 22222           22222           44444           44444
19560 11111           33333           33333           55555
19561 22222           22222           44444           44444
19562 11111           33333           33333           55555
19563 22222           22222           44444           44444
19564 11111           33333           33333           55555
19565 22222           22222           44444           44444
19566 @end example
19567
19568 @end table
19569
19570 Numeric values are deprecated but are accepted for backward
19571 compatibility reasons.
19572
19573 Default mode is @code{merge}.
19574
19575 @item flags
19576 Specify flags influencing the filter process.
19577
19578 Available value for @var{flags} is:
19579
19580 @table @option
19581 @item low_pass_filter, vlpf
19582 Enable linear vertical low-pass filtering in the filter.
19583 Vertical low-pass filtering is required when creating an interlaced
19584 destination from a progressive source which contains high-frequency
19585 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19586 patterning.
19587
19588 @item complex_filter, cvlpf
19589 Enable complex vertical low-pass filtering.
19590 This will slightly less reduce interlace 'twitter' and Moire
19591 patterning but better retain detail and subjective sharpness impression.
19592
19593 @item bypass_il
19594 Bypass already interlaced frames, only adjust the frame rate.
19595 @end table
19596
19597 Vertical low-pass filtering and bypassing already interlaced frames can only be
19598 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19599
19600 @end table
19601
19602 @section tmedian
19603 Pick median pixels from several successive input video frames.
19604
19605 The filter accepts the following options:
19606
19607 @table @option
19608 @item radius
19609 Set radius of median filter.
19610 Default is 1. Allowed range is from 1 to 127.
19611
19612 @item planes
19613 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19614
19615 @item percentile
19616 Set median percentile. Default value is @code{0.5}.
19617 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19618 minimum values, and @code{1} maximum values.
19619 @end table
19620
19621 @subsection Commands
19622
19623 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19624
19625 @section tmidequalizer
19626
19627 Apply Temporal Midway Video Equalization effect.
19628
19629 Midway Video Equalization adjusts a sequence of video frames to have the same
19630 histograms, while maintaining their dynamics as much as possible. It's
19631 useful for e.g. matching exposures from a video frames sequence.
19632
19633 This filter accepts the following option:
19634
19635 @table @option
19636 @item radius
19637 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19638
19639 @item sigma
19640 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19641 Setting this option to 0 effectively does nothing.
19642
19643 @item planes
19644 Set which planes to process. Default is @code{15}, which is all available planes.
19645 @end table
19646
19647 @section tmix
19648
19649 Mix successive video frames.
19650
19651 A description of the accepted options follows.
19652
19653 @table @option
19654 @item frames
19655 The number of successive frames to mix. If unspecified, it defaults to 3.
19656
19657 @item weights
19658 Specify weight of each input video frame.
19659 Each weight is separated by space. If number of weights is smaller than
19660 number of @var{frames} last specified weight will be used for all remaining
19661 unset weights.
19662
19663 @item scale
19664 Specify scale, if it is set it will be multiplied with sum
19665 of each weight multiplied with pixel values to give final destination
19666 pixel value. By default @var{scale} is auto scaled to sum of weights.
19667 @end table
19668
19669 @subsection Examples
19670
19671 @itemize
19672 @item
19673 Average 7 successive frames:
19674 @example
19675 tmix=frames=7:weights="1 1 1 1 1 1 1"
19676 @end example
19677
19678 @item
19679 Apply simple temporal convolution:
19680 @example
19681 tmix=frames=3:weights="-1 3 -1"
19682 @end example
19683
19684 @item
19685 Similar as above but only showing temporal differences:
19686 @example
19687 tmix=frames=3:weights="-1 2 -1":scale=1
19688 @end example
19689 @end itemize
19690
19691 @anchor{tonemap}
19692 @section tonemap
19693 Tone map colors from different dynamic ranges.
19694
19695 This filter expects data in single precision floating point, as it needs to
19696 operate on (and can output) out-of-range values. Another filter, such as
19697 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19698
19699 The tonemapping algorithms implemented only work on linear light, so input
19700 data should be linearized beforehand (and possibly correctly tagged).
19701
19702 @example
19703 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19704 @end example
19705
19706 @subsection Options
19707 The filter accepts the following options.
19708
19709 @table @option
19710 @item tonemap
19711 Set the tone map algorithm to use.
19712
19713 Possible values are:
19714 @table @var
19715 @item none
19716 Do not apply any tone map, only desaturate overbright pixels.
19717
19718 @item clip
19719 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19720 in-range values, while distorting out-of-range values.
19721
19722 @item linear
19723 Stretch the entire reference gamut to a linear multiple of the display.
19724
19725 @item gamma
19726 Fit a logarithmic transfer between the tone curves.
19727
19728 @item reinhard
19729 Preserve overall image brightness with a simple curve, using nonlinear
19730 contrast, which results in flattening details and degrading color accuracy.
19731
19732 @item hable
19733 Preserve both dark and bright details better than @var{reinhard}, at the cost
19734 of slightly darkening everything. Use it when detail preservation is more
19735 important than color and brightness accuracy.
19736
19737 @item mobius
19738 Smoothly map out-of-range values, while retaining contrast and colors for
19739 in-range material as much as possible. Use it when color accuracy is more
19740 important than detail preservation.
19741 @end table
19742
19743 Default is none.
19744
19745 @item param
19746 Tune the tone mapping algorithm.
19747
19748 This affects the following algorithms:
19749 @table @var
19750 @item none
19751 Ignored.
19752
19753 @item linear
19754 Specifies the scale factor to use while stretching.
19755 Default to 1.0.
19756
19757 @item gamma
19758 Specifies the exponent of the function.
19759 Default to 1.8.
19760
19761 @item clip
19762 Specify an extra linear coefficient to multiply into the signal before clipping.
19763 Default to 1.0.
19764
19765 @item reinhard
19766 Specify the local contrast coefficient at the display peak.
19767 Default to 0.5, which means that in-gamut values will be about half as bright
19768 as when clipping.
19769
19770 @item hable
19771 Ignored.
19772
19773 @item mobius
19774 Specify the transition point from linear to mobius transform. Every value
19775 below this point is guaranteed to be mapped 1:1. The higher the value, the
19776 more accurate the result will be, at the cost of losing bright details.
19777 Default to 0.3, which due to the steep initial slope still preserves in-range
19778 colors fairly accurately.
19779 @end table
19780
19781 @item desat
19782 Apply desaturation for highlights that exceed this level of brightness. The
19783 higher the parameter, the more color information will be preserved. This
19784 setting helps prevent unnaturally blown-out colors for super-highlights, by
19785 (smoothly) turning into white instead. This makes images feel more natural,
19786 at the cost of reducing information about out-of-range colors.
19787
19788 The default of 2.0 is somewhat conservative and will mostly just apply to
19789 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19790
19791 This option works only if the input frame has a supported color tag.
19792
19793 @item peak
19794 Override signal/nominal/reference peak with this value. Useful when the
19795 embedded peak information in display metadata is not reliable or when tone
19796 mapping from a lower range to a higher range.
19797 @end table
19798
19799 @section tpad
19800
19801 Temporarily pad video frames.
19802
19803 The filter accepts the following options:
19804
19805 @table @option
19806 @item start
19807 Specify number of delay frames before input video stream. Default is 0.
19808
19809 @item stop
19810 Specify number of padding frames after input video stream.
19811 Set to -1 to pad indefinitely. Default is 0.
19812
19813 @item start_mode
19814 Set kind of frames added to beginning of stream.
19815 Can be either @var{add} or @var{clone}.
19816 With @var{add} frames of solid-color are added.
19817 With @var{clone} frames are clones of first frame.
19818 Default is @var{add}.
19819
19820 @item stop_mode
19821 Set kind of frames added to end of stream.
19822 Can be either @var{add} or @var{clone}.
19823 With @var{add} frames of solid-color are added.
19824 With @var{clone} frames are clones of last frame.
19825 Default is @var{add}.
19826
19827 @item start_duration, stop_duration
19828 Specify the duration of the start/stop delay. See
19829 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19830 for the accepted syntax.
19831 These options override @var{start} and @var{stop}. Default is 0.
19832
19833 @item color
19834 Specify the color of the padded area. For the syntax of this option,
19835 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19836 manual,ffmpeg-utils}.
19837
19838 The default value of @var{color} is "black".
19839 @end table
19840
19841 @anchor{transpose}
19842 @section transpose
19843
19844 Transpose rows with columns in the input video and optionally flip it.
19845
19846 It accepts the following parameters:
19847
19848 @table @option
19849
19850 @item dir
19851 Specify the transposition direction.
19852
19853 Can assume the following values:
19854 @table @samp
19855 @item 0, 4, cclock_flip
19856 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19857 @example
19858 L.R     L.l
19859 . . ->  . .
19860 l.r     R.r
19861 @end example
19862
19863 @item 1, 5, clock
19864 Rotate by 90 degrees clockwise, that is:
19865 @example
19866 L.R     l.L
19867 . . ->  . .
19868 l.r     r.R
19869 @end example
19870
19871 @item 2, 6, cclock
19872 Rotate by 90 degrees counterclockwise, that is:
19873 @example
19874 L.R     R.r
19875 . . ->  . .
19876 l.r     L.l
19877 @end example
19878
19879 @item 3, 7, clock_flip
19880 Rotate by 90 degrees clockwise and vertically flip, that is:
19881 @example
19882 L.R     r.R
19883 . . ->  . .
19884 l.r     l.L
19885 @end example
19886 @end table
19887
19888 For values between 4-7, the transposition is only done if the input
19889 video geometry is portrait and not landscape. These values are
19890 deprecated, the @code{passthrough} option should be used instead.
19891
19892 Numerical values are deprecated, and should be dropped in favor of
19893 symbolic constants.
19894
19895 @item passthrough
19896 Do not apply the transposition if the input geometry matches the one
19897 specified by the specified value. It accepts the following values:
19898 @table @samp
19899 @item none
19900 Always apply transposition.
19901 @item portrait
19902 Preserve portrait geometry (when @var{height} >= @var{width}).
19903 @item landscape
19904 Preserve landscape geometry (when @var{width} >= @var{height}).
19905 @end table
19906
19907 Default value is @code{none}.
19908 @end table
19909
19910 For example to rotate by 90 degrees clockwise and preserve portrait
19911 layout:
19912 @example
19913 transpose=dir=1:passthrough=portrait
19914 @end example
19915
19916 The command above can also be specified as:
19917 @example
19918 transpose=1:portrait
19919 @end example
19920
19921 @section transpose_npp
19922
19923 Transpose rows with columns in the input video and optionally flip it.
19924 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19925
19926 It accepts the following parameters:
19927
19928 @table @option
19929
19930 @item dir
19931 Specify the transposition direction.
19932
19933 Can assume the following values:
19934 @table @samp
19935 @item cclock_flip
19936 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19937
19938 @item clock
19939 Rotate by 90 degrees clockwise.
19940
19941 @item cclock
19942 Rotate by 90 degrees counterclockwise.
19943
19944 @item clock_flip
19945 Rotate by 90 degrees clockwise and vertically flip.
19946 @end table
19947
19948 @item passthrough
19949 Do not apply the transposition if the input geometry matches the one
19950 specified by the specified value. It accepts the following values:
19951 @table @samp
19952 @item none
19953 Always apply transposition. (default)
19954 @item portrait
19955 Preserve portrait geometry (when @var{height} >= @var{width}).
19956 @item landscape
19957 Preserve landscape geometry (when @var{width} >= @var{height}).
19958 @end table
19959
19960 @end table
19961
19962 @section trim
19963 Trim the input so that the output contains one continuous subpart of the input.
19964
19965 It accepts the following parameters:
19966 @table @option
19967 @item start
19968 Specify the time of the start of the kept section, i.e. the frame with the
19969 timestamp @var{start} will be the first frame in the output.
19970
19971 @item end
19972 Specify the time of the first frame that will be dropped, i.e. the frame
19973 immediately preceding the one with the timestamp @var{end} will be the last
19974 frame in the output.
19975
19976 @item start_pts
19977 This is the same as @var{start}, except this option sets the start timestamp
19978 in timebase units instead of seconds.
19979
19980 @item end_pts
19981 This is the same as @var{end}, except this option sets the end timestamp
19982 in timebase units instead of seconds.
19983
19984 @item duration
19985 The maximum duration of the output in seconds.
19986
19987 @item start_frame
19988 The number of the first frame that should be passed to the output.
19989
19990 @item end_frame
19991 The number of the first frame that should be dropped.
19992 @end table
19993
19994 @option{start}, @option{end}, and @option{duration} are expressed as time
19995 duration specifications; see
19996 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19997 for the accepted syntax.
19998
19999 Note that the first two sets of the start/end options and the @option{duration}
20000 option look at the frame timestamp, while the _frame variants simply count the
20001 frames that pass through the filter. Also note that this filter does not modify
20002 the timestamps. If you wish for the output timestamps to start at zero, insert a
20003 setpts filter after the trim filter.
20004
20005 If multiple start or end options are set, this filter tries to be greedy and
20006 keep all the frames that match at least one of the specified constraints. To keep
20007 only the part that matches all the constraints at once, chain multiple trim
20008 filters.
20009
20010 The defaults are such that all the input is kept. So it is possible to set e.g.
20011 just the end values to keep everything before the specified time.
20012
20013 Examples:
20014 @itemize
20015 @item
20016 Drop everything except the second minute of input:
20017 @example
20018 ffmpeg -i INPUT -vf trim=60:120
20019 @end example
20020
20021 @item
20022 Keep only the first second:
20023 @example
20024 ffmpeg -i INPUT -vf trim=duration=1
20025 @end example
20026
20027 @end itemize
20028
20029 @section unpremultiply
20030 Apply alpha unpremultiply effect to input video stream using first plane
20031 of second stream as alpha.
20032
20033 Both streams must have same dimensions and same pixel format.
20034
20035 The filter accepts the following option:
20036
20037 @table @option
20038 @item planes
20039 Set which planes will be processed, unprocessed planes will be copied.
20040 By default value 0xf, all planes will be processed.
20041
20042 If the format has 1 or 2 components, then luma is bit 0.
20043 If the format has 3 or 4 components:
20044 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
20045 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
20046 If present, the alpha channel is always the last bit.
20047
20048 @item inplace
20049 Do not require 2nd input for processing, instead use alpha plane from input stream.
20050 @end table
20051
20052 @anchor{unsharp}
20053 @section unsharp
20054
20055 Sharpen or blur the input video.
20056
20057 It accepts the following parameters:
20058
20059 @table @option
20060 @item luma_msize_x, lx
20061 Set the luma matrix horizontal size. It must be an odd integer between
20062 3 and 23. The default value is 5.
20063
20064 @item luma_msize_y, ly
20065 Set the luma matrix vertical size. It must be an odd integer between 3
20066 and 23. The default value is 5.
20067
20068 @item luma_amount, la
20069 Set the luma effect strength. It must be a floating point number, reasonable
20070 values lay between -1.5 and 1.5.
20071
20072 Negative values will blur the input video, while positive values will
20073 sharpen it, a value of zero will disable the effect.
20074
20075 Default value is 1.0.
20076
20077 @item chroma_msize_x, cx
20078 Set the chroma matrix horizontal size. It must be an odd integer
20079 between 3 and 23. The default value is 5.
20080
20081 @item chroma_msize_y, cy
20082 Set the chroma matrix vertical size. It must be an odd integer
20083 between 3 and 23. The default value is 5.
20084
20085 @item chroma_amount, ca
20086 Set the chroma effect strength. It must be a floating point number, reasonable
20087 values lay between -1.5 and 1.5.
20088
20089 Negative values will blur the input video, while positive values will
20090 sharpen it, a value of zero will disable the effect.
20091
20092 Default value is 0.0.
20093
20094 @end table
20095
20096 All parameters are optional and default to the equivalent of the
20097 string '5:5:1.0:5:5:0.0'.
20098
20099 @subsection Examples
20100
20101 @itemize
20102 @item
20103 Apply strong luma sharpen effect:
20104 @example
20105 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
20106 @end example
20107
20108 @item
20109 Apply a strong blur of both luma and chroma parameters:
20110 @example
20111 unsharp=7:7:-2:7:7:-2
20112 @end example
20113 @end itemize
20114
20115 @anchor{untile}
20116 @section untile
20117
20118 Decompose a video made of tiled images into the individual images.
20119
20120 The frame rate of the output video is the frame rate of the input video
20121 multiplied by the number of tiles.
20122
20123 This filter does the reverse of @ref{tile}.
20124
20125 The filter accepts the following options:
20126
20127 @table @option
20128
20129 @item layout
20130 Set the grid size (i.e. the number of lines and columns). For the syntax of
20131 this option, check the
20132 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20133 @end table
20134
20135 @subsection Examples
20136
20137 @itemize
20138 @item
20139 Produce a 1-second video from a still image file made of 25 frames stacked
20140 vertically, like an analogic film reel:
20141 @example
20142 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
20143 @end example
20144 @end itemize
20145
20146 @section uspp
20147
20148 Apply ultra slow/simple postprocessing filter that compresses and decompresses
20149 the image at several (or - in the case of @option{quality} level @code{8} - all)
20150 shifts and average the results.
20151
20152 The way this differs from the behavior of spp is that uspp actually encodes &
20153 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
20154 DCT similar to MJPEG.
20155
20156 The filter accepts the following options:
20157
20158 @table @option
20159 @item quality
20160 Set quality. This option defines the number of levels for averaging. It accepts
20161 an integer in the range 0-8. If set to @code{0}, the filter will have no
20162 effect. A value of @code{8} means the higher quality. For each increment of
20163 that value the speed drops by a factor of approximately 2.  Default value is
20164 @code{3}.
20165
20166 @item qp
20167 Force a constant quantization parameter. If not set, the filter will use the QP
20168 from the video stream (if available).
20169 @end table
20170
20171 @section v360
20172
20173 Convert 360 videos between various formats.
20174
20175 The filter accepts the following options:
20176
20177 @table @option
20178
20179 @item input
20180 @item output
20181 Set format of the input/output video.
20182
20183 Available formats:
20184
20185 @table @samp
20186
20187 @item e
20188 @item equirect
20189 Equirectangular projection.
20190
20191 @item c3x2
20192 @item c6x1
20193 @item c1x6
20194 Cubemap with 3x2/6x1/1x6 layout.
20195
20196 Format specific options:
20197
20198 @table @option
20199 @item in_pad
20200 @item out_pad
20201 Set padding proportion for the input/output cubemap. Values in decimals.
20202
20203 Example values:
20204 @table @samp
20205 @item 0
20206 No padding.
20207 @item 0.01
20208 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)
20209 @end table
20210
20211 Default value is @b{@samp{0}}.
20212 Maximum value is @b{@samp{0.1}}.
20213
20214 @item fin_pad
20215 @item fout_pad
20216 Set fixed padding for the input/output cubemap. Values in pixels.
20217
20218 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
20219
20220 @item in_forder
20221 @item out_forder
20222 Set order of faces for the input/output cubemap. Choose one direction for each position.
20223
20224 Designation of directions:
20225 @table @samp
20226 @item r
20227 right
20228 @item l
20229 left
20230 @item u
20231 up
20232 @item d
20233 down
20234 @item f
20235 forward
20236 @item b
20237 back
20238 @end table
20239
20240 Default value is @b{@samp{rludfb}}.
20241
20242 @item in_frot
20243 @item out_frot
20244 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20245
20246 Designation of angles:
20247 @table @samp
20248 @item 0
20249 0 degrees clockwise
20250 @item 1
20251 90 degrees clockwise
20252 @item 2
20253 180 degrees clockwise
20254 @item 3
20255 270 degrees clockwise
20256 @end table
20257
20258 Default value is @b{@samp{000000}}.
20259 @end table
20260
20261 @item eac
20262 Equi-Angular Cubemap.
20263
20264 @item flat
20265 @item gnomonic
20266 @item rectilinear
20267 Regular video.
20268
20269 Format specific options:
20270 @table @option
20271 @item h_fov
20272 @item v_fov
20273 @item d_fov
20274 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20275
20276 If diagonal field of view is set it overrides horizontal and vertical field of view.
20277
20278 @item ih_fov
20279 @item iv_fov
20280 @item id_fov
20281 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20282
20283 If diagonal field of view is set it overrides horizontal and vertical field of view.
20284 @end table
20285
20286 @item dfisheye
20287 Dual fisheye.
20288
20289 Format specific options:
20290 @table @option
20291 @item h_fov
20292 @item v_fov
20293 @item d_fov
20294 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20295
20296 If diagonal field of view is set it overrides horizontal and vertical field of view.
20297
20298 @item ih_fov
20299 @item iv_fov
20300 @item id_fov
20301 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20302
20303 If diagonal field of view is set it overrides horizontal and vertical field of view.
20304 @end table
20305
20306 @item barrel
20307 @item fb
20308 @item barrelsplit
20309 Facebook's 360 formats.
20310
20311 @item sg
20312 Stereographic format.
20313
20314 Format specific options:
20315 @table @option
20316 @item h_fov
20317 @item v_fov
20318 @item d_fov
20319 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20320
20321 If diagonal field of view is set it overrides horizontal and vertical field of view.
20322
20323 @item ih_fov
20324 @item iv_fov
20325 @item id_fov
20326 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20327
20328 If diagonal field of view is set it overrides horizontal and vertical field of view.
20329 @end table
20330
20331 @item mercator
20332 Mercator format.
20333
20334 @item ball
20335 Ball format, gives significant distortion toward the back.
20336
20337 @item hammer
20338 Hammer-Aitoff map projection format.
20339
20340 @item sinusoidal
20341 Sinusoidal map projection format.
20342
20343 @item fisheye
20344 Fisheye projection.
20345
20346 Format specific options:
20347 @table @option
20348 @item h_fov
20349 @item v_fov
20350 @item d_fov
20351 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20352
20353 If diagonal field of view is set it overrides horizontal and vertical field of view.
20354
20355 @item ih_fov
20356 @item iv_fov
20357 @item id_fov
20358 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20359
20360 If diagonal field of view is set it overrides horizontal and vertical field of view.
20361 @end table
20362
20363 @item pannini
20364 Pannini projection.
20365
20366 Format specific options:
20367 @table @option
20368 @item h_fov
20369 Set output pannini parameter.
20370
20371 @item ih_fov
20372 Set input pannini parameter.
20373 @end table
20374
20375 @item cylindrical
20376 Cylindrical projection.
20377
20378 Format specific options:
20379 @table @option
20380 @item h_fov
20381 @item v_fov
20382 @item d_fov
20383 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20384
20385 If diagonal field of view is set it overrides horizontal and vertical field of view.
20386
20387 @item ih_fov
20388 @item iv_fov
20389 @item id_fov
20390 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20391
20392 If diagonal field of view is set it overrides horizontal and vertical field of view.
20393 @end table
20394
20395 @item perspective
20396 Perspective projection. @i{(output only)}
20397
20398 Format specific options:
20399 @table @option
20400 @item v_fov
20401 Set perspective parameter.
20402 @end table
20403
20404 @item tetrahedron
20405 Tetrahedron projection.
20406
20407 @item tsp
20408 Truncated square pyramid projection.
20409
20410 @item he
20411 @item hequirect
20412 Half equirectangular projection.
20413
20414 @item equisolid
20415 Equisolid format.
20416
20417 Format specific options:
20418 @table @option
20419 @item h_fov
20420 @item v_fov
20421 @item d_fov
20422 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20423
20424 If diagonal field of view is set it overrides horizontal and vertical field of view.
20425
20426 @item ih_fov
20427 @item iv_fov
20428 @item id_fov
20429 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20430
20431 If diagonal field of view is set it overrides horizontal and vertical field of view.
20432 @end table
20433
20434 @item og
20435 Orthographic format.
20436
20437 Format specific options:
20438 @table @option
20439 @item h_fov
20440 @item v_fov
20441 @item d_fov
20442 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20443
20444 If diagonal field of view is set it overrides horizontal and vertical field of view.
20445
20446 @item ih_fov
20447 @item iv_fov
20448 @item id_fov
20449 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20450
20451 If diagonal field of view is set it overrides horizontal and vertical field of view.
20452 @end table
20453
20454 @item octahedron
20455 Octahedron projection.
20456 @end table
20457
20458 @item interp
20459 Set interpolation method.@*
20460 @i{Note: more complex interpolation methods require much more memory to run.}
20461
20462 Available methods:
20463
20464 @table @samp
20465 @item near
20466 @item nearest
20467 Nearest neighbour.
20468 @item line
20469 @item linear
20470 Bilinear interpolation.
20471 @item lagrange9
20472 Lagrange9 interpolation.
20473 @item cube
20474 @item cubic
20475 Bicubic interpolation.
20476 @item lanc
20477 @item lanczos
20478 Lanczos interpolation.
20479 @item sp16
20480 @item spline16
20481 Spline16 interpolation.
20482 @item gauss
20483 @item gaussian
20484 Gaussian interpolation.
20485 @item mitchell
20486 Mitchell interpolation.
20487 @end table
20488
20489 Default value is @b{@samp{line}}.
20490
20491 @item w
20492 @item h
20493 Set the output video resolution.
20494
20495 Default resolution depends on formats.
20496
20497 @item in_stereo
20498 @item out_stereo
20499 Set the input/output stereo format.
20500
20501 @table @samp
20502 @item 2d
20503 2D mono
20504 @item sbs
20505 Side by side
20506 @item tb
20507 Top bottom
20508 @end table
20509
20510 Default value is @b{@samp{2d}} for input and output format.
20511
20512 @item yaw
20513 @item pitch
20514 @item roll
20515 Set rotation for the output video. Values in degrees.
20516
20517 @item rorder
20518 Set rotation order for the output video. Choose one item for each position.
20519
20520 @table @samp
20521 @item y, Y
20522 yaw
20523 @item p, P
20524 pitch
20525 @item r, R
20526 roll
20527 @end table
20528
20529 Default value is @b{@samp{ypr}}.
20530
20531 @item h_flip
20532 @item v_flip
20533 @item d_flip
20534 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20535
20536 @item ih_flip
20537 @item iv_flip
20538 Set if input video is flipped horizontally/vertically. Boolean values.
20539
20540 @item in_trans
20541 Set if input video is transposed. Boolean value, by default disabled.
20542
20543 @item out_trans
20544 Set if output video needs to be transposed. Boolean value, by default disabled.
20545
20546 @item alpha_mask
20547 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20548 @end table
20549
20550 @subsection Examples
20551
20552 @itemize
20553 @item
20554 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20555 @example
20556 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20557 @end example
20558 @item
20559 Extract back view of Equi-Angular Cubemap:
20560 @example
20561 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20562 @end example
20563 @item
20564 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20565 @example
20566 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20567 @end example
20568 @end itemize
20569
20570 @subsection Commands
20571
20572 This filter supports subset of above options as @ref{commands}.
20573
20574 @section vaguedenoiser
20575
20576 Apply a wavelet based denoiser.
20577
20578 It transforms each frame from the video input into the wavelet domain,
20579 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20580 the obtained coefficients. It does an inverse wavelet transform after.
20581 Due to wavelet properties, it should give a nice smoothed result, and
20582 reduced noise, without blurring picture features.
20583
20584 This filter accepts the following options:
20585
20586 @table @option
20587 @item threshold
20588 The filtering strength. The higher, the more filtered the video will be.
20589 Hard thresholding can use a higher threshold than soft thresholding
20590 before the video looks overfiltered. Default value is 2.
20591
20592 @item method
20593 The filtering method the filter will use.
20594
20595 It accepts the following values:
20596 @table @samp
20597 @item hard
20598 All values under the threshold will be zeroed.
20599
20600 @item soft
20601 All values under the threshold will be zeroed. All values above will be
20602 reduced by the threshold.
20603
20604 @item garrote
20605 Scales or nullifies coefficients - intermediary between (more) soft and
20606 (less) hard thresholding.
20607 @end table
20608
20609 Default is garrote.
20610
20611 @item nsteps
20612 Number of times, the wavelet will decompose the picture. Picture can't
20613 be decomposed beyond a particular point (typically, 8 for a 640x480
20614 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20615
20616 @item percent
20617 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20618
20619 @item planes
20620 A list of the planes to process. By default all planes are processed.
20621
20622 @item type
20623 The threshold type the filter will use.
20624
20625 It accepts the following values:
20626 @table @samp
20627 @item universal
20628 Threshold used is same for all decompositions.
20629
20630 @item bayes
20631 Threshold used depends also on each decomposition coefficients.
20632 @end table
20633
20634 Default is universal.
20635 @end table
20636
20637 @section vectorscope
20638
20639 Display 2 color component values in the two dimensional graph (which is called
20640 a vectorscope).
20641
20642 This filter accepts the following options:
20643
20644 @table @option
20645 @item mode, m
20646 Set vectorscope mode.
20647
20648 It accepts the following values:
20649 @table @samp
20650 @item gray
20651 @item tint
20652 Gray values are displayed on graph, higher brightness means more pixels have
20653 same component color value on location in graph. This is the default mode.
20654
20655 @item color
20656 Gray values are displayed on graph. Surrounding pixels values which are not
20657 present in video frame are drawn in gradient of 2 color components which are
20658 set by option @code{x} and @code{y}. The 3rd color component is static.
20659
20660 @item color2
20661 Actual color components values present in video frame are displayed on graph.
20662
20663 @item color3
20664 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20665 on graph increases value of another color component, which is luminance by
20666 default values of @code{x} and @code{y}.
20667
20668 @item color4
20669 Actual colors present in video frame are displayed on graph. If two different
20670 colors map to same position on graph then color with higher value of component
20671 not present in graph is picked.
20672
20673 @item color5
20674 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20675 component picked from radial gradient.
20676 @end table
20677
20678 @item x
20679 Set which color component will be represented on X-axis. Default is @code{1}.
20680
20681 @item y
20682 Set which color component will be represented on Y-axis. Default is @code{2}.
20683
20684 @item intensity, i
20685 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20686 of color component which represents frequency of (X, Y) location in graph.
20687
20688 @item envelope, e
20689 @table @samp
20690 @item none
20691 No envelope, this is default.
20692
20693 @item instant
20694 Instant envelope, even darkest single pixel will be clearly highlighted.
20695
20696 @item peak
20697 Hold maximum and minimum values presented in graph over time. This way you
20698 can still spot out of range values without constantly looking at vectorscope.
20699
20700 @item peak+instant
20701 Peak and instant envelope combined together.
20702 @end table
20703
20704 @item graticule, g
20705 Set what kind of graticule to draw.
20706 @table @samp
20707 @item none
20708 @item green
20709 @item color
20710 @item invert
20711 @end table
20712
20713 @item opacity, o
20714 Set graticule opacity.
20715
20716 @item flags, f
20717 Set graticule flags.
20718
20719 @table @samp
20720 @item white
20721 Draw graticule for white point.
20722
20723 @item black
20724 Draw graticule for black point.
20725
20726 @item name
20727 Draw color points short names.
20728 @end table
20729
20730 @item bgopacity, b
20731 Set background opacity.
20732
20733 @item lthreshold, l
20734 Set low threshold for color component not represented on X or Y axis.
20735 Values lower than this value will be ignored. Default is 0.
20736 Note this value is multiplied with actual max possible value one pixel component
20737 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20738 is 0.1 * 255 = 25.
20739
20740 @item hthreshold, h
20741 Set high threshold for color component not represented on X or Y axis.
20742 Values higher than this value will be ignored. Default is 1.
20743 Note this value is multiplied with actual max possible value one pixel component
20744 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20745 is 0.9 * 255 = 230.
20746
20747 @item colorspace, c
20748 Set what kind of colorspace to use when drawing graticule.
20749 @table @samp
20750 @item auto
20751 @item 601
20752 @item 709
20753 @end table
20754 Default is auto.
20755
20756 @item tint0, t0
20757 @item tint1, t1
20758 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20759 This means no tint, and output will remain gray.
20760 @end table
20761
20762 @anchor{vidstabdetect}
20763 @section vidstabdetect
20764
20765 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20766 @ref{vidstabtransform} for pass 2.
20767
20768 This filter generates a file with relative translation and rotation
20769 transform information about subsequent frames, which is then used by
20770 the @ref{vidstabtransform} filter.
20771
20772 To enable compilation of this filter you need to configure FFmpeg with
20773 @code{--enable-libvidstab}.
20774
20775 This filter accepts the following options:
20776
20777 @table @option
20778 @item result
20779 Set the path to the file used to write the transforms information.
20780 Default value is @file{transforms.trf}.
20781
20782 @item shakiness
20783 Set how shaky the video is and how quick the camera is. It accepts an
20784 integer in the range 1-10, a value of 1 means little shakiness, a
20785 value of 10 means strong shakiness. Default value is 5.
20786
20787 @item accuracy
20788 Set the accuracy of the detection process. It must be a value in the
20789 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20790 accuracy. Default value is 15.
20791
20792 @item stepsize
20793 Set stepsize of the search process. The region around minimum is
20794 scanned with 1 pixel resolution. Default value is 6.
20795
20796 @item mincontrast
20797 Set minimum contrast. Below this value a local measurement field is
20798 discarded. Must be a floating point value in the range 0-1. Default
20799 value is 0.3.
20800
20801 @item tripod
20802 Set reference frame number for tripod mode.
20803
20804 If enabled, the motion of the frames is compared to a reference frame
20805 in the filtered stream, identified by the specified number. The idea
20806 is to compensate all movements in a more-or-less static scene and keep
20807 the camera view absolutely still.
20808
20809 If set to 0, it is disabled. The frames are counted starting from 1.
20810
20811 @item show
20812 Show fields and transforms in the resulting frames. It accepts an
20813 integer in the range 0-2. Default value is 0, which disables any
20814 visualization.
20815 @end table
20816
20817 @subsection Examples
20818
20819 @itemize
20820 @item
20821 Use default values:
20822 @example
20823 vidstabdetect
20824 @end example
20825
20826 @item
20827 Analyze strongly shaky movie and put the results in file
20828 @file{mytransforms.trf}:
20829 @example
20830 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20831 @end example
20832
20833 @item
20834 Visualize the result of internal transformations in the resulting
20835 video:
20836 @example
20837 vidstabdetect=show=1
20838 @end example
20839
20840 @item
20841 Analyze a video with medium shakiness using @command{ffmpeg}:
20842 @example
20843 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20844 @end example
20845 @end itemize
20846
20847 @anchor{vidstabtransform}
20848 @section vidstabtransform
20849
20850 Video stabilization/deshaking: pass 2 of 2,
20851 see @ref{vidstabdetect} for pass 1.
20852
20853 Read a file with transform information for each frame and
20854 apply/compensate them. Together with the @ref{vidstabdetect}
20855 filter this can be used to deshake videos. See also
20856 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20857 the @ref{unsharp} filter, see below.
20858
20859 To enable compilation of this filter you need to configure FFmpeg with
20860 @code{--enable-libvidstab}.
20861
20862 @subsection Options
20863
20864 @table @option
20865 @item input
20866 Set path to the file used to read the transforms. Default value is
20867 @file{transforms.trf}.
20868
20869 @item smoothing
20870 Set the number of frames (value*2 + 1) used for lowpass filtering the
20871 camera movements. Default value is 10.
20872
20873 For example a number of 10 means that 21 frames are used (10 in the
20874 past and 10 in the future) to smoothen the motion in the video. A
20875 larger value leads to a smoother video, but limits the acceleration of
20876 the camera (pan/tilt movements). 0 is a special case where a static
20877 camera is simulated.
20878
20879 @item optalgo
20880 Set the camera path optimization algorithm.
20881
20882 Accepted values are:
20883 @table @samp
20884 @item gauss
20885 gaussian kernel low-pass filter on camera motion (default)
20886 @item avg
20887 averaging on transformations
20888 @end table
20889
20890 @item maxshift
20891 Set maximal number of pixels to translate frames. Default value is -1,
20892 meaning no limit.
20893
20894 @item maxangle
20895 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20896 value is -1, meaning no limit.
20897
20898 @item crop
20899 Specify how to deal with borders that may be visible due to movement
20900 compensation.
20901
20902 Available values are:
20903 @table @samp
20904 @item keep
20905 keep image information from previous frame (default)
20906 @item black
20907 fill the border black
20908 @end table
20909
20910 @item invert
20911 Invert transforms if set to 1. Default value is 0.
20912
20913 @item relative
20914 Consider transforms as relative to previous frame if set to 1,
20915 absolute if set to 0. Default value is 0.
20916
20917 @item zoom
20918 Set percentage to zoom. A positive value will result in a zoom-in
20919 effect, a negative value in a zoom-out effect. Default value is 0 (no
20920 zoom).
20921
20922 @item optzoom
20923 Set optimal zooming to avoid borders.
20924
20925 Accepted values are:
20926 @table @samp
20927 @item 0
20928 disabled
20929 @item 1
20930 optimal static zoom value is determined (only very strong movements
20931 will lead to visible borders) (default)
20932 @item 2
20933 optimal adaptive zoom value is determined (no borders will be
20934 visible), see @option{zoomspeed}
20935 @end table
20936
20937 Note that the value given at zoom is added to the one calculated here.
20938
20939 @item zoomspeed
20940 Set percent to zoom maximally each frame (enabled when
20941 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20942 0.25.
20943
20944 @item interpol
20945 Specify type of interpolation.
20946
20947 Available values are:
20948 @table @samp
20949 @item no
20950 no interpolation
20951 @item linear
20952 linear only horizontal
20953 @item bilinear
20954 linear in both directions (default)
20955 @item bicubic
20956 cubic in both directions (slow)
20957 @end table
20958
20959 @item tripod
20960 Enable virtual tripod mode if set to 1, which is equivalent to
20961 @code{relative=0:smoothing=0}. Default value is 0.
20962
20963 Use also @code{tripod} option of @ref{vidstabdetect}.
20964
20965 @item debug
20966 Increase log verbosity if set to 1. Also the detected global motions
20967 are written to the temporary file @file{global_motions.trf}. Default
20968 value is 0.
20969 @end table
20970
20971 @subsection Examples
20972
20973 @itemize
20974 @item
20975 Use @command{ffmpeg} for a typical stabilization with default values:
20976 @example
20977 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20978 @end example
20979
20980 Note the use of the @ref{unsharp} filter which is always recommended.
20981
20982 @item
20983 Zoom in a bit more and load transform data from a given file:
20984 @example
20985 vidstabtransform=zoom=5:input="mytransforms.trf"
20986 @end example
20987
20988 @item
20989 Smoothen the video even more:
20990 @example
20991 vidstabtransform=smoothing=30
20992 @end example
20993 @end itemize
20994
20995 @section vflip
20996
20997 Flip the input video vertically.
20998
20999 For example, to vertically flip a video with @command{ffmpeg}:
21000 @example
21001 ffmpeg -i in.avi -vf "vflip" out.avi
21002 @end example
21003
21004 @section vfrdet
21005
21006 Detect variable frame rate video.
21007
21008 This filter tries to detect if the input is variable or constant frame rate.
21009
21010 At end it will output number of frames detected as having variable delta pts,
21011 and ones with constant delta pts.
21012 If there was frames with variable delta, than it will also show min, max and
21013 average delta encountered.
21014
21015 @section vibrance
21016
21017 Boost or alter saturation.
21018
21019 The filter accepts the following options:
21020 @table @option
21021 @item intensity
21022 Set strength of boost if positive value or strength of alter if negative value.
21023 Default is 0. Allowed range is from -2 to 2.
21024
21025 @item rbal
21026 Set the red balance. Default is 1. Allowed range is from -10 to 10.
21027
21028 @item gbal
21029 Set the green balance. Default is 1. Allowed range is from -10 to 10.
21030
21031 @item bbal
21032 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
21033
21034 @item rlum
21035 Set the red luma coefficient.
21036
21037 @item glum
21038 Set the green luma coefficient.
21039
21040 @item blum
21041 Set the blue luma coefficient.
21042
21043 @item alternate
21044 If @code{intensity} is negative and this is set to 1, colors will change,
21045 otherwise colors will be less saturated, more towards gray.
21046 @end table
21047
21048 @subsection Commands
21049
21050 This filter supports the all above options as @ref{commands}.
21051
21052 @anchor{vignette}
21053 @section vignette
21054
21055 Make or reverse a natural vignetting effect.
21056
21057 The filter accepts the following options:
21058
21059 @table @option
21060 @item angle, a
21061 Set lens angle expression as a number of radians.
21062
21063 The value is clipped in the @code{[0,PI/2]} range.
21064
21065 Default value: @code{"PI/5"}
21066
21067 @item x0
21068 @item y0
21069 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
21070 by default.
21071
21072 @item mode
21073 Set forward/backward mode.
21074
21075 Available modes are:
21076 @table @samp
21077 @item forward
21078 The larger the distance from the central point, the darker the image becomes.
21079
21080 @item backward
21081 The larger the distance from the central point, the brighter the image becomes.
21082 This can be used to reverse a vignette effect, though there is no automatic
21083 detection to extract the lens @option{angle} and other settings (yet). It can
21084 also be used to create a burning effect.
21085 @end table
21086
21087 Default value is @samp{forward}.
21088
21089 @item eval
21090 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
21091
21092 It accepts the following values:
21093 @table @samp
21094 @item init
21095 Evaluate expressions only once during the filter initialization.
21096
21097 @item frame
21098 Evaluate expressions for each incoming frame. This is way slower than the
21099 @samp{init} mode since it requires all the scalers to be re-computed, but it
21100 allows advanced dynamic expressions.
21101 @end table
21102
21103 Default value is @samp{init}.
21104
21105 @item dither
21106 Set dithering to reduce the circular banding effects. Default is @code{1}
21107 (enabled).
21108
21109 @item aspect
21110 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
21111 Setting this value to the SAR of the input will make a rectangular vignetting
21112 following the dimensions of the video.
21113
21114 Default is @code{1/1}.
21115 @end table
21116
21117 @subsection Expressions
21118
21119 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
21120 following parameters.
21121
21122 @table @option
21123 @item w
21124 @item h
21125 input width and height
21126
21127 @item n
21128 the number of input frame, starting from 0
21129
21130 @item pts
21131 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
21132 @var{TB} units, NAN if undefined
21133
21134 @item r
21135 frame rate of the input video, NAN if the input frame rate is unknown
21136
21137 @item t
21138 the PTS (Presentation TimeStamp) of the filtered video frame,
21139 expressed in seconds, NAN if undefined
21140
21141 @item tb
21142 time base of the input video
21143 @end table
21144
21145
21146 @subsection Examples
21147
21148 @itemize
21149 @item
21150 Apply simple strong vignetting effect:
21151 @example
21152 vignette=PI/4
21153 @end example
21154
21155 @item
21156 Make a flickering vignetting:
21157 @example
21158 vignette='PI/4+random(1)*PI/50':eval=frame
21159 @end example
21160
21161 @end itemize
21162
21163 @section vmafmotion
21164
21165 Obtain the average VMAF motion score of a video.
21166 It is one of the component metrics of VMAF.
21167
21168 The obtained average motion score is printed through the logging system.
21169
21170 The filter accepts the following options:
21171
21172 @table @option
21173 @item stats_file
21174 If specified, the filter will use the named file to save the motion score of
21175 each frame with respect to the previous frame.
21176 When filename equals "-" the data is sent to standard output.
21177 @end table
21178
21179 Example:
21180 @example
21181 ffmpeg -i ref.mpg -vf vmafmotion -f null -
21182 @end example
21183
21184 @section vstack
21185 Stack input videos vertically.
21186
21187 All streams must be of same pixel format and of same width.
21188
21189 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
21190 to create same output.
21191
21192 The filter accepts the following options:
21193
21194 @table @option
21195 @item inputs
21196 Set number of input streams. Default is 2.
21197
21198 @item shortest
21199 If set to 1, force the output to terminate when the shortest input
21200 terminates. Default value is 0.
21201 @end table
21202
21203 @section w3fdif
21204
21205 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
21206 Deinterlacing Filter").
21207
21208 Based on the process described by Martin Weston for BBC R&D, and
21209 implemented based on the de-interlace algorithm written by Jim
21210 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
21211 uses filter coefficients calculated by BBC R&D.
21212
21213 This filter uses field-dominance information in frame to decide which
21214 of each pair of fields to place first in the output.
21215 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
21216
21217 There are two sets of filter coefficients, so called "simple"
21218 and "complex". Which set of filter coefficients is used can
21219 be set by passing an optional parameter:
21220
21221 @table @option
21222 @item filter
21223 Set the interlacing filter coefficients. Accepts one of the following values:
21224
21225 @table @samp
21226 @item simple
21227 Simple filter coefficient set.
21228 @item complex
21229 More-complex filter coefficient set.
21230 @end table
21231 Default value is @samp{complex}.
21232
21233 @item mode
21234 The interlacing mode to adopt. It accepts one of the following values:
21235
21236 @table @option
21237 @item frame
21238 Output one frame for each frame.
21239 @item field
21240 Output one frame for each field.
21241 @end table
21242
21243 The default value is @code{field}.
21244
21245 @item parity
21246 The picture field parity assumed for the input interlaced video. It accepts one
21247 of the following values:
21248
21249 @table @option
21250 @item tff
21251 Assume the top field is first.
21252 @item bff
21253 Assume the bottom field is first.
21254 @item auto
21255 Enable automatic detection of field parity.
21256 @end table
21257
21258 The default value is @code{auto}.
21259 If the interlacing is unknown or the decoder does not export this information,
21260 top field first will be assumed.
21261
21262 @item deint
21263 Specify which frames to deinterlace. Accepts one of the following values:
21264
21265 @table @samp
21266 @item all
21267 Deinterlace all frames,
21268 @item interlaced
21269 Only deinterlace frames marked as interlaced.
21270 @end table
21271
21272 Default value is @samp{all}.
21273 @end table
21274
21275 @subsection Commands
21276 This filter supports same @ref{commands} as options.
21277
21278 @section waveform
21279 Video waveform monitor.
21280
21281 The waveform monitor plots color component intensity. By default luminance
21282 only. Each column of the waveform corresponds to a column of pixels in the
21283 source video.
21284
21285 It accepts the following options:
21286
21287 @table @option
21288 @item mode, m
21289 Can be either @code{row}, or @code{column}. Default is @code{column}.
21290 In row mode, the graph on the left side represents color component value 0 and
21291 the right side represents value = 255. In column mode, the top side represents
21292 color component value = 0 and bottom side represents value = 255.
21293
21294 @item intensity, i
21295 Set intensity. Smaller values are useful to find out how many values of the same
21296 luminance are distributed across input rows/columns.
21297 Default value is @code{0.04}. Allowed range is [0, 1].
21298
21299 @item mirror, r
21300 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21301 In mirrored mode, higher values will be represented on the left
21302 side for @code{row} mode and at the top for @code{column} mode. Default is
21303 @code{1} (mirrored).
21304
21305 @item display, d
21306 Set display mode.
21307 It accepts the following values:
21308 @table @samp
21309 @item overlay
21310 Presents information identical to that in the @code{parade}, except
21311 that the graphs representing color components are superimposed directly
21312 over one another.
21313
21314 This display mode makes it easier to spot relative differences or similarities
21315 in overlapping areas of the color components that are supposed to be identical,
21316 such as neutral whites, grays, or blacks.
21317
21318 @item stack
21319 Display separate graph for the color components side by side in
21320 @code{row} mode or one below the other in @code{column} mode.
21321
21322 @item parade
21323 Display separate graph for the color components side by side in
21324 @code{column} mode or one below the other in @code{row} mode.
21325
21326 Using this display mode makes it easy to spot color casts in the highlights
21327 and shadows of an image, by comparing the contours of the top and the bottom
21328 graphs of each waveform. Since whites, grays, and blacks are characterized
21329 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21330 should display three waveforms of roughly equal width/height. If not, the
21331 correction is easy to perform by making level adjustments the three waveforms.
21332 @end table
21333 Default is @code{stack}.
21334
21335 @item components, c
21336 Set which color components to display. Default is 1, which means only luminance
21337 or red color component if input is in RGB colorspace. If is set for example to
21338 7 it will display all 3 (if) available color components.
21339
21340 @item envelope, e
21341 @table @samp
21342 @item none
21343 No envelope, this is default.
21344
21345 @item instant
21346 Instant envelope, minimum and maximum values presented in graph will be easily
21347 visible even with small @code{step} value.
21348
21349 @item peak
21350 Hold minimum and maximum values presented in graph across time. This way you
21351 can still spot out of range values without constantly looking at waveforms.
21352
21353 @item peak+instant
21354 Peak and instant envelope combined together.
21355 @end table
21356
21357 @item filter, f
21358 @table @samp
21359 @item lowpass
21360 No filtering, this is default.
21361
21362 @item flat
21363 Luma and chroma combined together.
21364
21365 @item aflat
21366 Similar as above, but shows difference between blue and red chroma.
21367
21368 @item xflat
21369 Similar as above, but use different colors.
21370
21371 @item yflat
21372 Similar as above, but again with different colors.
21373
21374 @item chroma
21375 Displays only chroma.
21376
21377 @item color
21378 Displays actual color value on waveform.
21379
21380 @item acolor
21381 Similar as above, but with luma showing frequency of chroma values.
21382 @end table
21383
21384 @item graticule, g
21385 Set which graticule to display.
21386
21387 @table @samp
21388 @item none
21389 Do not display graticule.
21390
21391 @item green
21392 Display green graticule showing legal broadcast ranges.
21393
21394 @item orange
21395 Display orange graticule showing legal broadcast ranges.
21396
21397 @item invert
21398 Display invert graticule showing legal broadcast ranges.
21399 @end table
21400
21401 @item opacity, o
21402 Set graticule opacity.
21403
21404 @item flags, fl
21405 Set graticule flags.
21406
21407 @table @samp
21408 @item numbers
21409 Draw numbers above lines. By default enabled.
21410
21411 @item dots
21412 Draw dots instead of lines.
21413 @end table
21414
21415 @item scale, s
21416 Set scale used for displaying graticule.
21417
21418 @table @samp
21419 @item digital
21420 @item millivolts
21421 @item ire
21422 @end table
21423 Default is digital.
21424
21425 @item bgopacity, b
21426 Set background opacity.
21427
21428 @item tint0, t0
21429 @item tint1, t1
21430 Set tint for output.
21431 Only used with lowpass filter and when display is not overlay and input
21432 pixel formats are not RGB.
21433 @end table
21434
21435 @section weave, doubleweave
21436
21437 The @code{weave} takes a field-based video input and join
21438 each two sequential fields into single frame, producing a new double
21439 height clip with half the frame rate and half the frame count.
21440
21441 The @code{doubleweave} works same as @code{weave} but without
21442 halving frame rate and frame count.
21443
21444 It accepts the following option:
21445
21446 @table @option
21447 @item first_field
21448 Set first field. Available values are:
21449
21450 @table @samp
21451 @item top, t
21452 Set the frame as top-field-first.
21453
21454 @item bottom, b
21455 Set the frame as bottom-field-first.
21456 @end table
21457 @end table
21458
21459 @subsection Examples
21460
21461 @itemize
21462 @item
21463 Interlace video using @ref{select} and @ref{separatefields} filter:
21464 @example
21465 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21466 @end example
21467 @end itemize
21468
21469 @section xbr
21470 Apply the xBR high-quality magnification filter which is designed for pixel
21471 art. It follows a set of edge-detection rules, see
21472 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21473
21474 It accepts the following option:
21475
21476 @table @option
21477 @item n
21478 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21479 @code{3xBR} and @code{4} for @code{4xBR}.
21480 Default is @code{3}.
21481 @end table
21482
21483 @section xfade
21484
21485 Apply cross fade from one input video stream to another input video stream.
21486 The cross fade is applied for specified duration.
21487
21488 The filter accepts the following options:
21489
21490 @table @option
21491 @item transition
21492 Set one of available transition effects:
21493
21494 @table @samp
21495 @item custom
21496 @item fade
21497 @item wipeleft
21498 @item wiperight
21499 @item wipeup
21500 @item wipedown
21501 @item slideleft
21502 @item slideright
21503 @item slideup
21504 @item slidedown
21505 @item circlecrop
21506 @item rectcrop
21507 @item distance
21508 @item fadeblack
21509 @item fadewhite
21510 @item radial
21511 @item smoothleft
21512 @item smoothright
21513 @item smoothup
21514 @item smoothdown
21515 @item circleopen
21516 @item circleclose
21517 @item vertopen
21518 @item vertclose
21519 @item horzopen
21520 @item horzclose
21521 @item dissolve
21522 @item pixelize
21523 @item diagtl
21524 @item diagtr
21525 @item diagbl
21526 @item diagbr
21527 @item hlslice
21528 @item hrslice
21529 @item vuslice
21530 @item vdslice
21531 @item hblur
21532 @item fadegrays
21533 @item wipetl
21534 @item wipetr
21535 @item wipebl
21536 @item wipebr
21537 @item squeezeh
21538 @item squeezev
21539 @end table
21540 Default transition effect is fade.
21541
21542 @item duration
21543 Set cross fade duration in seconds.
21544 Default duration is 1 second.
21545
21546 @item offset
21547 Set cross fade start relative to first input stream in seconds.
21548 Default offset is 0.
21549
21550 @item expr
21551 Set expression for custom transition effect.
21552
21553 The expressions can use the following variables and functions:
21554
21555 @table @option
21556 @item X
21557 @item Y
21558 The coordinates of the current sample.
21559
21560 @item W
21561 @item H
21562 The width and height of the image.
21563
21564 @item P
21565 Progress of transition effect.
21566
21567 @item PLANE
21568 Currently processed plane.
21569
21570 @item A
21571 Return value of first input at current location and plane.
21572
21573 @item B
21574 Return value of second input at current location and plane.
21575
21576 @item a0(x, y)
21577 @item a1(x, y)
21578 @item a2(x, y)
21579 @item a3(x, y)
21580 Return the value of the pixel at location (@var{x},@var{y}) of the
21581 first/second/third/fourth component of first input.
21582
21583 @item b0(x, y)
21584 @item b1(x, y)
21585 @item b2(x, y)
21586 @item b3(x, y)
21587 Return the value of the pixel at location (@var{x},@var{y}) of the
21588 first/second/third/fourth component of second input.
21589 @end table
21590 @end table
21591
21592 @subsection Examples
21593
21594 @itemize
21595 @item
21596 Cross fade from one input video to another input video, with fade transition and duration of transition
21597 of 2 seconds starting at offset of 5 seconds:
21598 @example
21599 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21600 @end example
21601 @end itemize
21602
21603 @section xmedian
21604 Pick median pixels from several input videos.
21605
21606 The filter accepts the following options:
21607
21608 @table @option
21609 @item inputs
21610 Set number of inputs.
21611 Default is 3. Allowed range is from 3 to 255.
21612 If number of inputs is even number, than result will be mean value between two median values.
21613
21614 @item planes
21615 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21616
21617 @item percentile
21618 Set median percentile. Default value is @code{0.5}.
21619 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21620 minimum values, and @code{1} maximum values.
21621 @end table
21622
21623 @subsection Commands
21624
21625 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21626
21627 @section xstack
21628 Stack video inputs into custom layout.
21629
21630 All streams must be of same pixel format.
21631
21632 The filter accepts the following options:
21633
21634 @table @option
21635 @item inputs
21636 Set number of input streams. Default is 2.
21637
21638 @item layout
21639 Specify layout of inputs.
21640 This option requires the desired layout configuration to be explicitly set by the user.
21641 This sets position of each video input in output. Each input
21642 is separated by '|'.
21643 The first number represents the column, and the second number represents the row.
21644 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21645 where X is video input from which to take width or height.
21646 Multiple values can be used when separated by '+'. In such
21647 case values are summed together.
21648
21649 Note that if inputs are of different sizes gaps may appear, as not all of
21650 the output video frame will be filled. Similarly, videos can overlap each
21651 other if their position doesn't leave enough space for the full frame of
21652 adjoining videos.
21653
21654 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21655 a layout must be set by the user.
21656
21657 @item shortest
21658 If set to 1, force the output to terminate when the shortest input
21659 terminates. Default value is 0.
21660
21661 @item fill
21662 If set to valid color, all unused pixels will be filled with that color.
21663 By default fill is set to none, so it is disabled.
21664 @end table
21665
21666 @subsection Examples
21667
21668 @itemize
21669 @item
21670 Display 4 inputs into 2x2 grid.
21671
21672 Layout:
21673 @example
21674 input1(0, 0)  | input3(w0, 0)
21675 input2(0, h0) | input4(w0, h0)
21676 @end example
21677
21678 @example
21679 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21680 @end example
21681
21682 Note that if inputs are of different sizes, gaps or overlaps may occur.
21683
21684 @item
21685 Display 4 inputs into 1x4 grid.
21686
21687 Layout:
21688 @example
21689 input1(0, 0)
21690 input2(0, h0)
21691 input3(0, h0+h1)
21692 input4(0, h0+h1+h2)
21693 @end example
21694
21695 @example
21696 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21697 @end example
21698
21699 Note that if inputs are of different widths, unused space will appear.
21700
21701 @item
21702 Display 9 inputs into 3x3 grid.
21703
21704 Layout:
21705 @example
21706 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21707 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21708 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21709 @end example
21710
21711 @example
21712 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
21713 @end example
21714
21715 Note that if inputs are of different sizes, gaps or overlaps may occur.
21716
21717 @item
21718 Display 16 inputs into 4x4 grid.
21719
21720 Layout:
21721 @example
21722 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21723 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21724 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21725 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21726 @end example
21727
21728 @example
21729 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|
21730 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
21731 @end example
21732
21733 Note that if inputs are of different sizes, gaps or overlaps may occur.
21734
21735 @end itemize
21736
21737 @anchor{yadif}
21738 @section yadif
21739
21740 Deinterlace the input video ("yadif" means "yet another deinterlacing
21741 filter").
21742
21743 It accepts the following parameters:
21744
21745
21746 @table @option
21747
21748 @item mode
21749 The interlacing mode to adopt. It accepts one of the following values:
21750
21751 @table @option
21752 @item 0, send_frame
21753 Output one frame for each frame.
21754 @item 1, send_field
21755 Output one frame for each field.
21756 @item 2, send_frame_nospatial
21757 Like @code{send_frame}, but it skips the spatial interlacing check.
21758 @item 3, send_field_nospatial
21759 Like @code{send_field}, but it skips the spatial interlacing check.
21760 @end table
21761
21762 The default value is @code{send_frame}.
21763
21764 @item parity
21765 The picture field parity assumed for the input interlaced video. It accepts one
21766 of the following values:
21767
21768 @table @option
21769 @item 0, tff
21770 Assume the top field is first.
21771 @item 1, bff
21772 Assume the bottom field is first.
21773 @item -1, auto
21774 Enable automatic detection of field parity.
21775 @end table
21776
21777 The default value is @code{auto}.
21778 If the interlacing is unknown or the decoder does not export this information,
21779 top field first will be assumed.
21780
21781 @item deint
21782 Specify which frames to deinterlace. Accepts one of the following
21783 values:
21784
21785 @table @option
21786 @item 0, all
21787 Deinterlace all frames.
21788 @item 1, interlaced
21789 Only deinterlace frames marked as interlaced.
21790 @end table
21791
21792 The default value is @code{all}.
21793 @end table
21794
21795 @section yadif_cuda
21796
21797 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21798 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21799 and/or nvenc.
21800
21801 It accepts the following parameters:
21802
21803
21804 @table @option
21805
21806 @item mode
21807 The interlacing mode to adopt. It accepts one of the following values:
21808
21809 @table @option
21810 @item 0, send_frame
21811 Output one frame for each frame.
21812 @item 1, send_field
21813 Output one frame for each field.
21814 @item 2, send_frame_nospatial
21815 Like @code{send_frame}, but it skips the spatial interlacing check.
21816 @item 3, send_field_nospatial
21817 Like @code{send_field}, but it skips the spatial interlacing check.
21818 @end table
21819
21820 The default value is @code{send_frame}.
21821
21822 @item parity
21823 The picture field parity assumed for the input interlaced video. It accepts one
21824 of the following values:
21825
21826 @table @option
21827 @item 0, tff
21828 Assume the top field is first.
21829 @item 1, bff
21830 Assume the bottom field is first.
21831 @item -1, auto
21832 Enable automatic detection of field parity.
21833 @end table
21834
21835 The default value is @code{auto}.
21836 If the interlacing is unknown or the decoder does not export this information,
21837 top field first will be assumed.
21838
21839 @item deint
21840 Specify which frames to deinterlace. Accepts one of the following
21841 values:
21842
21843 @table @option
21844 @item 0, all
21845 Deinterlace all frames.
21846 @item 1, interlaced
21847 Only deinterlace frames marked as interlaced.
21848 @end table
21849
21850 The default value is @code{all}.
21851 @end table
21852
21853 @section yaepblur
21854
21855 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21856 The algorithm is described in
21857 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21858
21859 It accepts the following parameters:
21860
21861 @table @option
21862 @item radius, r
21863 Set the window radius. Default value is 3.
21864
21865 @item planes, p
21866 Set which planes to filter. Default is only the first plane.
21867
21868 @item sigma, s
21869 Set blur strength. Default value is 128.
21870 @end table
21871
21872 @subsection Commands
21873 This filter supports same @ref{commands} as options.
21874
21875 @section zoompan
21876
21877 Apply Zoom & Pan effect.
21878
21879 This filter accepts the following options:
21880
21881 @table @option
21882 @item zoom, z
21883 Set the zoom expression. Range is 1-10. Default is 1.
21884
21885 @item x
21886 @item y
21887 Set the x and y expression. Default is 0.
21888
21889 @item d
21890 Set the duration expression in number of frames.
21891 This sets for how many number of frames effect will last for
21892 single input image.
21893
21894 @item s
21895 Set the output image size, default is 'hd720'.
21896
21897 @item fps
21898 Set the output frame rate, default is '25'.
21899 @end table
21900
21901 Each expression can contain the following constants:
21902
21903 @table @option
21904 @item in_w, iw
21905 Input width.
21906
21907 @item in_h, ih
21908 Input height.
21909
21910 @item out_w, ow
21911 Output width.
21912
21913 @item out_h, oh
21914 Output height.
21915
21916 @item in
21917 Input frame count.
21918
21919 @item on
21920 Output frame count.
21921
21922 @item in_time, it
21923 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21924
21925 @item out_time, time, ot
21926 The output timestamp expressed in seconds.
21927
21928 @item x
21929 @item y
21930 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21931 for current input frame.
21932
21933 @item px
21934 @item py
21935 'x' and 'y' of last output frame of previous input frame or 0 when there was
21936 not yet such frame (first input frame).
21937
21938 @item zoom
21939 Last calculated zoom from 'z' expression for current input frame.
21940
21941 @item pzoom
21942 Last calculated zoom of last output frame of previous input frame.
21943
21944 @item duration
21945 Number of output frames for current input frame. Calculated from 'd' expression
21946 for each input frame.
21947
21948 @item pduration
21949 number of output frames created for previous input frame
21950
21951 @item a
21952 Rational number: input width / input height
21953
21954 @item sar
21955 sample aspect ratio
21956
21957 @item dar
21958 display aspect ratio
21959
21960 @end table
21961
21962 @subsection Examples
21963
21964 @itemize
21965 @item
21966 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21967 @example
21968 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
21969 @end example
21970
21971 @item
21972 Zoom in up to 1.5x and pan always at center of picture:
21973 @example
21974 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21975 @end example
21976
21977 @item
21978 Same as above but without pausing:
21979 @example
21980 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21981 @end example
21982
21983 @item
21984 Zoom in 2x into center of picture only for the first second of the input video:
21985 @example
21986 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21987 @end example
21988
21989 @end itemize
21990
21991 @anchor{zscale}
21992 @section zscale
21993 Scale (resize) the input video, using the z.lib library:
21994 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21995 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21996
21997 The zscale filter forces the output display aspect ratio to be the same
21998 as the input, by changing the output sample aspect ratio.
21999
22000 If the input image format is different from the format requested by
22001 the next filter, the zscale filter will convert the input to the
22002 requested format.
22003
22004 @subsection Options
22005 The filter accepts the following options.
22006
22007 @table @option
22008 @item width, w
22009 @item height, h
22010 Set the output video dimension expression. Default value is the input
22011 dimension.
22012
22013 If the @var{width} or @var{w} value is 0, the input width is used for
22014 the output. If the @var{height} or @var{h} value is 0, the input height
22015 is used for the output.
22016
22017 If one and only one of the values is -n with n >= 1, the zscale filter
22018 will use a value that maintains the aspect ratio of the input image,
22019 calculated from the other specified dimension. After that it will,
22020 however, make sure that the calculated dimension is divisible by n and
22021 adjust the value if necessary.
22022
22023 If both values are -n with n >= 1, the behavior will be identical to
22024 both values being set to 0 as previously detailed.
22025
22026 See below for the list of accepted constants for use in the dimension
22027 expression.
22028
22029 @item size, s
22030 Set the video size. For the syntax of this option, check the
22031 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22032
22033 @item dither, d
22034 Set the dither type.
22035
22036 Possible values are:
22037 @table @var
22038 @item none
22039 @item ordered
22040 @item random
22041 @item error_diffusion
22042 @end table
22043
22044 Default is none.
22045
22046 @item filter, f
22047 Set the resize filter type.
22048
22049 Possible values are:
22050 @table @var
22051 @item point
22052 @item bilinear
22053 @item bicubic
22054 @item spline16
22055 @item spline36
22056 @item lanczos
22057 @end table
22058
22059 Default is bilinear.
22060
22061 @item range, r
22062 Set the color range.
22063
22064 Possible values are:
22065 @table @var
22066 @item input
22067 @item limited
22068 @item full
22069 @end table
22070
22071 Default is same as input.
22072
22073 @item primaries, p
22074 Set the color primaries.
22075
22076 Possible values are:
22077 @table @var
22078 @item input
22079 @item 709
22080 @item unspecified
22081 @item 170m
22082 @item 240m
22083 @item 2020
22084 @end table
22085
22086 Default is same as input.
22087
22088 @item transfer, t
22089 Set the transfer characteristics.
22090
22091 Possible values are:
22092 @table @var
22093 @item input
22094 @item 709
22095 @item unspecified
22096 @item 601
22097 @item linear
22098 @item 2020_10
22099 @item 2020_12
22100 @item smpte2084
22101 @item iec61966-2-1
22102 @item arib-std-b67
22103 @end table
22104
22105 Default is same as input.
22106
22107 @item matrix, m
22108 Set the colorspace matrix.
22109
22110 Possible value are:
22111 @table @var
22112 @item input
22113 @item 709
22114 @item unspecified
22115 @item 470bg
22116 @item 170m
22117 @item 2020_ncl
22118 @item 2020_cl
22119 @end table
22120
22121 Default is same as input.
22122
22123 @item rangein, rin
22124 Set the input color range.
22125
22126 Possible values are:
22127 @table @var
22128 @item input
22129 @item limited
22130 @item full
22131 @end table
22132
22133 Default is same as input.
22134
22135 @item primariesin, pin
22136 Set the input color primaries.
22137
22138 Possible values are:
22139 @table @var
22140 @item input
22141 @item 709
22142 @item unspecified
22143 @item 170m
22144 @item 240m
22145 @item 2020
22146 @end table
22147
22148 Default is same as input.
22149
22150 @item transferin, tin
22151 Set the input transfer characteristics.
22152
22153 Possible values are:
22154 @table @var
22155 @item input
22156 @item 709
22157 @item unspecified
22158 @item 601
22159 @item linear
22160 @item 2020_10
22161 @item 2020_12
22162 @end table
22163
22164 Default is same as input.
22165
22166 @item matrixin, min
22167 Set the input colorspace matrix.
22168
22169 Possible value are:
22170 @table @var
22171 @item input
22172 @item 709
22173 @item unspecified
22174 @item 470bg
22175 @item 170m
22176 @item 2020_ncl
22177 @item 2020_cl
22178 @end table
22179
22180 @item chromal, c
22181 Set the output chroma location.
22182
22183 Possible values are:
22184 @table @var
22185 @item input
22186 @item left
22187 @item center
22188 @item topleft
22189 @item top
22190 @item bottomleft
22191 @item bottom
22192 @end table
22193
22194 @item chromalin, cin
22195 Set the input chroma location.
22196
22197 Possible values are:
22198 @table @var
22199 @item input
22200 @item left
22201 @item center
22202 @item topleft
22203 @item top
22204 @item bottomleft
22205 @item bottom
22206 @end table
22207
22208 @item npl
22209 Set the nominal peak luminance.
22210 @end table
22211
22212 The values of the @option{w} and @option{h} options are expressions
22213 containing the following constants:
22214
22215 @table @var
22216 @item in_w
22217 @item in_h
22218 The input width and height
22219
22220 @item iw
22221 @item ih
22222 These are the same as @var{in_w} and @var{in_h}.
22223
22224 @item out_w
22225 @item out_h
22226 The output (scaled) width and height
22227
22228 @item ow
22229 @item oh
22230 These are the same as @var{out_w} and @var{out_h}
22231
22232 @item a
22233 The same as @var{iw} / @var{ih}
22234
22235 @item sar
22236 input sample aspect ratio
22237
22238 @item dar
22239 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22240
22241 @item hsub
22242 @item vsub
22243 horizontal and vertical input chroma subsample values. For example for the
22244 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22245
22246 @item ohsub
22247 @item ovsub
22248 horizontal and vertical output chroma subsample values. For example for the
22249 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22250 @end table
22251
22252 @subsection Commands
22253
22254 This filter supports the following commands:
22255 @table @option
22256 @item width, w
22257 @item height, h
22258 Set the output video dimension expression.
22259 The command accepts the same syntax of the corresponding option.
22260
22261 If the specified expression is not valid, it is kept at its current
22262 value.
22263 @end table
22264
22265 @c man end VIDEO FILTERS
22266
22267 @chapter OpenCL Video Filters
22268 @c man begin OPENCL VIDEO FILTERS
22269
22270 Below is a description of the currently available OpenCL video filters.
22271
22272 To enable compilation of these filters you need to configure FFmpeg with
22273 @code{--enable-opencl}.
22274
22275 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22276 @table @option
22277
22278 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22279 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22280 given device parameters.
22281
22282 @item -filter_hw_device @var{name}
22283 Pass the hardware device called @var{name} to all filters in any filter graph.
22284
22285 @end table
22286
22287 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22288
22289 @itemize
22290 @item
22291 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22292 @example
22293 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22294 @end example
22295 @end itemize
22296
22297 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.
22298
22299 @section avgblur_opencl
22300
22301 Apply average blur filter.
22302
22303 The filter accepts the following options:
22304
22305 @table @option
22306 @item sizeX
22307 Set horizontal radius size.
22308 Range is @code{[1, 1024]} and default value is @code{1}.
22309
22310 @item planes
22311 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22312
22313 @item sizeY
22314 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22315 @end table
22316
22317 @subsection Example
22318
22319 @itemize
22320 @item
22321 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.
22322 @example
22323 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22324 @end example
22325 @end itemize
22326
22327 @section boxblur_opencl
22328
22329 Apply a boxblur algorithm to the input video.
22330
22331 It accepts the following parameters:
22332
22333 @table @option
22334
22335 @item luma_radius, lr
22336 @item luma_power, lp
22337 @item chroma_radius, cr
22338 @item chroma_power, cp
22339 @item alpha_radius, ar
22340 @item alpha_power, ap
22341
22342 @end table
22343
22344 A description of the accepted options follows.
22345
22346 @table @option
22347 @item luma_radius, lr
22348 @item chroma_radius, cr
22349 @item alpha_radius, ar
22350 Set an expression for the box radius in pixels used for blurring the
22351 corresponding input plane.
22352
22353 The radius value must be a non-negative number, and must not be
22354 greater than the value of the expression @code{min(w,h)/2} for the
22355 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22356 planes.
22357
22358 Default value for @option{luma_radius} is "2". If not specified,
22359 @option{chroma_radius} and @option{alpha_radius} default to the
22360 corresponding value set for @option{luma_radius}.
22361
22362 The expressions can contain the following constants:
22363 @table @option
22364 @item w
22365 @item h
22366 The input width and height in pixels.
22367
22368 @item cw
22369 @item ch
22370 The input chroma image width and height in pixels.
22371
22372 @item hsub
22373 @item vsub
22374 The horizontal and vertical chroma subsample values. For example, for the
22375 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22376 @end table
22377
22378 @item luma_power, lp
22379 @item chroma_power, cp
22380 @item alpha_power, ap
22381 Specify how many times the boxblur filter is applied to the
22382 corresponding plane.
22383
22384 Default value for @option{luma_power} is 2. If not specified,
22385 @option{chroma_power} and @option{alpha_power} default to the
22386 corresponding value set for @option{luma_power}.
22387
22388 A value of 0 will disable the effect.
22389 @end table
22390
22391 @subsection Examples
22392
22393 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.
22394
22395 @itemize
22396 @item
22397 Apply a boxblur filter with the luma, chroma, and alpha radius
22398 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.
22399 @example
22400 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22401 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22402 @end example
22403
22404 @item
22405 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.
22406
22407 For the luma plane, a 2x2 box radius will be run once.
22408
22409 For the chroma plane, a 4x4 box radius will be run 5 times.
22410
22411 For the alpha plane, a 3x3 box radius will be run 7 times.
22412 @example
22413 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22414 @end example
22415 @end itemize
22416
22417 @section colorkey_opencl
22418 RGB colorspace color keying.
22419
22420 The filter accepts the following options:
22421
22422 @table @option
22423 @item color
22424 The color which will be replaced with transparency.
22425
22426 @item similarity
22427 Similarity percentage with the key color.
22428
22429 0.01 matches only the exact key color, while 1.0 matches everything.
22430
22431 @item blend
22432 Blend percentage.
22433
22434 0.0 makes pixels either fully transparent, or not transparent at all.
22435
22436 Higher values result in semi-transparent pixels, with a higher transparency
22437 the more similar the pixels color is to the key color.
22438 @end table
22439
22440 @subsection Examples
22441
22442 @itemize
22443 @item
22444 Make every semi-green pixel in the input transparent with some slight blending:
22445 @example
22446 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22447 @end example
22448 @end itemize
22449
22450 @section convolution_opencl
22451
22452 Apply convolution of 3x3, 5x5, 7x7 matrix.
22453
22454 The filter accepts the following options:
22455
22456 @table @option
22457 @item 0m
22458 @item 1m
22459 @item 2m
22460 @item 3m
22461 Set matrix for each plane.
22462 Matrix is sequence of 9, 25 or 49 signed numbers.
22463 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22464
22465 @item 0rdiv
22466 @item 1rdiv
22467 @item 2rdiv
22468 @item 3rdiv
22469 Set multiplier for calculated value for each plane.
22470 If unset or 0, it will be sum of all matrix elements.
22471 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22472
22473 @item 0bias
22474 @item 1bias
22475 @item 2bias
22476 @item 3bias
22477 Set bias for each plane. This value is added to the result of the multiplication.
22478 Useful for making the overall image brighter or darker.
22479 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22480
22481 @end table
22482
22483 @subsection Examples
22484
22485 @itemize
22486 @item
22487 Apply sharpen:
22488 @example
22489 -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
22490 @end example
22491
22492 @item
22493 Apply blur:
22494 @example
22495 -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
22496 @end example
22497
22498 @item
22499 Apply edge enhance:
22500 @example
22501 -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
22502 @end example
22503
22504 @item
22505 Apply edge detect:
22506 @example
22507 -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
22508 @end example
22509
22510 @item
22511 Apply laplacian edge detector which includes diagonals:
22512 @example
22513 -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
22514 @end example
22515
22516 @item
22517 Apply emboss:
22518 @example
22519 -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
22520 @end example
22521 @end itemize
22522
22523 @section erosion_opencl
22524
22525 Apply erosion effect to the video.
22526
22527 This filter replaces the pixel by the local(3x3) minimum.
22528
22529 It accepts the following options:
22530
22531 @table @option
22532 @item threshold0
22533 @item threshold1
22534 @item threshold2
22535 @item threshold3
22536 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22537 If @code{0}, plane will remain unchanged.
22538
22539 @item coordinates
22540 Flag which specifies the pixel to refer to.
22541 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22542
22543 Flags to local 3x3 coordinates region centered on @code{x}:
22544
22545     1 2 3
22546
22547     4 x 5
22548
22549     6 7 8
22550 @end table
22551
22552 @subsection Example
22553
22554 @itemize
22555 @item
22556 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.
22557 @example
22558 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22559 @end example
22560 @end itemize
22561
22562 @section deshake_opencl
22563 Feature-point based video stabilization filter.
22564
22565 The filter accepts the following options:
22566
22567 @table @option
22568 @item tripod
22569 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22570
22571 @item debug
22572 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22573
22574 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22575
22576 Viewing point matches in the output video is only supported for RGB input.
22577
22578 Defaults to @code{0}.
22579
22580 @item adaptive_crop
22581 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22582
22583 Defaults to @code{1}.
22584
22585 @item refine_features
22586 Whether or not feature points should be refined at a sub-pixel level.
22587
22588 This can be turned off for a slight performance gain at the cost of precision.
22589
22590 Defaults to @code{1}.
22591
22592 @item smooth_strength
22593 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22594
22595 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22596
22597 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22598
22599 Defaults to @code{0.0}.
22600
22601 @item smooth_window_multiplier
22602 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22603
22604 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22605
22606 Acceptable values range from @code{0.1} to @code{10.0}.
22607
22608 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22609 potentially improving smoothness, but also increase latency and memory usage.
22610
22611 Defaults to @code{2.0}.
22612
22613 @end table
22614
22615 @subsection Examples
22616
22617 @itemize
22618 @item
22619 Stabilize a video with a fixed, medium smoothing strength:
22620 @example
22621 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22622 @end example
22623
22624 @item
22625 Stabilize a video with debugging (both in console and in rendered video):
22626 @example
22627 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22628 @end example
22629 @end itemize
22630
22631 @section dilation_opencl
22632
22633 Apply dilation effect to the video.
22634
22635 This filter replaces the pixel by the local(3x3) maximum.
22636
22637 It accepts the following options:
22638
22639 @table @option
22640 @item threshold0
22641 @item threshold1
22642 @item threshold2
22643 @item threshold3
22644 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22645 If @code{0}, plane will remain unchanged.
22646
22647 @item coordinates
22648 Flag which specifies the pixel to refer to.
22649 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22650
22651 Flags to local 3x3 coordinates region centered on @code{x}:
22652
22653     1 2 3
22654
22655     4 x 5
22656
22657     6 7 8
22658 @end table
22659
22660 @subsection Example
22661
22662 @itemize
22663 @item
22664 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.
22665 @example
22666 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22667 @end example
22668 @end itemize
22669
22670 @section nlmeans_opencl
22671
22672 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22673
22674 @section overlay_opencl
22675
22676 Overlay one video on top of another.
22677
22678 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22679 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22680
22681 The filter accepts the following options:
22682
22683 @table @option
22684
22685 @item x
22686 Set the x coordinate of the overlaid video on the main video.
22687 Default value is @code{0}.
22688
22689 @item y
22690 Set the y coordinate of the overlaid video on the main video.
22691 Default value is @code{0}.
22692
22693 @end table
22694
22695 @subsection Examples
22696
22697 @itemize
22698 @item
22699 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22700 @example
22701 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22702 @end example
22703 @item
22704 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22705 @example
22706 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22707 @end example
22708
22709 @end itemize
22710
22711 @section pad_opencl
22712
22713 Add paddings to the input image, and place the original input at the
22714 provided @var{x}, @var{y} coordinates.
22715
22716 It accepts the following options:
22717
22718 @table @option
22719 @item width, w
22720 @item height, h
22721 Specify an expression for the size of the output image with the
22722 paddings added. If the value for @var{width} or @var{height} is 0, the
22723 corresponding input size is used for the output.
22724
22725 The @var{width} expression can reference the value set by the
22726 @var{height} expression, and vice versa.
22727
22728 The default value of @var{width} and @var{height} is 0.
22729
22730 @item x
22731 @item y
22732 Specify the offsets to place the input image at within the padded area,
22733 with respect to the top/left border of the output image.
22734
22735 The @var{x} expression can reference the value set by the @var{y}
22736 expression, and vice versa.
22737
22738 The default value of @var{x} and @var{y} is 0.
22739
22740 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22741 so the input image is centered on the padded area.
22742
22743 @item color
22744 Specify the color of the padded area. For the syntax of this option,
22745 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22746 manual,ffmpeg-utils}.
22747
22748 @item aspect
22749 Pad to an aspect instead to a resolution.
22750 @end table
22751
22752 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22753 options are expressions containing the following constants:
22754
22755 @table @option
22756 @item in_w
22757 @item in_h
22758 The input video width and height.
22759
22760 @item iw
22761 @item ih
22762 These are the same as @var{in_w} and @var{in_h}.
22763
22764 @item out_w
22765 @item out_h
22766 The output width and height (the size of the padded area), as
22767 specified by the @var{width} and @var{height} expressions.
22768
22769 @item ow
22770 @item oh
22771 These are the same as @var{out_w} and @var{out_h}.
22772
22773 @item x
22774 @item y
22775 The x and y offsets as specified by the @var{x} and @var{y}
22776 expressions, or NAN if not yet specified.
22777
22778 @item a
22779 same as @var{iw} / @var{ih}
22780
22781 @item sar
22782 input sample aspect ratio
22783
22784 @item dar
22785 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22786 @end table
22787
22788 @section prewitt_opencl
22789
22790 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22791
22792 The filter accepts the following option:
22793
22794 @table @option
22795 @item planes
22796 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22797
22798 @item scale
22799 Set value which will be multiplied with filtered result.
22800 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22801
22802 @item delta
22803 Set value which will be added to filtered result.
22804 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22805 @end table
22806
22807 @subsection Example
22808
22809 @itemize
22810 @item
22811 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22812 @example
22813 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22814 @end example
22815 @end itemize
22816
22817 @anchor{program_opencl}
22818 @section program_opencl
22819
22820 Filter video using an OpenCL program.
22821
22822 @table @option
22823
22824 @item source
22825 OpenCL program source file.
22826
22827 @item kernel
22828 Kernel name in program.
22829
22830 @item inputs
22831 Number of inputs to the filter.  Defaults to 1.
22832
22833 @item size, s
22834 Size of output frames.  Defaults to the same as the first input.
22835
22836 @end table
22837
22838 The @code{program_opencl} filter also supports the @ref{framesync} options.
22839
22840 The program source file must contain a kernel function with the given name,
22841 which will be run once for each plane of the output.  Each run on a plane
22842 gets enqueued as a separate 2D global NDRange with one work-item for each
22843 pixel to be generated.  The global ID offset for each work-item is therefore
22844 the coordinates of a pixel in the destination image.
22845
22846 The kernel function needs to take the following arguments:
22847 @itemize
22848 @item
22849 Destination image, @var{__write_only image2d_t}.
22850
22851 This image will become the output; the kernel should write all of it.
22852 @item
22853 Frame index, @var{unsigned int}.
22854
22855 This is a counter starting from zero and increasing by one for each frame.
22856 @item
22857 Source images, @var{__read_only image2d_t}.
22858
22859 These are the most recent images on each input.  The kernel may read from
22860 them to generate the output, but they can't be written to.
22861 @end itemize
22862
22863 Example programs:
22864
22865 @itemize
22866 @item
22867 Copy the input to the output (output must be the same size as the input).
22868 @verbatim
22869 __kernel void copy(__write_only image2d_t destination,
22870                    unsigned int index,
22871                    __read_only  image2d_t source)
22872 {
22873     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22874
22875     int2 location = (int2)(get_global_id(0), get_global_id(1));
22876
22877     float4 value = read_imagef(source, sampler, location);
22878
22879     write_imagef(destination, location, value);
22880 }
22881 @end verbatim
22882
22883 @item
22884 Apply a simple transformation, rotating the input by an amount increasing
22885 with the index counter.  Pixel values are linearly interpolated by the
22886 sampler, and the output need not have the same dimensions as the input.
22887 @verbatim
22888 __kernel void rotate_image(__write_only image2d_t dst,
22889                            unsigned int index,
22890                            __read_only  image2d_t src)
22891 {
22892     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22893                                CLK_FILTER_LINEAR);
22894
22895     float angle = (float)index / 100.0f;
22896
22897     float2 dst_dim = convert_float2(get_image_dim(dst));
22898     float2 src_dim = convert_float2(get_image_dim(src));
22899
22900     float2 dst_cen = dst_dim / 2.0f;
22901     float2 src_cen = src_dim / 2.0f;
22902
22903     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22904
22905     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22906     float2 src_pos = {
22907         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22908         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22909     };
22910     src_pos = src_pos * src_dim / dst_dim;
22911
22912     float2 src_loc = src_pos + src_cen;
22913
22914     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22915         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22916         write_imagef(dst, dst_loc, 0.5f);
22917     else
22918         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22919 }
22920 @end verbatim
22921
22922 @item
22923 Blend two inputs together, with the amount of each input used varying
22924 with the index counter.
22925 @verbatim
22926 __kernel void blend_images(__write_only image2d_t dst,
22927                            unsigned int index,
22928                            __read_only  image2d_t src1,
22929                            __read_only  image2d_t src2)
22930 {
22931     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22932                                CLK_FILTER_LINEAR);
22933
22934     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22935
22936     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22937     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22938     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22939
22940     float4 val1 = read_imagef(src1, sampler, src1_loc);
22941     float4 val2 = read_imagef(src2, sampler, src2_loc);
22942
22943     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22944 }
22945 @end verbatim
22946
22947 @end itemize
22948
22949 @section roberts_opencl
22950 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22951
22952 The filter accepts the following option:
22953
22954 @table @option
22955 @item planes
22956 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22957
22958 @item scale
22959 Set value which will be multiplied with filtered result.
22960 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22961
22962 @item delta
22963 Set value which will be added to filtered result.
22964 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22965 @end table
22966
22967 @subsection Example
22968
22969 @itemize
22970 @item
22971 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22972 @example
22973 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22974 @end example
22975 @end itemize
22976
22977 @section sobel_opencl
22978
22979 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22980
22981 The filter accepts the following option:
22982
22983 @table @option
22984 @item planes
22985 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22986
22987 @item scale
22988 Set value which will be multiplied with filtered result.
22989 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22990
22991 @item delta
22992 Set value which will be added to filtered result.
22993 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22994 @end table
22995
22996 @subsection Example
22997
22998 @itemize
22999 @item
23000 Apply sobel operator with scale set to 2 and delta set to 10
23001 @example
23002 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
23003 @end example
23004 @end itemize
23005
23006 @section tonemap_opencl
23007
23008 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
23009
23010 It accepts the following parameters:
23011
23012 @table @option
23013 @item tonemap
23014 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
23015
23016 @item param
23017 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
23018
23019 @item desat
23020 Apply desaturation for highlights that exceed this level of brightness. The
23021 higher the parameter, the more color information will be preserved. This
23022 setting helps prevent unnaturally blown-out colors for super-highlights, by
23023 (smoothly) turning into white instead. This makes images feel more natural,
23024 at the cost of reducing information about out-of-range colors.
23025
23026 The default value is 0.5, and the algorithm here is a little different from
23027 the cpu version tonemap currently. A setting of 0.0 disables this option.
23028
23029 @item threshold
23030 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
23031 is used to detect whether the scene has changed or not. If the distance between
23032 the current frame average brightness and the current running average exceeds
23033 a threshold value, we would re-calculate scene average and peak brightness.
23034 The default value is 0.2.
23035
23036 @item format
23037 Specify the output pixel format.
23038
23039 Currently supported formats are:
23040 @table @var
23041 @item p010
23042 @item nv12
23043 @end table
23044
23045 @item range, r
23046 Set the output color range.
23047
23048 Possible values are:
23049 @table @var
23050 @item tv/mpeg
23051 @item pc/jpeg
23052 @end table
23053
23054 Default is same as input.
23055
23056 @item primaries, p
23057 Set the output color primaries.
23058
23059 Possible values are:
23060 @table @var
23061 @item bt709
23062 @item bt2020
23063 @end table
23064
23065 Default is same as input.
23066
23067 @item transfer, t
23068 Set the output transfer characteristics.
23069
23070 Possible values are:
23071 @table @var
23072 @item bt709
23073 @item bt2020
23074 @end table
23075
23076 Default is bt709.
23077
23078 @item matrix, m
23079 Set the output colorspace matrix.
23080
23081 Possible value are:
23082 @table @var
23083 @item bt709
23084 @item bt2020
23085 @end table
23086
23087 Default is same as input.
23088
23089 @end table
23090
23091 @subsection Example
23092
23093 @itemize
23094 @item
23095 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
23096 @example
23097 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
23098 @end example
23099 @end itemize
23100
23101 @section unsharp_opencl
23102
23103 Sharpen or blur the input video.
23104
23105 It accepts the following parameters:
23106
23107 @table @option
23108 @item luma_msize_x, lx
23109 Set the luma matrix horizontal size.
23110 Range is @code{[1, 23]} and default value is @code{5}.
23111
23112 @item luma_msize_y, ly
23113 Set the luma matrix vertical size.
23114 Range is @code{[1, 23]} and default value is @code{5}.
23115
23116 @item luma_amount, la
23117 Set the luma effect strength.
23118 Range is @code{[-10, 10]} and default value is @code{1.0}.
23119
23120 Negative values will blur the input video, while positive values will
23121 sharpen it, a value of zero will disable the effect.
23122
23123 @item chroma_msize_x, cx
23124 Set the chroma matrix horizontal size.
23125 Range is @code{[1, 23]} and default value is @code{5}.
23126
23127 @item chroma_msize_y, cy
23128 Set the chroma matrix vertical size.
23129 Range is @code{[1, 23]} and default value is @code{5}.
23130
23131 @item chroma_amount, ca
23132 Set the chroma effect strength.
23133 Range is @code{[-10, 10]} and default value is @code{0.0}.
23134
23135 Negative values will blur the input video, while positive values will
23136 sharpen it, a value of zero will disable the effect.
23137
23138 @end table
23139
23140 All parameters are optional and default to the equivalent of the
23141 string '5:5:1.0:5:5:0.0'.
23142
23143 @subsection Examples
23144
23145 @itemize
23146 @item
23147 Apply strong luma sharpen effect:
23148 @example
23149 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
23150 @end example
23151
23152 @item
23153 Apply a strong blur of both luma and chroma parameters:
23154 @example
23155 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
23156 @end example
23157 @end itemize
23158
23159 @section xfade_opencl
23160
23161 Cross fade two videos with custom transition effect by using OpenCL.
23162
23163 It accepts the following options:
23164
23165 @table @option
23166 @item transition
23167 Set one of possible transition effects.
23168
23169 @table @option
23170 @item custom
23171 Select custom transition effect, the actual transition description
23172 will be picked from source and kernel options.
23173
23174 @item fade
23175 @item wipeleft
23176 @item wiperight
23177 @item wipeup
23178 @item wipedown
23179 @item slideleft
23180 @item slideright
23181 @item slideup
23182 @item slidedown
23183
23184 Default transition is fade.
23185 @end table
23186
23187 @item source
23188 OpenCL program source file for custom transition.
23189
23190 @item kernel
23191 Set name of kernel to use for custom transition from program source file.
23192
23193 @item duration
23194 Set duration of video transition.
23195
23196 @item offset
23197 Set time of start of transition relative to first video.
23198 @end table
23199
23200 The program source file must contain a kernel function with the given name,
23201 which will be run once for each plane of the output.  Each run on a plane
23202 gets enqueued as a separate 2D global NDRange with one work-item for each
23203 pixel to be generated.  The global ID offset for each work-item is therefore
23204 the coordinates of a pixel in the destination image.
23205
23206 The kernel function needs to take the following arguments:
23207 @itemize
23208 @item
23209 Destination image, @var{__write_only image2d_t}.
23210
23211 This image will become the output; the kernel should write all of it.
23212
23213 @item
23214 First Source image, @var{__read_only image2d_t}.
23215 Second Source image, @var{__read_only image2d_t}.
23216
23217 These are the most recent images on each input.  The kernel may read from
23218 them to generate the output, but they can't be written to.
23219
23220 @item
23221 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
23222 @end itemize
23223
23224 Example programs:
23225
23226 @itemize
23227 @item
23228 Apply dots curtain transition effect:
23229 @verbatim
23230 __kernel void blend_images(__write_only image2d_t dst,
23231                            __read_only  image2d_t src1,
23232                            __read_only  image2d_t src2,
23233                            float progress)
23234 {
23235     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23236                                CLK_FILTER_LINEAR);
23237     int2  p = (int2)(get_global_id(0), get_global_id(1));
23238     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23239     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23240     rp = rp / dim;
23241
23242     float2 dots = (float2)(20.0, 20.0);
23243     float2 center = (float2)(0,0);
23244     float2 unused;
23245
23246     float4 val1 = read_imagef(src1, sampler, p);
23247     float4 val2 = read_imagef(src2, sampler, p);
23248     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23249
23250     write_imagef(dst, p, next ? val1 : val2);
23251 }
23252 @end verbatim
23253
23254 @end itemize
23255
23256 @c man end OPENCL VIDEO FILTERS
23257
23258 @chapter VAAPI Video Filters
23259 @c man begin VAAPI VIDEO FILTERS
23260
23261 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23262
23263 To enable compilation of these filters you need to configure FFmpeg with
23264 @code{--enable-vaapi}.
23265
23266 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}
23267
23268 @section tonemap_vaapi
23269
23270 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23271 It maps the dynamic range of HDR10 content to the SDR content.
23272 It currently only accepts HDR10 as input.
23273
23274 It accepts the following parameters:
23275
23276 @table @option
23277 @item format
23278 Specify the output pixel format.
23279
23280 Currently supported formats are:
23281 @table @var
23282 @item p010
23283 @item nv12
23284 @end table
23285
23286 Default is nv12.
23287
23288 @item primaries, p
23289 Set the output color primaries.
23290
23291 Default is same as input.
23292
23293 @item transfer, t
23294 Set the output transfer characteristics.
23295
23296 Default is bt709.
23297
23298 @item matrix, m
23299 Set the output colorspace matrix.
23300
23301 Default is same as input.
23302
23303 @end table
23304
23305 @subsection Example
23306
23307 @itemize
23308 @item
23309 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23310 @example
23311 tonemap_vaapi=format=p010:t=bt2020-10
23312 @end example
23313 @end itemize
23314
23315 @c man end VAAPI VIDEO FILTERS
23316
23317 @chapter Video Sources
23318 @c man begin VIDEO SOURCES
23319
23320 Below is a description of the currently available video sources.
23321
23322 @section buffer
23323
23324 Buffer video frames, and make them available to the filter chain.
23325
23326 This source is mainly intended for a programmatic use, in particular
23327 through the interface defined in @file{libavfilter/buffersrc.h}.
23328
23329 It accepts the following parameters:
23330
23331 @table @option
23332
23333 @item video_size
23334 Specify the size (width and height) of the buffered video frames. For the
23335 syntax of this option, check the
23336 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23337
23338 @item width
23339 The input video width.
23340
23341 @item height
23342 The input video height.
23343
23344 @item pix_fmt
23345 A string representing the pixel format of the buffered video frames.
23346 It may be a number corresponding to a pixel format, or a pixel format
23347 name.
23348
23349 @item time_base
23350 Specify the timebase assumed by the timestamps of the buffered frames.
23351
23352 @item frame_rate
23353 Specify the frame rate expected for the video stream.
23354
23355 @item pixel_aspect, sar
23356 The sample (pixel) aspect ratio of the input video.
23357
23358 @item sws_param
23359 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23360 to the filtergraph description to specify swscale flags for automatically
23361 inserted scalers. See @ref{Filtergraph syntax}.
23362
23363 @item hw_frames_ctx
23364 When using a hardware pixel format, this should be a reference to an
23365 AVHWFramesContext describing input frames.
23366 @end table
23367
23368 For example:
23369 @example
23370 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23371 @end example
23372
23373 will instruct the source to accept video frames with size 320x240 and
23374 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23375 square pixels (1:1 sample aspect ratio).
23376 Since the pixel format with name "yuv410p" corresponds to the number 6
23377 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23378 this example corresponds to:
23379 @example
23380 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23381 @end example
23382
23383 Alternatively, the options can be specified as a flat string, but this
23384 syntax is deprecated:
23385
23386 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23387
23388 @section cellauto
23389
23390 Create a pattern generated by an elementary cellular automaton.
23391
23392 The initial state of the cellular automaton can be defined through the
23393 @option{filename} and @option{pattern} options. If such options are
23394 not specified an initial state is created randomly.
23395
23396 At each new frame a new row in the video is filled with the result of
23397 the cellular automaton next generation. The behavior when the whole
23398 frame is filled is defined by the @option{scroll} option.
23399
23400 This source accepts the following options:
23401
23402 @table @option
23403 @item filename, f
23404 Read the initial cellular automaton state, i.e. the starting row, from
23405 the specified file.
23406 In the file, each non-whitespace character is considered an alive
23407 cell, a newline will terminate the row, and further characters in the
23408 file will be ignored.
23409
23410 @item pattern, p
23411 Read the initial cellular automaton state, i.e. the starting row, from
23412 the specified string.
23413
23414 Each non-whitespace character in the string is considered an alive
23415 cell, a newline will terminate the row, and further characters in the
23416 string will be ignored.
23417
23418 @item rate, r
23419 Set the video rate, that is the number of frames generated per second.
23420 Default is 25.
23421
23422 @item random_fill_ratio, ratio
23423 Set the random fill ratio for the initial cellular automaton row. It
23424 is a floating point number value ranging from 0 to 1, defaults to
23425 1/PHI.
23426
23427 This option is ignored when a file or a pattern is specified.
23428
23429 @item random_seed, seed
23430 Set the seed for filling randomly the initial row, must be an integer
23431 included between 0 and UINT32_MAX. If not specified, or if explicitly
23432 set to -1, the filter will try to use a good random seed on a best
23433 effort basis.
23434
23435 @item rule
23436 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23437 Default value is 110.
23438
23439 @item size, s
23440 Set the size of the output video. For the syntax of this option, check the
23441 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23442
23443 If @option{filename} or @option{pattern} is specified, the size is set
23444 by default to the width of the specified initial state row, and the
23445 height is set to @var{width} * PHI.
23446
23447 If @option{size} is set, it must contain the width of the specified
23448 pattern string, and the specified pattern will be centered in the
23449 larger row.
23450
23451 If a filename or a pattern string is not specified, the size value
23452 defaults to "320x518" (used for a randomly generated initial state).
23453
23454 @item scroll
23455 If set to 1, scroll the output upward when all the rows in the output
23456 have been already filled. If set to 0, the new generated row will be
23457 written over the top row just after the bottom row is filled.
23458 Defaults to 1.
23459
23460 @item start_full, full
23461 If set to 1, completely fill the output with generated rows before
23462 outputting the first frame.
23463 This is the default behavior, for disabling set the value to 0.
23464
23465 @item stitch
23466 If set to 1, stitch the left and right row edges together.
23467 This is the default behavior, for disabling set the value to 0.
23468 @end table
23469
23470 @subsection Examples
23471
23472 @itemize
23473 @item
23474 Read the initial state from @file{pattern}, and specify an output of
23475 size 200x400.
23476 @example
23477 cellauto=f=pattern:s=200x400
23478 @end example
23479
23480 @item
23481 Generate a random initial row with a width of 200 cells, with a fill
23482 ratio of 2/3:
23483 @example
23484 cellauto=ratio=2/3:s=200x200
23485 @end example
23486
23487 @item
23488 Create a pattern generated by rule 18 starting by a single alive cell
23489 centered on an initial row with width 100:
23490 @example
23491 cellauto=p=@@:s=100x400:full=0:rule=18
23492 @end example
23493
23494 @item
23495 Specify a more elaborated initial pattern:
23496 @example
23497 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23498 @end example
23499
23500 @end itemize
23501
23502 @anchor{coreimagesrc}
23503 @section coreimagesrc
23504 Video source generated on GPU using Apple's CoreImage API on OSX.
23505
23506 This video source is a specialized version of the @ref{coreimage} video filter.
23507 Use a core image generator at the beginning of the applied filterchain to
23508 generate the content.
23509
23510 The coreimagesrc video source accepts the following options:
23511 @table @option
23512 @item list_generators
23513 List all available generators along with all their respective options as well as
23514 possible minimum and maximum values along with the default values.
23515 @example
23516 list_generators=true
23517 @end example
23518
23519 @item size, s
23520 Specify the size of the sourced video. For the syntax of this option, check the
23521 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23522 The default value is @code{320x240}.
23523
23524 @item rate, r
23525 Specify the frame rate of the sourced video, as the number of frames
23526 generated per second. It has to be a string in the format
23527 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23528 number or a valid video frame rate abbreviation. The default value is
23529 "25".
23530
23531 @item sar
23532 Set the sample aspect ratio of the sourced video.
23533
23534 @item duration, d
23535 Set the duration of the sourced video. See
23536 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23537 for the accepted syntax.
23538
23539 If not specified, or the expressed duration is negative, the video is
23540 supposed to be generated forever.
23541 @end table
23542
23543 Additionally, all options of the @ref{coreimage} video filter are accepted.
23544 A complete filterchain can be used for further processing of the
23545 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23546 and examples for details.
23547
23548 @subsection Examples
23549
23550 @itemize
23551
23552 @item
23553 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23554 given as complete and escaped command-line for Apple's standard bash shell:
23555 @example
23556 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23557 @end example
23558 This example is equivalent to the QRCode example of @ref{coreimage} without the
23559 need for a nullsrc video source.
23560 @end itemize
23561
23562
23563 @section gradients
23564 Generate several gradients.
23565
23566 @table @option
23567 @item size, s
23568 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23569 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23570
23571 @item rate, r
23572 Set frame rate, expressed as number of frames per second. Default
23573 value is "25".
23574
23575 @item c0, c1, c2, c3, c4, c5, c6, c7
23576 Set 8 colors. Default values for colors is to pick random one.
23577
23578 @item x0, y0, y0, y1
23579 Set gradient line source and destination points. If negative or out of range, random ones
23580 are picked.
23581
23582 @item nb_colors, n
23583 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23584
23585 @item seed
23586 Set seed for picking gradient line points.
23587
23588 @item duration, d
23589 Set the duration of the sourced video. See
23590 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23591 for the accepted syntax.
23592
23593 If not specified, or the expressed duration is negative, the video is
23594 supposed to be generated forever.
23595
23596 @item speed
23597 Set speed of gradients rotation.
23598 @end table
23599
23600
23601 @section mandelbrot
23602
23603 Generate a Mandelbrot set fractal, and progressively zoom towards the
23604 point specified with @var{start_x} and @var{start_y}.
23605
23606 This source accepts the following options:
23607
23608 @table @option
23609
23610 @item end_pts
23611 Set the terminal pts value. Default value is 400.
23612
23613 @item end_scale
23614 Set the terminal scale value.
23615 Must be a floating point value. Default value is 0.3.
23616
23617 @item inner
23618 Set the inner coloring mode, that is the algorithm used to draw the
23619 Mandelbrot fractal internal region.
23620
23621 It shall assume one of the following values:
23622 @table @option
23623 @item black
23624 Set black mode.
23625 @item convergence
23626 Show time until convergence.
23627 @item mincol
23628 Set color based on point closest to the origin of the iterations.
23629 @item period
23630 Set period mode.
23631 @end table
23632
23633 Default value is @var{mincol}.
23634
23635 @item bailout
23636 Set the bailout value. Default value is 10.0.
23637
23638 @item maxiter
23639 Set the maximum of iterations performed by the rendering
23640 algorithm. Default value is 7189.
23641
23642 @item outer
23643 Set outer coloring mode.
23644 It shall assume one of following values:
23645 @table @option
23646 @item iteration_count
23647 Set iteration count mode.
23648 @item normalized_iteration_count
23649 set normalized iteration count mode.
23650 @end table
23651 Default value is @var{normalized_iteration_count}.
23652
23653 @item rate, r
23654 Set frame rate, expressed as number of frames per second. Default
23655 value is "25".
23656
23657 @item size, s
23658 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23659 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23660
23661 @item start_scale
23662 Set the initial scale value. Default value is 3.0.
23663
23664 @item start_x
23665 Set the initial x position. Must be a floating point value between
23666 -100 and 100. Default value is -0.743643887037158704752191506114774.
23667
23668 @item start_y
23669 Set the initial y position. Must be a floating point value between
23670 -100 and 100. Default value is -0.131825904205311970493132056385139.
23671 @end table
23672
23673 @section mptestsrc
23674
23675 Generate various test patterns, as generated by the MPlayer test filter.
23676
23677 The size of the generated video is fixed, and is 256x256.
23678 This source is useful in particular for testing encoding features.
23679
23680 This source accepts the following options:
23681
23682 @table @option
23683
23684 @item rate, r
23685 Specify the frame rate of the sourced video, as the number of frames
23686 generated per second. It has to be a string in the format
23687 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23688 number or a valid video frame rate abbreviation. The default value is
23689 "25".
23690
23691 @item duration, d
23692 Set the duration of the sourced video. See
23693 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23694 for the accepted syntax.
23695
23696 If not specified, or the expressed duration is negative, the video is
23697 supposed to be generated forever.
23698
23699 @item test, t
23700
23701 Set the number or the name of the test to perform. Supported tests are:
23702 @table @option
23703 @item dc_luma
23704 @item dc_chroma
23705 @item freq_luma
23706 @item freq_chroma
23707 @item amp_luma
23708 @item amp_chroma
23709 @item cbp
23710 @item mv
23711 @item ring1
23712 @item ring2
23713 @item all
23714
23715 @item max_frames, m
23716 Set the maximum number of frames generated for each test, default value is 30.
23717
23718 @end table
23719
23720 Default value is "all", which will cycle through the list of all tests.
23721 @end table
23722
23723 Some examples:
23724 @example
23725 mptestsrc=t=dc_luma
23726 @end example
23727
23728 will generate a "dc_luma" test pattern.
23729
23730 @section frei0r_src
23731
23732 Provide a frei0r source.
23733
23734 To enable compilation of this filter you need to install the frei0r
23735 header and configure FFmpeg with @code{--enable-frei0r}.
23736
23737 This source accepts the following parameters:
23738
23739 @table @option
23740
23741 @item size
23742 The size of the video to generate. For the syntax of this option, check the
23743 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23744
23745 @item framerate
23746 The framerate of the generated video. It may be a string of the form
23747 @var{num}/@var{den} or a frame rate abbreviation.
23748
23749 @item filter_name
23750 The name to the frei0r source to load. For more information regarding frei0r and
23751 how to set the parameters, read the @ref{frei0r} section in the video filters
23752 documentation.
23753
23754 @item filter_params
23755 A '|'-separated list of parameters to pass to the frei0r source.
23756
23757 @end table
23758
23759 For example, to generate a frei0r partik0l source with size 200x200
23760 and frame rate 10 which is overlaid on the overlay filter main input:
23761 @example
23762 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23763 @end example
23764
23765 @section life
23766
23767 Generate a life pattern.
23768
23769 This source is based on a generalization of John Conway's life game.
23770
23771 The sourced input represents a life grid, each pixel represents a cell
23772 which can be in one of two possible states, alive or dead. Every cell
23773 interacts with its eight neighbours, which are the cells that are
23774 horizontally, vertically, or diagonally adjacent.
23775
23776 At each interaction the grid evolves according to the adopted rule,
23777 which specifies the number of neighbor alive cells which will make a
23778 cell stay alive or born. The @option{rule} option allows one to specify
23779 the rule to adopt.
23780
23781 This source accepts the following options:
23782
23783 @table @option
23784 @item filename, f
23785 Set the file from which to read the initial grid state. In the file,
23786 each non-whitespace character is considered an alive cell, and newline
23787 is used to delimit the end of each row.
23788
23789 If this option is not specified, the initial grid is generated
23790 randomly.
23791
23792 @item rate, r
23793 Set the video rate, that is the number of frames generated per second.
23794 Default is 25.
23795
23796 @item random_fill_ratio, ratio
23797 Set the random fill ratio for the initial random grid. It is a
23798 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23799 It is ignored when a file is specified.
23800
23801 @item random_seed, seed
23802 Set the seed for filling the initial random grid, must be an integer
23803 included between 0 and UINT32_MAX. If not specified, or if explicitly
23804 set to -1, the filter will try to use a good random seed on a best
23805 effort basis.
23806
23807 @item rule
23808 Set the life rule.
23809
23810 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23811 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23812 @var{NS} specifies the number of alive neighbor cells which make a
23813 live cell stay alive, and @var{NB} the number of alive neighbor cells
23814 which make a dead cell to become alive (i.e. to "born").
23815 "s" and "b" can be used in place of "S" and "B", respectively.
23816
23817 Alternatively a rule can be specified by an 18-bits integer. The 9
23818 high order bits are used to encode the next cell state if it is alive
23819 for each number of neighbor alive cells, the low order bits specify
23820 the rule for "borning" new cells. Higher order bits encode for an
23821 higher number of neighbor cells.
23822 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23823 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23824
23825 Default value is "S23/B3", which is the original Conway's game of life
23826 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23827 cells, and will born a new cell if there are three alive cells around
23828 a dead cell.
23829
23830 @item size, s
23831 Set the size of the output video. For the syntax of this option, check the
23832 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23833
23834 If @option{filename} is specified, the size is set by default to the
23835 same size of the input file. If @option{size} is set, it must contain
23836 the size specified in the input file, and the initial grid defined in
23837 that file is centered in the larger resulting area.
23838
23839 If a filename is not specified, the size value defaults to "320x240"
23840 (used for a randomly generated initial grid).
23841
23842 @item stitch
23843 If set to 1, stitch the left and right grid edges together, and the
23844 top and bottom edges also. Defaults to 1.
23845
23846 @item mold
23847 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23848 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23849 value from 0 to 255.
23850
23851 @item life_color
23852 Set the color of living (or new born) cells.
23853
23854 @item death_color
23855 Set the color of dead cells. If @option{mold} is set, this is the first color
23856 used to represent a dead cell.
23857
23858 @item mold_color
23859 Set mold color, for definitely dead and moldy cells.
23860
23861 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23862 ffmpeg-utils manual,ffmpeg-utils}.
23863 @end table
23864
23865 @subsection Examples
23866
23867 @itemize
23868 @item
23869 Read a grid from @file{pattern}, and center it on a grid of size
23870 300x300 pixels:
23871 @example
23872 life=f=pattern:s=300x300
23873 @end example
23874
23875 @item
23876 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23877 @example
23878 life=ratio=2/3:s=200x200
23879 @end example
23880
23881 @item
23882 Specify a custom rule for evolving a randomly generated grid:
23883 @example
23884 life=rule=S14/B34
23885 @end example
23886
23887 @item
23888 Full example with slow death effect (mold) using @command{ffplay}:
23889 @example
23890 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23891 @end example
23892 @end itemize
23893
23894 @anchor{allrgb}
23895 @anchor{allyuv}
23896 @anchor{color}
23897 @anchor{haldclutsrc}
23898 @anchor{nullsrc}
23899 @anchor{pal75bars}
23900 @anchor{pal100bars}
23901 @anchor{rgbtestsrc}
23902 @anchor{smptebars}
23903 @anchor{smptehdbars}
23904 @anchor{testsrc}
23905 @anchor{testsrc2}
23906 @anchor{yuvtestsrc}
23907 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23908
23909 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23910
23911 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23912
23913 The @code{color} source provides an uniformly colored input.
23914
23915 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23916 @ref{haldclut} filter.
23917
23918 The @code{nullsrc} source returns unprocessed video frames. It is
23919 mainly useful to be employed in analysis / debugging tools, or as the
23920 source for filters which ignore the input data.
23921
23922 The @code{pal75bars} source generates a color bars pattern, based on
23923 EBU PAL recommendations with 75% color levels.
23924
23925 The @code{pal100bars} source generates a color bars pattern, based on
23926 EBU PAL recommendations with 100% color levels.
23927
23928 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23929 detecting RGB vs BGR issues. You should see a red, green and blue
23930 stripe from top to bottom.
23931
23932 The @code{smptebars} source generates a color bars pattern, based on
23933 the SMPTE Engineering Guideline EG 1-1990.
23934
23935 The @code{smptehdbars} source generates a color bars pattern, based on
23936 the SMPTE RP 219-2002.
23937
23938 The @code{testsrc} source generates a test video pattern, showing a
23939 color pattern, a scrolling gradient and a timestamp. This is mainly
23940 intended for testing purposes.
23941
23942 The @code{testsrc2} source is similar to testsrc, but supports more
23943 pixel formats instead of just @code{rgb24}. This allows using it as an
23944 input for other tests without requiring a format conversion.
23945
23946 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23947 see a y, cb and cr stripe from top to bottom.
23948
23949 The sources accept the following parameters:
23950
23951 @table @option
23952
23953 @item level
23954 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23955 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23956 pixels to be used as identity matrix for 3D lookup tables. Each component is
23957 coded on a @code{1/(N*N)} scale.
23958
23959 @item color, c
23960 Specify the color of the source, only available in the @code{color}
23961 source. For the syntax of this option, check the
23962 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23963
23964 @item size, s
23965 Specify the size of the sourced video. For the syntax of this option, check the
23966 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23967 The default value is @code{320x240}.
23968
23969 This option is not available with the @code{allrgb}, @code{allyuv}, and
23970 @code{haldclutsrc} filters.
23971
23972 @item rate, r
23973 Specify the frame rate of the sourced video, as the number of frames
23974 generated per second. It has to be a string in the format
23975 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23976 number or a valid video frame rate abbreviation. The default value is
23977 "25".
23978
23979 @item duration, d
23980 Set the duration of the sourced video. See
23981 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23982 for the accepted syntax.
23983
23984 If not specified, or the expressed duration is negative, the video is
23985 supposed to be generated forever.
23986
23987 Since the frame rate is used as time base, all frames including the last one
23988 will have their full duration. If the specified duration is not a multiple
23989 of the frame duration, it will be rounded up.
23990
23991 @item sar
23992 Set the sample aspect ratio of the sourced video.
23993
23994 @item alpha
23995 Specify the alpha (opacity) of the background, only available in the
23996 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23997 255 (fully opaque, the default).
23998
23999 @item decimals, n
24000 Set the number of decimals to show in the timestamp, only available in the
24001 @code{testsrc} source.
24002
24003 The displayed timestamp value will correspond to the original
24004 timestamp value multiplied by the power of 10 of the specified
24005 value. Default value is 0.
24006 @end table
24007
24008 @subsection Examples
24009
24010 @itemize
24011 @item
24012 Generate a video with a duration of 5.3 seconds, with size
24013 176x144 and a frame rate of 10 frames per second:
24014 @example
24015 testsrc=duration=5.3:size=qcif:rate=10
24016 @end example
24017
24018 @item
24019 The following graph description will generate a red source
24020 with an opacity of 0.2, with size "qcif" and a frame rate of 10
24021 frames per second:
24022 @example
24023 color=c=red@@0.2:s=qcif:r=10
24024 @end example
24025
24026 @item
24027 If the input content is to be ignored, @code{nullsrc} can be used. The
24028 following command generates noise in the luminance plane by employing
24029 the @code{geq} filter:
24030 @example
24031 nullsrc=s=256x256, geq=random(1)*255:128:128
24032 @end example
24033 @end itemize
24034
24035 @subsection Commands
24036
24037 The @code{color} source supports the following commands:
24038
24039 @table @option
24040 @item c, color
24041 Set the color of the created image. Accepts the same syntax of the
24042 corresponding @option{color} option.
24043 @end table
24044
24045 @section openclsrc
24046
24047 Generate video using an OpenCL program.
24048
24049 @table @option
24050
24051 @item source
24052 OpenCL program source file.
24053
24054 @item kernel
24055 Kernel name in program.
24056
24057 @item size, s
24058 Size of frames to generate.  This must be set.
24059
24060 @item format
24061 Pixel format to use for the generated frames.  This must be set.
24062
24063 @item rate, r
24064 Number of frames generated every second.  Default value is '25'.
24065
24066 @end table
24067
24068 For details of how the program loading works, see the @ref{program_opencl}
24069 filter.
24070
24071 Example programs:
24072
24073 @itemize
24074 @item
24075 Generate a colour ramp by setting pixel values from the position of the pixel
24076 in the output image.  (Note that this will work with all pixel formats, but
24077 the generated output will not be the same.)
24078 @verbatim
24079 __kernel void ramp(__write_only image2d_t dst,
24080                    unsigned int index)
24081 {
24082     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24083
24084     float4 val;
24085     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
24086
24087     write_imagef(dst, loc, val);
24088 }
24089 @end verbatim
24090
24091 @item
24092 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
24093 @verbatim
24094 __kernel void sierpinski_carpet(__write_only image2d_t dst,
24095                                 unsigned int index)
24096 {
24097     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24098
24099     float4 value = 0.0f;
24100     int x = loc.x + index;
24101     int y = loc.y + index;
24102     while (x > 0 || y > 0) {
24103         if (x % 3 == 1 && y % 3 == 1) {
24104             value = 1.0f;
24105             break;
24106         }
24107         x /= 3;
24108         y /= 3;
24109     }
24110
24111     write_imagef(dst, loc, value);
24112 }
24113 @end verbatim
24114
24115 @end itemize
24116
24117 @section sierpinski
24118
24119 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
24120
24121 This source accepts the following options:
24122
24123 @table @option
24124 @item size, s
24125 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
24126 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
24127
24128 @item rate, r
24129 Set frame rate, expressed as number of frames per second. Default
24130 value is "25".
24131
24132 @item seed
24133 Set seed which is used for random panning.
24134
24135 @item jump
24136 Set max jump for single pan destination. Allowed range is from 1 to 10000.
24137
24138 @item type
24139 Set fractal type, can be default @code{carpet} or @code{triangle}.
24140 @end table
24141
24142 @c man end VIDEO SOURCES
24143
24144 @chapter Video Sinks
24145 @c man begin VIDEO SINKS
24146
24147 Below is a description of the currently available video sinks.
24148
24149 @section buffersink
24150
24151 Buffer video frames, and make them available to the end of the filter
24152 graph.
24153
24154 This sink is mainly intended for programmatic use, in particular
24155 through the interface defined in @file{libavfilter/buffersink.h}
24156 or the options system.
24157
24158 It accepts a pointer to an AVBufferSinkContext structure, which
24159 defines the incoming buffers' formats, to be passed as the opaque
24160 parameter to @code{avfilter_init_filter} for initialization.
24161
24162 @section nullsink
24163
24164 Null video sink: do absolutely nothing with the input video. It is
24165 mainly useful as a template and for use in analysis / debugging
24166 tools.
24167
24168 @c man end VIDEO SINKS
24169
24170 @chapter Multimedia Filters
24171 @c man begin MULTIMEDIA FILTERS
24172
24173 Below is a description of the currently available multimedia filters.
24174
24175 @section abitscope
24176
24177 Convert input audio to a video output, displaying the audio bit scope.
24178
24179 The filter accepts the following options:
24180
24181 @table @option
24182 @item rate, r
24183 Set frame rate, expressed as number of frames per second. Default
24184 value is "25".
24185
24186 @item size, s
24187 Specify the video size for the output. For the syntax of this option, check the
24188 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24189 Default value is @code{1024x256}.
24190
24191 @item colors
24192 Specify list of colors separated by space or by '|' which will be used to
24193 draw channels. Unrecognized or missing colors will be replaced
24194 by white color.
24195 @end table
24196
24197 @section adrawgraph
24198 Draw a graph using input audio metadata.
24199
24200 See @ref{drawgraph}
24201
24202 @section agraphmonitor
24203
24204 See @ref{graphmonitor}.
24205
24206 @section ahistogram
24207
24208 Convert input audio to a video output, displaying the volume histogram.
24209
24210 The filter accepts the following options:
24211
24212 @table @option
24213 @item dmode
24214 Specify how histogram is calculated.
24215
24216 It accepts the following values:
24217 @table @samp
24218 @item single
24219 Use single histogram for all channels.
24220 @item separate
24221 Use separate histogram for each channel.
24222 @end table
24223 Default is @code{single}.
24224
24225 @item rate, r
24226 Set frame rate, expressed as number of frames per second. Default
24227 value is "25".
24228
24229 @item size, s
24230 Specify the video size for the output. For the syntax of this option, check the
24231 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24232 Default value is @code{hd720}.
24233
24234 @item scale
24235 Set display scale.
24236
24237 It accepts the following values:
24238 @table @samp
24239 @item log
24240 logarithmic
24241 @item sqrt
24242 square root
24243 @item cbrt
24244 cubic root
24245 @item lin
24246 linear
24247 @item rlog
24248 reverse logarithmic
24249 @end table
24250 Default is @code{log}.
24251
24252 @item ascale
24253 Set amplitude scale.
24254
24255 It accepts the following values:
24256 @table @samp
24257 @item log
24258 logarithmic
24259 @item lin
24260 linear
24261 @end table
24262 Default is @code{log}.
24263
24264 @item acount
24265 Set how much frames to accumulate in histogram.
24266 Default is 1. Setting this to -1 accumulates all frames.
24267
24268 @item rheight
24269 Set histogram ratio of window height.
24270
24271 @item slide
24272 Set sonogram sliding.
24273
24274 It accepts the following values:
24275 @table @samp
24276 @item replace
24277 replace old rows with new ones.
24278 @item scroll
24279 scroll from top to bottom.
24280 @end table
24281 Default is @code{replace}.
24282 @end table
24283
24284 @section aphasemeter
24285
24286 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24287 representing mean phase of current audio frame. A video output can also be produced and is
24288 enabled by default. The audio is passed through as first output.
24289
24290 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24291 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24292 and @code{1} means channels are in phase.
24293
24294 The filter accepts the following options, all related to its video output:
24295
24296 @table @option
24297 @item rate, r
24298 Set the output frame rate. Default value is @code{25}.
24299
24300 @item size, s
24301 Set the video size for the output. For the syntax of this option, check the
24302 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24303 Default value is @code{800x400}.
24304
24305 @item rc
24306 @item gc
24307 @item bc
24308 Specify the red, green, blue contrast. Default values are @code{2},
24309 @code{7} and @code{1}.
24310 Allowed range is @code{[0, 255]}.
24311
24312 @item mpc
24313 Set color which will be used for drawing median phase. If color is
24314 @code{none} which is default, no median phase value will be drawn.
24315
24316 @item video
24317 Enable video output. Default is enabled.
24318 @end table
24319
24320 @subsection phasing detection
24321
24322 The filter also detects out of phase and mono sequences in stereo streams.
24323 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24324
24325 The filter accepts the following options for this detection:
24326
24327 @table @option
24328 @item phasing
24329 Enable mono and out of phase detection. Default is disabled.
24330
24331 @item tolerance, t
24332 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24333 Allowed range is @code{[0, 1]}.
24334
24335 @item angle, a
24336 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24337 Allowed range is @code{[90, 180]}.
24338
24339 @item duration, d
24340 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24341 @end table
24342
24343 @subsection Examples
24344
24345 @itemize
24346 @item
24347 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24348 @example
24349 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24350 @end example
24351 @end itemize
24352
24353 @section avectorscope
24354
24355 Convert input audio to a video output, representing the audio vector
24356 scope.
24357
24358 The filter is used to measure the difference between channels of stereo
24359 audio stream. A monaural signal, consisting of identical left and right
24360 signal, results in straight vertical line. Any stereo separation is visible
24361 as a deviation from this line, creating a Lissajous figure.
24362 If the straight (or deviation from it) but horizontal line appears this
24363 indicates that the left and right channels are out of phase.
24364
24365 The filter accepts the following options:
24366
24367 @table @option
24368 @item mode, m
24369 Set the vectorscope mode.
24370
24371 Available values are:
24372 @table @samp
24373 @item lissajous
24374 Lissajous rotated by 45 degrees.
24375
24376 @item lissajous_xy
24377 Same as above but not rotated.
24378
24379 @item polar
24380 Shape resembling half of circle.
24381 @end table
24382
24383 Default value is @samp{lissajous}.
24384
24385 @item size, s
24386 Set the video size for the output. For the syntax of this option, check the
24387 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24388 Default value is @code{400x400}.
24389
24390 @item rate, r
24391 Set the output frame rate. Default value is @code{25}.
24392
24393 @item rc
24394 @item gc
24395 @item bc
24396 @item ac
24397 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24398 @code{160}, @code{80} and @code{255}.
24399 Allowed range is @code{[0, 255]}.
24400
24401 @item rf
24402 @item gf
24403 @item bf
24404 @item af
24405 Specify the red, green, blue and alpha fade. Default values are @code{15},
24406 @code{10}, @code{5} and @code{5}.
24407 Allowed range is @code{[0, 255]}.
24408
24409 @item zoom
24410 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24411 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24412
24413 @item draw
24414 Set the vectorscope drawing mode.
24415
24416 Available values are:
24417 @table @samp
24418 @item dot
24419 Draw dot for each sample.
24420
24421 @item line
24422 Draw line between previous and current sample.
24423 @end table
24424
24425 Default value is @samp{dot}.
24426
24427 @item scale
24428 Specify amplitude scale of audio samples.
24429
24430 Available values are:
24431 @table @samp
24432 @item lin
24433 Linear.
24434
24435 @item sqrt
24436 Square root.
24437
24438 @item cbrt
24439 Cubic root.
24440
24441 @item log
24442 Logarithmic.
24443 @end table
24444
24445 @item swap
24446 Swap left channel axis with right channel axis.
24447
24448 @item mirror
24449 Mirror axis.
24450
24451 @table @samp
24452 @item none
24453 No mirror.
24454
24455 @item x
24456 Mirror only x axis.
24457
24458 @item y
24459 Mirror only y axis.
24460
24461 @item xy
24462 Mirror both axis.
24463 @end table
24464
24465 @end table
24466
24467 @subsection Examples
24468
24469 @itemize
24470 @item
24471 Complete example using @command{ffplay}:
24472 @example
24473 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24474              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24475 @end example
24476 @end itemize
24477
24478 @section bench, abench
24479
24480 Benchmark part of a filtergraph.
24481
24482 The filter accepts the following options:
24483
24484 @table @option
24485 @item action
24486 Start or stop a timer.
24487
24488 Available values are:
24489 @table @samp
24490 @item start
24491 Get the current time, set it as frame metadata (using the key
24492 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24493
24494 @item stop
24495 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24496 the input frame metadata to get the time difference. Time difference, average,
24497 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24498 @code{min}) are then printed. The timestamps are expressed in seconds.
24499 @end table
24500 @end table
24501
24502 @subsection Examples
24503
24504 @itemize
24505 @item
24506 Benchmark @ref{selectivecolor} filter:
24507 @example
24508 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24509 @end example
24510 @end itemize
24511
24512 @section concat
24513
24514 Concatenate audio and video streams, joining them together one after the
24515 other.
24516
24517 The filter works on segments of synchronized video and audio streams. All
24518 segments must have the same number of streams of each type, and that will
24519 also be the number of streams at output.
24520
24521 The filter accepts the following options:
24522
24523 @table @option
24524
24525 @item n
24526 Set the number of segments. Default is 2.
24527
24528 @item v
24529 Set the number of output video streams, that is also the number of video
24530 streams in each segment. Default is 1.
24531
24532 @item a
24533 Set the number of output audio streams, that is also the number of audio
24534 streams in each segment. Default is 0.
24535
24536 @item unsafe
24537 Activate unsafe mode: do not fail if segments have a different format.
24538
24539 @end table
24540
24541 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24542 @var{a} audio outputs.
24543
24544 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24545 segment, in the same order as the outputs, then the inputs for the second
24546 segment, etc.
24547
24548 Related streams do not always have exactly the same duration, for various
24549 reasons including codec frame size or sloppy authoring. For that reason,
24550 related synchronized streams (e.g. a video and its audio track) should be
24551 concatenated at once. The concat filter will use the duration of the longest
24552 stream in each segment (except the last one), and if necessary pad shorter
24553 audio streams with silence.
24554
24555 For this filter to work correctly, all segments must start at timestamp 0.
24556
24557 All corresponding streams must have the same parameters in all segments; the
24558 filtering system will automatically select a common pixel format for video
24559 streams, and a common sample format, sample rate and channel layout for
24560 audio streams, but other settings, such as resolution, must be converted
24561 explicitly by the user.
24562
24563 Different frame rates are acceptable but will result in variable frame rate
24564 at output; be sure to configure the output file to handle it.
24565
24566 @subsection Examples
24567
24568 @itemize
24569 @item
24570 Concatenate an opening, an episode and an ending, all in bilingual version
24571 (video in stream 0, audio in streams 1 and 2):
24572 @example
24573 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24574   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24575    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24576   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24577 @end example
24578
24579 @item
24580 Concatenate two parts, handling audio and video separately, using the
24581 (a)movie sources, and adjusting the resolution:
24582 @example
24583 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24584 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24585 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24586 @end example
24587 Note that a desync will happen at the stitch if the audio and video streams
24588 do not have exactly the same duration in the first file.
24589
24590 @end itemize
24591
24592 @subsection Commands
24593
24594 This filter supports the following commands:
24595 @table @option
24596 @item next
24597 Close the current segment and step to the next one
24598 @end table
24599
24600 @anchor{ebur128}
24601 @section ebur128
24602
24603 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24604 level. By default, it logs a message at a frequency of 10Hz with the
24605 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24606 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24607
24608 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24609 sample format is double-precision floating point. The input stream will be converted to
24610 this specification, if needed. Users may need to insert aformat and/or aresample filters
24611 after this filter to obtain the original parameters.
24612
24613 The filter also has a video output (see the @var{video} option) with a real
24614 time graph to observe the loudness evolution. The graphic contains the logged
24615 message mentioned above, so it is not printed anymore when this option is set,
24616 unless the verbose logging is set. The main graphing area contains the
24617 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24618 the momentary loudness (400 milliseconds), but can optionally be configured
24619 to instead display short-term loudness (see @var{gauge}).
24620
24621 The green area marks a  +/- 1LU target range around the target loudness
24622 (-23LUFS by default, unless modified through @var{target}).
24623
24624 More information about the Loudness Recommendation EBU R128 on
24625 @url{http://tech.ebu.ch/loudness}.
24626
24627 The filter accepts the following options:
24628
24629 @table @option
24630
24631 @item video
24632 Activate the video output. The audio stream is passed unchanged whether this
24633 option is set or no. The video stream will be the first output stream if
24634 activated. Default is @code{0}.
24635
24636 @item size
24637 Set the video size. This option is for video only. For the syntax of this
24638 option, check the
24639 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24640 Default and minimum resolution is @code{640x480}.
24641
24642 @item meter
24643 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24644 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24645 other integer value between this range is allowed.
24646
24647 @item metadata
24648 Set metadata injection. If set to @code{1}, the audio input will be segmented
24649 into 100ms output frames, each of them containing various loudness information
24650 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24651
24652 Default is @code{0}.
24653
24654 @item framelog
24655 Force the frame logging level.
24656
24657 Available values are:
24658 @table @samp
24659 @item info
24660 information logging level
24661 @item verbose
24662 verbose logging level
24663 @end table
24664
24665 By default, the logging level is set to @var{info}. If the @option{video} or
24666 the @option{metadata} options are set, it switches to @var{verbose}.
24667
24668 @item peak
24669 Set peak mode(s).
24670
24671 Available modes can be cumulated (the option is a @code{flag} type). Possible
24672 values are:
24673 @table @samp
24674 @item none
24675 Disable any peak mode (default).
24676 @item sample
24677 Enable sample-peak mode.
24678
24679 Simple peak mode looking for the higher sample value. It logs a message
24680 for sample-peak (identified by @code{SPK}).
24681 @item true
24682 Enable true-peak mode.
24683
24684 If enabled, the peak lookup is done on an over-sampled version of the input
24685 stream for better peak accuracy. It logs a message for true-peak.
24686 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24687 This mode requires a build with @code{libswresample}.
24688 @end table
24689
24690 @item dualmono
24691 Treat mono input files as "dual mono". If a mono file is intended for playback
24692 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24693 If set to @code{true}, this option will compensate for this effect.
24694 Multi-channel input files are not affected by this option.
24695
24696 @item panlaw
24697 Set a specific pan law to be used for the measurement of dual mono files.
24698 This parameter is optional, and has a default value of -3.01dB.
24699
24700 @item target
24701 Set a specific target level (in LUFS) used as relative zero in the visualization.
24702 This parameter is optional and has a default value of -23LUFS as specified
24703 by EBU R128. However, material published online may prefer a level of -16LUFS
24704 (e.g. for use with podcasts or video platforms).
24705
24706 @item gauge
24707 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24708 @code{shortterm}. By default the momentary value will be used, but in certain
24709 scenarios it may be more useful to observe the short term value instead (e.g.
24710 live mixing).
24711
24712 @item scale
24713 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24714 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24715 video output, not the summary or continuous log output.
24716 @end table
24717
24718 @subsection Examples
24719
24720 @itemize
24721 @item
24722 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24723 @example
24724 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24725 @end example
24726
24727 @item
24728 Run an analysis with @command{ffmpeg}:
24729 @example
24730 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24731 @end example
24732 @end itemize
24733
24734 @section interleave, ainterleave
24735
24736 Temporally interleave frames from several inputs.
24737
24738 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24739
24740 These filters read frames from several inputs and send the oldest
24741 queued frame to the output.
24742
24743 Input streams must have well defined, monotonically increasing frame
24744 timestamp values.
24745
24746 In order to submit one frame to output, these filters need to enqueue
24747 at least one frame for each input, so they cannot work in case one
24748 input is not yet terminated and will not receive incoming frames.
24749
24750 For example consider the case when one input is a @code{select} filter
24751 which always drops input frames. The @code{interleave} filter will keep
24752 reading from that input, but it will never be able to send new frames
24753 to output until the input sends an end-of-stream signal.
24754
24755 Also, depending on inputs synchronization, the filters will drop
24756 frames in case one input receives more frames than the other ones, and
24757 the queue is already filled.
24758
24759 These filters accept the following options:
24760
24761 @table @option
24762 @item nb_inputs, n
24763 Set the number of different inputs, it is 2 by default.
24764
24765 @item duration
24766 How to determine the end-of-stream.
24767
24768 @table @option
24769 @item longest
24770 The duration of the longest input. (default)
24771
24772 @item shortest
24773 The duration of the shortest input.
24774
24775 @item first
24776 The duration of the first input.
24777 @end table
24778
24779 @end table
24780
24781 @subsection Examples
24782
24783 @itemize
24784 @item
24785 Interleave frames belonging to different streams using @command{ffmpeg}:
24786 @example
24787 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24788 @end example
24789
24790 @item
24791 Add flickering blur effect:
24792 @example
24793 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24794 @end example
24795 @end itemize
24796
24797 @section metadata, ametadata
24798
24799 Manipulate frame metadata.
24800
24801 This filter accepts the following options:
24802
24803 @table @option
24804 @item mode
24805 Set mode of operation of the filter.
24806
24807 Can be one of the following:
24808
24809 @table @samp
24810 @item select
24811 If both @code{value} and @code{key} is set, select frames
24812 which have such metadata. If only @code{key} is set, select
24813 every frame that has such key in metadata.
24814
24815 @item add
24816 Add new metadata @code{key} and @code{value}. If key is already available
24817 do nothing.
24818
24819 @item modify
24820 Modify value of already present key.
24821
24822 @item delete
24823 If @code{value} is set, delete only keys that have such value.
24824 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24825 the frame.
24826
24827 @item print
24828 Print key and its value if metadata was found. If @code{key} is not set print all
24829 metadata values available in frame.
24830 @end table
24831
24832 @item key
24833 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24834
24835 @item value
24836 Set metadata value which will be used. This option is mandatory for
24837 @code{modify} and @code{add} mode.
24838
24839 @item function
24840 Which function to use when comparing metadata value and @code{value}.
24841
24842 Can be one of following:
24843
24844 @table @samp
24845 @item same_str
24846 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24847
24848 @item starts_with
24849 Values are interpreted as strings, returns true if metadata value starts with
24850 the @code{value} option string.
24851
24852 @item less
24853 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24854
24855 @item equal
24856 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24857
24858 @item greater
24859 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24860
24861 @item expr
24862 Values are interpreted as floats, returns true if expression from option @code{expr}
24863 evaluates to true.
24864
24865 @item ends_with
24866 Values are interpreted as strings, returns true if metadata value ends with
24867 the @code{value} option string.
24868 @end table
24869
24870 @item expr
24871 Set expression which is used when @code{function} is set to @code{expr}.
24872 The expression is evaluated through the eval API and can contain the following
24873 constants:
24874
24875 @table @option
24876 @item VALUE1
24877 Float representation of @code{value} from metadata key.
24878
24879 @item VALUE2
24880 Float representation of @code{value} as supplied by user in @code{value} option.
24881 @end table
24882
24883 @item file
24884 If specified in @code{print} mode, output is written to the named file. Instead of
24885 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24886 for standard output. If @code{file} option is not set, output is written to the log
24887 with AV_LOG_INFO loglevel.
24888
24889 @item direct
24890 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24891
24892 @end table
24893
24894 @subsection Examples
24895
24896 @itemize
24897 @item
24898 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24899 between 0 and 1.
24900 @example
24901 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24902 @end example
24903 @item
24904 Print silencedetect output to file @file{metadata.txt}.
24905 @example
24906 silencedetect,ametadata=mode=print:file=metadata.txt
24907 @end example
24908 @item
24909 Direct all metadata to a pipe with file descriptor 4.
24910 @example
24911 metadata=mode=print:file='pipe\:4'
24912 @end example
24913 @end itemize
24914
24915 @section perms, aperms
24916
24917 Set read/write permissions for the output frames.
24918
24919 These filters are mainly aimed at developers to test direct path in the
24920 following filter in the filtergraph.
24921
24922 The filters accept the following options:
24923
24924 @table @option
24925 @item mode
24926 Select the permissions mode.
24927
24928 It accepts the following values:
24929 @table @samp
24930 @item none
24931 Do nothing. This is the default.
24932 @item ro
24933 Set all the output frames read-only.
24934 @item rw
24935 Set all the output frames directly writable.
24936 @item toggle
24937 Make the frame read-only if writable, and writable if read-only.
24938 @item random
24939 Set each output frame read-only or writable randomly.
24940 @end table
24941
24942 @item seed
24943 Set the seed for the @var{random} mode, must be an integer included between
24944 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24945 @code{-1}, the filter will try to use a good random seed on a best effort
24946 basis.
24947 @end table
24948
24949 Note: in case of auto-inserted filter between the permission filter and the
24950 following one, the permission might not be received as expected in that
24951 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24952 perms/aperms filter can avoid this problem.
24953
24954 @section realtime, arealtime
24955
24956 Slow down filtering to match real time approximately.
24957
24958 These filters will pause the filtering for a variable amount of time to
24959 match the output rate with the input timestamps.
24960 They are similar to the @option{re} option to @code{ffmpeg}.
24961
24962 They accept the following options:
24963
24964 @table @option
24965 @item limit
24966 Time limit for the pauses. Any pause longer than that will be considered
24967 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24968 @item speed
24969 Speed factor for processing. The value must be a float larger than zero.
24970 Values larger than 1.0 will result in faster than realtime processing,
24971 smaller will slow processing down. The @var{limit} is automatically adapted
24972 accordingly. Default is 1.0.
24973
24974 A processing speed faster than what is possible without these filters cannot
24975 be achieved.
24976 @end table
24977
24978 @anchor{select}
24979 @section select, aselect
24980
24981 Select frames to pass in output.
24982
24983 This filter accepts the following options:
24984
24985 @table @option
24986
24987 @item expr, e
24988 Set expression, which is evaluated for each input frame.
24989
24990 If the expression is evaluated to zero, the frame is discarded.
24991
24992 If the evaluation result is negative or NaN, the frame is sent to the
24993 first output; otherwise it is sent to the output with index
24994 @code{ceil(val)-1}, assuming that the input index starts from 0.
24995
24996 For example a value of @code{1.2} corresponds to the output with index
24997 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24998
24999 @item outputs, n
25000 Set the number of outputs. The output to which to send the selected
25001 frame is based on the result of the evaluation. Default value is 1.
25002 @end table
25003
25004 The expression can contain the following constants:
25005
25006 @table @option
25007 @item n
25008 The (sequential) number of the filtered frame, starting from 0.
25009
25010 @item selected_n
25011 The (sequential) number of the selected frame, starting from 0.
25012
25013 @item prev_selected_n
25014 The sequential number of the last selected frame. It's NAN if undefined.
25015
25016 @item TB
25017 The timebase of the input timestamps.
25018
25019 @item pts
25020 The PTS (Presentation TimeStamp) of the filtered video frame,
25021 expressed in @var{TB} units. It's NAN if undefined.
25022
25023 @item t
25024 The PTS of the filtered video frame,
25025 expressed in seconds. It's NAN if undefined.
25026
25027 @item prev_pts
25028 The PTS of the previously filtered video frame. It's NAN if undefined.
25029
25030 @item prev_selected_pts
25031 The PTS of the last previously filtered video frame. It's NAN if undefined.
25032
25033 @item prev_selected_t
25034 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
25035
25036 @item start_pts
25037 The PTS of the first video frame in the video. It's NAN if undefined.
25038
25039 @item start_t
25040 The time of the first video frame in the video. It's NAN if undefined.
25041
25042 @item pict_type @emph{(video only)}
25043 The type of the filtered frame. It can assume one of the following
25044 values:
25045 @table @option
25046 @item I
25047 @item P
25048 @item B
25049 @item S
25050 @item SI
25051 @item SP
25052 @item BI
25053 @end table
25054
25055 @item interlace_type @emph{(video only)}
25056 The frame interlace type. It can assume one of the following values:
25057 @table @option
25058 @item PROGRESSIVE
25059 The frame is progressive (not interlaced).
25060 @item TOPFIRST
25061 The frame is top-field-first.
25062 @item BOTTOMFIRST
25063 The frame is bottom-field-first.
25064 @end table
25065
25066 @item consumed_sample_n @emph{(audio only)}
25067 the number of selected samples before the current frame
25068
25069 @item samples_n @emph{(audio only)}
25070 the number of samples in the current frame
25071
25072 @item sample_rate @emph{(audio only)}
25073 the input sample rate
25074
25075 @item key
25076 This is 1 if the filtered frame is a key-frame, 0 otherwise.
25077
25078 @item pos
25079 the position in the file of the filtered frame, -1 if the information
25080 is not available (e.g. for synthetic video)
25081
25082 @item scene @emph{(video only)}
25083 value between 0 and 1 to indicate a new scene; a low value reflects a low
25084 probability for the current frame to introduce a new scene, while a higher
25085 value means the current frame is more likely to be one (see the example below)
25086
25087 @item concatdec_select
25088 The concat demuxer can select only part of a concat input file by setting an
25089 inpoint and an outpoint, but the output packets may not be entirely contained
25090 in the selected interval. By using this variable, it is possible to skip frames
25091 generated by the concat demuxer which are not exactly contained in the selected
25092 interval.
25093
25094 This works by comparing the frame pts against the @var{lavf.concat.start_time}
25095 and the @var{lavf.concat.duration} packet metadata values which are also
25096 present in the decoded frames.
25097
25098 The @var{concatdec_select} variable is -1 if the frame pts is at least
25099 start_time and either the duration metadata is missing or the frame pts is less
25100 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
25101 missing.
25102
25103 That basically means that an input frame is selected if its pts is within the
25104 interval set by the concat demuxer.
25105
25106 @end table
25107
25108 The default value of the select expression is "1".
25109
25110 @subsection Examples
25111
25112 @itemize
25113 @item
25114 Select all frames in input:
25115 @example
25116 select
25117 @end example
25118
25119 The example above is the same as:
25120 @example
25121 select=1
25122 @end example
25123
25124 @item
25125 Skip all frames:
25126 @example
25127 select=0
25128 @end example
25129
25130 @item
25131 Select only I-frames:
25132 @example
25133 select='eq(pict_type\,I)'
25134 @end example
25135
25136 @item
25137 Select one frame every 100:
25138 @example
25139 select='not(mod(n\,100))'
25140 @end example
25141
25142 @item
25143 Select only frames contained in the 10-20 time interval:
25144 @example
25145 select=between(t\,10\,20)
25146 @end example
25147
25148 @item
25149 Select only I-frames contained in the 10-20 time interval:
25150 @example
25151 select=between(t\,10\,20)*eq(pict_type\,I)
25152 @end example
25153
25154 @item
25155 Select frames with a minimum distance of 10 seconds:
25156 @example
25157 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
25158 @end example
25159
25160 @item
25161 Use aselect to select only audio frames with samples number > 100:
25162 @example
25163 aselect='gt(samples_n\,100)'
25164 @end example
25165
25166 @item
25167 Create a mosaic of the first scenes:
25168 @example
25169 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
25170 @end example
25171
25172 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
25173 choice.
25174
25175 @item
25176 Send even and odd frames to separate outputs, and compose them:
25177 @example
25178 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
25179 @end example
25180
25181 @item
25182 Select useful frames from an ffconcat file which is using inpoints and
25183 outpoints but where the source files are not intra frame only.
25184 @example
25185 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
25186 @end example
25187 @end itemize
25188
25189 @section sendcmd, asendcmd
25190
25191 Send commands to filters in the filtergraph.
25192
25193 These filters read commands to be sent to other filters in the
25194 filtergraph.
25195
25196 @code{sendcmd} must be inserted between two video filters,
25197 @code{asendcmd} must be inserted between two audio filters, but apart
25198 from that they act the same way.
25199
25200 The specification of commands can be provided in the filter arguments
25201 with the @var{commands} option, or in a file specified by the
25202 @var{filename} option.
25203
25204 These filters accept the following options:
25205 @table @option
25206 @item commands, c
25207 Set the commands to be read and sent to the other filters.
25208 @item filename, f
25209 Set the filename of the commands to be read and sent to the other
25210 filters.
25211 @end table
25212
25213 @subsection Commands syntax
25214
25215 A commands description consists of a sequence of interval
25216 specifications, comprising a list of commands to be executed when a
25217 particular event related to that interval occurs. The occurring event
25218 is typically the current frame time entering or leaving a given time
25219 interval.
25220
25221 An interval is specified by the following syntax:
25222 @example
25223 @var{START}[-@var{END}] @var{COMMANDS};
25224 @end example
25225
25226 The time interval is specified by the @var{START} and @var{END} times.
25227 @var{END} is optional and defaults to the maximum time.
25228
25229 The current frame time is considered within the specified interval if
25230 it is included in the interval [@var{START}, @var{END}), that is when
25231 the time is greater or equal to @var{START} and is lesser than
25232 @var{END}.
25233
25234 @var{COMMANDS} consists of a sequence of one or more command
25235 specifications, separated by ",", relating to that interval.  The
25236 syntax of a command specification is given by:
25237 @example
25238 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25239 @end example
25240
25241 @var{FLAGS} is optional and specifies the type of events relating to
25242 the time interval which enable sending the specified command, and must
25243 be a non-null sequence of identifier flags separated by "+" or "|" and
25244 enclosed between "[" and "]".
25245
25246 The following flags are recognized:
25247 @table @option
25248 @item enter
25249 The command is sent when the current frame timestamp enters the
25250 specified interval. In other words, the command is sent when the
25251 previous frame timestamp was not in the given interval, and the
25252 current is.
25253
25254 @item leave
25255 The command is sent when the current frame timestamp leaves the
25256 specified interval. In other words, the command is sent when the
25257 previous frame timestamp was in the given interval, and the
25258 current is not.
25259
25260 @item expr
25261 The command @var{ARG} is interpreted as expression and result of
25262 expression is passed as @var{ARG}.
25263
25264 The expression is evaluated through the eval API and can contain the following
25265 constants:
25266
25267 @table @option
25268 @item POS
25269 Original position in the file of the frame, or undefined if undefined
25270 for the current frame.
25271
25272 @item PTS
25273 The presentation timestamp in input.
25274
25275 @item N
25276 The count of the input frame for video or audio, starting from 0.
25277
25278 @item T
25279 The time in seconds of the current frame.
25280
25281 @item TS
25282 The start time in seconds of the current command interval.
25283
25284 @item TE
25285 The end time in seconds of the current command interval.
25286
25287 @item TI
25288 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25289 @end table
25290
25291 @end table
25292
25293 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25294 assumed.
25295
25296 @var{TARGET} specifies the target of the command, usually the name of
25297 the filter class or a specific filter instance name.
25298
25299 @var{COMMAND} specifies the name of the command for the target filter.
25300
25301 @var{ARG} is optional and specifies the optional list of argument for
25302 the given @var{COMMAND}.
25303
25304 Between one interval specification and another, whitespaces, or
25305 sequences of characters starting with @code{#} until the end of line,
25306 are ignored and can be used to annotate comments.
25307
25308 A simplified BNF description of the commands specification syntax
25309 follows:
25310 @example
25311 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25312 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25313 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25314 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25315 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25316 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25317 @end example
25318
25319 @subsection Examples
25320
25321 @itemize
25322 @item
25323 Specify audio tempo change at second 4:
25324 @example
25325 asendcmd=c='4.0 atempo tempo 1.5',atempo
25326 @end example
25327
25328 @item
25329 Target a specific filter instance:
25330 @example
25331 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25332 @end example
25333
25334 @item
25335 Specify a list of drawtext and hue commands in a file.
25336 @example
25337 # show text in the interval 5-10
25338 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25339          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25340
25341 # desaturate the image in the interval 15-20
25342 15.0-20.0 [enter] hue s 0,
25343           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25344           [leave] hue s 1,
25345           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25346
25347 # apply an exponential saturation fade-out effect, starting from time 25
25348 25 [enter] hue s exp(25-t)
25349 @end example
25350
25351 A filtergraph allowing to read and process the above command list
25352 stored in a file @file{test.cmd}, can be specified with:
25353 @example
25354 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25355 @end example
25356 @end itemize
25357
25358 @anchor{setpts}
25359 @section setpts, asetpts
25360
25361 Change the PTS (presentation timestamp) of the input frames.
25362
25363 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25364
25365 This filter accepts the following options:
25366
25367 @table @option
25368
25369 @item expr
25370 The expression which is evaluated for each frame to construct its timestamp.
25371
25372 @end table
25373
25374 The expression is evaluated through the eval API and can contain the following
25375 constants:
25376
25377 @table @option
25378 @item FRAME_RATE, FR
25379 frame rate, only defined for constant frame-rate video
25380
25381 @item PTS
25382 The presentation timestamp in input
25383
25384 @item N
25385 The count of the input frame for video or the number of consumed samples,
25386 not including the current frame for audio, starting from 0.
25387
25388 @item NB_CONSUMED_SAMPLES
25389 The number of consumed samples, not including the current frame (only
25390 audio)
25391
25392 @item NB_SAMPLES, S
25393 The number of samples in the current frame (only audio)
25394
25395 @item SAMPLE_RATE, SR
25396 The audio sample rate.
25397
25398 @item STARTPTS
25399 The PTS of the first frame.
25400
25401 @item STARTT
25402 the time in seconds of the first frame
25403
25404 @item INTERLACED
25405 State whether the current frame is interlaced.
25406
25407 @item T
25408 the time in seconds of the current frame
25409
25410 @item POS
25411 original position in the file of the frame, or undefined if undefined
25412 for the current frame
25413
25414 @item PREV_INPTS
25415 The previous input PTS.
25416
25417 @item PREV_INT
25418 previous input time in seconds
25419
25420 @item PREV_OUTPTS
25421 The previous output PTS.
25422
25423 @item PREV_OUTT
25424 previous output time in seconds
25425
25426 @item RTCTIME
25427 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25428 instead.
25429
25430 @item RTCSTART
25431 The wallclock (RTC) time at the start of the movie in microseconds.
25432
25433 @item TB
25434 The timebase of the input timestamps.
25435
25436 @end table
25437
25438 @subsection Examples
25439
25440 @itemize
25441 @item
25442 Start counting PTS from zero
25443 @example
25444 setpts=PTS-STARTPTS
25445 @end example
25446
25447 @item
25448 Apply fast motion effect:
25449 @example
25450 setpts=0.5*PTS
25451 @end example
25452
25453 @item
25454 Apply slow motion effect:
25455 @example
25456 setpts=2.0*PTS
25457 @end example
25458
25459 @item
25460 Set fixed rate of 25 frames per second:
25461 @example
25462 setpts=N/(25*TB)
25463 @end example
25464
25465 @item
25466 Set fixed rate 25 fps with some jitter:
25467 @example
25468 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25469 @end example
25470
25471 @item
25472 Apply an offset of 10 seconds to the input PTS:
25473 @example
25474 setpts=PTS+10/TB
25475 @end example
25476
25477 @item
25478 Generate timestamps from a "live source" and rebase onto the current timebase:
25479 @example
25480 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25481 @end example
25482
25483 @item
25484 Generate timestamps by counting samples:
25485 @example
25486 asetpts=N/SR/TB
25487 @end example
25488
25489 @end itemize
25490
25491 @section setrange
25492
25493 Force color range for the output video frame.
25494
25495 The @code{setrange} filter marks the color range property for the
25496 output frames. It does not change the input frame, but only sets the
25497 corresponding property, which affects how the frame is treated by
25498 following filters.
25499
25500 The filter accepts the following options:
25501
25502 @table @option
25503
25504 @item range
25505 Available values are:
25506
25507 @table @samp
25508 @item auto
25509 Keep the same color range property.
25510
25511 @item unspecified, unknown
25512 Set the color range as unspecified.
25513
25514 @item limited, tv, mpeg
25515 Set the color range as limited.
25516
25517 @item full, pc, jpeg
25518 Set the color range as full.
25519 @end table
25520 @end table
25521
25522 @section settb, asettb
25523
25524 Set the timebase to use for the output frames timestamps.
25525 It is mainly useful for testing timebase configuration.
25526
25527 It accepts the following parameters:
25528
25529 @table @option
25530
25531 @item expr, tb
25532 The expression which is evaluated into the output timebase.
25533
25534 @end table
25535
25536 The value for @option{tb} is an arithmetic expression representing a
25537 rational. The expression can contain the constants "AVTB" (the default
25538 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25539 audio only). Default value is "intb".
25540
25541 @subsection Examples
25542
25543 @itemize
25544 @item
25545 Set the timebase to 1/25:
25546 @example
25547 settb=expr=1/25
25548 @end example
25549
25550 @item
25551 Set the timebase to 1/10:
25552 @example
25553 settb=expr=0.1
25554 @end example
25555
25556 @item
25557 Set the timebase to 1001/1000:
25558 @example
25559 settb=1+0.001
25560 @end example
25561
25562 @item
25563 Set the timebase to 2*intb:
25564 @example
25565 settb=2*intb
25566 @end example
25567
25568 @item
25569 Set the default timebase value:
25570 @example
25571 settb=AVTB
25572 @end example
25573 @end itemize
25574
25575 @section showcqt
25576 Convert input audio to a video output representing frequency spectrum
25577 logarithmically using Brown-Puckette constant Q transform algorithm with
25578 direct frequency domain coefficient calculation (but the transform itself
25579 is not really constant Q, instead the Q factor is actually variable/clamped),
25580 with musical tone scale, from E0 to D#10.
25581
25582 The filter accepts the following options:
25583
25584 @table @option
25585 @item size, s
25586 Specify the video size for the output. It must be even. For the syntax of this option,
25587 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25588 Default value is @code{1920x1080}.
25589
25590 @item fps, rate, r
25591 Set the output frame rate. Default value is @code{25}.
25592
25593 @item bar_h
25594 Set the bargraph height. It must be even. Default value is @code{-1} which
25595 computes the bargraph height automatically.
25596
25597 @item axis_h
25598 Set the axis height. It must be even. Default value is @code{-1} which computes
25599 the axis height automatically.
25600
25601 @item sono_h
25602 Set the sonogram height. It must be even. Default value is @code{-1} which
25603 computes the sonogram height automatically.
25604
25605 @item fullhd
25606 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25607 instead. Default value is @code{1}.
25608
25609 @item sono_v, volume
25610 Specify the sonogram volume expression. It can contain variables:
25611 @table @option
25612 @item bar_v
25613 the @var{bar_v} evaluated expression
25614 @item frequency, freq, f
25615 the frequency where it is evaluated
25616 @item timeclamp, tc
25617 the value of @var{timeclamp} option
25618 @end table
25619 and functions:
25620 @table @option
25621 @item a_weighting(f)
25622 A-weighting of equal loudness
25623 @item b_weighting(f)
25624 B-weighting of equal loudness
25625 @item c_weighting(f)
25626 C-weighting of equal loudness.
25627 @end table
25628 Default value is @code{16}.
25629
25630 @item bar_v, volume2
25631 Specify the bargraph volume expression. It can contain variables:
25632 @table @option
25633 @item sono_v
25634 the @var{sono_v} evaluated expression
25635 @item frequency, freq, f
25636 the frequency where it is evaluated
25637 @item timeclamp, tc
25638 the value of @var{timeclamp} option
25639 @end table
25640 and functions:
25641 @table @option
25642 @item a_weighting(f)
25643 A-weighting of equal loudness
25644 @item b_weighting(f)
25645 B-weighting of equal loudness
25646 @item c_weighting(f)
25647 C-weighting of equal loudness.
25648 @end table
25649 Default value is @code{sono_v}.
25650
25651 @item sono_g, gamma
25652 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25653 higher gamma makes the spectrum having more range. Default value is @code{3}.
25654 Acceptable range is @code{[1, 7]}.
25655
25656 @item bar_g, gamma2
25657 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25658 @code{[1, 7]}.
25659
25660 @item bar_t
25661 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25662 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25663
25664 @item timeclamp, tc
25665 Specify the transform timeclamp. At low frequency, there is trade-off between
25666 accuracy in time domain and frequency domain. If timeclamp is lower,
25667 event in time domain is represented more accurately (such as fast bass drum),
25668 otherwise event in frequency domain is represented more accurately
25669 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25670
25671 @item attack
25672 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25673 limits future samples by applying asymmetric windowing in time domain, useful
25674 when low latency is required. Accepted range is @code{[0, 1]}.
25675
25676 @item basefreq
25677 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25678 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25679
25680 @item endfreq
25681 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25682 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25683
25684 @item coeffclamp
25685 This option is deprecated and ignored.
25686
25687 @item tlength
25688 Specify the transform length in time domain. Use this option to control accuracy
25689 trade-off between time domain and frequency domain at every frequency sample.
25690 It can contain variables:
25691 @table @option
25692 @item frequency, freq, f
25693 the frequency where it is evaluated
25694 @item timeclamp, tc
25695 the value of @var{timeclamp} option.
25696 @end table
25697 Default value is @code{384*tc/(384+tc*f)}.
25698
25699 @item count
25700 Specify the transform count for every video frame. Default value is @code{6}.
25701 Acceptable range is @code{[1, 30]}.
25702
25703 @item fcount
25704 Specify the transform count for every single pixel. Default value is @code{0},
25705 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25706
25707 @item fontfile
25708 Specify font file for use with freetype to draw the axis. If not specified,
25709 use embedded font. Note that drawing with font file or embedded font is not
25710 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25711 option instead.
25712
25713 @item font
25714 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25715 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25716 escaping.
25717
25718 @item fontcolor
25719 Specify font color expression. This is arithmetic expression that should return
25720 integer value 0xRRGGBB. It can contain variables:
25721 @table @option
25722 @item frequency, freq, f
25723 the frequency where it is evaluated
25724 @item timeclamp, tc
25725 the value of @var{timeclamp} option
25726 @end table
25727 and functions:
25728 @table @option
25729 @item midi(f)
25730 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25731 @item r(x), g(x), b(x)
25732 red, green, and blue value of intensity x.
25733 @end table
25734 Default value is @code{st(0, (midi(f)-59.5)/12);
25735 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25736 r(1-ld(1)) + b(ld(1))}.
25737
25738 @item axisfile
25739 Specify image file to draw the axis. This option override @var{fontfile} and
25740 @var{fontcolor} option.
25741
25742 @item axis, text
25743 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25744 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25745 Default value is @code{1}.
25746
25747 @item csp
25748 Set colorspace. The accepted values are:
25749 @table @samp
25750 @item unspecified
25751 Unspecified (default)
25752
25753 @item bt709
25754 BT.709
25755
25756 @item fcc
25757 FCC
25758
25759 @item bt470bg
25760 BT.470BG or BT.601-6 625
25761
25762 @item smpte170m
25763 SMPTE-170M or BT.601-6 525
25764
25765 @item smpte240m
25766 SMPTE-240M
25767
25768 @item bt2020ncl
25769 BT.2020 with non-constant luminance
25770
25771 @end table
25772
25773 @item cscheme
25774 Set spectrogram color scheme. This is list of floating point values with format
25775 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25776 The default is @code{1|0.5|0|0|0.5|1}.
25777
25778 @end table
25779
25780 @subsection Examples
25781
25782 @itemize
25783 @item
25784 Playing audio while showing the spectrum:
25785 @example
25786 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25787 @end example
25788
25789 @item
25790 Same as above, but with frame rate 30 fps:
25791 @example
25792 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25793 @end example
25794
25795 @item
25796 Playing at 1280x720:
25797 @example
25798 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25799 @end example
25800
25801 @item
25802 Disable sonogram display:
25803 @example
25804 sono_h=0
25805 @end example
25806
25807 @item
25808 A1 and its harmonics: A1, A2, (near)E3, A3:
25809 @example
25810 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),
25811                  asplit[a][out1]; [a] showcqt [out0]'
25812 @end example
25813
25814 @item
25815 Same as above, but with more accuracy in frequency domain:
25816 @example
25817 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),
25818                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25819 @end example
25820
25821 @item
25822 Custom volume:
25823 @example
25824 bar_v=10:sono_v=bar_v*a_weighting(f)
25825 @end example
25826
25827 @item
25828 Custom gamma, now spectrum is linear to the amplitude.
25829 @example
25830 bar_g=2:sono_g=2
25831 @end example
25832
25833 @item
25834 Custom tlength equation:
25835 @example
25836 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)))'
25837 @end example
25838
25839 @item
25840 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25841 @example
25842 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25843 @end example
25844
25845 @item
25846 Custom font using fontconfig:
25847 @example
25848 font='Courier New,Monospace,mono|bold'
25849 @end example
25850
25851 @item
25852 Custom frequency range with custom axis using image file:
25853 @example
25854 axisfile=myaxis.png:basefreq=40:endfreq=10000
25855 @end example
25856 @end itemize
25857
25858 @section showfreqs
25859
25860 Convert input audio to video output representing the audio power spectrum.
25861 Audio amplitude is on Y-axis while frequency is on X-axis.
25862
25863 The filter accepts the following options:
25864
25865 @table @option
25866 @item size, s
25867 Specify size of video. For the syntax of this option, check the
25868 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25869 Default is @code{1024x512}.
25870
25871 @item mode
25872 Set display mode.
25873 This set how each frequency bin will be represented.
25874
25875 It accepts the following values:
25876 @table @samp
25877 @item line
25878 @item bar
25879 @item dot
25880 @end table
25881 Default is @code{bar}.
25882
25883 @item ascale
25884 Set amplitude scale.
25885
25886 It accepts the following values:
25887 @table @samp
25888 @item lin
25889 Linear scale.
25890
25891 @item sqrt
25892 Square root scale.
25893
25894 @item cbrt
25895 Cubic root scale.
25896
25897 @item log
25898 Logarithmic scale.
25899 @end table
25900 Default is @code{log}.
25901
25902 @item fscale
25903 Set frequency scale.
25904
25905 It accepts the following values:
25906 @table @samp
25907 @item lin
25908 Linear scale.
25909
25910 @item log
25911 Logarithmic scale.
25912
25913 @item rlog
25914 Reverse logarithmic scale.
25915 @end table
25916 Default is @code{lin}.
25917
25918 @item win_size
25919 Set window size. Allowed range is from 16 to 65536.
25920
25921 Default is @code{2048}
25922
25923 @item win_func
25924 Set windowing function.
25925
25926 It accepts the following values:
25927 @table @samp
25928 @item rect
25929 @item bartlett
25930 @item hanning
25931 @item hamming
25932 @item blackman
25933 @item welch
25934 @item flattop
25935 @item bharris
25936 @item bnuttall
25937 @item bhann
25938 @item sine
25939 @item nuttall
25940 @item lanczos
25941 @item gauss
25942 @item tukey
25943 @item dolph
25944 @item cauchy
25945 @item parzen
25946 @item poisson
25947 @item bohman
25948 @end table
25949 Default is @code{hanning}.
25950
25951 @item overlap
25952 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25953 which means optimal overlap for selected window function will be picked.
25954
25955 @item averaging
25956 Set time averaging. Setting this to 0 will display current maximal peaks.
25957 Default is @code{1}, which means time averaging is disabled.
25958
25959 @item colors
25960 Specify list of colors separated by space or by '|' which will be used to
25961 draw channel frequencies. Unrecognized or missing colors will be replaced
25962 by white color.
25963
25964 @item cmode
25965 Set channel display mode.
25966
25967 It accepts the following values:
25968 @table @samp
25969 @item combined
25970 @item separate
25971 @end table
25972 Default is @code{combined}.
25973
25974 @item minamp
25975 Set minimum amplitude used in @code{log} amplitude scaler.
25976
25977 @item data
25978 Set data display mode.
25979
25980 It accepts the following values:
25981 @table @samp
25982 @item magnitude
25983 @item phase
25984 @item delay
25985 @end table
25986 Default is @code{magnitude}.
25987 @end table
25988
25989 @section showspatial
25990
25991 Convert stereo input audio to a video output, representing the spatial relationship
25992 between two channels.
25993
25994 The filter accepts the following options:
25995
25996 @table @option
25997 @item size, s
25998 Specify the video size for the output. For the syntax of this option, check the
25999 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26000 Default value is @code{512x512}.
26001
26002 @item win_size
26003 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
26004
26005 @item win_func
26006 Set window function.
26007
26008 It accepts the following values:
26009 @table @samp
26010 @item rect
26011 @item bartlett
26012 @item hann
26013 @item hanning
26014 @item hamming
26015 @item blackman
26016 @item welch
26017 @item flattop
26018 @item bharris
26019 @item bnuttall
26020 @item bhann
26021 @item sine
26022 @item nuttall
26023 @item lanczos
26024 @item gauss
26025 @item tukey
26026 @item dolph
26027 @item cauchy
26028 @item parzen
26029 @item poisson
26030 @item bohman
26031 @end table
26032
26033 Default value is @code{hann}.
26034
26035 @item overlap
26036 Set ratio of overlap window. Default value is @code{0.5}.
26037 When value is @code{1} overlap is set to recommended size for specific
26038 window function currently used.
26039 @end table
26040
26041 @anchor{showspectrum}
26042 @section showspectrum
26043
26044 Convert input audio to a video output, representing the audio frequency
26045 spectrum.
26046
26047 The filter accepts the following options:
26048
26049 @table @option
26050 @item size, s
26051 Specify the video size for the output. For the syntax of this option, check the
26052 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26053 Default value is @code{640x512}.
26054
26055 @item slide
26056 Specify how the spectrum should slide along the window.
26057
26058 It accepts the following values:
26059 @table @samp
26060 @item replace
26061 the samples start again on the left when they reach the right
26062 @item scroll
26063 the samples scroll from right to left
26064 @item fullframe
26065 frames are only produced when the samples reach the right
26066 @item rscroll
26067 the samples scroll from left to right
26068 @end table
26069
26070 Default value is @code{replace}.
26071
26072 @item mode
26073 Specify display mode.
26074
26075 It accepts the following values:
26076 @table @samp
26077 @item combined
26078 all channels are displayed in the same row
26079 @item separate
26080 all channels are displayed in separate rows
26081 @end table
26082
26083 Default value is @samp{combined}.
26084
26085 @item color
26086 Specify display color mode.
26087
26088 It accepts the following values:
26089 @table @samp
26090 @item channel
26091 each channel is displayed in a separate color
26092 @item intensity
26093 each channel is displayed using the same color scheme
26094 @item rainbow
26095 each channel is displayed using the rainbow color scheme
26096 @item moreland
26097 each channel is displayed using the moreland color scheme
26098 @item nebulae
26099 each channel is displayed using the nebulae color scheme
26100 @item fire
26101 each channel is displayed using the fire color scheme
26102 @item fiery
26103 each channel is displayed using the fiery color scheme
26104 @item fruit
26105 each channel is displayed using the fruit color scheme
26106 @item cool
26107 each channel is displayed using the cool color scheme
26108 @item magma
26109 each channel is displayed using the magma color scheme
26110 @item green
26111 each channel is displayed using the green color scheme
26112 @item viridis
26113 each channel is displayed using the viridis color scheme
26114 @item plasma
26115 each channel is displayed using the plasma color scheme
26116 @item cividis
26117 each channel is displayed using the cividis color scheme
26118 @item terrain
26119 each channel is displayed using the terrain color scheme
26120 @end table
26121
26122 Default value is @samp{channel}.
26123
26124 @item scale
26125 Specify scale used for calculating intensity color values.
26126
26127 It accepts the following values:
26128 @table @samp
26129 @item lin
26130 linear
26131 @item sqrt
26132 square root, default
26133 @item cbrt
26134 cubic root
26135 @item log
26136 logarithmic
26137 @item 4thrt
26138 4th root
26139 @item 5thrt
26140 5th root
26141 @end table
26142
26143 Default value is @samp{sqrt}.
26144
26145 @item fscale
26146 Specify frequency scale.
26147
26148 It accepts the following values:
26149 @table @samp
26150 @item lin
26151 linear
26152 @item log
26153 logarithmic
26154 @end table
26155
26156 Default value is @samp{lin}.
26157
26158 @item saturation
26159 Set saturation modifier for displayed colors. Negative values provide
26160 alternative color scheme. @code{0} is no saturation at all.
26161 Saturation must be in [-10.0, 10.0] range.
26162 Default value is @code{1}.
26163
26164 @item win_func
26165 Set window function.
26166
26167 It accepts the following values:
26168 @table @samp
26169 @item rect
26170 @item bartlett
26171 @item hann
26172 @item hanning
26173 @item hamming
26174 @item blackman
26175 @item welch
26176 @item flattop
26177 @item bharris
26178 @item bnuttall
26179 @item bhann
26180 @item sine
26181 @item nuttall
26182 @item lanczos
26183 @item gauss
26184 @item tukey
26185 @item dolph
26186 @item cauchy
26187 @item parzen
26188 @item poisson
26189 @item bohman
26190 @end table
26191
26192 Default value is @code{hann}.
26193
26194 @item orientation
26195 Set orientation of time vs frequency axis. Can be @code{vertical} or
26196 @code{horizontal}. Default is @code{vertical}.
26197
26198 @item overlap
26199 Set ratio of overlap window. Default value is @code{0}.
26200 When value is @code{1} overlap is set to recommended size for specific
26201 window function currently used.
26202
26203 @item gain
26204 Set scale gain for calculating intensity color values.
26205 Default value is @code{1}.
26206
26207 @item data
26208 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
26209
26210 @item rotation
26211 Set color rotation, must be in [-1.0, 1.0] range.
26212 Default value is @code{0}.
26213
26214 @item start
26215 Set start frequency from which to display spectrogram. Default is @code{0}.
26216
26217 @item stop
26218 Set stop frequency to which to display spectrogram. Default is @code{0}.
26219
26220 @item fps
26221 Set upper frame rate limit. Default is @code{auto}, unlimited.
26222
26223 @item legend
26224 Draw time and frequency axes and legends. Default is disabled.
26225 @end table
26226
26227 The usage is very similar to the showwaves filter; see the examples in that
26228 section.
26229
26230 @subsection Examples
26231
26232 @itemize
26233 @item
26234 Large window with logarithmic color scaling:
26235 @example
26236 showspectrum=s=1280x480:scale=log
26237 @end example
26238
26239 @item
26240 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26241 @example
26242 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26243              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26244 @end example
26245 @end itemize
26246
26247 @section showspectrumpic
26248
26249 Convert input audio to a single video frame, representing the audio frequency
26250 spectrum.
26251
26252 The filter accepts the following options:
26253
26254 @table @option
26255 @item size, s
26256 Specify the video size for the output. For the syntax of this option, check the
26257 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26258 Default value is @code{4096x2048}.
26259
26260 @item mode
26261 Specify display mode.
26262
26263 It accepts the following values:
26264 @table @samp
26265 @item combined
26266 all channels are displayed in the same row
26267 @item separate
26268 all channels are displayed in separate rows
26269 @end table
26270 Default value is @samp{combined}.
26271
26272 @item color
26273 Specify display color mode.
26274
26275 It accepts the following values:
26276 @table @samp
26277 @item channel
26278 each channel is displayed in a separate color
26279 @item intensity
26280 each channel is displayed using the same color scheme
26281 @item rainbow
26282 each channel is displayed using the rainbow color scheme
26283 @item moreland
26284 each channel is displayed using the moreland color scheme
26285 @item nebulae
26286 each channel is displayed using the nebulae color scheme
26287 @item fire
26288 each channel is displayed using the fire color scheme
26289 @item fiery
26290 each channel is displayed using the fiery color scheme
26291 @item fruit
26292 each channel is displayed using the fruit color scheme
26293 @item cool
26294 each channel is displayed using the cool color scheme
26295 @item magma
26296 each channel is displayed using the magma color scheme
26297 @item green
26298 each channel is displayed using the green color scheme
26299 @item viridis
26300 each channel is displayed using the viridis color scheme
26301 @item plasma
26302 each channel is displayed using the plasma color scheme
26303 @item cividis
26304 each channel is displayed using the cividis color scheme
26305 @item terrain
26306 each channel is displayed using the terrain color scheme
26307 @end table
26308 Default value is @samp{intensity}.
26309
26310 @item scale
26311 Specify scale used for calculating intensity color values.
26312
26313 It accepts the following values:
26314 @table @samp
26315 @item lin
26316 linear
26317 @item sqrt
26318 square root, default
26319 @item cbrt
26320 cubic root
26321 @item log
26322 logarithmic
26323 @item 4thrt
26324 4th root
26325 @item 5thrt
26326 5th root
26327 @end table
26328 Default value is @samp{log}.
26329
26330 @item fscale
26331 Specify frequency scale.
26332
26333 It accepts the following values:
26334 @table @samp
26335 @item lin
26336 linear
26337 @item log
26338 logarithmic
26339 @end table
26340
26341 Default value is @samp{lin}.
26342
26343 @item saturation
26344 Set saturation modifier for displayed colors. Negative values provide
26345 alternative color scheme. @code{0} is no saturation at all.
26346 Saturation must be in [-10.0, 10.0] range.
26347 Default value is @code{1}.
26348
26349 @item win_func
26350 Set window function.
26351
26352 It accepts the following values:
26353 @table @samp
26354 @item rect
26355 @item bartlett
26356 @item hann
26357 @item hanning
26358 @item hamming
26359 @item blackman
26360 @item welch
26361 @item flattop
26362 @item bharris
26363 @item bnuttall
26364 @item bhann
26365 @item sine
26366 @item nuttall
26367 @item lanczos
26368 @item gauss
26369 @item tukey
26370 @item dolph
26371 @item cauchy
26372 @item parzen
26373 @item poisson
26374 @item bohman
26375 @end table
26376 Default value is @code{hann}.
26377
26378 @item orientation
26379 Set orientation of time vs frequency axis. Can be @code{vertical} or
26380 @code{horizontal}. Default is @code{vertical}.
26381
26382 @item gain
26383 Set scale gain for calculating intensity color values.
26384 Default value is @code{1}.
26385
26386 @item legend
26387 Draw time and frequency axes and legends. Default is enabled.
26388
26389 @item rotation
26390 Set color rotation, must be in [-1.0, 1.0] range.
26391 Default value is @code{0}.
26392
26393 @item start
26394 Set start frequency from which to display spectrogram. Default is @code{0}.
26395
26396 @item stop
26397 Set stop frequency to which to display spectrogram. Default is @code{0}.
26398 @end table
26399
26400 @subsection Examples
26401
26402 @itemize
26403 @item
26404 Extract an audio spectrogram of a whole audio track
26405 in a 1024x1024 picture using @command{ffmpeg}:
26406 @example
26407 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26408 @end example
26409 @end itemize
26410
26411 @section showvolume
26412
26413 Convert input audio volume to a video output.
26414
26415 The filter accepts the following options:
26416
26417 @table @option
26418 @item rate, r
26419 Set video rate.
26420
26421 @item b
26422 Set border width, allowed range is [0, 5]. Default is 1.
26423
26424 @item w
26425 Set channel width, allowed range is [80, 8192]. Default is 400.
26426
26427 @item h
26428 Set channel height, allowed range is [1, 900]. Default is 20.
26429
26430 @item f
26431 Set fade, allowed range is [0, 1]. Default is 0.95.
26432
26433 @item c
26434 Set volume color expression.
26435
26436 The expression can use the following variables:
26437
26438 @table @option
26439 @item VOLUME
26440 Current max volume of channel in dB.
26441
26442 @item PEAK
26443 Current peak.
26444
26445 @item CHANNEL
26446 Current channel number, starting from 0.
26447 @end table
26448
26449 @item t
26450 If set, displays channel names. Default is enabled.
26451
26452 @item v
26453 If set, displays volume values. Default is enabled.
26454
26455 @item o
26456 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26457 default is @code{h}.
26458
26459 @item s
26460 Set step size, allowed range is [0, 5]. Default is 0, which means
26461 step is disabled.
26462
26463 @item p
26464 Set background opacity, allowed range is [0, 1]. Default is 0.
26465
26466 @item m
26467 Set metering mode, can be peak: @code{p} or rms: @code{r},
26468 default is @code{p}.
26469
26470 @item ds
26471 Set display scale, can be linear: @code{lin} or log: @code{log},
26472 default is @code{lin}.
26473
26474 @item dm
26475 In second.
26476 If set to > 0., display a line for the max level
26477 in the previous seconds.
26478 default is disabled: @code{0.}
26479
26480 @item dmc
26481 The color of the max line. Use when @code{dm} option is set to > 0.
26482 default is: @code{orange}
26483 @end table
26484
26485 @section showwaves
26486
26487 Convert input audio to a video output, representing the samples waves.
26488
26489 The filter accepts the following options:
26490
26491 @table @option
26492 @item size, s
26493 Specify the video size for the output. For the syntax of this option, check the
26494 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26495 Default value is @code{600x240}.
26496
26497 @item mode
26498 Set display mode.
26499
26500 Available values are:
26501 @table @samp
26502 @item point
26503 Draw a point for each sample.
26504
26505 @item line
26506 Draw a vertical line for each sample.
26507
26508 @item p2p
26509 Draw a point for each sample and a line between them.
26510
26511 @item cline
26512 Draw a centered vertical line for each sample.
26513 @end table
26514
26515 Default value is @code{point}.
26516
26517 @item n
26518 Set the number of samples which are printed on the same column. A
26519 larger value will decrease the frame rate. Must be a positive
26520 integer. This option can be set only if the value for @var{rate}
26521 is not explicitly specified.
26522
26523 @item rate, r
26524 Set the (approximate) output frame rate. This is done by setting the
26525 option @var{n}. Default value is "25".
26526
26527 @item split_channels
26528 Set if channels should be drawn separately or overlap. Default value is 0.
26529
26530 @item colors
26531 Set colors separated by '|' which are going to be used for drawing of each channel.
26532
26533 @item scale
26534 Set amplitude scale.
26535
26536 Available values are:
26537 @table @samp
26538 @item lin
26539 Linear.
26540
26541 @item log
26542 Logarithmic.
26543
26544 @item sqrt
26545 Square root.
26546
26547 @item cbrt
26548 Cubic root.
26549 @end table
26550
26551 Default is linear.
26552
26553 @item draw
26554 Set the draw mode. This is mostly useful to set for high @var{n}.
26555
26556 Available values are:
26557 @table @samp
26558 @item scale
26559 Scale pixel values for each drawn sample.
26560
26561 @item full
26562 Draw every sample directly.
26563 @end table
26564
26565 Default value is @code{scale}.
26566 @end table
26567
26568 @subsection Examples
26569
26570 @itemize
26571 @item
26572 Output the input file audio and the corresponding video representation
26573 at the same time:
26574 @example
26575 amovie=a.mp3,asplit[out0],showwaves[out1]
26576 @end example
26577
26578 @item
26579 Create a synthetic signal and show it with showwaves, forcing a
26580 frame rate of 30 frames per second:
26581 @example
26582 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26583 @end example
26584 @end itemize
26585
26586 @section showwavespic
26587
26588 Convert input audio to a single video frame, representing the samples waves.
26589
26590 The filter accepts the following options:
26591
26592 @table @option
26593 @item size, s
26594 Specify the video size for the output. For the syntax of this option, check the
26595 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26596 Default value is @code{600x240}.
26597
26598 @item split_channels
26599 Set if channels should be drawn separately or overlap. Default value is 0.
26600
26601 @item colors
26602 Set colors separated by '|' which are going to be used for drawing of each channel.
26603
26604 @item scale
26605 Set amplitude scale.
26606
26607 Available values are:
26608 @table @samp
26609 @item lin
26610 Linear.
26611
26612 @item log
26613 Logarithmic.
26614
26615 @item sqrt
26616 Square root.
26617
26618 @item cbrt
26619 Cubic root.
26620 @end table
26621
26622 Default is linear.
26623
26624 @item draw
26625 Set the draw mode.
26626
26627 Available values are:
26628 @table @samp
26629 @item scale
26630 Scale pixel values for each drawn sample.
26631
26632 @item full
26633 Draw every sample directly.
26634 @end table
26635
26636 Default value is @code{scale}.
26637
26638 @item filter
26639 Set the filter mode.
26640
26641 Available values are:
26642 @table @samp
26643 @item average
26644 Use average samples values for each drawn sample.
26645
26646 @item peak
26647 Use peak samples values for each drawn sample.
26648 @end table
26649
26650 Default value is @code{average}.
26651 @end table
26652
26653 @subsection Examples
26654
26655 @itemize
26656 @item
26657 Extract a channel split representation of the wave form of a whole audio track
26658 in a 1024x800 picture using @command{ffmpeg}:
26659 @example
26660 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26661 @end example
26662 @end itemize
26663
26664 @section sidedata, asidedata
26665
26666 Delete frame side data, or select frames based on it.
26667
26668 This filter accepts the following options:
26669
26670 @table @option
26671 @item mode
26672 Set mode of operation of the filter.
26673
26674 Can be one of the following:
26675
26676 @table @samp
26677 @item select
26678 Select every frame with side data of @code{type}.
26679
26680 @item delete
26681 Delete side data of @code{type}. If @code{type} is not set, delete all side
26682 data in the frame.
26683
26684 @end table
26685
26686 @item type
26687 Set side data type used with all modes. Must be set for @code{select} mode. For
26688 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26689 in @file{libavutil/frame.h}. For example, to choose
26690 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26691
26692 @end table
26693
26694 @section spectrumsynth
26695
26696 Synthesize audio from 2 input video spectrums, first input stream represents
26697 magnitude across time and second represents phase across time.
26698 The filter will transform from frequency domain as displayed in videos back
26699 to time domain as presented in audio output.
26700
26701 This filter is primarily created for reversing processed @ref{showspectrum}
26702 filter outputs, but can synthesize sound from other spectrograms too.
26703 But in such case results are going to be poor if the phase data is not
26704 available, because in such cases phase data need to be recreated, usually
26705 it's just recreated from random noise.
26706 For best results use gray only output (@code{channel} color mode in
26707 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26708 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26709 @code{data} option. Inputs videos should generally use @code{fullframe}
26710 slide mode as that saves resources needed for decoding video.
26711
26712 The filter accepts the following options:
26713
26714 @table @option
26715 @item sample_rate
26716 Specify sample rate of output audio, the sample rate of audio from which
26717 spectrum was generated may differ.
26718
26719 @item channels
26720 Set number of channels represented in input video spectrums.
26721
26722 @item scale
26723 Set scale which was used when generating magnitude input spectrum.
26724 Can be @code{lin} or @code{log}. Default is @code{log}.
26725
26726 @item slide
26727 Set slide which was used when generating inputs spectrums.
26728 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26729 Default is @code{fullframe}.
26730
26731 @item win_func
26732 Set window function used for resynthesis.
26733
26734 @item overlap
26735 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26736 which means optimal overlap for selected window function will be picked.
26737
26738 @item orientation
26739 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26740 Default is @code{vertical}.
26741 @end table
26742
26743 @subsection Examples
26744
26745 @itemize
26746 @item
26747 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26748 then resynthesize videos back to audio with spectrumsynth:
26749 @example
26750 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
26751 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
26752 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26753 @end example
26754 @end itemize
26755
26756 @section split, asplit
26757
26758 Split input into several identical outputs.
26759
26760 @code{asplit} works with audio input, @code{split} with video.
26761
26762 The filter accepts a single parameter which specifies the number of outputs. If
26763 unspecified, it defaults to 2.
26764
26765 @subsection Examples
26766
26767 @itemize
26768 @item
26769 Create two separate outputs from the same input:
26770 @example
26771 [in] split [out0][out1]
26772 @end example
26773
26774 @item
26775 To create 3 or more outputs, you need to specify the number of
26776 outputs, like in:
26777 @example
26778 [in] asplit=3 [out0][out1][out2]
26779 @end example
26780
26781 @item
26782 Create two separate outputs from the same input, one cropped and
26783 one padded:
26784 @example
26785 [in] split [splitout1][splitout2];
26786 [splitout1] crop=100:100:0:0    [cropout];
26787 [splitout2] pad=200:200:100:100 [padout];
26788 @end example
26789
26790 @item
26791 Create 5 copies of the input audio with @command{ffmpeg}:
26792 @example
26793 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26794 @end example
26795 @end itemize
26796
26797 @section zmq, azmq
26798
26799 Receive commands sent through a libzmq client, and forward them to
26800 filters in the filtergraph.
26801
26802 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26803 must be inserted between two video filters, @code{azmq} between two
26804 audio filters. Both are capable to send messages to any filter type.
26805
26806 To enable these filters you need to install the libzmq library and
26807 headers and configure FFmpeg with @code{--enable-libzmq}.
26808
26809 For more information about libzmq see:
26810 @url{http://www.zeromq.org/}
26811
26812 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26813 receives messages sent through a network interface defined by the
26814 @option{bind_address} (or the abbreviation "@option{b}") option.
26815 Default value of this option is @file{tcp://localhost:5555}. You may
26816 want to alter this value to your needs, but do not forget to escape any
26817 ':' signs (see @ref{filtergraph escaping}).
26818
26819 The received message must be in the form:
26820 @example
26821 @var{TARGET} @var{COMMAND} [@var{ARG}]
26822 @end example
26823
26824 @var{TARGET} specifies the target of the command, usually the name of
26825 the filter class or a specific filter instance name. The default
26826 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26827 but you can override this by using the @samp{filter_name@@id} syntax
26828 (see @ref{Filtergraph syntax}).
26829
26830 @var{COMMAND} specifies the name of the command for the target filter.
26831
26832 @var{ARG} is optional and specifies the optional argument list for the
26833 given @var{COMMAND}.
26834
26835 Upon reception, the message is processed and the corresponding command
26836 is injected into the filtergraph. Depending on the result, the filter
26837 will send a reply to the client, adopting the format:
26838 @example
26839 @var{ERROR_CODE} @var{ERROR_REASON}
26840 @var{MESSAGE}
26841 @end example
26842
26843 @var{MESSAGE} is optional.
26844
26845 @subsection Examples
26846
26847 Look at @file{tools/zmqsend} for an example of a zmq client which can
26848 be used to send commands processed by these filters.
26849
26850 Consider the following filtergraph generated by @command{ffplay}.
26851 In this example the last overlay filter has an instance name. All other
26852 filters will have default instance names.
26853
26854 @example
26855 ffplay -dumpgraph 1 -f lavfi "
26856 color=s=100x100:c=red  [l];
26857 color=s=100x100:c=blue [r];
26858 nullsrc=s=200x100, zmq [bg];
26859 [bg][l]   overlay     [bg+l];
26860 [bg+l][r] overlay@@my=x=100 "
26861 @end example
26862
26863 To change the color of the left side of the video, the following
26864 command can be used:
26865 @example
26866 echo Parsed_color_0 c yellow | tools/zmqsend
26867 @end example
26868
26869 To change the right side:
26870 @example
26871 echo Parsed_color_1 c pink | tools/zmqsend
26872 @end example
26873
26874 To change the position of the right side:
26875 @example
26876 echo overlay@@my x 150 | tools/zmqsend
26877 @end example
26878
26879
26880 @c man end MULTIMEDIA FILTERS
26881
26882 @chapter Multimedia Sources
26883 @c man begin MULTIMEDIA SOURCES
26884
26885 Below is a description of the currently available multimedia sources.
26886
26887 @section amovie
26888
26889 This is the same as @ref{movie} source, except it selects an audio
26890 stream by default.
26891
26892 @anchor{movie}
26893 @section movie
26894
26895 Read audio and/or video stream(s) from a movie container.
26896
26897 It accepts the following parameters:
26898
26899 @table @option
26900 @item filename
26901 The name of the resource to read (not necessarily a file; it can also be a
26902 device or a stream accessed through some protocol).
26903
26904 @item format_name, f
26905 Specifies the format assumed for the movie to read, and can be either
26906 the name of a container or an input device. If not specified, the
26907 format is guessed from @var{movie_name} or by probing.
26908
26909 @item seek_point, sp
26910 Specifies the seek point in seconds. The frames will be output
26911 starting from this seek point. The parameter is evaluated with
26912 @code{av_strtod}, so the numerical value may be suffixed by an IS
26913 postfix. The default value is "0".
26914
26915 @item streams, s
26916 Specifies the streams to read. Several streams can be specified,
26917 separated by "+". The source will then have as many outputs, in the
26918 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26919 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26920 respectively the default (best suited) video and audio stream. Default
26921 is "dv", or "da" if the filter is called as "amovie".
26922
26923 @item stream_index, si
26924 Specifies the index of the video stream to read. If the value is -1,
26925 the most suitable video stream will be automatically selected. The default
26926 value is "-1". Deprecated. If the filter is called "amovie", it will select
26927 audio instead of video.
26928
26929 @item loop
26930 Specifies how many times to read the stream in sequence.
26931 If the value is 0, the stream will be looped infinitely.
26932 Default value is "1".
26933
26934 Note that when the movie is looped the source timestamps are not
26935 changed, so it will generate non monotonically increasing timestamps.
26936
26937 @item discontinuity
26938 Specifies the time difference between frames above which the point is
26939 considered a timestamp discontinuity which is removed by adjusting the later
26940 timestamps.
26941 @end table
26942
26943 It allows overlaying a second video on top of the main input of
26944 a filtergraph, as shown in this graph:
26945 @example
26946 input -----------> deltapts0 --> overlay --> output
26947                                     ^
26948                                     |
26949 movie --> scale--> deltapts1 -------+
26950 @end example
26951 @subsection Examples
26952
26953 @itemize
26954 @item
26955 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26956 on top of the input labelled "in":
26957 @example
26958 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26959 [in] setpts=PTS-STARTPTS [main];
26960 [main][over] overlay=16:16 [out]
26961 @end example
26962
26963 @item
26964 Read from a video4linux2 device, and overlay it on top of the input
26965 labelled "in":
26966 @example
26967 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26968 [in] setpts=PTS-STARTPTS [main];
26969 [main][over] overlay=16:16 [out]
26970 @end example
26971
26972 @item
26973 Read the first video stream and the audio stream with id 0x81 from
26974 dvd.vob; the video is connected to the pad named "video" and the audio is
26975 connected to the pad named "audio":
26976 @example
26977 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26978 @end example
26979 @end itemize
26980
26981 @subsection Commands
26982
26983 Both movie and amovie support the following commands:
26984 @table @option
26985 @item seek
26986 Perform seek using "av_seek_frame".
26987 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26988 @itemize
26989 @item
26990 @var{stream_index}: If stream_index is -1, a default
26991 stream is selected, and @var{timestamp} is automatically converted
26992 from AV_TIME_BASE units to the stream specific time_base.
26993 @item
26994 @var{timestamp}: Timestamp in AVStream.time_base units
26995 or, if no stream is specified, in AV_TIME_BASE units.
26996 @item
26997 @var{flags}: Flags which select direction and seeking mode.
26998 @end itemize
26999
27000 @item get_duration
27001 Get movie duration in AV_TIME_BASE units.
27002
27003 @end table
27004
27005 @c man end MULTIMEDIA SOURCES